aboutsummaryrefslogtreecommitdiffstats
path: root/skate/fixtures/ol_work_sample_1k.jsonl
blob: 944fb44bcd0227edd5a2234e1ff34a478edc4f0e (plain)
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
{"key":"/works/OL10000000W","text":["/works/OL10000000W","The catcher in the rye de j.d.salinger","OL12622728M","9782842740801","2842740807","Du Temps","OL3964940A","Claire Martel"],"type":"work","seed":["/books/OL12622728M","/works/OL10000000W","/authors/OL3964940A"],"title":"The catcher in the rye de j.d.salinger","title_suggest":["The catcher in the rye de j.d.salinger"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622728M"],"publish_date":["June 1, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782842740801","2842740807"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12622728M","cover_i":3140039,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964940A"],"author_name":["Claire Martel"],"id_goodreads":["141775"],"id_librarything":["2747899"],"publisher_facet":["Du Temps"],"_version_":1697074596440703000,"author_facet":["OL3964940A Claire Martel"]}
{"key":"/works/OL10000001W","text":["/works/OL10000001W","Pride and prejudice de jane austen","OL12622729M","2842740815","9782842740818","Du Temps","OL3964941A","Catherine Letellier"],"type":"work","seed":["/books/OL12622729M","/works/OL10000001W","/authors/OL3964941A"],"title":"Pride and prejudice de jane austen","title_suggest":["Pride and prejudice de jane austen"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622729M"],"publish_date":["June 1, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["2842740815","9782842740818"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622729M","cover_i":3140040,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964941A"],"author_name":["Catherine Letellier"],"id_goodreads":["463101"],"publisher_facet":["Du Temps"],"_version_":1697074596131373000,"author_facet":["OL3964941A Catherine Letellier"]}
{"key":"/works/OL10000002W","text":["/works/OL10000002W","Création littéraire et créatures artificielles","L'\"Eve future\", \"Frankenstein\", le \"Marchand de sable\" ou le Je(u) du miroir","OL12622731M","2842740920","9782842740924","Du Temps","OL3964942A","Desmarets/Hubert"],"type":"work","seed":["/books/OL12622731M","/works/OL10000002W","/authors/OL3964942A"],"title":"Création littéraire et créatures artificielles","title_suggest":["Création littéraire et créatures artificielles"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622731M"],"publish_date":["October 1, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["2842740920","9782842740924"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622731M","cover_i":3140041,"publisher":["Du Temps"],"author_key":["OL3964942A"],"author_name":["Desmarets/Hubert"],"id_goodreads":["2658443"],"publisher_facet":["Du Temps"],"_version_":1697074595418341400,"author_facet":["OL3964942A Desmarets/Hubert"]}
{"key":"/works/OL10000003W","text":["/works/OL10000003W","\"Le Livre du voir dit\" de Guillaume de Machaut","OL20957586M","Laurence Hélix, Muriel Ott, Sylvie Bazin-Tacchella","Ott, Muriel","Bazin-Tacchella, Sylvie","2912232317","9782912232311","Atlande","OL3964943A","Laurence Hélix"],"type":"work","seed":["/books/OL20957586M","/works/OL10000003W","/authors/OL3964943A"],"title":"\"Le Livre du voir dit\" de Guillaume de Machaut","title_suggest":["\"Le Livre du voir dit\" de Guillaume de Machaut"],"has_fulltext":false,"edition_count":1,"edition_key":["OL20957586M"],"publish_date":["2001"],"publish_year":[2001],"first_publish_year":2001,"publish_place":["Neuilly"],"contributor":["Ott, Muriel","Bazin-Tacchella, Sylvie"],"ddc":["800"],"isbn":["2912232317","9782912232311"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL20957586M","cover_i":5474853,"publisher":["Atlande"],"language":["fre"],"author_key":["OL3964943A"],"author_name":["Laurence Hélix"],"publisher_facet":["Atlande"],"_version_":1697074595917463600,"author_facet":["OL3964943A Laurence Hélix"],"ddc_sort":"800"}
{"key":"/works/OL10000004W","text":["/works/OL10000004W","L'épreuve de vocabulaire d'ancien français. Parcours - Fiches de sémantique","OL12622732M","2842740955","9782842740955","Du Temps","OL3964943A","Laurence Hélix"],"type":"work","seed":["/books/OL12622732M","/works/OL10000004W","/authors/OL3964943A"],"title":"L'épreuve de vocabulaire d'ancien français. Parcours - Fiches de sémantique","title_suggest":["L'épreuve de vocabulaire d'ancien français. Parcours - Fiches de sémantique"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622732M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2842740955","9782842740955"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622732M","cover_i":3140042,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964943A"],"author_name":["Laurence Hélix"],"id_goodreads":["5837685"],"publisher_facet":["Du Temps"],"_version_":1697074595986669600,"author_facet":["OL3964943A Laurence Hélix"]}
{"key":"/works/OL10000005W","text":["/works/OL10000005W","La queste del saint graal","queste del saint graal","\"La Queste del Saint Graal\"","OL21391018M","OL19271985M","Laurence Hélix, Olivier Bertrand.","Bertrand, Olivier.","9782912232823","2912232821","Atlande","OL3964943A","Laurence Hélix","Arthurian romances","French literature","History and criticism","Legends","Grail","To 1500"],"type":"work","seed":["/books/OL21391018M","/books/OL19271985M","/works/OL10000005W","/subjects/arthurian_romances","/subjects/french_literature","/subjects/history_and_criticism","/subjects/legends","/subjects/grail","/subjects/time:to_1500","/authors/OL3964943A"],"title":"La queste del saint graal","title_suggest":["La queste del saint graal"],"has_fulltext":false,"edition_count":2,"edition_key":["OL21391018M","OL19271985M"],"publish_date":["2004"],"publish_year":[2004],"first_publish_year":2004,"publish_place":["Paris","Neuilly"],"contributor":["Bertrand, Olivier."],"lcc":["PQ-1472.00000000.H44 2004"],"ddc":["841.1","809"],"isbn":["9782912232823","2912232821"],"last_modified_i":1279636118,"ebook_count_i":0,"cover_edition_key":"OL19271985M","cover_i":5459758,"publisher":["Atlande"],"language":["fre"],"author_key":["OL3964943A"],"author_name":["Laurence Hélix"],"subject":["Arthurian romances","French literature","History and criticism","Legends","Grail"],"time":["To 1500"],"id_goodreads":["1424725"],"publisher_facet":["Atlande"],"time_facet":["To 1500"],"subject_facet":["Arthurian romances","French literature","Grail","History and criticism","Legends"],"_version_":1697074596349476900,"lcc_sort":"PQ-1472.00000000.H44 2004","author_facet":["OL3964943A Laurence Hélix"],"subject_key":["arthurian_romances","french_literature","grail","history_and_criticism","legends"],"ddc_sort":"841.1","time_key":["to_1500"]}
{"key":"/works/OL10000006W","text":["/works/OL10000006W","La vie de Galilée","vie de Galilée","Bertolt Brecht","OL18344772M","Christian Dewinter.","9782842740979","2842740971","Editions du Temps","OL3964944A","Christian Dewinter","Bertolt Brecht ((1898-1956).)","Bertolt Brecht (1898-1956)"],"type":"work","seed":["/books/OL18344772M","/works/OL10000006W","/subjects/person:bertolt_brecht_((1898-1956).)","/subjects/person:bertolt_brecht_(1898-1956)","/authors/OL3964944A"],"title":"La vie de Galilée","title_suggest":["La vie de Galilée"],"has_fulltext":false,"edition_count":1,"edition_key":["OL18344772M"],"publish_date":["1999"],"publish_year":[1999],"first_publish_year":1999,"publish_place":["Paris"],"isbn":["9782842740979","2842740971"],"last_modified_i":1282125841,"ebook_count_i":0,"publisher":["Editions du Temps"],"language":["fre"],"author_key":["OL3964944A"],"author_name":["Christian Dewinter"],"person":["Bertolt Brecht ((1898-1956).)","Bertolt Brecht (1898-1956)"],"id_goodreads":["5951291"],"id_librarything":["4540859"],"publisher_facet":["Editions du Temps"],"person_key":["bertolt_brecht_((1898-1956).)","bertolt_brecht_(1898-1956)"],"person_facet":["Bertolt Brecht ((1898-1956).)","Bertolt Brecht (1898-1956)"],"_version_":1697074596738498600,"author_facet":["OL3964944A Christian Dewinter"]}
{"key":"/works/OL10000007W","text":["/works/OL10000007W","La vie de galilee de bertolt brecht","OL12622733M","9782842740979","2842740971","Du Temps","OL3964944A","Christian Dewinter"],"type":"work","seed":["/books/OL12622733M","/works/OL10000007W","/authors/OL3964944A"],"title":"La vie de galilee de bertolt brecht","title_suggest":["La vie de galilee de bertolt brecht"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622733M"],"publish_date":["October 1, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782842740979","2842740971"],"last_modified_i":1282054081,"ebook_count_i":0,"cover_edition_key":"OL12622733M","cover_i":3140043,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964944A"],"author_name":["Christian Dewinter"],"id_goodreads":["5951291"],"id_librarything":["4540859"],"publisher_facet":["Du Temps"],"_version_":1697074596226793500,"author_facet":["OL3964944A Christian Dewinter"]}
{"key":"/works/OL10000008W","text":["/works/OL10000008W","Les Fleurs bleues de Raymond Queneau","OL12622734M","9782842741013","2842741013","Du Temps","OL3964945A","Cassayre"],"type":"work","seed":["/books/OL12622734M","/works/OL10000008W","/authors/OL3964945A"],"title":"Les Fleurs bleues de Raymond Queneau","title_suggest":["Les Fleurs bleues de Raymond Queneau"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622734M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782842741013","2842741013"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622734M","cover_i":3140044,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964945A"],"author_name":["Cassayre"],"id_goodreads":["487215"],"publisher_facet":["Du Temps"],"_version_":1697074596451188700,"author_facet":["OL3964945A Cassayre"]}
{"key":"/works/OL10000009W","text":["/works/OL10000009W","Traité sur la tolérance de Voltaire","OL12622735M","2842741021","9782842741020","Du Temps","OL3964946A","Menant/Bessire/"],"type":"work","seed":["/books/OL12622735M","/works/OL10000009W","/authors/OL3964946A"],"title":"Traité sur la tolérance de Voltaire","title_suggest":["Traité sur la tolérance de Voltaire"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622735M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2842741021","9782842741020"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12622735M","cover_i":3140045,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964946A"],"author_name":["Menant/Bessire/"],"id_goodreads":["167543"],"id_librarything":["1123104"],"publisher_facet":["Du Temps"],"_version_":1697074595579822000,"author_facet":["OL3964946A Menant/Bessire/"]}
{"key":"/works/OL1000000W","text":["/works/OL1000000W","A ghost of a chance","OL6780748M","Bill Crider.","00027163","43569297","0312208898","9780312208899","ghostofchance00crid_0","Thomas Dunne Books","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Texas","Dan Rhodes (Fictitious character)","Sheriffs","Fiction","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL6780748M","/works/OL1000000W","/subjects/dan_rhodes_(fictitious_character)","/subjects/sheriffs","/subjects/fiction","/subjects/place:texas","/authors/OL92934A"],"title":"A ghost of a chance","title_suggest":["A ghost of a chance"],"has_fulltext":true,"edition_count":1,"edition_key":["OL6780748M"],"publish_date":["2000"],"publish_year":[2000],"first_publish_year":2000,"lccn":["00027163"],"publish_place":["New York"],"oclc":["43569297"],"lcc":["PS-3553.00000000.R497 G48 2000"],"ddc":["813.54"],"isbn":["0312208898","9780312208899"],"last_modified_i":1595913336,"ebook_count_i":1,"ia":["ghostofchance00crid_0"],"public_scan_b":false,"ia_collection_s":"china;inlibrary;printdisabled;cnusd-ol;internetarchivebooks;spokanepubliclibrary-ol;delawarecountydistrictlibrary-ol","lending_edition_s":"OL6780748M","lending_identifier_s":"ghostofchance00crid_0","printdisabled_s":"OL6780748M","cover_edition_key":"OL6780748M","cover_i":175881,"publisher":["Thomas Dunne Books"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"place":["Texas"],"subject":["Dan Rhodes (Fictitious character)","Sheriffs","Fiction","Accessible book","Protected DAISY"],"id_goodreads":["147123"],"id_librarything":["95124"],"ia_box_id":["IA161518"],"publisher_facet":["Thomas Dunne Books"],"place_key":["texas"],"subject_facet":["Accessible book","Dan Rhodes (Fictitious character)","Fiction","Protected DAISY","Sheriffs"],"_version_":1697074596250910700,"place_facet":["Texas"],"lcc_sort":"PS-3553.00000000.R497 G48 2000","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","dan_rhodes_(fictitious_character)","fiction","protected_daisy","sheriffs"],"ddc_sort":"813.54"}
{"key":"/works/OL10000010W","text":["/works/OL10000010W","Cours de grammaire allemande","OL12622736M","44411774","2842741048","9782842741044","Editions du Temps","OL3964947A","Francis Debuire"],"type":"work","seed":["/books/OL12622736M","/works/OL10000010W","/authors/OL3964947A"],"title":"Cours de grammaire allemande","title_suggest":["Cours de grammaire allemande"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622736M"],"publish_date":["July 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["44411774"],"isbn":["2842741048","9782842741044"],"last_modified_i":1307503736,"ebook_count_i":0,"cover_edition_key":"OL12622736M","cover_i":3140046,"publisher":["Editions du Temps"],"language":["fre"],"author_key":["OL3964947A"],"author_name":["Francis Debuire"],"publisher_facet":["Editions du Temps"],"_version_":1697074596634689500,"author_facet":["OL3964947A Francis Debuire"]}
{"key":"/works/OL10000011W","text":["/works/OL10000011W","Henry V de William Shakespeare","OL12622738M","2842741110","9782842741112","Editions du Temps","OL3964948A","Anny Crunelle-Vanrigh"],"type":"work","seed":["/books/OL12622738M","/works/OL10000011W","/authors/OL3964948A"],"title":"Henry V de William Shakespeare","title_suggest":["Henry V de William Shakespeare"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622738M"],"publish_date":["August 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2842741110","9782842741112"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622738M","cover_i":3140048,"publisher":["Editions du Temps"],"language":["fre"],"author_key":["OL3964948A"],"author_name":["Anny Crunelle-Vanrigh"],"id_goodreads":["2918764"],"publisher_facet":["Editions du Temps"],"_version_":1697074596449091600,"author_facet":["OL3964948A Anny Crunelle-Vanrigh"]}
{"key":"/works/OL10000012W","text":["/works/OL10000012W","La peinture espagnole. histoire et méthodologie","OL12622739M","2001367448","2842741161","9782842741167","Du Temps","OL3964949A","B. Bessieres","Spanish Painting","Painting","Appreciation"],"type":"work","seed":["/books/OL12622739M","/works/OL10000012W","/subjects/spanish_painting","/subjects/painting","/subjects/appreciation","/authors/OL3964949A"],"title":"La peinture espagnole. histoire et méthodologie","title_suggest":["La peinture espagnole. histoire et méthodologie"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622739M"],"publish_date":["January 15, 2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2001367448"],"lcc":["ND-0801.00000000.B43 2000"],"isbn":["2842741161","9782842741167"],"last_modified_i":1607123396,"ebook_count_i":0,"cover_edition_key":"OL12622739M","cover_i":3140049,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964949A"],"author_name":["B. Bessieres"],"subject":["Spanish Painting","Painting","Appreciation"],"publisher_facet":["Du Temps"],"subject_facet":["Appreciation","Painting","Spanish Painting"],"_version_":1697074595805266000,"lcc_sort":"ND-0801.00000000.B43 2000","author_facet":["OL3964949A B. Bessieres"],"subject_key":["appreciation","painting","spanish_painting"]}
{"key":"/works/OL10000013W","text":["/works/OL10000013W","Commentaire de documents figuratifs","OL12622741M","46359056","2842741218","9782842741211","Du Temps","OL3964950A","Collin /Greisheimer"],"type":"work","seed":["/books/OL12622741M","/works/OL10000013W","/authors/OL3964950A"],"title":"Commentaire de documents figuratifs","title_suggest":["Commentaire de documents figuratifs"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622741M"],"publish_date":["January 15, 2001"],"publish_year":[2001],"first_publish_year":2001,"oclc":["46359056"],"isbn":["2842741218","9782842741211"],"last_modified_i":1307528732,"ebook_count_i":0,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964950A"],"author_name":["Collin /Greisheimer"],"publisher_facet":["Du Temps"],"_version_":1697074595665805300,"author_facet":["OL3964950A Collin /Greisheimer"]}
{"key":"/works/OL10000014W","text":["/works/OL10000014W","Les très grandes villes dans le monde","OL12622742M","2001325765","2842741226","9782842741228","Ediitons du Temps","OL3964951A","Elisa Dorier-Apprill","Metropolitan areas","Cities and towns","Growth"],"type":"work","seed":["/books/OL12622742M","/works/OL10000014W","/subjects/metropolitan_areas","/subjects/cities_and_towns","/subjects/growth","/authors/OL3964951A"],"title":"Les très grandes villes dans le monde","title_suggest":["Les très grandes villes dans le monde"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622742M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"lccn":["2001325765"],"lcc":["HT-0330.00000000.T74 2000"],"isbn":["2842741226","9782842741228"],"last_modified_i":1607101661,"ebook_count_i":0,"cover_edition_key":"OL12622742M","cover_i":3140051,"publisher":["Ediitons du Temps"],"author_key":["OL3964951A"],"author_name":["Elisa Dorier-Apprill"],"subject":["Metropolitan areas","Cities and towns","Growth"],"publisher_facet":["Ediitons du Temps"],"subject_facet":["Cities and towns","Growth","Metropolitan areas"],"_version_":1697074596294951000,"lcc_sort":"HT-0330.00000000.T74 2000","author_facet":["OL3964951A Elisa Dorier-Apprill"],"subject_key":["cities_and_towns","growth","metropolitan_areas"]}
{"key":"/works/OL10000015W","text":["/works/OL10000015W","Vocabulaire de la ville","OL12622749M","2001438393","9782842741426","2842741420","Du Temps","OL3964951A","Elisa Dorier-Apprill","Urbanization"],"type":"work","seed":["/books/OL12622749M","/works/OL10000015W","/subjects/urbanization","/authors/OL3964951A"],"title":"Vocabulaire de la ville","title_suggest":["Vocabulaire de la ville"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622749M"],"publish_date":["April 9, 2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2001438393"],"lcc":["HT-0361.00000000.V63 2001"],"isbn":["9782842741426","2842741420"],"last_modified_i":1607152894,"ebook_count_i":0,"cover_edition_key":"OL12622749M","cover_i":3140057,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964951A"],"author_name":["Elisa Dorier-Apprill"],"subject":["Urbanization"],"id_goodreads":["5023016"],"publisher_facet":["Du Temps"],"subject_facet":["Urbanization"],"_version_":1697074596394565600,"lcc_sort":"HT-0361.00000000.V63 2001","author_facet":["OL3964951A Elisa Dorier-Apprill"],"subject_key":["urbanization"]}
{"key":"/works/OL10000016W","text":["/works/OL10000016W","La dissertation de geographie","OL12622743M","2842741242","9782842741242","Du Temps","OL3964952A","Vincent Moriniaux"],"type":"work","seed":["/books/OL12622743M","/works/OL10000016W","/authors/OL3964952A"],"title":"La dissertation de geographie","title_suggest":["La dissertation de geographie"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622743M"],"publish_date":["May 11, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2842741242","9782842741242"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622743M","cover_i":3140052,"publisher":["Du Temps"],"author_key":["OL3964952A"],"author_name":["Vincent Moriniaux"],"id_goodreads":["4968532"],"publisher_facet":["Du Temps"],"_version_":1697074595961503700,"author_facet":["OL3964952A Vincent Moriniaux"]}
{"key":"/works/OL10000017W","text":["/works/OL10000017W","La mediterranee","La Méditerranée","OL24071568M","OL12622763M","collectif coordonné par Vincent Moriniaux ; Frédéric Alexandre ... [et al.].","2002387149","Alexandre, Frédéric, geographer.","Moriniaux, Vincent.","9782842741778","2842741773","Editions du Temps","Du Temps","OL3964952A","Vincent Moriniaux","Economic conditions","Geography"],"type":"work","seed":["/books/OL24071568M","/books/OL12622763M","/works/OL10000017W","/subjects/economic_conditions","/subjects/geography","/authors/OL3964952A"],"title":"La mediterranee","title_suggest":["La mediterranee"],"has_fulltext":false,"edition_count":2,"edition_key":["OL24071568M","OL12622763M"],"publish_date":["2001","October 19, 2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2002387149"],"publish_place":["Paris"],"contributor":["Alexandre, Frédéric, geographer.","Moriniaux, Vincent."],"lcc":["D--0973.00000000.M389 2001"],"isbn":["9782842741778","2842741773"],"last_modified_i":1607312083,"ebook_count_i":0,"cover_edition_key":"OL12622763M","cover_i":3140070,"publisher":["Editions du Temps","Du Temps"],"language":["fre"],"author_key":["OL3964952A"],"author_name":["Vincent Moriniaux"],"subject":["Economic conditions","Geography"],"id_goodreads":["4968533"],"publisher_facet":["Du Temps","Editions du Temps"],"subject_facet":["Economic conditions","Geography"],"_version_":1697074596256153600,"lcc_sort":"D--0973.00000000.M389 2001","author_facet":["OL3964952A Vincent Moriniaux"],"subject_key":["economic_conditions","geography"]}
{"key":"/works/OL10000018W","text":["/works/OL10000018W","Sodome et gomorrhe de marcel proust","OL12622745M","9782842741297","2842741293","Du Temps","OL3964953A","Jean-Michel Ergal"],"type":"work","seed":["/books/OL12622745M","/works/OL10000018W","/authors/OL3964953A"],"title":"Sodome et gomorrhe de marcel proust","title_suggest":["Sodome et gomorrhe de marcel proust"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622745M"],"publish_date":["September 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782842741297","2842741293"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622745M","cover_i":3140054,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964953A"],"author_name":["Jean-Michel Ergal"],"id_goodreads":["865120"],"publisher_facet":["Du Temps"],"_version_":1697074596570726400,"author_facet":["OL3964953A Jean-Michel Ergal"]}
{"key":"/works/OL10000019W","text":["/works/OL10000019W","Aphorismes de lichtenberg","Les Aphorismes de Lichtenberg","OL22463856M","OL12622746M","Florence Bancaud ... [et al.] ; ouvrage collectif coordonné par Jean Mondot.","Bancaud-Maënen, Florence.","Mondot, Jean.","9782842741334","2842741331","Editions du Temps","Du Temps","OL3964954A","Jean Mondo"],"type":"work","seed":["/books/OL22463856M","/books/OL12622746M","/works/OL10000019W","/authors/OL3964954A"],"title":"Aphorismes de lichtenberg","title_suggest":["Aphorismes de lichtenberg"],"has_fulltext":false,"edition_count":2,"edition_key":["OL22463856M","OL12622746M"],"publish_date":["2001","January 15, 2001"],"publish_year":[2001],"first_publish_year":2001,"publish_place":["Paris"],"contributor":["Bancaud-Maënen, Florence.","Mondot, Jean."],"lcc":["PT-2423.00000000.L4 A834 2001"],"isbn":["9782842741334","2842741331"],"last_modified_i":1564587220,"ebook_count_i":0,"cover_edition_key":"OL12622746M","cover_i":3140055,"publisher":["Editions du Temps","Du Temps"],"language":["fre"],"author_key":["OL3964954A"],"author_name":["Jean Mondo"],"id_librarything":["7118360"],"publisher_facet":["Du Temps","Editions du Temps"],"_version_":1697074596070555600,"lcc_sort":"PT-2423.00000000.L4 A834 2001","author_facet":["OL3964954A Jean Mondo"]}
{"key":"/works/OL1000001W","text":["/works/OL1000001W","Ghost Of A Chance","A ghost of a chance","OL24752493M","OL9854421M","Bill Crider","48058556","0373263961","9780373263967","ghostofchance00crid","New York","Worldwide Library","Worldwide","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Texas","Dan Rhodes (Fictitious character)","Sheriffs","Societies","Fiction","History","Fiction, mystery & detective, general","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL24752493M","/books/OL9854421M","/works/OL1000001W","/subjects/dan_rhodes_(fictitious_character)","/subjects/sheriffs","/subjects/societies","/subjects/fiction","/subjects/history","/subjects/fiction_mystery_&_detective_general","/subjects/place:texas","/authors/OL92934A"],"title":"Ghost Of A Chance","title_suggest":["Ghost Of A Chance"],"has_fulltext":true,"edition_count":2,"edition_key":["OL24752493M","OL9854421M"],"publish_date":["2001","September 1, 2001"],"publish_year":[2001],"first_publish_year":2001,"publish_place":["Toronto, Ont"],"oclc":["48058556"],"isbn":["0373263961","9780373263967"],"last_modified_i":1598567410,"ebook_count_i":1,"ia":["ghostofchance00crid"],"public_scan_b":false,"ia_collection_s":"americana;china;inlibrary;delawarecountydistrictlibrary;printdisabled;library_of_atlantis;internetarchivebooks;delawarecountydistrictlibrary-ol","lending_edition_s":"OL24752493M","lending_identifier_s":"ghostofchance00crid","printdisabled_s":"OL9854421M;OL24752493M","cover_edition_key":"OL9854421M","cover_i":217441,"publisher":["New York","Worldwide Library","Worldwide"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"place":["Texas"],"subject":["Dan Rhodes (Fictitious character)","Sheriffs","Societies","Fiction","History","Fiction, mystery & detective, general","Accessible book","Protected DAISY"],"id_goodreads":["485041"],"id_librarything":["95124"],"ia_box_id":["IA133614"],"publisher_facet":["New York","Worldwide","Worldwide Library"],"place_key":["texas"],"subject_facet":["Accessible book","Dan Rhodes (Fictitious character)","Fiction","Fiction, mystery & detective, general","History","Protected DAISY","Sheriffs","Societies"],"_version_":1697074596596940800,"place_facet":["Texas"],"author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","dan_rhodes_(fictitious_character)","fiction","fiction_mystery__detective_general","history","protected_daisy","sheriffs","societies"]}
{"key":"/works/OL10000020W","text":["/works/OL10000020W","La bolivie","OL12622750M","9782842741457","2842741455","Du Temps","OL3964955A","Erich Fisbach"],"type":"work","seed":["/books/OL12622750M","/works/OL10000020W","/authors/OL3964955A"],"title":"La bolivie","title_suggest":["La bolivie"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622750M"],"publish_date":["May 11, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782842741457","2842741455"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622750M","cover_i":3140058,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964955A"],"author_name":["Erich Fisbach"],"publisher_facet":["Du Temps"],"_version_":1697074596132421600,"author_facet":["OL3964955A Erich Fisbach"]}
{"key":"/works/OL10000021W","text":["/works/OL10000021W","Commentaire de document iconographique","OL12622751M","9782842741495","2842741498","Du Temps","OL3964956A","I. Gadoin"],"type":"work","seed":["/books/OL12622751M","/works/OL10000021W","/authors/OL3964956A"],"title":"Commentaire de document iconographique","title_suggest":["Commentaire de document iconographique"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622751M"],"publish_date":["January 15, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782842741495","2842741498"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622751M","cover_i":3140059,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964956A"],"author_name":["I. Gadoin"],"publisher_facet":["Du Temps"],"_version_":1697074596613718000,"author_facet":["OL3964956A I. Gadoin"]}
{"key":"/works/OL10000022W","text":["/works/OL10000022W","Réussir les concours de langues","OL12622752M","46346460","2842741501","9782842741501","Du Temps","OL3964957A","M. Guidere"],"type":"work","seed":["/books/OL12622752M","/works/OL10000022W","/authors/OL3964957A"],"title":"Réussir les concours de langues","title_suggest":["Réussir les concours de langues"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622752M"],"publish_date":["January 15, 2001"],"publish_year":[2001],"first_publish_year":2001,"oclc":["46346460"],"isbn":["2842741501","9782842741501"],"last_modified_i":1307496139,"ebook_count_i":0,"cover_edition_key":"OL12622752M","cover_i":3140060,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964957A"],"author_name":["M. Guidere"],"publisher_facet":["Du Temps"],"_version_":1697074596444897300,"author_facet":["OL3964957A M. Guidere"]}
{"key":"/works/OL10000023W","text":["/works/OL10000023W","The arts in britain from the stuarts to victoria","OL12622753M","284274151X","9782842741518","Du Temps","OL3964958A","Carre /Dubois"],"type":"work","seed":["/books/OL12622753M","/works/OL10000023W","/authors/OL3964958A"],"title":"The arts in britain from the stuarts to victoria","title_suggest":["The arts in britain from the stuarts to victoria"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622753M"],"publish_date":["November 7, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["284274151X","9782842741518"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622753M","cover_i":3140061,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964958A"],"author_name":["Carre /Dubois"],"publisher_facet":["Du Temps"],"_version_":1697074595609182200,"author_facet":["OL3964958A Carre /Dubois"]}
{"key":"/works/OL10000024W","text":["/works/OL10000024W","Dictionnaire raisonné bilingue de l'analyse littéraire","OL18115627M","François Gallix ; texte phonétisé par François Chambraud","Chambraud, François","2842740831","9782842740832","Ed. du Temps","OL3964959A","François Gallix","Criticism","French language","Terminology","Glossaries, vocabularies","English"],"type":"work","seed":["/books/OL18115627M","/works/OL10000024W","/subjects/criticism","/subjects/french_language","/subjects/terminology","/subjects/glossaries_vocabularies","/subjects/english","/authors/OL3964959A"],"title":"Dictionnaire raisonné bilingue de l'analyse littéraire","title_suggest":["Dictionnaire raisonné bilingue de l'analyse littéraire"],"has_fulltext":false,"edition_count":1,"edition_key":["OL18115627M"],"publish_date":["2000"],"publish_year":[2000],"first_publish_year":2000,"publish_place":["Paris"],"contributor":["Chambraud, François"],"isbn":["2842740831","9782842740832"],"last_modified_i":1279636588,"ebook_count_i":0,"publisher":["Ed. du Temps"],"language":["fre"],"author_key":["OL3964959A"],"author_name":["François Gallix"],"subject":["Criticism","French language","Terminology","Glossaries, vocabularies","English"],"id_goodreads":["4688476"],"publisher_facet":["Ed. du Temps"],"subject_facet":["Criticism","English","French language","Glossaries, vocabularies","Terminology"],"_version_":1697074596429168600,"author_facet":["OL3964959A François Gallix"],"subject_key":["criticism","english","french_language","glossaries_vocabularies","terminology"]}
{"key":"/works/OL10000025W","text":["/works/OL10000025W","Le roman britannique du XXe siècle","roman britannique du XXe siècle","modernistes et postmodernes","OL16605588M","François Gallix.","9782225847455","2225847452","Masson","OL3964959A","François Gallix","Great Britain","Postmodernism (Literature)","Roman anglais","Modernism (Literature)","History and criticism","English fiction","20th century","20e siècle"],"type":"work","seed":["/books/OL16605588M","/works/OL10000025W","/subjects/postmodernism_(literature)","/subjects/roman_anglais","/subjects/modernism_(literature)","/subjects/history_and_criticism","/subjects/english_fiction","/subjects/place:great_britain","/subjects/time:20th_century","/subjects/time:20e_siècle","/authors/OL3964959A"],"title":"Le roman britannique du XXe siècle","title_suggest":["Le roman britannique du XXe siècle"],"has_fulltext":false,"edition_count":1,"edition_key":["OL16605588M"],"publish_date":["1995"],"publish_year":[1995],"first_publish_year":1995,"publish_place":["Paris"],"isbn":["9782225847455","2225847452"],"last_modified_i":1279636588,"ebook_count_i":0,"publisher":["Masson"],"language":["fre"],"author_key":["OL3964959A"],"author_name":["François Gallix"],"place":["Great Britain"],"subject":["Postmodernism (Literature)","Roman anglais","Modernism (Literature)","History and criticism","English fiction"],"time":["20th century","20e siècle"],"publisher_facet":["Masson"],"place_key":["great_britain"],"time_facet":["20e siècle","20th century"],"subject_facet":["English fiction","History and criticism","Modernism (Literature)","Postmodernism (Literature)","Roman anglais"],"_version_":1697074595651125200,"place_facet":["Great Britain"],"author_facet":["OL3964959A François Gallix"],"subject_key":["english_fiction","history_and_criticism","modernism_(literature)","postmodernism_(literature)","roman_anglais"],"time_key":["20e_siècle","20th_century"]}
{"key":"/works/OL10000026W","text":["/works/OL10000026W","Study the remains of the day de k.ishiguro","OL12622754M","2842741617","9782842741617","Du Temps","OL3964959A","François Gallix"],"type":"work","seed":["/books/OL12622754M","/works/OL10000026W","/authors/OL3964959A"],"title":"Study the remains of the day de k.ishiguro","title_suggest":["Study the remains of the day de k.ishiguro"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622754M"],"publish_date":["July 23, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2842741617","9782842741617"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622754M","cover_i":3140062,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964959A"],"author_name":["François Gallix"],"id_goodreads":["231342"],"publisher_facet":["Du Temps"],"_version_":1697074596081041400,"author_facet":["OL3964959A François Gallix"]}
{"key":"/works/OL10000027W","text":["/works/OL10000027W","The great gatsby de f.s.fitzgerald","OL12622755M","2842741641","9782842741648","Du Temps","OL3964960A","Claire Bernas-Martel"],"type":"work","seed":["/books/OL12622755M","/works/OL10000027W","/authors/OL3964960A"],"title":"The great gatsby de f.s.fitzgerald","title_suggest":["The great gatsby de f.s.fitzgerald"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622755M"],"publish_date":["July 23, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2842741641","9782842741648"],"last_modified_i":1282054081,"ebook_count_i":0,"cover_edition_key":"OL12622755M","cover_i":3140063,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964960A"],"author_name":["Claire Bernas-Martel"],"id_goodreads":["3262205"],"id_librarything":["9082310"],"publisher_facet":["Du Temps"],"_version_":1697074596197433300,"author_facet":["OL3964960A Claire Bernas-Martel"]}
{"key":"/works/OL10000028W","text":["/works/OL10000028W","Alexander's bridge de willa cather","OL12622756M","9782842741655","284274165X","Du Temps","OL3964961A","C. Pessoa-Miquel"],"type":"work","seed":["/books/OL12622756M","/works/OL10000028W","/authors/OL3964961A"],"title":"Alexander's bridge de willa cather","title_suggest":["Alexander's bridge de willa cather"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622756M"],"publish_date":["July 23, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782842741655","284274165X"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622756M","cover_i":3140064,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964961A"],"author_name":["C. Pessoa-Miquel"],"id_goodreads":["576560"],"publisher_facet":["Du Temps"],"_version_":1697074596396662800,"author_facet":["OL3964961A C. Pessoa-Miquel"]}
{"key":"/works/OL10000029W","text":["/works/OL10000029W","Cles grammaticales du thème litteraire espagnol","OL12622758M","2842741676","9782842741679","Du Temps","OL3964962A","Graciela Villanueva"],"type":"work","seed":["/books/OL12622758M","/works/OL10000029W","/authors/OL3964962A"],"title":"Cles grammaticales du thème litteraire espagnol","title_suggest":["Cles grammaticales du thème litteraire espagnol"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622758M"],"publish_date":["September 19, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2842741676","9782842741679"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622758M","cover_i":3140065,"publisher":["Du Temps"],"author_key":["OL3964962A"],"author_name":["Graciela Villanueva"],"publisher_facet":["Du Temps"],"_version_":1697074596679778300,"author_facet":["OL3964962A Graciela Villanueva"]}
{"key":"/works/OL1000002W","text":["/works/OL1000002W","A Mammoth Murder (A Sheriff Dan Rhodes Mystery)","OL10744324M","123354788","0373265972","9780373265978","Worldwide","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter"],"type":"work","seed":["/books/OL10744324M","/works/OL1000002W","/authors/OL92934A"],"title":"A Mammoth Murder (A Sheriff Dan Rhodes Mystery)","title_suggest":["A Mammoth Murder (A Sheriff Dan Rhodes Mystery)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10744324M"],"publish_date":["2007"],"publish_year":[2007],"first_publish_year":2007,"oclc":["123354788"],"isbn":["0373265972","9780373265978"],"last_modified_i":1303997732,"ebook_count_i":0,"publisher":["Worldwide"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"id_goodreads":["996420"],"id_librarything":["801301"],"publisher_facet":["Worldwide"],"_version_":1697074595903832000,"author_facet":["OL92934A Bill Crider"]}
{"key":"/works/OL10000030W","text":["/works/OL10000030W","Capes histoire-geographie/agreg.histoire","OL12622759M","2842741706","9782842741709","Du Temps","OL3964963A","Snegaroff /Huertas"],"type":"work","seed":["/books/OL12622759M","/works/OL10000030W","/authors/OL3964963A"],"title":"Capes histoire-geographie/agreg.histoire","title_suggest":["Capes histoire-geographie/agreg.histoire"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622759M"],"publish_date":["September 19, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2842741706","9782842741709"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622759M","cover_i":3140066,"publisher":["Du Temps"],"author_key":["OL3964963A"],"author_name":["Snegaroff /Huertas"],"publisher_facet":["Du Temps"],"_version_":1697074595599745000,"author_facet":["OL3964963A Snegaroff /Huertas"]}
{"key":"/works/OL10000031W","text":["/works/OL10000031W","Die römische Armee. Von Augustus zu Konstantin d. Gr","Die römische Armee. Von Augustus zu Konstantin d. Gr.","OL12760512M","3515063005","9783515063005","Steiner (Franz)","OL3964964A","Yann le Bohec"],"type":"work","seed":["/books/OL12760512M","/works/OL10000031W","/authors/OL3964964A"],"title":"Die römische Armee. Von Augustus zu Konstantin d. Gr","title_suggest":["Die römische Armee. Von Augustus zu Konstantin d. Gr"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12760512M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["3515063005","9783515063005"],"last_modified_i":1282058150,"ebook_count_i":0,"cover_edition_key":"OL12760512M","cover_i":3220488,"publisher":["Steiner (Franz)"],"author_key":["OL3964964A"],"author_name":["Yann le Bohec"],"id_goodreads":["2949251"],"id_librarything":["9276423"],"publisher_facet":["Steiner (Franz)"],"_version_":1697074595730817000,"author_facet":["OL3964964A Yann le Bohec"]}
{"key":"/works/OL10000032W","text":["/works/OL10000032W","Rome, ville et capitale-collectif","Questions d'histoire","Histoire romaine, Rome ville et capitale","Rome, ville et capitale","questions d'histoire de César à la fin des Antonins","OL22473533M","OL12622760M","coordonné par Yann Le Bohec ; [contributions] Jean Andreau ... [et al.].","2002322408","Andreau, Jean.","Le Bohec, Yann.","2842741730","9782842741730","Editions du Temps","Du Temps","OL3964964A","Yann le Bohec","Civilization","History"],"type":"work","seed":["/books/OL22473533M","/books/OL12622760M","/works/OL10000032W","/subjects/civilization","/subjects/history","/authors/OL3964964A"],"title":"Rome, ville et capitale-collectif","title_suggest":["Rome, ville et capitale-collectif"],"has_fulltext":false,"edition_count":2,"edition_key":["OL22473533M","OL12622760M"],"publish_date":["2001","September 6, 2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2002322408"],"publish_place":["Paris"],"contributor":["Andreau, Jean.","Le Bohec, Yann."],"lcc":["DG-0261.00000000.R59 2001"],"isbn":["2842741730","9782842741730"],"last_modified_i":1607295289,"ebook_count_i":0,"cover_edition_key":"OL12622760M","cover_i":3140067,"publisher":["Editions du Temps","Du Temps"],"language":["fre"],"author_key":["OL3964964A"],"author_name":["Yann le Bohec"],"subject":["Civilization","History"],"id_goodreads":["2949252"],"publisher_facet":["Du Temps","Editions du Temps"],"subject_facet":["Civilization","History"],"_version_":1697074595506421800,"lcc_sort":"DG-0261.00000000.R59 2001","author_facet":["OL3964964A Yann le Bohec"],"subject_key":["civilization","history"]}
{"key":"/works/OL10000033W","text":["/works/OL10000033W","Urbs/rome de César a commode-synthese","OL12622761M","9782842741747","2842741749","Du Temps","OL3964964A","Yann le Bohec"],"type":"work","seed":["/books/OL12622761M","/works/OL10000033W","/authors/OL3964964A"],"title":"Urbs/rome de César a commode-synthese","title_suggest":["Urbs/rome de César a commode-synthese"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622761M"],"publish_date":["September 6, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782842741747","2842741749"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622761M","cover_i":3140068,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964964A"],"author_name":["Yann le Bohec"],"id_goodreads":["2949248"],"publisher_facet":["Du Temps"],"_version_":1697074596245667800,"author_facet":["OL3964964A Yann le Bohec"]}
{"key":"/works/OL10000034W","text":["/works/OL10000034W","Religion et culture en europe occidentale de 1800 a 1914","OL12622762M","2842741765","9782842741761","Du Temps","OL3964965A","Bruno Bethouart"],"type":"work","seed":["/books/OL12622762M","/works/OL10000034W","/authors/OL3964965A"],"title":"Religion et culture en europe occidentale de 1800 a 1914","title_suggest":["Religion et culture en europe occidentale de 1800 a 1914"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622762M"],"publish_date":["July 6, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2842741765","9782842741761"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622762M","cover_i":3140069,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964965A"],"author_name":["Bruno Bethouart"],"id_goodreads":["5491025"],"publisher_facet":["Du Temps"],"_version_":1697074596629446700,"author_facet":["OL3964965A Bruno Bethouart"]}
{"key":"/works/OL10000035W","text":["/works/OL10000035W","Les nationalismes dans l'Espagne contemporaine","OL12622764M","2001463542","9782842741839","2842741838","Du Temps","OL3964966A","Jean-Louis Guerena","Regionalism","Ethnology","Politics and government","History","Autonomy and independence movements","Nationalism"],"type":"work","seed":["/books/OL12622764M","/works/OL10000035W","/subjects/regionalism","/subjects/ethnology","/subjects/politics_and_government","/subjects/history","/subjects/autonomy_and_independence_movements","/subjects/nationalism","/authors/OL3964966A"],"title":"Les nationalismes dans l'Espagne contemporaine","title_suggest":["Les nationalismes dans l'Espagne contemporaine"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622764M"],"publish_date":["August 21, 2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2001463542"],"lcc":["JN-8231.00000000.N38 2001"],"isbn":["9782842741839","2842741838"],"last_modified_i":1607159030,"ebook_count_i":0,"cover_edition_key":"OL12622764M","cover_i":3140071,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964966A"],"author_name":["Jean-Louis Guerena"],"subject":["Regionalism","Ethnology","Politics and government","History","Autonomy and independence movements","Nationalism"],"id_goodreads":["1218979"],"publisher_facet":["Du Temps"],"subject_facet":["Autonomy and independence movements","Ethnology","History","Nationalism","Politics and government","Regionalism"],"_version_":1697074596332699600,"lcc_sort":"JN-8231.00000000.N38 2001","author_facet":["OL3964966A Jean-Louis Guerena"],"subject_key":["autonomy_and_independence_movements","ethnology","history","nationalism","politics_and_government","regionalism"]}
{"key":"/works/OL10000036W","text":["/works/OL10000036W","Lexique bilingue de l'arabe d'aujourd'hui","OL12622767M","9782842741921","2842741927","Du Temps","OL3964967A","Matthieu Guidere"],"type":"work","seed":["/books/OL12622767M","/works/OL10000036W","/authors/OL3964967A"],"title":"Lexique bilingue de l'arabe d'aujourd'hui","title_suggest":["Lexique bilingue de l'arabe d'aujourd'hui"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622767M"],"publish_date":["November 21, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782842741921","2842741927"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622767M","cover_i":3140074,"publisher":["Du Temps"],"author_key":["OL3964967A"],"author_name":["Matthieu Guidere"],"publisher_facet":["Du Temps"],"_version_":1697074595728720000,"author_facet":["OL3964967A Matthieu Guidere"]}
{"key":"/works/OL10000037W","text":["/works/OL10000037W","Préparer l'epreuve orale de synthese au capes d'anglais","OL12622769M","469735323","9782842741952","2842741951","Du Temps","OL3964968A","Tolron /Laurens"],"type":"work","seed":["/books/OL12622769M","/works/OL10000037W","/authors/OL3964968A"],"title":"Préparer l'epreuve orale de synthese au capes d'anglais","title_suggest":["Préparer l'epreuve orale de synthese au capes d'anglais"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622769M"],"publish_date":["April 10, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["469735323"],"isbn":["9782842741952","2842741951"],"last_modified_i":1303843203,"ebook_count_i":0,"cover_edition_key":"OL12622769M","cover_i":3140076,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964968A"],"author_name":["Tolron /Laurens"],"publisher_facet":["Du Temps"],"_version_":1697074596145004500,"author_facet":["OL3964968A Tolron /Laurens"]}
{"key":"/works/OL10000038W","text":["/works/OL10000038W","Marche énergétique allemand-chronique","OL12622771M","2002544301","2842741978","9782842741976","Du Temps","OL3964969A","Heuraux/Christophe","Power resources"],"type":"work","seed":["/books/OL12622771M","/works/OL10000038W","/subjects/power_resources","/authors/OL3964969A"],"title":"Marche énergétique allemand-chronique","title_suggest":["Marche énergétique allemand-chronique"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622771M"],"publish_date":["April 10, 2003"],"publish_year":[2003],"first_publish_year":2003,"lccn":["2002544301"],"lcc":["HD-9502.00000000.G42 H47 2002"],"isbn":["2842741978","9782842741976"],"last_modified_i":1607368172,"ebook_count_i":0,"cover_edition_key":"OL12622771M","cover_i":3140078,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964969A"],"author_name":["Heuraux/Christophe"],"subject":["Power resources"],"publisher_facet":["Du Temps"],"subject_facet":["Power resources"],"_version_":1697074596551852000,"lcc_sort":"HD-9502.00000000.G42 H47 2002","author_facet":["OL3964969A Heuraux/Christophe"],"subject_key":["power_resources"]}
{"key":"/works/OL10000039W","text":["/works/OL10000039W","Paix-le resume (textes et corr","OL12622772M","2842741986","9782842741983","Du Temps","OL3964970A","Martinet Peron"],"type":"work","seed":["/books/OL12622772M","/works/OL10000039W","/authors/OL3964970A"],"title":"Paix-le resume (textes et corr","title_suggest":["Paix-le resume (textes et corr"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622772M"],"publish_date":["June 19, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2842741986","9782842741983"],"last_modified_i":1260840402,"ebook_count_i":0,"publisher":["Du Temps"],"author_key":["OL3964970A"],"author_name":["Martinet Peron"],"publisher_facet":["Du Temps"],"_version_":1697074596344234000,"author_facet":["OL3964970A Martinet Peron"]}
{"key":"/works/OL1000003W","text":["/works/OL1000003W","Murder Among the Owls","Murder among the O.W.L.S.","OL8137830M","OL24742560M","by Bill Crider","2007001691","0786294752","9780786294756","murderamongowls00crid","Thorndike / Chivers","Thorndike Press","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Texas","Fiction","Dan Rhodes (Fictitious character)","Sheriffs","Large type books","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL8137830M","/books/OL24742560M","/works/OL1000003W","/subjects/fiction","/subjects/dan_rhodes_(fictitious_character)","/subjects/sheriffs","/subjects/large_type_books","/subjects/place:texas","/authors/OL92934A"],"title":"Murder Among the Owls","title_suggest":["Murder Among the Owls"],"has_fulltext":true,"edition_count":2,"edition_key":["OL8137830M","OL24742560M"],"publish_date":["May 2, 2007","2007"],"publish_year":[2007],"first_publish_year":2007,"lccn":["2007001691"],"publish_place":["Waterville, Me"],"lcc":["PS-3553.00000000.R497 M85 2007b"],"ddc":["813.54"],"isbn":["0786294752","9780786294756"],"last_modified_i":1608182302,"ebook_count_i":1,"ia":["murderamongowls00crid"],"public_scan_b":false,"ia_collection_s":"americana;china;inlibrary;delawarecountydistrictlibrary;printdisabled;library_of_atlantis;internetarchivebooks","lending_edition_s":"OL8137830M","lending_identifier_s":"murderamongowls00crid","printdisabled_s":"OL8137830M;OL24742560M","cover_edition_key":"OL8137830M","cover_i":1474413,"publisher":["Thorndike / Chivers","Thorndike Press"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"place":["Texas"],"subject":["Fiction","Dan Rhodes (Fictitious character)","Sheriffs","Large type books","Accessible book","Protected DAISY"],"id_goodreads":["2147358"],"ia_box_id":["IA117005"],"publisher_facet":["Thorndike / Chivers","Thorndike Press"],"place_key":["texas"],"subject_facet":["Accessible book","Dan Rhodes (Fictitious character)","Fiction","Large type books","Protected DAISY","Sheriffs"],"_version_":1697074596569677800,"place_facet":["Texas"],"lcc_sort":"PS-3553.00000000.R497 M85 2007b","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","dan_rhodes_(fictitious_character)","fiction","large_type_books","protected_daisy","sheriffs"],"ddc_sort":"813.54"}
{"key":"/works/OL10000040W","text":["/works/OL10000040W","Synthese hist.mod-renaissance 1470-1560","OL12622773M","284274201X","9782842742010","Du Temps","OL3964971A","Christian Hermann"],"type":"work","seed":["/books/OL12622773M","/works/OL10000040W","/authors/OL3964971A"],"title":"Synthese hist.mod-renaissance 1470-1560","title_suggest":["Synthese hist.mod-renaissance 1470-1560"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622773M"],"publish_date":["October 4, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["284274201X","9782842742010"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622773M","cover_i":3140079,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964971A"],"author_name":["Christian Hermann"],"publisher_facet":["Du Temps"],"_version_":1697074595430924300,"author_facet":["OL3964971A Christian Hermann"]}
{"key":"/works/OL10000041W","text":["/works/OL10000041W","Réussir deug et licence d'hist","OL12622774M","2842742028","9782842742027","Du Temps","OL3964972A","Snegaroff"],"type":"work","seed":["/books/OL12622774M","/works/OL10000041W","/authors/OL3964972A"],"title":"Réussir deug et licence d'hist","title_suggest":["Réussir deug et licence d'hist"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622774M"],"publish_date":["June 19, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2842742028","9782842742027"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622774M","cover_i":3140080,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964972A"],"author_name":["Snegaroff"],"publisher_facet":["Du Temps"],"_version_":1697074596000301000,"author_facet":["OL3964972A Snegaroff"]}
{"key":"/works/OL10000042W","text":["/works/OL10000042W","L'inquisition espagnole et la construction de la monarchie confessionnelle (1478-1561)","OL12622776M","2002497010","9782842742041","2842742044","Du Temps","OL3964973A","J.-P. Sanchez","Inquisition","Political aspects"],"type":"work","seed":["/books/OL12622776M","/works/OL10000042W","/subjects/inquisition","/subjects/political_aspects","/authors/OL3964973A"],"title":"L'inquisition espagnole et la construction de la monarchie confessionnelle (1478-1561)","title_suggest":["L'inquisition espagnole et la construction de la monarchie confessionnelle (1478-1561)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622776M"],"publish_date":["April 10, 2003"],"publish_year":[2003],"first_publish_year":2003,"lccn":["2002497010"],"lcc":["BX-1735.00000000.I554 2002"],"isbn":["9782842742041","2842742044"],"last_modified_i":1607355220,"ebook_count_i":0,"cover_edition_key":"OL12622776M","cover_i":3140082,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964973A"],"author_name":["J.-P. Sanchez"],"subject":["Inquisition","Political aspects"],"publisher_facet":["Du Temps"],"subject_facet":["Inquisition","Political aspects"],"_version_":1697074596010786800,"lcc_sort":"BX-1735.00000000.I554 2002","author_facet":["OL3964973A J.-P. Sanchez"],"subject_key":["inquisition","political_aspects"]}
{"key":"/works/OL10000043W","text":["/works/OL10000043W","Die niemandrose/sprachgitter de paul celan","OL12622777M","2842742052","9782842742058","Du Temps","OL3964974A","Marie-Helene Queval"],"type":"work","seed":["/books/OL12622777M","/works/OL10000043W","/authors/OL3964974A"],"title":"Die niemandrose/sprachgitter de paul celan","title_suggest":["Die niemandrose/sprachgitter de paul celan"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622777M"],"publish_date":["October 18, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2842742052","9782842742058"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12622777M","cover_i":3140083,"publisher":["Du Temps"],"author_key":["OL3964974A"],"author_name":["Marie-Helene Queval"],"id_goodreads":["2621321"],"id_librarything":["9730132"],"publisher_facet":["Du Temps"],"_version_":1697074596163879000,"author_facet":["OL3964974A Marie-Helene Queval"]}
{"key":"/works/OL10000044W","text":["/works/OL10000044W","Synthese sur l'inquisition et la construction de la monarchie confessionnelle (1478-1561)","OL12622779M","9782842742072","2842742079","Du Temps","OL3964975A","M. Escamilla"],"type":"work","seed":["/books/OL12622779M","/works/OL10000044W","/authors/OL3964975A"],"title":"Synthese sur l'inquisition et la construction de la monarchie confessionnelle (1478-1561)","title_suggest":["Synthese sur l'inquisition et la construction de la monarchie confessionnelle (1478-1561)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622779M"],"publish_date":["October 4, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782842742072","2842742079"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622779M","cover_i":3140085,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964975A"],"author_name":["M. Escamilla"],"publisher_facet":["Du Temps"],"_version_":1697074596149198800,"author_facet":["OL3964975A M. Escamilla"]}
{"key":"/works/OL10000045W","text":["/works/OL10000045W","Synthese sur \"le partage des eaux\" de a. carpentier","OL12622780M","2842742087","9782842742089","Du Temps","OL3964976A","J.-M. Lassus"],"type":"work","seed":["/books/OL12622780M","/works/OL10000045W","/authors/OL3964976A"],"title":"Synthese sur \"le partage des eaux\" de a. carpentier","title_suggest":["Synthese sur \"le partage des eaux\" de a. carpentier"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622780M"],"publish_date":["September 20, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2842742087","9782842742089"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622780M","cover_i":3140086,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964976A"],"author_name":["J.-M. Lassus"],"id_goodreads":["2594856"],"publisher_facet":["Du Temps"],"_version_":1697074595595550700,"author_facet":["OL3964976A J.-M. Lassus"]}
{"key":"/works/OL10000046W","text":["/works/OL10000046W","Le Heros Inacheve","Ethique Et Esthetique Dans Les Tragedies de George Chapman (1559?-1634) (Publications Universitaires Europeennes)","OL12660395M","2007462923","9783039105861","3039105868","Peter Lang Publishing","OL3964977A","Christine Sukic","Chapman, george, 1559?-1634","Heroes in literature","English drama, history and criticism","Characters","Heroes","Tragedies"],"type":"work","seed":["/books/OL12660395M","/works/OL10000046W","/subjects/chapman_george_1559?-1634","/subjects/heroes_in_literature","/subjects/english_drama_history_and_criticism","/subjects/characters","/subjects/heroes","/subjects/tragedies","/authors/OL3964977A"],"title":"Le Heros Inacheve","title_suggest":["Le Heros Inacheve"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12660395M"],"publish_date":["January 2005"],"publish_year":[2005],"first_publish_year":2005,"lccn":["2007462923"],"lcc":["PR-2457.00000000.H4 S85 2005"],"isbn":["9783039105861","3039105868"],"last_modified_i":1608390499,"ebook_count_i":0,"publisher":["Peter Lang Publishing"],"author_key":["OL3964977A"],"author_name":["Christine Sukic"],"subject":["Chapman, george, 1559?-1634","Heroes in literature","English drama, history and criticism","Characters","Heroes","Tragedies"],"id_goodreads":["963030"],"publisher_facet":["Peter Lang Publishing"],"subject_facet":["Chapman, george, 1559?-1634","Characters","English drama, history and criticism","Heroes","Heroes in literature","Tragedies"],"_version_":1697074596644126700,"lcc_sort":"PR-2457.00000000.H4 S85 2005","author_facet":["OL3964977A Christine Sukic"],"subject_key":["chapman_george_1559-1634","characters","english_drama_history_and_criticism","heroes","heroes_in_literature","tragedies"]}
{"key":"/works/OL10000047W","text":["/works/OL10000047W","Midsummer night's dream de w.shakespeare","OL12622783M","2842742133","9782842742133","Du Temps","OL3964977A","Christine Sukic"],"type":"work","seed":["/books/OL12622783M","/works/OL10000047W","/authors/OL3964977A"],"title":"Midsummer night's dream de w.shakespeare","title_suggest":["Midsummer night's dream de w.shakespeare"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622783M"],"publish_date":["September 20, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2842742133","9782842742133"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622783M","cover_i":3140089,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964977A"],"author_name":["Christine Sukic"],"id_goodreads":["3097650"],"publisher_facet":["Du Temps"],"_version_":1697074596426023000,"author_facet":["OL3964977A Christine Sukic"]}
{"key":"/works/OL10000048W","text":["/works/OL10000048W","Synthese sur/complete poems de e.bishop","OL12622784M","9782842742140","2842742141","Du Temps","OL3964978A","Marie Jeann Ortemann"],"type":"work","seed":["/books/OL12622784M","/works/OL10000048W","/authors/OL3964978A"],"title":"Synthese sur/complete poems de e.bishop","title_suggest":["Synthese sur/complete poems de e.bishop"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622784M"],"publish_date":["October 4, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782842742140","2842742141"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622784M","cover_i":3140090,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964978A"],"author_name":["Marie Jeann Ortemann"],"id_goodreads":["2410507"],"publisher_facet":["Du Temps"],"_version_":1697074596347379700,"author_facet":["OL3964978A Marie Jeann Ortemann"]}
{"key":"/works/OL10000049W","text":["/works/OL10000049W","Le crime organise/quatre films exemplaires","OL12622785M","284274215X","9782842742157","Du Temps","OL3964979A","d. Sipiere"],"type":"work","seed":["/books/OL12622785M","/works/OL10000049W","/authors/OL3964979A"],"title":"Le crime organise/quatre films exemplaires","title_suggest":["Le crime organise/quatre films exemplaires"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622785M"],"publish_date":["October 4, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["284274215X","9782842742157"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622785M","cover_i":3140091,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964979A"],"author_name":["d. Sipiere"],"publisher_facet":["Du Temps"],"_version_":1697074595744448500,"author_facet":["OL3964979A d. Sipiere"]}
{"key":"/works/OL1000004W","text":["/works/OL1000004W","Murder is an art","OL379643M","Bill Crider.","98041786","0312199279","9780312199272","murderisart00crid","Thomas Dunne Books","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Texas","Fiction","Sally Good (Fictitious character)","Women teachers","College teachers","English teachers","College teachers in fiction","English teachers in fiction","Women teachers in fiction","Texas in fiction","Women college teachers","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL379643M","/works/OL1000004W","/subjects/fiction","/subjects/sally_good_(fictitious_character)","/subjects/women_teachers","/subjects/college_teachers","/subjects/english_teachers","/subjects/college_teachers_in_fiction","/subjects/english_teachers_in_fiction","/subjects/women_teachers_in_fiction","/subjects/texas_in_fiction","/subjects/women_college_teachers","/subjects/place:texas","/authors/OL92934A"],"title":"Murder is an art","title_suggest":["Murder is an art"],"has_fulltext":true,"edition_count":1,"edition_key":["OL379643M"],"publish_date":["1999"],"publish_year":[1999],"first_publish_year":1999,"lccn":["98041786"],"publish_place":["New York"],"lcc":["PS-3553.00000000.R497 M86 1999"],"ddc":["813.54"],"isbn":["0312199279","9780312199272"],"last_modified_i":1606588753,"ebook_count_i":1,"ia":["murderisart00crid"],"public_scan_b":false,"ia_collection_s":"americana;china;spokanepubliclibrary-ol;inlibrary;delawarecountydistrictlibrary;printdisabled;library_of_atlantis;internetarchivebooks;delawarecountydistrictlibrary-ol","lending_edition_s":"OL379643M","lending_identifier_s":"murderisart00crid","printdisabled_s":"OL379643M","cover_edition_key":"OL379643M","cover_i":2368788,"publisher":["Thomas Dunne Books"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"place":["Texas"],"subject":["Fiction","Sally Good (Fictitious character)","Women teachers","College teachers","English teachers","College teachers in fiction","English teachers in fiction","Women teachers in fiction","Texas in fiction","Women college teachers","Accessible book","Protected DAISY"],"id_goodreads":["707442"],"id_librarything":["2341882"],"ia_loaded_id":["murderisart00crid"],"ia_box_id":["IA171201"],"publisher_facet":["Thomas Dunne Books"],"place_key":["texas"],"subject_facet":["Accessible book","College teachers","College teachers in fiction","English teachers","English teachers in fiction","Fiction","Protected DAISY","Sally Good (Fictitious character)","Texas in fiction","Women college teachers","Women teachers","Women teachers in fiction"],"_version_":1697074596065312800,"place_facet":["Texas"],"lcc_sort":"PS-3553.00000000.R497 M86 1999","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","college_teachers","college_teachers_in_fiction","english_teachers","english_teachers_in_fiction","fiction","protected_daisy","sally_good_(fictitious_character)","texas_in_fiction","women_college_teachers","women_teachers","women_teachers_in_fiction"],"ddc_sort":"813.54"}
{"key":"/works/OL10000050W","text":["/works/OL10000050W","La grande-bretagne eurosceptique ?","OL12622786M","2002544434","2842742168","9782842742164","Du Temps","OL3964980A","a. Alexandre-Collier","Politics and government","European Economic Community","European Union"],"type":"work","seed":["/books/OL12622786M","/works/OL10000050W","/subjects/politics_and_government","/subjects/european_economic_community","/subjects/european_union","/authors/OL3964980A"],"title":"La grande-bretagne eurosceptique ?","title_suggest":["La grande-bretagne eurosceptique ?"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622786M"],"publish_date":["September 20, 2002"],"publish_year":[2002],"first_publish_year":2002,"lccn":["2002544434"],"lcc":["HC-0240.25000000.G7 A44 2002"],"isbn":["2842742168","9782842742164"],"last_modified_i":1607368239,"ebook_count_i":0,"cover_edition_key":"OL12622786M","cover_i":5203744,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964980A"],"author_name":["a. Alexandre-Collier"],"subject":["Politics and government","European Economic Community","European Union"],"publisher_facet":["Du Temps"],"subject_facet":["European Economic Community","European Union","Politics and government"],"_version_":1697074596632592400,"lcc_sort":"HC-0240.25000000.G7 A44 2002","author_facet":["OL3964980A a. Alexandre-Collier"],"subject_key":["european_economic_community","european_union","politics_and_government"]}
{"key":"/works/OL10000051W","text":["/works/OL10000051W","Outils et methode en geographie","OL12622790M","2003375331","2842742249","9782842742249","Du Temps","OL3964981A","Minvielle Souiah","Geography","Statistical methods","Spatial analysis (Statistics)"],"type":"work","seed":["/books/OL12622790M","/works/OL10000051W","/subjects/geography","/subjects/statistical_methods","/subjects/spatial_analysis_(statistics)","/authors/OL3964981A"],"title":"Outils et methode en geographie","title_suggest":["Outils et methode en geographie"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622790M"],"publish_date":["April 10, 2003"],"publish_year":[2003],"first_publish_year":2003,"lccn":["2003375331"],"lcc":["G--0070.30000000.M56 2003"],"isbn":["2842742249","9782842742249"],"last_modified_i":1607342717,"ebook_count_i":0,"cover_edition_key":"OL12622790M","cover_i":3140094,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964981A"],"author_name":["Minvielle Souiah"],"subject":["Geography","Statistical methods","Spatial analysis (Statistics)"],"publisher_facet":["Du Temps"],"subject_facet":["Geography","Spatial analysis (Statistics)","Statistical methods"],"_version_":1697074596528783400,"lcc_sort":"G--0070.30000000.M56 2003","author_facet":["OL3964981A Minvielle Souiah"],"subject_key":["geography","spatial_analysis_(statistics)","statistical_methods"]}
{"key":"/works/OL10000052W","text":["/works/OL10000052W","Synthese sur the mill on the floss","OL12622791M","9782842742256","2842742257","Du Temps","OL3964982A","Claire Bouchet"],"type":"work","seed":["/books/OL12622791M","/works/OL10000052W","/authors/OL3964982A"],"title":"Synthese sur the mill on the floss","title_suggest":["Synthese sur the mill on the floss"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622791M"],"publish_date":["September 20, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782842742256","2842742257"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622791M","cover_i":3140095,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964982A"],"author_name":["Claire Bouchet"],"id_goodreads":["1176651"],"publisher_facet":["Du Temps"],"_version_":1697074596244619300,"author_facet":["OL3964982A Claire Bouchet"]}
{"key":"/works/OL10000053W","text":["/works/OL10000053W","Préparer l'oral du capes d'allemand","OL12622792M","469915263","9782842742263","2842742265","Du Temps","OL3964983A","H. Boursicaut"],"type":"work","seed":["/books/OL12622792M","/works/OL10000053W","/authors/OL3964983A"],"title":"Préparer l'oral du capes d'allemand","title_suggest":["Préparer l'oral du capes d'allemand"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622792M"],"publish_date":["April 10, 2003"],"publish_year":[2003],"first_publish_year":2003,"oclc":["469915263"],"isbn":["9782842742263","2842742265"],"last_modified_i":1304077818,"ebook_count_i":0,"cover_edition_key":"OL12622792M","cover_i":3140096,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964983A"],"author_name":["H. Boursicaut"],"publisher_facet":["Du Temps"],"_version_":1697074596451188700,"author_facet":["OL3964983A H. Boursicaut"]}
{"key":"/works/OL10000054W","text":["/works/OL10000054W","Epreuve orale sur dossier capes d'espagnol","OL12622793M","53292753","9782842742287","2842742281","Du Temps","OL3964984A","Reynes /Torres"],"type":"work","seed":["/books/OL12622793M","/works/OL10000054W","/authors/OL3964984A"],"title":"Epreuve orale sur dossier capes d'espagnol","title_suggest":["Epreuve orale sur dossier capes d'espagnol"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622793M"],"publish_date":["April 10, 2003"],"publish_year":[2003],"first_publish_year":2003,"oclc":["53292753"],"isbn":["9782842742287","2842742281"],"last_modified_i":1304073285,"ebook_count_i":0,"cover_edition_key":"OL12622793M","cover_i":3140097,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964984A"],"author_name":["Reynes /Torres"],"publisher_facet":["Du Temps"],"_version_":1697074596017078300,"author_facet":["OL3964984A Reynes /Torres"]}
{"key":"/works/OL10000055W","text":["/works/OL10000055W","Histoire romaine de tite-live/juxta","OL12622794M","2842742311","9782842742317","Du Temps","OL3964985A","Maximilien Monbrun"],"type":"work","seed":["/books/OL12622794M","/works/OL10000055W","/authors/OL3964985A"],"title":"Histoire romaine de tite-live/juxta","title_suggest":["Histoire romaine de tite-live/juxta"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622794M"],"publish_date":["June 10, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["2842742311","9782842742317"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622794M","cover_i":3140098,"publisher":["Du Temps"],"language":["fre"],"author_key":["OL3964985A"],"author_name":["Maximilien Monbrun"],"publisher_facet":["Du Temps"],"_version_":1697074596424974300,"author_facet":["OL3964985A Maximilien Monbrun"]}
{"key":"/works/OL10000056W","text":["/works/OL10000056W","La personne âgée et ses besoins","Interventions infirmières","OL12622795M","284276000X","9782842760007","Seli Arslan","OL3964986A","OL1584279A","Sylvie Lauzon","Evelyn Adam"],"type":"work","seed":["/books/OL12622795M","/works/OL10000056W","/authors/OL3964986A","/authors/OL1584279A"],"title":"La personne âgée et ses besoins","title_suggest":["La personne âgée et ses besoins"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622795M"],"publish_date":["May 3, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["284276000X","9782842760007"],"last_modified_i":1304210502,"ebook_count_i":0,"cover_edition_key":"OL12622795M","cover_i":3140099,"publisher":["Seli Arslan"],"language":["fre"],"author_key":["OL3964986A","OL1584279A"],"author_name":["Sylvie Lauzon","Evelyn Adam"],"id_librarything":["4285833"],"publisher_facet":["Seli Arslan"],"_version_":1697074595725574100,"author_facet":["OL1584279A Evelyn Adam","OL3964986A Sylvie Lauzon"]}
{"key":"/works/OL10000057W","text":["/works/OL10000057W","La qualité du soin infirmier","qualité du soin infirmier","penser et agir dans une perspective soignante","OL20794807M","Walter Hesbeen.","2294009215","9782294009211","Masson","OL3964988A","Walter Hesbeen","Soins infirmiers","Services infirmiers","Aspect social","Hôpitaux"],"type":"work","seed":["/books/OL20794807M","/works/OL10000057W","/subjects/soins_infirmiers","/subjects/services_infirmiers","/subjects/aspect_social","/subjects/hôpitaux","/authors/OL3964988A"],"title":"La qualité du soin infirmier","title_suggest":["La qualité du soin infirmier"],"has_fulltext":false,"edition_count":1,"edition_key":["OL20794807M"],"publish_date":["2002"],"publish_year":[2002],"first_publish_year":2002,"publish_place":["Paris"],"lcc":["RT-0086.50000000.H48 2002"],"isbn":["2294009215","9782294009211"],"last_modified_i":1282150595,"ebook_count_i":0,"publisher":["Masson"],"language":["fre"],"author_key":["OL3964988A"],"author_name":["Walter Hesbeen"],"subject":["Soins infirmiers","Services infirmiers","Aspect social","Hôpitaux"],"id_librarything":["4037412"],"publisher_facet":["Masson"],"subject_facet":["Aspect social","Hôpitaux","Services infirmiers","Soins infirmiers"],"_version_":1697074596259299300,"lcc_sort":"RT-0086.50000000.H48 2002","author_facet":["OL3964988A Walter Hesbeen"],"subject_key":["aspect_social","hôpitaux","services_infirmiers","soins_infirmiers"]}
{"key":"/works/OL10000058W","text":["/works/OL10000058W","La readaptation, aider a creer de nouveaux chemins","OL12622799M","9782842760656","2842760654","Estem","OL3964988A","Walter Hesbeen"],"type":"work","seed":["/books/OL12622799M","/works/OL10000058W","/authors/OL3964988A"],"title":"La readaptation, aider a creer de nouveaux chemins","title_suggest":["La readaptation, aider a creer de nouveaux chemins"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622799M"],"publish_date":["January 1, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782842760656","2842760654"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622799M","cover_i":3140103,"publisher":["Estem"],"language":["fre"],"author_key":["OL3964988A"],"author_name":["Walter Hesbeen"],"publisher_facet":["Estem"],"_version_":1697074596158636000,"author_facet":["OL3964988A Walter Hesbeen"]}
{"key":"/works/OL10000059W","text":["/works/OL10000059W","Si c'etait a refaire","Si c'etait a refaire ","les infirmieres","OL12622800M","2003438559","2842760743","9782842760748","Seli Arslan","OL3964989A","Lidy Arslan","Nurses","Interviews","Psychology","Nursing","Vocational guidance"],"type":"work","seed":["/books/OL12622800M","/works/OL10000059W","/subjects/nurses","/subjects/interviews","/subjects/psychology","/subjects/nursing","/subjects/vocational_guidance","/authors/OL3964989A"],"title":"Si c'etait a refaire","title_suggest":["Si c'etait a refaire"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622800M"],"publish_date":["January 1, 2002"],"publish_year":[2002],"first_publish_year":2002,"lccn":["2003438559"],"lcc":["RT-0082.00000000.I54 2002"],"isbn":["2842760743","9782842760748"],"last_modified_i":1607370793,"ebook_count_i":0,"publisher":["Seli Arslan"],"language":["fre"],"author_key":["OL3964989A"],"author_name":["Lidy Arslan"],"subject":["Nurses","Interviews","Psychology","Nursing","Vocational guidance"],"id_librarything":["4103687"],"publisher_facet":["Seli Arslan"],"subject_facet":["Interviews","Nurses","Nursing","Psychology","Vocational guidance"],"_version_":1697074595951018000,"lcc_sort":"RT-0082.00000000.I54 2002","author_facet":["OL3964989A Lidy Arslan"],"subject_key":["interviews","nurses","nursing","psychology","vocational_guidance"]}
{"key":"/works/OL1000005W","text":["/works/OL1000005W","Murder most fowl","OL1088860M","Bill Crider.","94012921","9780312113872","0312113870","murdermostfowl00crid","St. Martin's Press","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Texas","Fiction","Dan Rhodes (Fictitious character)","Emu farming","Sheriffs","Detective and mystery stories","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL1088860M","/works/OL1000005W","/subjects/fiction","/subjects/dan_rhodes_(fictitious_character)","/subjects/emu_farming","/subjects/sheriffs","/subjects/detective_and_mystery_stories","/subjects/place:texas","/authors/OL92934A"],"title":"Murder most fowl","title_suggest":["Murder most fowl"],"has_fulltext":true,"edition_count":1,"edition_key":["OL1088860M"],"publish_date":["1994"],"publish_year":[1994],"first_publish_year":1994,"lccn":["94012921"],"publish_place":["New York"],"lcc":["PS-3553.00000000.R497 M87 1994"],"ddc":["813.54"],"isbn":["9780312113872","0312113870"],"last_modified_i":1605688863,"ebook_count_i":1,"ia":["murdermostfowl00crid"],"public_scan_b":false,"ia_collection_s":"americana;china;inlibrary;delawarecountydistrictlibrary;printdisabled;library_of_atlantis;internetarchivebooks;delawarecountydistrictlibrary-ol","lending_edition_s":"OL1088860M","lending_identifier_s":"murdermostfowl00crid","printdisabled_s":"OL1088860M","cover_edition_key":"OL1088860M","cover_i":7064298,"publisher":["St. Martin's Press"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"place":["Texas"],"subject":["Fiction","Dan Rhodes (Fictitious character)","Emu farming","Sheriffs","Detective and mystery stories","Accessible book","Protected DAISY"],"id_goodreads":["538960"],"id_librarything":["2487133"],"ia_loaded_id":["murdermostfowl00crid"],"ia_box_id":["IA171001"],"publisher_facet":["St. Martin's Press"],"place_key":["texas"],"subject_facet":["Accessible book","Dan Rhodes (Fictitious character)","Detective and mystery stories","Emu farming","Fiction","Protected DAISY","Sheriffs"],"_version_":1697074596406100000,"place_facet":["Texas"],"lcc_sort":"PS-3553.00000000.R497 M87 1994","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","dan_rhodes_(fictitious_character)","detective_and_mystery_stories","emu_farming","fiction","protected_daisy","sheriffs"],"ddc_sort":"813.54"}
{"key":"/works/OL10000060W","text":["/works/OL10000060W","L' Herbier Du Coutte","OL12622805M","40724609","9782842770167","2842770161","Editions du Chene","OL3964994A","Marthe Seguin-Foutes"],"type":"work","seed":["/books/OL12622805M","/works/OL10000060W","/authors/OL3964994A"],"title":"L' Herbier Du Coutte","title_suggest":["L' Herbier Du Coutte"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622805M"],"publish_date":["March 4, 1996"],"publish_year":[1996],"first_publish_year":1996,"oclc":["40724609"],"isbn":["9782842770167","2842770161"],"last_modified_i":1307516923,"ebook_count_i":0,"publisher":["Editions du Chene"],"author_key":["OL3964994A"],"author_name":["Marthe Seguin-Foutes"],"id_goodreads":["7135584"],"publisher_facet":["Editions du Chene"],"_version_":1697074595804217300,"author_facet":["OL3964994A Marthe Seguin-Foutes"]}
{"key":"/works/OL10000061W","text":["/works/OL10000061W","Roses anciennes et botaniques","OL12622807M","9782842770341","284277034X","Le Chêne","OL3964995A","E. Cruse P. Starosta"],"type":"work","seed":["/books/OL12622807M","/works/OL10000061W","/authors/OL3964995A"],"title":"Roses anciennes et botaniques","title_suggest":["Roses anciennes et botaniques"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622807M"],"publish_date":["March 1, 1997"],"publish_year":[1997],"first_publish_year":1997,"isbn":["9782842770341","284277034X"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622807M","cover_i":3140109,"publisher":["Le Chêne"],"author_key":["OL3964995A"],"author_name":["E. Cruse P. Starosta"],"publisher_facet":["Le Chêne"],"_version_":1697074596625252400,"author_facet":["OL3964995A E. Cruse P. Starosta"]}
{"key":"/works/OL10000062W","text":["/works/OL10000062W","Champignons. Cueillettes et recettes","OL12622811M","9782842770471","2842770471","Le Chêne","OL3964996A","Jean-Claude Ferrero"],"type":"work","seed":["/books/OL12622811M","/works/OL10000062W","/authors/OL3964996A"],"title":"Champignons. Cueillettes et recettes","title_suggest":["Champignons. Cueillettes et recettes"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622811M"],"publish_date":["August 16, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782842770471","2842770471"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622811M","cover_i":3140113,"publisher":["Le Chêne"],"author_key":["OL3964996A"],"author_name":["Jean-Claude Ferrero"],"publisher_facet":["Le Chêne"],"_version_":1697074595851403300,"author_facet":["OL3964996A Jean-Claude Ferrero"]}
{"key":"/works/OL10000063W","text":["/works/OL10000063W","Le Language Des Fleurs","OL12622818M","405911936","9782842770679","2842770676","Editions du Chene","OL3964998A","Fontes Seguin"],"type":"work","seed":["/books/OL12622818M","/works/OL10000063W","/authors/OL3964998A"],"title":"Le Language Des Fleurs","title_suggest":["Le Language Des Fleurs"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622818M"],"publish_date":["1998"],"publish_year":[1998],"first_publish_year":1998,"oclc":["405911936"],"isbn":["9782842770679","2842770676"],"last_modified_i":1307519098,"ebook_count_i":0,"cover_edition_key":"OL12622818M","cover_i":3140118,"publisher":["Editions du Chene"],"author_key":["OL3964998A"],"author_name":["Fontes Seguin"],"publisher_facet":["Editions du Chene"],"_version_":1697074596655661000,"author_facet":["OL3964998A Fontes Seguin"]}
{"key":"/works/OL10000064W","text":["/works/OL10000064W","Peintures décoratives","OL12622825M","405979598","9782842771041","2842771044","Le Chêne","OL3965000A","Tracy Marsch"],"type":"work","seed":["/books/OL12622825M","/works/OL10000064W","/authors/OL3965000A"],"title":"Peintures décoratives","title_suggest":["Peintures décoratives"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622825M"],"publish_date":["December 31, 1998"],"publish_year":[1998],"first_publish_year":1998,"oclc":["405979598"],"isbn":["9782842771041","2842771044"],"last_modified_i":1303970036,"ebook_count_i":0,"cover_edition_key":"OL12622825M","cover_i":3140124,"publisher":["Le Chêne"],"language":["fre"],"author_key":["OL3965000A"],"author_name":["Tracy Marsch"],"publisher_facet":["Le Chêne"],"_version_":1697074596153393200,"author_facet":["OL3965000A Tracy Marsch"]}
{"key":"/works/OL10000065W","text":["/works/OL10000065W","Style marin","OL12622829M","9782842771249","2842771249","Le Chêne","OL3965003A","F. de Maulde"],"type":"work","seed":["/books/OL12622829M","/works/OL10000065W","/authors/OL3965003A"],"title":"Style marin","title_suggest":["Style marin"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622829M"],"publish_date":["May 3, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782842771249","2842771249"],"last_modified_i":1260840402,"ebook_count_i":0,"publisher":["Le Chêne"],"author_key":["OL3965003A"],"author_name":["F. de Maulde"],"publisher_facet":["Le Chêne"],"_version_":1697074596286562300,"author_facet":["OL3965003A F. de Maulde"]}
{"key":"/works/OL10000066W","text":["/works/OL10000066W","Le miroir dans l'art, de Manet à Richter","OL18397250M","Soko Phay-Vakalis.","2002420690","2747513572","9782747513579","L'Harmattan","OL3965009A","Soko Phay-Vakalis","Themes, motives","Painting, Modern","Mirrors in art","Modern Painting","Symbolism in art","Modern Art","20th century","19th century"],"type":"work","seed":["/books/OL18397250M","/works/OL10000066W","/subjects/themes_motives","/subjects/painting_modern","/subjects/mirrors_in_art","/subjects/modern_painting","/subjects/symbolism_in_art","/subjects/modern_art","/subjects/time:20th_century","/subjects/time:19th_century","/authors/OL3965009A"],"title":"Le miroir dans l'art, de Manet à Richter","title_suggest":["Le miroir dans l'art, de Manet à Richter"],"has_fulltext":false,"edition_count":1,"edition_key":["OL18397250M"],"publish_date":["2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2002420690"],"publish_place":["Paris"],"lcc":["N--8224.00000000.M6 P48 2001","N--8217.00000000.M6 P48 2001"],"ddc":["700"],"isbn":["2747513572","9782747513579"],"last_modified_i":1607327807,"ebook_count_i":0,"publisher":["L'Harmattan"],"language":["fre"],"author_key":["OL3965009A"],"author_name":["Soko Phay-Vakalis"],"subject":["Themes, motives","Painting, Modern","Mirrors in art","Modern Painting","Symbolism in art","Modern Art"],"time":["20th century","19th century"],"publisher_facet":["L'Harmattan"],"time_facet":["19th century","20th century"],"subject_facet":["Mirrors in art","Modern Art","Modern Painting","Painting, Modern","Symbolism in art","Themes, motives"],"_version_":1697074595852451800,"lcc_sort":"N--8224.00000000.M6 P48 2001","author_facet":["OL3965009A Soko Phay-Vakalis"],"subject_key":["mirrors_in_art","modern_art","modern_painting","painting_modern","symbolism_in_art","themes_motives"],"ddc_sort":"700","time_key":["19th_century","20th_century"]}
{"key":"/works/OL10000067W","text":["/works/OL10000067W","Salvador Dali : Désirs inassouvis","Salvador Dali : Désirs inassouvis ","Du purisme au surréalisme, 1925-1935","OL12627399M","2002499918","2847420061","9782847420067","Le Passage","OL3965011A","Jean-Louis Guillemin","Criticism and interpretation","Aesthetics","Psychology"],"type":"work","seed":["/books/OL12627399M","/works/OL10000067W","/subjects/criticism_and_interpretation","/subjects/aesthetics","/subjects/psychology","/authors/OL3965011A"],"title":"Salvador Dali : Désirs inassouvis","title_suggest":["Salvador Dali : Désirs inassouvis"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12627399M"],"publish_date":["May 12, 2002"],"publish_year":[2002],"first_publish_year":2002,"lccn":["2002499918"],"lcc":["ND-0813.00000000.D3 G27 2002"],"isbn":["2847420061","9782847420067"],"last_modified_i":1607356235,"ebook_count_i":0,"cover_edition_key":"OL12627399M","cover_i":3144119,"publisher":["Le Passage"],"author_key":["OL3965011A"],"author_name":["Jean-Louis Guillemin"],"subject":["Criticism and interpretation","Aesthetics","Psychology"],"id_goodreads":["777852"],"id_librarything":["3265773"],"publisher_facet":["Le Passage"],"subject_facet":["Aesthetics","Criticism and interpretation","Psychology"],"_version_":1697074596189044700,"lcc_sort":"ND-0813.00000000.D3 G27 2002","author_facet":["OL3965011A Jean-Louis Guillemin"],"subject_key":["aesthetics","criticism_and_interpretation","psychology"]}
{"key":"/works/OL10000068W","text":["/works/OL10000068W","Das Fisch- Kochbuch","Das Fisch- Kochbuch.","OL12965837M","9783811218512","3811218514","Gondrom Verlag","OL3965019A","Jean-Claude Goumard"],"type":"work","seed":["/books/OL12965837M","/works/OL10000068W","/authors/OL3965019A"],"title":"Das Fisch- Kochbuch","title_suggest":["Das Fisch- Kochbuch"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12965837M"],"publish_date":["January 1, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9783811218512","3811218514"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12965837M","cover_i":3270181,"publisher":["Gondrom Verlag"],"author_key":["OL3965019A"],"author_name":["Jean-Claude Goumard"],"id_goodreads":["6142563"],"publisher_facet":["Gondrom Verlag"],"_version_":1697074596216307700,"author_facet":["OL3965019A Jean-Claude Goumard"]}
{"key":"/works/OL10000069W","text":["/works/OL10000069W","La Nouvelle Peste","OL12652429M","290981159X","9782909811598","Du Triomphe","OL3965020A","Elisabeth Bourgeois"],"type":"work","seed":["/books/OL12652429M","/works/OL10000069W","/authors/OL3965020A"],"title":"La Nouvelle Peste","title_suggest":["La Nouvelle Peste"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12652429M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["290981159X","9782909811598"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12652429M","cover_i":3160931,"publisher":["Du Triomphe"],"language":["fre"],"author_key":["OL3965020A"],"author_name":["Elisabeth Bourgeois"],"id_goodreads":["2725833"],"publisher_facet":["Du Triomphe"],"_version_":1697074596284465200,"author_facet":["OL3965020A Elisabeth Bourgeois"]}
{"key":"/works/OL1000006W","text":["/works/OL1000006W","Muttketeer","OL9893300M","9780613102193","0613102193","Econo-Clad Books","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter"],"type":"work","seed":["/books/OL9893300M","/works/OL1000006W","/authors/OL92934A"],"title":"Muttketeer","title_suggest":["Muttketeer"],"has_fulltext":false,"edition_count":1,"edition_key":["OL9893300M"],"publish_date":["October 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9780613102193","0613102193"],"last_modified_i":1341442203,"ebook_count_i":0,"cover_edition_key":"OL9893300M","cover_i":5024672,"publisher":["Econo-Clad Books"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"publisher_facet":["Econo-Clad Books"],"_version_":1697074596233085000,"author_facet":["OL92934A Bill Crider"]}
{"key":"/works/OL10000070W","text":["/works/OL10000070W","Provenzalische Landhausküche. Spezialitäten aus dem Süden Frankreichs","Provenzalische Landhausküche. Spezialitäten aus dem Süden Frankreichs.","OL12817563M","76375270","9783576116610","3576116613","Mosaik","OL3965020A","Elisabeth Bourgeois"],"type":"work","seed":["/books/OL12817563M","/works/OL10000070W","/authors/OL3965020A"],"title":"Provenzalische Landhausküche. Spezialitäten aus dem Süden Frankreichs","title_suggest":["Provenzalische Landhausküche. Spezialitäten aus dem Süden Frankreichs"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12817563M"],"publish_date":["July 1, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["76375270"],"isbn":["9783576116610","3576116613"],"last_modified_i":1307507807,"ebook_count_i":0,"cover_edition_key":"OL12817563M","cover_i":3236838,"publisher":["Mosaik"],"author_key":["OL3965020A"],"author_name":["Elisabeth Bourgeois"],"id_goodreads":["4854727"],"publisher_facet":["Mosaik"],"_version_":1697074596154441700,"author_facet":["OL3965020A Elisabeth Bourgeois"]}
{"key":"/works/OL10000071W","text":["/works/OL10000071W","Dans les jardins de nos grand-mères","OL12622865M","9782842772116","2842772113","Le Chêne","OL3965026A","Heugel /Sarramon"],"type":"work","seed":["/books/OL12622865M","/works/OL10000071W","/authors/OL3965026A"],"title":"Dans les jardins de nos grand-mères","title_suggest":["Dans les jardins de nos grand-mères"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622865M"],"publish_date":["April 16, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["9782842772116","2842772113"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12622865M","cover_i":3140164,"publisher":["Le Chêne"],"language":["fre"],"author_key":["OL3965026A"],"author_name":["Heugel /Sarramon"],"id_librarything":["6986650"],"publisher_facet":["Le Chêne"],"_version_":1697074596504666000,"author_facet":["OL3965026A Heugel /Sarramon"]}
{"key":"/works/OL10000072W","text":["/works/OL10000072W","Les Poupées","OL12622873M","2002385021","9782842772383","2842772385","Editions du Chêne","OL3965028A","Samy Odin","Dolls","History"],"type":"work","seed":["/books/OL12622873M","/works/OL10000072W","/subjects/dolls","/subjects/history","/authors/OL3965028A"],"title":"Les Poupées","title_suggest":["Les Poupées"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622873M"],"publish_date":["October 24, 2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2002385021"],"lcc":["NK-4894.00000000.A2 O45 2001"],"isbn":["9782842772383","2842772385"],"last_modified_i":1607311007,"ebook_count_i":0,"cover_edition_key":"OL12622873M","cover_i":3140172,"publisher":["Editions du Chêne"],"author_key":["OL3965028A"],"author_name":["Samy Odin"],"subject":["Dolls","History"],"id_goodreads":["6543012"],"publisher_facet":["Editions du Chêne"],"subject_facet":["Dolls","History"],"_version_":1697074596334796800,"lcc_sort":"NK-4894.00000000.A2 O45 2001","author_facet":["OL3965028A Samy Odin"],"subject_key":["dolls","history"]}
{"key":"/works/OL10000073W","text":["/works/OL10000073W","Le Crochet au jour le jour","OL12622878M","9782842772512","2842772512","Le Chêne","OL3965029A","Natalie Spiteri"],"type":"work","seed":["/books/OL12622878M","/works/OL10000073W","/authors/OL3965029A"],"title":"Le Crochet au jour le jour","title_suggest":["Le Crochet au jour le jour"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622878M"],"publish_date":["December 1, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782842772512","2842772512"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622878M","cover_i":3140177,"publisher":["Le Chêne"],"author_key":["OL3965029A"],"author_name":["Natalie Spiteri"],"id_goodreads":["4263800"],"publisher_facet":["Le Chêne"],"_version_":1697074596542414800,"author_facet":["OL3965029A Natalie Spiteri"]}
{"key":"/works/OL10000074W","text":["/works/OL10000074W","La Cuisine des fruits","OL12622904M","9782842773113","284277311X","Editions du Chêne","OL3965032A","Philippe Chapon"],"type":"work","seed":["/books/OL12622904M","/works/OL10000074W","/authors/OL3965032A"],"title":"La Cuisine des fruits","title_suggest":["La Cuisine des fruits"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622904M"],"publish_date":["April 2, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782842773113","284277311X"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622904M","cover_i":3140202,"publisher":["Editions du Chêne"],"author_key":["OL3965032A"],"author_name":["Philippe Chapon"],"id_goodreads":["6088730"],"publisher_facet":["Editions du Chêne"],"_version_":1697074596318019600,"author_facet":["OL3965032A Philippe Chapon"]}
{"key":"/works/OL10000075W","text":["/works/OL10000075W","Je tricote pour mon bébé","OL12622887M","319937239","9782842772758","284277275X","Chêne","OL3965036A","Dany Ribailler"],"type":"work","seed":["/books/OL12622887M","/works/OL10000075W","/authors/OL3965036A"],"title":"Je tricote pour mon bébé","title_suggest":["Je tricote pour mon bébé"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622887M"],"publish_date":["September 13, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["319937239"],"isbn":["9782842772758","284277275X"],"last_modified_i":1304154004,"ebook_count_i":0,"cover_edition_key":"OL12622887M","cover_i":3140185,"publisher":["Chêne"],"author_key":["OL3965036A"],"author_name":["Dany Ribailler"],"publisher_facet":["Chêne"],"_version_":1697074596668244000,"author_facet":["OL3965036A Dany Ribailler"]}
{"key":"/works/OL10000076W","text":["/works/OL10000076W","La Provence de Giono","OL12622893M","2842772881","9782842772888","Le Chêne","OL3965039A","Faure Magnan"],"type":"work","seed":["/books/OL12622893M","/works/OL10000076W","/authors/OL3965039A"],"title":"La Provence de Giono","title_suggest":["La Provence de Giono"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622893M"],"publish_date":["July 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2842772881","9782842772888"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12622893M","cover_i":3140191,"publisher":["Le Chêne"],"author_key":["OL3965039A"],"author_name":["Faure Magnan"],"id_librarything":["4464176"],"publisher_facet":["Le Chêne"],"_version_":1697074596253008000,"author_facet":["OL3965039A Faure Magnan"]}
{"key":"/works/OL10000077W","text":["/works/OL10000077W","Classic garden style","planters, furniture, accessories and ornaments","OL17118117M","text, Inès Heugel ; photography, Christian Sarramon","2003112656","2003098267","Sarramon, Christian","9780847826087","0847826082","Rizzoli","OL3965042A","Inès Heugel","Floral decorations","Garden ornaments and furniture","Decoration and ornament"],"type":"work","seed":["/books/OL17118117M","/works/OL10000077W","/subjects/floral_decorations","/subjects/garden_ornaments_and_furniture","/subjects/decoration_and_ornament","/authors/OL3965042A"],"title":"Classic garden style","title_suggest":["Classic garden style"],"has_fulltext":false,"edition_count":1,"edition_key":["OL17118117M"],"publish_date":["2004"],"publish_year":[2004],"first_publish_year":2004,"lccn":["2003112656","2003098267"],"publish_place":["New York"],"contributor":["Sarramon, Christian"],"lcc":["SB-0473.50000000.H4813 2004"],"isbn":["9780847826087","0847826082"],"last_modified_i":1607403554,"ebook_count_i":0,"publisher":["Rizzoli"],"language":["eng"],"author_key":["OL3965042A"],"author_name":["Inès Heugel"],"subject":["Floral decorations","Garden ornaments and furniture","Decoration and ornament"],"id_goodreads":["1352151"],"id_librarything":["3244926"],"publisher_facet":["Rizzoli"],"subject_facet":["Decoration and ornament","Floral decorations","Garden ornaments and furniture"],"_version_":1697074596328505300,"lcc_sort":"SB-0473.50000000.H4813 2004","author_facet":["OL3965042A Inès Heugel"],"subject_key":["decoration_and_ornament","floral_decorations","garden_ornaments_and_furniture"]}
{"key":"/works/OL10000078W","text":["/works/OL10000078W","Objets de Bretagne","OL12622905M","9782842773120","2842773128","Le Chêne","OL3965042A","Inès Heugel"],"type":"work","seed":["/books/OL12622905M","/works/OL10000078W","/authors/OL3965042A"],"title":"Objets de Bretagne","title_suggest":["Objets de Bretagne"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622905M"],"publish_date":["May 16, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782842773120","2842773128"],"last_modified_i":1282054081,"ebook_count_i":0,"cover_edition_key":"OL12622905M","cover_i":3140203,"publisher":["Le Chêne"],"author_key":["OL3965042A"],"author_name":["Inès Heugel"],"id_librarything":["5014376"],"publisher_facet":["Le Chêne"],"_version_":1697074595360669700,"author_facet":["OL3965042A Inès Heugel"]}
{"key":"/works/OL10000079W","text":["/works/OL10000079W","Le grand envol","OL12622914M","284277339X","9782842773397","Le Chêne","OL3965045A","Lesaffre-G"],"type":"work","seed":["/books/OL12622914M","/works/OL10000079W","/authors/OL3965045A"],"title":"Le grand envol","title_suggest":["Le grand envol"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622914M"],"publish_date":["October 10, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["284277339X","9782842773397"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622914M","cover_i":3140212,"publisher":["Le Chêne"],"author_key":["OL3965045A"],"author_name":["Lesaffre-G"],"publisher_facet":["Le Chêne"],"_version_":1697074596435460000,"author_facet":["OL3965045A Lesaffre-G"]}
{"key":"/works/OL1000007W","text":["/works/OL1000007W","Muttketeer!","OL9690858M","Rick Duffield (Creator)","9780606194600","0606194606","Turtleback Books Distributed by Demco Media","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter"],"type":"work","seed":["/books/OL9690858M","/works/OL1000007W","/authors/OL92934A"],"title":"Muttketeer!","title_suggest":["Muttketeer!"],"has_fulltext":false,"edition_count":1,"edition_key":["OL9690858M"],"publish_date":["October 2000"],"publish_year":[2000],"first_publish_year":2000,"contributor":["Rick Duffield (Creator)"],"isbn":["9780606194600","0606194606"],"last_modified_i":1339276029,"ebook_count_i":0,"cover_edition_key":"OL9690858M","cover_i":5003073,"publisher":["Turtleback Books Distributed by Demco Media"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"publisher_facet":["Turtleback Books Distributed by Demco Media"],"_version_":1697074596109353000,"author_facet":["OL92934A Bill Crider"]}
{"key":"/works/OL10000080W","text":["/works/OL10000080W","Les années cool","une jeunesse de rêves 1969-1979","OL16260550M","Martine Ravache.","2007353028","9782755701319","2755701315","Editions du Panama","OL3965046A","Martine Ravache","Pictorial works","Youth","Social conditions","Counterculture","Nineteen seventies","20th century"],"type":"work","seed":["/books/OL16260550M","/works/OL10000080W","/subjects/pictorial_works","/subjects/youth","/subjects/social_conditions","/subjects/counterculture","/subjects/nineteen_seventies","/subjects/time:20th_century","/authors/OL3965046A"],"title":"Les années cool","title_suggest":["Les années cool"],"has_fulltext":false,"edition_count":1,"edition_key":["OL16260550M"],"publish_date":["2006"],"publish_year":[2006],"first_publish_year":2006,"lccn":["2007353028"],"publish_place":["Paris"],"lcc":["HQ-0796.00000000.R3673 2006"],"isbn":["9782755701319","2755701315"],"last_modified_i":1608234058,"ebook_count_i":0,"publisher":["Editions du Panama"],"language":["fre"],"author_key":["OL3965046A"],"author_name":["Martine Ravache"],"subject":["Pictorial works","Youth","Social conditions","Counterculture","Nineteen seventies"],"time":["20th century"],"publisher_facet":["Editions du Panama"],"time_facet":["20th century"],"subject_facet":["Counterculture","Nineteen seventies","Pictorial works","Social conditions","Youth"],"_version_":1697074596521443300,"lcc_sort":"HQ-0796.00000000.R3673 2006","author_facet":["OL3965046A Martine Ravache"],"subject_key":["counterculture","nineteen_seventies","pictorial_works","social_conditions","youth"],"time_key":["20th_century"]}
{"key":"/works/OL10000081W","text":["/works/OL10000081W","Les Promenades de Proust en Normandie","OL12622917M","2842773454","9782842773458","Du Chêne","OL3965047A","Nadine Bauthéac"],"type":"work","seed":["/books/OL12622917M","/works/OL10000081W","/authors/OL3965047A"],"title":"Les Promenades de Proust en Normandie","title_suggest":["Les Promenades de Proust en Normandie"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622917M"],"publish_date":["June 20, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2842773454","9782842773458"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622917M","cover_i":3140215,"publisher":["Du Chêne"],"author_key":["OL3965047A"],"author_name":["Nadine Bauthéac"],"publisher_facet":["Du Chêne"],"_version_":1697074595925852200,"author_facet":["OL3965047A Nadine Bauthéac"]}
{"key":"/works/OL10000082W","text":["/works/OL10000082W","Redjem","Libye des grands espaces","Libye, des grands espaces","OL22605351M","photographies: Alain et Berny Sèbe ; texte: Daniel Richelet et Berny Sèbe.","Richelet, Daniel","Sèbe, Berny","2903156166","9782903156169","Alain Sèbe images","OL3965050A","Alain Sèbe","Sahara","Libya","Description and travel","Pictorial works"],"type":"work","seed":["/books/OL22605351M","/works/OL10000082W","/subjects/description_and_travel","/subjects/pictorial_works","/subjects/place:sahara","/subjects/place:libya","/authors/OL3965050A"],"title":"Redjem","title_suggest":["Redjem"],"has_fulltext":false,"edition_count":1,"edition_key":["OL22605351M"],"publish_date":["2000"],"publish_year":[2000],"first_publish_year":2000,"publish_place":["Vidauban"],"contributor":["Richelet, Daniel","Sèbe, Berny"],"ddc":["770"],"isbn":["2903156166","9782903156169"],"last_modified_i":1279636588,"ebook_count_i":0,"publisher":["Alain Sèbe images"],"language":["fre"],"author_key":["OL3965050A"],"author_name":["Alain Sèbe"],"place":["Sahara","Libya"],"subject":["Description and travel","Pictorial works"],"id_goodreads":["2508189"],"publisher_facet":["Alain Sèbe images"],"place_key":["libya","sahara"],"subject_facet":["Description and travel","Pictorial works"],"_version_":1697074596617912300,"place_facet":["Libya","Sahara"],"author_facet":["OL3965050A Alain Sèbe"],"subject_key":["description_and_travel","pictorial_works"],"ddc_sort":"770"}
{"key":"/works/OL10000083W","text":["/works/OL10000083W","Sahara","the Atlantic to the Nile","The Atlantic to the Nile","OL22859744M","OL8954528M","[photographs] Alain Sébe, [text by] Berny Sébe ; [English translation produced by JMS Books LLP].","Sébe, Berny.","9781844300266","1844300269","Hachette Illustrated UK","Hachette Illustrated","OL3965050A","OL3148548A","OL3148549A","Alain Sèbe","Alain Sebe","Berny Sebe","Sahara","Social life and customs","Description and travel","Pictorial works","Photographs: collections","Places & peoples: general interest","Subjects & Themes - Travel - General","Subjects & Themes - Landscapes","Photography","Photo Essays","The Sahara","Subjects & Themes - Travel - World/Africa"],"type":"work","seed":["/books/OL22859744M","/books/OL8954528M","/works/OL10000083W","/subjects/social_life_and_customs","/subjects/description_and_travel","/subjects/pictorial_works","/subjects/photographs:_collections","/subjects/places_&_peoples:_general_interest","/subjects/subjects_&_themes_-_travel_-_general","/subjects/subjects_&_themes_-_landscapes","/subjects/photography","/subjects/photo_essays","/subjects/the_sahara","/subjects/subjects_&_themes_-_travel_-_world/africa","/subjects/place:sahara","/authors/OL3965050A","/authors/OL3148548A","/authors/OL3148549A"],"title":"Sahara","title_suggest":["Sahara"],"has_fulltext":false,"edition_count":2,"edition_key":["OL22859744M","OL8954528M"],"publish_date":["2001","December 2003"],"publish_year":[2001,2003],"first_publish_year":2001,"publish_place":["London"],"contributor":["Sébe, Berny."],"isbn":["9781844300266","1844300269"],"last_modified_i":1564565907,"ebook_count_i":0,"cover_edition_key":"OL8954528M","cover_i":2029919,"publisher":["Hachette Illustrated UK","Hachette Illustrated"],"language":["eng"],"author_key":["OL3965050A","OL3148548A","OL3148549A"],"author_name":["Alain Sèbe","Alain Sebe","Berny Sebe"],"place":["Sahara"],"subject":["Social life and customs","Description and travel","Pictorial works","Photographs: collections","Places & peoples: general interest","Subjects & Themes - Travel - General","Subjects & Themes - Landscapes","Photography","Photo Essays","The Sahara","Subjects & Themes - Travel - World/Africa"],"id_goodreads":["1734598"],"id_librarything":["2611880"],"publisher_facet":["Hachette Illustrated","Hachette Illustrated UK"],"place_key":["sahara"],"subject_facet":["Description and travel","Photo Essays","Photographs: collections","Photography","Pictorial works","Places & peoples: general interest","Social life and customs","Subjects & Themes - Landscapes","Subjects & Themes - Travel - General","Subjects & Themes - Travel - World/Africa","The Sahara"],"_version_":1697074595974086700,"place_facet":["Sahara"],"author_facet":["OL3148548A Alain Sebe","OL3148549A Berny Sebe","OL3965050A Alain Sèbe"],"subject_key":["description_and_travel","photo_essays","photographs_collections","photography","pictorial_works","places__peoples_general_interest","social_life_and_customs","subjects__themes_-_landscapes","subjects__themes_-_travel_-_general","subjects__themes_-_travel_-_worldafrica","the_sahara"]}
{"key":"/works/OL10000084W","text":["/works/OL10000084W","Les cocktails du ritz paris","OL12622930M","2842773772","9782842773779","Le Chêne","OL3965055A","Field-C.P"],"type":"work","seed":["/books/OL12622930M","/works/OL10000084W","/authors/OL3965055A"],"title":"Les cocktails du ritz paris","title_suggest":["Les cocktails du ritz paris"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622930M"],"publish_date":["November 28, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2842773772","9782842773779"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12622930M","cover_i":3140228,"publisher":["Le Chêne"],"author_key":["OL3965055A"],"author_name":["Field-C.P"],"id_librarything":["3595568"],"publisher_facet":["Le Chêne"],"_version_":1697074595979329500,"author_facet":["OL3965055A Field-C.P"]}
{"key":"/works/OL10000085W","text":["/works/OL10000085W","Paris des photographes","OL12622933M","2002502014","2842773829","9782842773823","Du Chêne","OL3965056A","Françoise Paviot","Pictorial works"],"type":"work","seed":["/books/OL12622933M","/works/OL10000085W","/subjects/pictorial_works","/authors/OL3965056A"],"title":"Paris des photographes","title_suggest":["Paris des photographes"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622933M"],"publish_date":["July 1, 2002"],"publish_year":[2002],"first_publish_year":2002,"lccn":["2002502014"],"lcc":["DC-0707.00000000.D48 2002"],"isbn":["2842773829","9782842773823"],"last_modified_i":1607357221,"ebook_count_i":0,"cover_edition_key":"OL12622933M","cover_i":3140231,"publisher":["Du Chêne"],"author_key":["OL3965056A"],"author_name":["Françoise Paviot"],"subject":["Pictorial works"],"id_goodreads":["5445258"],"publisher_facet":["Du Chêne"],"subject_facet":["Pictorial works"],"_version_":1697074596453286000,"lcc_sort":"DC-0707.00000000.D48 2002","author_facet":["OL3965056A Françoise Paviot"],"subject_key":["pictorial_works"]}
{"key":"/works/OL10000086W","text":["/works/OL10000086W","Les objets de Provence","OL12622940M","2842773942","9782842773946","Le Chêne","OL3965058A","Rémi Venture"],"type":"work","seed":["/books/OL12622940M","/works/OL10000086W","/authors/OL3965058A"],"title":"Les objets de Provence","title_suggest":["Les objets de Provence"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622940M"],"publish_date":["May 2, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2842773942","9782842773946"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622940M","cover_i":3140238,"publisher":["Le Chêne"],"author_key":["OL3965058A"],"author_name":["Rémi Venture"],"id_goodreads":["4874594"],"publisher_facet":["Le Chêne"],"_version_":1697074596003446800,"author_facet":["OL3965058A Rémi Venture"]}
{"key":"/works/OL10000087W","text":["/works/OL10000087W","Provence","OL12628081M","55621120","9782850257650","2850257656","Hazan","OL3965058A","Rémi Venture"],"type":"work","seed":["/books/OL12628081M","/works/OL10000087W","/authors/OL3965058A"],"title":"Provence","title_suggest":["Provence"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12628081M"],"publish_date":["June 6, 2001"],"publish_year":[2001],"first_publish_year":2001,"oclc":["55621120"],"isbn":["9782850257650","2850257656"],"last_modified_i":1303863603,"ebook_count_i":0,"cover_edition_key":"OL12628081M","cover_i":3144744,"publisher":["Hazan"],"author_key":["OL3965058A"],"author_name":["Rémi Venture"],"id_goodreads":["4874592"],"id_librarything":["9375118"],"publisher_facet":["Hazan"],"_version_":1697074596255105000,"author_facet":["OL3965058A Rémi Venture"]}
{"key":"/works/OL10000088W","text":["/works/OL10000088W","L'Esprit du yoga","OL12622942M","50865593","2842773993","9782842773991","Éditions du Chêne","OL3965059A","K. Philips"],"type":"work","seed":["/books/OL12622942M","/works/OL10000088W","/authors/OL3965059A"],"title":"L'Esprit du yoga","title_suggest":["L'Esprit du yoga"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622942M"],"publish_date":["January 27, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["50865593"],"isbn":["2842773993","9782842773991"],"last_modified_i":1304139153,"ebook_count_i":0,"cover_edition_key":"OL12622942M","cover_i":3140240,"publisher":["Éditions du Chêne"],"language":["fre"],"author_key":["OL3965059A"],"author_name":["K. Philips"],"publisher_facet":["Éditions du Chêne"],"_version_":1697074596544512000,"author_facet":["OL3965059A K. Philips"]}
{"key":"/works/OL10000089W","text":["/works/OL10000089W","Le vin","OL12622950M","2842774132","9782842774134","Le Chêne","OL3965063A","Veronique Pratt"],"type":"work","seed":["/books/OL12622950M","/works/OL10000089W","/authors/OL3965063A"],"title":"Le vin","title_suggest":["Le vin"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622950M"],"publish_date":["October 2, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2842774132","9782842774134"],"last_modified_i":1260840402,"ebook_count_i":0,"publisher":["Le Chêne"],"author_key":["OL3965063A"],"author_name":["Veronique Pratt"],"publisher_facet":["Le Chêne"],"_version_":1697074596522492000,"author_facet":["OL3965063A Veronique Pratt"]}
{"key":"/works/OL1000008W","text":["/works/OL1000008W","My heart cries for you","OL8636209M","40600297","9781561468102","156146810X","Mystery Scene Press","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter"],"type":"work","seed":["/books/OL8636209M","/works/OL1000008W","/authors/OL92934A"],"title":"My heart cries for you","title_suggest":["My heart cries for you"],"has_fulltext":false,"edition_count":1,"edition_key":["OL8636209M"],"publish_date":["1992"],"publish_year":[1992],"first_publish_year":1992,"oclc":["40600297"],"isbn":["9781561468102","156146810X"],"last_modified_i":1340425014,"ebook_count_i":0,"publisher":["Mystery Scene Press"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"id_goodreads":["50984"],"id_librarything":["842595"],"publisher_facet":["Mystery Scene Press"],"_version_":1697074595818897400,"author_facet":["OL92934A Bill Crider"]}
{"key":"/works/OL10000090W","text":["/works/OL10000090W","Les Grands-mères modèles","Les Grands-mères modèles ","Loisirs et créations à la manière de la Comtesse de Ségur","OL12622954M","470575103","9782842774288","2842774280","Le Chêne","OL3965065A","Strich /le Maux /Curt"],"type":"work","seed":["/books/OL12622954M","/works/OL10000090W","/authors/OL3965065A"],"title":"Les Grands-mères modèles","title_suggest":["Les Grands-mères modèles"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622954M"],"publish_date":["October 9, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["470575103"],"isbn":["9782842774288","2842774280"],"last_modified_i":1307502778,"ebook_count_i":0,"cover_edition_key":"OL12622954M","cover_i":3140250,"publisher":["Le Chêne"],"language":["fre"],"author_key":["OL3965065A"],"author_name":["Strich /le Maux /Curt"],"id_goodreads":["2554955"],"publisher_facet":["Le Chêne"],"_version_":1697074596289708000,"author_facet":["OL3965065A Strich /le Maux /Curt"]}
{"key":"/works/OL10000091W","text":["/works/OL10000091W","Harem","Harem ","itineraire d'une femme arabe","OL12622964M","9782842774639","2842774639","Le Chêne","OL3965068A","Ysabel Saiah-Baudis"],"type":"work","seed":["/books/OL12622964M","/works/OL10000091W","/authors/OL3965068A"],"title":"Harem","title_suggest":["Harem"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622964M"],"publish_date":["May 14, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["9782842774639","2842774639"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622964M","cover_i":3140261,"publisher":["Le Chêne"],"language":["fre"],"author_key":["OL3965068A"],"author_name":["Ysabel Saiah-Baudis"],"id_goodreads":["5313008"],"publisher_facet":["Le Chêne"],"_version_":1697074596371497000,"author_facet":["OL3965068A Ysabel Saiah-Baudis"]}
{"key":"/works/OL10000092W","text":["/works/OL10000092W","Saharas","Saharas ","Entre Atlantique et Nil","OL12622966M","2842774833","9782842774837","Editions du Chêne","OL3965070A","Sebe /Sebe"],"type":"work","seed":["/books/OL12622966M","/works/OL10000092W","/authors/OL3965070A"],"title":"Saharas","title_suggest":["Saharas"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622966M"],"publish_date":["May 14, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["2842774833","9782842774837"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622966M","cover_i":3140263,"publisher":["Editions du Chêne"],"language":["fre"],"author_key":["OL3965070A"],"author_name":["Sebe /Sebe"],"publisher_facet":["Editions du Chêne"],"_version_":1697074596631543800,"author_facet":["OL3965070A Sebe /Sebe"]}
{"key":"/works/OL10000093W","text":["/works/OL10000093W","Voyages en Italie","OL12622969M","9782842775360","2842775368","Editions du Chêne","OL3965072A","Marc Walter,Sabine Arqué Catherine Donzel"],"type":"work","seed":["/books/OL12622969M","/works/OL10000093W","/authors/OL3965072A"],"title":"Voyages en Italie","title_suggest":["Voyages en Italie"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622969M"],"publish_date":["November 17, 2004"],"publish_year":[2004],"first_publish_year":2004,"isbn":["9782842775360","2842775368"],"last_modified_i":1495360422,"ebook_count_i":0,"cover_edition_key":"OL12622969M","cover_i":3140267,"publisher":["Editions du Chêne"],"author_key":["OL3965072A"],"author_name":["Marc Walter,Sabine Arqué Catherine Donzel"],"id_goodreads":["1432832"],"publisher_facet":["Editions du Chêne"],"_version_":1697074596531929000,"author_facet":["OL3965072A Marc Walter,Sabine Arqué Catherine Donzel"]}
{"key":"/works/OL10000094W","text":["/works/OL10000094W","A Whole Room for Music","A Short Guide to the Balfour Building Music Makers' Gallery","OL12622974M","2842784049","9782842784041","The Pitt Rivers Museum","OL3965073A","Helene La Rue"],"type":"work","seed":["/books/OL12622974M","/works/OL10000094W","/authors/OL3965073A"],"title":"A Whole Room for Music","title_suggest":["A Whole Room for Music"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622974M"],"publish_date":["1991"],"publish_year":[1991],"first_publish_year":1991,"isbn":["2842784049","9782842784041"],"last_modified_i":1260840402,"ebook_count_i":0,"publisher":["The Pitt Rivers Museum"],"author_key":["OL3965073A"],"author_name":["Helene La Rue"],"publisher_facet":["The Pitt Rivers Museum"],"_version_":1697074596567580700,"author_facet":["OL3965073A Helene La Rue"]}
{"key":"/works/OL10000095W","text":["/works/OL10000095W","Buren","Buren ","Rétrospectif / actif","OL12622978M","2842784146","9782842784140","Beaux Arts Magazine","OL3965074A","Beaux Arts Magazine"],"type":"work","seed":["/books/OL12622978M","/works/OL10000095W","/authors/OL3965074A"],"title":"Buren","title_suggest":["Buren"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622978M"],"publish_date":["September 3, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2842784146","9782842784140"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622978M","cover_i":3140277,"publisher":["Beaux Arts Magazine"],"author_key":["OL3965074A"],"author_name":["Beaux Arts Magazine"],"publisher_facet":["Beaux Arts Magazine"],"_version_":1697074595862937600,"author_facet":["OL3965074A Beaux Arts Magazine"]}
{"key":"/works/OL10000096W","text":["/works/OL10000096W","Le Cirque et les arts","OL12622975M","2842784057","9782842784058","Beaux Arts Magazine","OL3965074A","Beaux Arts Magazine"],"type":"work","seed":["/books/OL12622975M","/works/OL10000096W","/authors/OL3965074A"],"title":"Le Cirque et les arts","title_suggest":["Le Cirque et les arts"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622975M"],"publish_date":["September 3, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2842784057","9782842784058"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622975M","cover_i":3140273,"publisher":["Beaux Arts Magazine"],"author_key":["OL3965074A"],"author_name":["Beaux Arts Magazine"],"publisher_facet":["Beaux Arts Magazine"],"_version_":1697074596315922400,"author_facet":["OL3965074A Beaux Arts Magazine"]}
{"key":"/works/OL10000097W","text":["/works/OL10000097W","Nouveau petit dictionnaire français-chinois (avec pinyin)","OL12622983M","2842790049","9782842790042","You Feng","OL3965075A","Weng. Zhongfu"],"type":"work","seed":["/books/OL12622983M","/works/OL10000097W","/authors/OL3965075A"],"title":"Nouveau petit dictionnaire français-chinois (avec pinyin)","title_suggest":["Nouveau petit dictionnaire français-chinois (avec pinyin)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622983M"],"publish_date":["March 31, 1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["2842790049","9782842790042"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12622983M","cover_i":3140282,"publisher":["You Feng"],"language":["fre"],"author_key":["OL3965075A"],"author_name":["Weng. Zhongfu"],"id_librarything":["9169070"],"publisher_facet":["You Feng"],"_version_":1697074595365912600,"author_facet":["OL3965075A Weng. Zhongfu"]}
{"key":"/works/OL10000098W","text":["/works/OL10000098W","L'esprit de l'encre","OL12622987M","99230752","9782842790479","2842790472","You Feng","OL3965076A","Tuan Keh Ming","Technique","Themes, motives","Chinese Ink painting"],"type":"work","seed":["/books/OL12622987M","/works/OL10000098W","/subjects/technique","/subjects/themes_motives","/subjects/chinese_ink_painting","/authors/OL3965076A"],"title":"L'esprit de l'encre","title_suggest":["L'esprit de l'encre"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622987M"],"publish_date":["January 1, 1998"],"publish_year":[1998],"first_publish_year":1998,"lccn":["99230752"],"lcc":["ND-2068.00000000.T83 1998"],"isbn":["9782842790479","2842790472"],"last_modified_i":1606907012,"ebook_count_i":0,"cover_edition_key":"OL12622987M","cover_i":3140286,"publisher":["You Feng"],"author_key":["OL3965076A"],"author_name":["Tuan Keh Ming"],"subject":["Technique","Themes, motives","Chinese Ink painting"],"publisher_facet":["You Feng"],"subject_facet":["Chinese Ink painting","Technique","Themes, motives"],"_version_":1697074596335845400,"lcc_sort":"ND-2068.00000000.T83 1998","author_facet":["OL3965076A Tuan Keh Ming"],"subject_key":["chinese_ink_painting","technique","themes_motives"]}
{"key":"/works/OL10000099W","text":["/works/OL10000099W","Céleste dragon","Céleste dragon ","genèse de l'iconographie du dragon chinois","OL12622989M","9782842790738","2842790731","L'Harmattan","OL3965078A","Xiaohong Li"],"type":"work","seed":["/books/OL12622989M","/works/OL10000099W","/authors/OL3965078A"],"title":"Céleste dragon","title_suggest":["Céleste dragon"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622989M"],"publish_date":["March 22, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782842790738","2842790731"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12622989M","cover_i":3140288,"publisher":["L'Harmattan"],"language":["fre"],"author_key":["OL3965078A"],"author_name":["Xiaohong Li"],"id_goodreads":["7331446"],"publisher_facet":["L'Harmattan"],"_version_":1697074596084187100,"author_facet":["OL3965078A Xiaohong Li"]}
{"key":"/works/OL1000009W","text":["/works/OL1000009W","The nighttime is the right time","a collection of stories","OL6789743M","Bill Crider.","00050310","45172786","0786230452","9780786230457","isbn_9780786230457","Five Star","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Detective and mystery stories, American","American Detective and mystery stories","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL6789743M","/works/OL1000009W","/subjects/detective_and_mystery_stories_american","/subjects/american_detective_and_mystery_stories","/authors/OL92934A"],"title":"The nighttime is the right time","title_suggest":["The nighttime is the right time"],"has_fulltext":true,"edition_count":1,"edition_key":["OL6789743M"],"publish_date":["2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["00050310"],"publish_place":["Unity, Me"],"oclc":["45172786"],"lcc":["PS-3553.00000000.R497 N54 2001"],"ddc":["813.54"],"isbn":["0786230452","9780786230457"],"last_modified_i":1595993553,"ebook_count_i":1,"ia":["isbn_9780786230457"],"public_scan_b":false,"ia_collection_s":"americana;china;inlibrary;delawarecountydistrictlibrary;printdisabled;library_of_atlantis;internetarchivebooks;riceuniversity-ol","lending_edition_s":"OL6789743M","lending_identifier_s":"isbn_9780786230457","printdisabled_s":"OL6789743M","cover_edition_key":"OL6789743M","cover_i":4529149,"publisher":["Five Star"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"subject":["Detective and mystery stories, American","American Detective and mystery stories","Accessible book","Protected DAISY"],"id_goodreads":["541612"],"id_librarything":["676035"],"ia_box_id":["IA1148212"],"publisher_facet":["Five Star"],"subject_facet":["Accessible book","American Detective and mystery stories","Detective and mystery stories, American","Protected DAISY"],"_version_":1697074596517249000,"lcc_sort":"PS-3553.00000000.R497 N54 2001","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","american_detective_and_mystery_stories","detective_and_mystery_stories_american","protected_daisy"],"ddc_sort":"813.54"}
{"key":"/works/OL100000W","text":["/works/OL100000W","Bloody Kin","Bloody kin","OL3026366M","OL7825368M","OL7536692M","Margaret Maron.","85006773","25355773","32706652","11917457","0446404160","0553295144","9780446404167","9780553295146","0385232314","9780385232319","Jake Honeycutt spent the last morning of his life rambling through the lanes and back fields of his Colleton County farm.","Crimeline","Published for the Crime Club by Doubleday","Mysterious Press","OL3326443A","Margaret Maron","Margaret Maron","Maron, Margaret","MARGARET MARON","New York (State)","New York (N.Y.)","New York","Fiction","Sigrid Harald (Fictitious character)","Policewomen","Police","Police in fiction","Policewomen in fiction"],"type":"work","seed":["/books/OL3026366M","/books/OL7825368M","/books/OL7536692M","/works/OL100000W","/subjects/fiction","/subjects/sigrid_harald_(fictitious_character)","/subjects/policewomen","/subjects/police","/subjects/police_in_fiction","/subjects/policewomen_in_fiction","/subjects/place:new_york_(state)","/subjects/place:new_york_(n.y.)","/subjects/place:new_york","/authors/OL3326443A"],"title":"Bloody Kin","title_suggest":["Bloody Kin"],"has_fulltext":false,"edition_count":3,"edition_key":["OL3026366M","OL7825368M","OL7536692M"],"publish_date":["February 1, 1992","July 1, 1995","1985"],"publish_year":[1992,1985,1995],"first_publish_year":1985,"lccn":["85006773"],"publish_place":["Garden City, N.Y"],"oclc":["25355773","32706652","11917457"],"lcc":["PS-3563.00000000.A679 B5 1985"],"ddc":["813.54"],"isbn":["0446404160","0553295144","9780446404167","9780553295146","0385232314","9780385232319"],"last_modified_i":1604324970,"ebook_count_i":0,"cover_edition_key":"OL7536692M","cover_i":285672,"first_sentence":["Jake Honeycutt spent the last morning of his life rambling through the lanes and back fields of his Colleton County farm."],"publisher":["Crimeline","Published for the Crime Club by Doubleday","Mysterious Press"],"language":["eng"],"author_key":["OL3326443A"],"author_name":["Margaret Maron"],"author_alternative_name":["Margaret Maron","Maron, Margaret","MARGARET MARON"],"place":["New York (State)","New York (N.Y.)","New York"],"subject":["Fiction","Sigrid Harald (Fictitious character)","Policewomen","Police","Police in fiction","Policewomen in fiction"],"id_goodreads":["2501957","537301","2716568"],"id_librarything":["219206"],"publisher_facet":["Crimeline","Mysterious Press","Published for the Crime Club by Doubleday"],"place_key":["new_york","new_york_(n.y.)","new_york_(state)"],"subject_facet":["Fiction","Police","Police in fiction","Policewomen","Policewomen in fiction","Sigrid Harald (Fictitious character)"],"_version_":1697074596488937500,"place_facet":["New York","New York (N.Y.)","New York (State)"],"lcc_sort":"PS-3563.00000000.A679 B5 1985","author_facet":["OL3326443A Margaret Maron"],"subject_key":["fiction","police","police_in_fiction","policewomen","policewomen_in_fiction","sigrid_harald_(fictitious_character)"],"ddc_sort":"813.54"}
{"key":"/works/OL10000100W","text":["/works/OL10000100W","Précis du jeu d'échec chinois","OL12622990M","2842790804","9782842790806","Crépin-Leblond","OL3965079A","Ensi Xie"],"type":"work","seed":["/books/OL12622990M","/works/OL10000100W","/authors/OL3965079A"],"title":"Précis du jeu d'échec chinois","title_suggest":["Précis du jeu d'échec chinois"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622990M"],"publish_date":["January 1, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["2842790804","9782842790806"],"last_modified_i":1260840402,"ebook_count_i":0,"publisher":["Crépin-Leblond"],"language":["fre"],"author_key":["OL3965079A"],"author_name":["Ensi Xie"],"publisher_facet":["Crépin-Leblond"],"_version_":1697074596688167000,"author_facet":["OL3965079A Ensi Xie"]}
{"key":"/works/OL10000101W","text":["/works/OL10000101W","La grammaire du khmer moderne","OL12622991M","2842790863","9782842790868","You Feng","OL3965080A","Khin S"],"type":"work","seed":["/books/OL12622991M","/works/OL10000101W","/authors/OL3965080A"],"title":"La grammaire du khmer moderne","title_suggest":["La grammaire du khmer moderne"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622991M"],"publish_date":["January 1, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["2842790863","9782842790868"],"last_modified_i":1282054081,"ebook_count_i":0,"cover_edition_key":"OL12622991M","cover_i":3140289,"publisher":["You Feng"],"language":["fre"],"author_key":["OL3965080A"],"author_name":["Khin S"],"id_goodreads":["2071397"],"id_librarything":["3221526"],"publisher_facet":["You Feng"],"_version_":1697074595869229000,"author_facet":["OL3965080A Khin S"]}
{"key":"/works/OL10000102W","text":["/works/OL10000102W","Differences culturelles","OL12622996M","2842800354","9782842800352","Sepia","OL3965083A","Michalon C."],"type":"work","seed":["/books/OL12622996M","/works/OL10000102W","/authors/OL3965083A"],"title":"Differences culturelles","title_suggest":["Differences culturelles"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12622996M"],"publish_date":["May 4, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2842800354","9782842800352"],"last_modified_i":1282054081,"ebook_count_i":0,"cover_edition_key":"OL12622996M","cover_i":3140292,"publisher":["Sepia"],"language":["fre"],"author_key":["OL3965083A"],"author_name":["Michalon C."],"id_librarything":["5922379"],"publisher_facet":["Sepia"],"_version_":1697074596314873900,"author_facet":["OL3965083A Michalon C."]}
{"key":"/works/OL10000103W","text":["/works/OL10000103W","Les illusions de mongou","OL12623002M","2842800680","9782842800680","Sepia","OL3965086A","Pierre Sammy Mackfoy"],"type":"work","seed":["/books/OL12623002M","/works/OL10000103W","/authors/OL3965086A"],"title":"Les illusions de mongou","title_suggest":["Les illusions de mongou"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623002M"],"publish_date":["October 8, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2842800680","9782842800680"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623002M","cover_i":3140298,"publisher":["Sepia"],"language":["fre"],"author_key":["OL3965086A"],"author_name":["Pierre Sammy Mackfoy"],"publisher_facet":["Sepia"],"_version_":1697074595776954400,"author_facet":["OL3965086A Pierre Sammy Mackfoy"]}
{"key":"/works/OL10000104W","text":["/works/OL10000104W","Histoire des differences.../histoires","OL12623003M","2003422159","2842800699","9782842800697","Sepia","OL3965087A","C. Michalon","Social evolution","Human evolution","Culture","Philosophy","Civilization"],"type":"work","seed":["/books/OL12623003M","/works/OL10000104W","/subjects/social_evolution","/subjects/human_evolution","/subjects/culture","/subjects/philosophy","/subjects/civilization","/authors/OL3965087A"],"title":"Histoire des differences.../histoires","title_suggest":["Histoire des differences.../histoires"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623003M"],"publish_date":["October 8, 2002"],"publish_year":[2002],"first_publish_year":2002,"lccn":["2003422159"],"lcc":["GN-0360.00000000.M53 2002"],"isbn":["2842800699","9782842800697"],"last_modified_i":1607362711,"ebook_count_i":0,"cover_edition_key":"OL12623003M","cover_i":3140299,"publisher":["Sepia"],"language":["fre"],"author_key":["OL3965087A"],"author_name":["C. Michalon"],"subject":["Social evolution","Human evolution","Culture","Philosophy","Civilization"],"id_librarything":["4006399"],"publisher_facet":["Sepia"],"subject_facet":["Civilization","Culture","Human evolution","Philosophy","Social evolution"],"_version_":1697074596412391400,"lcc_sort":"GN-0360.00000000.M53 2002","author_facet":["OL3965087A C. Michalon"],"subject_key":["civilization","culture","human_evolution","philosophy","social_evolution"]}
{"key":"/works/OL10000105W","text":["/works/OL10000105W","Le Développement du concept d'istopie","OL12623008M","2842870239","9782842870232","Presses Universitaires de Limoges (PULIM)","OL3965089A","Rastier"],"type":"work","seed":["/books/OL12623008M","/works/OL10000105W","/authors/OL3965089A"],"title":"Le Développement du concept d'istopie","title_suggest":["Le Développement du concept d'istopie"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623008M"],"publish_date":["November 20, 1996"],"publish_year":[1996],"first_publish_year":1996,"isbn":["2842870239","9782842870232"],"last_modified_i":1260840402,"ebook_count_i":0,"publisher":["Presses Universitaires de Limoges (PULIM)"],"language":["fre"],"author_key":["OL3965089A"],"author_name":["Rastier"],"publisher_facet":["Presses Universitaires de Limoges (PULIM)"],"_version_":1697074596116693000,"author_facet":["OL3965089A Rastier"]}
{"key":"/works/OL10000106W","text":["/works/OL10000106W","Le Contrat réalisable","OL12623009M","OL24604983M","2842870298","9782842870294","Cuspide","Presses Universitaires de Limoges (PULIM)","OL3965090A","Davidsen"],"type":"work","seed":["/books/OL12623009M","/books/OL24604983M","/works/OL10000106W","/authors/OL3965090A"],"title":"Le Contrat réalisable","title_suggest":["Le Contrat réalisable"],"has_fulltext":false,"edition_count":2,"edition_key":["OL12623009M","OL24604983M"],"publish_date":["2000","November 20, 1996"],"publish_year":[2000,1996],"first_publish_year":1996,"isbn":["2842870298","9782842870294"],"last_modified_i":1297896536,"ebook_count_i":0,"publisher":["Cuspide","Presses Universitaires de Limoges (PULIM)"],"language":["fre"],"author_key":["OL3965090A"],"author_name":["Davidsen"],"publisher_facet":["Cuspide","Presses Universitaires de Limoges (PULIM)"],"_version_":1697074596366254000,"author_facet":["OL3965090A Davidsen"]}
{"key":"/works/OL10000107W","text":["/works/OL10000107W","L'Espace de la lecture dans l'image","OL12623010M","284287031X","9782842870317","Presses Universitaires de Limoges (PULIM)","OL3965091A","Davallon"],"type":"work","seed":["/books/OL12623010M","/works/OL10000107W","/authors/OL3965091A"],"title":"L'Espace de la lecture dans l'image","title_suggest":["L'Espace de la lecture dans l'image"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623010M"],"publish_date":["November 29, 1996"],"publish_year":[1996],"first_publish_year":1996,"isbn":["284287031X","9782842870317"],"last_modified_i":1260840402,"ebook_count_i":0,"publisher":["Presses Universitaires de Limoges (PULIM)"],"language":["fre"],"author_key":["OL3965091A"],"author_name":["Davallon"],"publisher_facet":["Presses Universitaires de Limoges (PULIM)"],"_version_":1697074595771711500,"author_facet":["OL3965091A Davallon"]}
{"key":"/works/OL10000108W","text":["/works/OL10000108W","Barreau, politique et culture à la Belle Epoque","Colloque de l'Université de Nancy II, les 26 et 27 Novembre 1993","OL12623015M","9782842870775","2842870778","Presses Universitaires de Limoges (PULIM)","OL3965092A","Le Beguec"],"type":"work","seed":["/books/OL12623015M","/works/OL10000108W","/authors/OL3965092A"],"title":"Barreau, politique et culture à la Belle Epoque","title_suggest":["Barreau, politique et culture à la Belle Epoque"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623015M"],"publish_date":["December 16, 1997"],"publish_year":[1997],"first_publish_year":1997,"isbn":["9782842870775","2842870778"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623015M","cover_i":5203728,"publisher":["Presses Universitaires de Limoges (PULIM)"],"author_key":["OL3965092A"],"author_name":["Le Beguec"],"id_goodreads":["4252671"],"publisher_facet":["Presses Universitaires de Limoges (PULIM)"],"_version_":1697074595921657900,"author_facet":["OL3965092A Le Beguec"]}
{"key":"/works/OL10000109W","text":["/works/OL10000109W","Problemes De Cohesion Syntaxique De 1550","Problèmes de cohésion syntaxique de 1550 à 1720","OL12623016M","OL21915781M","textes édités par Janine Baudry et Philippe Caron.","Baudry, Janine.","Caron, Philippe, 1949-","Groupe d'étude en histoire de la langue française. Colloque international","2842870905","9782842870904","PULIM","Pulim","OL3965093A","Janine Baudry","French language","Syntax","Congresses","Cohesion (Linguistics)","History"],"type":"work","seed":["/books/OL12623016M","/books/OL21915781M","/works/OL10000109W","/subjects/french_language","/subjects/syntax","/subjects/congresses","/subjects/cohesion_(linguistics)","/subjects/history","/authors/OL3965093A"],"title":"Problemes De Cohesion Syntaxique De 1550","title_suggest":["Problemes De Cohesion Syntaxique De 1550"],"has_fulltext":false,"edition_count":2,"edition_key":["OL12623016M","OL21915781M"],"publish_date":["1998","January 1, 1998"],"publish_year":[1998],"first_publish_year":1998,"publish_place":["Limoges"],"contributor":["Baudry, Janine.","Caron, Philippe, 1949-","Groupe d'étude en histoire de la langue française. Colloque international"],"lcc":["PC-2361.00000000.P773 1998"],"isbn":["2842870905","9782842870904"],"last_modified_i":1564587236,"ebook_count_i":0,"cover_edition_key":"OL12623016M","cover_i":3140302,"publisher":["PULIM","Pulim"],"language":["fre"],"author_key":["OL3965093A"],"author_name":["Janine Baudry"],"subject":["French language","Syntax","Congresses","Cohesion (Linguistics)","History"],"id_goodreads":["5811472"],"publisher_facet":["PULIM","Pulim"],"subject_facet":["Cohesion (Linguistics)","Congresses","French language","History","Syntax"],"_version_":1697074595839869000,"lcc_sort":"PC-2361.00000000.P773 1998","author_facet":["OL3965093A Janine Baudry"],"subject_key":["cohesion_(linguistics)","congresses","french_language","history","syntax"]}
{"key":"/works/OL1000010W","text":["/works/OL1000010W","Of All Sad Words (Sheriff Dan Rhodes Mysteries, No. 15)","OL10388869M","2007039993","173480667","031234810X","9780312348106","ofallsadwords0000crid","St. Martin's Minotaur","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Dan Rhodes (Fictitious character)","Sheriffs","Fiction","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL10388869M","/works/OL1000010W","/subjects/dan_rhodes_(fictitious_character)","/subjects/sheriffs","/subjects/fiction","/authors/OL92934A"],"title":"Of All Sad Words (Sheriff Dan Rhodes Mysteries, No. 15)","title_suggest":["Of All Sad Words (Sheriff Dan Rhodes Mysteries, No. 15)"],"has_fulltext":true,"edition_count":1,"edition_key":["OL10388869M"],"publish_date":["February 19, 2008"],"publish_year":[2008],"first_publish_year":2008,"lccn":["2007039993"],"oclc":["173480667"],"lcc":["PS-3553.00000000.R497 O36 2008"],"isbn":["031234810X","9780312348106"],"last_modified_i":1613882893,"ebook_count_i":1,"ia":["ofallsadwords0000crid"],"public_scan_b":false,"ia_collection_s":"inlibrary;printdisabled;internetarchivebooks","lending_edition_s":"OL10388869M","lending_identifier_s":"ofallsadwords0000crid","printdisabled_s":"OL10388869M","cover_edition_key":"OL10388869M","cover_i":2370700,"publisher":["St. Martin's Minotaur"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"subject":["Dan Rhodes (Fictitious character)","Sheriffs","Fiction","Accessible book","Protected DAISY"],"id_goodreads":["1589139"],"id_librarything":["4196007"],"ia_loaded_id":["ofallsadwords00crid_0"],"ia_box_id":["IA40063319","IA184501"],"publisher_facet":["St. Martin's Minotaur"],"subject_facet":["Accessible book","Dan Rhodes (Fictitious character)","Fiction","Protected DAISY","Sheriffs"],"_version_":1697074595644833800,"lcc_sort":"PS-3553.00000000.R497 O36 2008","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","dan_rhodes_(fictitious_character)","fiction","protected_daisy","sheriffs"]}
{"key":"/works/OL10000110W","text":["/works/OL10000110W","La sémiosphère. Nouveaux actes sémiotiques","OL12623017M","9782842871000","2842871006","Presses Universitaires de Limoges (PULIM)","OL4280295A","I︠U︡. M. Lotman","J.M. Lotman","Jüri Lotman","|I|U. M Lotman","I͡U. M. Lotman","Juri M. Lotman","Yu. M. Lotman","Yuri Lotman","Lotman, I͡U. M.","Juri Lotman","IU. M. Lotman","Iuri M. Lotman","Yuri Mikhailovich Lotman","Jurij M. Lotman","I︠u︡riĭ Mikhaĭlovich Lotman","Jurij Lotman","Yuri M. Lotman","Lotman I.","Lotman/","IU. M Lotman","Ю́рий Миха́йлович Ло́тман"],"type":"work","seed":["/books/OL12623017M","/works/OL10000110W","/authors/OL4280295A"],"title":"La sémiosphère. Nouveaux actes sémiotiques","title_suggest":["La sémiosphère. Nouveaux actes sémiotiques"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623017M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782842871000","2842871006"],"last_modified_i":1587220568,"ebook_count_i":0,"publisher":["Presses Universitaires de Limoges (PULIM)"],"author_key":["OL4280295A"],"author_name":["I︠U︡. M. Lotman"],"author_alternative_name":["J.M. Lotman","Jüri Lotman","|I|U. M Lotman","I͡U. M. Lotman","Juri M. Lotman","Yu. M. Lotman","Yuri Lotman","Lotman, I͡U. M.","Juri Lotman","IU. M. Lotman","Iuri M. Lotman","Yuri Mikhailovich Lotman","Jurij M. Lotman","I︠u︡riĭ Mikhaĭlovich Lotman","Jurij Lotman","Yuri M. Lotman","Lotman I.","Lotman/","IU. M Lotman","Ю́рий Миха́йлович Ло́тман"],"id_goodreads":["3346475"],"publisher_facet":["Presses Universitaires de Limoges (PULIM)"],"_version_":1697074596230987800,"author_facet":["OL4280295A I︠U︡. M. Lotman"]}
{"key":"/works/OL10000111W","text":["/works/OL10000111W","Archaïsme et modernité en Limousin au XIXe siècle, 1845-1880. La rigidité des structures économiques, sociales et mentales, tome 1 - La naissance d'une tradition de gauche, tome 2","OL12623018M","9782842871017","2842871014","Presses Universitaires de Limoges (PULIM)","OL3965095A","E. Corbin"],"type":"work","seed":["/books/OL12623018M","/works/OL10000111W","/authors/OL3965095A"],"title":"Archaïsme et modernité en Limousin au XIXe siècle, 1845-1880. La rigidité des structures économiques, sociales et mentales, tome 1 - La naissance d'une tradition de gauche, tome 2","title_suggest":["Archaïsme et modernité en Limousin au XIXe siècle, 1845-1880. La rigidité des structures économiques, sociales et mentales, tome 1 - La naissance d'une tradition de gauche, tome 2"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623018M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782842871017","2842871014"],"last_modified_i":1282054217,"ebook_count_i":0,"publisher":["Presses Universitaires de Limoges (PULIM)"],"language":["fre"],"author_key":["OL3965095A"],"author_name":["E. Corbin"],"id_librarything":["2905756"],"publisher_facet":["Presses Universitaires de Limoges (PULIM)"],"_version_":1697074596486840300,"author_facet":["OL3965095A E. Corbin"]}
{"key":"/works/OL10000112W","text":["/works/OL10000112W","Les demeures de la distinction. Châteaux et châtelains au XIXe siècle en Haute-Vienne","OL12623019M","2842871138","9782842871130","Presses Universitaires de Limoges (PULIM)","OL3965096A","P. Grandcoing"],"type":"work","seed":["/books/OL12623019M","/works/OL10000112W","/authors/OL3965096A"],"title":"Les demeures de la distinction. Châteaux et châtelains au XIXe siècle en Haute-Vienne","title_suggest":["Les demeures de la distinction. Châteaux et châtelains au XIXe siècle en Haute-Vienne"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623019M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2842871138","9782842871130"],"last_modified_i":1272134761,"ebook_count_i":0,"publisher":["Presses Universitaires de Limoges (PULIM)"],"author_key":["OL3965096A"],"author_name":["P. Grandcoing"],"id_goodreads":["6899980"],"publisher_facet":["Presses Universitaires de Limoges (PULIM)"],"_version_":1697074596461674500,"author_facet":["OL3965096A P. Grandcoing"]}
{"key":"/works/OL10000113W","text":["/works/OL10000113W","Agricultures urbaines et villes durables européennes","Agricultures urbaines et villes durables européennes ","Droits et politiques du jardinage familial urbain","OL12623020M","9782842871208","2842871200","Presses Universitaires de Limoges (PULIM)","OL3965097A","G. Monediaire","Community gardens","Urban agriculture","Law and legislation"],"type":"work","seed":["/books/OL12623020M","/works/OL10000113W","/subjects/community_gardens","/subjects/urban_agriculture","/subjects/law_and_legislation","/authors/OL3965097A"],"title":"Agricultures urbaines et villes durables européennes","title_suggest":["Agricultures urbaines et villes durables européennes"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623020M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782842871208","2842871200"],"last_modified_i":1599701224,"ebook_count_i":0,"cover_edition_key":"OL12623020M","cover_i":3140303,"publisher":["Presses Universitaires de Limoges (PULIM)"],"language":["fre"],"author_key":["OL3965097A"],"author_name":["G. Monediaire"],"subject":["Community gardens","Urban agriculture","Law and legislation"],"publisher_facet":["Presses Universitaires de Limoges (PULIM)"],"subject_facet":["Community gardens","Law and legislation","Urban agriculture"],"_version_":1697074596690264000,"author_facet":["OL3965097A G. Monediaire"],"subject_key":["community_gardens","law_and_legislation","urban_agriculture"]}
{"key":"/works/OL10000114W","text":["/works/OL10000114W","Poetique regard. litterature, perception, identité","Poetique regard. litterature, perception, identité.","OL12623024M","9782842871529","2842871529","Presses Universitaires de Limoges (PULIM)","OL3965101A","Ouellet/"],"type":"work","seed":["/books/OL12623024M","/works/OL10000114W","/authors/OL3965101A"],"title":"Poetique regard. litterature, perception, identité","title_suggest":["Poetique regard. litterature, perception, identité"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623024M"],"publish_date":["December 5, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782842871529","2842871529"],"last_modified_i":1260840402,"ebook_count_i":0,"publisher":["Presses Universitaires de Limoges (PULIM)"],"language":["fre"],"author_key":["OL3965101A"],"author_name":["Ouellet/"],"publisher_facet":["Presses Universitaires de Limoges (PULIM)"],"_version_":1697074595765420000,"author_facet":["OL3965101A Ouellet/"]}
{"key":"/works/OL10000115W","text":["/works/OL10000115W","Litterature et reportage","Litterature et reportage.","Littérature et reportage","colloque international de Limoges, 26-28 avril 2000","colloque internationale de Limoges (26-28 avril 2000)","OL12623027M","OL18343801M","OL22502794M","sous la direction de Myriam Boucharenc et Joëlle Deluche","actes réunis par Myriam Boucharenc et Joëlle Deluche.","Deluche, Joëlle.  éd.","Boucharenc, Myriam.  éd.","Deluche, Joëlle.","Boucharenc, Myriam.","9782842871987","2842871987","PULIM","Pulim","Presses Universitaires de Limoges (PULIM)","OL3965102A","Boucharenc.Deluche/","French Reportage literature","History and criticism","Congresses","Journalism and literature"],"type":"work","seed":["/books/OL12623027M","/books/OL18343801M","/books/OL22502794M","/works/OL10000115W","/subjects/french_reportage_literature","/subjects/history_and_criticism","/subjects/congresses","/subjects/journalism_and_literature","/authors/OL3965102A"],"title":"Litterature et reportage","title_suggest":["Litterature et reportage"],"has_fulltext":false,"edition_count":3,"edition_key":["OL12623027M","OL18343801M","OL22502794M"],"publish_date":["2001","January 1, 2001"],"publish_year":[2001],"first_publish_year":2001,"publish_place":["Limoges"],"contributor":["Deluche, Joëlle.  éd.","Boucharenc, Myriam.  éd.","Deluche, Joëlle.","Boucharenc, Myriam."],"ddc":["070","809","800"],"isbn":["9782842871987","2842871987"],"last_modified_i":1564587238,"ebook_count_i":0,"cover_edition_key":"OL12623027M","cover_i":3140307,"publisher":["PULIM","Pulim","Presses Universitaires de Limoges (PULIM)"],"language":["fre"],"author_key":["OL3965102A"],"author_name":["Boucharenc.Deluche/"],"subject":["French Reportage literature","History and criticism","Congresses","Journalism and literature"],"publisher_facet":["PULIM","Presses Universitaires de Limoges (PULIM)","Pulim"],"subject_facet":["Congresses","French Reportage literature","History and criticism","Journalism and literature"],"_version_":1697074596319068200,"author_facet":["OL3965102A Boucharenc.Deluche/"],"subject_key":["congresses","french_reportage_literature","history_and_criticism","journalism_and_literature"],"ddc_sort":"070"}
{"key":"/works/OL10000116W","text":["/works/OL10000116W","La justice pénale internationale (actes limoges, nov. 2001)","OL12623029M","2002476477","9782842872205","2842872207","Presses Universitaires de Limoges (PULIM)","OL3965103A","Gaboriau /Pauliat","International criminal courts","Congresses","Criminal jurisdiction","International crimes"],"type":"work","seed":["/books/OL12623029M","/works/OL10000116W","/subjects/international_criminal_courts","/subjects/congresses","/subjects/criminal_jurisdiction","/subjects/international_crimes","/authors/OL3965103A"],"title":"La justice pénale internationale (actes limoges, nov. 2001)","title_suggest":["La justice pénale internationale (actes limoges, nov. 2001)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623029M"],"publish_date":["March 1, 2002"],"publish_year":[2002],"first_publish_year":2002,"lccn":["2002476477"],"lcc":["KZ-6250.00000000.E58 2001"],"isbn":["9782842872205","2842872207"],"last_modified_i":1607346679,"ebook_count_i":0,"cover_edition_key":"OL12623029M","cover_i":3140309,"publisher":["Presses Universitaires de Limoges (PULIM)"],"language":["fre"],"author_key":["OL3965103A"],"author_name":["Gaboriau /Pauliat"],"subject":["International criminal courts","Congresses","Criminal jurisdiction","International crimes"],"publisher_facet":["Presses Universitaires de Limoges (PULIM)"],"subject_facet":["Congresses","Criminal jurisdiction","International crimes","International criminal courts"],"_version_":1697074595957309400,"lcc_sort":"KZ-6250.00000000.E58 2001","author_facet":["OL3965103A Gaboriau /Pauliat"],"subject_key":["congresses","criminal_jurisdiction","international_crimes","international_criminal_courts"]}
{"key":"/works/OL10000117W","text":["/works/OL10000117W","Les duhamel sculpteurs a tulle aux xviie xviiie siecles","OL12623030M","9782842872243","284287224X","Presses Universitaires de Limoges (PULIM)","OL3965104A","Geneste"],"type":"work","seed":["/books/OL12623030M","/works/OL10000117W","/authors/OL3965104A"],"title":"Les duhamel sculpteurs a tulle aux xviie xviiie siecles","title_suggest":["Les duhamel sculpteurs a tulle aux xviie xviiie siecles"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623030M"],"publish_date":["October 1, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782842872243","284287224X"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623030M","cover_i":3140310,"publisher":["Presses Universitaires de Limoges (PULIM)"],"language":["fre"],"author_key":["OL3965104A"],"author_name":["Geneste"],"publisher_facet":["Presses Universitaires de Limoges (PULIM)"],"_version_":1697074595371155500,"author_facet":["OL3965104A Geneste"]}
{"key":"/works/OL10000118W","text":["/works/OL10000118W","L'arc-en-ciel et l'archer. recits et philosophie de l'histoire chez herodote","OL12623033M","2842872479","9782842872472","Presses Universitaires de Limoges (PULIM)","OL3965106A","Guy Lachenaud"],"type":"work","seed":["/books/OL12623033M","/works/OL10000118W","/authors/OL3965106A"],"title":"L'arc-en-ciel et l'archer. recits et philosophie de l'histoire chez herodote","title_suggest":["L'arc-en-ciel et l'archer. recits et philosophie de l'histoire chez herodote"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623033M"],"publish_date":["February 1, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["2842872479","9782842872472"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623033M","cover_i":3140312,"publisher":["Presses Universitaires de Limoges (PULIM)"],"language":["fre"],"author_key":["OL3965106A"],"author_name":["Guy Lachenaud"],"id_goodreads":["1483963"],"publisher_facet":["Presses Universitaires de Limoges (PULIM)"],"_version_":1697074596583309300,"author_facet":["OL3965106A Guy Lachenaud"]}
{"key":"/works/OL10000119W","text":["/works/OL10000119W","Mythologies, religion et philosophie de l'histoire dans Herodote","Mythologies, religion et philosophie de l'histoire dans Herodote.","OL15240888M","9782729500498","2729500499","Université de Lille","OL3965106A","Guy Lachenaud","Herodotus (b. 484 B.C.?.)","Herodotus (b. 484 B.C.?)"],"type":"work","seed":["/books/OL15240888M","/works/OL10000119W","/subjects/person:herodotus_(b._484_b.c.?.)","/subjects/person:herodotus_(b._484_b.c.?)","/authors/OL3965106A"],"title":"Mythologies, religion et philosophie de l'histoire dans Herodote","title_suggest":["Mythologies, religion et philosophie de l'histoire dans Herodote"],"has_fulltext":false,"edition_count":1,"edition_key":["OL15240888M"],"publish_date":["1978"],"publish_year":[1978],"first_publish_year":1978,"publish_place":["Lille"],"isbn":["9782729500498","2729500499"],"last_modified_i":1279636118,"ebook_count_i":0,"cover_edition_key":"OL15240888M","cover_i":5300837,"publisher":["Université de Lille"],"language":["fre"],"author_key":["OL3965106A"],"author_name":["Guy Lachenaud"],"person":["Herodotus (b. 484 B.C.?.)","Herodotus (b. 484 B.C.?)"],"publisher_facet":["Université de Lille"],"person_key":["herodotus_(b._484_b.c.)","herodotus_(b._484_b.c..)"],"person_facet":["Herodotus (b. 484 B.C.?)","Herodotus (b. 484 B.C.?.)"],"_version_":1697074595758080000,"author_facet":["OL3965106A Guy Lachenaud"]}
{"key":"/works/OL1000011W","text":["/works/OL1000011W","One dead dean","OL2525070M","Bill Crider.","88000134","17508973","0802757111","9780802757111","onedeaddean00crid","Walker","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Texas","Fiction","Carl Burns (Fictitious character)","English teachers","Texas in fiction","English teachers in fiction","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL2525070M","/works/OL1000011W","/subjects/fiction","/subjects/carl_burns_(fictitious_character)","/subjects/english_teachers","/subjects/texas_in_fiction","/subjects/english_teachers_in_fiction","/subjects/place:texas","/authors/OL92934A"],"title":"One dead dean","title_suggest":["One dead dean"],"has_fulltext":true,"edition_count":1,"edition_key":["OL2525070M"],"publish_date":["1988"],"publish_year":[1988],"first_publish_year":1988,"lccn":["88000134"],"publish_place":["New York"],"oclc":["17508973"],"lcc":["PS-3553.00000000.R497 O54 1988"],"ddc":["813.54"],"isbn":["0802757111","9780802757111"],"last_modified_i":1604801894,"ebook_count_i":1,"ia":["onedeaddean00crid"],"public_scan_b":false,"ia_collection_s":"china;inlibrary;printdisabled;tamu-evanslibrary-ol;internetarchivebooks;universityofarizona-ol","lending_edition_s":"OL2525070M","lending_identifier_s":"onedeaddean00crid","printdisabled_s":"OL2525070M","cover_edition_key":"OL2525070M","cover_i":8114747,"publisher":["Walker"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"place":["Texas"],"subject":["Fiction","Carl Burns (Fictitious character)","English teachers","Texas in fiction","English teachers in fiction","Accessible book","Protected DAISY"],"id_goodreads":["2650239"],"id_librarything":["1914553"],"ia_box_id":["IA1162814"],"publisher_facet":["Walker"],"place_key":["texas"],"subject_facet":["Accessible book","Carl Burns (Fictitious character)","English teachers","English teachers in fiction","Fiction","Protected DAISY","Texas in fiction"],"_version_":1697074596220502000,"place_facet":["Texas"],"lcc_sort":"PS-3553.00000000.R497 O54 1988","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","carl_burns_(fictitious_character)","english_teachers","english_teachers_in_fiction","fiction","protected_daisy","texas_in_fiction"],"ddc_sort":"813.54"}
{"key":"/works/OL10000120W","text":["/works/OL10000120W","Promettre et écrire","essais sur l'historiographie des Anciens","OL18470515M","Guy Lachenaud.","9782868479983","2868479987","Presses universitaires de Rennes","OL3965106A","Guy Lachenaud","History, Ancient","Historiography","Comparative method","Ancient History"],"type":"work","seed":["/books/OL18470515M","/works/OL10000120W","/subjects/history_ancient","/subjects/historiography","/subjects/comparative_method","/subjects/ancient_history","/authors/OL3965106A"],"title":"Promettre et écrire","title_suggest":["Promettre et écrire"],"has_fulltext":false,"edition_count":1,"edition_key":["OL18470515M"],"publish_date":["2004"],"publish_year":[2004],"first_publish_year":2004,"publish_place":["Rennes"],"lcc":["D--0056.00000000.L33 2004"],"ddc":["930"],"isbn":["9782868479983","2868479987"],"last_modified_i":1279636588,"ebook_count_i":0,"cover_edition_key":"OL18470515M","cover_i":5420446,"publisher":["Presses universitaires de Rennes"],"language":["fre"],"author_key":["OL3965106A"],"author_name":["Guy Lachenaud"],"subject":["History, Ancient","Historiography","Comparative method","Ancient History"],"publisher_facet":["Presses universitaires de Rennes"],"subject_facet":["Ancient History","Comparative method","Historiography","History, Ancient"],"_version_":1697074595742351400,"lcc_sort":"D--0056.00000000.L33 2004","author_facet":["OL3965106A Guy Lachenaud"],"subject_key":["ancient_history","comparative_method","historiography","history_ancient"],"ddc_sort":"930"}
{"key":"/works/OL10000121W","text":["/works/OL10000121W","Franc-maçonnerie et antimaconnisme en limousin","OL12623034M","2842872487","9782842872489","Presses Universitaires de Limoges (PULIM)","OL3965107A","Perouas"],"type":"work","seed":["/books/OL12623034M","/works/OL10000121W","/authors/OL3965107A"],"title":"Franc-maçonnerie et antimaconnisme en limousin","title_suggest":["Franc-maçonnerie et antimaconnisme en limousin"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623034M"],"publish_date":["October 1, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2842872487","9782842872489"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12623034M","cover_i":3140313,"publisher":["Presses Universitaires de Limoges (PULIM)"],"language":["fre"],"author_key":["OL3965107A"],"author_name":["Perouas"],"id_librarything":["2905792"],"publisher_facet":["Presses Universitaires de Limoges (PULIM)"],"_version_":1697074596044341200,"author_facet":["OL3965107A Perouas"]}
{"key":"/works/OL10000122W","text":["/works/OL10000122W","al-Masrah wa-al-kawalis","Intikhabat 96 fi fusuliha","OL12623037M","97963225","37008051","9782842890056","2842890051","Dar al-Nahar","OL3965108A","Niqula Nasif","Politics and government","Lebanon","Elections, 1996","Elections","Lebanon. Najlis al-Nūwāb"],"type":"work","seed":["/books/OL12623037M","/works/OL10000122W","/subjects/politics_and_government","/subjects/lebanon","/subjects/elections_1996","/subjects/elections","/subjects/lebanon._najlis_al-nūwāb","/authors/OL3965108A"],"title":"al-Masrah wa-al-kawalis","title_suggest":["al-Masrah wa-al-kawalis"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623037M"],"publish_date":["1996"],"publish_year":[1996],"first_publish_year":1996,"lccn":["97963225"],"oclc":["37008051"],"lcc":["JQ-1828.00000000.A95 N37 1996"],"isbn":["9782842890056","2842890051"],"last_modified_i":1606478078,"ebook_count_i":0,"publisher":["Dar al-Nahar"],"language":["ara"],"author_key":["OL3965108A"],"author_name":["Niqula Nasif"],"subject":["Politics and government","Lebanon","Elections, 1996","Elections","Lebanon. Najlis al-Nūwāb"],"publisher_facet":["Dar al-Nahar"],"subject_facet":["Elections","Elections, 1996","Lebanon","Lebanon. Najlis al-Nūwāb","Politics and government"],"_version_":1697074596532977700,"lcc_sort":"JQ-1828.00000000.A95 N37 1996","author_facet":["OL3965108A Niqula Nasif"],"subject_key":["elections","elections_1996","lebanon","lebanon._najlis_al-nūwāb","politics_and_government"]}
{"key":"/works/OL10000123W","text":["/works/OL10000123W","Rimun Iddah, jumhuriyat al-damir","OL12623084M","2002460971","2842893840","9782842893842","Dar al-Nahar","OL3965108A","Niqula Nasif","Statesmen","Politics and government"],"type":"work","seed":["/books/OL12623084M","/works/OL10000123W","/subjects/statesmen","/subjects/politics_and_government","/authors/OL3965108A"],"title":"Rimun Iddah, jumhuriyat al-damir","title_suggest":["Rimun Iddah, jumhuriyat al-damir"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623084M"],"publish_date":["2002"],"publish_year":[2002],"first_publish_year":2002,"lccn":["2002460971"],"lcc":["DS-0087.20000000.I334 N37 2002"],"isbn":["2842893840","9782842893842"],"last_modified_i":1607345122,"ebook_count_i":0,"publisher":["Dar al-Nahar"],"language":["ara"],"author_key":["OL3965108A"],"author_name":["Niqula Nasif"],"subject":["Statesmen","Politics and government"],"publisher_facet":["Dar al-Nahar"],"subject_facet":["Politics and government","Statesmen"],"_version_":1697074595453993000,"lcc_sort":"DS-0087.20000000.I334 N37 2002","author_facet":["OL3965108A Niqula Nasif"],"subject_key":["politics_and_government","statesmen"]}
{"key":"/works/OL10000124W","text":["/works/OL10000124W","1982 am al-ijtiyah","Lubnan wa-al-Quds wa-al-Julan fi Majlis al-Amn, al-Qarar 508 wa-al-Qarar 520 (Min mahfuzat Ghassan Tuwayni)","OL12623052M","98963610","2842890825","9782842890827","Dar al-Nahar","OL3965109A","Ghassan Tuwayni","Politics and government","Correspondence","Politicians","Diplomats","Sources","United Nations. Security Council","Resolutions","United Nations","History"],"type":"work","seed":["/books/OL12623052M","/works/OL10000124W","/subjects/politics_and_government","/subjects/correspondence","/subjects/politicians","/subjects/diplomats","/subjects/sources","/subjects/united_nations._security_council","/subjects/resolutions","/subjects/united_nations","/subjects/history","/authors/OL3965109A"],"title":"1982 am al-ijtiyah","title_suggest":["1982 am al-ijtiyah"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623052M"],"publish_date":["1998"],"publish_year":[1998],"first_publish_year":1998,"lccn":["98963610"],"lcc":["DS-0087.50000000.T875 1998"],"isbn":["2842890825","9782842890827"],"last_modified_i":1606726227,"ebook_count_i":0,"publisher":["Dar al-Nahar"],"language":["ara"],"author_key":["OL3965109A"],"author_name":["Ghassan Tuwayni"],"subject":["Politics and government","Correspondence","Politicians","Diplomats","Sources","United Nations. Security Council","Resolutions","United Nations","History"],"id_goodreads":["4732509"],"publisher_facet":["Dar al-Nahar"],"subject_facet":["Correspondence","Diplomats","History","Politicians","Politics and government","Resolutions","Sources","United Nations","United Nations. Security Council"],"_version_":1697074596336894000,"lcc_sort":"DS-0087.50000000.T875 1998","author_facet":["OL3965109A Ghassan Tuwayni"],"subject_key":["correspondence","diplomats","history","politicians","politics_and_government","resolutions","sources","united_nations","united_nations._security_council"]}
{"key":"/works/OL10000125W","text":["/works/OL10000125W","al-Qarar 425: Al-muqaddimat, al-khalfiyat, al-waqai, al-abad","al-Qarar 425: Al-muqaddimat, al-khalfiyat, al-waqai, al-abad ","al-murasalat al-diblumasiyah (Min mahfuzat Ghassan Tuwayni)","OL12623038M","97963240","2842890078","9782842890070","Dar al-Nahar lil-Nashr","OL3965109A","Ghassan Tuwayni","Politics and government","Sources","Politicians","Correspondence","United Nations"],"type":"work","seed":["/books/OL12623038M","/works/OL10000125W","/subjects/politics_and_government","/subjects/sources","/subjects/politicians","/subjects/correspondence","/subjects/united_nations","/authors/OL3965109A"],"title":"al-Qarar 425: Al-muqaddimat, al-khalfiyat, al-waqai, al-abad","title_suggest":["al-Qarar 425: Al-muqaddimat, al-khalfiyat, al-waqai, al-abad"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623038M"],"publish_date":["1996"],"publish_year":[1996],"first_publish_year":1996,"lccn":["97963240"],"lcc":["DS-0087.50000000.T883 1996"],"isbn":["2842890078","9782842890070"],"last_modified_i":1606478084,"ebook_count_i":0,"publisher":["Dar al-Nahar lil-Nashr"],"language":["ara"],"author_key":["OL3965109A"],"author_name":["Ghassan Tuwayni"],"subject":["Politics and government","Sources","Politicians","Correspondence","United Nations"],"id_goodreads":["4732506"],"publisher_facet":["Dar al-Nahar lil-Nashr"],"subject_facet":["Correspondence","Politicians","Politics and government","Sources","United Nations"],"_version_":1697074596142907400,"lcc_sort":"DS-0087.50000000.T883 1996","author_facet":["OL3965109A Ghassan Tuwayni"],"subject_key":["correspondence","politicians","politics_and_government","sources","united_nations"]}
{"key":"/works/OL10000126W","text":["/works/OL10000126W","Kitab al-istiqlal bi-al-suwar wa-al-wathaiq","OL12623049M","98963270","2842890701","9782842890704","Dar al-Nahar","OL3965109A","Ghassan Tuwayni","Sources","History"],"type":"work","seed":["/books/OL12623049M","/works/OL10000126W","/subjects/sources","/subjects/history","/authors/OL3965109A"],"title":"Kitab al-istiqlal bi-al-suwar wa-al-wathaiq","title_suggest":["Kitab al-istiqlal bi-al-suwar wa-al-wathaiq"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623049M"],"publish_date":["1998"],"publish_year":[1998],"first_publish_year":1998,"lccn":["98963270"],"lcc":["DS-0086.00000000.T89 1998"],"isbn":["2842890701","9782842890704"],"last_modified_i":1606726097,"ebook_count_i":0,"publisher":["Dar al-Nahar"],"language":["ara"],"author_key":["OL3965109A"],"author_name":["Ghassan Tuwayni"],"subject":["Sources","History"],"id_goodreads":["4732508"],"publisher_facet":["Dar al-Nahar"],"subject_facet":["History","Sources"],"_version_":1697074596301242400,"lcc_sort":"DS-0086.00000000.T89 1998","author_facet":["OL3965109A Ghassan Tuwayni"],"subject_key":["history","sources"]}
{"key":"/works/OL10000127W","text":["/works/OL10000127W","Masarat al-salam wa-diblumasiyat al-425","Abhath iftitahiyah","OL12623062M","99900693","9782842891404","2842891406","Dar al-Nahar lil-Nashr","OL3965109A","Ghassan Tuwayni","Arab-Israeli conflict","Peace","Politics and government"],"type":"work","seed":["/books/OL12623062M","/works/OL10000127W","/subjects/arab-israeli_conflict","/subjects/peace","/subjects/politics_and_government","/authors/OL3965109A"],"title":"Masarat al-salam wa-diblumasiyat al-425","title_suggest":["Masarat al-salam wa-diblumasiyat al-425"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623062M"],"publish_date":["1999"],"publish_year":[1999],"first_publish_year":1999,"lccn":["99900693"],"lcc":["DS-0119.76000000.T89 1999"],"isbn":["9782842891404","2842891406"],"last_modified_i":1606983887,"ebook_count_i":0,"publisher":["Dar al-Nahar lil-Nashr"],"language":["ara"],"author_key":["OL3965109A"],"author_name":["Ghassan Tuwayni"],"subject":["Arab-Israeli conflict","Peace","Politics and government"],"id_goodreads":["2223693"],"publisher_facet":["Dar al-Nahar lil-Nashr"],"subject_facet":["Arab-Israeli conflict","Peace","Politics and government"],"_version_":1697074596741644300,"lcc_sort":"DS-0119.76000000.T89 1999","author_facet":["OL3965109A Ghassan Tuwayni"],"subject_key":["arab-israeli_conflict","peace","politics_and_government"]}
{"key":"/works/OL10000128W","text":["/works/OL10000128W","Muhadarat fi al-siyasah wa-al-marifah","OL12623042M","97963294","9782842890186","2842890183","Dar al-Nahar","OL3965109A","Ghassan Tuwayni","Political science"],"type":"work","seed":["/books/OL12623042M","/works/OL10000128W","/subjects/political_science","/authors/OL3965109A"],"title":"Muhadarat fi al-siyasah wa-al-marifah","title_suggest":["Muhadarat fi al-siyasah wa-al-marifah"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623042M"],"publish_date":["1997"],"publish_year":[1997],"first_publish_year":1997,"lccn":["97963294"],"lcc":["JA-0084.00000000.A6 T89 1997"],"isbn":["9782842890186","2842890183"],"last_modified_i":1606478112,"ebook_count_i":0,"publisher":["Dar al-Nahar"],"language":["ara"],"author_key":["OL3965109A"],"author_name":["Ghassan Tuwayni"],"subject":["Political science"],"id_goodreads":["4732507"],"publisher_facet":["Dar al-Nahar"],"subject_facet":["Political science"],"_version_":1697074596311728000,"lcc_sort":"JA-0084.00000000.A6 T89 1997","author_facet":["OL3965109A Ghassan Tuwayni"],"subject_key":["political_science"]}
{"key":"/works/OL10000129W","text":["/works/OL10000129W","Dawlat Hizb Allah","Lubnan mujtamaan Islamiyan","OL12623039M","97963246","9782842890094","2842890094","Dar al-Nahar","OL3965110A","Waddah Shararah","Politics and government","Islam and politics","Shiites","Hizballah (Lebanon)","Political activity","History"],"type":"work","seed":["/books/OL12623039M","/works/OL10000129W","/subjects/politics_and_government","/subjects/islam_and_politics","/subjects/shiites","/subjects/hizballah_(lebanon)","/subjects/political_activity","/subjects/history","/authors/OL3965110A"],"title":"Dawlat Hizb Allah","title_suggest":["Dawlat Hizb Allah"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623039M"],"publish_date":["1996"],"publish_year":[1996],"first_publish_year":1996,"lccn":["97963246"],"lcc":["JQ-1828.00000000.A98 H627 1996"],"isbn":["9782842890094","2842890094"],"last_modified_i":1606478087,"ebook_count_i":0,"publisher":["Dar al-Nahar"],"language":["ara"],"author_key":["OL3965110A"],"author_name":["Waddah Shararah"],"subject":["Politics and government","Islam and politics","Shiites","Hizballah (Lebanon)","Political activity","History"],"id_goodreads":["7234729"],"publisher_facet":["Dar al-Nahar"],"subject_facet":["History","Hizballah (Lebanon)","Islam and politics","Political activity","Politics and government","Shiites"],"_version_":1697074596207919000,"lcc_sort":"JQ-1828.00000000.A98 H627 1996","author_facet":["OL3965110A Waddah Shararah"],"subject_key":["history","hizballah_(lebanon)","islam_and_politics","political_activity","politics_and_government","shiites"]}
{"key":"/works/OL1000012W","text":["/works/OL1000012W","Outrage at Blanco","OL141048M","Bill Crider.","99611045","40503758","Copyright Paperback Collection (Library of Congress)","0440234549","9780440234548","outrageatblanco00crid","Dell","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Texas","Rape victims","Revenge","Fiction","Women outlaws","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL141048M","/works/OL1000012W","/subjects/rape_victims","/subjects/revenge","/subjects/fiction","/subjects/women_outlaws","/subjects/place:texas","/authors/OL92934A"],"title":"Outrage at Blanco","title_suggest":["Outrage at Blanco"],"has_fulltext":true,"edition_count":1,"edition_key":["OL141048M"],"publish_date":["1999"],"publish_year":[1999],"first_publish_year":1999,"lccn":["99611045"],"publish_place":["New York"],"oclc":["40503758"],"contributor":["Copyright Paperback Collection (Library of Congress)"],"lcc":["CPB0000.00000000.Box no. 1456 vol. 15"],"isbn":["0440234549","9780440234548"],"last_modified_i":1606979405,"ebook_count_i":1,"ia":["outrageatblanco00crid"],"public_scan_b":false,"ia_collection_s":"china;inlibrary;printdisabled;tamu-evanslibrary-ol;internetarchivebooks;fav-crazyamytricks","lending_edition_s":"OL141048M","lending_identifier_s":"outrageatblanco00crid","printdisabled_s":"OL141048M","cover_edition_key":"OL141048M","cover_i":8371989,"publisher":["Dell"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"place":["Texas"],"subject":["Rape victims","Revenge","Fiction","Women outlaws","Accessible book","Protected DAISY"],"id_goodreads":["1467319"],"id_librarything":["1716266"],"ia_loaded_id":["outrageatblanco00crid"],"ia_box_id":["IA170301"],"publisher_facet":["Dell"],"place_key":["texas"],"subject_facet":["Accessible book","Fiction","Protected DAISY","Rape victims","Revenge","Women outlaws"],"_version_":1697074595692019700,"place_facet":["Texas"],"lcc_sort":"CPB0000.00000000.Box no. 1456 vol. 15","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","fiction","protected_daisy","rape_victims","revenge","women_outlaws"]}
{"key":"/works/OL10000130W","text":["/works/OL10000130W","Amn al-Khalij bada al-harb al-baridah","OL12623040M","97963315","2842890132","9782842890131","Dar al-Nahar","OL3965111A","Abd al-Jalil Marhun","Politics and government","National security"],"type":"work","seed":["/books/OL12623040M","/works/OL10000130W","/subjects/politics_and_government","/subjects/national_security","/authors/OL3965111A"],"title":"Amn al-Khalij bada al-harb al-baridah","title_suggest":["Amn al-Khalij bada al-harb al-baridah"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623040M"],"publish_date":["1997"],"publish_year":[1997],"first_publish_year":1997,"lccn":["97963315"],"lcc":["UA-0832.00000000.M38 1997"],"isbn":["2842890132","9782842890131"],"last_modified_i":1606478123,"ebook_count_i":0,"publisher":["Dar al-Nahar"],"language":["ara"],"author_key":["OL3965111A"],"author_name":["Abd al-Jalil Marhun"],"subject":["Politics and government","National security"],"publisher_facet":["Dar al-Nahar"],"subject_facet":["National security","Politics and government"],"_version_":1697074596450140200,"lcc_sort":"UA-0832.00000000.M38 1997","author_facet":["OL3965111A Abd al-Jalil Marhun"],"subject_key":["national_security","politics_and_government"]}
{"key":"/works/OL10000131W","text":["/works/OL10000131W","Lutf Allah Khallat","Al-sihafah bayna al-din wa-al-siyasah (Shahadat al-Nahar)","OL12623041M","99897346","9782842890162","2842890167","Dar al-Nahar lil-Nashr","OL3965112A","Atif Atiyah","Journalists","Biography","Politicians","Politics and government"],"type":"work","seed":["/books/OL12623041M","/works/OL10000131W","/subjects/journalists","/subjects/biography","/subjects/politicians","/subjects/politics_and_government","/authors/OL3965112A"],"title":"Lutf Allah Khallat","title_suggest":["Lutf Allah Khallat"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623041M"],"publish_date":["1999"],"publish_year":[1999],"first_publish_year":1999,"lccn":["99897346"],"lcc":["PN-5449.00000000.L4 Z725 1999"],"isbn":["9782842890162","2842890167"],"last_modified_i":1606983246,"ebook_count_i":0,"publisher":["Dar al-Nahar lil-Nashr"],"language":["ara"],"author_key":["OL3965112A"],"author_name":["Atif Atiyah"],"subject":["Journalists","Biography","Politicians","Politics and government"],"publisher_facet":["Dar al-Nahar lil-Nashr"],"subject_facet":["Biography","Journalists","Politicians","Politics and government"],"_version_":1697074596379885600,"lcc_sort":"PN-5449.00000000.L4 Z725 1999","author_facet":["OL3965112A Atif Atiyah"],"subject_key":["biography","journalists","politicians","politics_and_government"]}
{"key":"/works/OL10000132W","text":["/works/OL10000132W","al-Nass wa-al-rasas","Al-Islam al-siyasi wa-al-Aqbat wa-azamat al-dawlah al-hadithah fi Misr","OL12623044M","98963108","2842890337","9782842890339","Dar al-Nahar","OL3965113A","Nabil Abd al-Fattah","Copts","Islam and politics","Islamic fundamentalism","Religious minorities"],"type":"work","seed":["/books/OL12623044M","/works/OL10000132W","/subjects/copts","/subjects/islam_and_politics","/subjects/islamic_fundamentalism","/subjects/religious_minorities","/authors/OL3965113A"],"title":"al-Nass wa-al-rasas","title_suggest":["al-Nass wa-al-rasas"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623044M"],"publish_date":["1997"],"publish_year":[1997],"first_publish_year":1997,"lccn":["98963108"],"lcc":["BP-0064.00000000.E3 .A18 1997"],"isbn":["2842890337","9782842890339"],"last_modified_i":1606726028,"ebook_count_i":0,"publisher":["Dar al-Nahar"],"language":["ara"],"author_key":["OL3965113A"],"author_name":["Nabil Abd al-Fattah"],"subject":["Copts","Islam and politics","Islamic fundamentalism","Religious minorities"],"id_goodreads":["2065207"],"publisher_facet":["Dar al-Nahar"],"subject_facet":["Copts","Islam and politics","Islamic fundamentalism","Religious minorities"],"_version_":1697074596571775000,"lcc_sort":"BP-0064.00000000.E3 .A18 1997","author_facet":["OL3965113A Nabil Abd al-Fattah"],"subject_key":["copts","islam_and_politics","islamic_fundamentalism","religious_minorities"]}
{"key":"/works/OL10000133W","text":["/works/OL10000133W","al-Wajh wa-al-qina","Al-harakah al-Islamiyah wa-al-unf wa-al-tatbi","OL13165028M","95960234","9789775418043","9775418046","Dar Sashat lil-Dirasat wa-al-Nashr wa-al-Tawzi","OL3965113A","Nabil Abd al-Fattah","Politics and government","Islam and politics"],"type":"work","seed":["/books/OL13165028M","/works/OL10000133W","/subjects/politics_and_government","/subjects/islam_and_politics","/authors/OL3965113A"],"title":"al-Wajh wa-al-qina","title_suggest":["al-Wajh wa-al-qina"],"has_fulltext":false,"edition_count":1,"edition_key":["OL13165028M"],"publish_date":["1995"],"publish_year":[1995],"first_publish_year":1995,"lccn":["95960234"],"lcc":["BP-0064.00000000.E3 A19 1995"],"isbn":["9789775418043","9775418046"],"last_modified_i":1606107073,"ebook_count_i":0,"publisher":["Dar Sashat lil-Dirasat wa-al-Nashr wa-al-Tawzi"],"language":["ara"],"author_key":["OL3965113A"],"author_name":["Nabil Abd al-Fattah"],"subject":["Politics and government","Islam and politics"],"id_goodreads":["5011364"],"publisher_facet":["Dar Sashat lil-Dirasat wa-al-Nashr wa-al-Tawzi"],"subject_facet":["Islam and politics","Politics and government"],"_version_":1697074596636786700,"lcc_sort":"BP-0064.00000000.E3 A19 1995","author_facet":["OL3965113A Nabil Abd al-Fattah"],"subject_key":["islam_and_politics","politics_and_government"]}
{"key":"/works/OL10000134W","text":["/works/OL10000134W","Azmat al-maliyah al-ammah fi Lubnan","Qissat al-inhiyar al-naqdi","OL12623045M","98963140","9782842890438","2842890434","Shahadat al-Nahar","OL3965114A","Ghassan Ayyash","Economic policy","Economic conditions","Finance"],"type":"work","seed":["/books/OL12623045M","/works/OL10000134W","/subjects/economic_policy","/subjects/economic_conditions","/subjects/finance","/authors/OL3965114A"],"title":"Azmat al-maliyah al-ammah fi Lubnan","title_suggest":["Azmat al-maliyah al-ammah fi Lubnan"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623045M"],"publish_date":["1997"],"publish_year":[1997],"first_publish_year":1997,"lccn":["98963140"],"lcc":["HG-0187.00000000.L4 A99 1997"],"isbn":["9782842890438","2842890434"],"last_modified_i":1606726044,"ebook_count_i":0,"publisher":["Shahadat al-Nahar"],"language":["ara"],"author_key":["OL3965114A"],"author_name":["Ghassan Ayyash"],"subject":["Economic policy","Economic conditions","Finance"],"id_goodreads":["316512"],"publisher_facet":["Shahadat al-Nahar"],"subject_facet":["Economic conditions","Economic policy","Finance"],"_version_":1697074595653222400,"lcc_sort":"HG-0187.00000000.L4 A99 1997","author_facet":["OL3965114A Ghassan Ayyash"],"subject_key":["economic_conditions","economic_policy","finance"]}
{"key":"/works/OL10000135W","text":["/works/OL10000135W","Kitabat Juzif Mughayzil","OL12623046M","98963212","9782842890452","2842890450","Dar al-Nahar","OL3965115A","Juzif Mughayzil","Politics and government","Arab-Israeli conflict","Democracy"],"type":"work","seed":["/books/OL12623046M","/works/OL10000135W","/subjects/politics_and_government","/subjects/arab-israeli_conflict","/subjects/democracy","/authors/OL3965115A"],"title":"Kitabat Juzif Mughayzil","title_suggest":["Kitabat Juzif Mughayzil"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623046M"],"publish_date":["1997"],"publish_year":[1997],"first_publish_year":1997,"lccn":["98963212"],"lcc":["DS-0087.00000000.M824 1997"],"isbn":["9782842890452","2842890450"],"last_modified_i":1606726069,"ebook_count_i":0,"publisher":["Dar al-Nahar"],"language":["ara"],"author_key":["OL3965115A"],"author_name":["Juzif Mughayzil"],"subject":["Politics and government","Arab-Israeli conflict","Democracy"],"publisher_facet":["Dar al-Nahar"],"subject_facet":["Arab-Israeli conflict","Democracy","Politics and government"],"_version_":1697074596236230700,"lcc_sort":"DS-0087.00000000.M824 1997","author_facet":["OL3965115A Juzif Mughayzil"],"subject_key":["arab-israeli_conflict","democracy","politics_and_government"]}
{"key":"/works/OL10000136W","text":["/works/OL10000136W","Zaman al-inkisar wa-al-intisar: Mudhakkirat diblumasi Arabi an ahdath Misriyah wa-Arabiyah wa-dawliyah","Zaman al-inkisar wa-al-intisar: Mudhakkirat diblumasi Arabi an ahdath Misriyah wa-Arabiyah wa-dawliyah ","nisf qarn min al-tahawwulat al-kubra","OL12623056M","99897190","2842891066","9782842891060","Dar al-Nahar","OL3965116A","Ahmad Ismat Abd al-Majid","Diplomats","Biography","Politics and government","League of Arab States"],"type":"work","seed":["/books/OL12623056M","/works/OL10000136W","/subjects/diplomats","/subjects/biography","/subjects/politics_and_government","/subjects/league_of_arab_states","/authors/OL3965116A"],"title":"Zaman al-inkisar wa-al-intisar: Mudhakkirat diblumasi Arabi an ahdath Misriyah wa-Arabiyah wa-dawliyah","title_suggest":["Zaman al-inkisar wa-al-intisar: Mudhakkirat diblumasi Arabi an ahdath Misriyah wa-Arabiyah wa-dawliyah"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623056M"],"publish_date":["1998"],"publish_year":[1998],"first_publish_year":1998,"lccn":["99897190"],"lcc":["DT-0107.82800000.A364 A3 1998"],"isbn":["2842891066","9782842891060"],"last_modified_i":1606983204,"ebook_count_i":0,"publisher":["Dar al-Nahar"],"language":["ara"],"author_key":["OL3965116A"],"author_name":["Ahmad Ismat Abd al-Majid"],"subject":["Diplomats","Biography","Politics and government","League of Arab States"],"id_goodreads":["642753"],"publisher_facet":["Dar al-Nahar"],"subject_facet":["Biography","Diplomats","League of Arab States","Politics and government"],"_version_":1697074596195336200,"lcc_sort":"DT-0107.82800000.A364 A3 1998","author_facet":["OL3965116A Ahmad Ismat Abd al-Majid"],"subject_key":["biography","diplomats","league_of_arab_states","politics_and_government"]}
{"key":"/works/OL10000137W","text":["/works/OL10000137W","Zuhayr Usayran yatadhakkar","Al-muamarat wa-al-inqilabat fi dunya al-Arab","OL12623057M","99897130","9782842891077","2842891074","Dar al-Nahar lil-Nashr","OL3965117A","Zuhayr Usayran","Journalists","Biography","Politics and government"],"type":"work","seed":["/books/OL12623057M","/works/OL10000137W","/subjects/journalists","/subjects/biography","/subjects/politics_and_government","/authors/OL3965117A"],"title":"Zuhayr Usayran yatadhakkar","title_suggest":["Zuhayr Usayran yatadhakkar"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623057M"],"publish_date":["1998"],"publish_year":[1998],"first_publish_year":1998,"lccn":["99897130"],"lcc":["PN-5449.00000000.L4 Z78 1998"],"isbn":["9782842891077","2842891074"],"last_modified_i":1606983173,"ebook_count_i":0,"publisher":["Dar al-Nahar lil-Nashr"],"language":["ara"],"author_key":["OL3965117A"],"author_name":["Zuhayr Usayran"],"subject":["Journalists","Biography","Politics and government"],"publisher_facet":["Dar al-Nahar lil-Nashr"],"subject_facet":["Biography","Journalists","Politics and government"],"_version_":1697074595876569000,"lcc_sort":"PN-5449.00000000.L4 Z78 1998","author_facet":["OL3965117A Zuhayr Usayran"],"subject_key":["biography","journalists","politics_and_government"]}
{"key":"/works/OL10000138W","text":["/works/OL10000138W","al-Sijn mujtama barri (Shahadat)","OL12623058M","99897332","2842891155","9782842891152","Dar al-Nahar lil-Nashr","OL3965118A","Muna Fayyad","Prisons"],"type":"work","seed":["/books/OL12623058M","/works/OL10000138W","/subjects/prisons","/authors/OL3965118A"],"title":"al-Sijn mujtama barri (Shahadat)","title_suggest":["al-Sijn mujtama barri (Shahadat)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623058M"],"publish_date":["1999"],"publish_year":[1999],"first_publish_year":1999,"lccn":["99897332"],"lcc":["HV-9778.00000000.F39 1999"],"isbn":["2842891155","9782842891152"],"last_modified_i":1606983240,"ebook_count_i":0,"publisher":["Dar al-Nahar lil-Nashr"],"language":["ara"],"author_key":["OL3965118A"],"author_name":["Muna Fayyad"],"subject":["Prisons"],"publisher_facet":["Dar al-Nahar lil-Nashr"],"subject_facet":["Prisons"],"_version_":1697074595958358000,"lcc_sort":"HV-9778.00000000.F39 1999","author_facet":["OL3965118A Muna Fayyad"],"subject_key":["prisons"]}
{"key":"/works/OL10000139W","text":["/works/OL10000139W","Fakhkh al-jasad","Tajalliyat, nazawat wa-asrar","OL13208738M","2001301469","9789953210056","9953210055","Riyad al-Rayyis lil-Kutub wa-al-Nashr","OL3965118A","Muna Fayyad","Sex in popular culture","Body image","Human body (Philosophy)"],"type":"work","seed":["/books/OL13208738M","/works/OL10000139W","/subjects/sex_in_popular_culture","/subjects/body_image","/subjects/human_body_(philosophy)","/authors/OL3965118A"],"title":"Fakhkh al-jasad","title_suggest":["Fakhkh al-jasad"],"has_fulltext":false,"edition_count":1,"edition_key":["OL13208738M"],"publish_date":["2000"],"publish_year":[2000],"first_publish_year":2000,"lccn":["2001301469"],"lcc":["HQ-0018.00000000.A65 F39 2000"],"isbn":["9789953210056","9953210055"],"last_modified_i":1607091972,"ebook_count_i":0,"publisher":["Riyad al-Rayyis lil-Kutub wa-al-Nashr"],"language":["ara"],"author_key":["OL3965118A"],"author_name":["Muna Fayyad"],"subject":["Sex in popular culture","Body image","Human body (Philosophy)"],"id_goodreads":["4823477"],"publisher_facet":["Riyad al-Rayyis lil-Kutub wa-al-Nashr"],"subject_facet":["Body image","Human body (Philosophy)","Sex in popular culture"],"_version_":1697074595720331300,"lcc_sort":"HQ-0018.00000000.A65 F39 2000","author_facet":["OL3965118A Muna Fayyad"],"subject_key":["body_image","human_body_(philosophy)","sex_in_popular_culture"]}
{"key":"/works/OL1000013W","text":["/works/OL1000013W","The prairie chicken kill","a Truman Smith mystery","OL967561M","Bill Crider.","96004009","34026670","9780802732828","0802732828","prairiechickenki00crid","Walker","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Texas","Fiction","Private investigators","Truman Smith (Fictitious character)","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL967561M","/works/OL1000013W","/subjects/fiction","/subjects/private_investigators","/subjects/truman_smith_(fictitious_character)","/subjects/place:texas","/authors/OL92934A"],"title":"The prairie chicken kill","title_suggest":["The prairie chicken kill"],"has_fulltext":true,"edition_count":1,"edition_key":["OL967561M"],"publish_date":["1996"],"publish_year":[1996],"first_publish_year":1996,"lccn":["96004009"],"publish_place":["New York"],"oclc":["34026670"],"lcc":["PS-3553.00000000.R497 P73 1996"],"ddc":["813.54"],"isbn":["9780802732828","0802732828"],"last_modified_i":1606112143,"ebook_count_i":1,"ia":["prairiechickenki00crid"],"public_scan_b":false,"ia_collection_s":"china;inlibrary;printdisabled;internetarchivebooks;denverpubliclibrary-ol","lending_edition_s":"OL967561M","lending_identifier_s":"prairiechickenki00crid","printdisabled_s":"OL967561M","cover_edition_key":"OL967561M","cover_i":7069101,"publisher":["Walker"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"place":["Texas"],"subject":["Fiction","Private investigators","Truman Smith (Fictitious character)","Accessible book","Protected DAISY"],"id_goodreads":["2014105"],"id_librarything":["1436020"],"ia_loaded_id":["prairiechickenki00crid"],"ia_box_id":["IA171001"],"publisher_facet":["Walker"],"place_key":["texas"],"subject_facet":["Accessible book","Fiction","Private investigators","Protected DAISY","Truman Smith (Fictitious character)"],"_version_":1697074595812606000,"place_facet":["Texas"],"lcc_sort":"PS-3553.00000000.R497 P73 1996","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","fiction","private_investigators","protected_daisy","truman_smith_(fictitious_character)"],"ddc_sort":"813.54"}
{"key":"/works/OL10000140W","text":["/works/OL10000140W","Fi al-qawmiyah wa-al-hukm","OL12623059M","9782842891190","2842891198","Dar al-Nahar","OL3965119A","Taqi al-Din Sulh"],"type":"work","seed":["/books/OL12623059M","/works/OL10000140W","/authors/OL3965119A"],"title":"Fi al-qawmiyah wa-al-hukm","title_suggest":["Fi al-qawmiyah wa-al-hukm"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623059M"],"publish_date":["1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782842891190","2842891198"],"last_modified_i":1260840402,"ebook_count_i":0,"publisher":["Dar al-Nahar"],"language":["ara"],"author_key":["OL3965119A"],"author_name":["Taqi al-Din Sulh"],"publisher_facet":["Dar al-Nahar"],"_version_":1697074596023369700,"author_facet":["OL3965119A Taqi al-Din Sulh"]}
{"key":"/works/OL10000141W","text":["/works/OL10000141W","Lubnan","Al-abath al-siyasi wa-al-masir al-majhul","OL12623072M","2001304632","2842893166","9782842893163","Dar al-Nahar","OL3965121A","Sami Sulh","Politics and government","Politicians","Biography","Statesmen"],"type":"work","seed":["/books/OL12623072M","/works/OL10000141W","/subjects/politics_and_government","/subjects/politicians","/subjects/biography","/subjects/statesmen","/authors/OL3965121A"],"title":"Lubnan","title_suggest":["Lubnan"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623072M"],"publish_date":["2000"],"publish_year":[2000],"first_publish_year":2000,"lccn":["2001304632"],"lcc":["DS-0087.20000000.S8 A3 2000"],"isbn":["2842893166","9782842893163"],"last_modified_i":1607093162,"ebook_count_i":0,"publisher":["Dar al-Nahar"],"language":["ara"],"author_key":["OL3965121A"],"author_name":["Sami Sulh"],"subject":["Politics and government","Politicians","Biography","Statesmen"],"publisher_facet":["Dar al-Nahar"],"subject_facet":["Biography","Politicians","Politics and government","Statesmen"],"_version_":1697074596249862100,"lcc_sort":"DS-0087.20000000.S8 A3 2000","author_facet":["OL3965121A Sami Sulh"],"subject_key":["biography","politicians","politics_and_government","statesmen"]}
{"key":"/works/OL10000142W","text":["/works/OL10000142W","al-Tarikh wa-al-tajribah fi (al-Kitab I) li-Adunis","OL12623073M","2001392197","9782842893170","2842893174","Dar al-Nahar","OL3965122A","Zahidah Darwish Jabbur","Criticism and interpretation","Arab Poets","Arabic poetry","History and criticism","Narration (Rhetoric)"],"type":"work","seed":["/books/OL12623073M","/works/OL10000142W","/subjects/criticism_and_interpretation","/subjects/arab_poets","/subjects/arabic_poetry","/subjects/history_and_criticism","/subjects/narration_(rhetoric)","/authors/OL3965122A"],"title":"al-Tarikh wa-al-tajribah fi (al-Kitab I) li-Adunis","title_suggest":["al-Tarikh wa-al-tajribah fi (al-Kitab I) li-Adunis"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623073M"],"publish_date":["2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2001392197"],"lcc":["PJ-7862.00000000.A519 Z73 2001"],"isbn":["9782842893170","2842893174"],"last_modified_i":1607134998,"ebook_count_i":0,"publisher":["Dar al-Nahar"],"language":["ara"],"author_key":["OL3965122A"],"author_name":["Zahidah Darwish Jabbur"],"subject":["Criticism and interpretation","Arab Poets","Arabic poetry","History and criticism","Narration (Rhetoric)"],"id_goodreads":["2281169"],"publisher_facet":["Dar al-Nahar"],"subject_facet":["Arab Poets","Arabic poetry","Criticism and interpretation","History and criticism","Narration (Rhetoric)"],"_version_":1697074596281319400,"lcc_sort":"PJ-7862.00000000.A519 Z73 2001","author_facet":["OL3965122A Zahidah Darwish Jabbur"],"subject_key":["arab_poets","arabic_poetry","criticism_and_interpretation","history_and_criticism","narration_(rhetoric)"]}
{"key":"/works/OL10000143W","text":["/works/OL10000143W","Dhikrayat Isbaniyah wa-Andalusiyah maa Nizar Qabbani wa-rasailuh","OL12623074M","2001304605","9782842893194","2842893190","Dar al-Nahar","OL3965123A","Salma al-Haffar Kuzbari","Correspondence","Travel","Arab Poets","Biography"],"type":"work","seed":["/books/OL12623074M","/works/OL10000143W","/subjects/correspondence","/subjects/travel","/subjects/arab_poets","/subjects/biography","/authors/OL3965123A"],"title":"Dhikrayat Isbaniyah wa-Andalusiyah maa Nizar Qabbani wa-rasailuh","title_suggest":["Dhikrayat Isbaniyah wa-Andalusiyah maa Nizar Qabbani wa-rasailuh"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623074M"],"publish_date":["2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2001304605"],"lcc":["PJ-7858.00000000.A2 Z48 2001"],"isbn":["9782842893194","2842893190"],"last_modified_i":1607093149,"ebook_count_i":0,"publisher":["Dar al-Nahar"],"language":["ara"],"author_key":["OL3965123A"],"author_name":["Salma al-Haffar Kuzbari"],"subject":["Correspondence","Travel","Arab Poets","Biography"],"id_goodreads":["426405"],"publisher_facet":["Dar al-Nahar"],"subject_facet":["Arab Poets","Biography","Correspondence","Travel"],"_version_":1697074596354719700,"lcc_sort":"PJ-7858.00000000.A2 Z48 2001","author_facet":["OL3965123A Salma al-Haffar Kuzbari"],"subject_key":["arab_poets","biography","correspondence","travel"]}
{"key":"/works/OL10000144W","text":["/works/OL10000144W","Safar fi wujuh","OL12623075M","2001392213","9782842893224","2842893220","Dar al-Nahar","OL3965124A","Jurj Khidr","Travel","Bishops","Biography","Orthodox Eastern Church members"],"type":"work","seed":["/books/OL12623075M","/works/OL10000144W","/subjects/travel","/subjects/bishops","/subjects/biography","/subjects/orthodox_eastern_church_members","/authors/OL3965124A"],"title":"Safar fi wujuh","title_suggest":["Safar fi wujuh"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623075M"],"publish_date":["2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2001392213"],"lcc":["BX-0395.00000000.K49 A3 2001"],"isbn":["9782842893224","2842893220"],"last_modified_i":1607135004,"ebook_count_i":0,"publisher":["Dar al-Nahar"],"language":["ara"],"author_key":["OL3965124A"],"author_name":["Jurj Khidr"],"subject":["Travel","Bishops","Biography","Orthodox Eastern Church members"],"publisher_facet":["Dar al-Nahar"],"subject_facet":["Biography","Bishops","Orthodox Eastern Church members","Travel"],"_version_":1697074596682924000,"lcc_sort":"BX-0395.00000000.K49 A3 2001","author_facet":["OL3965124A Jurj Khidr"],"subject_key":["biography","bishops","orthodox_eastern_church_members","travel"]}
{"key":"/works/OL10000145W","text":["/works/OL10000145W","Hikayat qarn","Sirah dhatiyah","OL12623076M","2001393849","2842893328","9782842893323","Dar al-Nahar","OL3965125A","Wilyam Sab","Arab Poets","Biography"],"type":"work","seed":["/books/OL12623076M","/works/OL10000145W","/subjects/arab_poets","/subjects/biography","/authors/OL3965125A"],"title":"Hikayat qarn","title_suggest":["Hikayat qarn"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623076M"],"publish_date":["2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2001393849"],"lcc":["PJ-7862.00000000.A252 Z465 2001"],"isbn":["2842893328","9782842893323"],"last_modified_i":1607135596,"ebook_count_i":0,"publisher":["Dar al-Nahar"],"language":["ara"],"author_key":["OL3965125A"],"author_name":["Wilyam Sab"],"subject":["Arab Poets","Biography"],"id_goodreads":["115327"],"publisher_facet":["Dar al-Nahar"],"subject_facet":["Arab Poets","Biography"],"_version_":1697074595912220700,"lcc_sort":"PJ-7862.00000000.A252 Z465 2001","author_facet":["OL3965125A Wilyam Sab"],"subject_key":["arab_poets","biography"]}
{"key":"/works/OL10000146W","text":["/works/OL10000146W","Bayna al-siyasah wa-al-diblumasiyah","Dhikrayat wa-mudhakkirat","OL12623077M","2001392205","9782842893347","2842893344","Dar al-Nahar","OL3965126A","Yusuf Shadid","Diplomats","Biography","Politics and government"],"type":"work","seed":["/books/OL12623077M","/works/OL10000146W","/subjects/diplomats","/subjects/biography","/subjects/politics_and_government","/authors/OL3965126A"],"title":"Bayna al-siyasah wa-al-diblumasiyah","title_suggest":["Bayna al-siyasah wa-al-diblumasiyah"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623077M"],"publish_date":["2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2001392205"],"isbn":["9782842893347","2842893344"],"last_modified_i":1607135001,"ebook_count_i":0,"publisher":["Dar al-Nahar"],"language":["ara"],"author_key":["OL3965126A"],"author_name":["Yusuf Shadid"],"subject":["Diplomats","Biography","Politics and government"],"publisher_facet":["Dar al-Nahar"],"subject_facet":["Biography","Diplomats","Politics and government"],"_version_":1697074596643078100,"author_facet":["OL3965126A Yusuf Shadid"],"subject_key":["biography","diplomats","politics_and_government"]}
{"key":"/works/OL10000147W","text":["/works/OL10000147W","al-Dimuqratiyah fi Amrika","OL12623080M","2002330092","9782842893552","2842893557","Dar al-Nahar","OL3965127A","Shibli Mallat","Democracy","Politics and government"],"type":"work","seed":["/books/OL12623080M","/works/OL10000147W","/subjects/democracy","/subjects/politics_and_government","/authors/OL3965127A"],"title":"al-Dimuqratiyah fi Amrika","title_suggest":["al-Dimuqratiyah fi Amrika"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623080M"],"publish_date":["2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2002330092"],"lcc":["JK-0031.00000000.M29 2001"],"isbn":["9782842893552","2842893557"],"last_modified_i":1607298732,"ebook_count_i":0,"publisher":["Dar al-Nahar"],"language":["ara"],"author_key":["OL3965127A"],"author_name":["Shibli Mallat"],"subject":["Democracy","Politics and government"],"publisher_facet":["Dar al-Nahar"],"subject_facet":["Democracy","Politics and government"],"_version_":1697074595962552300,"lcc_sort":"JK-0031.00000000.M29 2001","author_facet":["OL3965127A Shibli Mallat"],"subject_key":["democracy","politics_and_government"]}
{"key":"/works/OL10000148W","text":["/works/OL10000148W","Awraq min dafatir sajin","OL12623081M","2002330080","9782842893620","284289362X","Dar al-Nahar","OL3965128A","Mayy Manassi"],"type":"work","seed":["/books/OL12623081M","/works/OL10000148W","/authors/OL3965128A"],"title":"Awraq min dafatir sajin","title_suggest":["Awraq min dafatir sajin"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623081M"],"publish_date":["2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2002330080"],"isbn":["9782842893620","284289362X"],"last_modified_i":1607298727,"ebook_count_i":0,"publisher":["Dar al-Nahar"],"language":["ara"],"author_key":["OL3965128A"],"author_name":["Mayy Manassi"],"publisher_facet":["Dar al-Nahar"],"_version_":1697074595316629500,"author_facet":["OL3965128A Mayy Manassi"]}
{"key":"/works/OL10000149W","text":["/works/OL10000149W","Hiwar al-thaqafat wa-ishq al-lughah","Ahadith maa 22 katiban frankufuniyan (Shahadat)","OL12623082M","2002331976","49783746","2842893638","9782842893637","Dar al-Nahar lil-Nashr","OL3965129A","Hanan Ad","Arabic literature","French influences","History and criticism","Arab Authors","Interviews"],"type":"work","seed":["/books/OL12623082M","/works/OL10000149W","/subjects/arabic_literature","/subjects/french_influences","/subjects/history_and_criticism","/subjects/arab_authors","/subjects/interviews","/authors/OL3965129A"],"title":"Hiwar al-thaqafat wa-ishq al-lughah","title_suggest":["Hiwar al-thaqafat wa-ishq al-lughah"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623082M"],"publish_date":["2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2002331976"],"oclc":["49783746"],"lcc":["PJ-8078.00000000.A29 2001"],"isbn":["2842893638","9782842893637"],"last_modified_i":1607299471,"ebook_count_i":0,"publisher":["Dar al-Nahar lil-Nashr"],"language":["ara"],"author_key":["OL3965129A"],"author_name":["Hanan Ad"],"subject":["Arabic literature","French influences","History and criticism","Arab Authors","Interviews"],"id_goodreads":["1941254"],"publisher_facet":["Dar al-Nahar lil-Nashr"],"subject_facet":["Arab Authors","Arabic literature","French influences","History and criticism","Interviews"],"_version_":1697074596472160300,"lcc_sort":"PJ-8078.00000000.A29 2001","author_facet":["OL3965129A Hanan Ad"],"subject_key":["arab_authors","arabic_literature","french_influences","history_and_criticism","interviews"]}
{"key":"/works/OL1000014W","text":["/works/OL1000014W","A romantic way to die","a Sheriff Dan Rhodes mystery","OL3950030M","Bill Crider.","2001041805","47225377","9780312209070","031220907X","Thomas Dunne Books","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Texas","Fiction","Dan Rhodes (Fictitious character)","Sheriffs","Authorship","Love stories","Male models","Male models in fiction","Love stories in fiction","Sheriffs in fiction","Texas in fiction","Romance fiction"],"type":"work","seed":["/books/OL3950030M","/works/OL1000014W","/subjects/fiction","/subjects/dan_rhodes_(fictitious_character)","/subjects/sheriffs","/subjects/authorship","/subjects/love_stories","/subjects/male_models","/subjects/male_models_in_fiction","/subjects/love_stories_in_fiction","/subjects/sheriffs_in_fiction","/subjects/texas_in_fiction","/subjects/romance_fiction","/subjects/place:texas","/authors/OL92934A"],"title":"A romantic way to die","title_suggest":["A romantic way to die"],"has_fulltext":false,"edition_count":1,"edition_key":["OL3950030M"],"publish_date":["2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2001041805"],"publish_place":["New York"],"oclc":["47225377"],"lcc":["PS-3553.00000000.R497 R66 2001"],"ddc":["813.54"],"isbn":["9780312209070","031220907X"],"last_modified_i":1607013828,"ebook_count_i":0,"cover_edition_key":"OL3950030M","cover_i":175892,"publisher":["Thomas Dunne Books"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"place":["Texas"],"subject":["Fiction","Dan Rhodes (Fictitious character)","Sheriffs","Authorship","Love stories","Male models","Male models in fiction","Love stories in fiction","Sheriffs in fiction","Texas in fiction","Romance fiction"],"id_goodreads":["147130"],"id_librarything":["94460"],"publisher_facet":["Thomas Dunne Books"],"place_key":["texas"],"subject_facet":["Authorship","Dan Rhodes (Fictitious character)","Fiction","Love stories","Love stories in fiction","Male models","Male models in fiction","Romance fiction","Sheriffs","Sheriffs in fiction","Texas in fiction"],"_version_":1697074595806314500,"place_facet":["Texas"],"lcc_sort":"PS-3553.00000000.R497 R66 2001","author_facet":["OL92934A Bill Crider"],"subject_key":["authorship","dan_rhodes_(fictitious_character)","fiction","love_stories","love_stories_in_fiction","male_models","male_models_in_fiction","romance_fiction","sheriffs","sheriffs_in_fiction","texas_in_fiction"],"ddc_sort":"813.54"}
{"key":"/works/OL10000150W","text":["/works/OL10000150W","Jean de La Fontaine, Fables","Jean de La Fontaine, Fables ","livres VII à XII","OL12623092M","2842910176","9782842910174","Breal","OL3965130A","Frédérique Leichter"],"type":"work","seed":["/books/OL12623092M","/works/OL10000150W","/authors/OL3965130A"],"title":"Jean de La Fontaine, Fables","title_suggest":["Jean de La Fontaine, Fables"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623092M"],"publish_date":["January 1, 1997"],"publish_year":[1997],"first_publish_year":1997,"isbn":["2842910176","9782842910174"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623092M","cover_i":3140315,"publisher":["Breal"],"author_key":["OL3965130A"],"author_name":["Frédérique Leichter"],"publisher_facet":["Breal"],"_version_":1697074596671389700,"author_facet":["OL3965130A Frédérique Leichter"]}
{"key":"/works/OL10000151W","text":["/works/OL10000151W","Expériences d'optique. Agrégation de sciences physiques","OL12623093M","2842910273","9782842910273","Breal","OL3965131A","Duffait"],"type":"work","seed":["/books/OL12623093M","/works/OL10000151W","/authors/OL3965131A"],"title":"Expériences d'optique. Agrégation de sciences physiques","title_suggest":["Expériences d'optique. Agrégation de sciences physiques"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623093M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2842910273","9782842910273"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623093M","cover_i":3140316,"publisher":["Breal"],"language":["fre"],"author_key":["OL3965131A"],"author_name":["Duffait"],"publisher_facet":["Breal"],"_version_":1697074595422535700,"author_facet":["OL3965131A Duffait"]}
{"key":"/works/OL10000152W","text":["/works/OL10000152W","25 thèmes de travaux pratiques de chimie","OL12630547M","2853949311","9782853949316","Breal","OL3965132A","Souil"],"type":"work","seed":["/books/OL12630547M","/works/OL10000152W","/authors/OL3965132A"],"title":"25 thèmes de travaux pratiques de chimie","title_suggest":["25 thèmes de travaux pratiques de chimie"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12630547M"],"publish_date":["January 1, 1996"],"publish_year":[1996],"first_publish_year":1996,"isbn":["2853949311","9782853949316"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12630547M","cover_i":3146558,"publisher":["Breal"],"author_key":["OL3965132A"],"author_name":["Souil"],"publisher_facet":["Breal"],"_version_":1697074596664049700,"author_facet":["OL3965132A Souil"]}
{"key":"/works/OL10000153W","text":["/works/OL10000153W","Expériences de chimie, CAPES de sciences physiques: à l'usage des candidats aux concours du second degré","Expériences de chimie, CAPES de sciences physiques: à l'usage des candidats aux concours du second degré ","PLP2, CAPES et Agrégations de sciences physiques externes et internes","OL12623094M","9782842910280","2842910281","Breal","OL3965132A","Souil"],"type":"work","seed":["/books/OL12623094M","/works/OL10000153W","/authors/OL3965132A"],"title":"Expériences de chimie, CAPES de sciences physiques: à l'usage des candidats aux concours du second degré","title_suggest":["Expériences de chimie, CAPES de sciences physiques: à l'usage des candidats aux concours du second degré"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623094M"],"publish_date":["January 1, 1997"],"publish_year":[1997],"first_publish_year":1997,"isbn":["9782842910280","2842910281"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623094M","cover_i":3140317,"publisher":["Breal"],"author_key":["OL3965132A"],"author_name":["Souil"],"id_goodreads":["5268291"],"publisher_facet":["Breal"],"_version_":1697074595684679700,"author_facet":["OL3965132A Souil"]}
{"key":"/works/OL10000154W","text":["/works/OL10000154W","Psychologie différentielle","OL12623098M","9782842911126","2842911121","Breal","OL3965133A","P.-Y. Gilles"],"type":"work","seed":["/books/OL12623098M","/works/OL10000154W","/authors/OL3965133A"],"title":"Psychologie différentielle","title_suggest":["Psychologie différentielle"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623098M"],"publish_date":["April 28, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782842911126","2842911121"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623098M","cover_i":3140321,"publisher":["Breal"],"language":["fre"],"author_key":["OL3965133A"],"author_name":["P.-Y. Gilles"],"publisher_facet":["Breal"],"_version_":1697074596346331100,"author_facet":["OL3965133A P.-Y. Gilles"]}
{"key":"/works/OL10000155W","text":["/works/OL10000155W","100 fiches de maths pour prépas commerciales avec exercices d'applications corrrigés","OL12623099M","9782842911249","2842911245","Bréal","OL3965134A","Hervé Muller"],"type":"work","seed":["/books/OL12623099M","/works/OL10000155W","/authors/OL3965134A"],"title":"100 fiches de maths pour prépas commerciales avec exercices d'applications corrrigés","title_suggest":["100 fiches de maths pour prépas commerciales avec exercices d'applications corrrigés"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623099M"],"publish_date":["January 1, 1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["9782842911249","2842911245"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623099M","cover_i":3140322,"publisher":["Bréal"],"author_key":["OL3965134A"],"author_name":["Hervé Muller"],"id_goodreads":["5699062"],"publisher_facet":["Bréal"],"_version_":1697074596691312600,"author_facet":["OL3965134A Hervé Muller"]}
{"key":"/works/OL10000156W","text":["/works/OL10000156W","Madame Bovary, de Flaubert","OL12623104M","9782842911430","2842911431","Breal","OL3965140A","T. Defaye"],"type":"work","seed":["/books/OL12623104M","/works/OL10000156W","/authors/OL3965140A"],"title":"Madame Bovary, de Flaubert","title_suggest":["Madame Bovary, de Flaubert"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623104M"],"publish_date":["April 28, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782842911430","2842911431"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623104M","cover_i":3140327,"publisher":["Breal"],"language":["fre"],"author_key":["OL3965140A"],"author_name":["T. Defaye"],"id_goodreads":["2295454"],"publisher_facet":["Breal"],"_version_":1697074595629105200,"author_facet":["OL3965140A T. Defaye"]}
{"key":"/works/OL10000157W","text":["/works/OL10000157W","Alcools, de Guillaume Apollinaire","OL12623105M","42686944","9782842911447","284291144X","Breal","OL3965141A","C. Daudin"],"type":"work","seed":["/books/OL12623105M","/works/OL10000157W","/authors/OL3965141A"],"title":"Alcools, de Guillaume Apollinaire","title_suggest":["Alcools, de Guillaume Apollinaire"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623105M"],"publish_date":["April 28, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["42686944"],"isbn":["9782842911447","284291144X"],"last_modified_i":1304073285,"ebook_count_i":0,"cover_edition_key":"OL12623105M","cover_i":3140328,"publisher":["Breal"],"language":["fre"],"author_key":["OL3965141A"],"author_name":["C. Daudin"],"id_goodreads":["1258236"],"publisher_facet":["Breal"],"_version_":1697074595688874000,"author_facet":["OL3965141A C. Daudin"]}
{"key":"/works/OL10000158W","text":["/works/OL10000158W","Colline, de Giono","OL12623119M","9782842913182","2842913183","Breal","OL3965141A","C. Daudin"],"type":"work","seed":["/books/OL12623119M","/works/OL10000158W","/authors/OL3965141A"],"title":"Colline, de Giono","title_suggest":["Colline, de Giono"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623119M"],"publish_date":["April 28, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782842913182","2842913183"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623119M","cover_i":3140342,"publisher":["Breal"],"language":["fre"],"author_key":["OL3965141A"],"author_name":["C. Daudin"],"id_goodreads":["5085818"],"publisher_facet":["Breal"],"_version_":1697074595749691400,"author_facet":["OL3965141A C. Daudin"]}
{"key":"/works/OL10000159W","text":["/works/OL10000159W","Petits Poèmes en prose, de Baudelaire","OL12623107M","9782842911515","2842911512","Breal","OL3965142A","N. Vallet"],"type":"work","seed":["/books/OL12623107M","/works/OL10000159W","/authors/OL3965142A"],"title":"Petits Poèmes en prose, de Baudelaire","title_suggest":["Petits Poèmes en prose, de Baudelaire"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623107M"],"publish_date":["April 28, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782842911515","2842911512"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12623107M","cover_i":3140330,"publisher":["Breal"],"author_key":["OL3965142A"],"author_name":["N. Vallet"],"id_goodreads":["1944350"],"id_librarything":["8927548"],"publisher_facet":["Breal"],"_version_":1697074596093624300,"author_facet":["OL3965142A N. Vallet"]}
{"key":"/works/OL1000015W","text":["/works/OL1000015W","A Romantic Way to Die","A romantic way to die","OL9413270M","OL24929953M","Bill Crider","51319693","0373264402","9780373264407","romanticwaytodie00crid","THE CLEARVIEW WAL-MART WAS ALWAYS CROWDED.","Worldwide Library","Worldwide","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Texas","Dan Rhodes (Fictitious character)","Sheriffs","Authorship","Love stories","Male models","Fiction","Fiction, mystery & detective, general","Texas, fiction","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL9413270M","/books/OL24929953M","/works/OL1000015W","/subjects/dan_rhodes_(fictitious_character)","/subjects/sheriffs","/subjects/authorship","/subjects/love_stories","/subjects/male_models","/subjects/fiction","/subjects/fiction_mystery_&_detective_general","/subjects/texas_fiction","/subjects/place:texas","/authors/OL92934A"],"title":"A Romantic Way to Die","title_suggest":["A Romantic Way to Die"],"has_fulltext":true,"edition_count":2,"edition_key":["OL9413270M","OL24929953M"],"publish_date":["December 1, 2002","2002"],"publish_year":[2002],"first_publish_year":2002,"publish_place":["Toronto, Ont","New York"],"oclc":["51319693"],"lcc":["PS-3553.00000000.R497 R65 2002"],"ddc":["813.54"],"isbn":["0373264402","9780373264407"],"last_modified_i":1598571370,"ebook_count_i":1,"ia":["romanticwaytodie00crid"],"public_scan_b":false,"ia_collection_s":"americana;inlibrary;printdisabled;internetarchivebooks","lending_edition_s":"OL9413270M","lending_identifier_s":"romanticwaytodie00crid","printdisabled_s":"OL24929953M;OL9413270M","cover_edition_key":"OL9413270M","cover_i":217479,"first_sentence":["THE CLEARVIEW WAL-MART WAS ALWAYS CROWDED."],"publisher":["Worldwide Library","Worldwide"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"place":["Texas"],"subject":["Dan Rhodes (Fictitious character)","Sheriffs","Authorship","Love stories","Male models","Fiction","Fiction, mystery & detective, general","Texas, fiction","Accessible book","Protected DAISY"],"id_goodreads":["538958"],"id_librarything":["94460"],"ia_box_id":["IA133702"],"publisher_facet":["Worldwide","Worldwide Library"],"place_key":["texas"],"subject_facet":["Accessible book","Authorship","Dan Rhodes (Fictitious character)","Fiction","Fiction, mystery & detective, general","Love stories","Male models","Protected DAISY","Sheriffs","Texas, fiction"],"_version_":1697074596086284300,"place_facet":["Texas"],"lcc_sort":"PS-3553.00000000.R497 R65 2002","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","authorship","dan_rhodes_(fictitious_character)","fiction","fiction_mystery__detective_general","love_stories","male_models","protected_daisy","sheriffs","texas_fiction"],"ddc_sort":"813.54"}
{"key":"/works/OL10000160W","text":["/works/OL10000160W","La Machine infernale, de Cocteau","OL12623108M","2842911601","9782842911607","Breal","OL3965143A","C. Delattre"],"type":"work","seed":["/books/OL12623108M","/works/OL10000160W","/authors/OL3965143A"],"title":"La Machine infernale, de Cocteau","title_suggest":["La Machine infernale, de Cocteau"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623108M"],"publish_date":["April 28, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2842911601","9782842911607"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623108M","cover_i":3140331,"publisher":["Breal"],"language":["fre"],"author_key":["OL3965143A"],"author_name":["C. Delattre"],"id_goodreads":["5086045"],"publisher_facet":["Breal"],"_version_":1697074595833577500,"author_facet":["OL3965143A C. Delattre"]}
{"key":"/works/OL10000161W","text":["/works/OL10000161W","Psychologie clinique et Psychopathologie","OL12623111M","9782842911942","2842911946","Bréal","OL3965144A","R. Samacher"],"type":"work","seed":["/books/OL12623111M","/works/OL10000161W","/authors/OL3965144A"],"title":"Psychologie clinique et Psychopathologie","title_suggest":["Psychologie clinique et Psychopathologie"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623111M"],"publish_date":["September 16, 1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["9782842911942","2842911946"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12623111M","cover_i":3140334,"publisher":["Bréal"],"author_key":["OL3965144A"],"author_name":["R. Samacher"],"id_librarything":["5090219"],"publisher_facet":["Bréal"],"_version_":1697074595977232400,"author_facet":["OL3965144A R. Samacher"]}
{"key":"/works/OL10000162W","text":["/works/OL10000162W","Enfants, adolescents","Enfants, adolescents ","les approches psychologiques","OL12623113M","OL12623112M","9782842912017","2842912012","9782842912000","2842912004","Breal","OL3965145A","Agnès Danis"],"type":"work","seed":["/books/OL12623113M","/books/OL12623112M","/works/OL10000162W","/authors/OL3965145A"],"title":"Enfants, adolescents","title_suggest":["Enfants, adolescents"],"has_fulltext":false,"edition_count":2,"edition_key":["OL12623113M","OL12623112M"],"publish_date":["January 1, 1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["9782842912017","2842912012","9782842912000","2842912004"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623112M","cover_i":3140335,"publisher":["Breal"],"author_key":["OL3965145A"],"author_name":["Agnès Danis"],"publisher_facet":["Breal"],"_version_":1697074596523540500,"author_facet":["OL3965145A Agnès Danis"]}
{"key":"/works/OL10000163W","text":["/works/OL10000163W","Les Mouches, de Sartre","OL12623116M","9782842912390","284291239X","Breal","OL3965147A","J.-L. Jeannelle"],"type":"work","seed":["/books/OL12623116M","/works/OL10000163W","/authors/OL3965147A"],"title":"Les Mouches, de Sartre","title_suggest":["Les Mouches, de Sartre"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623116M"],"publish_date":["April 28, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782842912390","284291239X"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12623116M","cover_i":3140339,"publisher":["Breal"],"language":["fre"],"author_key":["OL3965147A"],"author_name":["J.-L. Jeannelle"],"id_goodreads":["658175"],"id_librarything":["2812866"],"publisher_facet":["Breal"],"_version_":1697074596016029700,"author_facet":["OL3965147A J.-L. Jeannelle"]}
{"key":"/works/OL10000164W","text":["/works/OL10000164W","En attendant Godot","OL12623117M","2842912802","9782842912802","Breal","OL3965148A","M. Quintallet"],"type":"work","seed":["/books/OL12623117M","/works/OL10000164W","/authors/OL3965148A"],"title":"En attendant Godot","title_suggest":["En attendant Godot"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623117M"],"publish_date":["April 28, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2842912802","9782842912802"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12623117M","cover_i":3140340,"publisher":["Breal"],"author_key":["OL3965148A"],"author_name":["M. Quintallet"],"id_goodreads":["197944"],"id_librarything":["3769023"],"publisher_facet":["Breal"],"_version_":1697074595820994600,"author_facet":["OL3965148A M. Quintallet"]}
{"key":"/works/OL10000165W","text":["/works/OL10000165W","Gustave Flaubert, Bouvard et Pécuchet","OL12623120M","2842913205","9782842913205","Breal","OL3965150A","Schvalberg"],"type":"work","seed":["/books/OL12623120M","/works/OL10000165W","/authors/OL3965150A"],"title":"Gustave Flaubert, Bouvard et Pécuchet","title_suggest":["Gustave Flaubert, Bouvard et Pécuchet"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623120M"],"publish_date":["January 1, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["2842913205","9782842913205"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12623120M","cover_i":3140343,"publisher":["Breal"],"language":["fre"],"author_key":["OL3965150A"],"author_name":["Schvalberg"],"id_goodreads":["958738"],"id_librarything":["3924613"],"publisher_facet":["Breal"],"_version_":1697074596589600800,"author_facet":["OL3965150A Schvalberg"]}
{"key":"/works/OL10000166W","text":["/works/OL10000166W","Le Japon en fiches","OL12623122M","9782842913939","2842913930","Breal","OL3965151A","Bacconnier"],"type":"work","seed":["/books/OL12623122M","/works/OL10000166W","/authors/OL3965151A"],"title":"Le Japon en fiches","title_suggest":["Le Japon en fiches"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623122M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782842913939","2842913930"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623122M","cover_i":3140345,"publisher":["Breal"],"language":["fre"],"author_key":["OL3965151A"],"author_name":["Bacconnier"],"id_goodreads":["6380931"],"publisher_facet":["Breal"],"_version_":1697074596311728000,"author_facet":["OL3965151A Bacconnier"]}
{"key":"/works/OL10000167W","text":["/works/OL10000167W","Le Tiers monde en fiches","OL12623123M","42701405","2842913949","9782842913946","Breal","OL3965152A","J.-M. Henriet"],"type":"work","seed":["/books/OL12623123M","/works/OL10000167W","/authors/OL3965152A"],"title":"Le Tiers monde en fiches","title_suggest":["Le Tiers monde en fiches"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623123M"],"publish_date":["April 28, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["42701405"],"isbn":["2842913949","9782842913946"],"last_modified_i":1303848514,"ebook_count_i":0,"cover_edition_key":"OL12623123M","cover_i":3140346,"publisher":["Breal"],"author_key":["OL3965152A"],"author_name":["J.-M. Henriet"],"id_goodreads":["2071555"],"publisher_facet":["Breal"],"_version_":1697074596391420000,"author_facet":["OL3965152A J.-M. Henriet"]}
{"key":"/works/OL10000168W","text":["/works/OL10000168W","50 fiches pour comprendre les débats économiques actuels","OL12623125M","9782842913960","2842913965","Breal","OL3965154A","Marc Chamblay"],"type":"work","seed":["/books/OL12623125M","/works/OL10000168W","/authors/OL3965154A"],"title":"50 fiches pour comprendre les débats économiques actuels","title_suggest":["50 fiches pour comprendre les débats économiques actuels"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623125M"],"publish_date":["January 1, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782842913960","2842913965"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623125M","cover_i":3140348,"publisher":["Breal"],"author_key":["OL3965154A"],"author_name":["Marc Chamblay"],"publisher_facet":["Breal"],"_version_":1697074596456431600,"author_facet":["OL3965154A Marc Chamblay"]}
{"key":"/works/OL10000169W","text":["/works/OL10000169W","Mathématiques, analyse, MP (cours, méthodes, exercices résolus)","OL12623163M","9782842915506","284291550X","Bréal","OL3965155A","Daniel Guinin"],"type":"work","seed":["/books/OL12623163M","/works/OL10000169W","/authors/OL3965155A"],"title":"Mathématiques, analyse, MP (cours, méthodes, exercices résolus)","title_suggest":["Mathématiques, analyse, MP (cours, méthodes, exercices résolus)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623163M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782842915506","284291550X"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623163M","cover_i":3140386,"publisher":["Bréal"],"language":["fre"],"author_key":["OL3965155A"],"author_name":["Daniel Guinin"],"publisher_facet":["Bréal"],"_version_":1697074596239376400,"author_facet":["OL3965155A Daniel Guinin"]}
{"key":"/works/OL1000016W","text":["/works/OL1000016W","The Texas capitol murders","OL1553396M","Bill Crider.","91033409","24667601","9780312070939","0312070934","St. Martin's Press","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Austin (Tex.)","Fiction"],"type":"work","seed":["/books/OL1553396M","/works/OL1000016W","/subjects/fiction","/subjects/place:austin_(tex.)","/authors/OL92934A"],"title":"The Texas capitol murders","title_suggest":["The Texas capitol murders"],"has_fulltext":false,"edition_count":1,"edition_key":["OL1553396M"],"publish_date":["1992"],"publish_year":[1992],"first_publish_year":1992,"lccn":["91033409"],"publish_place":["New York"],"oclc":["24667601"],"lcc":["PS-3553.00000000.R497 T48 1992"],"ddc":["813.54"],"isbn":["9780312070939","0312070934"],"last_modified_i":1605257477,"ebook_count_i":0,"publisher":["St. Martin's Press"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"place":["Austin (Tex.)"],"subject":["Fiction"],"id_goodreads":["543115"],"id_librarything":["1716249"],"publisher_facet":["St. Martin's Press"],"place_key":["austin_(tex.)"],"subject_facet":["Fiction"],"_version_":1697074596392468500,"place_facet":["Austin (Tex.)"],"lcc_sort":"PS-3553.00000000.R497 T48 1992","author_facet":["OL92934A Bill Crider"],"subject_key":["fiction"],"ddc_sort":"813.54"}
{"key":"/works/OL10000170W","text":["/works/OL10000170W","Journal'ease","OL12623128M","42675403","9782842914165","2842914163","Bréal","OL3965157A","J. Andreyev"],"type":"work","seed":["/books/OL12623128M","/works/OL10000170W","/authors/OL3965157A"],"title":"Journal'ease","title_suggest":["Journal'ease"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623128M"],"publish_date":["April 28, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["42675403"],"isbn":["9782842914165","2842914163"],"last_modified_i":1304127671,"ebook_count_i":0,"cover_edition_key":"OL12623128M","cover_i":3140351,"publisher":["Bréal"],"language":["fre"],"author_key":["OL3965157A"],"author_name":["J. Andreyev"],"id_goodreads":["6889188"],"id_librarything":["4487100"],"publisher_facet":["Bréal"],"_version_":1697074595983523800,"author_facet":["OL3965157A J. Andreyev"]}
{"key":"/works/OL10000171W","text":["/works/OL10000171W","Les mots-clés du commerce international","OL12623130M","9782842914202","2842914201","Breal","OL3965160A","A. Madoyan"],"type":"work","seed":["/books/OL12623130M","/works/OL10000171W","/authors/OL3965160A"],"title":"Les mots-clés du commerce international","title_suggest":["Les mots-clés du commerce international"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623130M"],"publish_date":["April 28, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782842914202","2842914201"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623130M","cover_i":3140353,"publisher":["Breal"],"author_key":["OL3965160A"],"author_name":["A. Madoyan"],"publisher_facet":["Breal"],"_version_":1697074596500471800,"author_facet":["OL3965160A A. Madoyan"]}
{"key":"/works/OL10000172W","text":["/works/OL10000172W","La Vie de Galilée, de Brecht","OL12623131M","43504399","2842914236","9782842914233","Breal","OL3965161A","F. Bancaud-Maënen"],"type":"work","seed":["/books/OL12623131M","/works/OL10000172W","/authors/OL3965161A"],"title":"La Vie de Galilée, de Brecht","title_suggest":["La Vie de Galilée, de Brecht"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623131M"],"publish_date":["April 28, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["43504399"],"isbn":["2842914236","9782842914233"],"last_modified_i":1303968216,"ebook_count_i":0,"cover_edition_key":"OL12623131M","cover_i":3140354,"publisher":["Breal"],"author_key":["OL3965161A"],"author_name":["F. Bancaud-Maënen"],"id_goodreads":["6077391"],"publisher_facet":["Breal"],"_version_":1697074595996106800,"author_facet":["OL3965161A F. Bancaud-Maënen"]}
{"key":"/works/OL10000173W","text":["/works/OL10000173W","Bel-Ami, de Guy de Maupassant","OL12623132M","9782842914257","2842914252","Breal","OL3965162A","Frédéric Le Blay"],"type":"work","seed":["/books/OL12623132M","/works/OL10000173W","/authors/OL3965162A"],"title":"Bel-Ami, de Guy de Maupassant","title_suggest":["Bel-Ami, de Guy de Maupassant"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623132M"],"publish_date":["July 30, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782842914257","2842914252"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12623132M","cover_i":3140355,"publisher":["Breal"],"author_key":["OL3965162A"],"author_name":["Frédéric Le Blay"],"id_goodreads":["3300816"],"id_librarything":["2815463"],"publisher_facet":["Breal"],"_version_":1697074596115644400,"author_facet":["OL3965162A Frédéric Le Blay"]}
{"key":"/works/OL10000174W","text":["/works/OL10000174W","Raymond Queneau","Raymond Queneau ","Les Fleurs bleues","OL12623133M","9782842914264","2842914260","Breal","OL3965163A","Corinne Francois"],"type":"work","seed":["/books/OL12623133M","/works/OL10000174W","/authors/OL3965163A"],"title":"Raymond Queneau","title_suggest":["Raymond Queneau"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623133M"],"publish_date":["August 31, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782842914264","2842914260"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12623133M","cover_i":3140356,"publisher":["Breal"],"language":["fre"],"author_key":["OL3965163A"],"author_name":["Corinne Francois"],"id_goodreads":["2824101"],"id_librarything":["9431804"],"publisher_facet":["Breal"],"_version_":1697074596045389800,"author_facet":["OL3965163A Corinne Francois"]}
{"key":"/works/OL10000175W","text":["/works/OL10000175W","Une vie, de Maupassant","OL12623134M","9782842914271","2842914279","guydemaupassantu0000bonn","Breal","OL3965164A","P. Bonneu","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL12623134M","/works/OL10000175W","/authors/OL3965164A"],"title":"Une vie, de Maupassant","title_suggest":["Une vie, de Maupassant"],"has_fulltext":true,"edition_count":1,"edition_key":["OL12623134M"],"publish_date":["April 27, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782842914271","2842914279"],"last_modified_i":1566189933,"ebook_count_i":1,"ia":["guydemaupassantu0000bonn"],"public_scan_b":false,"ia_collection_s":"inlibrary;trent_university;printdisabled;internetarchivebooks","lending_edition_s":"OL12623134M","lending_identifier_s":"guydemaupassantu0000bonn","printdisabled_s":"OL12623134M","cover_edition_key":"OL12623134M","cover_i":3140357,"publisher":["Breal"],"language":["fre"],"author_key":["OL3965164A"],"author_name":["P. Bonneu"],"subject":["Accessible book","Protected DAISY"],"ia_box_id":["IA1561108"],"publisher_facet":["Breal"],"subject_facet":["Accessible book","Protected DAISY"],"_version_":1697074595325018000,"author_facet":["OL3965164A P. Bonneu"],"subject_key":["accessible_book","protected_daisy"]}
{"key":"/works/OL10000176W","text":["/works/OL10000176W","Le Jeu de l'amour et du Hasard, de Marivaux","OL12623135M","9782842914295","2842914295","Breal","OL3965165A","E. Negrel"],"type":"work","seed":["/books/OL12623135M","/works/OL10000176W","/authors/OL3965165A"],"title":"Le Jeu de l'amour et du Hasard, de Marivaux","title_suggest":["Le Jeu de l'amour et du Hasard, de Marivaux"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623135M"],"publish_date":["April 27, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782842914295","2842914295"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623135M","cover_i":3140358,"publisher":["Breal"],"language":["fre"],"author_key":["OL3965165A"],"author_name":["E. Negrel"],"id_goodreads":["316063"],"publisher_facet":["Breal"],"_version_":1697074596543463400,"author_facet":["OL3965165A E. Negrel"]}
{"key":"/works/OL10000177W","text":["/works/OL10000177W","L'Île des esclaves, de Marivaux","OL12623136M","9782842914301","2842914309","Breal","OL3965166A","Yen Mai Tran"],"type":"work","seed":["/books/OL12623136M","/works/OL10000177W","/authors/OL3965166A"],"title":"L'Île des esclaves, de Marivaux","title_suggest":["L'Île des esclaves, de Marivaux"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623136M"],"publish_date":["April 27, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782842914301","2842914309"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623136M","cover_i":3140359,"publisher":["Breal"],"language":["fre"],"author_key":["OL3965166A"],"author_name":["Yen Mai Tran"],"id_goodreads":["316084"],"publisher_facet":["Breal"],"_version_":1697074595515859000,"author_facet":["OL3965166A Yen Mai Tran"]}
{"key":"/works/OL10000178W","text":["/works/OL10000178W","Le Mariage de Figaro, de Beaumarchais","OL12623137M","9782842914318","2842914317","Breal","OL3965167A","S. Kefallonitis"],"type":"work","seed":["/books/OL12623137M","/works/OL10000178W","/authors/OL3965167A"],"title":"Le Mariage de Figaro, de Beaumarchais","title_suggest":["Le Mariage de Figaro, de Beaumarchais"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623137M"],"publish_date":["April 27, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782842914318","2842914317"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623137M","cover_i":3140360,"publisher":["Breal"],"language":["fre"],"author_key":["OL3965167A"],"author_name":["S. Kefallonitis"],"id_goodreads":["220095"],"publisher_facet":["Breal"],"_version_":1697074595930046500,"author_facet":["OL3965167A S. Kefallonitis"]}
{"key":"/works/OL10000179W","text":["/works/OL10000179W","Turcaret, de Lesage","OL12623139M","2842914333","9782842914332","Breal","OL3965168A","Stavroula Kefallonitis"],"type":"work","seed":["/books/OL12623139M","/works/OL10000179W","/authors/OL3965168A"],"title":"Turcaret, de Lesage","title_suggest":["Turcaret, de Lesage"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623139M"],"publish_date":["September 1, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["2842914333","9782842914332"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623139M","cover_i":3140362,"publisher":["Breal"],"language":["fre"],"author_key":["OL3965168A"],"author_name":["Stavroula Kefallonitis"],"id_goodreads":["316039"],"publisher_facet":["Breal"],"_version_":1697074596286562300,"author_facet":["OL3965168A Stavroula Kefallonitis"]}
{"key":"/works/OL1000017W","text":["/works/OL1000017W","Texas Vigilante","OL7520098M","42451357","9780440234555","0440234557","texasvigilante00crid","Dell","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Revenge","Fiction","Brothers and sisters","Women ranchers","Fugitives from justice","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL7520098M","/works/OL1000017W","/subjects/revenge","/subjects/fiction","/subjects/brothers_and_sisters","/subjects/women_ranchers","/subjects/fugitives_from_justice","/authors/OL92934A"],"title":"Texas Vigilante","title_suggest":["Texas Vigilante"],"has_fulltext":true,"edition_count":1,"edition_key":["OL7520098M"],"publish_date":["September 7, 1999"],"publish_year":[1999],"first_publish_year":1999,"oclc":["42451357"],"isbn":["9780440234555","0440234557"],"last_modified_i":1600024378,"ebook_count_i":1,"ia":["texasvigilante00crid"],"public_scan_b":false,"ia_collection_s":"china;inlibrary;printdisabled;internetarchivebooks;fav-gschifini","lending_edition_s":"OL7520098M","lending_identifier_s":"texasvigilante00crid","printdisabled_s":"OL7520098M","cover_edition_key":"OL7520098M","cover_i":281322,"publisher":["Dell"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"subject":["Revenge","Fiction","Brothers and sisters","Women ranchers","Fugitives from justice","Accessible book","Protected DAISY"],"id_librarything":["6862182"],"ia_box_id":["IA1162812"],"publisher_facet":["Dell"],"subject_facet":["Accessible book","Brothers and sisters","Fiction","Fugitives from justice","Protected DAISY","Revenge","Women ranchers"],"_version_":1697074596539269000,"author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","brothers_and_sisters","fiction","fugitives_from_justice","protected_daisy","revenge","women_ranchers"]}
{"key":"/works/OL10000180W","text":["/works/OL10000180W","Sciences économiques et sociales. Terminale ES","OL12623143M","468235052","9782842914509","2842914503","Breal","OL3965169A","B. Perconte"],"type":"work","seed":["/books/OL12623143M","/works/OL10000180W","/authors/OL3965169A"],"title":"Sciences économiques et sociales. Terminale ES","title_suggest":["Sciences économiques et sociales. Terminale ES"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623143M"],"publish_date":["April 28, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["468235052"],"isbn":["9782842914509","2842914503"],"last_modified_i":1304163346,"ebook_count_i":0,"cover_edition_key":"OL12623143M","cover_i":3140366,"publisher":["Breal"],"language":["fre"],"author_key":["OL3965169A"],"author_name":["B. Perconte"],"publisher_facet":["Breal"],"_version_":1697074596327456800,"author_facet":["OL3965169A B. Perconte"]}
{"key":"/works/OL10000181W","text":["/works/OL10000181W","Le Ventre de Paris, de Zola","OL12623147M","2842914643","9782842914646","Breal","OL3965171A","E. Lavielle"],"type":"work","seed":["/books/OL12623147M","/works/OL10000181W","/authors/OL3965171A"],"title":"Le Ventre de Paris, de Zola","title_suggest":["Le Ventre de Paris, de Zola"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623147M"],"publish_date":["April 27, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2842914643","9782842914646"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12623147M","cover_i":3140370,"publisher":["Breal"],"language":["fre"],"author_key":["OL3965171A"],"author_name":["E. Lavielle"],"id_goodreads":["751183"],"id_librarything":["9195181"],"publisher_facet":["Breal"],"_version_":1697074595719282700,"author_facet":["OL3965171A E. Lavielle"]}
{"key":"/works/OL10000182W","text":["/works/OL10000182W","L Œuvre, Emile Zola","OL12623148M","9782842914653","2842914651","zolaloeuvre0000gend","Breal","OL3965172A","Aurélie Gendrat","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL12623148M","/works/OL10000182W","/authors/OL3965172A"],"title":"L Œuvre, Emile Zola","title_suggest":["L Œuvre, Emile Zola"],"has_fulltext":true,"edition_count":1,"edition_key":["OL12623148M"],"publish_date":["July 1, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782842914653","2842914651"],"last_modified_i":1566294600,"ebook_count_i":1,"ia":["zolaloeuvre0000gend"],"public_scan_b":false,"ia_collection_s":"inlibrary;printdisabled;trent_university;internetarchivebooks;fav-sallocinia","lending_edition_s":"OL12623148M","lending_identifier_s":"zolaloeuvre0000gend","printdisabled_s":"OL12623148M","cover_edition_key":"OL12623148M","cover_i":3140371,"publisher":["Breal"],"language":["fre"],"author_key":["OL3965172A"],"author_name":["Aurélie Gendrat"],"subject":["Accessible book","Protected DAISY"],"id_goodreads":["1367091"],"ia_box_id":["IA1587005"],"publisher_facet":["Breal"],"subject_facet":["Accessible book","Protected DAISY"],"_version_":1697074595573530600,"author_facet":["OL3965172A Aurélie Gendrat"],"subject_key":["accessible_book","protected_daisy"]}
{"key":"/works/OL10000183W","text":["/works/OL10000183W","Droit civil","Biens  et obligations.","OL17524405M","2853948218","9782853948210","Bréal","OL3965173A","Isabelle Bufflier"],"type":"work","seed":["/books/OL17524405M","/works/OL10000183W","/authors/OL3965173A"],"title":"Droit civil","title_suggest":["Droit civil"],"has_fulltext":false,"edition_count":1,"edition_key":["OL17524405M"],"publish_date":["1996"],"publish_year":[1996],"first_publish_year":1996,"publish_place":["Paris"],"isbn":["2853948218","9782853948210"],"last_modified_i":1260850689,"ebook_count_i":0,"publisher":["Bréal"],"language":["fre"],"author_key":["OL3965173A"],"author_name":["Isabelle Bufflier"],"publisher_facet":["Bréal"],"_version_":1697074595674194000,"author_facet":["OL3965173A Isabelle Bufflier"]}
{"key":"/works/OL10000184W","text":["/works/OL10000184W","Sciences de la vie et de la Terre, 2de","OL12623152M","2842915224","9782842915223","Bréal","OL3965175A","M. Ponceblanc"],"type":"work","seed":["/books/OL12623152M","/works/OL10000184W","/authors/OL3965175A"],"title":"Sciences de la vie et de la Terre, 2de","title_suggest":["Sciences de la vie et de la Terre, 2de"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623152M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2842915224","9782842915223"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623152M","cover_i":3140375,"publisher":["Bréal"],"language":["fre"],"author_key":["OL3965175A"],"author_name":["M. Ponceblanc"],"publisher_facet":["Bréal"],"_version_":1697074596314873900,"author_facet":["OL3965175A M. Ponceblanc"]}
{"key":"/works/OL10000185W","text":["/works/OL10000185W","Sciences Eco Et Sociales Seconde","OL12623153M","9782842915247","2842915240","Distribooks Inc","OL3965176A","Hervelin Bouchoux"],"type":"work","seed":["/books/OL12623153M","/works/OL10000185W","/authors/OL3965176A"],"title":"Sciences Eco Et Sociales Seconde","title_suggest":["Sciences Eco Et Sociales Seconde"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623153M"],"publish_date":["June 30, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782842915247","2842915240"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623153M","cover_i":3140376,"publisher":["Distribooks Inc"],"language":["fre"],"author_key":["OL3965176A"],"author_name":["Hervelin Bouchoux"],"publisher_facet":["Distribooks Inc"],"_version_":1697074595999252500,"author_facet":["OL3965176A Hervelin Bouchoux"]}
{"key":"/works/OL10000186W","text":["/works/OL10000186W","La France","OL12623155M","2842915380","9782842915384","European Schoolbooks","OL3965179A","Cleach"],"type":"work","seed":["/books/OL12623155M","/works/OL10000186W","/authors/OL3965179A"],"title":"La France","title_suggest":["La France"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623155M"],"publish_date":["2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2842915380","9782842915384"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623155M","cover_i":3140378,"publisher":["European Schoolbooks"],"language":["fre"],"author_key":["OL3965179A"],"author_name":["Cleach"],"id_goodreads":["3528465"],"publisher_facet":["European Schoolbooks"],"_version_":1697074596473208800,"author_facet":["OL3965179A Cleach"]}
{"key":"/works/OL10000187W","text":["/works/OL10000187W","Analyse, tome 2","OL12623159M","9782842915438","2842915437","Bréal","OL3965183A","Danielle Degrave"],"type":"work","seed":["/books/OL12623159M","/works/OL10000187W","/authors/OL3965183A"],"title":"Analyse, tome 2","title_suggest":["Analyse, tome 2"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623159M"],"publish_date":["September 4, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782842915438","2842915437"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623159M","cover_i":3140382,"publisher":["Bréal"],"language":["fre"],"author_key":["OL3965183A"],"author_name":["Danielle Degrave"],"publisher_facet":["Bréal"],"_version_":1697074596132421600,"author_facet":["OL3965183A Danielle Degrave"]}
{"key":"/works/OL10000188W","text":["/works/OL10000188W","Désert, Jean-Marie Gustave Le Clézio","OL12623169M","9782842915803","2842915801","Bréal","OL3965186A","Corrine François"],"type":"work","seed":["/books/OL12623169M","/works/OL10000188W","/authors/OL3965186A"],"title":"Désert, Jean-Marie Gustave Le Clézio","title_suggest":["Désert, Jean-Marie Gustave Le Clézio"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623169M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782842915803","2842915801"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12623169M","cover_i":3140392,"publisher":["Bréal"],"language":["fre"],"author_key":["OL3965186A"],"author_name":["Corrine François"],"id_goodreads":["1810870"],"id_librarything":["6361428"],"publisher_facet":["Bréal"],"_version_":1697074595859792000,"author_facet":["OL3965186A Corrine François"]}
{"key":"/works/OL10000189W","text":["/works/OL10000189W","Ethique et violence","critique de la vie pacifiée","OL19414717M","Valérie Marange.","2002406803","9782747515733","2747515737","L'Harmattan","OL3965188A","Valérie Marange","Violence","Moral and ethical aspects","Philosophy","Moral and ethical aspects of Violence"],"type":"work","seed":["/books/OL19414717M","/works/OL10000189W","/subjects/violence","/subjects/moral_and_ethical_aspects","/subjects/philosophy","/subjects/moral_and_ethical_aspects_of_violence","/authors/OL3965188A"],"title":"Ethique et violence","title_suggest":["Ethique et violence"],"has_fulltext":false,"edition_count":1,"edition_key":["OL19414717M"],"publish_date":["2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2002406803"],"publish_place":["Paris"],"lcc":["HM-1116.00000000.M37 2001"],"ddc":["303.601"],"isbn":["9782747515733","2747515737"],"last_modified_i":1607320962,"ebook_count_i":0,"publisher":["L'Harmattan"],"language":["fre"],"author_key":["OL3965188A"],"author_name":["Valérie Marange"],"subject":["Violence","Moral and ethical aspects","Philosophy","Moral and ethical aspects of Violence"],"publisher_facet":["L'Harmattan"],"subject_facet":["Moral and ethical aspects","Moral and ethical aspects of Violence","Philosophy","Violence"],"_version_":1697074596599038000,"lcc_sort":"HM-1116.00000000.M37 2001","author_facet":["OL3965188A Valérie Marange"],"subject_key":["moral_and_ethical_aspects","moral_and_ethical_aspects_of_violence","philosophy","violence"],"ddc_sort":"303.601"}
{"key":"/works/OL1000018W","text":["/works/OL1000018W","A vampire named Fred","OL2195053M","by Bill Crider.","89014524","20357753","9780936650111","0936650117","Maggie Books","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Vampires","Fiction"],"type":"work","seed":["/books/OL2195053M","/works/OL1000018W","/subjects/vampires","/subjects/fiction","/authors/OL92934A"],"title":"A vampire named Fred","title_suggest":["A vampire named Fred"],"has_fulltext":false,"edition_count":1,"edition_key":["OL2195053M"],"publish_date":["1990"],"publish_year":[1990],"first_publish_year":1990,"lccn":["89014524"],"publish_place":["Lufkin, TX"],"oclc":["20357753"],"lcc":["PZ-0007.00000000.C86925 Vam 1990"],"ddc":["[Fic]"],"isbn":["9780936650111","0936650117"],"last_modified_i":1604903761,"ebook_count_i":0,"publisher":["Maggie Books"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"subject":["Vampires","Fiction"],"id_goodreads":["5404160"],"id_librarything":["4574113"],"publisher_facet":["Maggie Books"],"subject_facet":["Fiction","Vampires"],"_version_":1697074596014981000,"lcc_sort":"PZ-0007.00000000.C86925 Vam 1990","author_facet":["OL92934A Bill Crider"],"subject_key":["fiction","vampires"],"ddc_sort":"[Fic]"}
{"key":"/works/OL10000190W","text":["/works/OL10000190W","La bioéthique","bioéthique","OL19027165M","Valérie Marange.","2501028783","9782501028783","Marabout","\"Le Monde\" éd.","OL3965188A","Valérie Marange","Bioéthique"],"type":"work","seed":["/books/OL19027165M","/works/OL10000190W","/subjects/bioéthique","/authors/OL3965188A"],"title":"La bioéthique","title_suggest":["La bioéthique"],"has_fulltext":false,"edition_count":1,"edition_key":["OL19027165M"],"publish_date":["1998"],"publish_year":[1998],"first_publish_year":1998,"publish_place":["[Alleur (Belgique)]","[Paris]"],"ddc":["610"],"isbn":["2501028783","9782501028783"],"last_modified_i":1279636588,"ebook_count_i":0,"publisher":["Marabout","\"Le Monde\" éd."],"language":["fre"],"author_key":["OL3965188A"],"author_name":["Valérie Marange"],"subject":["Bioéthique"],"publisher_facet":["\"Le Monde\" éd.","Marabout"],"subject_facet":["Bioéthique"],"_version_":1697074596378837000,"author_facet":["OL3965188A Valérie Marange"],"subject_key":["bioéthique"],"ddc_sort":"610"}
{"key":"/works/OL10000191W","text":["/works/OL10000191W","Actualités scientifiques et techniques en IAA, numéro 25. La fumaison de la viande et des produits carnés","OL12650401M","45559177","2906603260","9782906603264","Cdiupa Cerdia","OL3965189A","Talon"],"type":"work","seed":["/books/OL12650401M","/works/OL10000191W","/authors/OL3965189A"],"title":"Actualités scientifiques et techniques en IAA, numéro 25. La fumaison de la viande et des produits carnés","title_suggest":["Actualités scientifiques et techniques en IAA, numéro 25. La fumaison de la viande et des produits carnés"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12650401M"],"publish_date":["January 1, 1980"],"publish_year":[1980],"first_publish_year":1980,"oclc":["45559177"],"isbn":["2906603260","9782906603264"],"last_modified_i":1307528041,"ebook_count_i":0,"publisher":["Cdiupa Cerdia"],"language":["fre"],"author_key":["OL3965189A"],"author_name":["Talon"],"publisher_facet":["Cdiupa Cerdia"],"_version_":1697074595934240800,"author_facet":["OL3965189A Talon"]}
{"key":"/works/OL10000192W","text":["/works/OL10000192W","Les Relations entre le monde arabo-musulman et le monde latin","milieu du Xe-milieu du XIIe siècle","OL12623171M","2842916042","9782842916046","Bréal","OL3965189A","Talon"],"type":"work","seed":["/books/OL12623171M","/works/OL10000192W","/authors/OL3965189A"],"title":"Les Relations entre le monde arabo-musulman et le monde latin","title_suggest":["Les Relations entre le monde arabo-musulman et le monde latin"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623171M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2842916042","9782842916046"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623171M","cover_i":3140394,"publisher":["Bréal"],"author_key":["OL3965189A"],"author_name":["Talon"],"publisher_facet":["Bréal"],"_version_":1697074596221550600,"author_facet":["OL3965189A Talon"]}
{"key":"/works/OL10000193W","text":["/works/OL10000193W","La France en fiches","France en fiches","OL17335860M","OL16355702M","Bernard Braun, Francis Collignon.","54452472","Collignon, Francis.","9782842910259","2842910257","9782749501321","2749501326","Breal","Bréal","OL3965194A","Bernard Braun"],"type":"work","seed":["/books/OL17335860M","/books/OL16355702M","/works/OL10000193W","/authors/OL3965194A"],"title":"La France en fiches","title_suggest":["La France en fiches"],"has_fulltext":false,"edition_count":2,"edition_key":["OL17335860M","OL16355702M"],"publish_date":["2003","1997"],"publish_year":[2003,1997],"first_publish_year":1997,"publish_place":["Rosny"],"oclc":["54452472"],"contributor":["Collignon, Francis."],"isbn":["9782842910259","2842910257","9782749501321","2749501326"],"last_modified_i":1304101406,"ebook_count_i":0,"publisher":["Breal","Bréal"],"language":["fre"],"author_key":["OL3965194A"],"author_name":["Bernard Braun"],"id_librarything":["8023371"],"publisher_facet":["Breal","Bréal"],"_version_":1697074596465868800,"author_facet":["OL3965194A Bernard Braun"]}
{"key":"/works/OL10000194W","text":["/works/OL10000194W","Información y turismo","les bagages indispensables","OL22153140M","Pascal Poutet.","9782729817701","2729817700","Ellipses","OL3965196A","Pascal Poutet","Espagnol (Langue)","Vocabulaires et manuels de conversation pour le personnel du tourisme"],"type":"work","seed":["/books/OL22153140M","/works/OL10000194W","/subjects/espagnol_(langue)","/subjects/vocabulaires_et_manuels_de_conversation_pour_le_personnel_du_tourisme","/authors/OL3965196A"],"title":"Información y turismo","title_suggest":["Información y turismo"],"has_fulltext":false,"edition_count":1,"edition_key":["OL22153140M"],"publish_date":["2004"],"publish_year":[2004],"first_publish_year":2004,"publish_place":["Paris"],"isbn":["9782729817701","2729817700"],"last_modified_i":1279636588,"ebook_count_i":0,"publisher":["Ellipses"],"language":["fre"],"author_key":["OL3965196A"],"author_name":["Pascal Poutet"],"subject":["Espagnol (Langue)","Vocabulaires et manuels de conversation pour le personnel du tourisme"],"publisher_facet":["Ellipses"],"subject_facet":["Espagnol (Langue)","Vocabulaires et manuels de conversation pour le personnel du tourisme"],"_version_":1697074596386177000,"author_facet":["OL3965196A Pascal Poutet"],"subject_key":["espagnol_(langue)","vocabulaires_et_manuels_de_conversation_pour_le_personnel_du_tourisme"]}
{"key":"/works/OL10000195W","text":["/works/OL10000195W","Le monde hispanique contemporain : mémento de civilisation bilingue = El Mundo Hispanico Contemporaneo","Le monde hispanique contemporain : mémento de civilisation bilingue = El Mundo Hispanico Contemporaneo ","classes préparatoires, premier cycle universitaire","OL12623178M","9782842916473","2842916476","Bréal","OL3965196A","Pascal Poutet"],"type":"work","seed":["/books/OL12623178M","/works/OL10000195W","/authors/OL3965196A"],"title":"Le monde hispanique contemporain : mémento de civilisation bilingue = El Mundo Hispanico Contemporaneo","title_suggest":["Le monde hispanique contemporain : mémento de civilisation bilingue = El Mundo Hispanico Contemporaneo"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623178M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782842916473","2842916476"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623178M","cover_i":3140401,"publisher":["Bréal"],"author_key":["OL3965196A"],"author_name":["Pascal Poutet"],"publisher_facet":["Bréal"],"_version_":1697074595870277600,"author_facet":["OL3965196A Pascal Poutet"]}
{"key":"/works/OL10000196W","text":["/works/OL10000196W","Les mots-clés de l'économie","OL12630529M","36118983","2853948064","9782853948067","Breal","OL3965197A","Joëlle Rouanet-Laplace","Joëlle Rouanet-Laplace"],"type":"work","seed":["/books/OL12630529M","/works/OL10000196W","/authors/OL3965197A"],"title":"Les mots-clés de l'économie","title_suggest":["Les mots-clés de l'économie"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12630529M"],"publish_date":["January 1, 1996"],"publish_year":[1996],"first_publish_year":1996,"oclc":["36118983"],"isbn":["2853948064","9782853948067"],"last_modified_i":1303741556,"ebook_count_i":0,"cover_edition_key":"OL12630529M","cover_i":3146541,"publisher":["Breal"],"author_key":["OL3965197A"],"author_name":["Joëlle Rouanet-Laplace"],"author_alternative_name":["Joëlle Rouanet-Laplace"],"publisher_facet":["Breal"],"_version_":1697074596355768300,"author_facet":["OL3965197A Joëlle Rouanet-Laplace"]}
{"key":"/works/OL10000197W","text":["/works/OL10000197W","Les Mots-clés du tourisme","Les Mots-clés du tourisme ","BTS, IUT, DEUG, formations tertiaires, cadres d'entreprises","OL12623179M","9782842916480","2842916484","Bréal","OL3965197A","Joëlle Rouanet-Laplace","Joëlle Rouanet-Laplace"],"type":"work","seed":["/books/OL12623179M","/works/OL10000197W","/authors/OL3965197A"],"title":"Les Mots-clés du tourisme","title_suggest":["Les Mots-clés du tourisme"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623179M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782842916480","2842916484"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623179M","cover_i":3140402,"publisher":["Bréal"],"language":["fre"],"author_key":["OL3965197A"],"author_name":["Joëlle Rouanet-Laplace"],"author_alternative_name":["Joëlle Rouanet-Laplace"],"publisher_facet":["Bréal"],"_version_":1697074596241473500,"author_facet":["OL3965197A Joëlle Rouanet-Laplace"]}
{"key":"/works/OL10000198M","text":["/works/OL10000198M","Parliamentary Debates Fifth Series","House of Lords Officail Report","OL10000198M","9780107806040","0107806045","Stationery Office"],"type":"work","seed":["/books/OL10000198M","/works/OL10000198M"],"title":"Parliamentary Debates Fifth Series","title_suggest":["Parliamentary Debates Fifth Series"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000198M"],"publish_date":["July 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9780107806040","0107806045"],"last_modified_i":1618493947,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"publisher_facet":["Stationery Office"],"_version_":1697113913108201500}
{"key":"/works/OL10000198W","text":["/works/OL10000198W","L'Allemagne contemporaine, 1er cycle universitaire","OL12623182M","9782842916541","2842916549","Bréal","OL3965199A","Jacques Loisy"],"type":"work","seed":["/books/OL12623182M","/works/OL10000198W","/authors/OL3965199A"],"title":"L'Allemagne contemporaine, 1er cycle universitaire","title_suggest":["L'Allemagne contemporaine, 1er cycle universitaire"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623182M"],"publish_date":["July 31, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782842916541","2842916549"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623182M","cover_i":3140405,"publisher":["Bréal"],"language":["fre"],"author_key":["OL3965199A"],"author_name":["Jacques Loisy"],"publisher_facet":["Bréal"],"_version_":1697074596423925800,"author_facet":["OL3965199A Jacques Loisy"]}
{"key":"/works/OL10000199W","text":["/works/OL10000199W","Paroles, Jacques Prévert","OL12623183M","2842917022","9782842917029","Bréal","OL3965200A","Corinne François"],"type":"work","seed":["/books/OL12623183M","/works/OL10000199W","/authors/OL3965200A"],"title":"Paroles, Jacques Prévert","title_suggest":["Paroles, Jacques Prévert"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623183M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2842917022","9782842917029"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12623183M","cover_i":3140406,"publisher":["Bréal"],"author_key":["OL3965200A"],"author_name":["Corinne François"],"id_goodreads":["481587"],"id_librarything":["4075194"],"publisher_facet":["Bréal"],"_version_":1697074595498033200,"author_facet":["OL3965200A Corinne François"]}
{"key":"/works/OL1000019W","text":["/works/OL1000019W","White House Horrors","OL7951373M","56091446","Martin Greenberg (Editor)","9780743487313","0743487311","whitehousehorror0000unse","I Books","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Presidents","White House (Washington, D.C.)","American Horror tales","Fiction","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL7951373M","/works/OL1000019W","/subjects/presidents","/subjects/white_house_(washington_d.c.)","/subjects/american_horror_tales","/subjects/fiction","/authors/OL92934A"],"title":"White House Horrors","title_suggest":["White House Horrors"],"has_fulltext":true,"edition_count":1,"edition_key":["OL7951373M"],"publish_date":["July 27, 2004"],"publish_year":[2004],"first_publish_year":2004,"oclc":["56091446"],"contributor":["Martin Greenberg (Editor)"],"isbn":["9780743487313","0743487311"],"last_modified_i":1542432939,"ebook_count_i":1,"ia":["whitehousehorror0000unse"],"public_scan_b":false,"ia_collection_s":"china;fav-wasserperson;fav-kanaia;fav-shieldmaiden1298;fav-partyapocalypse;inlibrary;printdisabled;internetarchivebooks;fav-bfc123","lending_edition_s":"OL7951373M","lending_identifier_s":"whitehousehorror0000unse","printdisabled_s":"OL7951373M","cover_edition_key":"OL7951373M","cover_i":479070,"publisher":["I Books"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"subject":["Presidents","White House (Washington, D.C.)","American Horror tales","Fiction","Accessible book","Protected DAISY"],"id_goodreads":["2384260"],"id_librarything":["337233"],"ia_box_id":["IA1399609"],"publisher_facet":["I Books"],"subject_facet":["Accessible book","American Horror tales","Fiction","Presidents","Protected DAISY","White House (Washington, D.C.)"],"_version_":1697074595522150400,"author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","american_horror_tales","fiction","presidents","protected_daisy","white_house_(washington_d.c.)"]}
{"key":"/works/OL100001W","text":["/works/OL100001W","Death in blue folders","Death in blue folders.","OL2858519M","OL21271390M","OL23269465M","Margaret Maron.","84021190","19922644","11289794","9780385198080","0553294989","9780553294989","0747232105","9780747232100","0385198086","deathinbluefolde00maro","Headline","Bantam Books","Published for the Crime Club by Doubleday","OL3326443A","Margaret Maron","Margaret Maron","Maron, Margaret","MARGARET MARON","New York (State)","New York (N.Y.)","New York","Police","Fiction","Sigrid Harald (Fictitious character)","Policewomen","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL2858519M","/books/OL21271390M","/books/OL23269465M","/works/OL100001W","/subjects/police","/subjects/fiction","/subjects/sigrid_harald_(fictitious_character)","/subjects/policewomen","/subjects/place:new_york_(state)","/subjects/place:new_york_(n.y.)","/subjects/place:new_york","/authors/OL3326443A"],"title":"Death in blue folders","title_suggest":["Death in blue folders"],"has_fulltext":true,"edition_count":3,"edition_key":["OL2858519M","OL21271390M","OL23269465M"],"publish_date":["1992","1989","1985"],"publish_year":[1985,1992,1989],"first_publish_year":1985,"lccn":["84021190"],"publish_place":["New York","Garden City, N.Y"],"oclc":["19922644","11289794"],"lcc":["PS-3563.00000000.A679 D38 1985"],"ddc":["813.54"],"isbn":["9780385198080","0553294989","9780553294989","0747232105","9780747232100","0385198086"],"last_modified_i":1604085760,"ebook_count_i":1,"ia":["deathinbluefolde00maro"],"public_scan_b":false,"ia_collection_s":"china;inlibrary;printdisabled;fav-lindsayross;internetarchivebooks;fav-ianh69","lending_edition_s":"OL21271390M","lending_identifier_s":"deathinbluefolde00maro","printdisabled_s":"OL21271390M","cover_edition_key":"OL21271390M","cover_i":7072022,"publisher":["Headline","Bantam Books","Published for the Crime Club by Doubleday"],"language":["eng"],"author_key":["OL3326443A"],"author_name":["Margaret Maron"],"author_alternative_name":["Margaret Maron","Maron, Margaret","MARGARET MARON"],"place":["New York (State)","New York (N.Y.)","New York"],"subject":["Police","Fiction","Sigrid Harald (Fictitious character)","Policewomen","Accessible book","Protected DAISY"],"id_goodreads":["1613742","880442","1805145"],"id_librarything":["1072690"],"ia_loaded_id":["deathinbluefolde00maro"],"ia_box_id":["IA170601"],"publisher_facet":["Bantam Books","Headline","Published for the Crime Club by Doubleday"],"place_key":["new_york","new_york_(n.y.)","new_york_(state)"],"subject_facet":["Accessible book","Fiction","Police","Policewomen","Protected DAISY","Sigrid Harald (Fictitious character)"],"_version_":1697074596454334500,"place_facet":["New York","New York (N.Y.)","New York (State)"],"lcc_sort":"PS-3563.00000000.A679 D38 1985","author_facet":["OL3326443A Margaret Maron"],"subject_key":["accessible_book","fiction","police","policewomen","protected_daisy","sigrid_harald_(fictitious_character)"],"ddc_sort":"813.54"}
{"key":"/works/OL10000200W","text":["/works/OL10000200W","Analyse economique et histoire des societes contemporaines","OL12630541M","98195746","2853948978","9782853948975","Breal","OL3965201A","Marc Montousse","Economics"],"type":"work","seed":["/books/OL12630541M","/works/OL10000200W","/subjects/economics","/authors/OL3965201A"],"title":"Analyse economique et histoire des societes contemporaines","title_suggest":["Analyse economique et histoire des societes contemporaines"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12630541M"],"publish_date":["1996"],"publish_year":[1996],"first_publish_year":1996,"lccn":["98195746"],"lcc":["HB-0173.00000000.L786 1996"],"isbn":["2853948978","9782853948975"],"last_modified_i":1606660417,"ebook_count_i":0,"cover_edition_key":"OL12630541M","cover_i":3146553,"publisher":["Breal"],"language":["fre"],"author_key":["OL3965201A"],"author_name":["Marc Montousse"],"subject":["Economics"],"id_goodreads":["7256397"],"publisher_facet":["Breal"],"subject_facet":["Economics"],"_version_":1697074596165976000,"lcc_sort":"HB-0173.00000000.L786 1996","author_facet":["OL3965201A Marc Montousse"],"subject_key":["economics"]}
{"key":"/works/OL10000201W","text":["/works/OL10000201W","Économie internationale","faits, théories, débats contemporains","OL22234355M","Arcangelo Figliuzzi.","2729826351","9782729826352","Ellipses","OL3965202A","Arcangelo Figliuzzi","Commerce international","Relations économiques internationales","Histoire économique","20e siècle"],"type":"work","seed":["/books/OL22234355M","/works/OL10000201W","/subjects/commerce_international","/subjects/relations_économiques_internationales","/subjects/histoire_économique","/subjects/time:20e_siècle","/authors/OL3965202A"],"title":"Économie internationale","title_suggest":["Économie internationale"],"has_fulltext":false,"edition_count":1,"edition_key":["OL22234355M"],"publish_date":["2006"],"publish_year":[2006],"first_publish_year":2006,"publish_place":["Paris"],"isbn":["2729826351","9782729826352"],"last_modified_i":1279636588,"ebook_count_i":0,"publisher":["Ellipses"],"language":["fre"],"author_key":["OL3965202A"],"author_name":["Arcangelo Figliuzzi"],"subject":["Commerce international","Relations économiques internationales","Histoire économique"],"time":["20e siècle"],"publisher_facet":["Ellipses"],"time_facet":["20e siècle"],"subject_facet":["Commerce international","Histoire économique","Relations économiques internationales"],"_version_":1697074596670341000,"author_facet":["OL3965202A Arcangelo Figliuzzi"],"subject_key":["commerce_international","histoire_économique","relations_économiques_internationales"],"time_key":["20e_siècle"]}
{"key":"/works/OL10000202W","text":["/works/OL10000202W","Stratégies publicitaires","de l'étude marketing au choix des médias et des techniques hors médias","de l'étude mercatique au choix des médias","OL20448429M","OL22139012M","Luc Marcenac, Alain Milon, Serge-Henri Saint-Michel.","L. Marcenac, A. Milon, S.-H. Saint-Michel.","Saint-Michel, Serge-Henri.","Milon, Alain.","Saint-Michel, Serge-Henri","Milon, Alain","9782842919177","9782853947343","2853947343","2842919173","Bréal","Bréal éditions","OL3965203A","Luc Marcenac","France","Campagnes publicitaires","Plans médias","Publicité","Études de marché","Médias"],"type":"work","seed":["/books/OL20448429M","/books/OL22139012M","/works/OL10000202W","/subjects/campagnes_publicitaires","/subjects/plans_médias","/subjects/publicité","/subjects/études_de_marché","/subjects/médias","/subjects/place:france","/authors/OL3965203A"],"title":"Stratégies publicitaires","title_suggest":["Stratégies publicitaires"],"has_fulltext":false,"edition_count":2,"edition_key":["OL20448429M","OL22139012M"],"publish_date":["1994","2002"],"publish_year":[1994,2002],"first_publish_year":1994,"publish_place":["Paris","Rosny"],"contributor":["Saint-Michel, Serge-Henri.","Milon, Alain.","Saint-Michel, Serge-Henri","Milon, Alain"],"isbn":["9782842919177","9782853947343","2853947343","2842919173"],"last_modified_i":1279636588,"ebook_count_i":0,"publisher":["Bréal","Bréal éditions"],"language":["fre"],"author_key":["OL3965203A"],"author_name":["Luc Marcenac"],"place":["France"],"subject":["Campagnes publicitaires","Plans médias","Publicité","Études de marché","Médias"],"id_goodreads":["4179745"],"publisher_facet":["Bréal","Bréal éditions"],"place_key":["france"],"subject_facet":["Campagnes publicitaires","Médias","Plans médias","Publicité","Études de marché"],"_version_":1697074596038049800,"place_facet":["France"],"author_facet":["OL3965203A Luc Marcenac"],"subject_key":["campagnes_publicitaires","médias","plans_médias","publicité","études_de_marché"]}
{"key":"/works/OL10000203W","text":["/works/OL10000203W","Maurice Blanchot, le principe de fiction","OL12623191M","2842920627","9782842920623","Presses Universitaires de Vincennes (PUV)","OL3965207A","M.-L. Hurault"],"type":"work","seed":["/books/OL12623191M","/works/OL10000203W","/authors/OL3965207A"],"title":"Maurice Blanchot, le principe de fiction","title_suggest":["Maurice Blanchot, le principe de fiction"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623191M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2842920627","9782842920623"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12623191M","cover_i":3140414,"publisher":["Presses Universitaires de Vincennes (PUV)"],"language":["fre"],"author_key":["OL3965207A"],"author_name":["M.-L. Hurault"],"id_goodreads":["233368"],"id_librarything":["2719855"],"publisher_facet":["Presses Universitaires de Vincennes (PUV)"],"_version_":1697074596321165300,"author_facet":["OL3965207A M.-L. Hurault"]}
{"key":"/works/OL10000204W","text":["/works/OL10000204W","De l'éloge à l'exclusion, les femmes auteurs et leurs préfaciers au XIXe siècle","De l'éloge à l'exclusion, les femmes auteurs et leurs préfaciers au XIXe siècle.","OL12623193M","2842920708","9782842920708","Presses Universitaires de Vincennes (PUV)","OL3965209A","Michel Sauve"],"type":"work","seed":["/books/OL12623193M","/works/OL10000204W","/authors/OL3965209A"],"title":"De l'éloge à l'exclusion, les femmes auteurs et leurs préfaciers au XIXe siècle","title_suggest":["De l'éloge à l'exclusion, les femmes auteurs et leurs préfaciers au XIXe siècle"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623193M"],"publish_date":["February 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2842920708","9782842920708"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623193M","cover_i":3140416,"publisher":["Presses Universitaires de Vincennes (PUV)"],"language":["fre"],"author_key":["OL3965209A"],"author_name":["Michel Sauve"],"publisher_facet":["Presses Universitaires de Vincennes (PUV)"],"_version_":1697074596353671200,"author_facet":["OL3965209A Michel Sauve"]}
{"key":"/works/OL10000205W","text":["/works/OL10000205W","Cours de grammaire descriptive de l'italien","OL19046798M","par Jacqueline Brunet.","Université de Paris VIII: Vincennes. Centre expérimental","Centre de documentation universitaire","OL3965210A","Jacqueline Brunet","Grammar","Italian language","1950-"],"type":"work","seed":["/books/OL19046798M","/works/OL10000205W","/subjects/grammar","/subjects/italian_language","/subjects/time:1950-","/authors/OL3965210A"],"title":"Cours de grammaire descriptive de l'italien","title_suggest":["Cours de grammaire descriptive de l'italien"],"has_fulltext":false,"edition_count":1,"edition_key":["OL19046798M"],"publish_date":["1969"],"publish_year":[1969],"first_publish_year":1969,"publish_place":["Paris"],"contributor":["Université de Paris VIII: Vincennes. Centre expérimental"],"lcc":["PC-1105.00000000.B7"],"last_modified_i":1282105006,"ebook_count_i":0,"publisher":["Centre de documentation universitaire"],"language":["fre"],"author_key":["OL3965210A"],"author_name":["Jacqueline Brunet"],"subject":["Grammar","Italian language"],"time":["1950-"],"publisher_facet":["Centre de documentation universitaire"],"time_facet":["1950-"],"subject_facet":["Grammar","Italian language"],"_version_":1697074596611620900,"lcc_sort":"PC-1105.00000000.B7","author_facet":["OL3965210A Jacqueline Brunet"],"subject_key":["grammar","italian_language"],"time_key":["1950-"]}
{"key":"/works/OL10000206W","text":["/works/OL10000206W","Grammaire critique de l'italien, volume 13","Le verbe, miettes morphologiques","Grammaire critique de l'italien, volume 13 ","OL12623195M","2009524008","2842920767","9782842920760","Presses Universitaires de Vincennes (PUV)","OL3965210A","Jacqueline Brunet","Grammar","Italian language"],"type":"work","seed":["/books/OL12623195M","/works/OL10000206W","/subjects/grammar","/subjects/italian_language","/authors/OL3965210A"],"title":"Grammaire critique de l'italien, volume 13","title_suggest":["Grammaire critique de l'italien, volume 13"],"subtitle":"Le verbe, miettes morphologiques","has_fulltext":false,"edition_count":1,"edition_key":["OL12623195M"],"publish_date":["June 15, 2000"],"publish_year":[2000],"first_publish_year":2000,"lccn":["2009524008"],"lcc":["PC-1105.00000000.B78 1978"],"isbn":["2842920767","9782842920760"],"last_modified_i":1603987642,"ebook_count_i":0,"cover_edition_key":"OL12623195M","cover_i":3140418,"publisher":["Presses Universitaires de Vincennes (PUV)"],"language":["fre"],"author_key":["OL3965210A"],"author_name":["Jacqueline Brunet"],"subject":["Grammar","Italian language"],"publisher_facet":["Presses Universitaires de Vincennes (PUV)"],"subject_facet":["Grammar","Italian language"],"_version_":1697074596365205500,"lcc_sort":"PC-1105.00000000.B78 1978","author_facet":["OL3965210A Jacqueline Brunet"],"subject_key":["grammar","italian_language"]}
{"key":"/works/OL10000207W","text":["/works/OL10000207W","Grammaire critique de l'italien","Grammaire critique de l'italien.","OL13758385M","OL23749913M","OL13950512M","OL23985922M","OL23969019M","OL22362306M","OL23915947M","OL13950513M","OL13950514M","OL13862269M","OL13862261M","OL13862262M","OL22804956M","OL15248237M","OL22804957M","OL21812343M","OL12652847M","OL18708981M","Jacqueline Brunet. 8.","Jacqueline Brunet. 1.","Jacqueline Brunet. 10-11.","Jacqueline Brunet. 2.","Jacqueline Brunet. 5.","Jacqueline Brunet. 9.","Jacqueline Brunet. 7.","Jacqueline Brunet.","Jacqueline Brunet. Vol.14, Le verbe. 2, Les subordonnées complétives.","Jacqueline Brunet. 4.","Jacqueline Brunet. 6.","Jacqueline Brunet. 3.","2009524008","Université de Paris VIII: Vincennes.","9782903981730","9782903981297","2903981299","9782903981433","290398123X","2842920767","9782910381042","9782842921835","2903981280","2842922107","2910381048","2903981132","2903981434","9782842922108","9782903981235","9782842920760","9782903981136","9782903981280","2903981736","2842921836","2842921380","9782842921385","Presses universitaires de Vincennes","Université de Paris VIII: Vincennes","Université de Paris VIII-Vincennes","Universite  de Paris VIII-Vincennes. Centre de Recherche","Université de Paris VIII-Vincennes. Centre de Recherche","Universite  de Paris VII-Vincennes.","Universite de Paris VIII-Vincennes","Université de Paris VIII-Vincennes.Centre de Recherche","Université de Paris VIII-Vincennes.Centre de Recherche","OL3965210A","Jacqueline Brunet","Italian language","Grammar","Usage","Verb","1950-"],"type":"work","seed":["/books/OL13758385M","/books/OL23749913M","/books/OL13950512M","/books/OL23985922M","/books/OL23969019M","/books/OL22362306M","/books/OL23915947M","/books/OL13950513M","/books/OL13950514M","/books/OL13862269M","/books/OL13862261M","/books/OL13862262M","/books/OL22804956M","/books/OL15248237M","/books/OL22804957M","/books/OL21812343M","/books/OL12652847M","/books/OL18708981M","/works/OL10000207W","/subjects/italian_language","/subjects/grammar","/subjects/usage","/subjects/verb","/subjects/time:1950-","/authors/OL3965210A"],"title":"Grammaire critique de l'italien","title_suggest":["Grammaire critique de l'italien"],"has_fulltext":false,"edition_count":18,"edition_key":["OL13758385M","OL23749913M","OL13950512M","OL23985922M","OL23969019M","OL22362306M","OL23915947M","OL13950513M","OL13950514M","OL13862269M","OL13862261M","OL13862262M","OL22804956M","OL15248237M","OL22804957M","OL21812343M","OL12652847M","OL18708981M"],"publish_date":["1987","2003","1982","1979","1983","1981","1986","1994","1984","1980","1978","1991"],"publish_year":[1987,2003,1982,1979,1983,1981,1986,1994,1984,1980,1978,1991],"first_publish_year":1978,"lccn":["2009524008"],"publish_place":["Paris","[Paris]"],"contributor":["Université de Paris VIII: Vincennes."],"lcc":["PC-1105.00000000.B78 1978"],"isbn":["9782903981730","9782903981297","2903981299","9782903981433","290398123X","2842920767","9782910381042","9782842921835","2903981280","2842922107","2910381048","2903981132","2903981434","9782842922108","9782903981235","9782842920760","9782903981136","9782903981280","2903981736","2842921836","2842921380","9782842921385"],"last_modified_i":1322034358,"ebook_count_i":0,"cover_edition_key":"OL12652847M","cover_i":5205198,"publisher":["Presses universitaires de Vincennes","Université de Paris VIII: Vincennes","Université de Paris VIII-Vincennes","Universite  de Paris VIII-Vincennes. Centre de Recherche","Université de Paris VIII-Vincennes. Centre de Recherche","Universite  de Paris VII-Vincennes.","Universite de Paris VIII-Vincennes","Université de Paris VIII-Vincennes.Centre de Recherche","Université de Paris VIII-Vincennes.Centre de Recherche"],"language":["mul","ita","fre"],"author_key":["OL3965210A"],"author_name":["Jacqueline Brunet"],"subject":["Italian language","Grammar","Usage","Verb"],"time":["1950-"],"publisher_facet":["Presses universitaires de Vincennes","Universite  de Paris VII-Vincennes.","Universite  de Paris VIII-Vincennes. Centre de Recherche","Universite de Paris VIII-Vincennes","Université de Paris VIII-Vincennes","Université de Paris VIII-Vincennes. Centre de Recherche","Université de Paris VIII-Vincennes.Centre de Recherche","Université de Paris VIII: Vincennes"],"time_facet":["1950-"],"subject_facet":["Grammar","Italian language","Usage","Verb"],"_version_":1697074595791634400,"lcc_sort":"PC-1105.00000000.B78 1978","author_facet":["OL3965210A Jacqueline Brunet"],"subject_key":["grammar","italian_language","usage","verb"],"time_key":["1950-"]}
{"key":"/works/OL10000208W","text":["/works/OL10000208W","L'utopie en questions","OL12623198M","9782842920869","2842920864","Presses Universitaires de Vincennes (PUV)","OL3965211A","Michele Riot-Sarcey"],"type":"work","seed":["/books/OL12623198M","/works/OL10000208W","/authors/OL3965211A"],"title":"L'utopie en questions","title_suggest":["L'utopie en questions"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623198M"],"publish_date":["January 24, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782842920869","2842920864"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623198M","cover_i":3140421,"publisher":["Presses Universitaires de Vincennes (PUV)"],"language":["fre"],"author_key":["OL3965211A"],"author_name":["Michele Riot-Sarcey"],"id_goodreads":["6297212"],"publisher_facet":["Presses Universitaires de Vincennes (PUV)"],"_version_":1697074595529490400,"author_facet":["OL3965211A Michele Riot-Sarcey"]}
{"key":"/works/OL10000209W","text":["/works/OL10000209W","Evocation et cognition reflets dans l'eau","OL12623199M","9782842920876","2842920872","Presses Universitaires de Vincennes (PUV)","OL3965212A","Choi-Diel"],"type":"work","seed":["/books/OL12623199M","/works/OL10000209W","/authors/OL3965212A"],"title":"Evocation et cognition reflets dans l'eau","title_suggest":["Evocation et cognition reflets dans l'eau"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623199M"],"publish_date":["March 1, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782842920876","2842920872"],"last_modified_i":1272134761,"ebook_count_i":0,"publisher":["Presses Universitaires de Vincennes (PUV)"],"author_key":["OL3965212A"],"author_name":["Choi-Diel"],"id_goodreads":["1803941"],"publisher_facet":["Presses Universitaires de Vincennes (PUV)"],"_version_":1697074595631202300,"author_facet":["OL3965212A Choi-Diel"]}
{"key":"/works/OL1000020W","text":["/works/OL1000020W","Winning can be murder","a Sheriff Dan Rhodes mystery","OL807309M","Bill Crider.","95043977","33244700","9780312140724","031214072X","winningcanbemurd00crid","St. Martin's Press","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Texas","Open Library Staff Picks","Sheriffs in fiction","Fiction","Dan Rhodes (Fictitious character)","Texas in fiction","Sheriffs","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL807309M","/works/OL1000020W","/subjects/open_library_staff_picks","/subjects/sheriffs_in_fiction","/subjects/fiction","/subjects/dan_rhodes_(fictitious_character)","/subjects/texas_in_fiction","/subjects/sheriffs","/subjects/place:texas","/authors/OL92934A"],"title":"Winning can be murder","title_suggest":["Winning can be murder"],"has_fulltext":true,"edition_count":1,"edition_key":["OL807309M"],"publish_date":["1996"],"publish_year":[1996],"first_publish_year":1996,"lccn":["95043977"],"publish_place":["New York"],"oclc":["33244700"],"lcc":["PS-3553.00000000.R497 W56 1996"],"ddc":["813.54"],"isbn":["9780312140724","031214072X"],"last_modified_i":1605876578,"ebook_count_i":1,"ia":["winningcanbemurd00crid"],"public_scan_b":false,"ia_collection_s":"inlibrary;china;printdisabled;internetarchivebooks","lending_edition_s":"OL807309M","lending_identifier_s":"winningcanbemurd00crid","printdisabled_s":"OL807309M","cover_edition_key":"OL807309M","cover_i":7061032,"publisher":["St. Martin's Press"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"place":["Texas"],"subject":["Open Library Staff Picks","Sheriffs in fiction","Fiction","Dan Rhodes (Fictitious character)","Texas in fiction","Sheriffs","Accessible book","Protected DAISY"],"id_goodreads":["147119"],"id_librarything":["472891"],"ia_loaded_id":["winningcanbemurd00crid"],"ia_box_id":["IA171101"],"publisher_facet":["St. Martin's Press"],"place_key":["texas"],"subject_facet":["Accessible book","Dan Rhodes (Fictitious character)","Fiction","Open Library Staff Picks","Protected DAISY","Sheriffs","Sheriffs in fiction","Texas in fiction"],"_version_":1697074595658465300,"place_facet":["Texas"],"lcc_sort":"PS-3553.00000000.R497 W56 1996","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","dan_rhodes_(fictitious_character)","fiction","open_library_staff_picks","protected_daisy","sheriffs","sheriffs_in_fiction","texas_in_fiction"],"ddc_sort":"813.54"}
{"key":"/works/OL10000210W","text":["/works/OL10000210W","Eloge de la paraphrase","OL12623211M","2842921178","9782842921170","Presses Universitaires de Vincennes (PUV)","OL3965213A","Daunay"],"type":"work","seed":["/books/OL12623211M","/works/OL10000210W","/authors/OL3965213A"],"title":"Eloge de la paraphrase","title_suggest":["Eloge de la paraphrase"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623211M"],"publish_date":["December 31, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["2842921178","9782842921170"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623211M","cover_i":3140428,"publisher":["Presses Universitaires de Vincennes (PUV)"],"language":["fre"],"author_key":["OL3965213A"],"author_name":["Daunay"],"publisher_facet":["Presses Universitaires de Vincennes (PUV)"],"_version_":1697074596009738200,"author_facet":["OL3965213A Daunay"]}
{"key":"/works/OL10000211M","text":["/works/OL10000211M","Parliamentary Debates Fifth Series","House of Commons Official Report","OL10000211M","9780107806385","010780638X","Stationery Office"],"type":"work","seed":["/books/OL10000211M","/works/OL10000211M"],"title":"Parliamentary Debates Fifth Series","title_suggest":["Parliamentary Debates Fifth Series"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000211M"],"publish_date":["June 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["9780107806385","010780638X"],"last_modified_i":1618493947,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"publisher_facet":["Stationery Office"],"_version_":1697113913075695600}
{"key":"/works/OL10000211W","text":["/works/OL10000211W","Ecrire l'espace","OL12623212M","9782842921187","2842921186","Presses Universitaires de Vincennes (PUV)","OL3965214A","Ropars"],"type":"work","seed":["/books/OL12623212M","/works/OL10000211W","/authors/OL3965214A"],"title":"Ecrire l'espace","title_suggest":["Ecrire l'espace"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623212M"],"publish_date":["December 31, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782842921187","2842921186"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623212M","cover_i":3140429,"publisher":["Presses Universitaires de Vincennes (PUV)"],"author_key":["OL3965214A"],"author_name":["Ropars"],"publisher_facet":["Presses Universitaires de Vincennes (PUV)"],"_version_":1697074595935289300,"author_facet":["OL3965214A Ropars"]}
{"key":"/works/OL10000212M","text":["/works/OL10000212M","Parliamentary Debates Fifth Series","House of Lords Officail Report","OL10000212M","0107806398","9780107806392","Stationery Office"],"type":"work","seed":["/books/OL10000212M","/works/OL10000212M"],"title":"Parliamentary Debates Fifth Series","title_suggest":["Parliamentary Debates Fifth Series"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000212M"],"publish_date":["June 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["0107806398","9780107806392"],"last_modified_i":1618493949,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"publisher_facet":["Stationery Office"],"_version_":1697113913236127700}
{"key":"/works/OL10000212W","text":["/works/OL10000212W","Actualites de Chimie Therapeutique 1997","OL12623215M","2842990021","9782842990022","Elsevier Science Ltd","OL3965220A","C. Combet Farnoux"],"type":"work","seed":["/books/OL12623215M","/works/OL10000212W","/authors/OL3965220A"],"title":"Actualites de Chimie Therapeutique 1997","title_suggest":["Actualites de Chimie Therapeutique 1997"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623215M"],"publish_date":["June 1, 1997"],"publish_year":[1997],"first_publish_year":1997,"isbn":["2842990021","9782842990022"],"last_modified_i":1260840402,"ebook_count_i":0,"publisher":["Elsevier Science Ltd"],"language":["fre"],"author_key":["OL3965220A"],"author_name":["C. Combet Farnoux"],"publisher_facet":["Elsevier Science Ltd"],"_version_":1697074596041195500,"author_facet":["OL3965220A C. Combet Farnoux"]}
{"key":"/works/OL10000213M","text":["/works/OL10000213M","Parliamentary Debates, Dcxl","House of Lords Official Report","OL10000213M","0107806401","9780107806408","Stationery Office","International Relations - General","Political Science","Politics/International Relations"],"type":"work","seed":["/books/OL10000213M","/works/OL10000213M","/subjects/international_relations_-_general","/subjects/political_science","/subjects/politics/international_relations"],"title":"Parliamentary Debates, Dcxl","title_suggest":["Parliamentary Debates, Dcxl"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000213M"],"publish_date":["April 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["0107806401","9780107806408"],"last_modified_i":1618493947,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["International Relations - General","Political Science","Politics/International Relations"],"publisher_facet":["Stationery Office"],"subject_facet":["International Relations - General","Political Science","Politics/International Relations"],"_version_":1697113913098764300,"subject_key":["international_relations_-_general","political_science","politicsinternational_relations"]}
{"key":"/works/OL10000213W","text":["/works/OL10000213W","Actualites de Chimie Therapeutique 1998 - 24e Serie - 24th Series","OL12623229M","2842990579","9782842990572","Elsevier Science Ltd","OL3965220A","C. Combet Farnoux"],"type":"work","seed":["/books/OL12623229M","/works/OL10000213W","/authors/OL3965220A"],"title":"Actualites de Chimie Therapeutique 1998 - 24e Serie - 24th Series","title_suggest":["Actualites de Chimie Therapeutique 1998 - 24e Serie - 24th Series"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623229M"],"publish_date":["September 1, 1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["2842990579","9782842990572"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623229M","cover_i":3140440,"publisher":["Elsevier Science Ltd"],"language":["fre"],"author_key":["OL3965220A"],"author_name":["C. Combet Farnoux"],"publisher_facet":["Elsevier Science Ltd"],"_version_":1697074596253008000,"author_facet":["OL3965220A C. Combet Farnoux"]}
{"key":"/works/OL10000214M","text":["/works/OL10000214M","Parliamentary Debates Fifth Series","House of Lords Official Report","OL10000214M","9780107806415","010780641X","Stationery Office","Government - Comparative","Political Science","Politics/International Relations"],"type":"work","seed":["/books/OL10000214M","/works/OL10000214M","/subjects/government_-_comparative","/subjects/political_science","/subjects/politics/international_relations"],"title":"Parliamentary Debates Fifth Series","title_suggest":["Parliamentary Debates Fifth Series"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000214M"],"publish_date":["May 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["9780107806415","010780641X"],"last_modified_i":1618493949,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Government - Comparative","Political Science","Politics/International Relations"],"publisher_facet":["Stationery Office"],"subject_facet":["Government - Comparative","Political Science","Politics/International Relations"],"_version_":1697113913154338800,"subject_key":["government_-_comparative","political_science","politicsinternational_relations"]}
{"key":"/works/OL10000214W","text":["/works/OL10000214W","Biologie moléculaire en biologie clinique","OL12623218M","2842990072","9782842990077","Elsevier (ed.Scientifiq.)","OL3965224A","Bogard /Lamoril"],"type":"work","seed":["/books/OL12623218M","/works/OL10000214W","/authors/OL3965224A"],"title":"Biologie moléculaire en biologie clinique","title_suggest":["Biologie moléculaire en biologie clinique"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623218M"],"publish_date":["January 1, 1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["2842990072","9782842990077"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623218M","cover_i":3140433,"publisher":["Elsevier (ed.Scientifiq.)"],"author_key":["OL3965224A"],"author_name":["Bogard /Lamoril"],"publisher_facet":["Elsevier (ed.Scientifiq.)"],"_version_":1697074595727671300,"author_facet":["OL3965224A Bogard /Lamoril"]}
{"key":"/works/OL10000215W","text":["/works/OL10000215W","AKOS, Encyclopedie Pratique de Medecine","OL12623219M","2842990315","9782842990312","Editions Scientifiques Et","OL3965225A","Akos"],"type":"work","seed":["/books/OL12623219M","/works/OL10000215W","/authors/OL3965225A"],"title":"AKOS, Encyclopedie Pratique de Medecine","title_suggest":["AKOS, Encyclopedie Pratique de Medecine"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623219M"],"publish_date":["August 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2842990315","9782842990312"],"last_modified_i":1260840402,"ebook_count_i":0,"publisher":["Editions Scientifiques Et"],"language":["fre"],"author_key":["OL3965225A"],"author_name":["Akos"],"publisher_facet":["Editions Scientifiques Et"],"_version_":1697074595895443500,"author_facet":["OL3965225A Akos"]}
{"key":"/works/OL10000216M","text":["/works/OL10000216M","Parlimentary Debates Fifth Series V. Dcxlii","House of Lords Official Report","OL10000216M","9780107806439","0107806436","Stationery Office","Reference","Law"],"type":"work","seed":["/books/OL10000216M","/works/OL10000216M","/subjects/reference","/subjects/law"],"title":"Parlimentary Debates Fifth Series V. Dcxlii","title_suggest":["Parlimentary Debates Fifth Series V. Dcxlii"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000216M"],"publish_date":["July 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["9780107806439","0107806436"],"last_modified_i":1618493947,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Reference","Law"],"publisher_facet":["Stationery Office"],"subject_facet":["Law","Reference"],"_version_":1697113912999149600,"subject_key":["law","reference"]}
{"key":"/works/OL10000216W","text":["/works/OL10000216W","Colectomy for Cancer of the Pelvic Colon","OL12623225M","9782842990459","2842990455","Editions Scientifiques Et","OL3965231A","D. Gallot"],"type":"work","seed":["/books/OL12623225M","/works/OL10000216W","/authors/OL3965231A"],"title":"Colectomy for Cancer of the Pelvic Colon","title_suggest":["Colectomy for Cancer of the Pelvic Colon"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623225M"],"publish_date":["December 1, 1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["9782842990459","2842990455"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623225M","cover_i":3140437,"publisher":["Editions Scientifiques Et"],"language":["eng"],"author_key":["OL3965231A"],"author_name":["D. Gallot"],"publisher_facet":["Editions Scientifiques Et"],"_version_":1697074596235182000,"author_facet":["OL3965231A D. Gallot"]}
{"key":"/works/OL10000217M","text":["/works/OL10000217M","Parliamentary Debates, House of Lords Official Report","OL10000217M","0107806444","9780107806446","Stationery Office","Essays","History","History: American"],"type":"work","seed":["/books/OL10000217M","/works/OL10000217M","/subjects/essays","/subjects/history","/subjects/history:_american"],"title":"Parliamentary Debates, House of Lords Official Report","title_suggest":["Parliamentary Debates, House of Lords Official Report"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000217M"],"publish_date":["August 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["0107806444","9780107806446"],"last_modified_i":1618493947,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Essays","History","History: American"],"publisher_facet":["Stationery Office"],"subject_facet":["Essays","History","History: American"],"_version_":1697113913024315400,"subject_key":["essays","history","history_american"]}
{"key":"/works/OL10000217W","text":["/works/OL10000217W","Prématurité","Le préterme","OL12623226M","9782842990497","2842990498","Elsevier (ed.Scientifiq.)","OL3965232A","Voyer Magny"],"type":"work","seed":["/books/OL12623226M","/works/OL10000217W","/authors/OL3965232A"],"title":"Prématurité","title_suggest":["Prématurité"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623226M"],"publish_date":["January 1, 1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["9782842990497","2842990498"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623226M","cover_i":3140438,"publisher":["Elsevier (ed.Scientifiq.)"],"author_key":["OL3965232A"],"author_name":["Voyer Magny"],"publisher_facet":["Elsevier (ed.Scientifiq.)"],"_version_":1697074596587503600,"author_facet":["OL3965232A Voyer Magny"]}
{"key":"/works/OL10000218M","text":["/works/OL10000218M","Parliamentary Debates, House of Lords Official Report","OL10000218M","9780107806453","0107806452","Stationery Office","Essays","History","History: American"],"type":"work","seed":["/books/OL10000218M","/works/OL10000218M","/subjects/essays","/subjects/history","/subjects/history:_american"],"title":"Parliamentary Debates, House of Lords Official Report","title_suggest":["Parliamentary Debates, House of Lords Official Report"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000218M"],"publish_date":["August 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["9780107806453","0107806452"],"last_modified_i":1618493947,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Essays","History","History: American"],"publisher_facet":["Stationery Office"],"subject_facet":["Essays","History","History: American"],"_version_":1697113913034801200,"subject_key":["essays","history","history_american"]}
{"key":"/works/OL10000218W","text":["/works/OL10000218W","Adieu pétrole--","vive les énergies renouvelables!","OL22684108M","Francis Meunier, Christine Meunier-Castelain.","2007397178","Castelain-Meunier, Christine.","2100498150","9782100498154","Dunod","OL3965234A","Francis Meunier","Petroleum","Renewable energy sources","Economic aspects","Energy development","Energy policy","Economic aspects of Energy development"],"type":"work","seed":["/books/OL22684108M","/works/OL10000218W","/subjects/petroleum","/subjects/renewable_energy_sources","/subjects/economic_aspects","/subjects/energy_development","/subjects/energy_policy","/subjects/economic_aspects_of_energy_development","/authors/OL3965234A"],"title":"Adieu pétrole--","title_suggest":["Adieu pétrole--"],"has_fulltext":false,"edition_count":1,"edition_key":["OL22684108M"],"publish_date":["2006"],"publish_year":[2006],"first_publish_year":2006,"lccn":["2007397178"],"publish_place":["Paris"],"contributor":["Castelain-Meunier, Christine."],"lcc":["TJ-0808.00000000.M49 2006"],"isbn":["2100498150","9782100498154"],"last_modified_i":1608251734,"ebook_count_i":0,"publisher":["Dunod"],"language":["fre"],"author_key":["OL3965234A"],"author_name":["Francis Meunier"],"subject":["Petroleum","Renewable energy sources","Economic aspects","Energy development","Energy policy","Economic aspects of Energy development"],"id_librarything":["4903838"],"publisher_facet":["Dunod"],"subject_facet":["Economic aspects","Economic aspects of Energy development","Energy development","Energy policy","Petroleum","Renewable energy sources"],"_version_":1697074596076847000,"lcc_sort":"TJ-0808.00000000.M49 2006","author_facet":["OL3965234A Francis Meunier"],"subject_key":["economic_aspects","economic_aspects_of_energy_development","energy_development","energy_policy","petroleum","renewable_energy_sources"]}
{"key":"/works/OL10000219M","text":["/works/OL10000219M","Parliamentary Debates Fifth Series","House of Lords Official Report","OL10000219M","9780107806460","0107806460","Stationery Office","Government - Comparative","International Relations - General","Political Science","Politics/International Relations"],"type":"work","seed":["/books/OL10000219M","/works/OL10000219M","/subjects/government_-_comparative","/subjects/international_relations_-_general","/subjects/political_science","/subjects/politics/international_relations"],"title":"Parliamentary Debates Fifth Series","title_suggest":["Parliamentary Debates Fifth Series"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000219M"],"publish_date":["October 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["9780107806460","0107806460"],"last_modified_i":1618493949,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Government - Comparative","International Relations - General","Political Science","Politics/International Relations"],"publisher_facet":["Stationery Office"],"subject_facet":["Government - Comparative","International Relations - General","Political Science","Politics/International Relations"],"_version_":1697113913155387400,"subject_key":["government_-_comparative","international_relations_-_general","political_science","politicsinternational_relations"]}
{"key":"/works/OL10000219W","text":["/works/OL10000219W","Êtudes de grammaire comparée","les composés syntactiques en grec, en latin, en français, et subsidiairement en zend et en indien.","OL21360101M","Durand","OL3965234A","Francis Meunier"],"type":"work","seed":["/books/OL21360101M","/works/OL10000219W","/authors/OL3965234A"],"title":"Êtudes de grammaire comparée","title_suggest":["Êtudes de grammaire comparée"],"has_fulltext":false,"edition_count":1,"edition_key":["OL21360101M"],"publish_date":["1872"],"publish_year":[1872],"first_publish_year":1872,"publish_place":["Paris"],"last_modified_i":1260861757,"ebook_count_i":0,"publisher":["Durand"],"language":["fre"],"author_key":["OL3965234A"],"author_name":["Francis Meunier"],"publisher_facet":["Durand"],"_version_":1697074595856646100,"author_facet":["OL3965234A Francis Meunier"]}
{"key":"/works/OL1000021W","text":["/works/OL1000021W","Cursed to Death","Cursed to death","a Sheriff Dan Rhodes mystery","OL2392415M","OL7910238M","Bill Crider.","87021891","16525736","21473899","9780804104241","0804104247","0802756980","9780802756985","cursedtodeathshe00crid","Walker","Ivy Books","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Texas","Fiction","Dan Rhodes (Fictitious character)","Sheriffs","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL2392415M","/books/OL7910238M","/works/OL1000021W","/subjects/fiction","/subjects/dan_rhodes_(fictitious_character)","/subjects/sheriffs","/subjects/place:texas","/authors/OL92934A"],"title":"Cursed to Death","title_suggest":["Cursed to Death"],"has_fulltext":true,"edition_count":2,"edition_key":["OL2392415M","OL7910238M"],"publish_date":["1988","March 28, 1990"],"publish_year":[1988,1990],"first_publish_year":1988,"lccn":["87021891"],"publish_place":["New York"],"oclc":["16525736","21473899"],"lcc":["PS-3553.00000000.R497 C8 1988"],"ddc":["813.54"],"isbn":["9780804104241","0804104247","0802756980","9780802756985"],"last_modified_i":1604644098,"ebook_count_i":1,"ia":["cursedtodeathshe00crid"],"public_scan_b":false,"ia_collection_s":"china;fav-where_apos_s_uranus_;stmaryscountylibrary;tamu-evanslibrary-ol;goffstownlibrary-ol;inlibrary;printdisabled;internetarchivebooks;riceuniversity-ol","lending_edition_s":"OL2392415M","lending_identifier_s":"cursedtodeathshe00crid","printdisabled_s":"OL2392415M","cover_edition_key":"OL2392415M","cover_i":7141472,"publisher":["Walker","Ivy Books"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"place":["Texas"],"subject":["Fiction","Dan Rhodes (Fictitious character)","Sheriffs","Accessible book","Protected DAISY"],"id_goodreads":["745300","538954"],"id_librarything":["471800"],"ia_loaded_id":["cursedtodeathshe00crid"],"ia_box_id":["IA143818"],"publisher_facet":["Ivy Books","Walker"],"place_key":["texas"],"subject_facet":["Accessible book","Dan Rhodes (Fictitious character)","Fiction","Protected DAISY","Sheriffs"],"_version_":1697074595624910800,"place_facet":["Texas"],"lcc_sort":"PS-3553.00000000.R497 C8 1988","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","dan_rhodes_(fictitious_character)","fiction","protected_daisy","sheriffs"],"ddc_sort":"813.54"}
{"key":"/works/OL10000220M","text":["/works/OL10000220M","Parliamentary Debates Fifth Series","House of Lords Official Report","OL10000220M","0107806479","9780107806477","Stationery Office","Government - Comparative","International Relations - General","Political Science","Politics/International Relations"],"type":"work","seed":["/books/OL10000220M","/works/OL10000220M","/subjects/government_-_comparative","/subjects/international_relations_-_general","/subjects/political_science","/subjects/politics/international_relations"],"title":"Parliamentary Debates Fifth Series","title_suggest":["Parliamentary Debates Fifth Series"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000220M"],"publish_date":["October 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["0107806479","9780107806477"],"last_modified_i":1618493949,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Government - Comparative","International Relations - General","Political Science","Politics/International Relations"],"publisher_facet":["Stationery Office"],"subject_facet":["Government - Comparative","International Relations - General","Political Science","Politics/International Relations"],"_version_":1697113913203622000,"subject_key":["government_-_comparative","international_relations_-_general","political_science","politicsinternational_relations"]}
{"key":"/works/OL10000220W","text":["/works/OL10000220W","Who pays indirect taxes in Russia?","Indirect taxes in Russia","OL20088950M","André Decoster and Inna Verbina.","Verbina, Inna","World Institute for Development Economics Research.","929190502X","9789291905027","United Nations University, World Institute for Development Economics Research","OL3965235A","A. Decoster","Russia (Federation)","Taxation","Value-added tax","Excise tax"],"type":"work","seed":["/books/OL20088950M","/works/OL10000220W","/subjects/taxation","/subjects/value-added_tax","/subjects/excise_tax","/subjects/place:russia_(federation)","/authors/OL3965235A"],"title":"Who pays indirect taxes in Russia?","title_suggest":["Who pays indirect taxes in Russia?"],"has_fulltext":false,"edition_count":1,"edition_key":["OL20088950M"],"publish_date":["2003"],"publish_year":[2003],"first_publish_year":2003,"publish_place":["Helsinki"],"contributor":["Verbina, Inna","World Institute for Development Economics Research."],"isbn":["929190502X","9789291905027"],"last_modified_i":1279636588,"ebook_count_i":0,"publisher":["United Nations University, World Institute for Development Economics Research"],"language":["eng"],"author_key":["OL3965235A"],"author_name":["A. Decoster"],"place":["Russia (Federation)"],"subject":["Taxation","Value-added tax","Excise tax"],"publisher_facet":["United Nations University, World Institute for Development Economics Research"],"place_key":["russia_(federation)"],"subject_facet":["Excise tax","Taxation","Value-added tax"],"_version_":1697074595458187300,"place_facet":["Russia (Federation)"],"author_facet":["OL3965235A A. Decoster"],"subject_key":["excise_tax","taxation","value-added_tax"]}
{"key":"/works/OL10000221M","text":["/works/OL10000221M","Parliamentary Debates Fifth Series","House of Lords Official Report","OL10000221M","0107806487","9780107806484","Stationery Office","Government - Comparative","International Relations - General","Political Science","Politics/International Relations"],"type":"work","seed":["/books/OL10000221M","/works/OL10000221M","/subjects/government_-_comparative","/subjects/international_relations_-_general","/subjects/political_science","/subjects/politics/international_relations"],"title":"Parliamentary Debates Fifth Series","title_suggest":["Parliamentary Debates Fifth Series"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000221M"],"publish_date":["October 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["0107806487","9780107806484"],"last_modified_i":1618493950,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Government - Comparative","International Relations - General","Political Science","Politics/International Relations"],"publisher_facet":["Stationery Office"],"subject_facet":["Government - Comparative","International Relations - General","Political Science","Politics/International Relations"],"_version_":1697113913310576600,"subject_key":["government_-_comparative","international_relations_-_general","political_science","politicsinternational_relations"]}
{"key":"/works/OL10000221W","text":["/works/OL10000221W","Echantillons biologiques","Phase préanalytique et prélevements en biologie médicale","OL12623230M","41254005","2842990609","9782842990602","Elsevier (ed.Scientifiq.)","OL3965237A","Jean-Claude Ghnassia"],"type":"work","seed":["/books/OL12623230M","/works/OL10000221W","/authors/OL3965237A"],"title":"Echantillons biologiques","title_suggest":["Echantillons biologiques"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623230M"],"publish_date":["January 2, 1998"],"publish_year":[1998],"first_publish_year":1998,"oclc":["41254005"],"isbn":["2842990609","9782842990602"],"last_modified_i":1304094283,"ebook_count_i":0,"cover_edition_key":"OL12623230M","cover_i":3140441,"publisher":["Elsevier (ed.Scientifiq.)"],"author_key":["OL3965237A"],"author_name":["Jean-Claude Ghnassia"],"publisher_facet":["Elsevier (ed.Scientifiq.)"],"_version_":1697074596135567400,"author_facet":["OL3965237A Jean-Claude Ghnassia"]}
{"key":"/works/OL10000222M","text":["/works/OL10000222M","Parliamentary Debates Fifth Series","House of Lords Official Report","OL10000222M","0107806495","9780107806491","Stationery Office","International Relations - General","Political Science","Politics/International Relations"],"type":"work","seed":["/books/OL10000222M","/works/OL10000222M","/subjects/international_relations_-_general","/subjects/political_science","/subjects/politics/international_relations"],"title":"Parliamentary Debates Fifth Series","title_suggest":["Parliamentary Debates Fifth Series"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000222M"],"publish_date":["December 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["0107806495","9780107806491"],"last_modified_i":1618493950,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["International Relations - General","Political Science","Politics/International Relations"],"publisher_facet":["Stationery Office"],"subject_facet":["International Relations - General","Political Science","Politics/International Relations"],"_version_":1697113913265488000,"subject_key":["international_relations_-_general","political_science","politicsinternational_relations"]}
{"key":"/works/OL10000222W","text":["/works/OL10000222W","Du Diagramme Hygrometrique de Combustion aux Pompes a Vapeur D'eau","OL12623233M","2842990730","9782842990732","Elsevier Science Ltd","OL3965241A","R. Guillet"],"type":"work","seed":["/books/OL12623233M","/works/OL10000222W","/authors/OL3965241A"],"title":"Du Diagramme Hygrometrique de Combustion aux Pompes a Vapeur D'eau","title_suggest":["Du Diagramme Hygrometrique de Combustion aux Pompes a Vapeur D'eau"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623233M"],"publish_date":["September 1, 1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["2842990730","9782842990732"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623233M","cover_i":3140443,"publisher":["Elsevier Science Ltd"],"language":["fre"],"author_key":["OL3965241A"],"author_name":["R. Guillet"],"id_goodreads":["1502990"],"publisher_facet":["Elsevier Science Ltd"],"_version_":1697074595445604400,"author_facet":["OL3965241A R. Guillet"]}
{"key":"/works/OL10000223M","text":["/works/OL10000223M","Parliamentary Debates Fifth Series","House of Lords Official Report","OL10000223M","0107806509","9780107806507","Stationery Office","Essays","History","History: World"],"type":"work","seed":["/books/OL10000223M","/works/OL10000223M","/subjects/essays","/subjects/history","/subjects/history:_world"],"title":"Parliamentary Debates Fifth Series","title_suggest":["Parliamentary Debates Fifth Series"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000223M"],"publish_date":["December 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["0107806509","9780107806507"],"last_modified_i":1618493950,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Essays","History","History: World"],"publisher_facet":["Stationery Office"],"subject_facet":["Essays","History","History: World"],"_version_":1697113913342034000,"subject_key":["essays","history","history_world"]}
{"key":"/works/OL10000223W","text":["/works/OL10000223W","Combating Surgical Infection","OL12623234M","9782842990831","2842990838","Elsevier Science Ltd","OL3965242A","A. Lortat Jacob"],"type":"work","seed":["/books/OL12623234M","/works/OL10000223W","/authors/OL3965242A"],"title":"Combating Surgical Infection","title_suggest":["Combating Surgical Infection"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623234M"],"publish_date":["January 1, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782842990831","2842990838"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623234M","cover_i":3140444,"publisher":["Elsevier Science Ltd"],"language":["eng"],"author_key":["OL3965242A"],"author_name":["A. Lortat Jacob"],"publisher_facet":["Elsevier Science Ltd"],"_version_":1697074596133470200,"author_facet":["OL3965242A A. Lortat Jacob"]}
{"key":"/works/OL10000224M","text":["/works/OL10000224M","Parliamentary Debates, House Of Lords, 6 October 2003 - 23rd October 2003 (5th Series)","OL10000224M","0107806533","9780107806538","Stationery Office","Reference","Law"],"type":"work","seed":["/books/OL10000224M","/works/OL10000224M","/subjects/reference","/subjects/law"],"title":"Parliamentary Debates, House Of Lords, 6 October 2003 - 23rd October 2003 (5th Series)","title_suggest":["Parliamentary Debates, House Of Lords, 6 October 2003 - 23rd October 2003 (5th Series)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000224M"],"publish_date":["July 16, 2004"],"publish_year":[2004],"first_publish_year":2004,"isbn":["0107806533","9780107806538"],"last_modified_i":1618493947,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Reference","Law"],"publisher_facet":["Stationery Office"],"subject_facet":["Law","Reference"],"_version_":1697113913071501300,"subject_key":["law","reference"]}
{"key":"/works/OL10000224W","text":["/works/OL10000224W","Actualites de Chimie Therapeutique 1999 - 25e Serie - 25th Series","OL12623238M","9782842991265","2842991265","Elsevier Science Ltd","OL3965248A","O. Lafont"],"type":"work","seed":["/books/OL12623238M","/works/OL10000224W","/authors/OL3965248A"],"title":"Actualites de Chimie Therapeutique 1999 - 25e Serie - 25th Series","title_suggest":["Actualites de Chimie Therapeutique 1999 - 25e Serie - 25th Series"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623238M"],"publish_date":["May 1, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782842991265","2842991265"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623238M","cover_i":3140448,"publisher":["Elsevier Science Ltd"],"language":["fre"],"author_key":["OL3965248A"],"author_name":["O. Lafont"],"publisher_facet":["Elsevier Science Ltd"],"_version_":1697074596297048000,"author_facet":["OL3965248A O. Lafont"]}
{"key":"/works/OL10000225M","text":["/works/OL10000225M","Parliamentary Debates, House Of Lords 2003-2004, 26th November - 18th December 2003","OL10000225M","614435085","9780107806552","010780655X","Stationery Office","General","Law"],"type":"work","seed":["/books/OL10000225M","/works/OL10000225M","/subjects/general","/subjects/law"],"title":"Parliamentary Debates, House Of Lords 2003-2004, 26th November - 18th December 2003","title_suggest":["Parliamentary Debates, House Of Lords 2003-2004, 26th November - 18th December 2003"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000225M"],"publish_date":["July 26, 2004"],"publish_year":[2004],"first_publish_year":2004,"oclc":["614435085"],"isbn":["9780107806552","010780655X"],"last_modified_i":1618493950,"ebook_count_i":0,"cover_edition_key":"OL10000225M","cover_i":5029679,"publisher":["Stationery Office"],"language":["eng"],"subject":["General","Law"],"publisher_facet":["Stationery Office"],"subject_facet":["General","Law"],"_version_":1697113913318965200,"subject_key":["general","law"]}
{"key":"/works/OL10000225W","text":["/works/OL10000225W","Arterial Stiffness and Pulse Wave Velocity. Clinical applications","OL12623241M","2842991486","9782842991487","Editions Scientifiques Et","OL3965253A","R. Asmar"],"type":"work","seed":["/books/OL12623241M","/works/OL10000225W","/authors/OL3965253A"],"title":"Arterial Stiffness and Pulse Wave Velocity. Clinical applications","title_suggest":["Arterial Stiffness and Pulse Wave Velocity. Clinical applications"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623241M"],"publish_date":["November 1, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["2842991486","9782842991487"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623241M","cover_i":3140451,"publisher":["Editions Scientifiques Et"],"language":["eng"],"author_key":["OL3965253A"],"author_name":["R. Asmar"],"id_goodreads":["723436"],"publisher_facet":["Editions Scientifiques Et"],"_version_":1697074596228890600,"author_facet":["OL3965253A R. Asmar"]}
{"key":"/works/OL10000226M","text":["/works/OL10000226M","Parliamentary Debates, House Of Lords - Bound","003-04, 23 February - 11 March 2004","OL10000226M","614435142","0107806584","9780107806583","Stationery Office","Reference - General","Business & Economics","Business/Economics"],"type":"work","seed":["/books/OL10000226M","/works/OL10000226M","/subjects/reference_-_general","/subjects/business_&_economics","/subjects/business/economics"],"title":"Parliamentary Debates, House Of Lords - Bound","title_suggest":["Parliamentary Debates, House Of Lords - Bound"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000226M"],"publish_date":["September 15, 2004"],"publish_year":[2004],"first_publish_year":2004,"oclc":["614435142"],"isbn":["0107806584","9780107806583"],"last_modified_i":1618493947,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Reference - General","Business & Economics","Business/Economics"],"publisher_facet":["Stationery Office"],"subject_facet":["Business & Economics","Business/Economics","Reference - General"],"_version_":1697113913117638700,"subject_key":["business__economics","businesseconomics","reference_-_general"]}
{"key":"/works/OL10000226W","text":["/works/OL10000226W","The nucleus of our galaxy","OL17595955M","OL15512967M","Reinhard Genzel, David Hollenbach, and Charles H. Townes.","44561471","Ames Research Center.","Townes, Charles H.","Max-Planck-Institut für Extraterrestrische Physik.","Hollenbach, David J.","Ames Research Center","OL3965254A","R. Genzel","Milky Way","Astrophysics","Galactic nuclei"],"type":"work","seed":["/books/OL17595955M","/books/OL15512967M","/works/OL10000226W","/subjects/astrophysics","/subjects/galactic_nuclei","/subjects/place:milky_way","/authors/OL3965254A"],"title":"The nucleus of our galaxy","title_suggest":["The nucleus of our galaxy"],"has_fulltext":false,"edition_count":2,"edition_key":["OL17595955M","OL15512967M"],"publish_date":["1993"],"publish_year":[1993],"first_publish_year":1993,"publish_place":["[Moffett Field, Calif.]"],"oclc":["44561471"],"contributor":["Ames Research Center.","Townes, Charles H.","Max-Planck-Institut für Extraterrestrische Physik.","Hollenbach, David J."],"last_modified_i":1344928189,"ebook_count_i":0,"publisher":["Ames Research Center"],"language":["eng"],"author_key":["OL3965254A"],"author_name":["R. Genzel"],"place":["Milky Way"],"subject":["Astrophysics","Galactic nuclei"],"publisher_facet":["Ames Research Center"],"place_key":["milky_way"],"subject_facet":["Astrophysics","Galactic nuclei"],"_version_":1697074596670341000,"place_facet":["Milky Way"],"author_facet":["OL3965254A R. Genzel"],"subject_key":["astrophysics","galactic_nuclei"]}
{"key":"/works/OL10000227M","text":["/works/OL10000227M","Parliamentary Debates House Of Lords - Bound Volumes","5th Series, 2003-04, 15 March - 6 April 2004","OL10000227M","614435110","9780107806590","0107806592","Stationery Office","Reference - General","Business & Economics","Business/Economics"],"type":"work","seed":["/books/OL10000227M","/works/OL10000227M","/subjects/reference_-_general","/subjects/business_&_economics","/subjects/business/economics"],"title":"Parliamentary Debates House Of Lords - Bound Volumes","title_suggest":["Parliamentary Debates House Of Lords - Bound Volumes"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000227M"],"publish_date":["October 13, 2004"],"publish_year":[2004],"first_publish_year":2004,"oclc":["614435110"],"isbn":["9780107806590","0107806592"],"last_modified_i":1618493949,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Reference - General","Business & Economics","Business/Economics"],"publisher_facet":["Stationery Office"],"subject_facet":["Business & Economics","Business/Economics","Reference - General"],"_version_":1697113913194184700,"subject_key":["business__economics","businesseconomics","reference_-_general"]}
{"key":"/works/OL10000227W","text":["/works/OL10000227W","Voyage en biostatistique","OL12623244M","9782842991913","2842991915","Elsevier","OL3965255A","J.-A. Fanfarai"],"type":"work","seed":["/books/OL12623244M","/works/OL10000227W","/authors/OL3965255A"],"title":"Voyage en biostatistique","title_suggest":["Voyage en biostatistique"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623244M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782842991913","2842991915"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623244M","cover_i":3140454,"publisher":["Elsevier"],"language":["fre"],"author_key":["OL3965255A"],"author_name":["J.-A. Fanfarai"],"publisher_facet":["Elsevier"],"_version_":1697074596435460000,"author_facet":["OL3965255A J.-A. Fanfarai"]}
{"key":"/works/OL10000228M","text":["/works/OL10000228M","Parliamentary Debates, House Of Lords - Bound Volumes","5th Series. Volume DCLX. 2003-04, 19 April - 6 May 2004","OL10000228M","614435133","9780107806606","0107806606","Stationery Office","Reference","Law"],"type":"work","seed":["/books/OL10000228M","/works/OL10000228M","/subjects/reference","/subjects/law"],"title":"Parliamentary Debates, House Of Lords - Bound Volumes","title_suggest":["Parliamentary Debates, House Of Lords - Bound Volumes"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000228M"],"publish_date":["November 8, 2004"],"publish_year":[2004],"first_publish_year":2004,"oclc":["614435133"],"isbn":["9780107806606","0107806606"],"last_modified_i":1618493949,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Reference","Law"],"publisher_facet":["Stationery Office"],"subject_facet":["Law","Reference"],"_version_":1697113913142804500,"subject_key":["law","reference"]}
{"key":"/works/OL10000228W","text":["/works/OL10000228W","Prise en charge des traumatisés crâniens graves à la phase précoce","recommandations pour la pratique clinique","OL12623246M","9782842992170","2842992172","Elsevier","OL3965256A","Société française d'anesthésie et de réanima"],"type":"work","seed":["/books/OL12623246M","/works/OL10000228W","/authors/OL3965256A"],"title":"Prise en charge des traumatisés crâniens graves à la phase précoce","title_suggest":["Prise en charge des traumatisés crâniens graves à la phase précoce"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623246M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782842992170","2842992172"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623246M","cover_i":3140456,"publisher":["Elsevier"],"author_key":["OL3965256A"],"author_name":["Société française d'anesthésie et de réanima"],"publisher_facet":["Elsevier"],"_version_":1697074596146053000,"author_facet":["OL3965256A Société française d'anesthésie et de réanima"]}
{"key":"/works/OL10000229M","text":["/works/OL10000229M","Parliamentary Debates, House Of Lords","7 June - 25 June 2004","OL10000229M","9780107806620","0107806622","Stationery Office","Reference","Political Science","Politics/International Relations"],"type":"work","seed":["/books/OL10000229M","/works/OL10000229M","/subjects/reference","/subjects/political_science","/subjects/politics/international_relations"],"title":"Parliamentary Debates, House Of Lords","title_suggest":["Parliamentary Debates, House Of Lords"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000229M"],"publish_date":["December 31, 2004"],"publish_year":[2004],"first_publish_year":2004,"isbn":["9780107806620","0107806622"],"last_modified_i":1618493949,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Reference","Political Science","Politics/International Relations"],"publisher_facet":["Stationery Office"],"subject_facet":["Political Science","Politics/International Relations","Reference"],"_version_":1697113913237176300,"subject_key":["political_science","politicsinternational_relations","reference"]}
{"key":"/works/OL10000229W","text":["/works/OL10000229W","L'Actualité rhumatologique 2000","OL12623247M","45179827","2842992199","9782842992194","Elsevier","OL3965257A","M. F. Kahn"],"type":"work","seed":["/books/OL12623247M","/works/OL10000229W","/authors/OL3965257A"],"title":"L'Actualité rhumatologique 2000","title_suggest":["L'Actualité rhumatologique 2000"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623247M"],"publish_date":["September 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["45179827"],"isbn":["2842992199","9782842992194"],"last_modified_i":1303508629,"ebook_count_i":0,"cover_edition_key":"OL12623247M","cover_i":3140457,"publisher":["Elsevier"],"language":["fre"],"author_key":["OL3965257A"],"author_name":["M. F. Kahn"],"publisher_facet":["Elsevier"],"_version_":1697074596433363000,"author_facet":["OL3965257A M. F. Kahn"]}
{"key":"/works/OL1000022W","text":["/works/OL1000022W","Dead on the island","Dead on the Island","OL1865457M","OL9796850M","Bill Crider.","90023473","32366941","22762883","1883268192","0802757871","9780802757876","9781883268190","deadonisland00crid","Spellbinders","Walker and Co.","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Texas","Fiction","Private investigators","Truman Smith (Fictitious character)","Private investigators in fiction","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL1865457M","/books/OL9796850M","/works/OL1000022W","/subjects/fiction","/subjects/private_investigators","/subjects/truman_smith_(fictitious_character)","/subjects/private_investigators_in_fiction","/subjects/place:texas","/authors/OL92934A"],"title":"Dead on the island","title_suggest":["Dead on the island"],"has_fulltext":true,"edition_count":2,"edition_key":["OL1865457M","OL9796850M"],"publish_date":["January 1995","1991"],"publish_year":[1991,1995],"first_publish_year":1991,"lccn":["90023473"],"publish_place":["New York"],"oclc":["32366941","22762883"],"lcc":["PS-3553.00000000.R497 D38 1991"],"ddc":["813.54"],"isbn":["1883268192","0802757871","9780802757876","9781883268190"],"last_modified_i":1605078873,"ebook_count_i":1,"ia":["deadonisland00crid"],"public_scan_b":false,"ia_collection_s":"americana;china;cuny-ol;inlibrary;delawarecountydistrictlibrary;printdisabled;library_of_atlantis;fav-longhunter9;internetarchivebooks;fav-thatschmuckyouhate","lending_edition_s":"OL1865457M","lending_identifier_s":"deadonisland00crid","printdisabled_s":"OL1865457M","cover_edition_key":"OL1865457M","cover_i":7136782,"publisher":["Spellbinders","Walker and Co."],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"place":["Texas"],"subject":["Fiction","Private investigators","Truman Smith (Fictitious character)","Private investigators in fiction","Accessible book","Protected DAISY"],"id_goodreads":["1829218","707440"],"id_librarything":["4574085"],"ia_loaded_id":["deadonisland00crid"],"ia_box_id":["IA143812"],"publisher_facet":["Spellbinders","Walker and Co."],"place_key":["texas"],"subject_facet":["Accessible book","Fiction","Private investigators","Private investigators in fiction","Protected DAISY","Truman Smith (Fictitious character)"],"_version_":1697074596573872000,"place_facet":["Texas"],"lcc_sort":"PS-3553.00000000.R497 D38 1991","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","fiction","private_investigators","private_investigators_in_fiction","protected_daisy","truman_smith_(fictitious_character)"],"ddc_sort":"813.54"}
{"key":"/works/OL10000230M","text":["/works/OL10000230M","Parliamentary Debates, House Of Lords 2003-2004","28 June - 16 July 2004","OL10000230M","9780107806637","0107806630","Stationery Office","Reference - General","Business & Economics","Business/Economics"],"type":"work","seed":["/books/OL10000230M","/works/OL10000230M","/subjects/reference_-_general","/subjects/business_&_economics","/subjects/business/economics"],"title":"Parliamentary Debates, House Of Lords 2003-2004","title_suggest":["Parliamentary Debates, House Of Lords 2003-2004"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000230M"],"publish_date":["January 28, 2005"],"publish_year":[2005],"first_publish_year":2005,"isbn":["9780107806637","0107806630"],"last_modified_i":1618493949,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Reference - General","Business & Economics","Business/Economics"],"publisher_facet":["Stationery Office"],"subject_facet":["Business & Economics","Business/Economics","Reference - General"],"_version_":1697113913232982000,"subject_key":["business__economics","businesseconomics","reference_-_general"]}
{"key":"/works/OL10000230W","text":["/works/OL10000230W","La Thyroïde","La thyroïde","des concepts à la pratique clinique","OL12623248M","OL22171027M","sous la direction de J. Leclère ... [et al.]","51903195","Leclère, J.","9782842992248","2842992245","Elsevier (ed.Scientifiq.)","Elsevier","OL3965258A","J. (Jacques) Leclère","Thyroïde"],"type":"work","seed":["/books/OL12623248M","/books/OL22171027M","/works/OL10000230W","/subjects/thyroïde","/authors/OL3965258A"],"title":"La Thyroïde","title_suggest":["La Thyroïde"],"has_fulltext":false,"edition_count":2,"edition_key":["OL12623248M","OL22171027M"],"publish_date":["2001","April 2, 2001"],"publish_year":[2001],"first_publish_year":2001,"publish_place":["Amsterdam"],"oclc":["51903195"],"contributor":["Leclère, J."],"isbn":["9782842992248","2842992245"],"last_modified_i":1564587264,"ebook_count_i":0,"cover_edition_key":"OL12623248M","cover_i":3140458,"publisher":["Elsevier (ed.Scientifiq.)","Elsevier"],"language":["fre"],"author_key":["OL3965258A"],"author_name":["J. (Jacques) Leclère"],"subject":["Thyroïde"],"publisher_facet":["Elsevier","Elsevier (ed.Scientifiq.)"],"subject_facet":["Thyroïde"],"_version_":1697074595607085000,"author_facet":["OL3965258A J. (Jacques) Leclère"],"subject_key":["thyroïde"]}
{"key":"/works/OL10000231M","text":["/works/OL10000231M","Parliamentary Debates, House of Lords - Bound Volumes","Volume 664, 5th Series, 2003-2004, 19th July - 6th September 2004","OL10000231M","0107806649","9780107806644","Stationery Office","Reference","Political Science","Politics/International Relations"],"type":"work","seed":["/books/OL10000231M","/works/OL10000231M","/subjects/reference","/subjects/political_science","/subjects/politics/international_relations"],"title":"Parliamentary Debates, House of Lords - Bound Volumes","title_suggest":["Parliamentary Debates, House of Lords - Bound Volumes"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000231M"],"publish_date":["February 22, 2005"],"publish_year":[2005],"first_publish_year":2005,"isbn":["0107806649","9780107806644"],"last_modified_i":1618493947,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Reference","Political Science","Politics/International Relations"],"publisher_facet":["Stationery Office"],"subject_facet":["Political Science","Politics/International Relations","Reference"],"_version_":1697113913068355600,"subject_key":["political_science","politicsinternational_relations","reference"]}
{"key":"/works/OL10000231W","text":["/works/OL10000231W","Echocardiographie doppler en réanimation, anesthesie et medecine d'urgence","Echocardiographie Doppler en réanimation, anesthésie et médecine d'urgence","OL12623252M","OL22235875M"," [édité par] Ph. Vignon, J.P. Goarin","Goarin, J.P.","Vignon, Ph.","9782842992774","2842992776","Elsevier France","Elsevier","OL3965261A","J.-P. P. /Goarin Vignon","Doppler, Échocardiographie"],"type":"work","seed":["/books/OL12623252M","/books/OL22235875M","/works/OL10000231W","/subjects/doppler_échocardiographie","/authors/OL3965261A"],"title":"Echocardiographie doppler en réanimation, anesthesie et medecine d'urgence","title_suggest":["Echocardiographie doppler en réanimation, anesthesie et medecine d'urgence"],"has_fulltext":false,"edition_count":2,"edition_key":["OL12623252M","OL22235875M"],"publish_date":["2002","January 1, 2002"],"publish_year":[2002],"first_publish_year":2002,"publish_place":["Paris"],"contributor":["Goarin, J.P.","Vignon, Ph."],"isbn":["9782842992774","2842992776"],"last_modified_i":1564587265,"ebook_count_i":0,"cover_edition_key":"OL12623252M","cover_i":3140461,"publisher":["Elsevier France","Elsevier"],"language":["eng"],"author_key":["OL3965261A"],"author_name":["J.-P. P. /Goarin Vignon"],"subject":["Doppler, Échocardiographie"],"id_goodreads":["5845654"],"publisher_facet":["Elsevier","Elsevier France"],"subject_facet":["Doppler, Échocardiographie"],"_version_":1697074595889152000,"author_facet":["OL3965261A J.-P. P. /Goarin Vignon"],"subject_key":["doppler_échocardiographie"]}
{"key":"/works/OL10000232M","text":["/works/OL10000232M","Parliamentary Debates, 23rd November - 21st December 2004 (House of Lords)","OL10000232M","9780107806675","0107806673","Stationery Office","Reference - General","Business & Economics","Business/Economics"],"type":"work","seed":["/books/OL10000232M","/works/OL10000232M","/subjects/reference_-_general","/subjects/business_&_economics","/subjects/business/economics"],"title":"Parliamentary Debates, 23rd November - 21st December 2004 (House of Lords)","title_suggest":["Parliamentary Debates, 23rd November - 21st December 2004 (House of Lords)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000232M"],"publish_date":["May 31, 2005"],"publish_year":[2005],"first_publish_year":2005,"isbn":["9780107806675","0107806673"],"last_modified_i":1618493950,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Reference - General","Business & Economics","Business/Economics"],"publisher_facet":["Stationery Office"],"subject_facet":["Business & Economics","Business/Economics","Reference - General"],"_version_":1697113913280168000,"subject_key":["business__economics","businesseconomics","reference_-_general"]}
{"key":"/works/OL10000232W","text":["/works/OL10000232W","Advances in Superconductivity - New Materials, Critical Currents and Devices","OL13132475M","42012117","9788122411256","8122411258","New Age International (P) Ltd.","OL3965262A","R. Pinto"],"type":"work","seed":["/books/OL13132475M","/works/OL10000232W","/authors/OL3965262A"],"title":"Advances in Superconductivity - New Materials, Critical Currents and Devices","title_suggest":["Advances in Superconductivity - New Materials, Critical Currents and Devices"],"has_fulltext":false,"edition_count":1,"edition_key":["OL13132475M"],"publish_date":["1998"],"publish_year":[1998],"first_publish_year":1998,"oclc":["42012117"],"isbn":["9788122411256","8122411258"],"last_modified_i":1304156990,"ebook_count_i":0,"publisher":["New Age International (P) Ltd."],"author_key":["OL3965262A"],"author_name":["R. Pinto"],"publisher_facet":["New Age International (P) Ltd."],"_version_":1697074596680827000,"author_facet":["OL3965262A R. Pinto"]}
{"key":"/works/OL10000233M","text":["/works/OL10000233M","Parliamentary Debates, House of Lords - Bound 2005","10th January - 27th January 2005","OL10000233M","9780107806682","0107806681","Stationery Office","Reference - General","Business & Economics","Business/Economics"],"type":"work","seed":["/books/OL10000233M","/works/OL10000233M","/subjects/reference_-_general","/subjects/business_&_economics","/subjects/business/economics"],"title":"Parliamentary Debates, House of Lords - Bound 2005","title_suggest":["Parliamentary Debates, House of Lords - Bound 2005"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000233M"],"publish_date":["June 13, 2005"],"publish_year":[2005],"first_publish_year":2005,"isbn":["9780107806682","0107806681"],"last_modified_i":1618493947,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Reference - General","Business & Economics","Business/Economics"],"publisher_facet":["Stationery Office"],"subject_facet":["Business & Economics","Business/Economics","Reference - General"],"_version_":1697113913057869800,"subject_key":["business__economics","businesseconomics","reference_-_general"]}
{"key":"/works/OL10000233W","text":["/works/OL10000233W","Les organisations Europeennes","organisations Europeennes","OL20011617M","by R. Pinto.","Payot","OL3965262A","R. Pinto"],"type":"work","seed":["/books/OL20011617M","/works/OL10000233W","/authors/OL3965262A"],"title":"Les organisations Europeennes","title_suggest":["Les organisations Europeennes"],"has_fulltext":false,"edition_count":1,"edition_key":["OL20011617M"],"publish_date":["1965"],"publish_year":[1965],"first_publish_year":1965,"last_modified_i":1260859616,"ebook_count_i":0,"publisher":["Payot"],"language":["eng"],"author_key":["OL3965262A"],"author_name":["R. Pinto"],"publisher_facet":["Payot"],"_version_":1697074595953115100,"author_facet":["OL3965262A R. Pinto"]}
{"key":"/works/OL10000234M","text":["/works/OL10000234M","Parliamentary Debates (House of Lords Official Report)","OL10000234M","0107806711","9780107806712","Stationery Office","Government - General","Government - Legislative Branch","Political Science","Politics/International Relations"],"type":"work","seed":["/books/OL10000234M","/works/OL10000234M","/subjects/government_-_general","/subjects/government_-_legislative_branch","/subjects/political_science","/subjects/politics/international_relations"],"title":"Parliamentary Debates (House of Lords Official Report)","title_suggest":["Parliamentary Debates (House of Lords Official Report)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000234M"],"publish_date":["November 30, 2005"],"publish_year":[2005],"first_publish_year":2005,"isbn":["0107806711","9780107806712"],"last_modified_i":1618493949,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Government - General","Government - Legislative Branch","Political Science","Politics/International Relations"],"publisher_facet":["Stationery Office"],"subject_facet":["Government - General","Government - Legislative Branch","Political Science","Politics/International Relations"],"_version_":1697113913195233300,"subject_key":["government_-_general","government_-_legislative_branch","political_science","politicsinternational_relations"]}
{"key":"/works/OL10000234W","text":["/works/OL10000234W","Functional Disorders in Musicians","OL12623260M","9782842993269","2842993268","Editions Scientifiques Et","OL3965264A","R. Tubiana"],"type":"work","seed":["/books/OL12623260M","/works/OL10000234W","/authors/OL3965264A"],"title":"Functional Disorders in Musicians","title_suggest":["Functional Disorders in Musicians"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623260M"],"publish_date":["September 1, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782842993269","2842993268"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623260M","cover_i":3140466,"publisher":["Editions Scientifiques Et"],"language":["eng"],"author_key":["OL3965264A"],"author_name":["R. Tubiana"],"id_goodreads":["6232888"],"publisher_facet":["Editions Scientifiques Et"],"_version_":1697074595569336300,"author_facet":["OL3965264A R. Tubiana"]}
{"key":"/works/OL10000235M","text":["/works/OL10000235M","House of Lords Official Report (Parliamentary Debates Hansard Session 2005-06)","OL10000235M","010780672X","9780107806729","Stationery Office","Europe - Great Britain - General","Government - General","Contemporary Politics - Britain","Political Science","Politics/International Relations"],"type":"work","seed":["/books/OL10000235M","/works/OL10000235M","/subjects/europe_-_great_britain_-_general","/subjects/government_-_general","/subjects/contemporary_politics_-_britain","/subjects/political_science","/subjects/politics/international_relations"],"title":"House of Lords Official Report (Parliamentary Debates Hansard Session 2005-06)","title_suggest":["House of Lords Official Report (Parliamentary Debates Hansard Session 2005-06)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000235M"],"publish_date":["December 31, 2005"],"publish_year":[2005],"first_publish_year":2005,"isbn":["010780672X","9780107806729"],"last_modified_i":1618493949,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Europe - Great Britain - General","Government - General","Contemporary Politics - Britain","Political Science","Politics/International Relations"],"publisher_facet":["Stationery Office"],"subject_facet":["Contemporary Politics - Britain","Europe - Great Britain - General","Government - General","Political Science","Politics/International Relations"],"_version_":1697113913170067500,"subject_key":["contemporary_politics_-_britain","europe_-_great_britain_-_general","government_-_general","political_science","politicsinternational_relations"]}
{"key":"/works/OL10000235W","text":["/works/OL10000235W","Surgical Techniques in Orthopaedics and Traumatology","OL12623266M","OL12623265M","OL12623269M","OL12623261M","OL12623262M","OL12623263M","OL12623267M","OL12623264M","OL12623268M","2842994426","9782842994433","9782842994419","9782842994402","2842994159","2842994167","2842994418","284299440X","2842994140","9782842994396","9782842994150","9782842994174","2842994175","9782842994426","9782842994143","2842994434","2842994396","9782842994167","Elsevier","Elsevier Health Sciences","OL3965265A","Jacques DuParc"],"type":"work","seed":["/books/OL12623266M","/books/OL12623265M","/books/OL12623269M","/books/OL12623261M","/books/OL12623262M","/books/OL12623263M","/books/OL12623267M","/books/OL12623264M","/books/OL12623268M","/works/OL10000235W","/authors/OL3965265A"],"title":"Surgical Techniques in Orthopaedics and Traumatology","title_suggest":["Surgical Techniques in Orthopaedics and Traumatology"],"has_fulltext":false,"edition_count":9,"edition_key":["OL12623266M","OL12623265M","OL12623269M","OL12623261M","OL12623262M","OL12623263M","OL12623267M","OL12623264M","OL12623268M"],"publish_date":["January 9, 2003","January 20, 2003","April 9, 2003","January 30, 2003","March 24, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["2842994426","9782842994433","9782842994419","9782842994402","2842994159","2842994167","2842994418","284299440X","2842994140","9782842994396","9782842994150","9782842994174","2842994175","9782842994426","9782842994143","2842994434","2842994396","9782842994167"],"last_modified_i":1354101598,"ebook_count_i":0,"cover_edition_key":"OL12623267M","cover_i":3140473,"publisher":["Elsevier","Elsevier Health Sciences"],"author_key":["OL3965265A"],"author_name":["Jacques DuParc"],"id_goodreads":["4684322","2208722","5153564"],"publisher_facet":["Elsevier","Elsevier Health Sciences"],"_version_":1697074595926900700,"author_facet":["OL3965265A Jacques DuParc"]}
{"key":"/works/OL10000236M","text":["/works/OL10000236M","House of Lords Official Report (Parliamentary Debates Hansard Session 2005-06)","OL10000236M","614794153","9780107806736","0107806738","Stationery Office","Europe - Great Britain - General","Government - General","Contemporary Politics - Britain","Political Science","Politics/International Relations"],"type":"work","seed":["/books/OL10000236M","/works/OL10000236M","/subjects/europe_-_great_britain_-_general","/subjects/government_-_general","/subjects/contemporary_politics_-_britain","/subjects/political_science","/subjects/politics/international_relations"],"title":"House of Lords Official Report (Parliamentary Debates Hansard Session 2005-06)","title_suggest":["House of Lords Official Report (Parliamentary Debates Hansard Session 2005-06)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000236M"],"publish_date":["December 31, 2005"],"publish_year":[2005],"first_publish_year":2005,"oclc":["614794153"],"isbn":["9780107806736","0107806738"],"last_modified_i":1618493950,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Europe - Great Britain - General","Government - General","Contemporary Politics - Britain","Political Science","Politics/International Relations"],"publisher_facet":["Stationery Office"],"subject_facet":["Contemporary Politics - Britain","Europe - Great Britain - General","Government - General","Political Science","Politics/International Relations"],"_version_":1697113913296945200,"subject_key":["contemporary_politics_-_britain","europe_-_great_britain_-_general","government_-_general","political_science","politicsinternational_relations"]}
{"key":"/works/OL10000236W","text":["/works/OL10000236W","L'axiomatique de Hilbert et l'enseignement de la géométrie au Collège et au Lycée","OL12623271M","9782843010040","2843010047","Aleas","OL3965267A","Charles Bicquilley"],"type":"work","seed":["/books/OL12623271M","/works/OL10000236W","/authors/OL3965267A"],"title":"L'axiomatique de Hilbert et l'enseignement de la géométrie au Collège et au Lycée","title_suggest":["L'axiomatique de Hilbert et l'enseignement de la géométrie au Collège et au Lycée"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623271M"],"publish_date":["January 1, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843010040","2843010047"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623271M","cover_i":3140477,"publisher":["Aleas"],"author_key":["OL3965267A"],"author_name":["Charles Bicquilley"],"id_goodreads":["6403551"],"publisher_facet":["Aleas"],"_version_":1697074596303339500,"author_facet":["OL3965267A Charles Bicquilley"]}
{"key":"/works/OL10000237M","text":["/works/OL10000237M","House of Lords Official Report 5th Series","OL10000237M","9780107806743","0107806746","Stationery Office","Law","Government - General","Government - State, Provincial & Municipal"],"type":"work","seed":["/books/OL10000237M","/works/OL10000237M","/subjects/law","/subjects/government_-_general","/subjects/government_-_state_provincial_&_municipal"],"title":"House of Lords Official Report 5th Series","title_suggest":["House of Lords Official Report 5th Series"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000237M"],"publish_date":["April 2006"],"publish_year":[2006],"first_publish_year":2006,"isbn":["9780107806743","0107806746"],"last_modified_i":1618493949,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Law","Government - General","Government - State, Provincial & Municipal"],"publisher_facet":["Stationery Office"],"subject_facet":["Government - General","Government - State, Provincial & Municipal","Law"],"_version_":1697113913185796000,"subject_key":["government_-_general","government_-_state_provincial__municipal","law"]}
{"key":"/works/OL10000237W","text":["/works/OL10000237W","Sahara","OL12623274M","9782843010217","2843010217","Aleas","OL3965268A","Jasmine Viguier"],"type":"work","seed":["/books/OL12623274M","/works/OL10000237W","/authors/OL3965268A"],"title":"Sahara","title_suggest":["Sahara"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623274M"],"publish_date":["January 1, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843010217","2843010217"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623274M","cover_i":3140480,"publisher":["Aleas"],"language":["fre"],"author_key":["OL3965268A"],"author_name":["Jasmine Viguier"],"publisher_facet":["Aleas"],"_version_":1697074595698311200,"author_facet":["OL3965268A Jasmine Viguier"]}
{"key":"/works/OL10000238M","text":["/works/OL10000238M","House of Lords Official Report 5th","Parliamentary Debates Hansard","OL10000238M","9780107806750","0107806754","Stationery Office","Law","General","Government - General"],"type":"work","seed":["/books/OL10000238M","/works/OL10000238M","/subjects/law","/subjects/general","/subjects/government_-_general"],"title":"House of Lords Official Report 5th","title_suggest":["House of Lords Official Report 5th"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000238M"],"publish_date":["June 30, 2006"],"publish_year":[2006],"first_publish_year":2006,"isbn":["9780107806750","0107806754"],"last_modified_i":1618493949,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Law","General","Government - General"],"publisher_facet":["Stationery Office"],"subject_facet":["General","Government - General","Law"],"_version_":1697113913201524700,"subject_key":["general","government_-_general","law"]}
{"key":"/works/OL10000238W","text":["/works/OL10000238W","Hérault de Séchelles, ou les infortunes de la beauté","OL12623275M","2843030110","9782843030116","La Dispute","OL3965269A","Frédéric Matonti"],"type":"work","seed":["/books/OL12623275M","/works/OL10000238W","/authors/OL3965269A"],"title":"Hérault de Séchelles, ou les infortunes de la beauté","title_suggest":["Hérault de Séchelles, ou les infortunes de la beauté"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623275M"],"publish_date":["May 30, 1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["2843030110","9782843030116"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623275M","cover_i":3140482,"publisher":["La Dispute"],"language":["fre"],"author_key":["OL3965269A"],"author_name":["Frédéric Matonti"],"publisher_facet":["La Dispute"],"_version_":1697074595963601000,"author_facet":["OL3965269A Frédéric Matonti"]}
{"key":"/works/OL10000239M","text":["/works/OL10000239M","House of Lords Official Report 5th Series","Parliamentary Debates (Hansard)","OL10000239M","9780107806767","0107806762","Stationery Office","Public Affairs & Administration","Legislative Bodies","Political Science","Politics/International Relations"],"type":"work","seed":["/books/OL10000239M","/works/OL10000239M","/subjects/public_affairs_&_administration","/subjects/legislative_bodies","/subjects/political_science","/subjects/politics/international_relations"],"title":"House of Lords Official Report 5th Series","title_suggest":["House of Lords Official Report 5th Series"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000239M"],"publish_date":["August 30, 2006"],"publish_year":[2006],"first_publish_year":2006,"isbn":["9780107806767","0107806762"],"last_modified_i":1618493949,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Public Affairs & Administration","Legislative Bodies","Political Science","Politics/International Relations"],"publisher_facet":["Stationery Office"],"subject_facet":["Legislative Bodies","Political Science","Politics/International Relations","Public Affairs & Administration"],"_version_":1697113913135464400,"subject_key":["legislative_bodies","political_science","politicsinternational_relations","public_affairs__administration"]}
{"key":"/works/OL10000239W","text":["/works/OL10000239W","Parole de sans-papiers","OL12623277M","2843030269","9782843030260","La Dispute","OL3965270A","Madjigène Cissé"],"type":"work","seed":["/books/OL12623277M","/works/OL10000239W","/authors/OL3965270A"],"title":"Parole de sans-papiers","title_suggest":["Parole de sans-papiers"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623277M"],"publish_date":["September 23, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["2843030269","9782843030260"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623277M","cover_i":3140484,"publisher":["La Dispute"],"language":["fre"],"author_key":["OL3965270A"],"author_name":["Madjigène Cissé"],"publisher_facet":["La Dispute"],"_version_":1697074596277125000,"author_facet":["OL3965270A Madjigène Cissé"]}
{"key":"/works/OL1000023W","text":["/works/OL1000023W","Dead soldiers","OL3310071M","OL3302849M","Bill Crider.","2004059404","2004043302","54767746","9780786271047","9781594141867","0786271043","159414186X","deadsoldiers00crid","Thorndike Press","Five Star","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Texas","Crimes against","Fiction","College trustees","College teachers","Military miniatures","English teachers","Collectors and collecting","Large type books","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL3310071M","/books/OL3302849M","/works/OL1000023W","/subjects/crimes_against","/subjects/fiction","/subjects/college_trustees","/subjects/college_teachers","/subjects/military_miniatures","/subjects/english_teachers","/subjects/collectors_and_collecting","/subjects/large_type_books","/subjects/place:texas","/authors/OL92934A"],"title":"Dead soldiers","title_suggest":["Dead soldiers"],"has_fulltext":true,"edition_count":2,"edition_key":["OL3310071M","OL3302849M"],"publish_date":["2004"],"publish_year":[2004],"first_publish_year":2004,"lccn":["2004059404","2004043302"],"publish_place":["Waterville, Me"],"oclc":["54767746"],"lcc":["PS-3553.00000000.R497 D385 2004","PS-3553.00000000.R497 D385 2004b"],"ddc":["813.54"],"isbn":["9780786271047","9781594141867","0786271043","159414186X"],"last_modified_i":1607433409,"ebook_count_i":1,"ia":["deadsoldiers00crid"],"public_scan_b":false,"ia_collection_s":"americana;china;fav-mikdam;spokanepubliclibrary-ol;inlibrary;delawarecountydistrictlibrary;printdisabled;library_of_atlantis;internetarchivebooks","lending_edition_s":"OL3302849M","lending_identifier_s":"deadsoldiers00crid","printdisabled_s":"OL3302849M","cover_edition_key":"OL3302849M","cover_i":1988252,"publisher":["Thorndike Press","Five Star"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"place":["Texas"],"subject":["Crimes against","Fiction","College trustees","College teachers","Military miniatures","English teachers","Collectors and collecting","Large type books","Accessible book","Protected DAISY"],"id_goodreads":["4532882","2618853"],"id_librarything":["5041979"],"ia_loaded_id":["deadsoldiers00crid"],"ia_box_id":["IA177901"],"publisher_facet":["Five Star","Thorndike Press"],"place_key":["texas"],"subject_facet":["Accessible book","Collectors and collecting","College teachers","College trustees","Crimes against","English teachers","Fiction","Large type books","Military miniatures","Protected DAISY"],"_version_":1697074596119838700,"place_facet":["Texas"],"lcc_sort":"PS-3553.00000000.R497 D385 2004b","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","collectors_and_collecting","college_teachers","college_trustees","crimes_against","english_teachers","fiction","large_type_books","military_miniatures","protected_daisy"],"ddc_sort":"813.54"}
{"key":"/works/OL10000240M","text":["/works/OL10000240M","House of Lords Official Report 5th Series","Parliamentary Debates Hansard","OL10000240M","9780107806774","0107806770","Stationery Office","Government - General","Law"],"type":"work","seed":["/books/OL10000240M","/works/OL10000240M","/subjects/government_-_general","/subjects/law"],"title":"House of Lords Official Report 5th Series","title_suggest":["House of Lords Official Report 5th Series"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000240M"],"publish_date":["September 30, 2006"],"publish_year":[2006],"first_publish_year":2006,"isbn":["9780107806774","0107806770"],"last_modified_i":1618493949,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Government - General","Law"],"publisher_facet":["Stationery Office"],"subject_facet":["Government - General","Law"],"_version_":1697113913206767600,"subject_key":["government_-_general","law"]}
{"key":"/works/OL10000240W","text":["/works/OL10000240W","Internet et la sociabilité littéraire","OL22698852M","Jean-Marc Leveratto, Mary Leontsini ; avec la collaboration de Eleni Myrivili ... [et al.].","2008448091","Leontsini, Mary.","Centre Georges Pompidou. Bibliothèque publique d'information.","France. Direction du livre et de la lecture.","2842461118","9782842461119","Bibliothèque publique d'information, Centre Pompidou","OL3965271A","Jean-Marc Leveratto","Social aspects","Books and reading","Internet","Literature and the Internet","Communication in literature","Social aspects of Books and reading","Social aspects of Internet"],"type":"work","seed":["/books/OL22698852M","/works/OL10000240W","/subjects/social_aspects","/subjects/books_and_reading","/subjects/internet","/subjects/literature_and_the_internet","/subjects/communication_in_literature","/subjects/social_aspects_of_books_and_reading","/subjects/social_aspects_of_internet","/authors/OL3965271A"],"title":"Internet et la sociabilité littéraire","title_suggest":["Internet et la sociabilité littéraire"],"has_fulltext":false,"edition_count":1,"edition_key":["OL22698852M"],"publish_date":["2008"],"publish_year":[2008],"first_publish_year":2008,"lccn":["2008448091"],"publish_place":["Paris"],"contributor":["Leontsini, Mary.","Centre Georges Pompidou. Bibliothèque publique d'information.","France. Direction du livre et de la lecture."],"lcc":["PN-0056.00000000.I64 L52 2008"],"isbn":["2842461118","9782842461119"],"last_modified_i":1608642861,"ebook_count_i":0,"publisher":["Bibliothèque publique d'information, Centre Pompidou"],"language":["fre"],"author_key":["OL3965271A"],"author_name":["Jean-Marc Leveratto"],"subject":["Social aspects","Books and reading","Internet","Literature and the Internet","Communication in literature","Social aspects of Books and reading","Social aspects of Internet"],"publisher_facet":["Bibliothèque publique d'information, Centre Pompidou"],"subject_facet":["Books and reading","Communication in literature","Internet","Literature and the Internet","Social aspects","Social aspects of Books and reading","Social aspects of Internet"],"_version_":1697074596397711400,"lcc_sort":"PN-0056.00000000.I64 L52 2008","author_facet":["OL3965271A Jean-Marc Leveratto"],"subject_key":["books_and_reading","communication_in_literature","internet","literature_and_the_internet","social_aspects","social_aspects_of_books_and_reading","social_aspects_of_internet"]}
{"key":"/works/OL10000241W","text":["/works/OL10000241W","La Mesure de l'art","La Mesure de l'art ","Sociologie de la qualité artistique","OL12623279M","2001318717","2843030323","9782843030321","La Dispute","OL3965271A","Jean-Marc Leveratto","Art and society","Art","Economic aspects","Quality (Aesthetics)"],"type":"work","seed":["/books/OL12623279M","/works/OL10000241W","/subjects/art_and_society","/subjects/art","/subjects/economic_aspects","/subjects/quality_(aesthetics)","/authors/OL3965271A"],"title":"La Mesure de l'art","title_suggest":["La Mesure de l'art"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623279M"],"publish_date":["August 31, 2000"],"publish_year":[2000],"first_publish_year":2000,"lccn":["2001318717"],"lcc":["N--0072.00000000.S6 L48 2001"],"isbn":["2843030323","9782843030321"],"last_modified_i":1607098194,"ebook_count_i":0,"cover_edition_key":"OL12623279M","cover_i":3140486,"publisher":["La Dispute"],"author_key":["OL3965271A"],"author_name":["Jean-Marc Leveratto"],"subject":["Art and society","Art","Economic aspects","Quality (Aesthetics)"],"id_goodreads":["1870109"],"publisher_facet":["La Dispute"],"subject_facet":["Art","Art and society","Economic aspects","Quality (Aesthetics)"],"_version_":1697074595751788500,"lcc_sort":"N--0072.00000000.S6 L48 2001","author_facet":["OL3965271A Jean-Marc Leveratto"],"subject_key":["art","art_and_society","economic_aspects","quality_(aesthetics)"]}
{"key":"/works/OL10000242W","text":["/works/OL10000242W","Les Retraités aux Etats-Unis","OL12623280M","9782843030383","2843030382","La Dispute","OL3965272A","l. Aproberts"],"type":"work","seed":["/books/OL12623280M","/works/OL10000242W","/authors/OL3965272A"],"title":"Les Retraités aux Etats-Unis","title_suggest":["Les Retraités aux Etats-Unis"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623280M"],"publish_date":["March 23, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782843030383","2843030382"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12623280M","cover_i":3140487,"publisher":["La Dispute"],"author_key":["OL3965272A"],"author_name":["l. Aproberts"],"id_librarything":["3617994"],"publisher_facet":["La Dispute"],"_version_":1697074596136616000,"author_facet":["OL3965272A l. Aproberts"]}
{"key":"/works/OL10000243W","text":["/works/OL10000243W","Apprendre par corps","OL12623281M","2001332902","9782843030390","2843030390","La Dispute","OL3965273A","S. Faure","Dance","Anthropological aspects","Psychological aspects","Study and teaching"],"type":"work","seed":["/books/OL12623281M","/works/OL10000243W","/subjects/dance","/subjects/anthropological_aspects","/subjects/psychological_aspects","/subjects/study_and_teaching","/authors/OL3965273A"],"title":"Apprendre par corps","title_suggest":["Apprendre par corps"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623281M"],"publish_date":["September 15, 2000"],"publish_year":[2000],"first_publish_year":2000,"lccn":["2001332902"],"lcc":["GV-1588.60000000.F38 2000"],"isbn":["9782843030390","2843030390"],"last_modified_i":1607105196,"ebook_count_i":0,"cover_edition_key":"OL12623281M","cover_i":3140488,"publisher":["La Dispute"],"author_key":["OL3965273A"],"author_name":["S. Faure"],"subject":["Dance","Anthropological aspects","Psychological aspects","Study and teaching"],"publisher_facet":["La Dispute"],"subject_facet":["Anthropological aspects","Dance","Psychological aspects","Study and teaching"],"_version_":1697074596501520400,"lcc_sort":"GV-1588.60000000.F38 2000","author_facet":["OL3965273A S. Faure"],"subject_key":["anthropological_aspects","dance","psychological_aspects","study_and_teaching"]}
{"key":"/works/OL10000244W","text":["/works/OL10000244W","La vigne du maréchal Pétain, ou, Un faire-valoir bourguignon de la révolution nationale","La vigne du maréchal Pétain, ou, Un faire-valoir bourguignon de la Révolution nationale","vigne du maréchal Pétain, ou, Un faire-valoir bourguignon de la révolution nationale","Faire-valoir bourguignon de la Révolution nationale","OL20994462M","OL19950540M","Jean Vigreux.","2005543105","9782915552126","2915552126","Editions universitaires de Dijon","OL3965276A","Jean Vigreux","Philippe Pétain (1856-1951)","1940-1945 German occupation","Beaune","Burgundy","france","Biography","History","Influence","Marshals","Politics and government","Propaganda","Public opinion","Wine and wine making","World War, 1939-1945","1940-1945","20th century","German occupation, 1940-1945"],"type":"work","seed":["/books/OL20994462M","/books/OL19950540M","/works/OL10000244W","/subjects/biography","/subjects/history","/subjects/influence","/subjects/marshals","/subjects/politics_and_government","/subjects/propaganda","/subjects/public_opinion","/subjects/wine_and_wine_making","/subjects/world_war_1939-1945","/subjects/person:philippe_pétain_(1856-1951)","/subjects/place:1940-1945_german_occupation","/subjects/place:beaune","/subjects/place:burgundy","/subjects/place:france","/subjects/time:1940-1945","/subjects/time:20th_century","/subjects/time:german_occupation_1940-1945","/authors/OL3965276A"],"title":"La vigne du maréchal Pétain, ou, Un faire-valoir bourguignon de la révolution nationale","title_suggest":["La vigne du maréchal Pétain, ou, Un faire-valoir bourguignon de la révolution nationale"],"has_fulltext":false,"edition_count":2,"edition_key":["OL20994462M","OL19950540M"],"publish_date":["2005"],"publish_year":[2005],"first_publish_year":2005,"lccn":["2005543105"],"publish_place":["Dijon"],"lcc":["D--0761.00000000.V48 2005"],"ddc":["944"],"isbn":["9782915552126","2915552126"],"last_modified_i":1607893436,"ebook_count_i":0,"cover_edition_key":"OL19950540M","cover_i":5504995,"publisher":["Editions universitaires de Dijon"],"language":["fre"],"author_key":["OL3965276A"],"author_name":["Jean Vigreux"],"person":["Philippe Pétain (1856-1951)"],"place":["1940-1945 German occupation","Beaune","Burgundy","france"],"subject":["Biography","History","Influence","Marshals","Politics and government","Propaganda","Public opinion","Wine and wine making","World War, 1939-1945"],"time":["1940-1945","20th century","German occupation, 1940-1945"],"id_goodreads":["7264145"],"publisher_facet":["Editions universitaires de Dijon"],"person_key":["philippe_pétain_(1856-1951)"],"place_key":["1940-1945_german_occupation","beaune","burgundy","france"],"time_facet":["1940-1945","20th century","German occupation, 1940-1945"],"person_facet":["Philippe Pétain (1856-1951)"],"subject_facet":["Biography","History","Influence","Marshals","Politics and government","Propaganda","Public opinion","Wine and wine making","World War, 1939-1945"],"_version_":1697074596266639400,"place_facet":["1940-1945 German occupation","Beaune","Burgundy","france"],"lcc_sort":"D--0761.00000000.V48 2005","author_facet":["OL3965276A Jean Vigreux"],"subject_key":["biography","history","influence","marshals","politics_and_government","propaganda","public_opinion","wine_and_wine_making","world_war_1939-1945"],"ddc_sort":"944","time_key":["1940-1945","20th_century","german_occupation_1940-1945"]}
{"key":"/works/OL10000245W","text":["/works/OL10000245W","Travail et sante mentale","OL12623284M","2001442153","284303048X","9782843030482","La Dispute","OL3965277A","I. Billard","Industrial Psychology","History"],"type":"work","seed":["/books/OL12623284M","/works/OL10000245W","/subjects/industrial_psychology","/subjects/history","/authors/OL3965277A"],"title":"Travail et sante mentale","title_suggest":["Travail et sante mentale"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623284M"],"publish_date":["May 9, 2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2001442153"],"lcc":["HF-5548.80000000.B48 2001"],"isbn":["284303048X","9782843030482"],"last_modified_i":1607154518,"ebook_count_i":0,"cover_edition_key":"OL12623284M","cover_i":3140491,"publisher":["La Dispute"],"author_key":["OL3965277A"],"author_name":["I. Billard"],"subject":["Industrial Psychology","History"],"id_goodreads":["7255911"],"publisher_facet":["La Dispute"],"subject_facet":["History","Industrial Psychology"],"_version_":1697074596646224000,"lcc_sort":"HF-5548.80000000.B48 2001","author_facet":["OL3965277A I. Billard"],"subject_key":["history","industrial_psychology"]}
{"key":"/works/OL10000246W","text":["/works/OL10000246W","Le Jouet et ses usages sociaux","OL12623285M","2002420744","9782843030529","2843030528","La Dispute","OL3965278A","Sandrine Vincent","Toys","Social aspects"],"type":"work","seed":["/books/OL12623285M","/works/OL10000246W","/subjects/toys","/subjects/social_aspects","/authors/OL3965278A"],"title":"Le Jouet et ses usages sociaux","title_suggest":["Le Jouet et ses usages sociaux"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623285M"],"publish_date":["October 31, 2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2002420744"],"lcc":["HQ-0784.00000000.T68 V56 2001"],"isbn":["9782843030529","2843030528"],"last_modified_i":1607327833,"ebook_count_i":0,"cover_edition_key":"OL12623285M","cover_i":3140492,"publisher":["La Dispute"],"author_key":["OL3965278A"],"author_name":["Sandrine Vincent"],"subject":["Toys","Social aspects"],"publisher_facet":["La Dispute"],"subject_facet":["Social aspects","Toys"],"_version_":1697074596325359600,"lcc_sort":"HQ-0784.00000000.T68 V56 2001","author_facet":["OL3965278A Sandrine Vincent"],"subject_key":["social_aspects","toys"]}
{"key":"/works/OL10000247W","text":["/works/OL10000247W","Le Deuxieme Corps","OL12623287M","9782843030550","2843030552","La Dispute","OL3965280A","Marie Pezé"],"type":"work","seed":["/books/OL12623287M","/works/OL10000247W","/authors/OL3965280A"],"title":"Le Deuxieme Corps","title_suggest":["Le Deuxieme Corps"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623287M"],"publish_date":["February 24, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843030550","2843030552"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623287M","cover_i":3140494,"publisher":["La Dispute"],"author_key":["OL3965280A"],"author_name":["Marie Pezé"],"publisher_facet":["La Dispute"],"_version_":1697074596483694600,"author_facet":["OL3965280A Marie Pezé"]}
{"key":"/works/OL10000248W","text":["/works/OL10000248W","La Mixité au travail","OL12623289M","2002494498","9782843030574","2843030579","La Dispute","OL3965281A","Sabine Fortino","Sex discrimination in employment"],"type":"work","seed":["/books/OL12623289M","/works/OL10000248W","/subjects/sex_discrimination_in_employment","/authors/OL3965281A"],"title":"La Mixité au travail","title_suggest":["La Mixité au travail"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623289M"],"publish_date":["April 24, 2002"],"publish_year":[2002],"first_publish_year":2002,"lccn":["2002494498"],"lcc":["HD-6060.50000000.F8 F67 2002"],"isbn":["9782843030574","2843030579"],"last_modified_i":1607354267,"ebook_count_i":0,"cover_edition_key":"OL12623289M","cover_i":3140496,"publisher":["La Dispute"],"author_key":["OL3965281A"],"author_name":["Sabine Fortino"],"subject":["Sex discrimination in employment"],"publisher_facet":["La Dispute"],"subject_facet":["Sex discrimination in employment"],"_version_":1697074596560240600,"lcc_sort":"HD-6060.50000000.F8 F67 2002","author_facet":["OL3965281A Sabine Fortino"],"subject_key":["sex_discrimination_in_employment"]}
{"key":"/works/OL10000249M","text":["/works/OL10000249M","Journals of the House of Lords Sessions 1 983-84 to 1992-93","OL10000249M","650398592","9780108202315","0108202313","Stationery Office","Bibliographies, catalogues, discographies","Yearbooks & Annuals","Reference"],"type":"work","seed":["/books/OL10000249M","/works/OL10000249M","/subjects/bibliographies_catalogues_discographies","/subjects/yearbooks_&_annuals","/subjects/reference"],"title":"Journals of the House of Lords Sessions 1 983-84 to 1992-93","title_suggest":["Journals of the House of Lords Sessions 1 983-84 to 1992-93"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000249M"],"publish_date":["January 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["650398592"],"isbn":["9780108202315","0108202313"],"last_modified_i":1618493947,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Bibliographies, catalogues, discographies","Yearbooks & Annuals","Reference"],"publisher_facet":["Stationery Office"],"subject_facet":["Bibliographies, catalogues, discographies","Reference","Yearbooks & Annuals"],"_version_":1697113913081987000,"subject_key":["bibliographies_catalogues_discographies","reference","yearbooks__annuals"]}
{"key":"/works/OL10000249W","text":["/works/OL10000249W","Vertiges technologiques","OL12623290M","2843030587","9782843030581","La Dispute","OL3965282A","Michèle Descolonges"],"type":"work","seed":["/books/OL12623290M","/works/OL10000249W","/authors/OL3965282A"],"title":"Vertiges technologiques","title_suggest":["Vertiges technologiques"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623290M"],"publish_date":["September 18, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2843030587","9782843030581"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623290M","cover_i":3140497,"publisher":["La Dispute"],"author_key":["OL3965282A"],"author_name":["Michèle Descolonges"],"id_goodreads":["6675012"],"publisher_facet":["La Dispute"],"_version_":1697074596441751600,"author_facet":["OL3965282A Michèle Descolonges"]}
{"key":"/works/OL1000024W","text":["/works/OL1000024W","Death by accident","a Sheriff Dan Rhodes mystery","OL688451M","OL374114M","Bill Crider.","97035452","98035883","37663224","9781568956633","9780312180805","1568956630","0312180802","deathbyaccidents00crid","Wheeler Pub.","St. Martin's Press","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Texas","Fiction","Dan Rhodes (Fictitious character)","Sheriffs","Detective and mystery stories","Large type books","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL688451M","/books/OL374114M","/works/OL1000024W","/subjects/fiction","/subjects/dan_rhodes_(fictitious_character)","/subjects/sheriffs","/subjects/detective_and_mystery_stories","/subjects/large_type_books","/subjects/place:texas","/authors/OL92934A"],"title":"Death by accident","title_suggest":["Death by accident"],"has_fulltext":true,"edition_count":2,"edition_key":["OL688451M","OL374114M"],"publish_date":["1998"],"publish_year":[1998],"first_publish_year":1998,"lccn":["97035452","98035883"],"publish_place":["New York","Rockland, Mass"],"oclc":["37663224"],"lcc":["PS-3553.00000000.R497 D39 1998b","PS-3553.00000000.R497 D39 1998"],"ddc":["813.54"],"isbn":["9781568956633","9780312180805","1568956630","0312180802"],"last_modified_i":1606582492,"ebook_count_i":1,"ia":["deathbyaccidents00crid"],"public_scan_b":false,"ia_collection_s":"china;inlibrary;printdisabled;tamu-evanslibrary-ol;internetarchivebooks;delawarecountydistrictlibrary-ol","lending_edition_s":"OL688451M","lending_identifier_s":"deathbyaccidents00crid","printdisabled_s":"OL688451M","cover_edition_key":"OL374114M","cover_i":3736800,"publisher":["Wheeler Pub.","St. Martin's Press"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"place":["Texas"],"subject":["Fiction","Dan Rhodes (Fictitious character)","Sheriffs","Detective and mystery stories","Large type books","Accessible book","Protected DAISY"],"id_goodreads":["147129","1072033"],"id_librarything":["1436507"],"ia_loaded_id":["deathbyaccidents00crid"],"ia_box_id":["IA171101"],"publisher_facet":["St. Martin's Press","Wheeler Pub."],"place_key":["texas"],"subject_facet":["Accessible book","Dan Rhodes (Fictitious character)","Detective and mystery stories","Fiction","Large type books","Protected DAISY","Sheriffs"],"_version_":1697074596056924200,"place_facet":["Texas"],"lcc_sort":"PS-3553.00000000.R497 D39 1998b","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","dan_rhodes_(fictitious_character)","detective_and_mystery_stories","fiction","large_type_books","protected_daisy","sheriffs"],"ddc_sort":"813.54"}
{"key":"/works/OL10000250M","text":["/works/OL10000250M","Journals of the House of Lords","OL10000250M","9780108202322","0108202321","Stationery Office","Yearbooks & Annuals","Reference"],"type":"work","seed":["/books/OL10000250M","/works/OL10000250M","/subjects/yearbooks_&_annuals","/subjects/reference"],"title":"Journals of the House of Lords","title_suggest":["Journals of the House of Lords"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000250M"],"publish_date":["January 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9780108202322","0108202321"],"last_modified_i":1618493947,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Yearbooks & Annuals","Reference"],"publisher_facet":["Stationery Office"],"subject_facet":["Reference","Yearbooks & Annuals"],"_version_":1697113913055772700,"subject_key":["reference","yearbooks__annuals"]}
{"key":"/works/OL10000250W","text":["/works/OL10000250W","Les Patrons, l'Etat et la Formation des jeunes","OL12623291M","300937188","2843030595","9782843030598","La Dispute","OL3965283A","Gilles Moreau"],"type":"work","seed":["/books/OL12623291M","/works/OL10000250W","/authors/OL3965283A"],"title":"Les Patrons, l'Etat et la Formation des jeunes","title_suggest":["Les Patrons, l'Etat et la Formation des jeunes"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623291M"],"publish_date":["September 11, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["300937188"],"isbn":["2843030595","9782843030598"],"last_modified_i":1304045047,"ebook_count_i":0,"cover_edition_key":"OL12623291M","cover_i":3140498,"publisher":["La Dispute"],"author_key":["OL3965283A"],"author_name":["Gilles Moreau"],"publisher_facet":["La Dispute"],"_version_":1697074596208967700,"author_facet":["OL3965283A Gilles Moreau"]}
{"key":"/works/OL10000251M","text":["/works/OL10000251M","Journals of the House of Lords","Volume 236, 2002-2003","OL10000251M","9780108202377","0108202372","Stationery Office","Reference","Political Science","Politics/International Relations"],"type":"work","seed":["/books/OL10000251M","/works/OL10000251M","/subjects/reference","/subjects/political_science","/subjects/politics/international_relations"],"title":"Journals of the House of Lords","title_suggest":["Journals of the House of Lords"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000251M"],"publish_date":["February 23, 2005"],"publish_year":[2005],"first_publish_year":2005,"isbn":["9780108202377","0108202372"],"last_modified_i":1618493950,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Reference","Political Science","Politics/International Relations"],"publisher_facet":["Stationery Office"],"subject_facet":["Political Science","Politics/International Relations","Reference"],"_version_":1697113913342034000,"subject_key":["political_science","politicsinternational_relations","reference"]}
{"key":"/works/OL10000251W","text":["/works/OL10000251W","Les médecins","Les médecins.","OL22804445M","2707117226","9782707117229","La Découverte","OL3965284A","Michel Arliaud"],"type":"work","seed":["/books/OL22804445M","/works/OL10000251W","/authors/OL3965284A"],"title":"Les médecins","title_suggest":["Les médecins"],"has_fulltext":false,"edition_count":1,"edition_key":["OL22804445M"],"publish_date":["1987"],"publish_year":[1987],"first_publish_year":1987,"publish_place":["Paris"],"isbn":["2707117226","9782707117229"],"last_modified_i":1260864302,"ebook_count_i":0,"publisher":["La Découverte"],"language":["fre"],"author_key":["OL3965284A"],"author_name":["Michel Arliaud"],"publisher_facet":["La Découverte"],"_version_":1697074596635738000,"author_facet":["OL3965284A Michel Arliaud"]}
{"key":"/works/OL10000252M","text":["/works/OL10000252M","Journals of the House of Lords","OL10000252M","0108202380","9780108202384","Stationery Office","Government - Executive Branch","Government - National","Political Science","Politics/International Relations"],"type":"work","seed":["/books/OL10000252M","/works/OL10000252M","/subjects/government_-_executive_branch","/subjects/government_-_national","/subjects/political_science","/subjects/politics/international_relations"],"title":"Journals of the House of Lords","title_suggest":["Journals of the House of Lords"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000252M"],"publish_date":["October 31, 2005"],"publish_year":[2005],"first_publish_year":2005,"isbn":["0108202380","9780108202384"],"last_modified_i":1618493947,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Government - Executive Branch","Government - National","Political Science","Politics/International Relations"],"publisher_facet":["Stationery Office"],"subject_facet":["Government - Executive Branch","Government - National","Political Science","Politics/International Relations"],"_version_":1697113913089327000,"subject_key":["government_-_executive_branch","government_-_national","political_science","politicsinternational_relations"]}
{"key":"/works/OL10000252W","text":["/works/OL10000252W","Disertazioni accademiche di vario argomento","OL23527003M","disertazioniacc00vercgoog","OL3965286A","Carlo Vercellone","Accessible book"],"type":"work","seed":["/books/OL23527003M","/works/OL10000252W","/authors/OL3965286A"],"title":"Disertazioni accademiche di vario argomento","title_suggest":["Disertazioni accademiche di vario argomento"],"has_fulltext":true,"edition_count":1,"edition_key":["OL23527003M"],"publish_date":["1864"],"publish_year":[1864],"first_publish_year":1864,"last_modified_i":1272437659,"ebook_count_i":1,"ia":["disertazioniacc00vercgoog"],"public_scan_b":true,"ia_collection_s":"europeanlibraries","cover_edition_key":"OL23527003M","cover_i":6228633,"language":["ita"],"author_key":["OL3965286A"],"author_name":["Carlo Vercellone"],"subject":["Accessible book"],"subject_facet":["Accessible book"],"_version_":1697074595636445200,"author_facet":["OL3965286A Carlo Vercellone"],"subject_key":["accessible_book"]}
{"key":"/works/OL10000253M","text":["/works/OL10000253M","Journals of the House of Lords","OL10000253M","0108202399","9780108202391","Stationery Office","Construction","Law"],"type":"work","seed":["/books/OL10000253M","/works/OL10000253M","/subjects/construction","/subjects/law"],"title":"Journals of the House of Lords","title_suggest":["Journals of the House of Lords"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000253M"],"publish_date":["February 2006"],"publish_year":[2006],"first_publish_year":2006,"isbn":["0108202399","9780108202391"],"last_modified_i":1618493949,"ebook_count_i":0,"publisher":["Stationery Office"],"language":["eng"],"subject":["Construction","Law"],"publisher_facet":["Stationery Office"],"subject_facet":["Construction","Law"],"_version_":1697113913225642000,"subject_key":["construction","law"]}
{"key":"/works/OL10000253W","text":["/works/OL10000253W","Sommes-nous sortis du capitalisme industriel ?","OL12623297M","2003463940","9782843030680","2843030684","La Dispute","OL3965286A","Carlo Vercellone","Capitalism","Division of labor","Technological innovations","Economic aspects"],"type":"work","seed":["/books/OL12623297M","/works/OL10000253W","/subjects/capitalism","/subjects/division_of_labor","/subjects/technological_innovations","/subjects/economic_aspects","/authors/OL3965286A"],"title":"Sommes-nous sortis du capitalisme industriel ?","title_suggest":["Sommes-nous sortis du capitalisme industriel ?"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623297M"],"publish_date":["January 16, 2003"],"publish_year":[2003],"first_publish_year":2003,"lccn":["2003463940"],"lcc":["HB-0501.00000000.S7742 2002"],"isbn":["9782843030680","2843030684"],"last_modified_i":1607382433,"ebook_count_i":0,"cover_edition_key":"OL12623297M","cover_i":3140504,"publisher":["La Dispute"],"language":["fre"],"author_key":["OL3965286A"],"author_name":["Carlo Vercellone"],"subject":["Capitalism","Division of labor","Technological innovations","Economic aspects"],"id_goodreads":["2693463"],"publisher_facet":["La Dispute"],"subject_facet":["Capitalism","Division of labor","Economic aspects","Technological innovations"],"_version_":1697074595763323000,"lcc_sort":"HB-0501.00000000.S7742 2002","author_facet":["OL3965286A Carlo Vercellone"],"subject_key":["capitalism","division_of_labor","economic_aspects","technological_innovations"]}
{"key":"/works/OL10000254M","text":["/works/OL10000254M","The Odd Women","OL10000254M","0108220168","9780108220166"],"type":"work","seed":["/books/OL10000254M","/works/OL10000254M"],"title":"The Odd Women","title_suggest":["The Odd Women"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000254M"],"isbn":["0108220168","9780108220166"],"last_modified_i":1618493949,"ebook_count_i":0,"_version_":1697113913179504600}
{"key":"/works/OL10000254W","text":["/works/OL10000254W","Un codice greco palimpsesto [of the Prophets] scoperto dai monaci basiliani ..","Un codice greco palimpsesto [of the Prophets] scoperto dai monaci basiliani ...","OL23529170M","uncodicegrecopa01vercgoog","OL3965286A","Carlo Vercellone","Accessible book"],"type":"work","seed":["/books/OL23529170M","/works/OL10000254W","/authors/OL3965286A"],"title":"Un codice greco palimpsesto [of the Prophets] scoperto dai monaci basiliani ..","title_suggest":["Un codice greco palimpsesto [of the Prophets] scoperto dai monaci basiliani .."],"has_fulltext":true,"edition_count":1,"edition_key":["OL23529170M"],"publish_date":["1866"],"publish_year":[1866],"first_publish_year":1866,"last_modified_i":1272437659,"ebook_count_i":1,"ia":["uncodicegrecopa01vercgoog"],"public_scan_b":true,"ia_collection_s":"europeanlibraries","cover_edition_key":"OL23529170M","cover_i":6230481,"language":["ita"],"author_key":["OL3965286A"],"author_name":["Carlo Vercellone"],"subject":["Accessible book"],"subject_facet":["Accessible book"],"_version_":1697074596503617500,"author_facet":["OL3965286A Carlo Vercellone"],"subject_key":["accessible_book"]}
{"key":"/works/OL10000255W","text":["/works/OL10000255W","Un codice greco palimpsesto [of the Prophets] scoperto dai monaci basiliani di Grottaferata ..","Un codice greco palimpsesto [of the Prophets] scoperto dai monaci basiliani di Grottaferata ...","OL23528128M","uncodicegrecopa00vercgoog","OL3965286A","Carlo Vercellone","Accessible book"],"type":"work","seed":["/books/OL23528128M","/works/OL10000255W","/authors/OL3965286A"],"title":"Un codice greco palimpsesto [of the Prophets] scoperto dai monaci basiliani di Grottaferata ..","title_suggest":["Un codice greco palimpsesto [of the Prophets] scoperto dai monaci basiliani di Grottaferata .."],"has_fulltext":true,"edition_count":1,"edition_key":["OL23528128M"],"publish_date":["1866"],"publish_year":[1866],"first_publish_year":1866,"last_modified_i":1590136291,"ebook_count_i":1,"ia":["uncodicegrecopa00vercgoog"],"public_scan_b":true,"ia_collection_s":"europeanlibraries","cover_edition_key":"OL23528128M","cover_i":9985517,"language":["ita"],"author_key":["OL3965286A"],"author_name":["Carlo Vercellone"],"subject":["Accessible book"],"subject_facet":["Accessible book"],"_version_":1697074596486840300,"author_facet":["OL3965286A Carlo Vercellone"],"subject_key":["accessible_book"]}
{"key":"/works/OL10000256W","text":["/works/OL10000256W","Variae lectiones Vulgatae Latinae Bibliorum editionis","OL23527337M","24919887","variaelectiones00vercgoog","I. Spithöver","OL3965286A","Carlo Vercellone","Accessible book"],"type":"work","seed":["/books/OL23527337M","/works/OL10000256W","/authors/OL3965286A"],"title":"Variae lectiones Vulgatae Latinae Bibliorum editionis","title_suggest":["Variae lectiones Vulgatae Latinae Bibliorum editionis"],"has_fulltext":true,"edition_count":1,"edition_key":["OL23527337M"],"publish_date":["1860"],"publish_year":[1860],"first_publish_year":1860,"oclc":["24919887"],"last_modified_i":1272437659,"ebook_count_i":1,"ia":["variaelectiones00vercgoog"],"public_scan_b":true,"ia_collection_s":"americana;fav-nicnorelli","cover_edition_key":"OL23527337M","cover_i":6228916,"publisher":["I. Spithöver"],"language":["lat"],"author_key":["OL3965286A"],"author_name":["Carlo Vercellone"],"subject":["Accessible book"],"publisher_facet":["I. Spithöver"],"subject_facet":["Accessible book"],"_version_":1697074596262445000,"author_facet":["OL3965286A Carlo Vercellone"],"subject_key":["accessible_book"]}
{"key":"/works/OL10000257W","text":["/works/OL10000257W","Après sangatte…","Après sangatte… ","Nouvelles immigrations , nouveaux enjeux","OL12623299M","2843030749","9782843030741","La Dispute","OL3965287A","Smaïn Laacher"],"type":"work","seed":["/books/OL12623299M","/works/OL10000257W","/authors/OL3965287A"],"title":"Après sangatte…","title_suggest":["Après sangatte…"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623299M"],"publish_date":["October 23, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2843030749","9782843030741"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623299M","cover_i":3140506,"publisher":["La Dispute"],"language":["fre"],"author_key":["OL3965287A"],"author_name":["Smaïn Laacher"],"id_goodreads":["4424103"],"publisher_facet":["La Dispute"],"_version_":1697074596218404900,"author_facet":["OL3965287A Smaïn Laacher"]}
{"key":"/works/OL10000258W","text":["/works/OL10000258W","Carte d'identité","OL22172705M","[dessin de] Colette Deblé ; [texte de] Christian Gabrielle Guez Ricord.","Guez Ricord, Christian Gabrielle, 1948-","Unes","OL3965288A","Colette Deblé"],"type":"work","seed":["/books/OL22172705M","/works/OL10000258W","/authors/OL3965288A"],"title":"Carte d'identité","title_suggest":["Carte d'identité"],"has_fulltext":false,"edition_count":1,"edition_key":["OL22172705M"],"publish_date":["1982"],"publish_year":[1982],"first_publish_year":1982,"publish_place":["Trans [en-Provence]"],"contributor":["Guez Ricord, Christian Gabrielle, 1948-"],"last_modified_i":1260862884,"ebook_count_i":0,"publisher":["Unes"],"language":["fre"],"author_key":["OL3965288A"],"author_name":["Colette Deblé"],"publisher_facet":["Unes"],"_version_":1697074595943678000,"author_facet":["OL3965288A Colette Deblé"]}
{"key":"/works/OL10000259W","text":["/works/OL10000259W","Cannibales","OL12623303M","9782843040078","2843040078","Zulma","OL3965289A","Emmanuel Ménard"],"type":"work","seed":["/books/OL12623303M","/works/OL10000259W","/authors/OL3965289A"],"title":"Cannibales","title_suggest":["Cannibales"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623303M"],"publish_date":["January 2, 1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["9782843040078","2843040078"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623303M","cover_i":3140510,"publisher":["Zulma"],"language":["fre"],"author_key":["OL3965289A"],"author_name":["Emmanuel Ménard"],"id_goodreads":["437182"],"publisher_facet":["Zulma"],"_version_":1697074596358914000,"author_facet":["OL3965289A Emmanuel Ménard"]}
{"key":"/works/OL1000025W","text":["/works/OL1000025W","Gator Kill","Gator kill","OL1561167M","OL9486888M","Bill Crider.","91042478","34353628","9780802732132","0802732135","9781883268275","1883268273","Walker","Spellbinders","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Texas","Fiction","Private investigators","Truman Smith (Fictitious character)"],"type":"work","seed":["/books/OL1561167M","/books/OL9486888M","/works/OL1000025W","/subjects/fiction","/subjects/private_investigators","/subjects/truman_smith_(fictitious_character)","/subjects/place:texas","/authors/OL92934A"],"title":"Gator Kill","title_suggest":["Gator Kill"],"has_fulltext":false,"edition_count":2,"edition_key":["OL1561167M","OL9486888M"],"publish_date":["February 1996","1992"],"publish_year":[1992,1996],"first_publish_year":1992,"lccn":["91042478"],"publish_place":["New York"],"oclc":["34353628"],"lcc":["PS-3553.00000000.R497 G38 1992"],"ddc":["813.54"],"isbn":["9780802732132","0802732135","9781883268275","1883268273"],"last_modified_i":1605269773,"ebook_count_i":0,"publisher":["Walker","Spellbinders"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"place":["Texas"],"subject":["Fiction","Private investigators","Truman Smith (Fictitious character)"],"id_goodreads":["1014975","1014976"],"id_librarything":["1716261"],"ia_loaded_id":["gatorkill00crid"],"ia_box_id":["IA143621"],"publisher_facet":["Spellbinders","Walker"],"place_key":["texas"],"subject_facet":["Fiction","Private investigators","Truman Smith (Fictitious character)"],"_version_":1697074596180656000,"place_facet":["Texas"],"lcc_sort":"PS-3553.00000000.R497 G38 1992","author_facet":["OL92934A Bill Crider"],"subject_key":["fiction","private_investigators","truman_smith_(fictitious_character)"],"ddc_sort":"813.54"}
{"key":"/works/OL10000260W","text":["/works/OL10000260W","C'est toujours moins grave qu'une jambe cassée","OL12625862M","9782845470569","2845470568","H&O Editions","OL3965289A","Emmanuel Ménard"],"type":"work","seed":["/books/OL12625862M","/works/OL10000260W","/authors/OL3965289A"],"title":"C'est toujours moins grave qu'une jambe cassée","title_suggest":["C'est toujours moins grave qu'une jambe cassée"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12625862M"],"publish_date":["January 10, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["9782845470569","2845470568"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12625862M","cover_i":3142773,"publisher":["H&O Editions"],"language":["fre"],"author_key":["OL3965289A"],"author_name":["Emmanuel Ménard"],"id_goodreads":["5911574"],"publisher_facet":["H&O Editions"],"_version_":1697074596462723000,"author_facet":["OL3965289A Emmanuel Ménard"]}
{"key":"/works/OL10000261W","text":["/works/OL10000261W","Envoyés spécieux","OL12625843M","9782845470347","2845470347","H&O éditions","OL3965289A","Emmanuel Ménard"],"type":"work","seed":["/books/OL12625843M","/works/OL10000261W","/authors/OL3965289A"],"title":"Envoyés spécieux","title_suggest":["Envoyés spécieux"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12625843M"],"publish_date":["December 15, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782845470347","2845470347"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12625843M","cover_i":3142759,"publisher":["H&O éditions"],"language":["fre"],"author_key":["OL3965289A"],"author_name":["Emmanuel Ménard"],"id_goodreads":["5911573"],"publisher_facet":["H&O éditions"],"_version_":1697074596474257400,"author_facet":["OL3965289A Emmanuel Ménard"]}
{"key":"/works/OL10000262W","text":["/works/OL10000262W","Parler d'homosexualité","OL12627173M","9782846750288","2846750289","EdLM","OL3965289A","Emmanuel Ménard"],"type":"work","seed":["/books/OL12627173M","/works/OL10000262W","/authors/OL3965289A"],"title":"Parler d'homosexualité","title_suggest":["Parler d'homosexualité"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12627173M"],"publish_date":["September 9, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782846750288","2846750289"],"last_modified_i":1282054373,"ebook_count_i":0,"cover_edition_key":"OL12627173M","cover_i":3143911,"publisher":["EdLM"],"language":["fre"],"author_key":["OL3965289A"],"author_name":["Emmanuel Ménard"],"id_goodreads":["5911570"],"id_librarything":["8099164"],"publisher_facet":["EdLM"],"_version_":1697074596527734800,"author_facet":["OL3965289A Emmanuel Ménard"]}
{"key":"/works/OL10000263W","text":["/works/OL10000263W","La méthode Gentili","Une approche éthologique du cheval","OL12623307M","2843040248","9782843040245","Zulma","OL3965290A","Gentili/Franchini Bi"],"type":"work","seed":["/books/OL12623307M","/works/OL10000263W","/authors/OL3965290A"],"title":"La méthode Gentili","title_suggest":["La méthode Gentili"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623307M"],"publish_date":["January 15, 1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["2843040248","9782843040245"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623307M","cover_i":3140514,"publisher":["Zulma"],"language":["fre"],"author_key":["OL3965290A"],"author_name":["Gentili/Franchini Bi"],"publisher_facet":["Zulma"],"_version_":1697074596475306000,"author_facet":["OL3965290A Gentili/Franchini Bi"]}
{"key":"/works/OL10000264W","text":["/works/OL10000264W","Tango chinois","OL12623310M","9782843040337","2843040337","Zulma","OL3965291A","Horst Hugo"],"type":"work","seed":["/books/OL12623310M","/works/OL10000264W","/authors/OL3965291A"],"title":"Tango chinois","title_suggest":["Tango chinois"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623310M"],"publish_date":["May 7, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782843040337","2843040337"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623310M","cover_i":3140517,"publisher":["Zulma"],"language":["fre"],"author_key":["OL3965291A"],"author_name":["Horst Hugo"],"publisher_facet":["Zulma"],"_version_":1697074595722428400,"author_facet":["OL3965291A Horst Hugo"]}
{"key":"/works/OL10000265W","text":["/works/OL10000265W","La cuisine en jeux","OL12623312M","2843040361","9782843040368","Zulma","OL3965292A","Bens Jacques"],"type":"work","seed":["/books/OL12623312M","/works/OL10000265W","/authors/OL3965292A"],"title":"La cuisine en jeux","title_suggest":["La cuisine en jeux"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623312M"],"publish_date":["May 7, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["2843040361","9782843040368"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12623312M","cover_i":3140519,"publisher":["Zulma"],"language":["fre"],"author_key":["OL3965292A"],"author_name":["Bens Jacques"],"id_librarything":["2692099"],"publisher_facet":["Zulma"],"_version_":1697074595786391600,"author_facet":["OL3965292A Bens Jacques"]}
{"key":"/works/OL10000266W","text":["/works/OL10000266W","Jazz en jeux","OL12623313M","9782843040375","284304037X","Zulma","OL3965293A","Misterioso"],"type":"work","seed":["/books/OL12623313M","/works/OL10000266W","/authors/OL3965293A"],"title":"Jazz en jeux","title_suggest":["Jazz en jeux"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623313M"],"publish_date":["January 1, 1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["9782843040375","284304037X"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623313M","cover_i":3140520,"publisher":["Zulma"],"language":["fre"],"author_key":["OL3965293A"],"author_name":["Misterioso"],"publisher_facet":["Zulma"],"_version_":1697074596214210600,"author_facet":["OL3965293A Misterioso"]}
{"key":"/works/OL10000267W","text":["/works/OL10000267W","Catch a Cannes","roman spécial-police.","OL15234540M","461883367","2265023833","9782265023833","Fleuve Noir","OL3965294A","Jean Mazarin"],"type":"work","seed":["/books/OL15234540M","/works/OL10000267W","/authors/OL3965294A"],"title":"Catch a Cannes","title_suggest":["Catch a Cannes"],"has_fulltext":false,"edition_count":1,"edition_key":["OL15234540M"],"publish_date":["1983"],"publish_year":[1983],"first_publish_year":1983,"publish_place":["Paris"],"oclc":["461883367"],"isbn":["2265023833","9782265023833"],"last_modified_i":1303917214,"ebook_count_i":0,"publisher":["Fleuve Noir"],"language":["fre"],"author_key":["OL3965294A"],"author_name":["Jean Mazarin"],"publisher_facet":["Fleuve Noir"],"_version_":1697074596644126700,"author_facet":["OL3965294A Jean Mazarin"]}
{"key":"/works/OL10000268W","text":["/works/OL10000268W","Collabo-song","OL12623315M","2843040485","9782843040481","Zulma","OL3965294A","Jean Mazarin"],"type":"work","seed":["/books/OL12623315M","/works/OL10000268W","/authors/OL3965294A"],"title":"Collabo-song","title_suggest":["Collabo-song"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623315M"],"publish_date":["May 7, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["2843040485","9782843040481"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623315M","cover_i":3140522,"publisher":["Zulma"],"language":["fre"],"author_key":["OL3965294A"],"author_name":["Jean Mazarin"],"publisher_facet":["Zulma"],"_version_":1697074596291805200,"author_facet":["OL3965294A Jean Mazarin"]}
{"key":"/works/OL10000269W","text":["/works/OL10000269W","L' univers fêle","univers fêle","OL20820135M","Jean Mazarin.","Fleuve Noir","OL3965294A","Jean Mazarin"],"type":"work","seed":["/books/OL20820135M","/works/OL10000269W","/authors/OL3965294A"],"title":"L' univers fêle","title_suggest":["L' univers fêle"],"has_fulltext":false,"edition_count":1,"edition_key":["OL20820135M"],"publish_date":["1978"],"publish_year":[1978],"first_publish_year":1978,"publish_place":["Paris"],"last_modified_i":1260860858,"ebook_count_i":0,"publisher":["Fleuve Noir"],"language":["eng"],"author_key":["OL3965294A"],"author_name":["Jean Mazarin"],"publisher_facet":["Fleuve Noir"],"_version_":1697074596212113400,"author_facet":["OL3965294A Jean Mazarin"]}
{"key":"/works/OL1000026W","text":["/works/OL1000026W","A mammoth murder","OL23277525M","OL3429877M","Bill Crider.","2005054755","9780312323875","0312323875","mammothmurder00crid","Thomas Dunne Books/St. Martin's Minotaur","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Texas","Detective and mystery stories","Fiction","Dan Rhodes (Fictitious character)","Sheriffs","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL23277525M","/books/OL3429877M","/works/OL1000026W","/subjects/detective_and_mystery_stories","/subjects/fiction","/subjects/dan_rhodes_(fictitious_character)","/subjects/sheriffs","/subjects/place:texas","/authors/OL92934A"],"title":"A mammoth murder","title_suggest":["A mammoth murder"],"has_fulltext":true,"edition_count":2,"edition_key":["OL23277525M","OL3429877M"],"publish_date":["2006"],"publish_year":[2006],"first_publish_year":2006,"lccn":["2005054755"],"publish_place":["New York"],"lcc":["PS-3553.00000000.R497 M36 2006"],"ddc":["813.54"],"isbn":["9780312323875","0312323875"],"last_modified_i":1607686475,"ebook_count_i":1,"ia":["mammothmurder00crid"],"public_scan_b":false,"ia_collection_s":"americana;china;stmaryscountylibrary;spokanepubliclibrary-ol;inlibrary;delawarecountydistrictlibrary;printdisabled;internetarchivebooks;miltonpubliclibrary-ol","lending_edition_s":"OL23277525M","lending_identifier_s":"mammothmurder00crid","printdisabled_s":"OL23277525M","cover_edition_key":"OL3429877M","cover_i":179941,"publisher":["Thomas Dunne Books/St. Martin's Minotaur"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"place":["Texas"],"subject":["Detective and mystery stories","Fiction","Dan Rhodes (Fictitious character)","Sheriffs","Accessible book","Protected DAISY"],"id_goodreads":["538959"],"id_librarything":["801301"],"ia_loaded_id":["mammothmurder00crid"],"ia_box_id":["IA171001"],"publisher_facet":["Thomas Dunne Books/St. Martin's Minotaur"],"place_key":["texas"],"subject_facet":["Accessible book","Dan Rhodes (Fictitious character)","Detective and mystery stories","Fiction","Protected DAISY","Sheriffs"],"_version_":1697074595409952800,"place_facet":["Texas"],"lcc_sort":"PS-3553.00000000.R497 M36 2006","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","dan_rhodes_(fictitious_character)","detective_and_mystery_stories","fiction","protected_daisy","sheriffs"],"ddc_sort":"813.54"}
{"key":"/works/OL10000270W","text":["/works/OL10000270W","Monaco morne plaine","roman spècial-police.","OL15234479M","2265020869","9782265020863","Editions Fleuve Noir","OL3965294A","Jean Mazarin"],"type":"work","seed":["/books/OL15234479M","/works/OL10000270W","/authors/OL3965294A"],"title":"Monaco morne plaine","title_suggest":["Monaco morne plaine"],"has_fulltext":false,"edition_count":1,"edition_key":["OL15234479M"],"publish_date":["1982"],"publish_year":[1982],"first_publish_year":1982,"publish_place":["Paris"],"isbn":["2265020869","9782265020863"],"last_modified_i":1260844687,"ebook_count_i":0,"publisher":["Editions Fleuve Noir"],"language":["fre"],"author_key":["OL3965294A"],"author_name":["Jean Mazarin"],"publisher_facet":["Editions Fleuve Noir"],"_version_":1697074595687825400,"author_facet":["OL3965294A Jean Mazarin"]}
{"key":"/works/OL10000271W","text":["/works/OL10000271W","Le comportement des chevaux","OL12623320M","468044005","9782843040573","2843040574","Zulma","OL3965295A","Kiley-Worthington Ma"],"type":"work","seed":["/books/OL12623320M","/works/OL10000271W","/authors/OL3965295A"],"title":"Le comportement des chevaux","title_suggest":["Le comportement des chevaux"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623320M"],"publish_date":["May 21, 1999"],"publish_year":[1999],"first_publish_year":1999,"oclc":["468044005"],"isbn":["9782843040573","2843040574"],"last_modified_i":1303897327,"ebook_count_i":0,"cover_edition_key":"OL12623320M","cover_i":3140527,"publisher":["Zulma"],"language":["fre"],"author_key":["OL3965295A"],"author_name":["Kiley-Worthington Ma"],"id_goodreads":["7086983"],"id_librarything":["8223762"],"publisher_facet":["Zulma"],"_version_":1697074596237279200,"author_facet":["OL3965295A Kiley-Worthington Ma"]}
{"key":"/works/OL10000272W","text":["/works/OL10000272W","Le siège de l'âme","Eloge de la sodomie. Fantaisie littéraire, érosophique et antithéiste","OL12623321M","2843040604","9782843040603","Zulma","OL3965296A","Guillon Claude"],"type":"work","seed":["/books/OL12623321M","/works/OL10000272W","/authors/OL3965296A"],"title":"Le siège de l'âme","title_suggest":["Le siège de l'âme"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623321M"],"publish_date":["May 7, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["2843040604","9782843040603"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12623321M","cover_i":3140528,"publisher":["Zulma"],"language":["fre"],"author_key":["OL3965296A"],"author_name":["Guillon Claude"],"id_goodreads":["6832191"],"id_librarything":["5095067"],"publisher_facet":["Zulma"],"_version_":1697074595798974500,"author_facet":["OL3965296A Guillon Claude"]}
{"key":"/works/OL10000273W","text":["/works/OL10000273W","L'Envers de la vie","OL12623334M","2843040930","9782843040931","Zulma","OL3965297A","Lee Seung-Woo"],"type":"work","seed":["/books/OL12623334M","/works/OL10000273W","/authors/OL3965297A"],"title":"L'Envers de la vie","title_suggest":["L'Envers de la vie"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623334M"],"publish_date":["April 20, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2843040930","9782843040931"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623334M","cover_i":3140541,"publisher":["Zulma"],"language":["fre"],"author_key":["OL3965297A"],"author_name":["Lee Seung-Woo"],"publisher_facet":["Zulma"],"_version_":1697074595767517200,"author_facet":["OL3965297A Lee Seung-Woo"]}
{"key":"/works/OL10000274W","text":["/works/OL10000274W","Le Secret des chuchoteurs américains","OL12623335M","9782843041013","2843041015","Zulma","OL3965298A","N. Pilley-Mirande"],"type":"work","seed":["/books/OL12623335M","/works/OL10000274W","/authors/OL3965298A"],"title":"Le Secret des chuchoteurs américains","title_suggest":["Le Secret des chuchoteurs américains"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623335M"],"publish_date":["July 18, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782843041013","2843041015"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623335M","cover_i":3140542,"publisher":["Zulma"],"language":["fre"],"author_key":["OL3965298A"],"author_name":["N. Pilley-Mirande"],"publisher_facet":["Zulma"],"_version_":1697074596199530500,"author_facet":["OL3965298A N. Pilley-Mirande"]}
{"key":"/works/OL10000275W","text":["/works/OL10000275W","Une averse","OL12623337M","2843041066","9782843041068","Zulma","OL3965299A","Kim Yu-Jong"],"type":"work","seed":["/books/OL12623337M","/works/OL10000275W","/authors/OL3965299A"],"title":"Une averse","title_suggest":["Une averse"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623337M"],"publish_date":["September 26, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2843041066","9782843041068"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623337M","cover_i":3140544,"publisher":["Zulma"],"author_key":["OL3965299A"],"author_name":["Kim Yu-Jong"],"publisher_facet":["Zulma"],"_version_":1697074596567580700,"author_facet":["OL3965299A Kim Yu-Jong"]}
{"key":"/works/OL10000276W","text":["/works/OL10000276W","Types aux graphies","OL12623338M","2843041082","9782843041082","Zulma","OL3965300A","David-Lee Fong"],"type":"work","seed":["/books/OL12623338M","/works/OL10000276W","/authors/OL3965300A"],"title":"Types aux graphies","title_suggest":["Types aux graphies"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623338M"],"publish_date":["October 17, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2843041082","9782843041082"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623338M","cover_i":3140545,"publisher":["Zulma"],"author_key":["OL3965300A"],"author_name":["David-Lee Fong"],"publisher_facet":["Zulma"],"_version_":1697074596676632600,"author_facet":["OL3965300A David-Lee Fong"]}
{"key":"/works/OL10000277W","text":["/works/OL10000277W","Nation par Barbès","OL12623339M","2001374178","2843041163","9782843041167","Zulma","OL3965301A","Cécile Wajbrot"],"type":"work","seed":["/books/OL12623339M","/works/OL10000277W","/authors/OL3965301A"],"title":"Nation par Barbès","title_suggest":["Nation par Barbès"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623339M"],"publish_date":["January 18, 2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2001374178"],"lcc":["PQ-2683.00000000.A3564 N37 2001"],"isbn":["2843041163","9782843041167"],"last_modified_i":1607126709,"ebook_count_i":0,"cover_edition_key":"OL12623339M","cover_i":3140546,"publisher":["Zulma"],"language":["fre"],"author_key":["OL3965301A"],"author_name":["Cécile Wajbrot"],"publisher_facet":["Zulma"],"_version_":1697074596298096600,"lcc_sort":"PQ-2683.00000000.A3564 N37 2001","author_facet":["OL3965301A Cécile Wajbrot"]}
{"key":"/works/OL10000278W","text":["/works/OL10000278W","Emma","OL12623341M","468696207","9782843041303","2843041309","Zulma","OL3965302A","Stéphane Héaume"],"type":"work","seed":["/books/OL12623341M","/works/OL10000278W","/authors/OL3965302A"],"title":"Emma","title_suggest":["Emma"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623341M"],"publish_date":["March 15, 2001"],"publish_year":[2001],"first_publish_year":2001,"oclc":["468696207"],"isbn":["9782843041303","2843041309"],"last_modified_i":1303816908,"ebook_count_i":0,"cover_edition_key":"OL12623341M","cover_i":3140548,"publisher":["Zulma"],"language":["fre"],"author_key":["OL3965302A"],"author_name":["Stéphane Héaume"],"id_goodreads":["6843257"],"publisher_facet":["Zulma"],"_version_":1697074596516200400,"author_facet":["OL3965302A Stéphane Héaume"]}
{"key":"/works/OL10000279W","text":["/works/OL10000279W","La nuit de Fort-Haggar","roman","OL23200086M","Stéphane Héaume.","2009405058","9782020975384","2020975386","Seuil","OL3965302A","Stéphane Héaume"],"type":"work","seed":["/books/OL23200086M","/works/OL10000279W","/authors/OL3965302A"],"title":"La nuit de Fort-Haggar","title_suggest":["La nuit de Fort-Haggar"],"has_fulltext":false,"edition_count":1,"edition_key":["OL23200086M"],"publish_date":["2009"],"publish_year":[2009],"first_publish_year":2009,"lccn":["2009405058"],"publish_place":["Paris"],"lcc":["PQ-2708.00000000.E28 N85 2009"],"isbn":["9782020975384","2020975386"],"last_modified_i":1608750655,"ebook_count_i":0,"publisher":["Seuil"],"language":["fre"],"author_key":["OL3965302A"],"author_name":["Stéphane Héaume"],"publisher_facet":["Seuil"],"_version_":1697074596127178800,"lcc_sort":"PQ-2708.00000000.E28 N85 2009","author_facet":["OL3965302A Stéphane Héaume"]}
{"key":"/works/OL1000027W","text":["/works/OL1000027W","Medicine show","OL1852078M","OL2026474M","Bill Crider.","90003672","91002402","23180316","21669033","0871316137","9781560541424","9780871316134","1560541423","medicineshow00crid","M. Evans","Thorndike Press","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Large type books","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL1852078M","/books/OL2026474M","/works/OL1000027W","/subjects/large_type_books","/authors/OL92934A"],"title":"Medicine show","title_suggest":["Medicine show"],"has_fulltext":true,"edition_count":2,"edition_key":["OL1852078M","OL2026474M"],"publish_date":["1990","1991"],"publish_year":[1990,1991],"first_publish_year":1990,"lccn":["90003672","91002402"],"publish_place":["Thorndike, Me","New York"],"oclc":["23180316","21669033"],"lcc":["PS-3553.00000000.R497 M44 1990","PS-3553.00000000.R497 M44 1991"],"ddc":["813.54"],"isbn":["0871316137","9781560541424","9780871316134","1560541423"],"last_modified_i":1605231771,"ebook_count_i":1,"ia":["medicineshow00crid"],"public_scan_b":false,"ia_collection_s":"inlibrary;china;printdisabled;internetarchivebooks","lending_edition_s":"OL1852078M","lending_identifier_s":"medicineshow00crid","printdisabled_s":"OL1852078M","cover_edition_key":"OL1852078M","cover_i":7063109,"publisher":["M. Evans","Thorndike Press"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"subject":["Large type books","Accessible book","Protected DAISY"],"id_goodreads":["5876741","4794572"],"ia_loaded_id":["medicineshow00crid"],"ia_box_id":["IA171101"],"publisher_facet":["M. Evans","Thorndike Press"],"subject_facet":["Accessible book","Large type books","Protected DAISY"],"_version_":1697074596376739800,"lcc_sort":"PS-3553.00000000.R497 M44 1990","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","large_type_books","protected_daisy"],"ddc_sort":"813.54"}
{"key":"/works/OL10000280W","text":["/works/OL10000280W","Le Clos Lothar","OL12623359M","2843042194","9782843042195","Zulma","OL3965302A","Stéphane Héaume"],"type":"work","seed":["/books/OL12623359M","/works/OL10000280W","/authors/OL3965302A"],"title":"Le Clos Lothar","title_suggest":["Le Clos Lothar"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623359M"],"publish_date":["June 30, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2843042194","9782843042195"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623359M","cover_i":3140566,"publisher":["Zulma"],"author_key":["OL3965302A"],"author_name":["Stéphane Héaume"],"id_goodreads":["6843255"],"publisher_facet":["Zulma"],"_version_":1697074596254056400,"author_facet":["OL3965302A Stéphane Héaume"]}
{"key":"/works/OL10000281W","text":["/works/OL10000281W","Le contemplateur","OL21447629M","Stéphane Héaume.","2007490416","2843374561","9782843374562","A. Carrière","OL3965302A","Stéphane Héaume"],"type":"work","seed":["/books/OL21447629M","/works/OL10000281W","/authors/OL3965302A"],"title":"Le contemplateur","title_suggest":["Le contemplateur"],"has_fulltext":false,"edition_count":1,"edition_key":["OL21447629M"],"publish_date":["2007"],"publish_year":[2007],"first_publish_year":2007,"lccn":["2007490416"],"publish_place":["Paris"],"lcc":["PQ-2708.00000000.E28 C668 2007"],"isbn":["2843374561","9782843374562"],"last_modified_i":1608403600,"ebook_count_i":0,"publisher":["A. Carrière"],"language":["fre"],"author_key":["OL3965302A"],"author_name":["Stéphane Héaume"],"id_goodreads":["2189379"],"publisher_facet":["A. Carrière"],"_version_":1697074596659855400,"lcc_sort":"PQ-2708.00000000.E28 C668 2007","author_facet":["OL3965302A Stéphane Héaume"]}
{"key":"/works/OL10000282W","text":["/works/OL10000282W","Philippe","OL12623342M","2843041376","9782843041372","Zulma","OL3965303A","Ulysse Badorc"],"type":"work","seed":["/books/OL12623342M","/works/OL10000282W","/authors/OL3965303A"],"title":"Philippe","title_suggest":["Philippe"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623342M"],"publish_date":["November 11, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2843041376","9782843041372"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623342M","cover_i":3140549,"publisher":["Zulma"],"author_key":["OL3965303A"],"author_name":["Ulysse Badorc"],"publisher_facet":["Zulma"],"_version_":1697074596255105000,"author_facet":["OL3965303A Ulysse Badorc"]}
{"key":"/works/OL10000283W","text":["/works/OL10000283W","Son dernier sourire","OL12623343M","2843041430","9782843041433","Zulma","OL3965304A","Marie-France Remond"],"type":"work","seed":["/books/OL12623343M","/works/OL10000283W","/authors/OL3965304A"],"title":"Son dernier sourire","title_suggest":["Son dernier sourire"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623343M"],"publish_date":["March 15, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2843041430","9782843041433"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623343M","cover_i":3140550,"publisher":["Zulma"],"author_key":["OL3965304A"],"author_name":["Marie-France Remond"],"id_goodreads":["3643966"],"publisher_facet":["Zulma"],"_version_":1697074595868180500,"author_facet":["OL3965304A Marie-France Remond"]}
{"key":"/works/OL10000284W","text":["/works/OL10000284W","Patrick","OL12623346M","9782843041723","2843041724","Zulma","OL3965305A","Thierry Péguet"],"type":"work","seed":["/books/OL12623346M","/works/OL10000284W","/authors/OL3965305A"],"title":"Patrick","title_suggest":["Patrick"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623346M"],"publish_date":["March 10, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843041723","2843041724"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623346M","cover_i":3140553,"publisher":["Zulma"],"language":["fre"],"author_key":["OL3965305A"],"author_name":["Thierry Péguet"],"publisher_facet":["Zulma"],"_version_":1697074596442800000,"author_facet":["OL3965305A Thierry Péguet"]}
{"key":"/works/OL10000285W","text":["/works/OL10000285W","Léa","OL12623347M","468762362","2843041759","9782843041754","Zulma","OL3965306A","Béatrix Grégoire"],"type":"work","seed":["/books/OL12623347M","/works/OL10000285W","/authors/OL3965306A"],"title":"Léa","title_suggest":["Léa"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623347M"],"publish_date":["June 30, 2001"],"publish_year":[2001],"first_publish_year":2001,"oclc":["468762362"],"isbn":["2843041759","9782843041754"],"last_modified_i":1303898965,"ebook_count_i":0,"cover_edition_key":"OL12623347M","cover_i":3140554,"publisher":["Zulma"],"language":["fre"],"author_key":["OL3965306A"],"author_name":["Béatrix Grégoire"],"publisher_facet":["Zulma"],"_version_":1697074595880763400,"author_facet":["OL3965306A Béatrix Grégoire"]}
{"key":"/works/OL10000286W","text":["/works/OL10000286W","Lolotte","OL12623348M","2843041864","9782843041860","Zulma","OL3965307A","Andrea de Nerciat"],"type":"work","seed":["/books/OL12623348M","/works/OL10000286W","/authors/OL3965307A"],"title":"Lolotte","title_suggest":["Lolotte"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623348M"],"publish_date":["September 17, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2843041864","9782843041860"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623348M","cover_i":3140555,"publisher":["Zulma"],"author_key":["OL3965307A"],"author_name":["Andrea de Nerciat"],"id_goodreads":["5990325"],"publisher_facet":["Zulma"],"_version_":1697074596602183700,"author_facet":["OL3965307A Andrea de Nerciat"]}
{"key":"/works/OL10000287W","text":["/works/OL10000287W","Prête-moi ta plume","roman.","OL16523447M","Gallimard","OL3965308A","Robert Scipion","Parodies"],"type":"work","seed":["/books/OL16523447M","/works/OL10000287W","/subjects/parodies","/authors/OL3965308A"],"title":"Prête-moi ta plume","title_suggest":["Prête-moi ta plume"],"has_fulltext":false,"edition_count":1,"edition_key":["OL16523447M"],"publish_date":["1946"],"publish_year":[1946],"first_publish_year":1946,"publish_place":["[Paris]"],"last_modified_i":1279636588,"ebook_count_i":0,"publisher":["Gallimard"],"language":["fre"],"author_key":["OL3965308A"],"author_name":["Robert Scipion"],"subject":["Parodies"],"publisher_facet":["Gallimard"],"subject_facet":["Parodies"],"_version_":1697074596654612500,"author_facet":["OL3965308A Robert Scipion"],"subject_key":["parodies"]}
{"key":"/works/OL10000288W","text":["/works/OL10000288W","Les Indiens d'Amérique et le cheval","OL12623355M","9782843042041","2843042046","Zulma","OL3965309A","Maria Franchini"],"type":"work","seed":["/books/OL12623355M","/works/OL10000288W","/authors/OL3965309A"],"title":"Les Indiens d'Amérique et le cheval","title_suggest":["Les Indiens d'Amérique et le cheval"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623355M"],"publish_date":["December 31, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782843042041","2843042046"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623355M","cover_i":3140562,"publisher":["Zulma"],"author_key":["OL3965309A"],"author_name":["Maria Franchini"],"id_goodreads":["4378369"],"publisher_facet":["Zulma"],"_version_":1697074596528783400,"author_facet":["OL3965309A Maria Franchini"]}
{"key":"/works/OL10000289W","text":["/works/OL10000289W","Monsieur Han","OL12623357M","9782843042119","2843042119","Zulma","OL3965312A","Sok-Yong Hwang"],"type":"work","seed":["/books/OL12623357M","/works/OL10000289W","/authors/OL3965312A"],"title":"Monsieur Han","title_suggest":["Monsieur Han"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623357M"],"publish_date":["April 12, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843042119","2843042119"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12623357M","cover_i":3140564,"publisher":["Zulma"],"language":["fre"],"author_key":["OL3965312A"],"author_name":["Sok-Yong Hwang"],"id_goodreads":["1447643"],"id_librarything":["2947217"],"publisher_facet":["Zulma"],"_version_":1697074596566532000,"author_facet":["OL3965312A Sok-Yong Hwang"]}
{"key":"/works/OL1000028W","text":["/works/OL1000028W","Murder in four parts","a Dan Rhodes mystery","OL23536117M","OL17075959M","by Bill Crider.","2009024387","2008036246","9781410419989","9780312386740","0312386745","1410419983","murderinfourpart00crid","Minotaur Books","Thorndike Press","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","City and town life","Texas","Fiction","Dan Rhodes (Fictitious character)","Sheriffs","Murder","Investigation","City and town life","Large type books","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL23536117M","/books/OL17075959M","/works/OL1000028W","/subjects/fiction","/subjects/dan_rhodes_(fictitious_character)","/subjects/sheriffs","/subjects/murder","/subjects/investigation","/subjects/city_and_town_life","/subjects/large_type_books","/subjects/place:city_and_town_life","/subjects/place:texas","/authors/OL92934A"],"title":"Murder in four parts","title_suggest":["Murder in four parts"],"has_fulltext":true,"edition_count":2,"edition_key":["OL23536117M","OL17075959M"],"publish_date":["2009"],"publish_year":[2009],"first_publish_year":2009,"lccn":["2009024387","2008036246"],"publish_place":["Waterville, Me","New York"],"lcc":["PS-3553.00000000.R497 M855 2009b","PS-3553.00000000.R497 M855 2009"],"ddc":["813.54"],"isbn":["9781410419989","9780312386740","0312386745","1410419983"],"last_modified_i":1608685721,"ebook_count_i":1,"ia":["murderinfourpart00crid"],"public_scan_b":false,"ia_collection_s":"china;inlibrary;printdisabled;tamu-evanslibrary-ol;internetarchivebooks;spokanepubliclibrary-ol","lending_edition_s":"OL17075959M","lending_identifier_s":"murderinfourpart00crid","printdisabled_s":"OL17075959M","cover_edition_key":"OL17075959M","cover_i":8115247,"publisher":["Minotaur Books","Thorndike Press"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"place":["City and town life","Texas"],"subject":["Fiction","Dan Rhodes (Fictitious character)","Sheriffs","Murder","Investigation","City and town life","Large type books","Accessible book","Protected DAISY"],"id_goodreads":["4692695"],"id_librarything":["6111139"],"ia_box_id":["IA1162909"],"publisher_facet":["Minotaur Books","Thorndike Press"],"place_key":["city_and_town_life","texas"],"subject_facet":["Accessible book","City and town life","Dan Rhodes (Fictitious character)","Fiction","Investigation","Large type books","Murder","Protected DAISY","Sheriffs"],"_version_":1697074596202676200,"place_facet":["City and town life","Texas"],"lcc_sort":"PS-3553.00000000.R497 M855 2009b","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","city_and_town_life","dan_rhodes_(fictitious_character)","fiction","investigation","large_type_books","murder","protected_daisy","sheriffs"],"ddc_sort":"813.54"}
{"key":"/works/OL10000290W","text":["/works/OL10000290W","Les Sonnettes","OL12623363M","9782843042270","2843042275","Zulma","OL3965313A","Guillard de Servigné"],"type":"work","seed":["/books/OL12623363M","/works/OL10000290W","/authors/OL3965313A"],"title":"Les Sonnettes","title_suggest":["Les Sonnettes"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623363M"],"publish_date":["September 20, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843042270","2843042275"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623363M","cover_i":3140570,"publisher":["Zulma"],"author_key":["OL3965313A"],"author_name":["Guillard de Servigné"],"publisher_facet":["Zulma"],"_version_":1697074596401905700,"author_facet":["OL3965313A Guillard de Servigné"]}
{"key":"/works/OL10000291W","text":["/works/OL10000291W","al-Unusah","Misahah unthawiyah (Dirasat)","OL12623380M","97964654","9782843050237","2843050235","Dar al-Mada lil-Thaqafah wa-al-Nashr","OL3965321A","Karin Sadir","Single women","Biography"],"type":"work","seed":["/books/OL12623380M","/works/OL10000291W","/subjects/single_women","/subjects/biography","/authors/OL3965321A"],"title":"al-Unusah","title_suggest":["al-Unusah"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623380M"],"publish_date":["1996"],"publish_year":[1996],"first_publish_year":1996,"lccn":["97964654"],"lcc":["HQ-0800.20000000.S23 1996"],"isbn":["9782843050237","2843050235"],"last_modified_i":1606478334,"ebook_count_i":0,"publisher":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"language":["ara"],"author_key":["OL3965321A"],"author_name":["Karin Sadir"],"subject":["Single women","Biography"],"publisher_facet":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"subject_facet":["Biography","Single women"],"_version_":1697074596182753300,"lcc_sort":"HQ-0800.20000000.S23 1996","author_facet":["OL3965321A Karin Sadir"],"subject_key":["biography","single_women"]}
{"key":"/works/OL10000292W","text":["/works/OL10000292W","Ghaib Tumah Farman","Harakat al-mujtama wa-tahawwulat al-nass (Manshurat al-Mada)","OL12623381M","97964883","9782843050251","2843050251","Dar al-Mada lil-Thaqafah wa-al-Nashr","OL3965322A","Khalid Misri","Arabic fiction","History and criticism","Criticism and interpretation","Society in literature"],"type":"work","seed":["/books/OL12623381M","/works/OL10000292W","/subjects/arabic_fiction","/subjects/history_and_criticism","/subjects/criticism_and_interpretation","/subjects/society_in_literature","/authors/OL3965322A"],"title":"Ghaib Tumah Farman","title_suggest":["Ghaib Tumah Farman"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623381M"],"publish_date":["1997"],"publish_year":[1997],"first_publish_year":1997,"lccn":["97964883"],"lcc":["PJ-7824.00000000.A73 Z76 1997"],"isbn":["9782843050251","2843050251"],"last_modified_i":1606478423,"ebook_count_i":0,"publisher":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"language":["ara"],"author_key":["OL3965322A"],"author_name":["Khalid Misri"],"subject":["Arabic fiction","History and criticism","Criticism and interpretation","Society in literature"],"publisher_facet":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"subject_facet":["Arabic fiction","Criticism and interpretation","History and criticism","Society in literature"],"_version_":1697074595788488700,"lcc_sort":"PJ-7824.00000000.A73 Z76 1997","author_facet":["OL3965322A Khalid Misri"],"subject_key":["arabic_fiction","criticism_and_interpretation","history_and_criticism","society_in_literature"]}
{"key":"/works/OL10000293W","text":["/works/OL10000293W","Ishkaliyat al-nahdah fi al-watan al-Arabi: Min al-tawabil ila al-naft","Ishkaliyat al-nahdah fi al-watan al-Arabi: Min al-tawabil ila al-naft ","dirasat fi qadaya al-nahdah (Dirasat)","OL12623382M","97964682","37697621","2843050383","9782843050381","Dar al-Mada lil-Thaqafah wa-al-Nashr","OL3965323A","Adnan Uwayyid","Intellectual life","Islamic renewal"],"type":"work","seed":["/books/OL12623382M","/works/OL10000293W","/subjects/intellectual_life","/subjects/islamic_renewal","/authors/OL3965323A"],"title":"Ishkaliyat al-nahdah fi al-watan al-Arabi: Min al-tawabil ila al-naft","title_suggest":["Ishkaliyat al-nahdah fi al-watan al-Arabi: Min al-tawabil ila al-naft"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623382M"],"publish_date":["1997"],"publish_year":[1997],"first_publish_year":1997,"lccn":["97964682"],"oclc":["37697621"],"lcc":["DS-0036.77000000.U87 1997"],"isbn":["2843050383","9782843050381"],"last_modified_i":1606478344,"ebook_count_i":0,"publisher":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"language":["ara"],"author_key":["OL3965323A"],"author_name":["Adnan Uwayyid"],"subject":["Intellectual life","Islamic renewal"],"publisher_facet":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"subject_facet":["Intellectual life","Islamic renewal"],"_version_":1697074595829383200,"lcc_sort":"DS-0036.77000000.U87 1997","author_facet":["OL3965323A Adnan Uwayyid"],"subject_key":["intellectual_life","islamic_renewal"]}
{"key":"/works/OL10000294W","text":["/works/OL10000294W","Mustaqbal al-Iraq","Al-furas al-daiah wa-al-khiyarat al-mutahah (Manshurat al-Mada)","OL12623383M","97964821","38959572","9782843050442","2843050448","Dar al-Mada lil-Thaqafah wa-al-Nashr","OL3965324A","Abd al-Wahhab Hamid Rashid","Forecasting"],"type":"work","seed":["/books/OL12623383M","/works/OL10000294W","/subjects/forecasting","/authors/OL3965324A"],"title":"Mustaqbal al-Iraq","title_suggest":["Mustaqbal al-Iraq"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623383M"],"publish_date":["1997"],"publish_year":[1997],"first_publish_year":1997,"lccn":["97964821"],"oclc":["38959572"],"lcc":["DS-0070.60000000.R34 1997"],"isbn":["9782843050442","2843050448"],"last_modified_i":1606478393,"ebook_count_i":0,"publisher":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"language":["ara"],"author_key":["OL3965324A"],"author_name":["Abd al-Wahhab Hamid Rashid"],"subject":["Forecasting"],"publisher_facet":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"subject_facet":["Forecasting"],"_version_":1697074595941580800,"lcc_sort":"DS-0070.60000000.R34 1997","author_facet":["OL3965324A Abd al-Wahhab Hamid Rashid"],"subject_key":["forecasting"]}
{"key":"/works/OL10000295W","text":["/works/OL10000295W","Afaq al-asr (Manshurat al-Mada)","OL12623384M","97964882","2843050588","9782843050589","Dar al-Mada lil-Thaqafah wa-al-Nashr","OL3965325A","Jabir Usfur","History and criticism","Modern Literature"],"type":"work","seed":["/books/OL12623384M","/works/OL10000295W","/subjects/history_and_criticism","/subjects/modern_literature","/authors/OL3965325A"],"title":"Afaq al-asr (Manshurat al-Mada)","title_suggest":["Afaq al-asr (Manshurat al-Mada)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623384M"],"publish_date":["1997"],"publish_year":[1997],"first_publish_year":1997,"lccn":["97964882"],"lcc":["PN-0094.00000000.M84 1997"],"isbn":["2843050588","9782843050589"],"last_modified_i":1606478422,"ebook_count_i":0,"publisher":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"language":["ara"],"author_key":["OL3965325A"],"author_name":["Jabir Usfur"],"subject":["History and criticism","Modern Literature"],"publisher_facet":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"subject_facet":["History and criticism","Modern Literature"],"_version_":1697074596524589000,"lcc_sort":"PN-0094.00000000.M84 1997","author_facet":["OL3965325A Jabir Usfur"],"subject_key":["history_and_criticism","modern_literature"]}
{"key":"/works/OL10000296W","text":["/works/OL10000296W","Dhakirah lil-shir (Maktabat al-usrah)","OL13161588M","2002461933","9770178268","9789770178263","Sine nomine","OL3965325A","Jabir Usfur","Arabic poetry","History and criticism"],"type":"work","seed":["/books/OL13161588M","/works/OL10000296W","/subjects/arabic_poetry","/subjects/history_and_criticism","/authors/OL3965325A"],"title":"Dhakirah lil-shir (Maktabat al-usrah)","title_suggest":["Dhakirah lil-shir (Maktabat al-usrah)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL13161588M"],"publish_date":["2002"],"publish_year":[2002],"first_publish_year":2002,"lccn":["2002461933"],"lcc":["PJ-7561.00000000.U735 2002"],"isbn":["9770178268","9789770178263"],"last_modified_i":1607345448,"ebook_count_i":0,"publisher":["Sine nomine"],"language":["ara"],"author_key":["OL3965325A"],"author_name":["Jabir Usfur"],"subject":["Arabic poetry","History and criticism"],"publisher_facet":["Sine nomine"],"subject_facet":["Arabic poetry","History and criticism"],"_version_":1697074595837771800,"lcc_sort":"PJ-7561.00000000.U735 2002","author_facet":["OL3965325A Jabir Usfur"],"subject_key":["arabic_poetry","history_and_criticism"]}
{"key":"/works/OL10000297W","text":["/works/OL10000297W","Hawamish ala daftar al-tanwir","OL13163567M","94960184","9772740397","9789772740390","Dar Suad al-Sabah","OL3965325A","Jabir Usfur","Arab Civilization","Secularism"],"type":"work","seed":["/books/OL13163567M","/works/OL10000297W","/subjects/arab_civilization","/subjects/secularism","/authors/OL3965325A"],"title":"Hawamish ala daftar al-tanwir","title_suggest":["Hawamish ala daftar al-tanwir"],"has_fulltext":false,"edition_count":1,"edition_key":["OL13163567M"],"publish_date":["1994"],"publish_year":[1994],"first_publish_year":1994,"lccn":["94960184"],"lcc":["DS-0063.10000000.U83 1994"],"isbn":["9772740397","9789772740390"],"last_modified_i":1605849651,"ebook_count_i":0,"publisher":["Dar Suad al-Sabah"],"language":["ara"],"author_key":["OL3965325A"],"author_name":["Jabir Usfur"],"subject":["Arab Civilization","Secularism"],"publisher_facet":["Dar Suad al-Sabah"],"subject_facet":["Arab Civilization","Secularism"],"_version_":1697074595535782000,"lcc_sort":"DS-0063.10000000.U83 1994","author_facet":["OL3965325A Jabir Usfur"],"subject_key":["arab_civilization","secularism"]}
{"key":"/works/OL10000298W","text":["/works/OL10000298W","Istiadat al-madi","Dirasat fi shir al-nahdah (Maktabat al-usrah)","OL13161492M","2001393181","48380854","9770172839","9789770172834","al-Hayah al-Misriyah al-amah lil-Kitab","OL3965325A","Jabir Usfur","Arabic Protest poetry","History and criticism","Arabic poetry"],"type":"work","seed":["/books/OL13161492M","/works/OL10000298W","/subjects/arabic_protest_poetry","/subjects/history_and_criticism","/subjects/arabic_poetry","/authors/OL3965325A"],"title":"Istiadat al-madi","title_suggest":["Istiadat al-madi"],"has_fulltext":false,"edition_count":1,"edition_key":["OL13161492M"],"publish_date":["2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2001393181"],"oclc":["48380854"],"lcc":["PJ-7542.00000000.P765 U84 2001"],"isbn":["9770172839","9789770172834"],"last_modified_i":1607135343,"ebook_count_i":0,"publisher":["al-Hayah al-Misriyah al-amah lil-Kitab"],"language":["ara"],"author_key":["OL3965325A"],"author_name":["Jabir Usfur"],"subject":["Arabic Protest poetry","History and criticism","Arabic poetry"],"publisher_facet":["al-Hayah al-Misriyah al-amah lil-Kitab"],"subject_facet":["Arabic Protest poetry","Arabic poetry","History and criticism"],"_version_":1697074596637835300,"lcc_sort":"PJ-7542.00000000.P765 U84 2001","author_facet":["OL3965325A Jabir Usfur"],"subject_key":["arabic_poetry","arabic_protest_poetry","history_and_criticism"]}
{"key":"/works/OL10000299W","text":["/works/OL10000299W","Zaman al-riwayah (Manshurat al-Mada)","OL12623412M","99904380","43253421","2843052017","9782843052019","al-Mada","OL3965325A","Jabir Usfur","Arabic fiction","History and criticism"],"type":"work","seed":["/books/OL12623412M","/works/OL10000299W","/subjects/arabic_fiction","/subjects/history_and_criticism","/authors/OL3965325A"],"title":"Zaman al-riwayah (Manshurat al-Mada)","title_suggest":["Zaman al-riwayah (Manshurat al-Mada)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623412M"],"publish_date":["1999"],"publish_year":[1999],"first_publish_year":1999,"lccn":["99904380"],"oclc":["43253421"],"lcc":["PJ-7577.00000000.U74 1999"],"isbn":["2843052017","9782843052019"],"last_modified_i":1606984704,"ebook_count_i":0,"publisher":["al-Mada"],"language":["ara"],"author_key":["OL3965325A"],"author_name":["Jabir Usfur"],"subject":["Arabic fiction","History and criticism"],"publisher_facet":["al-Mada"],"subject_facet":["Arabic fiction","History and criticism"],"_version_":1697074596642029600,"lcc_sort":"PJ-7577.00000000.U74 1999","author_facet":["OL3965325A Jabir Usfur"],"subject_key":["arabic_fiction","history_and_criticism"]}
{"key":"/works/OL1000029W","text":["/works/OL1000029W","Murder takes a break","a Truman Smith mystery","OL673823M","OL23262828M","Bill Crider.","97019939","36800708","9780802733085","0802733085","murdertakesbreak00crid","Walker and Co.","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Galveston Bay (Tex.)","Fiction","Truman Smith (Fictitious character)","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL673823M","/books/OL23262828M","/works/OL1000029W","/subjects/fiction","/subjects/truman_smith_(fictitious_character)","/subjects/place:galveston_bay_(tex.)","/authors/OL92934A"],"title":"Murder takes a break","title_suggest":["Murder takes a break"],"has_fulltext":true,"edition_count":2,"edition_key":["OL673823M","OL23262828M"],"publish_date":["1997"],"publish_year":[1997],"first_publish_year":1997,"lccn":["97019939"],"publish_place":["New York"],"oclc":["36800708"],"lcc":["PS-3553.00000000.R497 M88 1997"],"ddc":["813.54"],"isbn":["9780802733085","0802733085"],"last_modified_i":1606344258,"ebook_count_i":1,"ia":["murdertakesbreak00crid"],"public_scan_b":false,"ia_collection_s":"americana;inlibrary;printdisabled;internetarchivebooks","lending_edition_s":"OL23262828M","lending_identifier_s":"murdertakesbreak00crid","printdisabled_s":"OL23262828M","cover_edition_key":"OL673823M","cover_i":3783334,"publisher":["Walker and Co."],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"place":["Galveston Bay (Tex.)"],"subject":["Fiction","Truman Smith (Fictitious character)","Accessible book","Protected DAISY"],"id_goodreads":["707441"],"id_librarything":["1716253"],"ia_box_id":["IA138323"],"publisher_facet":["Walker and Co."],"place_key":["galveston_bay_(tex.)"],"subject_facet":["Accessible book","Fiction","Protected DAISY","Truman Smith (Fictitious character)"],"_version_":1697074596106207200,"place_facet":["Galveston Bay (Tex.)"],"lcc_sort":"PS-3553.00000000.R497 M88 1997","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","fiction","protected_daisy","truman_smith_(fictitious_character)"],"ddc_sort":"813.54"}
{"key":"/works/OL100002W","text":["/works/OL100002W","Fugitive colors","OL789403M","OL1270518M","OL23269461M","Margaret Maron.","95001703","95021823","35036805","0446403938","9780892965670","9780446403931","0786205237","9780786205233","0892965673","fugitivecolors00maro","isbn_9780786205233","Thorndike Press","Mysterious Press","OL3326443A","Margaret Maron","Margaret Maron","Maron, Margaret","MARGARET MARON","New York (State)","New York (N.Y.)","New York","Fiction","Police","Policewomen","Sigrid Harald (Fictitious character)","Women detectives","Large type books","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL789403M","/books/OL1270518M","/books/OL23269461M","/works/OL100002W","/subjects/fiction","/subjects/police","/subjects/policewomen","/subjects/sigrid_harald_(fictitious_character)","/subjects/women_detectives","/subjects/large_type_books","/subjects/place:new_york_(state)","/subjects/place:new_york_(n.y.)","/subjects/place:new_york","/authors/OL3326443A"],"title":"Fugitive colors","title_suggest":["Fugitive colors"],"has_fulltext":true,"edition_count":3,"edition_key":["OL789403M","OL1270518M","OL23269461M"],"publish_date":["1996","1995"],"publish_year":[1995,1996],"first_publish_year":1995,"lccn":["95001703","95021823"],"publish_place":["Thorndike, Me","New York"],"oclc":["35036805"],"lcc":["PS-3563.00000000.A679 F84 1995","PS-3563.00000000.A679 F84 1995b"],"ddc":["813.54"],"isbn":["0446403938","9780892965670","9780446403931","0786205237","9780786205233","0892965673"],"last_modified_i":1613968598,"ebook_count_i":2,"ia":["fugitivecolors00maro","isbn_9780786205233"],"public_scan_b":false,"ia_collection_s":"americana;china;inlibrary;delawarecountydistrictlibrary;hamiltonpubliclibrary-ol;library_of_atlantis;fav-shamrock45;universityofarizona-ol;spokanepubliclibrary-ol;printdisabled;bostonuniversitylibraries-ol;internetarchivebooks;riceuniversity-ol;fav-ianh69;universityofcoloradoboulder-ol","lending_edition_s":"OL789403M","lending_identifier_s":"isbn_9780786205233","printdisabled_s":"OL1270518M;OL789403M","cover_edition_key":"OL1270518M","cover_i":6937762,"publisher":["Thorndike Press","Mysterious Press"],"language":["eng"],"author_key":["OL3326443A"],"author_name":["Margaret Maron"],"author_alternative_name":["Margaret Maron","Maron, Margaret","MARGARET MARON"],"place":["New York (State)","New York (N.Y.)","New York"],"subject":["Fiction","Police","Policewomen","Sigrid Harald (Fictitious character)","Women detectives","Large type books","Accessible book","Protected DAISY"],"id_goodreads":["4963848","295960","2443372"],"id_librarything":["270265"],"ia_box_id":["IA1399322","IA1151423","IA138213"],"publisher_facet":["Mysterious Press","Thorndike Press"],"place_key":["new_york","new_york_(n.y.)","new_york_(state)"],"subject_facet":["Accessible book","Fiction","Large type books","Police","Policewomen","Protected DAISY","Sigrid Harald (Fictitious character)","Women detectives"],"_version_":1697074596299145200,"place_facet":["New York","New York (N.Y.)","New York (State)"],"lcc_sort":"PS-3563.00000000.A679 F84 1995b","author_facet":["OL3326443A Margaret Maron"],"subject_key":["accessible_book","fiction","large_type_books","police","policewomen","protected_daisy","sigrid_harald_(fictitious_character)","women_detectives"],"ddc_sort":"813.54"}
{"key":"/works/OL10000300M","text":["/works/OL10000300M","Crime and Disorder Bill (H.L.) (House of Lords Bills)","OL10000300M","314675634","0108360695","9780108360695","Stationery Office Books","English law: criminal law"],"type":"work","seed":["/books/OL10000300M","/works/OL10000300M","/subjects/english_law:_criminal_law"],"title":"Crime and Disorder Bill (H.L.) (House of Lords Bills)","title_suggest":["Crime and Disorder Bill (H.L.) (House of Lords Bills)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000300M"],"publish_date":["December 1997"],"publish_year":[1997],"first_publish_year":1997,"oclc":["314675634"],"isbn":["0108360695","9780108360695"],"last_modified_i":1618493950,"ebook_count_i":0,"publisher":["Stationery Office Books"],"subject":["English law: criminal law"],"publisher_facet":["Stationery Office Books"],"subject_facet":["English law: criminal law"],"_version_":1697113913337839600,"subject_key":["english_law_criminal_law"]}
{"key":"/works/OL10000300W","text":["/works/OL10000300W","al-Lawn al-bunni (Manshurat al-Mada. al-Qissah)","OL12623386M","99899234","44102461","9782843050657","2843050650","al-Mada","OL3965326A","Mahmud Rahbi"],"type":"work","seed":["/books/OL12623386M","/works/OL10000300W","/authors/OL3965326A"],"title":"al-Lawn al-bunni (Manshurat al-Mada. al-Qissah)","title_suggest":["al-Lawn al-bunni (Manshurat al-Mada. al-Qissah)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623386M"],"publish_date":["1998"],"publish_year":[1998],"first_publish_year":1998,"lccn":["99899234"],"oclc":["44102461"],"isbn":["9782843050657","2843050650"],"last_modified_i":1606983478,"ebook_count_i":0,"publisher":["al-Mada"],"language":["ara"],"author_key":["OL3965326A"],"author_name":["Mahmud Rahbi"],"id_goodreads":["6167764"],"publisher_facet":["al-Mada"],"_version_":1697074596665098200,"author_facet":["OL3965326A Mahmud Rahbi"]}
{"key":"/works/OL10000301W","text":["/works/OL10000301W","Qisas abirah (Manshurat al-Mada)","OL12623388M","2843050723","9782843050725","Dar al-Mada lil-Thaqafah wa-al-Nashr","OL3965327A","Abd Allah Tahir"],"type":"work","seed":["/books/OL12623388M","/works/OL10000301W","/authors/OL3965327A"],"title":"Qisas abirah (Manshurat al-Mada)","title_suggest":["Qisas abirah (Manshurat al-Mada)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623388M"],"publish_date":["1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["2843050723","9782843050725"],"last_modified_i":1260840402,"ebook_count_i":0,"publisher":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"language":["ara"],"author_key":["OL3965327A"],"author_name":["Abd Allah Tahir"],"publisher_facet":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"_version_":1697074596240425000,"author_facet":["OL3965327A Abd Allah Tahir"]}
{"key":"/works/OL10000302W","text":["/works/OL10000302W","al-Shati al-thani (Riwayah)","OL12623389M","98965228","40125886","9782843050732","2843050731","Dar al-Mada lil-Thaqafah wa-al-Nashr","OL3965328A","Mahdi Isa Saqr"],"type":"work","seed":["/books/OL12623389M","/works/OL10000302W","/authors/OL3965328A"],"title":"al-Shati al-thani (Riwayah)","title_suggest":["al-Shati al-thani (Riwayah)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623389M"],"publish_date":["1998"],"publish_year":[1998],"first_publish_year":1998,"lccn":["98965228"],"oclc":["40125886"],"isbn":["9782843050732","2843050731"],"last_modified_i":1606726454,"ebook_count_i":0,"publisher":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"language":["ara"],"author_key":["OL3965328A"],"author_name":["Mahdi Isa Saqr"],"publisher_facet":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"_version_":1697074596393517000,"author_facet":["OL3965328A Mahdi Isa Saqr"]}
{"key":"/works/OL10000303W","text":["/works/OL10000303W","Mihnat Mahmud al-Shahid","Hiwariyat wa-nusus masrahiyah (Manshurat al-Mada)","OL12623393M","98964532","39324751","9782843050800","2843050804","Manshurat al-Mada","OL3965329A","Muhammad Said Sakkar"],"type":"work","seed":["/books/OL12623393M","/works/OL10000303W","/authors/OL3965329A"],"title":"Mihnat Mahmud al-Shahid","title_suggest":["Mihnat Mahmud al-Shahid"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623393M"],"publish_date":["1997"],"publish_year":[1997],"first_publish_year":1997,"lccn":["98964532"],"oclc":["39324751"],"isbn":["9782843050800","2843050804"],"last_modified_i":1606726265,"ebook_count_i":0,"publisher":["Manshurat al-Mada"],"language":["ara"],"author_key":["OL3965329A"],"author_name":["Muhammad Said Sakkar"],"id_goodreads":["4095431"],"publisher_facet":["Manshurat al-Mada"],"_version_":1697074596413440000,"author_facet":["OL3965329A Muhammad Said Sakkar"]}
{"key":"/works/OL10000304W","text":["/works/OL10000304W","Ajdad wa-ahfad","Tarajim wa-dhikrayat (Manshurat al-Mada)","OL12623402M","99899005","284305141X","9782843051418","Dar al-Mada lil-Thaqafah wa-al-Nashr","OL3965330A","Muhammad Husayn Araji"],"type":"work","seed":["/books/OL12623402M","/works/OL10000304W","/authors/OL3965330A"],"title":"Ajdad wa-ahfad","title_suggest":["Ajdad wa-ahfad"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623402M"],"publish_date":["1999"],"publish_year":[1999],"first_publish_year":1999,"lccn":["99899005"],"isbn":["284305141X","9782843051418"],"last_modified_i":1606983362,"ebook_count_i":0,"publisher":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"language":["ara"],"author_key":["OL3965330A"],"author_name":["Muhammad Husayn Araji"],"publisher_facet":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"_version_":1697074596261396500,"author_facet":["OL3965330A Muhammad Husayn Araji"]}
{"key":"/works/OL10000305W","text":["/works/OL10000305W","Jihaz al-mukhabarat fi al-hadarah al-Islamiyah (Manshurat al-Mada)","OL12623394M","98964531","39324555","9782843050817","2843050812","Dar al-Mada lil-Thaqafah wa-al-Nashr","OL3965330A","Muhammad Husayn Araji","Intelligence service","Islamic civilization","Knowledge, Theory of (Islam)","Intellect","Intellectual life"],"type":"work","seed":["/books/OL12623394M","/works/OL10000305W","/subjects/intelligence_service","/subjects/islamic_civilization","/subjects/knowledge_theory_of_(islam)","/subjects/intellect","/subjects/intellectual_life","/authors/OL3965330A"],"title":"Jihaz al-mukhabarat fi al-hadarah al-Islamiyah (Manshurat al-Mada)","title_suggest":["Jihaz al-mukhabarat fi al-hadarah al-Islamiyah (Manshurat al-Mada)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623394M"],"publish_date":["1998"],"publish_year":[1998],"first_publish_year":1998,"lccn":["98964531"],"oclc":["39324555"],"isbn":["9782843050817","2843050812"],"last_modified_i":1606726264,"ebook_count_i":0,"publisher":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"language":["ara"],"author_key":["OL3965330A"],"author_name":["Muhammad Husayn Araji"],"subject":["Intelligence service","Islamic civilization","Knowledge, Theory of (Islam)","Intellect","Intellectual life"],"publisher_facet":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"subject_facet":["Intellect","Intellectual life","Intelligence service","Islamic civilization","Knowledge, Theory of (Islam)"],"_version_":1697074595778003000,"author_facet":["OL3965330A Muhammad Husayn Araji"],"subject_key":["intellect","intellectual_life","intelligence_service","islamic_civilization","knowledge_theory_of_(islam)"]}
{"key":"/works/OL10000306W","text":["/works/OL10000306W","al-Mawt al-jamil (Riwayah)","OL12623395M","98965230","2843050847","9782843050848","Dar al-Mada lil-Thaqafah wa-al-Nashr","OL3965331A","OL7017354A","Mahmud Said","Maḥmūd Saʻīd"],"type":"work","seed":["/books/OL12623395M","/works/OL10000306W","/authors/OL3965331A","/authors/OL7017354A"],"title":"al-Mawt al-jamil (Riwayah)","title_suggest":["al-Mawt al-jamil (Riwayah)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623395M"],"publish_date":["1998"],"publish_year":[1998],"first_publish_year":1998,"lccn":["98965230"],"isbn":["2843050847","9782843050848"],"last_modified_i":1606726454,"ebook_count_i":0,"publisher":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"language":["ara"],"author_key":["OL3965331A","OL7017354A"],"author_name":["Mahmud Said","Maḥmūd Saʻīd"],"publisher_facet":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"_version_":1697074595714039800,"author_facet":["OL3965331A Mahmud Said","OL7017354A Maḥmūd Saʻīd"]}
{"key":"/works/OL10000307W","text":["/works/OL10000307W","Qabla al-hubb-- bada al-hubb (Manshurat al-Mada. al-Riwayah)","OL12623405M","99904502","2843051487","9782843051487","al-Mada","OL3965331A","Mahmud Said"],"type":"work","seed":["/books/OL12623405M","/works/OL10000307W","/authors/OL3965331A"],"title":"Qabla al-hubb-- bada al-hubb (Manshurat al-Mada. al-Riwayah)","title_suggest":["Qabla al-hubb-- bada al-hubb (Manshurat al-Mada. al-Riwayah)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623405M"],"publish_date":["1999"],"publish_year":[1999],"first_publish_year":1999,"lccn":["99904502"],"isbn":["2843051487","9782843051487"],"last_modified_i":1606984775,"ebook_count_i":0,"publisher":["al-Mada"],"language":["ara"],"author_key":["OL3965331A"],"author_name":["Mahmud Said"],"publisher_facet":["al-Mada"],"_version_":1697074595915366400,"author_facet":["OL3965331A Mahmud Said"]}
{"key":"/works/OL10000308W","text":["/works/OL10000308W","al-Masarrat wa-al-awja (Manshurat Dar al-Mada. al-Riwayah)","OL12623397M","98964641","9782843051029","2843051029","al-Mada","OL3965332A","Fuad Takarli"],"type":"work","seed":["/books/OL12623397M","/works/OL10000308W","/authors/OL3965332A"],"title":"al-Masarrat wa-al-awja (Manshurat Dar al-Mada. al-Riwayah)","title_suggest":["al-Masarrat wa-al-awja (Manshurat Dar al-Mada. al-Riwayah)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623397M"],"publish_date":["1998"],"publish_year":[1998],"first_publish_year":1998,"lccn":["98964641"],"lcc":["PJ-7864.00000000.A3744 M37 1998"],"isbn":["9782843051029","2843051029"],"last_modified_i":1606726298,"ebook_count_i":0,"publisher":["al-Mada"],"language":["ara"],"author_key":["OL3965332A"],"author_name":["Fuad Takarli"],"id_goodreads":["5045224"],"publisher_facet":["al-Mada"],"_version_":1697074595766468600,"lcc_sort":"PJ-7864.00000000.A3744 M37 1998","author_facet":["OL3965332A Fuad Takarli"]}
{"key":"/works/OL10000309M","text":["/works/OL10000309M","Data Protection Bill (H.L.) (House of Lords Bills)","OL10000309M","654967346","0108360784","9780108360787","Stationery Office Books","Data security & data encryption","English law: computers & the law"],"type":"work","seed":["/books/OL10000309M","/works/OL10000309M","/subjects/data_security_&_data_encryption","/subjects/english_law:_computers_&_the_law"],"title":"Data Protection Bill (H.L.) (House of Lords Bills)","title_suggest":["Data Protection Bill (H.L.) (House of Lords Bills)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000309M"],"publish_date":["January 1998"],"publish_year":[1998],"first_publish_year":1998,"oclc":["654967346"],"isbn":["0108360784","9780108360787"],"last_modified_i":1618493949,"ebook_count_i":0,"publisher":["Stationery Office Books"],"subject":["Data security & data encryption","English law: computers & the law"],"publisher_facet":["Stationery Office Books"],"subject_facet":["Data security & data encryption","English law: computers & the law"],"_version_":1697113913238225000,"subject_key":["data_security__data_encryption","english_law_computers__the_law"]}
{"key":"/works/OL10000309W","text":["/works/OL10000309W","al-Ghazzali","Al-taaluf al-lahuti, al-falsafi, al-sufi (Manshurat al-Mada)","OL12623398M","98964652","40684436","2843051134","9782843051135","al-Mada","OL3965333A","Maytham Janabi","Doctrines","Sufism","Islamic philosophy"],"type":"work","seed":["/books/OL12623398M","/works/OL10000309W","/subjects/doctrines","/subjects/sufism","/subjects/islamic_philosophy","/authors/OL3965333A"],"title":"al-Ghazzali","title_suggest":["al-Ghazzali"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623398M"],"publish_date":["1998"],"publish_year":[1998],"first_publish_year":1998,"lccn":["98964652"],"oclc":["40684436"],"lcc":["B--0753.00000000.G33 J36 1998"],"isbn":["2843051134","9782843051135"],"last_modified_i":1606726301,"ebook_count_i":0,"publisher":["al-Mada"],"language":["ara"],"author_key":["OL3965333A"],"author_name":["Maytham Janabi"],"subject":["Doctrines","Sufism","Islamic philosophy"],"id_goodreads":["893113"],"publisher_facet":["al-Mada"],"subject_facet":["Doctrines","Islamic philosophy","Sufism"],"_version_":1697074596470063000,"lcc_sort":"B--0753.00000000.G33 J36 1998","author_facet":["OL3965333A Maytham Janabi"],"subject_key":["doctrines","islamic_philosophy","sufism"]}
{"key":"/works/OL1000030W","text":["/works/OL1000030W","Of all sad words","a Dan Rhodes mystery","OL16443996M","OL18016592M","by Bill Crider.","Bill Crider.","2008002280","2007039993","173480667","031234810X","9781410406262","9780312348106","1410406261","Thomas Dunne Books/St. Martin's Minotaur","Thorndike Press","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Texas","Fiction","Dan Rhodes (Fictitious character)","Sheriffs","Large type books"],"type":"work","seed":["/books/OL16443996M","/books/OL18016592M","/works/OL1000030W","/subjects/fiction","/subjects/dan_rhodes_(fictitious_character)","/subjects/sheriffs","/subjects/large_type_books","/subjects/place:texas","/authors/OL92934A"],"title":"Of all sad words","title_suggest":["Of all sad words"],"has_fulltext":false,"edition_count":2,"edition_key":["OL16443996M","OL18016592M"],"publish_date":["2008"],"publish_year":[2008],"first_publish_year":2008,"lccn":["2008002280","2007039993"],"publish_place":["Waterville, Me","New York"],"oclc":["173480667"],"lcc":["PS-3553.00000000.R497 O36 2008","PS-3553.00000000.R497 O36 2008b"],"ddc":["813.54"],"isbn":["031234810X","9781410406262","9780312348106","1410406261"],"last_modified_i":1608425917,"ebook_count_i":0,"publisher":["Thomas Dunne Books/St. Martin's Minotaur","Thorndike Press"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"place":["Texas"],"subject":["Fiction","Dan Rhodes (Fictitious character)","Sheriffs","Large type books"],"id_goodreads":["1589139"],"id_librarything":["4196007"],"publisher_facet":["Thomas Dunne Books/St. Martin's Minotaur","Thorndike Press"],"place_key":["texas"],"subject_facet":["Dan Rhodes (Fictitious character)","Fiction","Large type books","Sheriffs"],"_version_":1697074596082090000,"place_facet":["Texas"],"lcc_sort":"PS-3553.00000000.R497 O36 2008b","author_facet":["OL92934A Bill Crider"],"subject_key":["dan_rhodes_(fictitious_character)","fiction","large_type_books","sheriffs"],"ddc_sort":"813.54"}
{"key":"/works/OL10000310W","text":["/works/OL10000310W","al-Islam al-siyasi fi jumhuriyat Wasat Asiya al-Islamiyah (Dirasat muasirah)","OL13210789M","2002330688","9960726770","9789960726779","Markaz al-Malik Faysal lil-Buhuth wa-al-Dirasat al-Islamiyah","OL3965333A","Maytham Janabi","Islam and state","Islam and politics","Politics and government"],"type":"work","seed":["/books/OL13210789M","/works/OL10000310W","/subjects/islam_and_state","/subjects/islam_and_politics","/subjects/politics_and_government","/authors/OL3965333A"],"title":"al-Islam al-siyasi fi jumhuriyat Wasat Asiya al-Islamiyah (Dirasat muasirah)","title_suggest":["al-Islam al-siyasi fi jumhuriyat Wasat Asiya al-Islamiyah (Dirasat muasirah)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL13210789M"],"publish_date":["2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2002330688"],"lcc":["BP-0063.00000000.A34 J34 2001"],"isbn":["9960726770","9789960726779"],"last_modified_i":1607298950,"ebook_count_i":0,"publisher":["Markaz al-Malik Faysal lil-Buhuth wa-al-Dirasat al-Islamiyah"],"language":["ara"],"author_key":["OL3965333A"],"author_name":["Maytham Janabi"],"subject":["Islam and state","Islam and politics","Politics and government"],"id_goodreads":["5729702"],"publisher_facet":["Markaz al-Malik Faysal lil-Buhuth wa-al-Dirasat al-Islamiyah"],"subject_facet":["Islam and politics","Islam and state","Politics and government"],"_version_":1697074596437557200,"lcc_sort":"BP-0063.00000000.A34 J34 2001","author_facet":["OL3965333A Maytham Janabi"],"subject_key":["islam_and_politics","islam_and_state","politics_and_government"]}
{"key":"/works/OL10000311W","text":["/works/OL10000311W","ʻIlm al-milal wa-al-niḥal","taqālīd al-maqālāt wa-al-aḥkām fī thaqāfat al-Islām","OL17283488M","Maytham Janābī.","Dār Kanʻān","OL3965333A","Maytham Janabi","Islamic sects"],"type":"work","seed":["/books/OL17283488M","/works/OL10000311W","/subjects/islamic_sects","/authors/OL3965333A"],"title":"ʻIlm al-milal wa-al-niḥal","title_suggest":["ʻIlm al-milal wa-al-niḥal"],"has_fulltext":false,"edition_count":1,"edition_key":["OL17283488M"],"publish_date":["1994"],"publish_year":[1994],"first_publish_year":1994,"publish_place":["Dimashq"],"lcc":["BP-0191.00000000.J354 1994"],"last_modified_i":1279636588,"ebook_count_i":0,"publisher":["Dār Kanʻān"],"language":["ara"],"author_key":["OL3965333A"],"author_name":["Maytham Janabi"],"subject":["Islamic sects"],"publisher_facet":["Dār Kanʻān"],"subject_facet":["Islamic sects"],"_version_":1697074595707748400,"lcc_sort":"BP-0191.00000000.J354 1994","author_facet":["OL3965333A Maytham Janabi"],"subject_key":["islamic_sects"]}
{"key":"/works/OL10000312W","text":["/works/OL10000312W","Diwan al-wajd","Fuyudat al-hubb al-ilahi (Manshurat al-Mada. al-Shir)","OL12623399M","99899067","43818642","9782843051197","2843051193","al-Mada","OL3965334A","Hadi Alawi"],"type":"work","seed":["/books/OL12623399M","/works/OL10000312W","/authors/OL3965334A"],"title":"Diwan al-wajd","title_suggest":["Diwan al-wajd"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623399M"],"publish_date":["1998"],"publish_year":[1998],"first_publish_year":1998,"lccn":["99899067"],"oclc":["43818642"],"isbn":["9782843051197","2843051193"],"last_modified_i":1606983392,"ebook_count_i":0,"publisher":["al-Mada"],"language":["ara"],"author_key":["OL3965334A"],"author_name":["Hadi Alawi"],"publisher_facet":["al-Mada"],"_version_":1697074595822043100,"author_facet":["OL3965334A Hadi Alawi"]}
{"key":"/works/OL10000313W","text":["/works/OL10000313W","Fil siyassa al Islamiya","OL21438503M","Hadi Alawi.","Sahara","OL3965334A","Hadi Alawi"],"type":"work","seed":["/books/OL21438503M","/works/OL10000313W","/authors/OL3965334A"],"title":"Fil siyassa al Islamiya","title_suggest":["Fil siyassa al Islamiya"],"has_fulltext":false,"edition_count":1,"edition_key":["OL21438503M"],"publish_date":["1991"],"publish_year":[1991],"first_publish_year":1991,"publish_place":["Budapest"],"last_modified_i":1260861849,"ebook_count_i":0,"publisher":["Sahara"],"language":["ara"],"author_key":["OL3965334A"],"author_name":["Hadi Alawi"],"publisher_facet":["Sahara"],"_version_":1697074596422877200,"author_facet":["OL3965334A Hadi Alawi"]}
{"key":"/works/OL10000314W","text":["/works/OL10000314W","Azmat al-maliyah al-kharijiyah fi al-duwal al-Arabiyah","OL12623400M","98964617","40684419","9782843051234","2843051231","Dar al-Mada lil-Thaqafah wa-al-Nashr","OL3965335A","Sabah Naush","External Debts","Financial crises"],"type":"work","seed":["/books/OL12623400M","/works/OL10000314W","/subjects/external_debts","/subjects/financial_crises","/authors/OL3965335A"],"title":"Azmat al-maliyah al-kharijiyah fi al-duwal al-Arabiyah","title_suggest":["Azmat al-maliyah al-kharijiyah fi al-duwal al-Arabiyah"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623400M"],"publish_date":["1998"],"publish_year":[1998],"first_publish_year":1998,"lccn":["98964617"],"oclc":["40684419"],"lcc":["HJ-8824.00000000.N37 1998"],"isbn":["9782843051234","2843051231"],"last_modified_i":1606726295,"ebook_count_i":0,"publisher":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"language":["ara"],"author_key":["OL3965335A"],"author_name":["Sabah Naush"],"subject":["External Debts","Financial crises"],"publisher_facet":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"subject_facet":["External Debts","Financial crises"],"_version_":1697074596051681300,"lcc_sort":"HJ-8824.00000000.N37 1998","author_facet":["OL3965335A Sabah Naush"],"subject_key":["external_debts","financial_crises"]}
{"key":"/works/OL10000315W","text":["/works/OL10000315W","Qisas min al-hayah","Ma ashbahni bi-al-Malik Lir! (Manshurat al-Mada. al-Qissah)","OL12623401M","99899072","43818643","284305124X","9782843051241","al-Mada","OL3965336A","Muhammad Jumah"],"type":"work","seed":["/books/OL12623401M","/works/OL10000315W","/authors/OL3965336A"],"title":"Qisas min al-hayah","title_suggest":["Qisas min al-hayah"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623401M"],"publish_date":["1998"],"publish_year":[1998],"first_publish_year":1998,"lccn":["99899072"],"oclc":["43818643"],"isbn":["284305124X","9782843051241"],"last_modified_i":1606983394,"ebook_count_i":0,"publisher":["al-Mada"],"language":["ara"],"author_key":["OL3965336A"],"author_name":["Muhammad Jumah"],"publisher_facet":["al-Mada"],"_version_":1697074596460626000,"author_facet":["OL3965336A Muhammad Jumah"]}
{"key":"/works/OL10000316W","text":["/works/OL10000316W","al-Upira wa-al-kalb (Manshurat al-Mada. al-Riwayah)","OL12623403M","99899044","41871003","2843051428","9782843051425","Dar al-Mada","OL3965337A","Ali Shuk"],"type":"work","seed":["/books/OL12623403M","/works/OL10000316W","/authors/OL3965337A"],"title":"al-Upira wa-al-kalb (Manshurat al-Mada. al-Riwayah)","title_suggest":["al-Upira wa-al-kalb (Manshurat al-Mada. al-Riwayah)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623403M"],"publish_date":["1999"],"publish_year":[1999],"first_publish_year":1999,"lccn":["99899044"],"oclc":["41871003"],"isbn":["2843051428","9782843051425"],"last_modified_i":1606983381,"ebook_count_i":0,"publisher":["Dar al-Mada"],"language":["ara"],"author_key":["OL3965337A"],"author_name":["Ali Shuk"],"publisher_facet":["Dar al-Mada"],"_version_":1697074596316971000,"author_facet":["OL3965337A Ali Shuk"]}
{"key":"/works/OL10000317W","text":["/works/OL10000317W","Kimiya al-kalimat (Dirasat)","OL12623428M","2002333901","48108398","9782843053375","2843053374","Dar al-Mada lil-Thaqafah wa-al-Nashr","OL3965337A","Ali Shuk","Arabic language","Etymology","Lexicology","Vocabulary","History"],"type":"work","seed":["/books/OL12623428M","/works/OL10000317W","/subjects/arabic_language","/subjects/etymology","/subjects/lexicology","/subjects/vocabulary","/subjects/history","/authors/OL3965337A"],"title":"Kimiya al-kalimat (Dirasat)","title_suggest":["Kimiya al-kalimat (Dirasat)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623428M"],"publish_date":["2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2002333901"],"oclc":["48108398"],"lcc":["PJ-6172.00000000.S48 2001"],"isbn":["9782843053375","2843053374"],"last_modified_i":1607300248,"ebook_count_i":0,"publisher":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"language":["ara"],"author_key":["OL3965337A"],"author_name":["Ali Shuk"],"subject":["Arabic language","Etymology","Lexicology","Vocabulary","History"],"publisher_facet":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"subject_facet":["Arabic language","Etymology","History","Lexicology","Vocabulary"],"_version_":1697074596636786700,"lcc_sort":"PJ-6172.00000000.S48 2001","author_facet":["OL3965337A Ali Shuk"],"subject_key":["arabic_language","etymology","history","lexicology","vocabulary"]}
{"key":"/works/OL10000318M","text":["/works/OL10000318M","The Human Rights Bill (House of Lords Bills)","OL10000318M","314613184","9780108360886","0108360881","Stationery Office Books","English law: constitutional & administrative","English law: social"],"type":"work","seed":["/books/OL10000318M","/works/OL10000318M","/subjects/english_law:_constitutional_&_administrative","/subjects/english_law:_social"],"title":"The Human Rights Bill (House of Lords Bills)","title_suggest":["The Human Rights Bill (House of Lords Bills)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000318M"],"publish_date":["February 1998"],"publish_year":[1998],"first_publish_year":1998,"oclc":["314613184"],"isbn":["9780108360886","0108360881"],"last_modified_i":1618493949,"ebook_count_i":0,"publisher":["Stationery Office Books"],"subject":["English law: constitutional & administrative","English law: social"],"publisher_facet":["Stationery Office Books"],"subject_facet":["English law: constitutional & administrative","English law: social"],"_version_":1697113913162727400,"subject_key":["english_law_constitutional__administrative","english_law_social"]}
{"key":"/works/OL10000318W","text":["/works/OL10000318W","al-Tanmiyah al-mudayyaah fi al-buldan al-Arabiyah (Manshurat al-Mada)","OL12623404M","99899007","43253656","2843051460","9782843051463","Dar al-Mada lil-Thaqafah wa-al-Nashr","OL3965338A","Majid Masud","Economic policy","Privatization","Economic development"],"type":"work","seed":["/books/OL12623404M","/works/OL10000318W","/subjects/economic_policy","/subjects/privatization","/subjects/economic_development","/authors/OL3965338A"],"title":"al-Tanmiyah al-mudayyaah fi al-buldan al-Arabiyah (Manshurat al-Mada)","title_suggest":["al-Tanmiyah al-mudayyaah fi al-buldan al-Arabiyah (Manshurat al-Mada)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623404M"],"publish_date":["1998"],"publish_year":[1998],"first_publish_year":1998,"lccn":["99899007"],"oclc":["43253656"],"lcc":["HC-0498.00000000.M39 1998"],"isbn":["2843051460","9782843051463"],"last_modified_i":1606983363,"ebook_count_i":0,"publisher":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"language":["ara"],"author_key":["OL3965338A"],"author_name":["Majid Masud"],"subject":["Economic policy","Privatization","Economic development"],"publisher_facet":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"subject_facet":["Economic development","Economic policy","Privatization"],"_version_":1697074596469014500,"lcc_sort":"HC-0498.00000000.M39 1998","author_facet":["OL3965338A Majid Masud"],"subject_key":["economic_development","economic_policy","privatization"]}
{"key":"/works/OL10000319W","text":["/works/OL10000319W","Hakaya ramliyah (Manshurat al-Mada. al-Qissah)","OL12623408M","99899173","42439864","9782843051579","2843051576","al-Mada","OL3965339A","Talib Rifai"],"type":"work","seed":["/books/OL12623408M","/works/OL10000319W","/authors/OL3965339A"],"title":"Hakaya ramliyah (Manshurat al-Mada. al-Qissah)","title_suggest":["Hakaya ramliyah (Manshurat al-Mada. al-Qissah)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623408M"],"publish_date":["1999"],"publish_year":[1999],"first_publish_year":1999,"lccn":["99899173"],"oclc":["42439864"],"isbn":["9782843051579","2843051576"],"last_modified_i":1606983447,"ebook_count_i":0,"publisher":["al-Mada"],"language":["ara"],"author_key":["OL3965339A"],"author_name":["Talib Rifai"],"publisher_facet":["al-Mada"],"_version_":1697074595676291000,"author_facet":["OL3965339A Talib Rifai"]}
{"key":"/works/OL1000031W","text":["/works/OL1000031W","Red, white, and blue murder","a sheriff Dan Rhodes mystery","OL3686730M","OL3692762M","Bill Crider.","2003050622","2003065783","52182592","53292369","9780312271855","1587245558","0312271859","9781587245558","redwhitebluemurd00crid","redwhitebluemurd00crid_0","Wheeler Pub.","Thomas Dunne Books","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Texas","Fiction","Dan Rhodes (Fictitious character)","Fourth of July","Sheriffs","Large type books","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL3686730M","/books/OL3692762M","/works/OL1000031W","/subjects/fiction","/subjects/dan_rhodes_(fictitious_character)","/subjects/fourth_of_july","/subjects/sheriffs","/subjects/large_type_books","/subjects/place:texas","/authors/OL92934A"],"title":"Red, white, and blue murder","title_suggest":["Red, white, and blue murder"],"has_fulltext":true,"edition_count":2,"edition_key":["OL3686730M","OL3692762M"],"publish_date":["2003","2004"],"publish_year":[2003,2004],"first_publish_year":2003,"lccn":["2003050622","2003065783"],"publish_place":["New York","Waterville, ME"],"oclc":["52182592","53292369"],"lcc":["PS-3553.00000000.R497 R43 2003","PS-3553.00000000.R497 R43 2004"],"ddc":["813.54"],"isbn":["9780312271855","1587245558","0312271859","9781587245558"],"last_modified_i":1607397603,"ebook_count_i":2,"ia":["redwhitebluemurd00crid","redwhitebluemurd00crid_0"],"public_scan_b":false,"ia_collection_s":"americana;china;spokanepubliclibrary-ol;inlibrary;printdisabled;delawarecountydistrictlibrary;library_of_atlantis;internetarchivebooks;riceuniversity-ol;denverpubliclibrary-ol;delawarecountydistrictlibrary-ol","lending_edition_s":"OL3686730M","lending_identifier_s":"redwhitebluemurd00crid_0","printdisabled_s":"OL3692762M;OL3686730M","cover_edition_key":"OL3686730M","cover_i":177775,"publisher":["Wheeler Pub.","Thomas Dunne Books"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"place":["Texas"],"subject":["Fiction","Dan Rhodes (Fictitious character)","Fourth of July","Sheriffs","Large type books","Accessible book","Protected DAISY"],"id_goodreads":["147113","3655006"],"id_librarything":["413950"],"ia_loaded_id":["redwhitebluemurd00crid"],"ia_box_id":["IA1137802","IA140616"],"publisher_facet":["Thomas Dunne Books","Wheeler Pub."],"place_key":["texas"],"subject_facet":["Accessible book","Dan Rhodes (Fictitious character)","Fiction","Fourth of July","Large type books","Protected DAISY","Sheriffs"],"_version_":1697074596743741400,"place_facet":["Texas"],"lcc_sort":"PS-3553.00000000.R497 R43 2003","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","dan_rhodes_(fictitious_character)","fiction","fourth_of_july","large_type_books","protected_daisy","sheriffs"],"ddc_sort":"813.54"}
{"key":"/works/OL10000320W","text":["/works/OL10000320W","Zaman al-sadaqah al-ati (Manshurat al-Mada. al-Qissah)","OL12623409M","99899232","43254027","9782843051623","2843051622","al-Mada","OL3965340A","Awatif Zayn"],"type":"work","seed":["/books/OL12623409M","/works/OL10000320W","/authors/OL3965340A"],"title":"Zaman al-sadaqah al-ati (Manshurat al-Mada. al-Qissah)","title_suggest":["Zaman al-sadaqah al-ati (Manshurat al-Mada. al-Qissah)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623409M"],"publish_date":["1999"],"publish_year":[1999],"first_publish_year":1999,"lccn":["99899232"],"oclc":["43254027"],"isbn":["9782843051623","2843051622"],"last_modified_i":1606983477,"ebook_count_i":0,"publisher":["al-Mada"],"language":["ara"],"author_key":["OL3965340A"],"author_name":["Awatif Zayn"],"publisher_facet":["al-Mada"],"_version_":1697074596549755000,"author_facet":["OL3965340A Awatif Zayn"]}
{"key":"/works/OL10000321W","text":["/works/OL10000321W","Fals maa Matilda (Manshurat al-Mada. al-Qissah)","OL12623410M","99904499","43253243","2843051649","9782843051647","al-Mada","OL3965341A","Najm Wali"],"type":"work","seed":["/books/OL12623410M","/works/OL10000321W","/authors/OL3965341A"],"title":"Fals maa Matilda (Manshurat al-Mada. al-Qissah)","title_suggest":["Fals maa Matilda (Manshurat al-Mada. al-Qissah)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623410M"],"publish_date":["1999"],"publish_year":[1999],"first_publish_year":1999,"lccn":["99904499"],"oclc":["43253243"],"isbn":["2843051649","9782843051647"],"last_modified_i":1606984774,"ebook_count_i":0,"publisher":["al-Mada"],"language":["ara"],"author_key":["OL3965341A"],"author_name":["Najm Wali"],"id_goodreads":["6659631"],"publisher_facet":["al-Mada"],"_version_":1697074596331651000,"author_facet":["OL3965341A Najm Wali"]}
{"key":"/works/OL10000322W","text":["/works/OL10000322W","Nusus sharqiyah (Manshurat al-Mada. al-Shir)","OL12623411M","99904575","9782843051821","2843051827","al-Mada","OL3965342A","Abd al-Wahhab Bayati"],"type":"work","seed":["/books/OL12623411M","/works/OL10000322W","/authors/OL3965342A"],"title":"Nusus sharqiyah (Manshurat al-Mada. al-Shir)","title_suggest":["Nusus sharqiyah (Manshurat al-Mada. al-Shir)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623411M"],"publish_date":["1999"],"publish_year":[1999],"first_publish_year":1999,"lccn":["99904575"],"isbn":["9782843051821","2843051827"],"last_modified_i":1606984811,"ebook_count_i":0,"publisher":["al-Mada"],"language":["ara"],"author_key":["OL3965342A"],"author_name":["Abd al-Wahhab Bayati"],"id_goodreads":["5249153"],"publisher_facet":["al-Mada"],"_version_":1697074596464820200,"author_facet":["OL3965342A Abd al-Wahhab Bayati"]}
{"key":"/works/OL10000323W","text":["/works/OL10000323W","Raqsat al-rimal (Manshurat Bayt al-Qissah)","OL12623413M","44587784","2843052041","9782843052040","Dar al-Mada lil-Thaqafah wa-al-Nashr","OL3965343A","Khawlah Rumi"],"type":"work","seed":["/books/OL12623413M","/works/OL10000323W","/authors/OL3965343A"],"title":"Raqsat al-rimal (Manshurat Bayt al-Qissah)","title_suggest":["Raqsat al-rimal (Manshurat Bayt al-Qissah)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623413M"],"publish_date":["1999"],"publish_year":[1999],"first_publish_year":1999,"oclc":["44587784"],"isbn":["2843052041","9782843052040"],"last_modified_i":1599912359,"ebook_count_i":0,"publisher":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"language":["ara"],"author_key":["OL3965343A"],"author_name":["Khawlah Rumi"],"publisher_facet":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"_version_":1697074595780100000,"author_facet":["OL3965343A Khawlah Rumi"]}
{"key":"/works/OL10000324W","text":["/works/OL10000324W","al-Kain al-zill (Riwayat al-Hilal)","OL13161983M","9789770706886","9770706884","Dar al-Hilal","OL3965344A","Ismail Fahd Ismail"],"type":"work","seed":["/books/OL13161983M","/works/OL10000324W","/authors/OL3965344A"],"title":"al-Kain al-zill (Riwayat al-Hilal)","title_suggest":["al-Kain al-zill (Riwayat al-Hilal)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL13161983M"],"publish_date":["1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9789770706886","9770706884"],"last_modified_i":1599912325,"ebook_count_i":0,"publisher":["Dar al-Hilal"],"language":["ara"],"author_key":["OL3965344A"],"author_name":["Ismail Fahd Ismail"],"publisher_facet":["Dar al-Hilal"],"_version_":1697074596081041400,"author_facet":["OL3965344A Ismail Fahd Ismail"]}
{"key":"/works/OL10000325W","text":["/works/OL10000325W","Baidan-- ila huna (Riwayat)","OL12623430M","2002330036","284305351X","9782843053511","al-Mada","OL3965344A","Ismail Fahd Ismail"],"type":"work","seed":["/books/OL12623430M","/works/OL10000325W","/authors/OL3965344A"],"title":"Baidan-- ila huna (Riwayat)","title_suggest":["Baidan-- ila huna (Riwayat)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623430M"],"publish_date":["2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2002330036"],"isbn":["284305351X","9782843053511"],"last_modified_i":1607298706,"ebook_count_i":0,"publisher":["al-Mada"],"language":["ara"],"author_key":["OL3965344A"],"author_name":["Ismail Fahd Ismail"],"publisher_facet":["al-Mada"],"_version_":1697074596628398000,"author_facet":["OL3965344A Ismail Fahd Ismail"]}
{"key":"/works/OL10000326W","text":["/works/OL10000326W","Baidan-- ila hunna (Riwayah)","OL13163671M","9789772830602","9772830604","1998","OL3965344A","Ismail Fahd Ismail"],"type":"work","seed":["/books/OL13163671M","/works/OL10000326W","/authors/OL3965344A"],"title":"Baidan-- ila hunna (Riwayah)","title_suggest":["Baidan-- ila hunna (Riwayah)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL13163671M"],"publish_date":["1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["9789772830602","9772830604"],"last_modified_i":1260840934,"ebook_count_i":0,"publisher":["1998"],"language":["ara"],"author_key":["OL3965344A"],"author_name":["Ismail Fahd Ismail"],"publisher_facet":["1998"],"_version_":1697074595768565800,"author_facet":["OL3965344A Ismail Fahd Ismail"]}
{"key":"/works/OL10000327W","text":["/works/OL10000327W","Sama naiyah (Manshurat al-Mada)","OL12623414M","44443785","9782843052125","2843052122","Dar al-Thaqafah lil-Thaqafah wa-al-Nashr","OL3965344A","Ismail Fahd Ismail"],"type":"work","seed":["/books/OL12623414M","/works/OL10000327W","/authors/OL3965344A"],"title":"Sama naiyah (Manshurat al-Mada)","title_suggest":["Sama naiyah (Manshurat al-Mada)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623414M"],"publish_date":["2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["44443785"],"isbn":["9782843052125","2843052122"],"last_modified_i":1599915746,"ebook_count_i":0,"publisher":["Dar al-Thaqafah lil-Thaqafah wa-al-Nashr"],"language":["ara"],"author_key":["OL3965344A"],"author_name":["Ismail Fahd Ismail"],"publisher_facet":["Dar al-Thaqafah lil-Thaqafah wa-al-Nashr"],"_version_":1697074596526686200,"author_facet":["OL3965344A Ismail Fahd Ismail"]}
{"key":"/works/OL10000328W","text":["/works/OL10000328W","Thalath qiraat turathiyah (Manshurat al-Mada)","OL12623415M","99523779","9782843052231","2843052238","Dar al-Mada lil-Thaqafah wa-al-Nashr","OL3965345A","Sulayman Shatti","Arabic poetry","History and criticism","Arabic literature","Islamic influences","Islam and poetry"],"type":"work","seed":["/books/OL12623415M","/works/OL10000328W","/subjects/arabic_poetry","/subjects/history_and_criticism","/subjects/arabic_literature","/subjects/islamic_influences","/subjects/islam_and_poetry","/authors/OL3965345A"],"title":"Thalath qiraat turathiyah (Manshurat al-Mada)","title_suggest":["Thalath qiraat turathiyah (Manshurat al-Mada)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623415M"],"publish_date":["2000"],"publish_year":[2000],"first_publish_year":2000,"lccn":["99523779"],"lcc":["PJ-7542.00000000.I8 S53 2000"],"isbn":["9782843052231","2843052238"],"last_modified_i":1606976661,"ebook_count_i":0,"publisher":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"language":["ara"],"author_key":["OL3965345A"],"author_name":["Sulayman Shatti"],"subject":["Arabic poetry","History and criticism","Arabic literature","Islamic influences","Islam and poetry"],"publisher_facet":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"subject_facet":["Arabic literature","Arabic poetry","History and criticism","Islam and poetry","Islamic influences"],"_version_":1697074596660904000,"lcc_sort":"PJ-7542.00000000.I8 S53 2000","author_facet":["OL3965345A Sulayman Shatti"],"subject_key":["arabic_literature","arabic_poetry","history_and_criticism","islam_and_poetry","islamic_influences"]}
{"key":"/works/OL10000329W","text":["/works/OL10000329W","Khadra ka-al-bihar (Manshurat al-Mada. al-Riwayah)","OL12623418M","9782843052293","2843052297","Dar al-Mada lil-Thaqafah wa-al-Nashr","OL3965346A","Hani Rahib"],"type":"work","seed":["/books/OL12623418M","/works/OL10000329W","/authors/OL3965346A"],"title":"Khadra ka-al-bihar (Manshurat al-Mada. al-Riwayah)","title_suggest":["Khadra ka-al-bihar (Manshurat al-Mada. al-Riwayah)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623418M"],"publish_date":["2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782843052293","2843052297"],"last_modified_i":1599912370,"ebook_count_i":0,"publisher":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"language":["ara"],"author_key":["OL3965346A"],"author_name":["Hani Rahib"],"id_goodreads":["5976578"],"publisher_facet":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"_version_":1697074595641688000,"author_facet":["OL3965346A Hani Rahib"]}
{"key":"/works/OL1000032W","text":["/works/OL1000032W","Ryan rides back","OL2031371M","OL1714921M","Bill Crider.","88006955","92017223","17650318","25914696","9780871315427","156054418X","0871315424","9781560544180","ryanridesback00crid_0","M. Evans","Thorndike Press","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Large type books","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL2031371M","/books/OL1714921M","/works/OL1000032W","/subjects/large_type_books","/authors/OL92934A"],"title":"Ryan rides back","title_suggest":["Ryan rides back"],"has_fulltext":true,"edition_count":2,"edition_key":["OL2031371M","OL1714921M"],"publish_date":["1992","1988"],"publish_year":[1992,1988],"first_publish_year":1988,"lccn":["88006955","92017223"],"publish_place":["Thorndike, Me","New York"],"oclc":["17650318","25914696"],"lcc":["PS-3553.00000000.R497 R93 1988","PS-3553.00000000.R497 R93 1992"],"ddc":["813.54"],"isbn":["9780871315427","156054418X","0871315424","9781560544180"],"last_modified_i":1605424982,"ebook_count_i":1,"ia":["ryanridesback00crid_0"],"public_scan_b":false,"ia_collection_s":"china;inlibrary;printdisabled;internetarchivebooks;universityofarizona-ol","lending_edition_s":"OL2031371M","lending_identifier_s":"ryanridesback00crid_0","printdisabled_s":"OL2031371M","cover_edition_key":"OL2031371M","cover_i":8114728,"publisher":["M. Evans","Thorndike Press"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"subject":["Large type books","Accessible book","Protected DAISY"],"id_goodreads":["3185153","3845279"],"ia_box_id":["IA1162617"],"publisher_facet":["M. Evans","Thorndike Press"],"subject_facet":["Accessible book","Large type books","Protected DAISY"],"_version_":1697074596529832000,"lcc_sort":"PS-3553.00000000.R497 R93 1988","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","large_type_books","protected_daisy"],"ddc_sort":"813.54"}
{"key":"/works/OL10000330W","text":["/works/OL10000330W","Sadi Yusuf, al-nabrah al-khafitah fi al-shir al-Arabi al-hadith (Manshurat al-Mada)","OL12623419M","99523781","2843052432","9782843052439","Dar al-Mada lil-Thaqafah wa-al-Nashr","OL3965347A","Fatimah Muhsin","Arabic poetry","History and criticism"],"type":"work","seed":["/books/OL12623419M","/works/OL10000330W","/subjects/arabic_poetry","/subjects/history_and_criticism","/authors/OL3965347A"],"title":"Sadi Yusuf, al-nabrah al-khafitah fi al-shir al-Arabi al-hadith (Manshurat al-Mada)","title_suggest":["Sadi Yusuf, al-nabrah al-khafitah fi al-shir al-Arabi al-hadith (Manshurat al-Mada)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623419M"],"publish_date":["2000"],"publish_year":[2000],"first_publish_year":2000,"lccn":["99523781"],"lcc":["PJ-7874.00000000.U84 Z78 2000"],"isbn":["2843052432","9782843052439"],"last_modified_i":1606976663,"ebook_count_i":0,"publisher":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"language":["ara"],"author_key":["OL3965347A"],"author_name":["Fatimah Muhsin"],"subject":["Arabic poetry","History and criticism"],"id_goodreads":["1833713"],"publisher_facet":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"subject_facet":["Arabic poetry","History and criticism"],"_version_":1697074596125081600,"lcc_sort":"PJ-7874.00000000.U84 Z78 2000","author_facet":["OL3965347A Fatimah Muhsin"],"subject_key":["arabic_poetry","history_and_criticism"]}
{"key":"/works/OL10000331W","text":["/works/OL10000331W","Itr al-layl al-baqi","Qisas qasirah","OL12623420M","99523769","2843052440","9782843052446","Yutlabu min Dar al-Mada","OL3965348A","Layla Muhammad Salih"],"type":"work","seed":["/books/OL12623420M","/works/OL10000331W","/authors/OL3965348A"],"title":"Itr al-layl al-baqi","title_suggest":["Itr al-layl al-baqi"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623420M"],"publish_date":["2000"],"publish_year":[2000],"first_publish_year":2000,"lccn":["99523769"],"isbn":["2843052440","9782843052446"],"last_modified_i":1606976655,"ebook_count_i":0,"publisher":["Yutlabu min Dar al-Mada"],"language":["ara"],"author_key":["OL3965348A"],"author_name":["Layla Muhammad Salih"],"publisher_facet":["Yutlabu min Dar al-Mada"],"_version_":1697074596004495400,"author_facet":["OL3965348A Layla Muhammad Salih"]}
{"key":"/works/OL10000332W","text":["/works/OL10000332W","al-Muhakamah","Maqta min sirat al-waqi (Sirah)","OL12623421M","99499508","45491923","2843053137","9782843053139","Dar al-Mada lil-Thaqafah wa-al-Nashr","OL3965349A","Layla Uthman","Arab Women authors","Arab Authors","Biography"],"type":"work","seed":["/books/OL12623421M","/works/OL10000332W","/subjects/arab_women_authors","/subjects/arab_authors","/subjects/biography","/authors/OL3965349A"],"title":"al-Muhakamah","title_suggest":["al-Muhakamah"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623421M"],"publish_date":["2000"],"publish_year":[2000],"first_publish_year":2000,"lccn":["99499508"],"oclc":["45491923"],"lcc":["PJ-7866.00000000.T526 Z465 2000"],"isbn":["2843053137","9782843053139"],"last_modified_i":1606925323,"ebook_count_i":0,"publisher":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"language":["ara"],"author_key":["OL3965349A"],"author_name":["Layla Uthman"],"subject":["Arab Women authors","Arab Authors","Biography"],"publisher_facet":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"subject_facet":["Arab Authors","Arab Women authors","Biography"],"_version_":1697074596099915800,"lcc_sort":"PJ-7866.00000000.T526 Z465 2000","author_facet":["OL3965349A Layla Uthman"],"subject_key":["arab_authors","arab_women_authors","biography"]}
{"key":"/works/OL10000333W","text":["/works/OL10000333W","Nass al-marah (Nusus)","OL12623422M","99499511","9782843053160","2843053161","Dar al-Mada lil-Thaqafah wa-al-Nashr","OL3965350A","Ali Sarhan Qurashi","History and criticism","Arabic literature","Narration (Rhetoric)","Women in literature"],"type":"work","seed":["/books/OL12623422M","/works/OL10000333W","/subjects/history_and_criticism","/subjects/arabic_literature","/subjects/narration_(rhetoric)","/subjects/women_in_literature","/authors/OL3965350A"],"title":"Nass al-marah (Nusus)","title_suggest":["Nass al-marah (Nusus)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623422M"],"publish_date":["2000"],"publish_year":[2000],"first_publish_year":2000,"lccn":["99499511"],"lcc":["PJ-7519.00000000.W66 Q73 2000"],"isbn":["9782843053160","2843053161"],"last_modified_i":1606925326,"ebook_count_i":0,"publisher":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"language":["ara"],"author_key":["OL3965350A"],"author_name":["Ali Sarhan Qurashi"],"subject":["History and criticism","Arabic literature","Narration (Rhetoric)","Women in literature"],"publisher_facet":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"subject_facet":["Arabic literature","History and criticism","Narration (Rhetoric)","Women in literature"],"_version_":1697074596278173700,"lcc_sort":"PJ-7519.00000000.W66 Q73 2000","author_facet":["OL3965350A Ali Sarhan Qurashi"],"subject_key":["arabic_literature","history_and_criticism","narration_(rhetoric)","women_in_literature"]}
{"key":"/works/OL10000334W","text":["/works/OL10000334W","Rihlat al-dhat fi fada al-nass al-shiri al-qadim","OL13210502M","2001302819","47110738","9789960618500","9960618501","Nadi al-Madinah al-Munawwarah al-Adabi","OL3965350A","Ali Sarhan Qurashi","Criticism and interpretation","Arabic poetry","History and criticism"],"type":"work","seed":["/books/OL13210502M","/works/OL10000334W","/subjects/criticism_and_interpretation","/subjects/arabic_poetry","/subjects/history_and_criticism","/authors/OL3965350A"],"title":"Rihlat al-dhat fi fada al-nass al-shiri al-qadim","title_suggest":["Rihlat al-dhat fi fada al-nass al-shiri al-qadim"],"has_fulltext":false,"edition_count":1,"edition_key":["OL13210502M"],"publish_date":["2000"],"publish_year":[2000],"first_publish_year":2000,"lccn":["2001302819"],"oclc":["47110738"],"lcc":["PJ-7750.00000000.M8 Z7945 2000"],"isbn":["9789960618500","9960618501"],"last_modified_i":1607092466,"ebook_count_i":0,"publisher":["Nadi al-Madinah al-Munawwarah al-Adabi"],"language":["ara"],"author_key":["OL3965350A"],"author_name":["Ali Sarhan Qurashi"],"subject":["Criticism and interpretation","Arabic poetry","History and criticism"],"id_goodreads":["6098709"],"publisher_facet":["Nadi al-Madinah al-Munawwarah al-Adabi"],"subject_facet":["Arabic poetry","Criticism and interpretation","History and criticism"],"_version_":1697074596478451700,"lcc_sort":"PJ-7750.00000000.M8 Z7945 2000","author_facet":["OL3965350A Ali Sarhan Qurashi"],"subject_key":["arabic_poetry","criticism_and_interpretation","history_and_criticism"]}
{"key":"/works/OL10000335W","text":["/works/OL10000335W","al-Babakiyah (Manshurat al-Mada)","OL12623423M","2002330295","2843053234","9782843053238","al-Mada","OL3965351A","Husayn Qasim Aziz","Abbasids","History"],"type":"work","seed":["/books/OL12623423M","/works/OL10000335W","/subjects/abbasids","/subjects/history","/authors/OL3965351A"],"title":"al-Babakiyah (Manshurat al-Mada)","title_suggest":["al-Babakiyah (Manshurat al-Mada)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623423M"],"publish_date":["2000"],"publish_year":[2000],"first_publish_year":2000,"lccn":["2002330295"],"lcc":["DS-0038.60000000.A976 2000"],"isbn":["2843053234","9782843053238"],"last_modified_i":1607298781,"ebook_count_i":0,"publisher":["al-Mada"],"language":["ara"],"author_key":["OL3965351A"],"author_name":["Husayn Qasim Aziz"],"subject":["Abbasids","History"],"id_goodreads":["464846"],"publisher_facet":["al-Mada"],"subject_facet":["Abbasids","History"],"_version_":1697074596092575700,"lcc_sort":"DS-0038.60000000.A976 2000","author_facet":["OL3965351A Husayn Qasim Aziz"],"subject_key":["abbasids","history"]}
{"key":"/works/OL10000336W","text":["/works/OL10000336W","Rihanat al-nahdah fi al-fikr al-Arabi (Dirasat)","OL12623424M","2001285530","2843053250","9782843053252","Dar al-Mada lil-Thaqafah wa-al-Nashr","OL3965352A","Mahir Sharif","Nationalism and communism","Intellectual life"],"type":"work","seed":["/books/OL12623424M","/works/OL10000336W","/subjects/nationalism_and_communism","/subjects/intellectual_life","/authors/OL3965352A"],"title":"Rihanat al-nahdah fi al-fikr al-Arabi (Dirasat)","title_suggest":["Rihanat al-nahdah fi al-fikr al-Arabi (Dirasat)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623424M"],"publish_date":["2000"],"publish_year":[2000],"first_publish_year":2000,"lccn":["2001285530"],"lcc":["HX-0434.00000000.A6 S484 2000"],"isbn":["2843053250","9782843053252"],"last_modified_i":1607087924,"ebook_count_i":0,"publisher":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"language":["ara"],"author_key":["OL3965352A"],"author_name":["Mahir Sharif"],"subject":["Nationalism and communism","Intellectual life"],"publisher_facet":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"subject_facet":["Intellectual life","Nationalism and communism"],"_version_":1697074596558143500,"lcc_sort":"HX-0434.00000000.A6 S484 2000","author_facet":["OL3965352A Mahir Sharif"],"subject_key":["intellectual_life","nationalism_and_communism"]}
{"key":"/works/OL10000337W","text":["/works/OL10000337W","al-Amal al-qisasiyah (Qisas)","Complete works, stories","Aʻmāl al-qaṣaṣīyah","Short stories","al- Aʻmāl al-qiṣaṣīyah","OL22611061M","OL12623425M","ʻAbd al-Ilāh ʻAbd al-Qādir.","2002330030","48880123","9782843053276","2843053277","Dar al-Mada lil-Thaqafah wa-al-Nashr","Dār al-Madá lil-Thaqāfah wa-al-Nashr","OL3965353A","OL5532266A","Abd al-Ilah Abd al-Qadir","ʻAbd al-Ilāh ʻAbd al-Qādir"],"type":"work","seed":["/books/OL22611061M","/books/OL12623425M","/works/OL10000337W","/authors/OL3965353A","/authors/OL5532266A"],"title":"al-Amal al-qisasiyah (Qisas)","title_suggest":["al-Amal al-qisasiyah (Qisas)"],"has_fulltext":false,"edition_count":2,"edition_key":["OL22611061M","OL12623425M"],"publish_date":["2000"],"publish_year":[2000],"first_publish_year":2000,"lccn":["2002330030"],"publish_place":["Dimashq"],"oclc":["48880123"],"lcc":["PJ-7804.00000000.Q323 A15 2000"],"isbn":["9782843053276","2843053277"],"last_modified_i":1607298703,"ebook_count_i":0,"publisher":["Dar al-Mada lil-Thaqafah wa-al-Nashr","Dār al-Madá lil-Thaqāfah wa-al-Nashr"],"language":["ara"],"author_key":["OL3965353A","OL5532266A"],"author_name":["Abd al-Ilah Abd al-Qadir","ʻAbd al-Ilāh ʻAbd al-Qādir"],"publisher_facet":["Dar al-Mada lil-Thaqafah wa-al-Nashr","Dār al-Madá lil-Thaqāfah wa-al-Nashr"],"_version_":1697074596121936000,"lcc_sort":"PJ-7804.00000000.Q323 A15 2000","author_facet":["OL3965353A Abd al-Ilah Abd al-Qadir","OL5532266A ʻAbd al-Ilāh ʻAbd al-Qādir"]}
{"key":"/works/OL10000338W","text":["/works/OL10000338W","al-Nabi Ibrahim fi al-thaqafah al-Arabiyah al-Islamiyah (Dirasat)","OL12623426M","2002330313","47698469","9782843053337","2843053331","al-Mada","OL3965354A","Tuhami Abduli","In the Qurʼan"],"type":"work","seed":["/books/OL12623426M","/works/OL10000338W","/subjects/in_the_qurʼan","/authors/OL3965354A"],"title":"al-Nabi Ibrahim fi al-thaqafah al-Arabiyah al-Islamiyah (Dirasat)","title_suggest":["al-Nabi Ibrahim fi al-thaqafah al-Arabiyah al-Islamiyah (Dirasat)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623426M"],"publish_date":["2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2002330313"],"oclc":["47698469"],"lcc":["BS-0580.00000000.A3 A33 2001"],"isbn":["9782843053337","2843053331"],"last_modified_i":1607298788,"ebook_count_i":0,"publisher":["al-Mada"],"language":["ara"],"author_key":["OL3965354A"],"author_name":["Tuhami Abduli"],"subject":["In the Qurʼan"],"id_goodreads":["2403397"],"publisher_facet":["al-Mada"],"subject_facet":["In the Qurʼan"],"_version_":1697074595640639500,"lcc_sort":"BS-0580.00000000.A3 A33 2001","author_facet":["OL3965354A Tuhami Abduli"],"subject_key":["in_the_qurʼan"]}
{"key":"/works/OL10000339W","text":["/works/OL10000339W","al-Hiwar wa-al-sidam fi al-thaqafah al-Arabiyah al-muasirah (Dirasat)","OL12623427M","2002330043","48980225","2843053358","9782843053351","al-Mada","OL3965355A","Hamid Khalil","Intellectual life","Arab National characteristics","Cultural policy"],"type":"work","seed":["/books/OL12623427M","/works/OL10000339W","/subjects/intellectual_life","/subjects/arab_national_characteristics","/subjects/cultural_policy","/authors/OL3965355A"],"title":"al-Hiwar wa-al-sidam fi al-thaqafah al-Arabiyah al-muasirah (Dirasat)","title_suggest":["al-Hiwar wa-al-sidam fi al-thaqafah al-Arabiyah al-muasirah (Dirasat)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623427M"],"publish_date":["2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2002330043"],"oclc":["48980225"],"lcc":["DS-0036.88000000.K432 2001"],"isbn":["2843053358","9782843053351"],"last_modified_i":1607298710,"ebook_count_i":0,"publisher":["al-Mada"],"language":["ara"],"author_key":["OL3965355A"],"author_name":["Hamid Khalil"],"subject":["Intellectual life","Arab National characteristics","Cultural policy"],"publisher_facet":["al-Mada"],"subject_facet":["Arab National characteristics","Cultural policy","Intellectual life"],"_version_":1697074596352622600,"lcc_sort":"DS-0036.88000000.K432 2001","author_facet":["OL3965355A Hamid Khalil"],"subject_key":["arab_national_characteristics","cultural_policy","intellectual_life"]}
{"key":"/works/OL1000033W","text":["/works/OL1000033W","Shotgun Saturday night","Shotgun Saturday Night","a Sheriff Dan Rhodes mystery","OL2384497M","OL7910237M","Bill Crider.","87013354","21134219","0802756840","0804104239","9780802756848","9780804104234","shotgunsaturdayn00crid","Walker","Ivy Books","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Texas","Dan Rhodes (Fictitious character)","Sheriffs","Fiction","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL2384497M","/books/OL7910237M","/works/OL1000033W","/subjects/dan_rhodes_(fictitious_character)","/subjects/sheriffs","/subjects/fiction","/subjects/place:texas","/authors/OL92934A"],"title":"Shotgun Saturday night","title_suggest":["Shotgun Saturday night"],"has_fulltext":true,"edition_count":2,"edition_key":["OL2384497M","OL7910237M"],"publish_date":["1987","December 30, 1989"],"publish_year":[1987,1989],"first_publish_year":1987,"lccn":["87013354"],"publish_place":["New York"],"oclc":["21134219"],"lcc":["PS-3553.00000000.R497 S5 1987"],"ddc":["813.54"],"isbn":["0802756840","0804104239","9780802756848","9780804104234"],"last_modified_i":1604639793,"ebook_count_i":1,"ia":["shotgunsaturdayn00crid"],"public_scan_b":false,"ia_collection_s":"china;fav-where_apos_s_uranus_;inlibrary;printdisabled;tamu-evanslibrary-ol;internetarchivebooks;universityofarizona-ol","lending_edition_s":"OL2384497M","lending_identifier_s":"shotgunsaturdayn00crid","printdisabled_s":"OL2384497M","cover_edition_key":"OL2384497M","cover_i":9689509,"publisher":["Walker","Ivy Books"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"place":["Texas"],"subject":["Dan Rhodes (Fictitious character)","Sheriffs","Fiction","Accessible book","Protected DAISY"],"id_goodreads":["272341","147117"],"id_librarything":["2578308"],"ia_loaded_id":["shotgunsaturdayn00crid"],"ia_box_id":["IA143601"],"publisher_facet":["Ivy Books","Walker"],"place_key":["texas"],"subject_facet":["Accessible book","Dan Rhodes (Fictitious character)","Fiction","Protected DAISY","Sheriffs"],"_version_":1697074596507811800,"place_facet":["Texas"],"lcc_sort":"PS-3553.00000000.R497 S5 1987","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","dan_rhodes_(fictitious_character)","fiction","protected_daisy","sheriffs"],"ddc_sort":"813.54"}
{"key":"/works/OL10000340W","text":["/works/OL10000340W","Hayat al-Biruni (Dirasat al-Mada)","OL12623429M","2002330056","47186806","9782843053399","2843053390","Dar al-Mada lil-Thaqafah wa-al-Nashr","OL3965356A","Muhammad Abd al-Hamid Hamad","Scientists","Biography"],"type":"work","seed":["/books/OL12623429M","/works/OL10000340W","/subjects/scientists","/subjects/biography","/authors/OL3965356A"],"title":"Hayat al-Biruni (Dirasat al-Mada)","title_suggest":["Hayat al-Biruni (Dirasat al-Mada)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623429M"],"publish_date":["2000"],"publish_year":[2000],"first_publish_year":2000,"lccn":["2002330056"],"oclc":["47186806"],"isbn":["9782843053399","2843053390"],"last_modified_i":1607298716,"ebook_count_i":0,"publisher":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"language":["ara"],"author_key":["OL3965356A"],"author_name":["Muhammad Abd al-Hamid Hamad"],"subject":["Scientists","Biography"],"id_goodreads":["6946582"],"publisher_facet":["Dar al-Mada lil-Thaqafah wa-al-Nashr"],"subject_facet":["Biography","Scientists"],"_version_":1697074596258250800,"author_facet":["OL3965356A Muhammad Abd al-Hamid Hamad"],"subject_key":["biography","scientists"]}
{"key":"/works/OL10000341W","text":["/works/OL10000341W","Miat am min al-fikr al-naqdi","Al-usul al-thaqafiyah wa-al-marjiiyat al-ittisaliyah lil-naqd al-hadith fi al-Iraq (Dirasat)","OL12623431M","2002330292","9782843053597","2843053595","al-Mada","OL3965357A","Said Ghanimi","Arabic literature","History and criticism","Criticism","History","Critics"],"type":"work","seed":["/books/OL12623431M","/works/OL10000341W","/subjects/arabic_literature","/subjects/history_and_criticism","/subjects/criticism","/subjects/history","/subjects/critics","/authors/OL3965357A"],"title":"Miat am min al-fikr al-naqdi","title_suggest":["Miat am min al-fikr al-naqdi"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623431M"],"publish_date":["2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2002330292"],"lcc":["PJ-8032.00000000.G48 2001"],"isbn":["9782843053597","2843053595"],"last_modified_i":1607298780,"ebook_count_i":0,"publisher":["al-Mada"],"language":["ara"],"author_key":["OL3965357A"],"author_name":["Said Ghanimi"],"subject":["Arabic literature","History and criticism","Criticism","History","Critics"],"publisher_facet":["al-Mada"],"subject_facet":["Arabic literature","Criticism","Critics","History","History and criticism"],"_version_":1697074596480548900,"lcc_sort":"PJ-8032.00000000.G48 2001","author_facet":["OL3965357A Said Ghanimi"],"subject_key":["arabic_literature","criticism","critics","history","history_and_criticism"]}
{"key":"/works/OL10000342W","text":["/works/OL10000342W","Le régime dissocié","OL12652179M","9782909509440","2909509443","Bernet-Danilo","OL3965358A","Monique Egé"],"type":"work","seed":["/books/OL12652179M","/works/OL10000342W","/authors/OL3965358A"],"title":"Le régime dissocié","title_suggest":["Le régime dissocié"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12652179M"],"publish_date":["June 17, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782909509440","2909509443"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12652179M","cover_i":3160752,"publisher":["Bernet-Danilo"],"language":["fre"],"author_key":["OL3965358A"],"author_name":["Monique Egé"],"id_goodreads":["5811825"],"publisher_facet":["Bernet-Danilo"],"_version_":1697074595841966000,"author_facet":["OL3965358A Monique Egé"]}
{"key":"/works/OL10000343W","text":["/works/OL10000343W","Le Régime macrobiotique","OL12652180M","9782909509488","2909509486","Bernet-Danilo","OL3965358A","Monique Egé"],"type":"work","seed":["/books/OL12652180M","/works/OL10000343W","/authors/OL3965358A"],"title":"Le Régime macrobiotique","title_suggest":["Le Régime macrobiotique"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12652180M"],"publish_date":["June 17, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782909509488","2909509486"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12652180M","cover_i":3160753,"publisher":["Bernet-Danilo"],"author_key":["OL3965358A"],"author_name":["Monique Egé"],"id_goodreads":["5811817"],"publisher_facet":["Bernet-Danilo"],"_version_":1697074596290756600,"author_facet":["OL3965358A Monique Egé"]}
{"key":"/works/OL10000344W","text":["/works/OL10000344W","Le régime végétarien","OL12652181M","9782909509495","2909509494","Bernet-Danilo","OL3965358A","Monique Egé"],"type":"work","seed":["/books/OL12652181M","/works/OL10000344W","/authors/OL3965358A"],"title":"Le régime végétarien","title_suggest":["Le régime végétarien"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12652181M"],"publish_date":["June 17, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782909509495","2909509494"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12652181M","cover_i":3160754,"publisher":["Bernet-Danilo"],"language":["fre"],"author_key":["OL3965358A"],"author_name":["Monique Egé"],"id_goodreads":["5811820"],"publisher_facet":["Bernet-Danilo"],"_version_":1697074596385128400,"author_facet":["OL3965358A Monique Egé"]}
{"key":"/works/OL10000345W","text":["/works/OL10000345W","Le Secret des nombres","OL12623435M","9782843081040","2843081041","Morena","OL3965360A","Gérard Douat"],"type":"work","seed":["/books/OL12623435M","/works/OL10000345W","/authors/OL3965360A"],"title":"Le Secret des nombres","title_suggest":["Le Secret des nombres"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623435M"],"publish_date":["October 1, 1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["9782843081040","2843081041"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623435M","cover_i":3140590,"publisher":["Morena"],"language":["fre"],"author_key":["OL3965360A"],"author_name":["Gérard Douat"],"id_goodreads":["6155285"],"publisher_facet":["Morena"],"_version_":1697074596225745000,"author_facet":["OL3965360A Gérard Douat"]}
{"key":"/works/OL10000346W","text":["/works/OL10000346W","Saqqara","pierres d'éternité","OL21563845M","OL19950994M","Diane Harlé.","[photographies] Hervé Champollion ; textes de Diane Sarofim Harlé.","2005483068","Champollion, Hervé.","9782866654221","2866654226","Hermé","OL3965361A","Diane Harlé","Egypt","Ṣaqqārah","Ṣaqqārah (Egypt)","Decoration","Relief (Sculpture), Ancient","Relief (Sculpture), Egyptian","Tombs","Antiquities"],"type":"work","seed":["/books/OL21563845M","/books/OL19950994M","/works/OL10000346W","/subjects/decoration","/subjects/relief_(sculpture)_ancient","/subjects/relief_(sculpture)_egyptian","/subjects/tombs","/subjects/antiquities","/subjects/place:egypt","/subjects/place:ṣaqqārah","/subjects/place:ṣaqqārah_(egypt)","/authors/OL3965361A"],"title":"Saqqara","title_suggest":["Saqqara"],"has_fulltext":false,"edition_count":2,"edition_key":["OL21563845M","OL19950994M"],"publish_date":["2005"],"publish_year":[2005],"first_publish_year":2005,"lccn":["2005483068"],"publish_place":["Paris"],"contributor":["Champollion, Hervé."],"lcc":["NB-0075.00000000.H373 2005"],"isbn":["9782866654221","2866654226"],"last_modified_i":1607889628,"ebook_count_i":0,"publisher":["Hermé"],"language":["fre"],"author_key":["OL3965361A"],"author_name":["Diane Harlé"],"place":["Egypt","Ṣaqqārah","Ṣaqqārah (Egypt)"],"subject":["Decoration","Relief (Sculpture), Ancient","Relief (Sculpture), Egyptian","Tombs","Antiquities"],"publisher_facet":["Hermé"],"place_key":["egypt","ṣaqqārah","ṣaqqārah_(egypt)"],"subject_facet":["Antiquities","Decoration","Relief (Sculpture), Ancient","Relief (Sculpture), Egyptian","Tombs"],"_version_":1697074596046438400,"place_facet":["Egypt","Ṣaqqārah","Ṣaqqārah (Egypt)"],"lcc_sort":"NB-0075.00000000.H373 2005","author_facet":["OL3965361A Diane Harlé"],"subject_key":["antiquities","decoration","relief_(sculpture)_ancient","relief_(sculpture)_egyptian","tombs"]}
{"key":"/works/OL10000347W","text":["/works/OL10000347W","Images de Venise","OL12623443M","9782843083068","2843083060","Editions de Lodi","OL3965363A","Christophe Fouglé"],"type":"work","seed":["/books/OL12623443M","/works/OL10000347W","/authors/OL3965363A"],"title":"Images de Venise","title_suggest":["Images de Venise"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623443M"],"publish_date":["December 5, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782843083068","2843083060"],"last_modified_i":1272134783,"ebook_count_i":0,"publisher":["Editions de Lodi"],"language":["fre"],"author_key":["OL3965363A"],"author_name":["Christophe Fouglé"],"id_goodreads":["3956777"],"publisher_facet":["Editions de Lodi"],"_version_":1697074596630495200,"author_facet":["OL3965363A Christophe Fouglé"]}
{"key":"/works/OL10000348M","text":["/works/OL10000348M","Electricity Generation Bill (H.L.) (House of Lords Bills)","OL10000348M","9780108361197","0108361195","Stationery Office Books","Energy industries & utilities","English law: energy & natural resources law","c 1990 to c 2000"],"type":"work","seed":["/books/OL10000348M","/works/OL10000348M","/subjects/energy_industries_&_utilities","/subjects/english_law:_energy_&_natural_resources_law","/subjects/c_1990_to_c_2000"],"title":"Electricity Generation Bill (H.L.) (House of Lords Bills)","title_suggest":["Electricity Generation Bill (H.L.) (House of Lords Bills)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000348M"],"publish_date":["February 1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["9780108361197","0108361195"],"last_modified_i":1618493947,"ebook_count_i":0,"publisher":["Stationery Office Books"],"subject":["Energy industries & utilities","English law: energy & natural resources law","c 1990 to c 2000"],"publisher_facet":["Stationery Office Books"],"subject_facet":["Energy industries & utilities","English law: energy & natural resources law","c 1990 to c 2000"],"_version_":1697113913025364000,"subject_key":["c_1990_to_c_2000","energy_industries__utilities","english_law_energy__natural_resources_law"]}
{"key":"/works/OL10000348W","text":["/works/OL10000348W","Ayurvéda","OL12623448M","2843083249","9782843083242","Editions de Lodi","OL3965364A","Georgia Schwarz"],"type":"work","seed":["/books/OL12623448M","/works/OL10000348W","/authors/OL3965364A"],"title":"Ayurvéda","title_suggest":["Ayurvéda"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623448M"],"publish_date":["May 21, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2843083249","9782843083242"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623448M","cover_i":3140596,"publisher":["Editions de Lodi"],"language":["fre"],"author_key":["OL3965364A"],"author_name":["Georgia Schwarz"],"publisher_facet":["Editions de Lodi"],"_version_":1697074596273979400,"author_facet":["OL3965364A Georgia Schwarz"]}
{"key":"/works/OL10000349W","text":["/works/OL10000349W","La seconde guerre mondiale","OL12623457M","9782843083921","2843083923","Editions de Lodi","OL3965367A","Fromont de Truffaut"],"type":"work","seed":["/books/OL12623457M","/works/OL10000349W","/authors/OL3965367A"],"title":"La seconde guerre mondiale","title_suggest":["La seconde guerre mondiale"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623457M"],"publish_date":["October 3, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843083921","2843083923"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623457M","cover_i":3140600,"publisher":["Editions de Lodi"],"language":["fre"],"author_key":["OL3965367A"],"author_name":["Fromont de Truffaut"],"id_goodreads":["1811936"],"publisher_facet":["Editions de Lodi"],"_version_":1697074596594843600,"author_facet":["OL3965367A Fromont de Truffaut"]}
{"key":"/works/OL1000034W","text":["/works/OL1000034W","A time for hanging","time for hanging","OL2205857M","OL1874729M","Bill Crider.","90034619","89027896","20490872","9781560540021","9780871315908","0871315904","1560540028","timeforhanging00crid","M. Evans","Thorndike Press","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL2205857M","/books/OL1874729M","/works/OL1000034W","/authors/OL92934A"],"title":"A time for hanging","title_suggest":["A time for hanging"],"has_fulltext":true,"edition_count":2,"edition_key":["OL2205857M","OL1874729M"],"publish_date":["1989"],"publish_year":[1989],"first_publish_year":1989,"lccn":["90034619","89027896"],"publish_place":["Thorndike, Me","New York"],"oclc":["20490872"],"lcc":["PS-3553.00000000.R497 T5 1989","PS-3553.00000000.R497 T5 1989b"],"ddc":["813.54"],"isbn":["9781560540021","9780871315908","0871315904","1560540028"],"last_modified_i":1604911200,"ebook_count_i":1,"ia":["timeforhanging00crid"],"public_scan_b":false,"ia_collection_s":"china;inlibrary;printdisabled;tamu-evanslibrary-ol;internetarchivebooks","lending_edition_s":"OL2205857M","lending_identifier_s":"timeforhanging00crid","printdisabled_s":"OL2205857M","cover_edition_key":"OL2205857M","cover_i":7069212,"publisher":["M. Evans","Thorndike Press"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"subject":["Accessible book","Protected DAISY"],"id_goodreads":["3876128"],"id_librarything":["4574112"],"ia_loaded_id":["timeforhanging00crid"],"ia_box_id":["IA171101"],"publisher_facet":["M. Evans","Thorndike Press"],"subject_facet":["Accessible book","Protected DAISY"],"_version_":1697074596192190500,"lcc_sort":"PS-3553.00000000.R497 T5 1989b","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","protected_daisy"],"ddc_sort":"813.54"}
{"key":"/works/OL10000350W","text":["/works/OL10000350W","Ecosse Des Lumieres","Écosse des Lumières","le XVIIIe siècle autrement","Le XVIIIe Siecle Autrement","OL12623458M","OL21587483M","textes rassemblés par Pierre Morère ; Isabelle Bour ... [et al.].","Morère, Pierre.","Bour, Isabelle.","9782843100017","2843100011","ELLUG","ELLUG Editions","OL3965368A","Pierre Morere","Intellectual life","Enlightenment","Scottish Philosophy","History"],"type":"work","seed":["/books/OL12623458M","/books/OL21587483M","/works/OL10000350W","/subjects/intellectual_life","/subjects/enlightenment","/subjects/scottish_philosophy","/subjects/history","/authors/OL3965368A"],"title":"Ecosse Des Lumieres","title_suggest":["Ecosse Des Lumieres"],"has_fulltext":false,"edition_count":2,"edition_key":["OL12623458M","OL21587483M"],"publish_date":["1997"],"publish_year":[1997],"first_publish_year":1997,"publish_place":["Grenoble"],"contributor":["Morère, Pierre.","Bour, Isabelle."],"lcc":["B--1402.00000000.E55 E36 1997"],"isbn":["9782843100017","2843100011"],"last_modified_i":1564587277,"ebook_count_i":0,"cover_edition_key":"OL12623458M","cover_i":3140601,"publisher":["ELLUG","ELLUG Editions"],"language":["fre"],"author_key":["OL3965368A"],"author_name":["Pierre Morere"],"subject":["Intellectual life","Enlightenment","Scottish Philosophy","History"],"id_goodreads":["5641448"],"publisher_facet":["ELLUG","ELLUG Editions"],"subject_facet":["Enlightenment","History","Intellectual life","Scottish Philosophy"],"_version_":1697074595845111800,"lcc_sort":"B--1402.00000000.E55 E36 1997","author_facet":["OL3965368A Pierre Morere"],"subject_key":["enlightenment","history","intellectual_life","scottish_philosophy"]}
{"key":"/works/OL10000351W","text":["/works/OL10000351W","La collection Ad usum Delphini. L'antiquité au manoir du Grand Siècle","La collection Ad usum Delphini. L'antiquité au manoir du Grand Siècle.","OL12623460M","9782843100161","284310016X","Ellug","OL3965369A","C. Volpilhac-Auger","Early works to 1800","Education of princes"],"type":"work","seed":["/books/OL12623460M","/works/OL10000351W","/subjects/early_works_to_1800","/subjects/education_of_princes","/authors/OL3965369A"],"title":"La collection Ad usum Delphini. L'antiquité au manoir du Grand Siècle","title_suggest":["La collection Ad usum Delphini. L'antiquité au manoir du Grand Siècle"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623460M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782843100161","284310016X"],"last_modified_i":1599948398,"ebook_count_i":0,"cover_edition_key":"OL12623460M","cover_i":5203736,"publisher":["Ellug"],"language":["fre"],"author_key":["OL3965369A"],"author_name":["C. Volpilhac-Auger"],"subject":["Early works to 1800","Education of princes"],"publisher_facet":["Ellug"],"subject_facet":["Early works to 1800","Education of princes"],"_version_":1697074596482646000,"author_facet":["OL3965369A C. Volpilhac-Auger"],"subject_key":["early_works_to_1800","education_of_princes"]}
{"key":"/works/OL10000352W","text":["/works/OL10000352W","Albert Cohen Mythobiographe","Albert Cohen mythobiographe","une démarche de création","OL22429637M","OL12623463M","Evelyne Lewy-Bertaut.","2002387207","2843100275","9782843100277","ELLUG Editions","ELLUG, Université Stendhal","OL3965373A","Evelyne Lewy-Bertaut","Albert Cohen (1895-)","Mythology in literature","Criticism and interpretation"],"type":"work","seed":["/books/OL22429637M","/books/OL12623463M","/works/OL10000352W","/subjects/mythology_in_literature","/subjects/criticism_and_interpretation","/subjects/person:albert_cohen_(1895-)","/authors/OL3965373A"],"title":"Albert Cohen Mythobiographe","title_suggest":["Albert Cohen Mythobiographe"],"has_fulltext":false,"edition_count":2,"edition_key":["OL22429637M","OL12623463M"],"publish_date":["July 2001","2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2002387207"],"publish_place":["Grenoble"],"lcc":["PQ-2605.00000000.O24 Z74 2001"],"ddc":["809"],"isbn":["2843100275","9782843100277"],"last_modified_i":1607312116,"ebook_count_i":0,"cover_edition_key":"OL12623463M","cover_i":3140604,"publisher":["ELLUG Editions","ELLUG, Université Stendhal"],"language":["fre"],"author_key":["OL3965373A"],"author_name":["Evelyne Lewy-Bertaut"],"person":["Albert Cohen (1895-)"],"subject":["Mythology in literature","Criticism and interpretation"],"id_goodreads":["435586"],"publisher_facet":["ELLUG Editions","ELLUG, Université Stendhal"],"person_key":["albert_cohen_(1895-)"],"person_facet":["Albert Cohen (1895-)"],"subject_facet":["Criticism and interpretation","Mythology in literature"],"_version_":1697074596174364700,"lcc_sort":"PQ-2605.00000000.O24 Z74 2001","author_facet":["OL3965373A Evelyne Lewy-Bertaut"],"subject_key":["criticism_and_interpretation","mythology_in_literature"],"ddc_sort":"809"}
{"key":"/works/OL10000353W","text":["/works/OL10000353W","Wigalois, le chevalier a la roue (ed. bilingue)","OL12623464M","2002424414","284310033X","9782843100338","Ellug","OL3965374A","Wirnt de Grafenberg","Guinglain (Legendary character)","Romances","Arthurian romances"],"type":"work","seed":["/books/OL12623464M","/works/OL10000353W","/subjects/guinglain_(legendary_character)","/subjects/romances","/subjects/arthurian_romances","/authors/OL3965374A"],"title":"Wigalois, le chevalier a la roue (ed. bilingue)","title_suggest":["Wigalois, le chevalier a la roue (ed. bilingue)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623464M"],"publish_date":["December 1, 2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2002424414"],"lcc":["PT-1679.00000000.W8 A54 2001"],"isbn":["284310033X","9782843100338"],"last_modified_i":1607329570,"ebook_count_i":0,"cover_edition_key":"OL12623464M","cover_i":3140605,"publisher":["Ellug"],"language":["fre"],"author_key":["OL3965374A"],"author_name":["Wirnt de Grafenberg"],"subject":["Guinglain (Legendary character)","Romances","Arthurian romances"],"id_goodreads":["6102013"],"publisher_facet":["Ellug"],"subject_facet":["Arthurian romances","Guinglain (Legendary character)","Romances"],"_version_":1697074595810508800,"lcc_sort":"PT-1679.00000000.W8 A54 2001","author_facet":["OL3965374A Wirnt de Grafenberg"],"subject_key":["arthurian_romances","guinglain_(legendary_character)","romances"]}
{"key":"/works/OL10000354W","text":["/works/OL10000354W","Petit dictionnaire de mythologie populaire roumaine","OL12623465M","2002476042","9782843100369","2843100364","Ellug","OL3965375A","Ion Talos","Romanian Mythology","Dictionaries","Folklore"],"type":"work","seed":["/books/OL12623465M","/works/OL10000354W","/subjects/romanian_mythology","/subjects/dictionaries","/subjects/folklore","/authors/OL3965375A"],"title":"Petit dictionnaire de mythologie populaire roumaine","title_suggest":["Petit dictionnaire de mythologie populaire roumaine"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623465M"],"publish_date":["May 1, 2002"],"publish_year":[2002],"first_publish_year":2002,"lccn":["2002476042"],"lcc":["BL-0980.00000000.R6 T35 2002"],"isbn":["9782843100369","2843100364"],"last_modified_i":1607346466,"ebook_count_i":0,"cover_edition_key":"OL12623465M","cover_i":3140606,"publisher":["Ellug"],"language":["fre"],"author_key":["OL3965375A"],"author_name":["Ion Talos"],"subject":["Romanian Mythology","Dictionaries","Folklore"],"id_goodreads":["4524785"],"publisher_facet":["Ellug"],"subject_facet":["Dictionaries","Folklore","Romanian Mythology"],"_version_":1697074596540317700,"lcc_sort":"BL-0980.00000000.R6 T35 2002","author_facet":["OL3965375A Ion Talos"],"subject_key":["dictionaries","folklore","romanian_mythology"]}
{"key":"/works/OL10000355W","text":["/works/OL10000355W","Le verbe en action. grammaire contrastive des temps verbaux (français, allemand, anglais, espagnol)","OL12623466M","2003469091","2843100429","9782843100420","Ellug","OL3965376A","Marie-Helene Perennec","Comparative and general Grammar","Verb","Tense","French language","German language","English language","Spanish language"],"type":"work","seed":["/books/OL12623466M","/works/OL10000355W","/subjects/comparative_and_general_grammar","/subjects/verb","/subjects/tense","/subjects/french_language","/subjects/german_language","/subjects/english_language","/subjects/spanish_language","/authors/OL3965376A"],"title":"Le verbe en action. grammaire contrastive des temps verbaux (français, allemand, anglais, espagnol)","title_suggest":["Le verbe en action. grammaire contrastive des temps verbaux (français, allemand, anglais, espagnol)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623466M"],"publish_date":["November 1, 2002"],"publish_year":[2002],"first_publish_year":2002,"lccn":["2003469091"],"lcc":["P--0281.00000000.V385 2002"],"isbn":["2843100429","9782843100420"],"last_modified_i":1607384572,"ebook_count_i":0,"cover_edition_key":"OL12623466M","cover_i":3140607,"publisher":["Ellug"],"language":["fre"],"author_key":["OL3965376A"],"author_name":["Marie-Helene Perennec"],"subject":["Comparative and general Grammar","Verb","Tense","French language","German language","English language","Spanish language"],"id_goodreads":["5991358"],"publisher_facet":["Ellug"],"subject_facet":["Comparative and general Grammar","English language","French language","German language","Spanish language","Tense","Verb"],"_version_":1697074596534026200,"lcc_sort":"P--0281.00000000.V385 2002","author_facet":["OL3965376A Marie-Helene Perennec"],"subject_key":["comparative_and_general_grammar","english_language","french_language","german_language","spanish_language","tense","verb"]}
{"key":"/works/OL10000356W","text":["/works/OL10000356W","La chair de l'écriture","OL12623467M","9782843150005","2843150000","Fil invisible","OL3965377A","Dominique Vaudoiset"],"type":"work","seed":["/books/OL12623467M","/works/OL10000356W","/authors/OL3965377A"],"title":"La chair de l'écriture","title_suggest":["La chair de l'écriture"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623467M"],"publish_date":["February 26, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782843150005","2843150000"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623467M","cover_i":3140608,"publisher":["Fil invisible"],"language":["fre"],"author_key":["OL3965377A"],"author_name":["Dominique Vaudoiset"],"publisher_facet":["Fil invisible"],"_version_":1697074596343185400,"author_facet":["OL3965377A Dominique Vaudoiset"]}
{"key":"/works/OL10000357W","text":["/works/OL10000357W","Sungazing Summer","OL12623468M","284315006X","9782843150067","le fil invisible","OL3965378A","Donni Buffalo Dog"],"type":"work","seed":["/books/OL12623468M","/works/OL10000357W","/authors/OL3965378A"],"title":"Sungazing Summer","title_suggest":["Sungazing Summer"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623468M"],"publish_date":["1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["284315006X","9782843150067"],"last_modified_i":1272134761,"ebook_count_i":0,"publisher":["le fil invisible"],"author_key":["OL3965378A"],"author_name":["Donni Buffalo Dog"],"id_goodreads":["6814352"],"publisher_facet":["le fil invisible"],"_version_":1697074596257202200,"author_facet":["OL3965378A Donni Buffalo Dog"]}
{"key":"/works/OL10000358W","text":["/works/OL10000358W","Chacun et Tous","OL12623469M","469917489","2843150078","9782843150074","Fil invisible","OL3965379A","Ptesunkawin"],"type":"work","seed":["/books/OL12623469M","/works/OL10000358W","/authors/OL3965379A"],"title":"Chacun et Tous","title_suggest":["Chacun et Tous"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623469M"],"publish_date":["June 30, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["469917489"],"isbn":["2843150078","9782843150074"],"last_modified_i":1307529670,"ebook_count_i":0,"cover_edition_key":"OL12623469M","cover_i":3140609,"publisher":["Fil invisible"],"language":["fre"],"author_key":["OL3965379A"],"author_name":["Ptesunkawin"],"publisher_facet":["Fil invisible"],"_version_":1697074596053778400,"author_facet":["OL3965379A Ptesunkawin"]}
{"key":"/works/OL10000359W","text":["/works/OL10000359W","Kristy, une mélodie du bonheur","OL12623470M","466594594","2843150086","9782843150081","Fil invisible","OL3965380A","Reculard"],"type":"work","seed":["/books/OL12623470M","/works/OL10000359W","/authors/OL3965380A"],"title":"Kristy, une mélodie du bonheur","title_suggest":["Kristy, une mélodie du bonheur"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623470M"],"publish_date":["September 28, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["466594594"],"isbn":["2843150086","9782843150081"],"last_modified_i":1304007768,"ebook_count_i":0,"cover_edition_key":"OL12623470M","cover_i":3140610,"publisher":["Fil invisible"],"author_key":["OL3965380A"],"author_name":["Reculard"],"publisher_facet":["Fil invisible"],"_version_":1697074595916415000,"author_facet":["OL3965380A Reculard"]}
{"key":"/works/OL1000035W","text":["/works/OL1000035W","Too late to die","Too Late to Die","OL2549326M","OL7910236M","Bill Crider.","85031481","20858947","0804104220","9780804104227","9780802756503","0802756506","toolatetodie00crid","Walker","Ivy Books","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Texas","Fiction","Dan Rhodes (Fictitious character)","Sheriffs","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL2549326M","/books/OL7910236M","/works/OL1000035W","/subjects/fiction","/subjects/dan_rhodes_(fictitious_character)","/subjects/sheriffs","/subjects/place:texas","/authors/OL92934A"],"title":"Too late to die","title_suggest":["Too late to die"],"has_fulltext":true,"edition_count":2,"edition_key":["OL2549326M","OL7910236M"],"publish_date":["1986","October 30, 1989"],"publish_year":[1986,1989],"first_publish_year":1986,"lccn":["85031481"],"publish_place":["New York"],"oclc":["20858947"],"lcc":["PS-3553.00000000.R497 T6 1986"],"ddc":["813.54"],"isbn":["0804104220","9780804104227","9780802756503","0802756506"],"last_modified_i":1604339975,"ebook_count_i":1,"ia":["toolatetodie00crid"],"public_scan_b":false,"ia_collection_s":"china;inlibrary;printdisabled;tamu-evanslibrary-ol;internetarchivebooks","lending_edition_s":"OL2549326M","lending_identifier_s":"toolatetodie00crid","printdisabled_s":"OL2549326M","cover_edition_key":"OL2549326M","cover_i":7134866,"publisher":["Walker","Ivy Books"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"place":["Texas"],"subject":["Fiction","Dan Rhodes (Fictitious character)","Sheriffs","Accessible book","Protected DAISY"],"id_goodreads":["822300","1393885"],"id_librarything":["191258"],"ia_loaded_id":["toolatetodie00crid"],"ia_box_id":["IA143814"],"publisher_facet":["Ivy Books","Walker"],"place_key":["texas"],"subject_facet":["Accessible book","Dan Rhodes (Fictitious character)","Fiction","Protected DAISY","Sheriffs"],"_version_":1697074596562337800,"place_facet":["Texas"],"lcc_sort":"PS-3553.00000000.R497 T6 1986","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","dan_rhodes_(fictitious_character)","fiction","protected_daisy","sheriffs"],"ddc_sort":"813.54"}
{"key":"/works/OL10000360W","text":["/works/OL10000360W","Je m'appelle Angelus","OL12623471M","421970845","2843150116","9782843150111","Fil invisible","OL3965381A","Mona Boheman-Calderón"],"type":"work","seed":["/books/OL12623471M","/works/OL10000360W","/authors/OL3965381A"],"title":"Je m'appelle Angelus","title_suggest":["Je m'appelle Angelus"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623471M"],"publish_date":["October 15, 2001"],"publish_year":[2001],"first_publish_year":2001,"oclc":["421970845"],"isbn":["2843150116","9782843150111"],"last_modified_i":1303892250,"ebook_count_i":0,"cover_edition_key":"OL12623471M","cover_i":3140611,"publisher":["Fil invisible"],"author_key":["OL3965381A"],"author_name":["Mona Boheman-Calderón"],"id_goodreads":["465518"],"publisher_facet":["Fil invisible"],"_version_":1697074596655661000,"author_facet":["OL3965381A Mona Boheman-Calderón"]}
{"key":"/works/OL10000361W","text":["/works/OL10000361W","La lévitation, ce n'est pas très pratique pour faire la cuisine","OL12623472M","468740464","9782843150128","2843150124","Fil invisible","OL3965382A","Martine Lequeux"],"type":"work","seed":["/books/OL12623472M","/works/OL10000361W","/authors/OL3965382A"],"title":"La lévitation, ce n'est pas très pratique pour faire la cuisine","title_suggest":["La lévitation, ce n'est pas très pratique pour faire la cuisine"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623472M"],"publish_date":["September 17, 2001"],"publish_year":[2001],"first_publish_year":2001,"oclc":["468740464"],"isbn":["9782843150128","2843150124"],"last_modified_i":1303785252,"ebook_count_i":0,"cover_edition_key":"OL12623472M","cover_i":3140612,"publisher":["Fil invisible"],"author_key":["OL3965382A"],"author_name":["Martine Lequeux"],"publisher_facet":["Fil invisible"],"_version_":1697074595816800300,"author_facet":["OL3965382A Martine Lequeux"]}
{"key":"/works/OL10000362M","text":["/works/OL10000362M","The Crime and Disorder Bill (House of Lords Bills: 1997-1998)","OL10000362M","314675634","9780108361333","0108361330","Stationery Office Books","English criminal law: offences against public health, safety, order"],"type":"work","seed":["/books/OL10000362M","/works/OL10000362M","/subjects/english_criminal_law:_offences_against_public_health_safety_order"],"title":"The Crime and Disorder Bill (House of Lords Bills: 1997-1998)","title_suggest":["The Crime and Disorder Bill (House of Lords Bills: 1997-1998)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000362M"],"publish_date":["March 27, 1998"],"publish_year":[1998],"first_publish_year":1998,"oclc":["314675634"],"isbn":["9780108361333","0108361330"],"last_modified_i":1618493949,"ebook_count_i":0,"publisher":["Stationery Office Books"],"subject":["English criminal law: offences against public health, safety, order"],"publisher_facet":["Stationery Office Books"],"subject_facet":["English criminal law: offences against public health, safety, order"],"_version_":1697113913184747500,"subject_key":["english_criminal_law_offences_against_public_health_safety_order"]}
{"key":"/works/OL10000362W","text":["/works/OL10000362W","BERGFRIED, KLOSTERKIRCHE, MARMORSAAL","ZUR ENTWICKLUNG EINER ARCHITEKTONISCHEN STRUKTUR IN DER RENAISSANCE ... .","OL21980452M","3883730122","9783883730127","OL3965390A","Pierre Béhar"],"type":"work","seed":["/books/OL21980452M","/works/OL10000362W","/authors/OL3965390A"],"title":"BERGFRIED, KLOSTERKIRCHE, MARMORSAAL","title_suggest":["BERGFRIED, KLOSTERKIRCHE, MARMORSAAL"],"has_fulltext":false,"edition_count":1,"edition_key":["OL21980452M"],"publish_place":["WOLFENBÜTTEL"],"isbn":["3883730122","9783883730127"],"last_modified_i":1260862652,"ebook_count_i":0,"author_key":["OL3965390A"],"author_name":["Pierre Béhar"],"_version_":1697074595956260900,"author_facet":["OL3965390A Pierre Béhar"]}
{"key":"/works/OL10000363W","text":["/works/OL10000363W","Silesia tragica","épanouissement et fin de l'école dramatique silésienne dans l'œuvre tragique de Daniel Casper von Lohenstein (1635-1683)","OL14675162M","Pierre Béhar.","9783447028455","3447028459","In Kommission bei Otto Harrassowitz","OL3965390A","Pierre Béhar","Daniel Casper von Lohenstein (1635-1683)","Tragedies","Criticism and interpretation"],"type":"work","seed":["/books/OL14675162M","/works/OL10000363W","/subjects/tragedies","/subjects/criticism_and_interpretation","/subjects/person:daniel_casper_von_lohenstein_(1635-1683)","/authors/OL3965390A"],"title":"Silesia tragica","title_suggest":["Silesia tragica"],"has_fulltext":false,"edition_count":1,"edition_key":["OL14675162M"],"publish_date":["1988"],"publish_year":[1988],"first_publish_year":1988,"publish_place":["Wiesbaden"],"lcc":["PT-1745.00000000.L5 B44 1988"],"isbn":["9783447028455","3447028459"],"last_modified_i":1279636588,"ebook_count_i":0,"cover_edition_key":"OL14675162M","cover_i":5293050,"publisher":["In Kommission bei Otto Harrassowitz"],"language":["ger"],"author_key":["OL3965390A"],"author_name":["Pierre Béhar"],"person":["Daniel Casper von Lohenstein (1635-1683)"],"subject":["Tragedies","Criticism and interpretation"],"publisher_facet":["In Kommission bei Otto Harrassowitz"],"person_key":["daniel_casper_von_lohenstein_(1635-1683)"],"person_facet":["Daniel Casper von Lohenstein (1635-1683)"],"subject_facet":["Criticism and interpretation","Tragedies"],"_version_":1697074596595892200,"lcc_sort":"PT-1745.00000000.L5 B44 1988","author_facet":["OL3965390A Pierre Béhar"],"subject_key":["criticism_and_interpretation","tragedies"]}
{"key":"/works/OL10000364W","text":["/works/OL10000364W","Vestiges d'empires - La décomposition de l'Europe centrale et balkanique","OL12623477M","9782843210150","2843210151","Desjonquères","OL3965390A","Pierre Béhar","Boundaries","History"],"type":"work","seed":["/books/OL12623477M","/works/OL10000364W","/subjects/boundaries","/subjects/history","/authors/OL3965390A"],"title":"Vestiges d'empires - La décomposition de l'Europe centrale et balkanique","title_suggest":["Vestiges d'empires - La décomposition de l'Europe centrale et balkanique"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623477M"],"publish_date":["January 1, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782843210150","2843210151"],"last_modified_i":1599916905,"ebook_count_i":0,"cover_edition_key":"OL12623477M","cover_i":3140616,"publisher":["Desjonquères"],"author_key":["OL3965390A"],"author_name":["Pierre Béhar"],"subject":["Boundaries","History"],"id_goodreads":["4289954"],"id_librarything":["8423798"],"publisher_facet":["Desjonquères"],"subject_facet":["Boundaries","History"],"_version_":1697074596439654400,"author_facet":["OL3965390A Pierre Béhar"],"subject_key":["boundaries","history"]}
{"key":"/works/OL10000365W","text":["/works/OL10000365W","Les Malheurs de l'amour","OL12623479M","2843210305","9782843210303","Desjonquères","OL3965393A","Madame de Tencin"],"type":"work","seed":["/books/OL12623479M","/works/OL10000365W","/authors/OL3965393A"],"title":"Les Malheurs de l'amour","title_suggest":["Les Malheurs de l'amour"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623479M"],"publish_date":["January 15, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2843210305","9782843210303"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623479M","cover_i":3140618,"publisher":["Desjonquères"],"language":["fre"],"author_key":["OL3965393A"],"author_name":["Madame de Tencin"],"publisher_facet":["Desjonquères"],"_version_":1697074595952066600,"author_facet":["OL3965393A Madame de Tencin"]}
{"key":"/works/OL10000366W","text":["/works/OL10000366W","Réflexions sur lekain et sur l'art théâtral","OL12623486M","9782843210440","2843210445","Desjonquères","OL349382A","François Joseph Talma","François-Joseph Talma","Fran©ois Joseph Talma"],"type":"work","seed":["/books/OL12623486M","/works/OL10000366W","/authors/OL349382A"],"title":"Réflexions sur lekain et sur l'art théâtral","title_suggest":["Réflexions sur lekain et sur l'art théâtral"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623486M"],"publish_date":["February 28, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843210440","2843210445"],"last_modified_i":1290238141,"ebook_count_i":0,"cover_edition_key":"OL12623486M","cover_i":3140625,"publisher":["Desjonquères"],"author_key":["OL349382A"],"author_name":["François Joseph Talma"],"author_alternative_name":["François-Joseph Talma","Fran©ois Joseph Talma"],"publisher_facet":["Desjonquères"],"_version_":1697074595746545700,"author_facet":["OL349382A François Joseph Talma"]}
{"key":"/works/OL10000367W","text":["/works/OL10000367W","L'Amant anonyme et autres contes","OL12623489M","9782843210488","2843210488","Desjonquères","OL3965399A","Jean-Francois de Bastide"],"type":"work","seed":["/books/OL12623489M","/works/OL10000367W","/authors/OL3965399A"],"title":"L'Amant anonyme et autres contes","title_suggest":["L'Amant anonyme et autres contes"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623489M"],"publish_date":["August 31, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843210488","2843210488"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623489M","cover_i":3140628,"publisher":["Desjonquères"],"author_key":["OL3965399A"],"author_name":["Jean-Francois de Bastide"],"id_goodreads":["145545"],"publisher_facet":["Desjonquères"],"_version_":1697074596309631000,"author_facet":["OL3965399A Jean-Francois de Bastide"]}
{"key":"/works/OL10000368W","text":["/works/OL10000368W","Le temps de l'essai","histoire d'un genre en France au XXe siècle","OL22725192M","Marielle Macé.","9782701141954","2701141958","Belin","OL3965400A","Marielle Macé"],"type":"work","seed":["/books/OL22725192M","/works/OL10000368W","/authors/OL3965400A"],"title":"Le temps de l'essai","title_suggest":["Le temps de l'essai"],"has_fulltext":false,"edition_count":1,"edition_key":["OL22725192M"],"publish_date":["2006"],"publish_year":[2006],"first_publish_year":2006,"publish_place":["[Paris]"],"isbn":["9782701141954","2701141958"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL22725192M","cover_i":5421679,"publisher":["Belin"],"language":["fre"],"author_key":["OL3965400A"],"author_name":["Marielle Macé"],"publisher_facet":["Belin"],"_version_":1697074596228890600,"author_facet":["OL3965400A Marielle Macé"]}
{"key":"/works/OL10000369W","text":["/works/OL10000369W","Mémoires de la vie de Henriette-Sylvie de Molière ...","Mémoires de la vie de Henriette-Sylvie de Molière ....","OL20083966M","Université de Tours","OL3965402A","Madame de Villedieu"],"type":"work","seed":["/books/OL20083966M","/works/OL10000369W","/authors/OL3965402A"],"title":"Mémoires de la vie de Henriette-Sylvie de Molière ...","title_suggest":["Mémoires de la vie de Henriette-Sylvie de Molière ..."],"has_fulltext":false,"edition_count":1,"edition_key":["OL20083966M"],"publish_date":["1977"],"publish_year":[1977],"first_publish_year":1977,"publish_place":["Tours"],"last_modified_i":1260859712,"ebook_count_i":0,"publisher":["Université de Tours"],"language":["fre"],"author_key":["OL3965402A"],"author_name":["Madame de Villedieu"],"publisher_facet":["Université de Tours"],"_version_":1697074596610572300,"author_facet":["OL3965402A Madame de Villedieu"]}
{"key":"/works/OL1000036W","text":["/works/OL1000036W","We'll Always Have Murder","A Humphrey Bogart Mystery","A Humphrey Bogart Mystery (Humphrey Bogart Collection)","OL24292702M","OL7950939M","OL7951531M","53298268","56550254","9780743475051","9781590193693","1590193695","074349296X","9780743492966","0743475054","9781591763130","1591763134","wellalwayshavemu00bill","ibooks, Inc.","I Books","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Mystery","Thriller","Fiction","Private investigators","Extortion","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL24292702M","/books/OL7950939M","/books/OL7951531M","/works/OL1000036W","/subjects/mystery","/subjects/thriller","/subjects/fiction","/subjects/private_investigators","/subjects/extortion","/authors/OL92934A"],"title":"We'll Always Have Murder","title_suggest":["We'll Always Have Murder"],"has_fulltext":true,"edition_count":3,"edition_key":["OL24292702M","OL7950939M","OL7951531M"],"publish_date":["2003","October 21, 2003","August 31, 2004"],"publish_year":[2003,2004],"first_publish_year":2003,"publish_place":["New York"],"oclc":["53298268","56550254"],"isbn":["9780743475051","9781590193693","1590193695","074349296X","9780743492966","0743475054","9781591763130","1591763134"],"last_modified_i":1563804427,"ebook_count_i":1,"ia":["wellalwayshavemu00bill"],"public_scan_b":false,"ia_collection_s":"americana;china;drakeuniversity-ol;inlibrary;delawarecountydistrictlibrary;printdisabled;library_of_atlantis;internetarchivebooks;denverpubliclibrary-ol","lending_edition_s":"OL7950939M","lending_identifier_s":"wellalwayshavemu00bill","printdisabled_s":"OL7950939M","cover_edition_key":"OL7951531M","cover_i":479317,"publisher":["ibooks, Inc.","I Books"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"subject":["Mystery","Thriller","Fiction","Private investigators","Extortion","Accessible book","Protected DAISY"],"id_goodreads":["1968805","1101122"],"id_librarything":["1716252"],"id_overdrive":["7377F0E8-2266-4EA1-8A41-9F2E4D7277BB"],"ia_box_id":["IA140707"],"publisher_facet":["I Books","ibooks, Inc."],"subject_facet":["Accessible book","Extortion","Fiction","Mystery","Private investigators","Protected DAISY","Thriller"],"_version_":1697074596380934100,"author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","extortion","fiction","mystery","private_investigators","protected_daisy","thriller"]}
{"key":"/works/OL10000370W","text":["/works/OL10000370W","Himmelsmaschinen / Höllenmaschinen","zur Technologie der Ewigkeit","OL21831563M","Jörg Jochen Berns.","9783938869116","3938869119","Semele","OL3965403A","Jörg Jochen Berns"],"type":"work","seed":["/books/OL21831563M","/works/OL10000370W","/authors/OL3965403A"],"title":"Himmelsmaschinen / Höllenmaschinen","title_suggest":["Himmelsmaschinen / Höllenmaschinen"],"has_fulltext":false,"edition_count":1,"edition_key":["OL21831563M"],"publish_date":["2007"],"publish_year":[2007],"first_publish_year":2007,"publish_place":["Berlin"],"isbn":["9783938869116","3938869119"],"last_modified_i":1260862431,"ebook_count_i":0,"publisher":["Semele"],"language":["ger"],"author_key":["OL3965403A"],"author_name":["Jörg Jochen Berns"],"publisher_facet":["Semele"],"_version_":1697074596591698000,"author_facet":["OL3965403A Jörg Jochen Berns"]}
{"key":"/works/OL10000371W","text":["/works/OL10000371W","Artaud, la vie","OL12623493M","2843210569","9782843210563","Desjonquères","OL3965404A","Camille Dumoulié"],"type":"work","seed":["/books/OL12623493M","/works/OL10000371W","/authors/OL3965404A"],"title":"Artaud, la vie","title_suggest":["Artaud, la vie"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623493M"],"publish_date":["March 15, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["2843210569","9782843210563"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623493M","cover_i":3140632,"publisher":["Desjonquères"],"language":["fre"],"author_key":["OL3965404A"],"author_name":["Camille Dumoulié"],"id_goodreads":["435293"],"publisher_facet":["Desjonquères"],"_version_":1697074595597648000,"author_facet":["OL3965404A Camille Dumoulié"]}
{"key":"/works/OL10000372W","text":["/works/OL10000372W","Le désir","OL21203403M","Camille Dumoulié","2200250843","9782200250843","A. Colin","OL3965404A","Camille Dumoulié","Désir","Histoire","Désir (Philosophie)"],"type":"work","seed":["/books/OL21203403M","/works/OL10000372W","/subjects/désir","/subjects/histoire","/subjects/désir_(philosophie)","/authors/OL3965404A"],"title":"Le désir","title_suggest":["Le désir"],"has_fulltext":false,"edition_count":1,"edition_key":["OL21203403M"],"publish_date":["1999"],"publish_year":[1999],"first_publish_year":1999,"publish_place":["Paris"],"isbn":["2200250843","9782200250843"],"last_modified_i":1279636588,"ebook_count_i":0,"publisher":["A. Colin"],"language":["fre"],"author_key":["OL3965404A"],"author_name":["Camille Dumoulié"],"subject":["Désir","Histoire","Désir (Philosophie)"],"publisher_facet":["A. Colin"],"subject_facet":["Désir","Désir (Philosophie)","Histoire"],"_version_":1697074595736060000,"author_facet":["OL3965404A Camille Dumoulié"],"subject_key":["désir","désir_(philosophie)","histoire"]}
{"key":"/works/OL10000373W","text":["/works/OL10000373W","Littérature et philosophie","le gai savoir de la littérature","OL22495351M","Camille Dumoulié.","9782200251734","2200251734","A. Colin","OL3965404A","Camille Dumoulié","Literature","Philosophy","History and criticism"],"type":"work","seed":["/books/OL22495351M","/works/OL10000373W","/subjects/literature","/subjects/philosophy","/subjects/history_and_criticism","/authors/OL3965404A"],"title":"Littérature et philosophie","title_suggest":["Littérature et philosophie"],"has_fulltext":false,"edition_count":1,"edition_key":["OL22495351M"],"publish_date":["2002"],"publish_year":[2002],"first_publish_year":2002,"publish_place":["Paris"],"lcc":["PN-0045.00000000.D87 2002"],"ddc":["809"],"isbn":["9782200251734","2200251734"],"last_modified_i":1279636588,"ebook_count_i":0,"publisher":["A. Colin"],"language":["fre"],"author_key":["OL3965404A"],"author_name":["Camille Dumoulié"],"subject":["Literature","Philosophy","History and criticism"],"id_goodreads":["6022158"],"publisher_facet":["A. Colin"],"subject_facet":["History and criticism","Literature","Philosophy"],"_version_":1697074596674535400,"lcc_sort":"PN-0045.00000000.D87 2002","author_facet":["OL3965404A Camille Dumoulié"],"subject_key":["history_and_criticism","literature","philosophy"],"ddc_sort":"809"}
{"key":"/works/OL10000374W","text":["/works/OL10000374W","Fortuny","OL21856951M","OL23241103M","OL12623498M","Delphine Desveaux ; [translated from the French by Harriet Mason].","2010413739","Fortuny, Mariano, 1871-1949.","9782843230301","9780500018460","0500018464","2843230306","Thames and Hudson","Assouline","OL3965405A","Delphine Desveaux","Mariano Fortuny (1871-1949)","Italy","Costume design","Italy","Biography","Fashion designers"],"type":"work","seed":["/books/OL21856951M","/books/OL23241103M","/books/OL12623498M","/works/OL10000374W","/subjects/costume_design","/subjects/italy","/subjects/biography","/subjects/fashion_designers","/subjects/person:mariano_fortuny_(1871-1949)","/subjects/place:italy","/authors/OL3965405A"],"title":"Fortuny","title_suggest":["Fortuny"],"has_fulltext":false,"edition_count":3,"edition_key":["OL21856951M","OL23241103M","OL12623498M"],"publish_date":["1998","January 1, 1998"],"publish_year":[1998],"first_publish_year":1998,"lccn":["2010413739"],"publish_place":["London"],"contributor":["Fortuny, Mariano, 1871-1949."],"lcc":["TT-0505.00000000.F67 D47 1998","TT-0505.00000000.F67 D4713 1998"],"isbn":["9782843230301","9780500018460","0500018464","2843230306"],"last_modified_i":1605411490,"ebook_count_i":0,"cover_edition_key":"OL12623498M","cover_i":3140637,"publisher":["Thames and Hudson","Assouline"],"language":["eng"],"author_key":["OL3965405A"],"author_name":["Delphine Desveaux"],"person":["Mariano Fortuny (1871-1949)"],"place":["Italy"],"subject":["Costume design","Italy","Biography","Fashion designers"],"id_librarything":["1971409"],"publisher_facet":["Assouline","Thames and Hudson"],"person_key":["mariano_fortuny_(1871-1949)"],"place_key":["italy"],"person_facet":["Mariano Fortuny (1871-1949)"],"subject_facet":["Biography","Costume design","Fashion designers","Italy"],"_version_":1697074596048535600,"place_facet":["Italy"],"lcc_sort":"TT-0505.00000000.F67 D4713 1998","author_facet":["OL3965405A Delphine Desveaux"],"subject_key":["biography","costume_design","fashion_designers","italy"]}
{"key":"/works/OL10000375W","text":["/works/OL10000375W","Los Companeros Del Che","OL12623500M","228378644","9782843230400","2843230403","Editions Assouline","OL3965406A","Mauricio Vicent"],"type":"work","seed":["/books/OL12623500M","/works/OL10000375W","/authors/OL3965406A"],"title":"Los Companeros Del Che","title_suggest":["Los Companeros Del Che"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623500M"],"publish_date":["October 27, 1997"],"publish_year":[1997],"first_publish_year":1997,"oclc":["228378644"],"isbn":["9782843230400","2843230403"],"last_modified_i":1303500407,"ebook_count_i":0,"publisher":["Editions Assouline"],"language":["spa"],"author_key":["OL3965406A"],"author_name":["Mauricio Vicent"],"id_goodreads":["4528772"],"publisher_facet":["Editions Assouline"],"_version_":1697074596632592400,"author_facet":["OL3965406A Mauricio Vicent"]}
{"key":"/works/OL10000376W","text":["/works/OL10000376W","Comme des garçons","OL12623504M","2843230500","9782843230509","Assouline","OL3965407A","France Grand"],"type":"work","seed":["/books/OL12623504M","/works/OL10000376W","/authors/OL3965407A"],"title":"Comme des garçons","title_suggest":["Comme des garçons"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623504M"],"publish_date":["July 24, 1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["2843230500","9782843230509"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623504M","cover_i":3140641,"publisher":["Assouline"],"author_key":["OL3965407A"],"author_name":["France Grand"],"id_goodreads":["1663534"],"publisher_facet":["Assouline"],"_version_":1697074595888103400,"author_facet":["OL3965407A France Grand"]}
{"key":"/works/OL10000377W","text":["/works/OL10000377W","L'Art tribal d'Afrique noire","OL12623512M","9782843230783","2843230780","Assouline","OL3965408A","Jean-Baptiste Bacquar"],"type":"work","seed":["/books/OL12623512M","/works/OL10000377W","/authors/OL3965408A"],"title":"L'Art tribal d'Afrique noire","title_suggest":["L'Art tribal d'Afrique noire"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623512M"],"publish_date":["November 15, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843230783","2843230780"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623512M","cover_i":3140649,"publisher":["Assouline"],"author_key":["OL3965408A"],"author_name":["Jean-Baptiste Bacquar"],"id_goodreads":["6744161"],"publisher_facet":["Assouline"],"_version_":1697074596687118300,"author_facet":["OL3965408A Jean-Baptiste Bacquar"]}
{"key":"/works/OL10000378W","text":["/works/OL10000378W","Guerlain","OL12623528M","2843231213","9782843231216","Assouline","OL3965409A","Barille Elisabeth"],"type":"work","seed":["/books/OL12623528M","/works/OL10000378W","/authors/OL3965409A"],"title":"Guerlain","title_suggest":["Guerlain"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623528M"],"publish_date":["October 7, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["2843231213","9782843231216"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12623528M","cover_i":3140662,"publisher":["Assouline"],"author_key":["OL3965409A"],"author_name":["Barille Elisabeth"],"id_goodreads":["4879429"],"id_librarything":["1446889"],"publisher_facet":["Assouline"],"_version_":1697074595770663000,"author_facet":["OL3965409A Barille Elisabeth"]}
{"key":"/works/OL10000379W","text":["/works/OL10000379W","Symboles de l'islam","OL12623537M","9782843231445","2843231442","Assouline","OL3965411A","Chebel Malek"],"type":"work","seed":["/books/OL12623537M","/works/OL10000379W","/authors/OL3965411A"],"title":"Symboles de l'islam","title_suggest":["Symboles de l'islam"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623537M"],"publish_date":["September 30, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782843231445","2843231442"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623537M","cover_i":3140671,"publisher":["Assouline"],"author_key":["OL3965411A"],"author_name":["Chebel Malek"],"publisher_facet":["Assouline"],"_version_":1697074596626301000,"author_facet":["OL3965411A Chebel Malek"]}
{"key":"/works/OL1000037W","text":["/works/OL1000037W","When old men die","When Old Men Die","a Truman Smith mystery","OL1091100M","OL9725953M","Bill Crider.","94015356","30156506","34512555","9780802731951","1883268338","9781883268336","0802731953","whenoldmendietru00crid","Walker","Spellbinders","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Truman Smith (Fictitious character)","Fiction","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL1091100M","/books/OL9725953M","/works/OL1000037W","/subjects/truman_smith_(fictitious_character)","/subjects/fiction","/authors/OL92934A"],"title":"When old men die","title_suggest":["When old men die"],"has_fulltext":true,"edition_count":2,"edition_key":["OL1091100M","OL9725953M"],"publish_date":["February 1996","1994"],"publish_year":[1994,1996],"first_publish_year":1994,"lccn":["94015356"],"publish_place":["New York"],"oclc":["30156506","34512555"],"lcc":["PS-3553.00000000.R497 W48 1994"],"ddc":["813.54"],"isbn":["9780802731951","1883268338","9781883268336","0802731953"],"last_modified_i":1605690318,"ebook_count_i":1,"ia":["whenoldmendietru00crid"],"public_scan_b":false,"ia_collection_s":"americana;china;inlibrary;delawarecountydistrictlibrary;printdisabled;library_of_atlantis;internetarchivebooks;denverpubliclibrary-ol","lending_edition_s":"OL1091100M","lending_identifier_s":"whenoldmendietru00crid","printdisabled_s":"OL1091100M","cover_edition_key":"OL1091100M","cover_i":7063164,"publisher":["Walker","Spellbinders"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"subject":["Truman Smith (Fictitious character)","Fiction","Accessible book","Protected DAISY"],"id_goodreads":["4463794","5072873"],"id_librarything":["414033"],"ia_loaded_id":["whenoldmendietru00crid"],"ia_box_id":["IA171101"],"publisher_facet":["Spellbinders","Walker"],"subject_facet":["Accessible book","Fiction","Protected DAISY","Truman Smith (Fictitious character)"],"_version_":1697074596657758200,"lcc_sort":"PS-3553.00000000.R497 W48 1994","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","fiction","protected_daisy","truman_smith_(fictitious_character)"],"ddc_sort":"813.54"}
{"key":"/works/OL10000380W","text":["/works/OL10000380W","Symboles du bouddhisme tibetain","OL12623538M","9782843231452","2843231450","Assouline","OL3965412A","Levenson Claude B."],"type":"work","seed":["/books/OL12623538M","/works/OL10000380W","/authors/OL3965412A"],"title":"Symboles du bouddhisme tibetain","title_suggest":["Symboles du bouddhisme tibetain"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623538M"],"publish_date":["September 30, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782843231452","2843231450"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12623538M","cover_i":3140672,"publisher":["Assouline"],"author_key":["OL3965412A"],"author_name":["Levenson Claude B."],"id_librarything":["5007835"],"publisher_facet":["Assouline"],"_version_":1697074596459577300,"author_facet":["OL3965412A Levenson Claude B."]}
{"key":"/works/OL10000381W","text":["/works/OL10000381W","Les vins du siecle","OL12623540M","9782843231605","2843231604","Assouline","OL3965413A","Dovaz Michel"],"type":"work","seed":["/books/OL12623540M","/works/OL10000381W","/authors/OL3965413A"],"title":"Les vins du siecle","title_suggest":["Les vins du siecle"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623540M"],"publish_date":["September 30, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782843231605","2843231604"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623540M","cover_i":3140674,"publisher":["Assouline"],"language":["fre"],"author_key":["OL3965413A"],"author_name":["Dovaz Michel"],"publisher_facet":["Assouline"],"_version_":1697074595942629400,"author_facet":["OL3965413A Dovaz Michel"]}
{"key":"/works/OL10000382W","text":["/works/OL10000382W","L'une est l'autre","Duras-Moreau, une amitié littéraire","OL23201841M","Michaël Delmar.","2008437363","2350122352","9782350122359","Scali","OL3965415A","Michaël Delmar","French Authors","Biography","Women motion picture producers and directors","Motion picture actors and actresses","Actresses"],"type":"work","seed":["/books/OL23201841M","/works/OL10000382W","/subjects/french_authors","/subjects/biography","/subjects/women_motion_picture_producers_and_directors","/subjects/motion_picture_actors_and_actresses","/subjects/actresses","/authors/OL3965415A"],"title":"L'une est l'autre","title_suggest":["L'une est l'autre"],"has_fulltext":false,"edition_count":1,"edition_key":["OL23201841M"],"publish_date":["2008"],"publish_year":[2008],"first_publish_year":2008,"lccn":["2008437363"],"publish_place":["Paris"],"lcc":["PQ-2607.00000000.U8245 Z6423 2008"],"isbn":["2350122352","9782350122359"],"last_modified_i":1608638745,"ebook_count_i":0,"publisher":["Scali"],"language":["fre"],"author_key":["OL3965415A"],"author_name":["Michaël Delmar"],"subject":["French Authors","Biography","Women motion picture producers and directors","Motion picture actors and actresses","Actresses"],"publisher_facet":["Scali"],"subject_facet":["Actresses","Biography","French Authors","Motion picture actors and actresses","Women motion picture producers and directors"],"_version_":1697074596431265800,"lcc_sort":"PQ-2607.00000000.U8245 Z6423 2008","author_facet":["OL3965415A Michaël Delmar"],"subject_key":["actresses","biography","french_authors","motion_picture_actors_and_actresses","women_motion_picture_producers_and_directors"]}
{"key":"/works/OL10000383W","text":["/works/OL10000383W","Symboles de l'Astrologie","OL12623544M","2843231817","9782843231810","Assouline","OL3965415A","Michaël Delmar"],"type":"work","seed":["/books/OL12623544M","/works/OL10000383W","/authors/OL3965415A"],"title":"Symboles de l'Astrologie","title_suggest":["Symboles de l'Astrologie"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623544M"],"publish_date":["November 30, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["2843231817","9782843231810"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623544M","cover_i":3140678,"publisher":["Assouline"],"author_key":["OL3965415A"],"author_name":["Michaël Delmar"],"publisher_facet":["Assouline"],"_version_":1697074595591356400,"author_facet":["OL3965415A Michaël Delmar"]}
{"key":"/works/OL10000384W","text":["/works/OL10000384W","Symbols of astrology","Symboles de l'astrologie.","OL18290763M","Michaël Delmar.","284323185X","9782843231858","symbolsofastrolo00delm","Assouline","OL3965415A","Michaël Delmar","Astrology","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL18290763M","/works/OL10000384W","/subjects/astrology","/authors/OL3965415A"],"title":"Symbols of astrology","title_suggest":["Symbols of astrology"],"has_fulltext":true,"edition_count":1,"edition_key":["OL18290763M"],"publish_date":["2000"],"publish_year":[2000],"first_publish_year":2000,"publish_place":["New York, NY"],"isbn":["284323185X","9782843231858"],"last_modified_i":1581601735,"ebook_count_i":1,"ia":["symbolsofastrolo00delm"],"public_scan_b":false,"ia_collection_s":"china;fav-katecake369;fav-oracleparkway_yahoo_com;fav-vegoguen;fav-taiscastro;fav-lindaiserhoff;fav-hale_oz;inlibrary;fav-colette13;internetarchivebooks;fav-sipsa;fav-hopejoy;fav-tirumala_reddy;fav-blumez;fav-ddastro;fav-lamont1991;fav-jeremyw1307;fav-leanna_bryant;fav-alma_hvals_e;printdisabled;fav-celeste1992;fav-dylanyakuza88;fav-shay75647;fav-dimasago;fav-areopagita","lending_edition_s":"OL18290763M","lending_identifier_s":"symbolsofastrolo00delm","printdisabled_s":"OL18290763M","cover_edition_key":"OL18290763M","cover_i":7289878,"publisher":["Assouline"],"language":["eng"],"author_key":["OL3965415A"],"author_name":["Michaël Delmar"],"subject":["Astrology","Accessible book","Protected DAISY"],"id_goodreads":["7051983"],"id_librarything":["3896918"],"ia_box_id":["IA1124308"],"publisher_facet":["Assouline"],"subject_facet":["Accessible book","Astrology","Protected DAISY"],"_version_":1697074595483353000,"author_facet":["OL3965415A Michaël Delmar"],"subject_key":["accessible_book","astrology","protected_daisy"]}
{"key":"/works/OL10000385W","text":["/works/OL10000385W","Chaumet","OL12623551M","2843232171","9782843232176","Assouline","OL3965418A","Janie Samet"],"type":"work","seed":["/books/OL12623551M","/works/OL10000385W","/authors/OL3965418A"],"title":"Chaumet","title_suggest":["Chaumet"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623551M"],"publish_date":["November 30, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2843232171","9782843232176"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12623551M","cover_i":3140685,"publisher":["Assouline"],"language":["fre"],"author_key":["OL3965418A"],"author_name":["Janie Samet"],"id_goodreads":["5726553"],"id_librarything":["4172877"],"publisher_facet":["Assouline"],"_version_":1697074596113547300,"author_facet":["OL3965418A Janie Samet"]}
{"key":"/works/OL10000386W","text":["/works/OL10000386W","Chère haute couture","OL16481992M","Janie Samet.","2007353280","9782259203128","2259203124","Plon","OL3965418A","Janie Samet","Janie Samet","France","Biography","Fashion editors","Fashion designers"],"type":"work","seed":["/books/OL16481992M","/works/OL10000386W","/subjects/biography","/subjects/fashion_editors","/subjects/fashion_designers","/subjects/person:janie_samet","/subjects/place:france","/authors/OL3965418A"],"title":"Chère haute couture","title_suggest":["Chère haute couture"],"has_fulltext":false,"edition_count":1,"edition_key":["OL16481992M"],"publish_date":["2006"],"publish_year":[2006],"first_publish_year":2006,"lccn":["2007353280"],"publish_place":["Paris"],"lcc":["PN-5183.00000000.S196 A3 2006"],"isbn":["9782259203128","2259203124"],"last_modified_i":1608234184,"ebook_count_i":0,"publisher":["Plon"],"language":["fre"],"author_key":["OL3965418A"],"author_name":["Janie Samet"],"person":["Janie Samet"],"place":["France"],"subject":["Biography","Fashion editors","Fashion designers"],"id_goodreads":["2465094"],"publisher_facet":["Plon"],"person_key":["janie_samet"],"place_key":["france"],"person_facet":["Janie Samet"],"subject_facet":["Biography","Fashion designers","Fashion editors"],"_version_":1697074596483694600,"place_facet":["France"],"lcc_sort":"PN-5183.00000000.S196 A3 2006","author_facet":["OL3965418A Janie Samet"],"subject_key":["biography","fashion_designers","fashion_editors"]}
{"key":"/works/OL10000387W","text":["/works/OL10000387W","JC de Castelbajac","OL12623554M","9782843232251","2843232252","Assouline","OL3965419A","Florence Müller"],"type":"work","seed":["/books/OL12623554M","/works/OL10000387W","/authors/OL3965419A"],"title":"JC de Castelbajac","title_suggest":["JC de Castelbajac"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623554M"],"publish_date":["November 8, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782843232251","2843232252"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623554M","cover_i":3140687,"publisher":["Assouline"],"author_key":["OL3965419A"],"author_name":["Florence Müller"],"id_goodreads":["1006954"],"publisher_facet":["Assouline"],"_version_":1697074595980378000,"author_facet":["OL3965419A Florence Müller"]}
{"key":"/works/OL10000388W","text":["/works/OL10000388W","Les Musts de Cartier","OL12623585M","2843233860","9782843233869","Assouline","OL3965427A","Stéphanie Busuttil-César"],"type":"work","seed":["/books/OL12623585M","/works/OL10000388W","/authors/OL3965427A"],"title":"Les Musts de Cartier","title_suggest":["Les Musts de Cartier"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623585M"],"publish_date":["November 15, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2843233860","9782843233869"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12623585M","cover_i":3140717,"publisher":["Assouline"],"language":["fre"],"author_key":["OL3965427A"],"author_name":["Stéphanie Busuttil-César"],"id_goodreads":["531993"],"id_librarything":["5582676"],"publisher_facet":["Assouline"],"_version_":1697074596042244000,"author_facet":["OL3965427A Stéphanie Busuttil-César"]}
{"key":"/works/OL10000389W","text":["/works/OL10000389W","Red","OL22067486M","Stéphanie Busuttil-César ; introduction de Loïc Prigent.","284323221X","9782843232213","Assouline","OL3965427A","Stéphanie Busuttil-César","Red","Red in art"],"type":"work","seed":["/books/OL22067486M","/works/OL10000389W","/subjects/red","/subjects/red_in_art","/authors/OL3965427A"],"title":"Red","title_suggest":["Red"],"has_fulltext":false,"edition_count":1,"edition_key":["OL22067486M"],"publish_date":["2000"],"publish_year":[2000],"first_publish_year":2000,"publish_place":["Paris, France"],"lcc":["QC-0495.00000000.B87 2000"],"ddc":["535.6"],"isbn":["284323221X","9782843232213"],"last_modified_i":1282179417,"ebook_count_i":0,"publisher":["Assouline"],"language":["fre"],"author_key":["OL3965427A"],"author_name":["Stéphanie Busuttil-César"],"subject":["Red","Red in art"],"id_goodreads":["7092871"],"id_librarything":["1696065"],"publisher_facet":["Assouline"],"subject_facet":["Red","Red in art"],"_version_":1697074596191142000,"lcc_sort":"QC-0495.00000000.B87 2000","author_facet":["OL3965427A Stéphanie Busuttil-César"],"subject_key":["red","red_in_art"],"ddc_sort":"535.6"}
{"key":"/works/OL1000038W","text":["/works/OL1000038W","A bond with death","OL23273262M","OL3306490M","OL3302747M","Bill Crider.","2004043129","2004051053","9781587248689","1587248689","9780312322960","0312322968","bondwithdeath00crid","Wheeler Pub.","Thomas Dunne Books/St. Martin's Minotaur","Thomas Dunne Books","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Texas","Sally Good (Fictitious character)","Women teachers","Fiction","College teachers","English teachers","Large type books","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL23273262M","/books/OL3306490M","/books/OL3302747M","/works/OL1000038W","/subjects/sally_good_(fictitious_character)","/subjects/women_teachers","/subjects/fiction","/subjects/college_teachers","/subjects/english_teachers","/subjects/large_type_books","/subjects/place:texas","/authors/OL92934A"],"title":"A bond with death","title_suggest":["A bond with death"],"has_fulltext":true,"edition_count":3,"edition_key":["OL23273262M","OL3306490M","OL3302747M"],"publish_date":["2005","2004"],"publish_year":[2004,2005],"first_publish_year":2004,"lccn":["2004043129","2004051053"],"publish_place":["New York","[Waterville, Me.]"],"lcc":["PS-3553.00000000.R497 B65 2005","PS-3553.00000000.R497 B65 2004"],"ddc":["813.54"],"isbn":["9781587248689","1587248689","9780312322960","0312322968"],"last_modified_i":1607430153,"ebook_count_i":1,"ia":["bondwithdeath00crid"],"public_scan_b":false,"ia_collection_s":"americana;china;spokanepubliclibrary-ol;inlibrary;delawarecountydistrictlibrary;printdisabled;library_of_atlantis;internetarchivebooks;denverpubliclibrary-ol;rochester-ol","lending_edition_s":"OL23273262M","lending_identifier_s":"bondwithdeath00crid","printdisabled_s":"OL23273262M","cover_edition_key":"OL3302747M","cover_i":1957730,"publisher":["Wheeler Pub.","Thomas Dunne Books/St. Martin's Minotaur","Thomas Dunne Books"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"place":["Texas"],"subject":["Sally Good (Fictitious character)","Women teachers","Fiction","College teachers","English teachers","Large type books","Accessible book","Protected DAISY"],"id_goodreads":["538961","3920319"],"id_librarything":["2129902"],"ia_loaded_id":["bondwithdeath00crid"],"ia_box_id":["IA171101"],"publisher_facet":["Thomas Dunne Books","Thomas Dunne Books/St. Martin's Minotaur","Wheeler Pub."],"place_key":["texas"],"subject_facet":["Accessible book","College teachers","English teachers","Fiction","Large type books","Protected DAISY","Sally Good (Fictitious character)","Women teachers"],"_version_":1697074595991912400,"place_facet":["Texas"],"lcc_sort":"PS-3553.00000000.R497 B65 2005","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","college_teachers","english_teachers","fiction","large_type_books","protected_daisy","sally_good_(fictitious_character)","women_teachers"],"ddc_sort":"813.54"}
{"key":"/works/OL10000390W","text":["/works/OL10000390W","Roberto Cavalli","OL12623588M","2843233917","9782843233913","Assouline","OL3965430A","Javier Arroyuello"],"type":"work","seed":["/books/OL12623588M","/works/OL10000390W","/authors/OL3965430A"],"title":"Roberto Cavalli","title_suggest":["Roberto Cavalli"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623588M"],"publish_date":["October 28, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2843233917","9782843233913"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623588M","cover_i":3140720,"publisher":["Assouline"],"author_key":["OL3965430A"],"author_name":["Javier Arroyuello"],"publisher_facet":["Assouline"],"_version_":1697074596062167000,"author_facet":["OL3965430A Javier Arroyuello"]}
{"key":"/works/OL10000391W","text":["/works/OL10000391W","Cacharel","Automne/hiver 2001.","Accessoires automne/hiver 2001.","OL16354849M","OL16352893M","OL12623591M","9782843233982","2843233984","Assouline","OL3965431A","Jéromine Savignon"],"type":"work","seed":["/books/OL16354849M","/books/OL16352893M","/books/OL12623591M","/works/OL10000391W","/authors/OL3965431A"],"title":"Cacharel","title_suggest":["Cacharel"],"has_fulltext":false,"edition_count":3,"edition_key":["OL16354849M","OL16352893M","OL12623591M"],"publish_date":["November 4, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843233982","2843233984"],"last_modified_i":1304470428,"ebook_count_i":0,"cover_edition_key":"OL12623591M","cover_i":3140723,"publisher":["Assouline"],"language":["eng"],"author_key":["OL3965431A"],"author_name":["Jéromine Savignon"],"id_goodreads":["2913842"],"publisher_facet":["Assouline"],"_version_":1697074595834626000,"author_facet":["OL3965431A Jéromine Savignon"]}
{"key":"/works/OL10000392W","text":["/works/OL10000392W","Chloé","OL12623593M","402178135","2843234107","9782843234101","Assouline","OL3965432A","Schoumann Helene"],"type":"work","seed":["/books/OL12623593M","/works/OL10000392W","/authors/OL3965432A"],"title":"Chloé","title_suggest":["Chloé"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623593M"],"publish_date":["March 25, 2003"],"publish_year":[2003],"first_publish_year":2003,"oclc":["402178135"],"isbn":["2843234107","9782843234101"],"last_modified_i":1303781099,"ebook_count_i":0,"cover_edition_key":"OL12623593M","cover_i":3140725,"publisher":["Assouline"],"language":["fre"],"author_key":["OL3965432A"],"author_name":["Schoumann Helene"],"id_goodreads":["5521169"],"publisher_facet":["Assouline"],"_version_":1697074596308582400,"author_facet":["OL3965432A Schoumann Helene"]}
{"key":"/works/OL10000393W","text":["/works/OL10000393W","Symbols of Love","OL12623598M","2843234492","9782843234491","Assouline","OL3965433A","Lee Stonemam"],"type":"work","seed":["/books/OL12623598M","/works/OL10000393W","/authors/OL3965433A"],"title":"Symbols of Love","title_suggest":["Symbols of Love"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623598M"],"isbn":["2843234492","9782843234491"],"last_modified_i":1260840402,"ebook_count_i":0,"publisher":["Assouline"],"author_key":["OL3965433A"],"author_name":["Lee Stonemam"],"publisher_facet":["Assouline"],"_version_":1697074596184850400,"author_facet":["OL3965433A Lee Stonemam"]}
{"key":"/works/OL10000394W","text":["/works/OL10000394W","Portraits of Illusions","OL12623611M","2843236940","9782843236945","Editions Assouline","OL3965434A","Patrizio Di Renzo"],"type":"work","seed":["/books/OL12623611M","/works/OL10000394W","/authors/OL3965434A"],"title":"Portraits of Illusions","title_suggest":["Portraits of Illusions"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623611M"],"publish_date":["January 15, 2006"],"publish_year":[2006],"first_publish_year":2006,"isbn":["2843236940","9782843236945"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12623611M","cover_i":3140733,"publisher":["Editions Assouline"],"author_key":["OL3965434A"],"author_name":["Patrizio Di Renzo"],"id_goodreads":["6591890"],"id_librarything":["5480416"],"publisher_facet":["Editions Assouline"],"_version_":1697074596672438300,"author_facet":["OL3965434A Patrizio Di Renzo"]}
{"key":"/works/OL10000395W","text":["/works/OL10000395W","Consoler et classifier","L'essor de la psychiatrie française","OL12623619M","2843240069","9782843240065","Empecheurs Penser en Rond","OL3965435A","Goldstein /Bouillot"],"type":"work","seed":["/books/OL12623619M","/works/OL10000395W","/authors/OL3965435A"],"title":"Consoler et classifier","title_suggest":["Consoler et classifier"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623619M"],"publish_date":["October 1, 1997"],"publish_year":[1997],"first_publish_year":1997,"isbn":["2843240069","9782843240065"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623619M","cover_i":3140736,"publisher":["Empecheurs Penser en Rond"],"author_key":["OL3965435A"],"author_name":["Goldstein /Bouillot"],"id_goodreads":["2554432"],"publisher_facet":["Empecheurs Penser en Rond"],"_version_":1697074596264542200,"author_facet":["OL3965435A Goldstein /Bouillot"]}
{"key":"/works/OL10000396M","text":["/works/OL10000396M","Crime and Disorder Bill (HL Bill)","OL10000396M","314675634","0108361756","9780108361753","Stationery Office Books","English law: criminal law"],"type":"work","seed":["/books/OL10000396M","/works/OL10000396M","/subjects/english_law:_criminal_law"],"title":"Crime and Disorder Bill (HL Bill)","title_suggest":["Crime and Disorder Bill (HL Bill)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL10000396M"],"publish_date":["July 3, 1998"],"publish_year":[1998],"first_publish_year":1998,"oclc":["314675634"],"isbn":["0108361756","9780108361753"],"last_modified_i":1618493949,"ebook_count_i":0,"publisher":["Stationery Office Books"],"subject":["English law: criminal law"],"publisher_facet":["Stationery Office Books"],"subject_facet":["English law: criminal law"],"_version_":1697113913141756000,"subject_key":["english_law_criminal_law"]}
{"key":"/works/OL10000396W","text":["/works/OL10000396W","Une folie psychiatrique: 1937","Une folie psychiatrique: 1937 ","un cas paradigmatique de rationalisme morbide (Collection les empecheurs de penser en rond)","OL12623621M","98183699","2843240336","9782843240331","Institut Synthelabo pour le progres de la connaissance","OL3965436A","Francois Klein","Schizophrenia","Case studies","Schizophrenics","Language"],"type":"work","seed":["/books/OL12623621M","/works/OL10000396W","/subjects/schizophrenia","/subjects/case_studies","/subjects/schizophrenics","/subjects/language","/authors/OL3965436A"],"title":"Une folie psychiatrique: 1937","title_suggest":["Une folie psychiatrique: 1937"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623621M"],"publish_date":["1998"],"publish_year":[1998],"first_publish_year":1998,"lccn":["98183699"],"lcc":["RC-0514.00000000.F6 1997"],"isbn":["2843240336","9782843240331"],"last_modified_i":1606654185,"ebook_count_i":0,"cover_edition_key":"OL12623621M","cover_i":3140738,"publisher":["Institut Synthelabo pour le progres de la connaissance"],"language":["fre"],"author_key":["OL3965436A"],"author_name":["Francois Klein"],"subject":["Schizophrenia","Case studies","Schizophrenics","Language"],"publisher_facet":["Institut Synthelabo pour le progres de la connaissance"],"subject_facet":["Case studies","Language","Schizophrenia","Schizophrenics"],"_version_":1697074595672096800,"lcc_sort":"RC-0514.00000000.F6 1997","author_facet":["OL3965436A Francois Klein"],"subject_key":["case_studies","language","schizophrenia","schizophrenics"]}
{"key":"/works/OL10000397W","text":["/works/OL10000397W","Histoire de la lutte contre la maladie","OL12623624M","9782843240430","2843240433","Empecheurs Penser en Rond","OL3965437A","Lawrence I Conrad"],"type":"work","seed":["/books/OL12623624M","/works/OL10000397W","/authors/OL3965437A"],"title":"Histoire de la lutte contre la maladie","title_suggest":["Histoire de la lutte contre la maladie"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623624M"],"publish_date":["January 1, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782843240430","2843240433"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623624M","cover_i":3140741,"publisher":["Empecheurs Penser en Rond"],"language":["fre"],"author_key":["OL3965437A"],"author_name":["Lawrence I Conrad"],"publisher_facet":["Empecheurs Penser en Rond"],"_version_":1697074595647979500,"author_facet":["OL3965437A Lawrence I Conrad"]}
{"key":"/works/OL10000398W","text":["/works/OL10000398W","Comment faire de l'anthropologie médicale?","OL12623629M","40405497","9782843240515","2843240514","Empecheurs Penser en Rond","OL3965438A","Byron J Good"],"type":"work","seed":["/books/OL12623629M","/works/OL10000398W","/authors/OL3965438A"],"title":"Comment faire de l'anthropologie médicale?","title_suggest":["Comment faire de l'anthropologie médicale?"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623629M"],"publish_date":["January 12, 1999"],"publish_year":[1999],"first_publish_year":1999,"oclc":["40405497"],"isbn":["9782843240515","2843240514"],"last_modified_i":1303811224,"ebook_count_i":0,"publisher":["Empecheurs Penser en Rond"],"language":["fre"],"author_key":["OL3965438A"],"author_name":["Byron J Good"],"id_librarything":["3720147"],"publisher_facet":["Empecheurs Penser en Rond"],"_version_":1697074595881812000,"author_facet":["OL3965438A Byron J Good"]}
{"key":"/works/OL10000399W","text":["/works/OL10000399W","Les maladies ont-elles un sens?","OL12623631M","2843240700","9782843240706","Empecheurs Penser en Rond","OL3965439A","Robert Aronowitz"],"type":"work","seed":["/books/OL12623631M","/works/OL10000399W","/authors/OL3965439A"],"title":"Les maladies ont-elles un sens?","title_suggest":["Les maladies ont-elles un sens?"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623631M"],"publish_date":["September 13, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["2843240700","9782843240706"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12623631M","cover_i":3140746,"publisher":["Empecheurs Penser en Rond"],"author_key":["OL3965439A"],"author_name":["Robert Aronowitz"],"id_goodreads":["3366756"],"id_librarything":["6519236"],"publisher_facet":["Empecheurs Penser en Rond"],"_version_":1697074595709845500,"author_facet":["OL3965439A Robert Aronowitz"]}
{"key":"/works/OL1000039W","text":["/works/OL1000039W","A dangerous thing","A Dangerous Thing","--a dangerous thing","a Carl Burns mystery","OL1431143M","OL9698023M","OL23268403M","Bill Crider.","93042591","0802731872","0373262167","9780373262168","9780802731876","adangerousthing00crid","adangerousthingc00crid","Walker","Worldwide Library","Worldwide","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Texas","Fiction","Carl Burns (Fictitious character)","English teachers","Burns, carl (fictitious character), fiction","Fiction, mystery & detective, general","Texas, fiction","College teachers, fiction","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL1431143M","/books/OL9698023M","/books/OL23268403M","/works/OL1000039W","/subjects/fiction","/subjects/carl_burns_(fictitious_character)","/subjects/english_teachers","/subjects/burns_carl_(fictitious_character)_fiction","/subjects/fiction_mystery_&_detective_general","/subjects/texas_fiction","/subjects/college_teachers_fiction","/subjects/place:texas","/authors/OL92934A"],"title":"A dangerous thing","title_suggest":["A dangerous thing"],"has_fulltext":true,"edition_count":3,"edition_key":["OL1431143M","OL9698023M","OL23268403M"],"publish_date":["September 1, 1996","1994","1996"],"publish_year":[1994,1996],"first_publish_year":1994,"lccn":["93042591"],"publish_place":["New York"],"lcc":["PS-3553.00000000.R497 D3 1994"],"ddc":["813.54"],"isbn":["0802731872","0373262167","9780373262168","9780802731876"],"last_modified_i":1605576282,"ebook_count_i":2,"ia":["adangerousthing00crid","adangerousthingc00crid"],"public_scan_b":false,"ia_collection_s":"americana;china;fav-trubble62;inlibrary;printdisabled;internetarchivebooks;universityofcoloradoboulder-ol","lending_edition_s":"OL1431143M","lending_identifier_s":"adangerousthingc00crid","printdisabled_s":"OL23268403M;OL1431143M","cover_edition_key":"OL9698023M","cover_i":5003932,"publisher":["Walker","Worldwide Library","Worldwide"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"place":["Texas"],"subject":["Fiction","Carl Burns (Fictitious character)","English teachers","Burns, carl (fictitious character), fiction","Fiction, mystery & detective, general","Texas, fiction","College teachers, fiction","Accessible book","Protected DAISY"],"id_goodreads":["585056","2713532"],"id_librarything":["373079"],"ia_loaded_id":["adangerousthingc00crid"],"ia_box_id":["IA122711","IA171201"],"publisher_facet":["Walker","Worldwide","Worldwide Library"],"place_key":["texas"],"subject_facet":["Accessible book","Burns, carl (fictitious character), fiction","Carl Burns (Fictitious character)","College teachers, fiction","English teachers","Fiction","Fiction, mystery & detective, general","Protected DAISY","Texas, fiction"],"_version_":1697074595981426700,"place_facet":["Texas"],"lcc_sort":"PS-3553.00000000.R497 D3 1994","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","burns_carl_(fictitious_character)_fiction","carl_burns_(fictitious_character)","college_teachers_fiction","english_teachers","fiction","fiction_mystery__detective_general","protected_daisy","texas_fiction"],"ddc_sort":"813.54"}
{"key":"/works/OL100003W","text":["/works/OL100003W","Home fires","OL23242694M","OL347510M","OL374165M","Margaret Maron.","98006632","98035938","39478178","9780786216208","0786216204","0892966556","9780892966554","homefires00maro_0","homefires00maro","Chivers Press","Thorndike Press","Mysterious Press","OL3326443A","Margaret Maron","Margaret Maron","Maron, Margaret","MARGARET MARON","North Carolina","Fiction","Arson","Race relations","Women lawyers","Deborah Knott (Fictitious character)","Women judges","Detective and mystery stories","Women detectives","Legal stories","Large type books","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL23242694M","/books/OL347510M","/books/OL374165M","/works/OL100003W","/subjects/fiction","/subjects/arson","/subjects/race_relations","/subjects/women_lawyers","/subjects/deborah_knott_(fictitious_character)","/subjects/women_judges","/subjects/detective_and_mystery_stories","/subjects/women_detectives","/subjects/legal_stories","/subjects/large_type_books","/subjects/place:north_carolina","/authors/OL3326443A"],"title":"Home fires","title_suggest":["Home fires"],"has_fulltext":true,"edition_count":3,"edition_key":["OL23242694M","OL347510M","OL374165M"],"publish_date":["1999","1998"],"publish_year":[1999,1998],"first_publish_year":1998,"lccn":["98006632","98035938"],"publish_place":["Thorndike, Me","New York","Bath, England"],"oclc":["39478178"],"lcc":["PS-3563.00000000.A679 H66 1998","PS-3563.00000000.A679 H66 1999"],"ddc":["813.54"],"isbn":["9780786216208","0786216204","0892966556","9780892966554"],"last_modified_i":1606582517,"ebook_count_i":2,"ia":["homefires00maro_0","homefires00maro"],"public_scan_b":false,"ia_collection_s":"americana;china;stmaryscountylibrary;universityofarizona-ol;inlibrary;delawarecountydistrictlibrary;printdisabled;library_of_atlantis;universityofcoloradoboulder-ol;internetarchivebooks;rochester-ol;delawarecountydistrictlibrary-ol","lending_edition_s":"OL347510M","lending_identifier_s":"homefires00maro","printdisabled_s":"OL347510M;OL374165M","cover_edition_key":"OL347510M","cover_i":691869,"publisher":["Chivers Press","Thorndike Press","Mysterious Press"],"language":["eng"],"author_key":["OL3326443A"],"author_name":["Margaret Maron"],"author_alternative_name":["Margaret Maron","Maron, Margaret","MARGARET MARON"],"place":["North Carolina"],"subject":["Fiction","Arson","Race relations","Women lawyers","Deborah Knott (Fictitious character)","Women judges","Detective and mystery stories","Women detectives","Legal stories","Large type books","Accessible book","Protected DAISY"],"id_goodreads":["537294","4526370"],"id_librarything":["413821"],"ia_loaded_id":["homefires00maro"],"ia_box_id":["IA141418","IA1145403"],"publisher_facet":["Chivers Press","Mysterious Press","Thorndike Press"],"place_key":["north_carolina"],"subject_facet":["Accessible book","Arson","Deborah Knott (Fictitious character)","Detective and mystery stories","Fiction","Large type books","Legal stories","Protected DAISY","Race relations","Women detectives","Women judges","Women lawyers"],"_version_":1697074596305436700,"place_facet":["North Carolina"],"lcc_sort":"PS-3563.00000000.A679 H66 1998","author_facet":["OL3326443A Margaret Maron"],"subject_key":["accessible_book","arson","deborah_knott_(fictitious_character)","detective_and_mystery_stories","fiction","large_type_books","legal_stories","protected_daisy","race_relations","women_detectives","women_judges","women_lawyers"],"ddc_sort":"813.54"}
{"key":"/works/OL10000400W","text":["/works/OL10000400W","Oeuvres","Oeuvres ","3, la terre du remords","2, Italie du Sud et magie","OL12623640M","OL12623632M","9782843240744","2843240743","9782843241109","2843241103","Empecheurs Penser en Rond","OL3965440A","E. de Martino"],"type":"work","seed":["/books/OL12623640M","/books/OL12623632M","/works/OL10000400W","/authors/OL3965440A"],"title":"Oeuvres","title_suggest":["Oeuvres"],"has_fulltext":false,"edition_count":2,"edition_key":["OL12623640M","OL12623632M"],"publish_date":["October 8, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782843240744","2843240743","9782843241109","2843241103"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12623632M","cover_i":3140747,"publisher":["Empecheurs Penser en Rond"],"language":["fre"],"author_key":["OL3965440A"],"author_name":["E. de Martino"],"id_goodreads":["6082156"],"id_librarything":["3165139"],"publisher_facet":["Empecheurs Penser en Rond"],"_version_":1697074595968843800,"author_facet":["OL3965440A E. de Martino"]}
{"key":"/works/OL10000401W","text":["/works/OL10000401W","Henrie Y El Pensamiento Psiquiatrico (Psicologia, Psiquiatria Y Psicoanalisis)","OL13116020M","51976898","9681664205","9789681664206","Fondo De Cultura Economica USA","OL3965444A","Jean Garrabe"],"type":"work","seed":["/books/OL13116020M","/works/OL10000401W","/authors/OL3965444A"],"title":"Henrie Y El Pensamiento Psiquiatrico (Psicologia, Psiquiatria Y Psicoanalisis)","title_suggest":["Henrie Y El Pensamiento Psiquiatrico (Psicologia, Psiquiatria Y Psicoanalisis)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL13116020M"],"publish_date":["June 28, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["51976898"],"isbn":["9681664205","9789681664206"],"last_modified_i":1303909605,"ebook_count_i":0,"publisher":["Fondo De Cultura Economica USA"],"language":["spa"],"author_key":["OL3965444A"],"author_name":["Jean Garrabe"],"id_goodreads":["4850142"],"publisher_facet":["Fondo De Cultura Economica USA"],"_version_":1697074595603939300,"author_facet":["OL3965444A Jean Garrabe"]}
{"key":"/works/OL10000402W","text":["/works/OL10000402W","La Noche Oscura del Ser","OL13115478M","9681642635","9789681642631","Fondo de Cultura Economica USA","OL3965444A","Jean Garrabe"],"type":"work","seed":["/books/OL13115478M","/works/OL10000402W","/authors/OL3965444A"],"title":"La Noche Oscura del Ser","title_suggest":["La Noche Oscura del Ser"],"has_fulltext":false,"edition_count":1,"edition_key":["OL13115478M"],"publish_date":["September 1996"],"publish_year":[1996],"first_publish_year":1996,"isbn":["9681642635","9789681642631"],"last_modified_i":1272135346,"ebook_count_i":0,"publisher":["Fondo de Cultura Economica USA"],"language":["spa"],"author_key":["OL3965444A"],"author_name":["Jean Garrabe"],"id_goodreads":["4850141"],"publisher_facet":["Fondo de Cultura Economica USA"],"_version_":1697074596463771600,"author_facet":["OL3965444A Jean Garrabe"]}
{"key":"/works/OL10000403W","text":["/works/OL10000403W","Écrits 1920-1983","pour une psychologie historique.","OL21777758M","2130397166","9782130397168","PUF","OL3965446A","I. Meyerson"],"type":"work","seed":["/books/OL21777758M","/works/OL10000403W","/authors/OL3965446A"],"title":"Écrits 1920-1983","title_suggest":["Écrits 1920-1983"],"has_fulltext":false,"edition_count":1,"edition_key":["OL21777758M"],"publish_date":["1987"],"publish_year":[1987],"first_publish_year":1987,"publish_place":["Paris"],"isbn":["2130397166","9782130397168"],"last_modified_i":1282173845,"ebook_count_i":0,"publisher":["PUF"],"language":["fre"],"author_key":["OL3965446A"],"author_name":["I. Meyerson"],"id_goodreads":["6158599"],"id_librarything":["2548518"],"publisher_facet":["PUF"],"_version_":1697074596621058000,"author_facet":["OL3965446A I. Meyerson"]}
{"key":"/works/OL10000404W","text":["/works/OL10000404W","Existe-t-il une nature humaine ?","OL12623646M","9782843241246","2843241243","Empecheurs Penser en Rond","OL3965446A","I. Meyerson","Philosophical anthropology","Comparative Psychology"],"type":"work","seed":["/books/OL12623646M","/works/OL10000404W","/subjects/philosophical_anthropology","/subjects/comparative_psychology","/authors/OL3965446A"],"title":"Existe-t-il une nature humaine ?","title_suggest":["Existe-t-il une nature humaine ?"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623646M"],"publish_date":["January 8, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782843241246","2843241243"],"last_modified_i":1599977906,"ebook_count_i":0,"cover_edition_key":"OL12623646M","cover_i":3140761,"publisher":["Empecheurs Penser en Rond"],"language":["fre"],"author_key":["OL3965446A"],"author_name":["I. Meyerson"],"subject":["Philosophical anthropology","Comparative Psychology"],"publisher_facet":["Empecheurs Penser en Rond"],"subject_facet":["Comparative Psychology","Philosophical anthropology"],"_version_":1697074595601842200,"author_facet":["OL3965446A I. Meyerson"],"subject_key":["comparative_psychology","philosophical_anthropology"]}
{"key":"/works/OL10000405W","text":["/works/OL10000405W","La psychologie du XXe siècle","psychologie du XXe siècle","par I.","OL15120577M","Journal de psychologie normal et pathologique.","Presses universitaires de France","OL3965446A","I. Meyerson","Psychology"],"type":"work","seed":["/books/OL15120577M","/works/OL10000405W","/subjects/psychology","/authors/OL3965446A"],"title":"La psychologie du XXe siècle","title_suggest":["La psychologie du XXe siècle"],"has_fulltext":false,"edition_count":1,"edition_key":["OL15120577M"],"publish_date":["1954"],"publish_year":[1954],"first_publish_year":1954,"publish_place":["Paris"],"contributor":["Journal de psychologie normal et pathologique."],"last_modified_i":1279636588,"ebook_count_i":0,"publisher":["Presses universitaires de France"],"language":["fre"],"author_key":["OL3965446A"],"author_name":["I. Meyerson"],"subject":["Psychology"],"publisher_facet":["Presses universitaires de France"],"subject_facet":["Psychology"],"_version_":1697074596198482000,"author_facet":["OL3965446A I. Meyerson"],"subject_key":["psychology"]}
{"key":"/works/OL10000406W","text":["/works/OL10000406W","Les Mandarins du Grand Siècle","OL12623647M","284324126X","9782843241260","Empecheurs Penser en Rond","OL3965447A","J.-J. Peumery","Medicine","Physicians","Health","History"],"type":"work","seed":["/books/OL12623647M","/works/OL10000406W","/subjects/medicine","/subjects/physicians","/subjects/health","/subjects/history","/authors/OL3965447A"],"title":"Les Mandarins du Grand Siècle","title_suggest":["Les Mandarins du Grand Siècle"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623647M"],"publish_date":["December 2, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["284324126X","9782843241260"],"last_modified_i":1599957638,"ebook_count_i":0,"cover_edition_key":"OL12623647M","cover_i":3140762,"publisher":["Empecheurs Penser en Rond"],"author_key":["OL3965447A"],"author_name":["J.-J. Peumery"],"subject":["Medicine","Physicians","Health","History"],"id_goodreads":["6005934"],"publisher_facet":["Empecheurs Penser en Rond"],"subject_facet":["Health","History","Medicine","Physicians"],"_version_":1697074596272930800,"author_facet":["OL3965447A J.-J. Peumery"],"subject_key":["health","history","medicine","physicians"]}
{"key":"/works/OL10000407W","text":["/works/OL10000407W","La Relation médecin-patient","OL12623649M","2843241308","9782843241307","Empecheurs Penser en Rond","OL3965448A","l. Chertok"],"type":"work","seed":["/books/OL12623649M","/works/OL10000407W","/authors/OL3965448A"],"title":"La Relation médecin-patient","title_suggest":["La Relation médecin-patient"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623649M"],"publish_date":["January 18, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2843241308","9782843241307"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623649M","cover_i":3140763,"publisher":["Empecheurs Penser en Rond"],"language":["fre"],"author_key":["OL3965448A"],"author_name":["l. Chertok"],"publisher_facet":["Empecheurs Penser en Rond"],"_version_":1697074596436508700,"author_facet":["OL3965448A l. Chertok"]}
{"key":"/works/OL10000408W","text":["/works/OL10000408W","L'Invention pharmaceutique","OL12623650M","2843241316","9782843241314","Empecheurs Penser en Rond","OL3965449A","S. Chauveau","Pharmacy","History"],"type":"work","seed":["/books/OL12623650M","/works/OL10000408W","/subjects/pharmacy","/subjects/history","/authors/OL3965449A"],"title":"L'Invention pharmaceutique","title_suggest":["L'Invention pharmaceutique"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623650M"],"publish_date":["January 8, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2843241316","9782843241314"],"last_modified_i":1599958097,"ebook_count_i":0,"cover_edition_key":"OL12623650M","cover_i":3140764,"publisher":["Empecheurs Penser en Rond"],"author_key":["OL3965449A"],"author_name":["S. Chauveau"],"subject":["Pharmacy","History"],"id_goodreads":["4403628"],"id_librarything":["8286715"],"publisher_facet":["Empecheurs Penser en Rond"],"subject_facet":["History","Pharmacy"],"_version_":1697074595385835500,"author_facet":["OL3965449A S. Chauveau"],"subject_key":["history","pharmacy"]}
{"key":"/works/OL10000409W","text":["/works/OL10000409W","Les assassins de Durruti","OL12623661M","2843350107","9782843350108","Verticales","OL3965452A","Sylvain Fourcassié"],"type":"work","seed":["/books/OL12623661M","/works/OL10000409W","/authors/OL3965452A"],"title":"Les assassins de Durruti","title_suggest":["Les assassins de Durruti"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623661M"],"publish_date":["October 14, 1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["2843350107","9782843350108"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623661M","cover_i":3140768,"publisher":["Verticales"],"language":["fre"],"author_key":["OL3965452A"],"author_name":["Sylvain Fourcassié"],"id_goodreads":["1000604"],"publisher_facet":["Verticales"],"_version_":1697074596248813600,"author_facet":["OL3965452A Sylvain Fourcassié"]}
{"key":"/works/OL1000040W","text":["/works/OL1000040W","Galveston gunman","Galveston gunman.","OL2058273M","OL15009851M","OL1701067M","Bill Crider.","92001486","88037362","25509936","9780871315656","0871315653","9781560544173","1560544171","0345365313","9780345365316","galvestongunman0000crid","galvestongunman0000crid_y7l3","Ballantine Books","M. Evans and Co.","Thorndike Press","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Large type books","Western stories","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL2058273M","/books/OL15009851M","/books/OL1701067M","/works/OL1000040W","/subjects/large_type_books","/subjects/western_stories","/authors/OL92934A"],"title":"Galveston gunman","title_suggest":["Galveston gunman"],"has_fulltext":true,"edition_count":3,"edition_key":["OL2058273M","OL15009851M","OL1701067M"],"publish_date":["1992","1988","1990"],"publish_year":[1992,1990,1988],"first_publish_year":1988,"lccn":["92001486","88037362"],"publish_place":["Thorndike, Me","New York"],"oclc":["25509936"],"lcc":["PS-3553.00000000.R497 G35 1988","PS-3553.00000000.R497 G35 1992"],"ddc":["813.54"],"isbn":["9780871315656","0871315653","9781560544173","1560544171","0345365313","9780345365316"],"last_modified_i":1605418607,"ebook_count_i":2,"ia":["galvestongunman0000crid","galvestongunman0000crid_y7l3"],"public_scan_b":false,"ia_collection_s":"inlibrary;printdisabled;internetarchivebooks","lending_edition_s":"OL2058273M","lending_identifier_s":"galvestongunman0000crid_y7l3","printdisabled_s":"OL1701067M;OL2058273M","cover_edition_key":"OL2058273M","cover_i":8548462,"publisher":["Ballantine Books","M. Evans and Co.","Thorndike Press"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"subject":["Large type books","Western stories","Accessible book","Protected DAISY"],"id_goodreads":["5038840","1160962","5148428"],"id_librarything":["3046379"],"ia_box_id":["IA1848319","IA1909213"],"publisher_facet":["Ballantine Books","M. Evans and Co.","Thorndike Press"],"subject_facet":["Accessible book","Large type books","Protected DAISY","Western stories"],"_version_":1697074596383031300,"lcc_sort":"PS-3553.00000000.R497 G35 1988","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","large_type_books","protected_daisy","western_stories"],"ddc_sort":"813.54"}
{"key":"/works/OL10000410W","text":["/works/OL10000410W","La Rencontre","OL12623667M","9782843350580","2843350581","Verticales","OL3965456A","Franck Derex"],"type":"work","seed":["/books/OL12623667M","/works/OL10000410W","/authors/OL3965456A"],"title":"La Rencontre","title_suggest":["La Rencontre"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623667M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782843350580","2843350581"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623667M","cover_i":3140774,"publisher":["Verticales"],"language":["fre"],"author_key":["OL3965456A"],"author_name":["Franck Derex"],"publisher_facet":["Verticales"],"_version_":1697074595918512000,"author_facet":["OL3965456A Franck Derex"]}
{"key":"/works/OL10000411W","text":["/works/OL10000411W","Je marche sous un ciel de traîne","OL12623669M","2843350646","9782843350641","Verticales","OL3965457A","Maylis de Kerangal"],"type":"work","seed":["/books/OL12623669M","/works/OL10000411W","/authors/OL3965457A"],"title":"Je marche sous un ciel de traîne","title_suggest":["Je marche sous un ciel de traîne"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623669M"],"publish_date":["September 16, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2843350646","9782843350641"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623669M","cover_i":3140776,"publisher":["Verticales"],"author_key":["OL3965457A"],"author_name":["Maylis de Kerangal"],"id_goodreads":["6394935"],"publisher_facet":["Verticales"],"_version_":1697074595838820400,"author_facet":["OL3965457A Maylis de Kerangal"]}
{"key":"/works/OL10000412W","text":["/works/OL10000412W","La Vie voyageuse","OL12623699M","2843351618","9782843351617","Verticales","OL3965457A","Maylis de Kerangal"],"type":"work","seed":["/books/OL12623699M","/works/OL10000412W","/authors/OL3965457A"],"title":"La Vie voyageuse","title_suggest":["La Vie voyageuse"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623699M"],"publish_date":["February 5, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["2843351618","9782843351617"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623699M","cover_i":3140806,"publisher":["Verticales"],"language":["fre"],"author_key":["OL3965457A"],"author_name":["Maylis de Kerangal"],"id_goodreads":["6394936"],"publisher_facet":["Verticales"],"_version_":1697074596422877200,"author_facet":["OL3965457A Maylis de Kerangal"]}
{"key":"/works/OL10000413W","text":["/works/OL10000413W","Chagrin mode d'emploi","OL12623674M","2843350778","9782843350771","Verticales","OL3965459A","Rémi Malingrëy"],"type":"work","seed":["/books/OL12623674M","/works/OL10000413W","/authors/OL3965459A"],"title":"Chagrin mode d'emploi","title_suggest":["Chagrin mode d'emploi"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623674M"],"publish_date":["May 1, 1997"],"publish_year":[1997],"first_publish_year":1997,"isbn":["2843350778","9782843350771"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623674M","cover_i":3140781,"publisher":["Verticales"],"language":["fre"],"author_key":["OL3965459A"],"author_name":["Rémi Malingrëy"],"publisher_facet":["Verticales"],"_version_":1697074596587503600,"author_facet":["OL3965459A Rémi Malingrëy"]}
{"key":"/works/OL10000414W","text":["/works/OL10000414W","Demain revient","OL12623702M","2843351669","9782843351662","Verticales","OL3965459A","Rémi Malingrëy"],"type":"work","seed":["/books/OL12623702M","/works/OL10000414W","/authors/OL3965459A"],"title":"Demain revient","title_suggest":["Demain revient"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623702M"],"publish_date":["March 19, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["2843351669","9782843351662"],"last_modified_i":1339695273,"ebook_count_i":0,"cover_edition_key":"OL12623702M","cover_i":3140809,"publisher":["Verticales"],"author_key":["OL3965459A"],"author_name":["Rémi Malingrëy"],"publisher_facet":["Verticales"],"_version_":1697074596179607600,"author_facet":["OL3965459A Rémi Malingrëy"]}
{"key":"/works/OL10000415W","text":["/works/OL10000415W","Le Berceau du monde","Le Berceau du monde ","Orient - Opéra","OL12623683M","2003485421","2843351227","9782843351228","Verticales","OL3965461A","Fady Stephan","Description and travel"],"type":"work","seed":["/books/OL12623683M","/works/OL10000415W","/subjects/description_and_travel","/authors/OL3965461A"],"title":"Le Berceau du monde","title_suggest":["Le Berceau du monde"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623683M"],"publish_date":["February 27, 2003"],"publish_year":[2003],"first_publish_year":2003,"lccn":["2003485421"],"lcc":["DS-0080.20000000.S726 2003"],"isbn":["2843351227","9782843351228"],"last_modified_i":1607389332,"ebook_count_i":0,"cover_edition_key":"OL12623683M","cover_i":3140790,"publisher":["Verticales"],"language":["fre"],"author_key":["OL3965461A"],"author_name":["Fady Stephan"],"subject":["Description and travel"],"publisher_facet":["Verticales"],"subject_facet":["Description and travel"],"_version_":1697074596052729900,"lcc_sort":"DS-0080.20000000.S726 2003","author_facet":["OL3965461A Fady Stephan"],"subject_key":["description_and_travel"]}
{"key":"/works/OL10000416W","text":["/works/OL10000416W","Infiniment petit","OL12623684M","2843351243","9782843351242","Editions Verticales","OL3965462A","Patrick Chatelier"],"type":"work","seed":["/books/OL12623684M","/works/OL10000416W","/authors/OL3965462A"],"title":"Infiniment petit","title_suggest":["Infiniment petit"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623684M"],"publish_date":["March 10, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2843351243","9782843351242"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623684M","cover_i":3140791,"publisher":["Editions Verticales"],"author_key":["OL3965462A"],"author_name":["Patrick Chatelier"],"publisher_facet":["Editions Verticales"],"_version_":1697074596176461800,"author_facet":["OL3965462A Patrick Chatelier"]}
{"key":"/works/OL10000417W","text":["/works/OL10000417W","Voyez-vous","OL12623689M","9782843351310","2843351316","Verticales","OL3965463A","Laetitia Bianchi"],"type":"work","seed":["/books/OL12623689M","/works/OL10000417W","/authors/OL3965463A"],"title":"Voyez-vous","title_suggest":["Voyez-vous"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623689M"],"publish_date":["September 5, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843351310","2843351316"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623689M","cover_i":3140796,"publisher":["Verticales"],"author_key":["OL3965463A"],"author_name":["Laetitia Bianchi"],"id_goodreads":["5812316"],"publisher_facet":["Verticales"],"_version_":1697074596452237300,"author_facet":["OL3965463A Laetitia Bianchi"]}
{"key":"/works/OL10000418W","text":["/works/OL10000418W","Poèmes bachiques et libertins","OL12623691M","9782843351341","2843351340","Verticales","OL3965464A","Abû Nuwâs"],"type":"work","seed":["/books/OL12623691M","/works/OL10000418W","/authors/OL3965464A"],"title":"Poèmes bachiques et libertins","title_suggest":["Poèmes bachiques et libertins"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623691M"],"publish_date":["February 24, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843351341","2843351340"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623691M","cover_i":3140798,"publisher":["Verticales"],"author_key":["OL3965464A"],"author_name":["Abû Nuwâs"],"publisher_facet":["Verticales"],"_version_":1697074595761225700,"author_facet":["OL3965464A Abû Nuwâs"]}
{"key":"/works/OL10000419W","text":["/works/OL10000419W","Un autre Dieu pour Violette","OL12623693M","9782843351419","2843351413","Verticales","OL3965466A","Laurence W. David"],"type":"work","seed":["/books/OL12623693M","/works/OL10000419W","/authors/OL3965466A"],"title":"Un autre Dieu pour Violette","title_suggest":["Un autre Dieu pour Violette"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623693M"],"publish_date":["January 3, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["9782843351419","2843351413"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623693M","cover_i":3140800,"publisher":["Verticales"],"language":["fre"],"author_key":["OL3965466A"],"author_name":["Laurence W. David"],"publisher_facet":["Verticales"],"_version_":1697074596634689500,"author_facet":["OL3965466A Laurence W. David"]}
{"key":"/works/OL1000041W","text":["/works/OL1000041W","A knife in the back","A Knife in the Back","OL23276763M","OL3568674M","OL10744309M","Bill Crider.","2002069275","49649022","0312271840","9780312271848","0373265719","9780373265718","knifeinback00crid","Thomas Dunne Books","World Wide Library","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Sally Good (Fictitious character)","Women teachers","Fiction","College teachers","English teachers","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL23276763M","/books/OL3568674M","/books/OL10744309M","/works/OL1000041W","/subjects/sally_good_(fictitious_character)","/subjects/women_teachers","/subjects/fiction","/subjects/college_teachers","/subjects/english_teachers","/authors/OL92934A"],"title":"A knife in the back","title_suggest":["A knife in the back"],"has_fulltext":true,"edition_count":3,"edition_key":["OL23276763M","OL3568674M","OL10744309M"],"publish_date":["2006","2002"],"publish_year":[2006,2002],"first_publish_year":2002,"lccn":["2002069275"],"publish_place":["New York"],"oclc":["49649022"],"lcc":["PS-3553.00000000.R497 K58 2002"],"ddc":["813.54"],"isbn":["0312271840","9780312271848","0373265719","9780373265718"],"last_modified_i":1607188522,"ebook_count_i":1,"ia":["knifeinback00crid"],"public_scan_b":false,"ia_collection_s":"americana;china;spokanepubliclibrary-ol;inlibrary;delawarecountydistrictlibrary;printdisabled;library_of_atlantis;internetarchivebooks;riceuniversity-ol;denverpubliclibrary-ol;delawarecountydistrictlibrary-ol","lending_edition_s":"OL23276763M","lending_identifier_s":"knifeinback00crid","printdisabled_s":"OL23276763M","cover_edition_key":"OL3568674M","cover_i":177774,"publisher":["Thomas Dunne Books","World Wide Library"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"subject":["Sally Good (Fictitious character)","Women teachers","Fiction","College teachers","English teachers","Accessible book","Protected DAISY"],"id_goodreads":["538956","2365928"],"id_librarything":["1012348"],"ia_loaded_id":["knifeinback00crid"],"ia_box_id":["IA172401"],"publisher_facet":["Thomas Dunne Books","World Wide Library"],"subject_facet":["Accessible book","College teachers","English teachers","Fiction","Protected DAISY","Sally Good (Fictitious character)","Women teachers"],"_version_":1697074596167024600,"lcc_sort":"PS-3553.00000000.R497 K58 2002","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","college_teachers","english_teachers","fiction","protected_daisy","sally_good_(fictitious_character)","women_teachers"],"ddc_sort":"813.54"}
{"key":"/works/OL10000420W","text":["/works/OL10000420W","On est bien, on a peur","OL12623694M","9782843351426","2843351421","Verticales","OL3965467A","Yaël Pachet"],"type":"work","seed":["/books/OL12623694M","/works/OL10000420W","/authors/OL3965467A"],"title":"On est bien, on a peur","title_suggest":["On est bien, on a peur"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623694M"],"publish_date":["October 3, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843351426","2843351421"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623694M","cover_i":3140801,"publisher":["Verticales"],"language":["fre"],"author_key":["OL3965467A"],"author_name":["Yaël Pachet"],"id_goodreads":["620973"],"publisher_facet":["Verticales"],"_version_":1697074596673486800,"author_facet":["OL3965467A Yaël Pachet"]}
{"key":"/works/OL10000421W","text":["/works/OL10000421W","Sermon sur les imbéciles","OL12623698M","9782843351525","2843351529","Verticales","OL3965468A","Pierre Lafargue"],"type":"work","seed":["/books/OL12623698M","/works/OL10000421W","/authors/OL3965468A"],"title":"Sermon sur les imbéciles","title_suggest":["Sermon sur les imbéciles"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623698M"],"publish_date":["October 3, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843351525","2843351529"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623698M","cover_i":3140805,"publisher":["Verticales"],"language":["fre"],"author_key":["OL3965468A"],"author_name":["Pierre Lafargue"],"publisher_facet":["Verticales"],"_version_":1697074595858743300,"author_facet":["OL3965468A Pierre Lafargue"]}
{"key":"/works/OL10000422W","text":["/works/OL10000422W","Fragmentation d'un lieu commun","OL12623701M","9782843351631","2843351634","Verticales","OL3965469A","Jane Sautière"],"type":"work","seed":["/books/OL12623701M","/works/OL10000422W","/authors/OL3965469A"],"title":"Fragmentation d'un lieu commun","title_suggest":["Fragmentation d'un lieu commun"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623701M"],"publish_date":["March 19, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["9782843351631","2843351634"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623701M","cover_i":3140808,"publisher":["Verticales"],"language":["fre"],"author_key":["OL3965469A"],"author_name":["Jane Sautière"],"id_goodreads":["7028021"],"publisher_facet":["Verticales"],"_version_":1697074595554656300,"author_facet":["OL3965469A Jane Sautière"]}
{"key":"/works/OL10000423W","text":["/works/OL10000423W","J'ai bu parce que j'avais soif","OL12623718M","2843370949","9782843370946","Anne Carrière","OL3965474A","Patrice Bazille"],"type":"work","seed":["/books/OL12623718M","/works/OL10000423W","/authors/OL3965474A"],"title":"J'ai bu parce que j'avais soif","title_suggest":["J'ai bu parce que j'avais soif"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623718M"],"publish_date":["November 3, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["2843370949","9782843370946"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623718M","cover_i":3140826,"publisher":["Anne Carrière"],"author_key":["OL3965474A"],"author_name":["Patrice Bazille"],"publisher_facet":["Anne Carrière"],"_version_":1697074596350525400,"author_facet":["OL3965474A Patrice Bazille"]}
{"key":"/works/OL10000424W","text":["/works/OL10000424W","Les Patins de la colère","OL12623720M","9782843371073","2843371074","Anne Carrière","OL3965475A","S. Moniotte"],"type":"work","seed":["/books/OL12623720M","/works/OL10000424W","/authors/OL3965475A"],"title":"Les Patins de la colère","title_suggest":["Les Patins de la colère"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623720M"],"publish_date":["November 10, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782843371073","2843371074"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12623720M","cover_i":3140828,"publisher":["Anne Carrière"],"language":["fre"],"author_key":["OL3965475A"],"author_name":["S. Moniotte"],"id_librarything":["4443059"],"publisher_facet":["Anne Carrière"],"_version_":1697074596629446700,"author_facet":["OL3965475A S. Moniotte"]}
{"key":"/works/OL10000425W","text":["/works/OL10000425W","Au cœur des hommes","Réalisateur raconte les coulisses du tournage, l'histoire d'une amitié","OL17056347M","Marc Esposito.","2008367162","235417019X","9782354170196","Moment","OL3965476A","Marc Esposito","Marc Esposito","Diaries","Cœur des hommes 2."],"type":"work","seed":["/books/OL17056347M","/works/OL10000425W","/subjects/diaries","/subjects/cœur_des_hommes_2.","/subjects/person:marc_esposito","/authors/OL3965476A"],"title":"Au cœur des hommes","title_suggest":["Au cœur des hommes"],"has_fulltext":false,"edition_count":1,"edition_key":["OL17056347M"],"publish_date":["2007"],"publish_year":[2007],"first_publish_year":2007,"lccn":["2008367162"],"publish_place":["Paris"],"lcc":["PN-1997.20000000.C63 E87 2007"],"isbn":["235417019X","9782354170196"],"last_modified_i":1608476551,"ebook_count_i":0,"publisher":["Moment"],"language":["fre"],"author_key":["OL3965476A"],"author_name":["Marc Esposito"],"person":["Marc Esposito"],"subject":["Diaries","Cœur des hommes 2."],"id_goodreads":["2115877"],"publisher_facet":["Moment"],"person_key":["marc_esposito"],"person_facet":["Marc Esposito"],"subject_facet":["Cœur des hommes 2.","Diaries"],"_version_":1697074596090478600,"lcc_sort":"PN-1997.20000000.C63 E87 2007","author_facet":["OL3965476A Marc Esposito"],"subject_key":["cœur_des_hommes_2.","diaries"]}
{"key":"/works/OL10000426W","text":["/works/OL10000426W","Toute la beauté du monde","OL12623723M","9782843371110","2843371112","Anne Carrière","OL3965476A","Marc Esposito"],"type":"work","seed":["/books/OL12623723M","/works/OL10000426W","/authors/OL3965476A"],"title":"Toute la beauté du monde","title_suggest":["Toute la beauté du monde"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623723M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782843371110","2843371112"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12623723M","cover_i":3140831,"publisher":["Anne Carrière"],"author_key":["OL3965476A"],"author_name":["Marc Esposito"],"id_goodreads":["5763423"],"id_librarything":["9539897"],"publisher_facet":["Anne Carrière"],"_version_":1697074596134518800,"author_facet":["OL3965476A Marc Esposito"]}
{"key":"/works/OL10000427W","text":["/works/OL10000427W","La fracture identitaire","OL16662170M","Ivan Rioufol.","2008366601","9782213635576","2213635579","Fayard","OL3965478A","Ivan Rioufol","France","Muslims","National characteristics, French","Social integration","Cultural assimilation","Immigrants","Ethnic relations","Islam","French National characteristics"],"type":"work","seed":["/books/OL16662170M","/works/OL10000427W","/subjects/muslims","/subjects/national_characteristics_french","/subjects/social_integration","/subjects/cultural_assimilation","/subjects/immigrants","/subjects/ethnic_relations","/subjects/islam","/subjects/french_national_characteristics","/subjects/place:france","/authors/OL3965478A"],"title":"La fracture identitaire","title_suggest":["La fracture identitaire"],"has_fulltext":false,"edition_count":1,"edition_key":["OL16662170M"],"publish_date":["2007"],"publish_year":[2007],"first_publish_year":2007,"lccn":["2008366601"],"publish_place":["Paris"],"lcc":["DC-0034.50000000.M87 R56 2007"],"isbn":["9782213635576","2213635579"],"last_modified_i":1608476296,"ebook_count_i":0,"publisher":["Fayard"],"language":["fre"],"author_key":["OL3965478A"],"author_name":["Ivan Rioufol"],"place":["France"],"subject":["Muslims","National characteristics, French","Social integration","Cultural assimilation","Immigrants","Ethnic relations","Islam","French National characteristics"],"publisher_facet":["Fayard"],"place_key":["france"],"subject_facet":["Cultural assimilation","Ethnic relations","French National characteristics","Immigrants","Islam","Muslims","National characteristics, French","Social integration"],"_version_":1697074596369399800,"place_facet":["France"],"lcc_sort":"DC-0034.50000000.M87 R56 2007","author_facet":["OL3965478A Ivan Rioufol"],"subject_key":["cultural_assimilation","ethnic_relations","french_national_characteristics","immigrants","islam","muslims","national_characteristics_french","social_integration"]}
{"key":"/works/OL10000428W","text":["/works/OL10000428W","La république des faux gentils","pourquoi elle affaiblit la France","OL23216004M","Ivan Rioufol.","2004422729","9782268051079","2268051072","Rocher","OL3965478A","Ivan Rioufol","France","Politics and government","Conformity","1995-2007"],"type":"work","seed":["/books/OL23216004M","/works/OL10000428W","/subjects/politics_and_government","/subjects/conformity","/subjects/place:france","/subjects/time:1995-2007","/authors/OL3965478A"],"title":"La république des faux gentils","title_suggest":["La république des faux gentils"],"subtitle":"pourquoi elle affaiblit la France","has_fulltext":false,"edition_count":1,"edition_key":["OL23216004M"],"publish_date":["2004"],"publish_year":[2004],"first_publish_year":2004,"lccn":["2004422729"],"publish_place":["Monaco"],"lcc":["JN-2597.00000000.R56 2004"],"isbn":["9782268051079","2268051072"],"last_modified_i":1607621451,"ebook_count_i":0,"publisher":["Rocher"],"language":["fre"],"author_key":["OL3965478A"],"author_name":["Ivan Rioufol"],"place":["France"],"subject":["Politics and government","Conformity"],"time":["1995-2007"],"id_librarything":["4997313"],"publisher_facet":["Rocher"],"place_key":["france"],"time_facet":["1995-2007"],"subject_facet":["Conformity","Politics and government"],"_version_":1697074596661952500,"place_facet":["France"],"lcc_sort":"JN-2597.00000000.R56 2004","author_facet":["OL3965478A Ivan Rioufol"],"subject_key":["conformity","politics_and_government"],"time_key":["1995-2007"]}
{"key":"/works/OL10000429W","text":["/works/OL10000429W","A la rencontre de soi, se libérer des rapports de force","OL12623726M","9782843371172","2843371171","Editions Anne Carrière","OL3965479A","Hélène Roubeix"],"type":"work","seed":["/books/OL12623726M","/works/OL10000429W","/authors/OL3965479A"],"title":"A la rencontre de soi, se libérer des rapports de force","title_suggest":["A la rencontre de soi, se libérer des rapports de force"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623726M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782843371172","2843371171"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623726M","cover_i":3140834,"publisher":["Editions Anne Carrière"],"author_key":["OL3965479A"],"author_name":["Hélène Roubeix"],"id_goodreads":["5671070"],"publisher_facet":["Editions Anne Carrière"],"_version_":1697074596553949200,"author_facet":["OL3965479A Hélène Roubeix"]}
{"key":"/works/OL1000042W","text":["/works/OL1000042W","Murder among the OWLS","Murder Among the OWLS","Murder among the O.W.L.S.","A Sheriff Dan Rhodes Mystery (Sheriff Dan Rhodes Mysteries)","a Sheriff Dan Rhodes mystery","OL9467686M","OL17881663M","OL23275735M","Bill Crider.","2006050613","71146607","9780312348090","0312348096","murderamongowls00crid_0","Thomas Dunne Books/St. Martin's Minotaur","St. Martin's Minotaur","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","Texas","Dan Rhodes (Fictitious character)","Sheriffs","Fiction","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL9467686M","/books/OL17881663M","/books/OL23275735M","/works/OL1000042W","/subjects/dan_rhodes_(fictitious_character)","/subjects/sheriffs","/subjects/fiction","/subjects/place:texas","/authors/OL92934A"],"title":"Murder among the OWLS","title_suggest":["Murder among the OWLS"],"has_fulltext":true,"edition_count":3,"edition_key":["OL9467686M","OL17881663M","OL23275735M"],"publish_date":["January 9, 2007","2007"],"publish_year":[2007],"first_publish_year":2007,"lccn":["2006050613"],"publish_place":["New York"],"oclc":["71146607"],"lcc":["PS-3553.00000000.R497 M85 2007"],"ddc":["813.54"],"isbn":["9780312348090","0312348096"],"last_modified_i":1614059321,"ebook_count_i":1,"ia":["murderamongowls00crid_0"],"public_scan_b":false,"ia_collection_s":"china;inlibrary;printdisabled;internetarchivebooks;spokanepubliclibrary-ol","lending_edition_s":"OL17881663M","lending_identifier_s":"murderamongowls00crid_0","printdisabled_s":"OL17881663M","cover_edition_key":"OL9467686M","cover_i":180823,"publisher":["Thomas Dunne Books/St. Martin's Minotaur","St. Martin's Minotaur"],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"place":["Texas"],"subject":["Dan Rhodes (Fictitious character)","Sheriffs","Fiction","Accessible book","Protected DAISY"],"id_goodreads":["147133"],"id_librarything":["2102972"],"ia_loaded_id":["murderamongowls00crid_0"],"ia_box_id":["IA183901","IA139801"],"publisher_facet":["St. Martin's Minotaur","Thomas Dunne Books/St. Martin's Minotaur"],"place_key":["texas"],"subject_facet":["Accessible book","Dan Rhodes (Fictitious character)","Fiction","Protected DAISY","Sheriffs"],"_version_":1697074596581212200,"place_facet":["Texas"],"lcc_sort":"PS-3553.00000000.R497 M85 2007","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","dan_rhodes_(fictitious_character)","fiction","protected_daisy","sheriffs"],"ddc_sort":"813.54"}
{"key":"/works/OL10000430W","text":["/works/OL10000430W","J'ai vu une porte ouverte dans le ciel..","J'ai vu une porte ouverte dans le ciel...","chronique des JMJ 2000 à Rome","OL12623732M","2843371333","9782843371332","A. Carrière","OL3965480A","Matthieu Grimpret"],"type":"work","seed":["/books/OL12623732M","/works/OL10000430W","/authors/OL3965480A"],"title":"J'ai vu une porte ouverte dans le ciel..","title_suggest":["J'ai vu une porte ouverte dans le ciel.."],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623732M"],"publish_date":["November 7, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2843371333","9782843371332"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623732M","cover_i":3140840,"publisher":["A. Carrière"],"author_key":["OL3965480A"],"author_name":["Matthieu Grimpret"],"id_goodreads":["7252639"],"publisher_facet":["A. Carrière"],"_version_":1697074595970941000,"author_facet":["OL3965480A Matthieu Grimpret"]}
{"key":"/works/OL10000431W","text":["/works/OL10000431W","La révolution de Dieu","OL12623728M","9782843371233","2843371236","Anne Carrière","OL3965480A","Matthieu Grimpret"],"type":"work","seed":["/books/OL12623728M","/works/OL10000431W","/authors/OL3965480A"],"title":"La révolution de Dieu","title_suggest":["La révolution de Dieu"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623728M"],"publish_date":["December 1, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782843371233","2843371236"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12623728M","cover_i":3140836,"publisher":["Anne Carrière"],"author_key":["OL3965480A"],"author_name":["Matthieu Grimpret"],"id_goodreads":["6281271"],"id_librarything":["4774294"],"publisher_facet":["Anne Carrière"],"_version_":1697074596018126800,"author_facet":["OL3965480A Matthieu Grimpret"]}
{"key":"/works/OL10000432W","text":["/works/OL10000432W","Traité à l'usage de mes potes de droite qui ont du mal à kiffer la France de Diam's","OL22688369M","Matthieu Grimpret.","2008444035","2008444820","9782843374920","2843374928","Carrière","OL3965480A","Matthieu Grimpret","France","Social conditions","Suburbs","Race relations","Urban violence","Marginality, Social","Social Marginality","Biology","Philosophy","Cytology","Life","Death"],"type":"work","seed":["/books/OL22688369M","/works/OL10000432W","/subjects/social_conditions","/subjects/suburbs","/subjects/race_relations","/subjects/urban_violence","/subjects/marginality_social","/subjects/social_marginality","/subjects/biology","/subjects/philosophy","/subjects/cytology","/subjects/life","/subjects/death","/subjects/place:france","/authors/OL3965480A"],"title":"Traité à l'usage de mes potes de droite qui ont du mal à kiffer la France de Diam's","title_suggest":["Traité à l'usage de mes potes de droite qui ont du mal à kiffer la France de Diam's"],"has_fulltext":false,"edition_count":1,"edition_key":["OL22688369M"],"publish_date":["2008"],"publish_year":[2008],"first_publish_year":2008,"lccn":["2008444035","2008444820"],"publish_place":["Paris"],"lcc":["HN-0440.00000000.M26 G75 2008","QH-0331.00000000.C63 2008"],"isbn":["9782843374920","2843374928"],"last_modified_i":1608641494,"ebook_count_i":0,"publisher":["Carrière"],"language":["fre"],"author_key":["OL3965480A"],"author_name":["Matthieu Grimpret"],"place":["France"],"subject":["Social conditions","Suburbs","Race relations","Urban violence","Marginality, Social","Social Marginality","Biology","Philosophy","Cytology","Life","Death"],"publisher_facet":["Carrière"],"place_key":["france"],"subject_facet":["Biology","Cytology","Death","Life","Marginality, Social","Philosophy","Race relations","Social Marginality","Social conditions","Suburbs","Urban violence"],"_version_":1697074595971989500,"place_facet":["France"],"lcc_sort":"HN-0440.00000000.M26 G75 2008","author_facet":["OL3965480A Matthieu Grimpret"],"subject_key":["biology","cytology","death","life","marginality_social","philosophy","race_relations","social_conditions","social_marginality","suburbs","urban_violence"]}
{"key":"/works/OL10000433W","text":["/works/OL10000433W","Dieu est dans l'isoloir","politique et religions, les retrouvailles que Marianne n'avait pas prévues","Politique et religions, les retrouvailles que Marianne n'avait pas prévues","OL19692135M","OL19320067M","Matthieu Grimpret.","2750902894","9782750902896","Presses de la renaissance","Presses de la Renaissance","OL3965480A","Matthieu Grimpret"],"type":"work","seed":["/books/OL19692135M","/books/OL19320067M","/works/OL10000433W","/authors/OL3965480A"],"title":"Dieu est dans l'isoloir","title_suggest":["Dieu est dans l'isoloir"],"has_fulltext":false,"edition_count":2,"edition_key":["OL19692135M","OL19320067M"],"publish_date":["2007"],"publish_year":[2007],"first_publish_year":2007,"publish_place":["Paris"],"ddc":["300"],"isbn":["2750902894","9782750902896"],"last_modified_i":1260859165,"ebook_count_i":0,"publisher":["Presses de la renaissance","Presses de la Renaissance"],"language":["fre"],"author_key":["OL3965480A"],"author_name":["Matthieu Grimpret"],"publisher_facet":["Presses de la Renaissance","Presses de la renaissance"],"_version_":1697074595490693000,"author_facet":["OL3965480A Matthieu Grimpret"],"ddc_sort":"300"}
{"key":"/works/OL10000434W","text":["/works/OL10000434W","Un Traître","OL12623729M","9782843371240","2843371244","Anne Carrière","OL3965481A","H. Bentegeat"],"type":"work","seed":["/books/OL12623729M","/works/OL10000434W","/authors/OL3965481A"],"title":"Un Traître","title_suggest":["Un Traître"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623729M"],"publish_date":["December 1, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782843371240","2843371244"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623729M","cover_i":3140837,"publisher":["Anne Carrière"],"language":["fre"],"author_key":["OL3965481A"],"author_name":["H. Bentegeat"],"publisher_facet":["Anne Carrière"],"_version_":1697074595795828700,"author_facet":["OL3965481A H. Bentegeat"]}
{"key":"/works/OL10000435W","text":["/works/OL10000435W","Ces grands discours qui ont fait le discours","OL12623730M","2001351334","2843371317","9782843371318","cesgrandsdiscour0000caba","A. Carrière","OL3965482A","Olivier Cabarrot","Speeches, addresses","Modern History","Sources","Statesmen","Histoire universelle","Discours","Éloquence politique","Politique mondiale","Hommes politiques","Relations internationales","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL12623730M","/works/OL10000435W","/subjects/speeches_addresses","/subjects/modern_history","/subjects/sources","/subjects/statesmen","/subjects/histoire_universelle","/subjects/discours","/subjects/éloquence_politique","/subjects/politique_mondiale","/subjects/hommes_politiques","/subjects/relations_internationales","/authors/OL3965482A"],"title":"Ces grands discours qui ont fait le discours","title_suggest":["Ces grands discours qui ont fait le discours"],"has_fulltext":true,"edition_count":1,"edition_key":["OL12623730M"],"publish_date":["October 10, 2000"],"publish_year":[2000],"first_publish_year":2000,"lccn":["2001351334"],"lcc":["PN-6123.00000000.C33 2000"],"isbn":["2843371317","9782843371318"],"last_modified_i":1614143717,"ebook_count_i":1,"ia":["cesgrandsdiscour0000caba"],"public_scan_b":false,"ia_collection_s":"inlibrary;fav-l777991;printdisabled;internetarchivebooks","lending_edition_s":"OL12623730M","lending_identifier_s":"cesgrandsdiscour0000caba","printdisabled_s":"OL12623730M","cover_edition_key":"OL12623730M","cover_i":3140838,"publisher":["A. Carrière"],"author_key":["OL3965482A"],"author_name":["Olivier Cabarrot"],"subject":["Speeches, addresses","Modern History","Sources","Statesmen","Histoire universelle","Discours","Éloquence politique","Politique mondiale","Hommes politiques","Relations internationales","Accessible book","Protected DAISY"],"ia_box_id":["IA40064518"],"publisher_facet":["A. Carrière"],"subject_facet":["Accessible book","Discours","Histoire universelle","Hommes politiques","Modern History","Politique mondiale","Protected DAISY","Relations internationales","Sources","Speeches, addresses","Statesmen","Éloquence politique"],"_version_":1697074596340039700,"lcc_sort":"PN-6123.00000000.C33 2000","author_facet":["OL3965482A Olivier Cabarrot"],"subject_key":["accessible_book","discours","histoire_universelle","hommes_politiques","modern_history","politique_mondiale","protected_daisy","relations_internationales","sources","speeches_addresses","statesmen","éloquence_politique"]}
{"key":"/works/OL10000436W","text":["/works/OL10000436W","Le Réseau","OL12623733M","2843371341","9782843371349","A. Carrière","OL3965483A","Anika Brumark"],"type":"work","seed":["/books/OL12623733M","/works/OL10000436W","/authors/OL3965483A"],"title":"Le Réseau","title_suggest":["Le Réseau"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623733M"],"publish_date":["January 1, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2843371341","9782843371349"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623733M","cover_i":3140841,"publisher":["A. Carrière"],"author_key":["OL3965483A"],"author_name":["Anika Brumark"],"publisher_facet":["A. Carrière"],"_version_":1697074596426023000,"author_facet":["OL3965483A Anika Brumark"]}
{"key":"/works/OL10000437W","text":["/works/OL10000437W","Quelqu'un qui vous ressemble","OL12623736M","2843371392","9782843371394","Anne Carrière","OL3965484A","Dich","French essays"],"type":"work","seed":["/books/OL12623736M","/works/OL10000437W","/subjects/french_essays","/authors/OL3965484A"],"title":"Quelqu'un qui vous ressemble","title_suggest":["Quelqu'un qui vous ressemble"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623736M"],"publish_date":["January 17, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2843371392","9782843371394"],"last_modified_i":1563153646,"ebook_count_i":0,"cover_edition_key":"OL12623736M","cover_i":3140844,"publisher":["Anne Carrière"],"author_key":["OL3965484A"],"author_name":["Dich"],"subject":["French essays"],"publisher_facet":["Anne Carrière"],"subject_facet":["French essays"],"_version_":1697074595390029800,"author_facet":["OL3965484A Dich"],"subject_key":["french_essays"]}
{"key":"/works/OL10000438W","text":["/works/OL10000438W","Deux jours à tuer","Deux jours à tuer ","Toute l'ambiguïté d'un homme","OL12623737M","2001462331","9782843371448","2843371449","Anne Carrère","OL3965485A","François d' Epernoux"],"type":"work","seed":["/books/OL12623737M","/works/OL10000438W","/authors/OL3965485A"],"title":"Deux jours à tuer","title_suggest":["Deux jours à tuer"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623737M"],"publish_date":["August 22, 2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2001462331"],"lcc":["PQ-2665.00000000.P37 D48 2001"],"isbn":["9782843371448","2843371449"],"last_modified_i":1607158408,"ebook_count_i":0,"cover_edition_key":"OL12623737M","cover_i":3140845,"publisher":["Anne Carrère"],"author_key":["OL3965485A"],"author_name":["François d' Epernoux"],"id_goodreads":["6549579"],"id_librarything":["6200670"],"publisher_facet":["Anne Carrère"],"_version_":1697074595849306000,"lcc_sort":"PQ-2665.00000000.P37 D48 2001","author_facet":["OL3965485A François d' Epernoux"]}
{"key":"/works/OL10000439W","text":["/works/OL10000439W","Trêve de rêve","OL12623738M","9782843371455","2843371457","Anne Carrière","OL3965486A","Catherine Diament"],"type":"work","seed":["/books/OL12623738M","/works/OL10000439W","/authors/OL3965486A"],"title":"Trêve de rêve","title_suggest":["Trêve de rêve"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623738M"],"publish_date":["March 20, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782843371455","2843371457"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623738M","cover_i":3140846,"publisher":["Anne Carrière"],"language":["fre"],"author_key":["OL3965486A"],"author_name":["Catherine Diament"],"id_goodreads":["6243851"],"publisher_facet":["Anne Carrière"],"_version_":1697074596388274200,"author_facet":["OL3965486A Catherine Diament"]}
{"key":"/works/OL1000043W","text":["/works/OL1000043W","Muttketeer!","OL709658M","OL384584M","by Bill Crider.","by Bill Crider ; based on the teleplay by Gail Schmeichel ; inspired by The Three Musketeers by Alexandre Dumas.","98047157","97073288","37957031","Dumas, Alexandre, 1802-1870.","Duffield, Rick.","9781570642722","1570642729","0836823044","9780836823042","muttketeer00crid","Big Red Chair Books","Gareth Stevens Pub.","OL92934A","Bill Crider","Jack MacLane, Jack Buchanan, Nick Carter","France","Juvenile fiction","Adventure and adventurers","Dogs","History","Fiction","Accessible book","Protected DAISY","Louis XIII, 1610-1643"],"type":"work","seed":["/books/OL709658M","/books/OL384584M","/works/OL1000043W","/subjects/juvenile_fiction","/subjects/adventure_and_adventurers","/subjects/dogs","/subjects/history","/subjects/fiction","/subjects/place:france","/subjects/time:louis_xiii_1610-1643","/authors/OL92934A"],"title":"Muttketeer!","title_suggest":["Muttketeer!"],"has_fulltext":true,"edition_count":2,"edition_key":["OL709658M","OL384584M"],"publish_date":["1999","1997"],"publish_year":[1999,1997],"first_publish_year":1997,"lccn":["98047157","97073288"],"publish_place":["Allen, Tex","Milwaukee, WI"],"oclc":["37957031"],"contributor":["Dumas, Alexandre, 1802-1870.","Duffield, Rick."],"lcc":["PZ-0007.00000000.C86925 Mu 1999","PZ-0007.00000000.C86925 Mu 1997"],"ddc":["[Fic]"],"isbn":["9781570642722","1570642729","0836823044","9780836823042"],"last_modified_i":1606591651,"ebook_count_i":1,"ia":["muttketeer00crid"],"public_scan_b":false,"ia_collection_s":"americana;inlibrary;printdisabled;cnusd-ol;fav-joe_w196;bpljordan-ol;internetarchivebooks","lending_edition_s":"OL709658M","lending_identifier_s":"muttketeer00crid","printdisabled_s":"OL709658M","cover_edition_key":"OL384584M","cover_i":3739650,"publisher":["Big Red Chair Books","Gareth Stevens Pub."],"language":["eng"],"author_key":["OL92934A"],"author_name":["Bill Crider"],"author_alternative_name":["Jack MacLane, Jack Buchanan, Nick Carter"],"place":["France"],"subject":["Juvenile fiction","Adventure and adventurers","Dogs","History","Fiction","Accessible book","Protected DAISY"],"time":["Louis XIII, 1610-1643"],"id_goodreads":["4415808","833329"],"id_librarything":["166808"],"ia_box_id":["IA107415"],"publisher_facet":["Big Red Chair Books","Gareth Stevens Pub."],"place_key":["france"],"time_facet":["Louis XIII, 1610-1643"],"subject_facet":["Accessible book","Adventure and adventurers","Dogs","Fiction","History","Juvenile fiction","Protected DAISY"],"_version_":1697074595344941000,"place_facet":["France"],"lcc_sort":"PZ-0007.00000000.C86925 Mu 1999","author_facet":["OL92934A Bill Crider"],"subject_key":["accessible_book","adventure_and_adventurers","dogs","fiction","history","juvenile_fiction","protected_daisy"],"ddc_sort":"[Fic]","time_key":["louis_xiii_1610-1643"]}
{"key":"/works/OL10000440W","text":["/works/OL10000440W","J'aime pas les lundis","OL12623740M","9782843371547","2843371546","Anne Carrière","OL3965487A","Julie Gartempe"],"type":"work","seed":["/books/OL12623740M","/works/OL10000440W","/authors/OL3965487A"],"title":"J'aime pas les lundis","title_suggest":["J'aime pas les lundis"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623740M"],"publish_date":["May 10, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782843371547","2843371546"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623740M","cover_i":3140848,"publisher":["Anne Carrière"],"author_key":["OL3965487A"],"author_name":["Julie Gartempe"],"publisher_facet":["Anne Carrière"],"_version_":1697074595923755000,"author_facet":["OL3965487A Julie Gartempe"]}
{"key":"/works/OL10000441W","text":["/works/OL10000441W","La Mémoire de l'âme","OL12623745M","9782843371714","2843371716","Anne Carrière","OL3965488A","Jean-Jacques Launier"],"type":"work","seed":["/books/OL12623745M","/works/OL10000441W","/authors/OL3965488A"],"title":"La Mémoire de l'âme","title_suggest":["La Mémoire de l'âme"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623745M"],"publish_date":["November 6, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782843371714","2843371716"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12623745M","cover_i":3140853,"publisher":["Anne Carrière"],"author_key":["OL3965488A"],"author_name":["Jean-Jacques Launier"],"id_goodreads":["1892583"],"id_librarything":["5801416"],"publisher_facet":["Anne Carrière"],"_version_":1697074595616522200,"author_facet":["OL3965488A Jean-Jacques Launier"]}
{"key":"/works/OL10000442W","text":["/works/OL10000442W","Les contes du vent d’autan et autres récits de chasse","OL12623748M","9782843371813","2843371813","Anne Carrière","OL3965489A","Claude castres"],"type":"work","seed":["/books/OL12623748M","/works/OL10000442W","/authors/OL3965489A"],"title":"Les contes du vent d’autan et autres récits de chasse","title_suggest":["Les contes du vent d’autan et autres récits de chasse"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623748M"],"publish_date":["March 12, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843371813","2843371813"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623748M","cover_i":3140856,"publisher":["Anne Carrière"],"language":["fre"],"author_key":["OL3965489A"],"author_name":["Claude castres"],"publisher_facet":["Anne Carrière"],"_version_":1697074595964649500,"author_facet":["OL3965489A Claude castres"]}
{"key":"/works/OL10000443W","text":["/works/OL10000443W","L'Homme désir","L'Homme désir ","Enquête au pays des séducteurs","OL12623750M","2002476806","2843371848","9782843371844","Anne Carrière","OL3965490A","Yolaine de la Bigne","Seduction","History"],"type":"work","seed":["/books/OL12623750M","/works/OL10000443W","/subjects/seduction","/subjects/history","/authors/OL3965490A"],"title":"L'Homme désir","title_suggest":["L'Homme désir"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623750M"],"publish_date":["April 10, 2002"],"publish_year":[2002],"first_publish_year":2002,"lccn":["2002476806"],"lcc":["HV-6584.00000000.L2 2002"],"isbn":["2843371848","9782843371844"],"last_modified_i":1607346812,"ebook_count_i":0,"cover_edition_key":"OL12623750M","cover_i":3140858,"publisher":["Anne Carrière"],"author_key":["OL3965490A"],"author_name":["Yolaine de la Bigne"],"subject":["Seduction","History"],"id_librarything":["5103680"],"publisher_facet":["Anne Carrière"],"subject_facet":["History","Seduction"],"_version_":1697074596243570700,"lcc_sort":"HV-6584.00000000.L2 2002","author_facet":["OL3965490A Yolaine de la Bigne"],"subject_key":["history","seduction"]}
{"key":"/works/OL10000444W","text":["/works/OL10000444W","Histoires à décrocher la lune","OL12623756M","9782843371950","2843371953","Anne Carrière","OL3965492A","Maëva Poupard"],"type":"work","seed":["/books/OL12623756M","/works/OL10000444W","/authors/OL3965492A"],"title":"Histoires à décrocher la lune","title_suggest":["Histoires à décrocher la lune"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623756M"],"publish_date":["August 27, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843371950","2843371953"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623756M","cover_i":3140863,"publisher":["Anne Carrière"],"author_key":["OL3965492A"],"author_name":["Maëva Poupard"],"publisher_facet":["Anne Carrière"],"_version_":1697074595376398300,"author_facet":["OL3965492A Maëva Poupard"]}
{"key":"/works/OL10000445W","text":["/works/OL10000445W","Noir comme un ange","OL12623759M","9782843372001","2843372003","Anne Carrière","OL3965493A","Dan Chartier"],"type":"work","seed":["/books/OL12623759M","/works/OL10000445W","/authors/OL3965493A"],"title":"Noir comme un ange","title_suggest":["Noir comme un ange"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623759M"],"publish_date":["October 15, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843372001","2843372003"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623759M","cover_i":3140866,"publisher":["Anne Carrière"],"language":["fre"],"author_key":["OL3965493A"],"author_name":["Dan Chartier"],"id_goodreads":["6231289"],"publisher_facet":["Anne Carrière"],"_version_":1697074596348428300,"author_facet":["OL3965493A Dan Chartier"]}
{"key":"/works/OL10000446W","text":["/works/OL10000446W","Symphonie lucifer","OL12623769M","9782843372308","2843372305","Anne Carrière","OL3965493A","Dan Chartier"],"type":"work","seed":["/books/OL12623769M","/works/OL10000446W","/authors/OL3965493A"],"title":"Symphonie lucifer","title_suggest":["Symphonie lucifer"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623769M"],"publish_date":["May 21, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["9782843372308","2843372305"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623769M","cover_i":3140876,"publisher":["Anne Carrière"],"language":["fre"],"author_key":["OL3965493A"],"author_name":["Dan Chartier"],"id_goodreads":["6231290"],"publisher_facet":["Anne Carrière"],"_version_":1697074596635738000,"author_facet":["OL3965493A Dan Chartier"]}
{"key":"/works/OL10000447W","text":["/works/OL10000447W","Les lions de la teranga","OL12623761M","9782843372032","2843372038","Anne Carrière","OL3965494A","Toure/ Boli"],"type":"work","seed":["/books/OL12623761M","/works/OL10000447W","/authors/OL3965494A"],"title":"Les lions de la teranga","title_suggest":["Les lions de la teranga"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623761M"],"publish_date":["September 4, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843372032","2843372038"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623761M","cover_i":3140868,"publisher":["Anne Carrière"],"language":["fre"],"author_key":["OL3965494A"],"author_name":["Toure/ Boli"],"id_goodreads":["1941045"],"publisher_facet":["Anne Carrière"],"_version_":1697074596164927500,"author_facet":["OL3965494A Toure/ Boli"]}
{"key":"/works/OL10000448W","text":["/works/OL10000448W","Ruptures","Ruptures ","L'Epilepsie ou une vie en clair-obscur","OL12623762M","2843372062","9782843372063","Editions Anne Carrière","OL3965495A","Michèle Arnaud"],"type":"work","seed":["/books/OL12623762M","/works/OL10000448W","/authors/OL3965495A"],"title":"Ruptures","title_suggest":["Ruptures"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623762M"],"publish_date":["November 1, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2843372062","9782843372063"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623762M","cover_i":3140869,"publisher":["Editions Anne Carrière"],"author_key":["OL3965495A"],"author_name":["Michèle Arnaud"],"publisher_facet":["Editions Anne Carrière"],"_version_":1697074595703554000,"author_facet":["OL3965495A Michèle Arnaud"]}
{"key":"/works/OL10000449W","text":["/works/OL10000449W","De l'autre côté du lit","De l'autre côté du lit.","OL16308149M","470003723","2290335762","9782290335765","J'ai Lu","OL3965496A","Alix Girod de l'Ain"],"type":"work","seed":["/books/OL16308149M","/works/OL10000449W","/authors/OL3965496A"],"title":"De l'autre côté du lit","title_suggest":["De l'autre côté du lit"],"has_fulltext":false,"edition_count":1,"edition_key":["OL16308149M"],"publish_date":["2003"],"publish_year":[2003],"first_publish_year":2003,"publish_place":["Paris"],"oclc":["470003723"],"isbn":["2290335762","9782290335765"],"last_modified_i":1304106516,"ebook_count_i":0,"publisher":["J'ai Lu"],"language":["fre"],"author_key":["OL3965496A"],"author_name":["Alix Girod de l'Ain"],"id_goodreads":["3260196"],"id_librarything":["3756116"],"publisher_facet":["J'ai Lu"],"_version_":1697074595462381600,"author_facet":["OL3965496A Alix Girod de l'Ain"]}
{"key":"/works/OL1000044W","text":["/works/OL1000044W","Betört von seinen heißen Blicken","Betört von seinen heißen Blicken.","OL12688775M","76334104","9783404182879","3404182871","Lübbe","OL92935A","Elizabeth Boyle"],"type":"work","seed":["/books/OL12688775M","/works/OL1000044W","/authors/OL92935A"],"title":"Betört von seinen heißen Blicken","title_suggest":["Betört von seinen heißen Blicken"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12688775M"],"publish_date":["November 1, 2001"],"publish_year":[2001],"first_publish_year":2001,"oclc":["76334104"],"isbn":["9783404182879","3404182871"],"last_modified_i":1307532186,"ebook_count_i":0,"cover_edition_key":"OL12688775M","cover_i":3182616,"publisher":["Lübbe"],"author_key":["OL92935A"],"author_name":["Elizabeth Boyle"],"id_goodreads":["1858465"],"publisher_facet":["Lübbe"],"_version_":1697074596268736500,"author_facet":["OL92935A Elizabeth Boyle"]}
{"key":"/works/OL10000450W","text":["/works/OL10000450W","De l'autre côte du lit","OL12623763M","9782843372100","2744167304","9782744167300","2843372100","Anne Carrière","OL3965496A","Alix Girod de l'Ain"],"type":"work","seed":["/books/OL12623763M","/works/OL10000450W","/authors/OL3965496A"],"title":"De l'autre côte du lit","title_suggest":["De l'autre côte du lit"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623763M"],"publish_date":["January 22, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["9782843372100","2744167304","9782744167300","2843372100"],"last_modified_i":1282054217,"ebook_count_i":0,"publisher":["Anne Carrière"],"language":["fre"],"author_key":["OL3965496A"],"author_name":["Alix Girod de l'Ain"],"id_goodreads":["2938096"],"id_librarything":["3756116"],"publisher_facet":["Anne Carrière"],"_version_":1697074595938435000,"author_facet":["OL3965496A Alix Girod de l'Ain"]}
{"key":"/works/OL10000451W","text":["/works/OL10000451W","Trau dich. Der ultimative Weg zur Ehe","Trau dich. Der ultimative Weg zur Ehe.","OL12744884M","76226854","9783499609008","3499609002","Rowohlt Tb.","OL3965496A","Alix Girod de l'Ain"],"type":"work","seed":["/books/OL12744884M","/works/OL10000451W","/authors/OL3965496A"],"title":"Trau dich. Der ultimative Weg zur Ehe","title_suggest":["Trau dich. Der ultimative Weg zur Ehe"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12744884M"],"publish_date":["May 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["76226854"],"isbn":["9783499609008","3499609002"],"last_modified_i":1307524379,"ebook_count_i":0,"publisher":["Rowohlt Tb."],"language":["ger"],"author_key":["OL3965496A"],"author_name":["Alix Girod de l'Ain"],"id_goodreads":["2938095"],"publisher_facet":["Rowohlt Tb."],"_version_":1697074596055875600,"author_facet":["OL3965496A Alix Girod de l'Ain"]}
{"key":"/works/OL10000452W","text":["/works/OL10000452W","Pères d'aujourd'hui, filles de demain","OL12623764M","9782843372117","2843372119","Anne Carrière","OL3965497A","Valérie Colin-Simard"],"type":"work","seed":["/books/OL12623764M","/works/OL10000452W","/authors/OL3965497A"],"title":"Pères d'aujourd'hui, filles de demain","title_suggest":["Pères d'aujourd'hui, filles de demain"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623764M"],"publish_date":["February 5, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["9782843372117","2843372119"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623764M","cover_i":3140871,"publisher":["Anne Carrière"],"language":["fre"],"author_key":["OL3965497A"],"author_name":["Valérie Colin-Simard"],"id_goodreads":["6152985"],"publisher_facet":["Anne Carrière"],"_version_":1697074596484743200,"author_facet":["OL3965497A Valérie Colin-Simard"]}
{"key":"/works/OL10000453W","text":["/works/OL10000453W","Quand les femmes s'éveilleront--","oser le féminin","OL23217093M","Valérie Colin-Simard.","2008420991","2226183922","9782226183927","Albin Michel","OL3965497A","Valérie Colin-Simard","Femininity","Women","Psychology"],"type":"work","seed":["/books/OL23217093M","/works/OL10000453W","/subjects/femininity","/subjects/women","/subjects/psychology","/authors/OL3965497A"],"title":"Quand les femmes s'éveilleront--","title_suggest":["Quand les femmes s'éveilleront--"],"has_fulltext":false,"edition_count":1,"edition_key":["OL23217093M"],"publish_date":["2008"],"publish_year":[2008],"first_publish_year":2008,"lccn":["2008420991"],"publish_place":["Paris"],"lcc":["BF-0175.50000000.F45 C65 2008"],"isbn":["2226183922","9782226183927"],"last_modified_i":1608499620,"ebook_count_i":0,"publisher":["Albin Michel"],"language":["fre"],"author_key":["OL3965497A"],"author_name":["Valérie Colin-Simard"],"subject":["Femininity","Women","Psychology"],"publisher_facet":["Albin Michel"],"subject_facet":["Femininity","Psychology","Women"],"_version_":1697074596302291000,"lcc_sort":"BF-0175.50000000.F45 C65 2008","author_facet":["OL3965497A Valérie Colin-Simard"],"subject_key":["femininity","psychology","women"]}
{"key":"/works/OL10000454W","text":["/works/OL10000454W","Professeur Leca","Professeur Leca ","Chirurgien du coeur","OL12623765M","2003487438","284337216X","9782843372162","Anne Carrière","OL3965498A","Elizabeth Drévillon","Francine Leca","Women surgeons","Biography","Surgeons","Heart","Surgery","History"],"type":"work","seed":["/books/OL12623765M","/works/OL10000454W","/subjects/francine_leca","/subjects/women_surgeons","/subjects/biography","/subjects/surgeons","/subjects/heart","/subjects/surgery","/subjects/history","/authors/OL3965498A"],"title":"Professeur Leca","title_suggest":["Professeur Leca"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623765M"],"publish_date":["March 12, 2003"],"publish_year":[2003],"first_publish_year":2003,"lccn":["2003487438"],"lcc":["RD-0027.35000000.L43 D74 2003"],"isbn":["284337216X","9782843372162"],"last_modified_i":1607390329,"ebook_count_i":0,"cover_edition_key":"OL12623765M","cover_i":3140872,"publisher":["Anne Carrière"],"language":["fre"],"author_key":["OL3965498A"],"author_name":["Elizabeth Drévillon"],"subject":["Francine Leca","Women surgeons","Biography","Surgeons","Heart","Surgery","History"],"publisher_facet":["Anne Carrière"],"subject_facet":["Biography","Francine Leca","Heart","History","Surgeons","Surgery","Women surgeons"],"_version_":1697074595947872300,"lcc_sort":"RD-0027.35000000.L43 D74 2003","author_facet":["OL3965498A Elizabeth Drévillon"],"subject_key":["biography","francine_leca","heart","history","surgeons","surgery","women_surgeons"]}
{"key":"/works/OL10000455W","text":["/works/OL10000455W","Gardien de la paix","Vingt-cinq ans de Police judiciaire et des idées pour l'avenir, le directeur général de la Police nationale s'exprime","25 ans de PJ et des idées pour l'avenir, le directeur général de la Police nationale s'exprime","OL23156252M","Frédéric Péchenard ; avec la collaboration de Franck Hériot.","2008366006","Hériot, Franck.","2749907152","9782749907154","Lafon","OL3965499A","Frédéric Péchenard","Police","Crime prevention"],"type":"work","seed":["/books/OL23156252M","/works/OL10000455W","/subjects/police","/subjects/crime_prevention","/authors/OL3965499A"],"title":"Gardien de la paix","title_suggest":["Gardien de la paix"],"has_fulltext":false,"edition_count":1,"edition_key":["OL23156252M"],"publish_date":["2007"],"publish_year":[2007],"first_publish_year":2007,"lccn":["2008366006"],"publish_place":["Neuilly-sur-Seine"],"contributor":["Hériot, Franck."],"lcc":["HV-8203.00000000.P36 2007"],"isbn":["2749907152","9782749907154"],"last_modified_i":1608476010,"ebook_count_i":0,"publisher":["Lafon"],"language":["fre"],"author_key":["OL3965499A"],"author_name":["Frédéric Péchenard"],"subject":["Police","Crime prevention"],"publisher_facet":["Lafon"],"subject_facet":["Crime prevention","Police"],"_version_":1697074596094673000,"lcc_sort":"HV-8203.00000000.P36 2007","author_facet":["OL3965499A Frédéric Péchenard"],"subject_key":["crime_prevention","police"]}
{"key":"/works/OL10000456W","text":["/works/OL10000456W","Les Dons d'organes","Les Dons d'organes ","Donneurs, greffés et soignants témoignent sur la transplantation","OL12623767M","2003487441","9782843372193","2843372194","Anne Carrière","OL3965500A","Marlyse Tschui","Donation of organs, tissues","Psychological aspects","Moral and ethical aspects","Organ donors","Psychology"],"type":"work","seed":["/books/OL12623767M","/works/OL10000456W","/subjects/donation_of_organs_tissues","/subjects/psychological_aspects","/subjects/moral_and_ethical_aspects","/subjects/organ_donors","/subjects/psychology","/authors/OL3965500A"],"title":"Les Dons d'organes","title_suggest":["Les Dons d'organes"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623767M"],"publish_date":["March 12, 2003"],"publish_year":[2003],"first_publish_year":2003,"lccn":["2003487441"],"lcc":["RD-0129.50000000.T75 2003"],"isbn":["9782843372193","2843372194"],"last_modified_i":1607390331,"ebook_count_i":0,"cover_edition_key":"OL12623767M","cover_i":3140874,"publisher":["Anne Carrière"],"language":["fre"],"author_key":["OL3965500A"],"author_name":["Marlyse Tschui"],"subject":["Donation of organs, tissues","Psychological aspects","Moral and ethical aspects","Organ donors","Psychology"],"id_librarything":["6564532"],"publisher_facet":["Anne Carrière"],"subject_facet":["Donation of organs, tissues","Moral and ethical aspects","Organ donors","Psychological aspects","Psychology"],"_version_":1697074596295999500,"lcc_sort":"RD-0129.50000000.T75 2003","author_facet":["OL3965500A Marlyse Tschui"],"subject_key":["donation_of_organs_tissues","moral_and_ethical_aspects","organ_donors","psychological_aspects","psychology"]}
{"key":"/works/OL10000457W","text":["/works/OL10000457W","Lisa-Loup et le conteur","OL12623768M","2003487235","2843372216","9782843372216","Anne Carrière","OL3965501A","Mylène Farmer"],"type":"work","seed":["/books/OL12623768M","/works/OL10000457W","/authors/OL3965501A"],"title":"Lisa-Loup et le conteur","title_suggest":["Lisa-Loup et le conteur"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623768M"],"publish_date":["April 22, 2003"],"publish_year":[2003],"first_publish_year":2003,"lccn":["2003487235"],"lcc":["PZ-0023.00000000.F245 L57 2003"],"isbn":["2843372216","9782843372216"],"last_modified_i":1607390255,"ebook_count_i":0,"cover_edition_key":"OL12623768M","cover_i":3140875,"publisher":["Anne Carrière"],"author_key":["OL3965501A"],"author_name":["Mylène Farmer"],"id_goodreads":["1798646"],"id_librarything":["8398444"],"publisher_facet":["Anne Carrière"],"_version_":1697074596073701400,"lcc_sort":"PZ-0023.00000000.F245 L57 2003","author_facet":["OL3965501A Mylène Farmer"]}
{"key":"/works/OL10000458W","text":["/works/OL10000458W","Les Rivages de la lumière","OL12623771M","9782843372322","2843372321","Anne Carrière","OL3965502A","Jean-Marc Auclair"],"type":"work","seed":["/books/OL12623771M","/works/OL10000458W","/authors/OL3965502A"],"title":"Les Rivages de la lumière","title_suggest":["Les Rivages de la lumière"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623771M"],"publish_date":["June 27, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["9782843372322","2843372321"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623771M","cover_i":3140878,"publisher":["Anne Carrière"],"language":["fre"],"author_key":["OL3965502A"],"author_name":["Jean-Marc Auclair"],"publisher_facet":["Anne Carrière"],"_version_":1697074595611279400,"author_facet":["OL3965502A Jean-Marc Auclair"]}
{"key":"/works/OL10000459W","text":["/works/OL10000459W","Bob Marley de A à Z","OL12623777M","9782843430718","2843430712","L'Etudiant","OL3965503A","Hervé Guilleminot"],"type":"work","seed":["/books/OL12623777M","/works/OL10000459W","/authors/OL3965503A"],"title":"Bob Marley de A à Z","title_suggest":["Bob Marley de A à Z"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623777M"],"publish_date":["October 11, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782843430718","2843430712"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623777M","cover_i":3140884,"publisher":["L'Etudiant"],"author_key":["OL3965503A"],"author_name":["Hervé Guilleminot"],"publisher_facet":["L'Etudiant"],"_version_":1697074596609523700,"author_facet":["OL3965503A Hervé Guilleminot"]}
{"key":"/works/OL1000045W","text":["/works/OL1000045W","Brazen heiress","OL141049M","Elizabeth Boyle.","99611046","40504357","Copyright Paperback Collection (Library of Congress)","9780440226383","0440226384","brazenheiress00boyl_0","Dell","OL92935A","Elizabeth Boyle","France","Paris","Fiction","Spies","History","Accessible book","Protected DAISY","Directory, 1795-1799"],"type":"work","seed":["/books/OL141049M","/works/OL1000045W","/subjects/fiction","/subjects/spies","/subjects/history","/subjects/place:france","/subjects/place:paris","/subjects/time:directory_1795-1799","/authors/OL92935A"],"title":"Brazen heiress","title_suggest":["Brazen heiress"],"has_fulltext":true,"edition_count":1,"edition_key":["OL141049M"],"publish_date":["1999"],"publish_year":[1999],"first_publish_year":1999,"lccn":["99611046"],"publish_place":["New York, N.Y"],"oclc":["40504357"],"contributor":["Copyright Paperback Collection (Library of Congress)"],"lcc":["CPB0000.00000000.Box no. 1456 vol. 8"],"isbn":["9780440226383","0440226384"],"last_modified_i":1606979406,"ebook_count_i":1,"ia":["brazenheiress00boyl_0"],"public_scan_b":false,"ia_collection_s":"printdisabled;china;internetarchivebooks","printdisabled_s":"OL141049M","cover_edition_key":"OL141049M","cover_i":281065,"publisher":["Dell"],"language":["eng"],"author_key":["OL92935A"],"author_name":["Elizabeth Boyle"],"place":["France","Paris"],"subject":["Fiction","Spies","History","Accessible book","Protected DAISY"],"time":["Directory, 1795-1799"],"id_goodreads":["1858460"],"id_librarything":["77755"],"ia_box_id":["IA1158316"],"publisher_facet":["Dell"],"place_key":["france","paris"],"time_facet":["Directory, 1795-1799"],"subject_facet":["Accessible book","Fiction","History","Protected DAISY","Spies"],"_version_":1697074595471818800,"place_facet":["France","Paris"],"lcc_sort":"CPB0000.00000000.Box no. 1456 vol. 8","author_facet":["OL92935A Elizabeth Boyle"],"subject_key":["accessible_book","fiction","history","protected_daisy","spies"],"time_key":["directory_1795-1799"]}
{"key":"/works/OL10000460W","text":["/works/OL10000460W","David Bowie de A à Z","OL12623778M","9782843430725","2843430720","Prélude et Fugue","OL3965503A","Hervé Guilleminot"],"type":"work","seed":["/books/OL12623778M","/works/OL10000460W","/authors/OL3965503A"],"title":"David Bowie de A à Z","title_suggest":["David Bowie de A à Z"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623778M"],"publish_date":["October 11, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782843430725","2843430720"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623778M","cover_i":3140885,"publisher":["Prélude et Fugue"],"author_key":["OL3965503A"],"author_name":["Hervé Guilleminot"],"publisher_facet":["Prélude et Fugue"],"_version_":1697074595745497000,"author_facet":["OL3965503A Hervé Guilleminot"]}
{"key":"/works/OL10000461W","text":["/works/OL10000461W","Jazz","OL22729861M","Hervé Guilleminot, David Scrima.","Scrima, David.","2226143017","9782226143013","Albin Michel","OL3965503A","Hervé Guilleminot","Jazz","History and criticism","Biography","Jazz musicians"],"type":"work","seed":["/books/OL22729861M","/works/OL10000461W","/subjects/jazz","/subjects/history_and_criticism","/subjects/biography","/subjects/jazz_musicians","/authors/OL3965503A"],"title":"Jazz","title_suggest":["Jazz"],"has_fulltext":false,"edition_count":1,"edition_key":["OL22729861M"],"publish_date":["2004"],"publish_year":[2004],"first_publish_year":2004,"publish_place":["Paris"],"contributor":["Scrima, David."],"ddc":["780"],"isbn":["2226143017","9782226143013"],"last_modified_i":1279636588,"ebook_count_i":0,"publisher":["Albin Michel"],"language":["fre"],"author_key":["OL3965503A"],"author_name":["Hervé Guilleminot"],"subject":["Jazz","History and criticism","Biography","Jazz musicians"],"publisher_facet":["Albin Michel"],"subject_facet":["Biography","History and criticism","Jazz","Jazz musicians"],"_version_":1697074596669292500,"author_facet":["OL3965503A Hervé Guilleminot"],"subject_key":["biography","history_and_criticism","jazz","jazz_musicians"],"ddc_sort":"780"}
{"key":"/works/OL10000462W","text":["/works/OL10000462W","Texas de A à Z","OL12623804M","9782843431067","2843431069","L'Express Editions","OL3965503A","Hervé Guilleminot"],"type":"work","seed":["/books/OL12623804M","/works/OL10000462W","/authors/OL3965503A"],"title":"Texas de A à Z","title_suggest":["Texas de A à Z"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623804M"],"publish_date":["June 6, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843431067","2843431069"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623804M","cover_i":3140911,"publisher":["L'Express Editions"],"language":["fre"],"author_key":["OL3965503A"],"author_name":["Hervé Guilleminot"],"publisher_facet":["L'Express Editions"],"_version_":1697074596605329400,"author_facet":["OL3965503A Hervé Guilleminot"]}
{"key":"/works/OL10000463W","text":["/works/OL10000463W","U2 de A à Z","OL12623791M","422218229","2843430925","9782843430923","Prélude et Fugue","OL3965503A","Hervé Guilleminot"],"type":"work","seed":["/books/OL12623791M","/works/OL10000463W","/authors/OL3965503A"],"title":"U2 de A à Z","title_suggest":["U2 de A à Z"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623791M"],"publish_date":["April 5, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["422218229"],"isbn":["2843430925","9782843430923"],"last_modified_i":1303839791,"ebook_count_i":0,"cover_edition_key":"OL12623791M","cover_i":3140898,"publisher":["Prélude et Fugue"],"author_key":["OL3965503A"],"author_name":["Hervé Guilleminot"],"id_goodreads":["589592"],"publisher_facet":["Prélude et Fugue"],"_version_":1697074595875520500,"author_facet":["OL3965503A Hervé Guilleminot"]}
{"key":"/works/OL10000464W","text":["/works/OL10000464W","Madonna de A à Z","OL12623781M","2843430755","9782843430756","L'Etudiant","OL3965504A","Florence Rajon"],"type":"work","seed":["/books/OL12623781M","/works/OL10000464W","/authors/OL3965504A"],"title":"Madonna de A à Z","title_suggest":["Madonna de A à Z"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623781M"],"publish_date":["October 11, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2843430755","9782843430756"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623781M","cover_i":3140888,"publisher":["L'Etudiant"],"author_key":["OL3965504A"],"author_name":["Florence Rajon"],"id_goodreads":["2960065"],"publisher_facet":["L'Etudiant"],"_version_":1697074596329554000,"author_facet":["OL3965504A Florence Rajon"]}
{"key":"/works/OL10000465W","text":["/works/OL10000465W","Mylène Farmer de A à Z","OL12623786M","OL12623818M","402249194","422201315","2843430860","9782843430862","2843431379","9782843431371","Prélude et Fugue","Les guides Musicbook","OL3965504A","Florence Rajon"],"type":"work","seed":["/books/OL12623786M","/books/OL12623818M","/works/OL10000465W","/authors/OL3965504A"],"title":"Mylène Farmer de A à Z","title_suggest":["Mylène Farmer de A à Z"],"has_fulltext":false,"edition_count":2,"edition_key":["OL12623786M","OL12623818M"],"publish_date":["March 28, 2002","April 3, 2003"],"publish_year":[2003,2002],"first_publish_year":2002,"oclc":["402249194","422201315"],"isbn":["2843430860","9782843430862","2843431379","9782843431371"],"last_modified_i":1304152419,"ebook_count_i":0,"cover_edition_key":"OL12623818M","cover_i":3140925,"publisher":["Prélude et Fugue","Les guides Musicbook"],"language":["fre"],"author_key":["OL3965504A"],"author_name":["Florence Rajon"],"id_goodreads":["2960064","1798653"],"publisher_facet":["Les guides Musicbook","Prélude et Fugue"],"_version_":1697074596410294300,"author_facet":["OL3965504A Florence Rajon"]}
{"key":"/works/OL10000466W","text":["/works/OL10000466W","Radiohead de A à Z","OL12623782M","164291696","9782843430770","2843430771","L'Etudiant","OL3965506A","Pierre Loechner"],"type":"work","seed":["/books/OL12623782M","/works/OL10000466W","/authors/OL3965506A"],"title":"Radiohead de A à Z","title_suggest":["Radiohead de A à Z"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623782M"],"publish_date":["March 15, 2003"],"publish_year":[2003],"first_publish_year":2003,"oclc":["164291696"],"isbn":["9782843430770","2843430771"],"last_modified_i":1304171994,"ebook_count_i":0,"cover_edition_key":"OL12623782M","cover_i":3140889,"publisher":["L'Etudiant"],"language":["fre"],"author_key":["OL3965506A"],"author_name":["Pierre Loechner"],"publisher_facet":["L'Etudiant"],"_version_":1697074596364157000,"author_facet":["OL3965506A Pierre Loechner"]}
{"key":"/works/OL10000467W","text":["/works/OL10000467W","The Cure de A à Z","OL12623784M","9782843430794","2843430798","L'Etudiant","OL3965507A","Bertrand Dermoncourt"],"type":"work","seed":["/books/OL12623784M","/works/OL10000467W","/authors/OL3965507A"],"title":"The Cure de A à Z","title_suggest":["The Cure de A à Z"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623784M"],"publish_date":["October 11, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782843430794","2843430798"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623784M","cover_i":3140891,"publisher":["L'Etudiant"],"language":["fre"],"author_key":["OL3965507A"],"author_name":["Bertrand Dermoncourt"],"publisher_facet":["L'Etudiant"],"_version_":1697074595526344700,"author_facet":["OL3965507A Bertrand Dermoncourt"]}
{"key":"/works/OL10000468W","text":["/works/OL10000468W","Sonic Youth de A à Z","OL12623813M","2843431204","9782843431203","Prélude et Fugue","OL3965507A","Bertrand Dermoncourt"],"type":"work","seed":["/books/OL12623813M","/works/OL10000468W","/authors/OL3965507A"],"title":"Sonic Youth de A à Z","title_suggest":["Sonic Youth de A à Z"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623813M"],"publish_date":["November 21, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2843431204","9782843431203"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12623813M","cover_i":3140920,"publisher":["Prélude et Fugue"],"language":["fre"],"author_key":["OL3965507A"],"author_name":["Bertrand Dermoncourt"],"id_goodreads":["774347"],"id_librarything":["7980410"],"publisher_facet":["Prélude et Fugue"],"_version_":1697074596680827000,"author_facet":["OL3965507A Bertrand Dermoncourt"]}
{"key":"/works/OL10000469W","text":["/works/OL10000469W","Dimitri Chostakovitch","OL19921565M","OL21629758M","Bertrand Dermoncourt.","2006507711","274276366X","9782742763665","Actes sud","Actes Sud","OL3965507A","Bertrand Dermoncourt","Composers","Biography"],"type":"work","seed":["/books/OL19921565M","/books/OL21629758M","/works/OL10000469W","/subjects/composers","/subjects/biography","/authors/OL3965507A"],"title":"Dimitri Chostakovitch","title_suggest":["Dimitri Chostakovitch"],"has_fulltext":false,"edition_count":2,"edition_key":["OL19921565M","OL21629758M"],"publish_date":["2006"],"publish_year":[2006],"first_publish_year":2006,"lccn":["2006507711"],"publish_place":["Arles"],"lcc":["ML-0410.00000000.S53 D46 2006"],"ddc":["780"],"isbn":["274276366X","9782742763665"],"last_modified_i":1608160506,"ebook_count_i":0,"cover_edition_key":"OL19921565M","cover_i":8379558,"publisher":["Actes sud","Actes Sud"],"language":["fre"],"author_key":["OL3965507A"],"author_name":["Bertrand Dermoncourt"],"subject":["Composers","Biography"],"publisher_facet":["Actes Sud","Actes sud"],"subject_facet":["Biography","Composers"],"_version_":1697074596605329400,"lcc_sort":"ML-0410.00000000.S53 D46 2006","author_facet":["OL3965507A Bertrand Dermoncourt"],"subject_key":["biography","composers"],"ddc_sort":"780"}
{"key":"/works/OL1000046W","text":["/works/OL1000046W","Confessions of a Little Black Gown","Confessions of a little black gown","OL23207600M","OL24297195M","by Elizabeth Boyle.","2009014288","318672287","9780061799761","0061799769","0061799777","9781410417671","9780061799778","1410417670","confessionslittl00boyl_739","HarperCollins","Thorndike Press","OL92935A","Elizabeth Boyle","England","Aristocracy (Social class)","Fiction","Historical Fiction","Romance","Large type books","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL23207600M","/books/OL24297195M","/works/OL1000046W","/subjects/aristocracy_(social_class)","/subjects/fiction","/subjects/historical_fiction","/subjects/romance","/subjects/large_type_books","/subjects/place:england","/authors/OL92935A"],"title":"Confessions of a Little Black Gown","title_suggest":["Confessions of a Little Black Gown"],"has_fulltext":true,"edition_count":2,"edition_key":["OL23207600M","OL24297195M"],"publish_date":["2009"],"publish_year":[2009],"first_publish_year":2009,"lccn":["2009014288"],"publish_place":["Waterville, Me","New York"],"oclc":["318672287"],"lcc":["PS-3552.00000000.O923 C66 2009"],"ddc":["813.54"],"isbn":["9780061799761","0061799769","0061799777","9781410417671","9780061799778","1410417670"],"last_modified_i":1608681271,"ebook_count_i":1,"ia":["confessionslittl00boyl_739"],"public_scan_b":false,"ia_collection_s":"librarygenesis;printdisabled","printdisabled_s":"OL23207600M","cover_edition_key":"OL23207600M","cover_i":8632093,"publisher":["HarperCollins","Thorndike Press"],"language":["eng"],"author_key":["OL92935A"],"author_name":["Elizabeth Boyle"],"place":["England"],"subject":["Aristocracy (Social class)","Fiction","Historical Fiction","Romance","Large type books","Accessible book","Protected DAISY"],"id_goodreads":["6895663"],"id_librarything":["5672857"],"id_overdrive":["E7396165-9CDC-4E31-BD24-DE629DBED2C7"],"publisher_facet":["HarperCollins","Thorndike Press"],"place_key":["england"],"subject_facet":["Accessible book","Aristocracy (Social class)","Fiction","Historical Fiction","Large type books","Protected DAISY","Romance"],"_version_":1697074596177510400,"place_facet":["England"],"lcc_sort":"PS-3552.00000000.O923 C66 2009","author_facet":["OL92935A Elizabeth Boyle"],"subject_key":["accessible_book","aristocracy_(social_class)","fiction","historical_fiction","large_type_books","protected_daisy","romance"],"ddc_sort":"813.54"}
{"key":"/works/OL10000470W","text":["/works/OL10000470W","Ben Harper de A à Z","Benjamin Charles Harper","OL12623810M","402068553","9782843431166","2843431166","Express Editions","OL3965508A","Alexandre Latour"],"type":"work","seed":["/books/OL12623810M","/works/OL10000470W","/authors/OL3965508A"],"title":"Ben Harper de A à Z","title_suggest":["Ben Harper de A à Z"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623810M"],"publish_date":["March 15, 2003"],"publish_year":[2003],"first_publish_year":2003,"oclc":["402068553"],"isbn":["9782843431166","2843431166"],"last_modified_i":1307518863,"ebook_count_i":0,"cover_edition_key":"OL12623810M","cover_i":3140917,"publisher":["Express Editions"],"language":["fre"],"author_key":["OL3965508A"],"author_name":["Alexandre Latour"],"id_goodreads":["2036622"],"publisher_facet":["Express Editions"],"_version_":1697074596117741600,"author_facet":["OL3965508A Alexandre Latour"]}
{"key":"/works/OL10000471W","text":["/works/OL10000471W","Jamiroquaï de A à Z","OL12623803M","2843431050","9782843431050","L'Express Editions","OL3965508A","Alexandre Latour"],"type":"work","seed":["/books/OL12623803M","/works/OL10000471W","/authors/OL3965508A"],"title":"Jamiroquaï de A à Z","title_suggest":["Jamiroquaï de A à Z"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623803M"],"publish_date":["June 6, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2843431050","9782843431050"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623803M","cover_i":3140910,"publisher":["L'Express Editions"],"language":["fre"],"author_key":["OL3965508A"],"author_name":["Alexandre Latour"],"id_goodreads":["4994800"],"publisher_facet":["L'Express Editions"],"_version_":1697074596092575700,"author_facet":["OL3965508A Alexandre Latour"]}
{"key":"/works/OL10000472W","text":["/works/OL10000472W","Lenny Kravitz de A à Z","OL12623785M","9782843430855","2843430852","L'Etudiant","OL3965508A","Alexandre Latour"],"type":"work","seed":["/books/OL12623785M","/works/OL10000472W","/authors/OL3965508A"],"title":"Lenny Kravitz de A à Z","title_suggest":["Lenny Kravitz de A à Z"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623785M"],"publish_date":["March 21, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843430855","2843430852"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12623785M","cover_i":3140892,"publisher":["L'Etudiant"],"author_key":["OL3965508A"],"author_name":["Alexandre Latour"],"id_goodreads":["4994798"],"id_librarything":["7185482"],"publisher_facet":["L'Etudiant"],"_version_":1697074595628056600,"author_facet":["OL3965508A Alexandre Latour"]}
{"key":"/works/OL10000473W","text":["/works/OL10000473W","Santana","OL12623808M","401545339","9782843431111","2843431115","L'Express Editions","OL3965508A","Alexandre Latour"],"type":"work","seed":["/books/OL12623808M","/works/OL10000473W","/authors/OL3965508A"],"title":"Santana","title_suggest":["Santana"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623808M"],"publish_date":["September 12, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["401545339"],"isbn":["9782843431111","2843431115"],"last_modified_i":1303813100,"ebook_count_i":0,"cover_edition_key":"OL12623808M","cover_i":3140915,"publisher":["L'Express Editions"],"language":["fre"],"author_key":["OL3965508A"],"author_name":["Alexandre Latour"],"id_goodreads":["4994799"],"publisher_facet":["L'Express Editions"],"_version_":1697074595901735000,"author_facet":["OL3965508A Alexandre Latour"]}
{"key":"/works/OL10000474W","text":["/works/OL10000474W","Laurent garnier","OL12623787M","422217683","2843430879","9782843430879","L'Etudiant","OL3965509A","Engerhard"],"type":"work","seed":["/books/OL12623787M","/works/OL10000474W","/authors/OL3965509A"],"title":"Laurent garnier","title_suggest":["Laurent garnier"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623787M"],"publish_date":["March 14, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["422217683"],"isbn":["2843430879","9782843430879"],"last_modified_i":1304036063,"ebook_count_i":0,"cover_edition_key":"OL12623787M","cover_i":3140894,"publisher":["L'Etudiant"],"language":["fre"],"author_key":["OL3965509A"],"author_name":["Engerhard"],"id_goodreads":["2588360"],"id_librarything":["8458536"],"publisher_facet":["L'Etudiant"],"_version_":1697074596287611000,"author_facet":["OL3965509A Engerhard"]}
{"key":"/works/OL10000475W","text":["/works/OL10000475W","Dalf punk","OL12623788M","422217678","9782843430886","2843430887","L'Etudiant","OL3965510A","Crespy"],"type":"work","seed":["/books/OL12623788M","/works/OL10000475W","/authors/OL3965510A"],"title":"Dalf punk","title_suggest":["Dalf punk"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623788M"],"publish_date":["March 14, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["422217678"],"isbn":["9782843430886","2843430887"],"last_modified_i":1307492811,"ebook_count_i":0,"cover_edition_key":"OL12623788M","cover_i":3140895,"publisher":["L'Etudiant"],"author_key":["OL3965510A"],"author_name":["Crespy"],"id_librarything":["8458557"],"publisher_facet":["L'Etudiant"],"_version_":1697074596027564000,"author_facet":["OL3965510A Crespy"]}
{"key":"/works/OL10000476W","text":["/works/OL10000476W","100 CV et lettres de motivation pour tous les profils","OL18282031M","Dominique Perez avec la collaboration de Jacqueline Legeay.","42981661","Legeay, Jacqueline.","2867458552","9782867458552","L'Etudiant","OL3965512A","Dominique Perez"],"type":"work","seed":["/books/OL18282031M","/works/OL10000476W","/authors/OL3965512A"],"title":"100 CV et lettres de motivation pour tous les profils","title_suggest":["100 CV et lettres de motivation pour tous les profils"],"has_fulltext":false,"edition_count":1,"edition_key":["OL18282031M"],"publish_date":["1999"],"publish_year":[1999],"first_publish_year":1999,"publish_place":["Paris"],"oclc":["42981661"],"contributor":["Legeay, Jacqueline."],"isbn":["2867458552","9782867458552"],"last_modified_i":1303865250,"ebook_count_i":0,"publisher":["L'Etudiant"],"language":["fre"],"author_key":["OL3965512A"],"author_name":["Dominique Perez"],"publisher_facet":["L'Etudiant"],"_version_":1697074596112498700,"author_facet":["OL3965512A Dominique Perez"]}
{"key":"/works/OL10000477W","text":["/works/OL10000477W","Le guide du CV et de la lettre de motivation","OL12623794M","2843430968","9782843430961","L'Express Editions","OL3965512A","Dominique Perez"],"type":"work","seed":["/books/OL12623794M","/works/OL10000477W","/authors/OL3965512A"],"title":"Le guide du CV et de la lettre de motivation","title_suggest":["Le guide du CV et de la lettre de motivation"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623794M"],"publish_date":["March 27, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2843430968","9782843430961"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623794M","cover_i":3140901,"publisher":["L'Express Editions"],"language":["fre"],"author_key":["OL3965512A"],"author_name":["Dominique Perez"],"id_goodreads":["4152929"],"publisher_facet":["L'Express Editions"],"_version_":1697074596648321000,"author_facet":["OL3965512A Dominique Perez"]}
{"key":"/works/OL10000478W","text":["/works/OL10000478W","Bien se préparer aux oraux des concours administratifs","OL12626806M","401653631","2846242585","9782846242585","L'Etudiant","OL3965513A","Barbara Batard"],"type":"work","seed":["/books/OL12626806M","/works/OL10000478W","/authors/OL3965513A"],"title":"Bien se préparer aux oraux des concours administratifs","title_suggest":["Bien se préparer aux oraux des concours administratifs"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12626806M"],"publish_date":["October 31, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["401653631"],"isbn":["2846242585","9782846242585"],"last_modified_i":1307496139,"ebook_count_i":0,"cover_edition_key":"OL12626806M","cover_i":3143651,"publisher":["L'Etudiant"],"language":["fre"],"author_key":["OL3965513A"],"author_name":["Barbara Batard"],"id_goodreads":["5612598"],"id_librarything":["3747930"],"publisher_facet":["L'Etudiant"],"_version_":1697074596504666000,"author_facet":["OL3965513A Barbara Batard"]}
{"key":"/works/OL10000479W","text":["/works/OL10000479W","Guide du travail en intérim, édition 2003","OL12626805M","401537509","2846242569","9782846242561","L Etudiant","OL3965513A","Barbara Batard"],"type":"work","seed":["/books/OL12626805M","/works/OL10000479W","/authors/OL3965513A"],"title":"Guide du travail en intérim, édition 2003","title_suggest":["Guide du travail en intérim, édition 2003"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12626805M"],"publish_date":["September 12, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["401537509"],"isbn":["2846242569","9782846242561"],"last_modified_i":1304089408,"ebook_count_i":0,"cover_edition_key":"OL12626805M","cover_i":3143650,"publisher":["L Etudiant"],"language":["fre"],"author_key":["OL3965513A"],"author_name":["Barbara Batard"],"id_goodreads":["5612596"],"publisher_facet":["L Etudiant"],"_version_":1697074596241473500,"author_facet":["OL3965513A Barbara Batard"]}
{"key":"/works/OL1000047W","text":["/works/OL1000047W","Der Schwur der Liebe","Der Schwur der Liebe.","OL12688746M","76217327","3404182588","9783404182589","Lübbe","OL92935A","Elizabeth Boyle"],"type":"work","seed":["/books/OL12688746M","/works/OL1000047W","/authors/OL92935A"],"title":"Der Schwur der Liebe","title_suggest":["Der Schwur der Liebe"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12688746M"],"publish_date":["October 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["76217327"],"isbn":["3404182588","9783404182589"],"last_modified_i":1304129314,"ebook_count_i":0,"publisher":["Lübbe"],"author_key":["OL92935A"],"author_name":["Elizabeth Boyle"],"id_goodreads":["3007346"],"id_librarything":["77756"],"publisher_facet":["Lübbe"],"_version_":1697074595649028000,"author_facet":["OL92935A Elizabeth Boyle"]}
{"key":"/works/OL10000480W","text":["/works/OL10000480W","Réussir ses entretiens d'embauche","OL12623796M","9782843430985","2843430984","L'Express Editions","OL3965513A","Barbara Batard"],"type":"work","seed":["/books/OL12623796M","/works/OL10000480W","/authors/OL3965513A"],"title":"Réussir ses entretiens d'embauche","title_suggest":["Réussir ses entretiens d'embauche"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623796M"],"publish_date":["October 31, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843430985","2843430984"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623796M","cover_i":3140903,"publisher":["L'Express Editions"],"language":["fre"],"author_key":["OL3965513A"],"author_name":["Barbara Batard"],"id_goodreads":["5612599"],"publisher_facet":["L'Express Editions"],"_version_":1697074595532636200,"author_facet":["OL3965513A Barbara Batard"]}
{"key":"/works/OL10000481W","text":["/works/OL10000481W","Les Tests de recrutement","OL12623797M","9782843430992","2843430992","L'Express Editions","OL3965514A","Clothilde Hanoteau"],"type":"work","seed":["/books/OL12623797M","/works/OL10000481W","/authors/OL3965514A"],"title":"Les Tests de recrutement","title_suggest":["Les Tests de recrutement"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623797M"],"publish_date":["October 31, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843430992","2843430992"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12623797M","cover_i":3140904,"publisher":["L'Express Editions"],"author_key":["OL3965514A"],"author_name":["Clothilde Hanoteau"],"id_librarything":["5103857"],"publisher_facet":["L'Express Editions"],"_version_":1697074596471111700,"author_facet":["OL3965514A Clothilde Hanoteau"]}
{"key":"/works/OL10000482W","text":["/works/OL10000482W","Réussir les tests de sélection","OL22247821M","Clothilde Hanoteau","2843433762","9782843433764","L'Express","OL3965514A","Clothilde Hanoteau","Tests","Aptitude professionnelle","Personnalité"],"type":"work","seed":["/books/OL22247821M","/works/OL10000482W","/subjects/tests","/subjects/aptitude_professionnelle","/subjects/personnalité","/authors/OL3965514A"],"title":"Réussir les tests de sélection","title_suggest":["Réussir les tests de sélection"],"has_fulltext":false,"edition_count":1,"edition_key":["OL22247821M"],"publish_date":["2006"],"publish_year":[2006],"first_publish_year":2006,"publish_place":["Paris"],"isbn":["2843433762","9782843433764"],"last_modified_i":1279636588,"ebook_count_i":0,"publisher":["L'Express"],"language":["fre"],"author_key":["OL3965514A"],"author_name":["Clothilde Hanoteau"],"subject":["Tests","Aptitude professionnelle","Personnalité"],"publisher_facet":["L'Express"],"subject_facet":["Aptitude professionnelle","Personnalité","Tests"],"_version_":1697074596148150300,"author_facet":["OL3965514A Clothilde Hanoteau"],"subject_key":["aptitude_professionnelle","personnalité","tests"]}
{"key":"/works/OL10000483W","text":["/works/OL10000483W","Bruce Springsteen de A à Z","OL12623812M","401935587","2843431190","9782843431197","Prélude et Fugue","OL3965515A","Jean-Michel Oullion"],"type":"work","seed":["/books/OL12623812M","/works/OL10000483W","/authors/OL3965515A"],"title":"Bruce Springsteen de A à Z","title_suggest":["Bruce Springsteen de A à Z"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623812M"],"publish_date":["November 21, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["401935587"],"isbn":["2843431190","9782843431197"],"last_modified_i":1304111377,"ebook_count_i":0,"cover_edition_key":"OL12623812M","cover_i":3140919,"publisher":["Prélude et Fugue"],"language":["fre"],"author_key":["OL3965515A"],"author_name":["Jean-Michel Oullion"],"id_goodreads":["7282796"],"id_librarything":["8680808"],"publisher_facet":["Prélude et Fugue"],"_version_":1697074596638883800,"author_facet":["OL3965515A Jean-Michel Oullion"]}
{"key":"/works/OL10000484W","text":["/works/OL10000484W","Les métiers des jeux vidéo","OL12626772M","49869120","284624149X","9782846241496","L'Etudiant","OL3965515A","Jean-Michel Oullion"],"type":"work","seed":["/books/OL12626772M","/works/OL10000484W","/authors/OL3965515A"],"title":"Les métiers des jeux vidéo","title_suggest":["Les métiers des jeux vidéo"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12626772M"],"publish_date":["November 7, 2001"],"publish_year":[2001],"first_publish_year":2001,"oclc":["49869120"],"isbn":["284624149X","9782846241496"],"last_modified_i":1304161734,"ebook_count_i":0,"cover_edition_key":"OL12626772M","cover_i":3143617,"publisher":["L'Etudiant"],"author_key":["OL3965515A"],"author_name":["Jean-Michel Oullion"],"id_goodreads":["7282797"],"id_librarything":["4855194"],"publisher_facet":["L'Etudiant"],"_version_":1697074596491034600,"author_facet":["OL3965515A Jean-Michel Oullion"]}
{"key":"/works/OL10000485W","text":["/works/OL10000485W","Moby de a a z","OL12623798M","9782843431005","284343100X","Prélude et Fugue","OL3965515A","Jean-Michel Oullion"],"type":"work","seed":["/books/OL12623798M","/works/OL10000485W","/authors/OL3965515A"],"title":"Moby de a a z","title_suggest":["Moby de a a z"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623798M"],"publish_date":["April 25, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843431005","284343100X"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12623798M","cover_i":3140905,"publisher":["Prélude et Fugue"],"language":["fre"],"author_key":["OL3965515A"],"author_name":["Jean-Michel Oullion"],"id_goodreads":["7282795"],"id_librarything":["8458569"],"publisher_facet":["Prélude et Fugue"],"_version_":1697074596242522000,"author_facet":["OL3965515A Jean-Michel Oullion"]}
{"key":"/works/OL10000486W","text":["/works/OL10000486W","Korn de A à Z","OL12623799M","2843431018","9782843431012","Prélude et Fugue","OL3965516A","Sébastien Paquet"],"type":"work","seed":["/books/OL12623799M","/works/OL10000486W","/authors/OL3965516A"],"title":"Korn de A à Z","title_suggest":["Korn de A à Z"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623799M"],"publish_date":["May 1, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2843431018","9782843431012"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623799M","cover_i":3140906,"publisher":["Prélude et Fugue"],"language":["fre"],"author_key":["OL3965516A"],"author_name":["Sébastien Paquet"],"publisher_facet":["Prélude et Fugue"],"_version_":1697074596665098200,"author_facet":["OL3965516A Sébastien Paquet"]}
{"key":"/works/OL10000487W","text":["/works/OL10000487W","Britney Spears de A à Z","OL12623800M","9782843431029","2843431026","Prélude et Fugue","OL3965517A","Jérôme Reijasse"],"type":"work","seed":["/books/OL12623800M","/works/OL10000487W","/authors/OL3965517A"],"title":"Britney Spears de A à Z","title_suggest":["Britney Spears de A à Z"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623800M"],"publish_date":["May 15, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843431029","2843431026"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623800M","cover_i":3140907,"publisher":["Prélude et Fugue"],"author_key":["OL3965517A"],"author_name":["Jérôme Reijasse"],"id_goodreads":["1071698"],"publisher_facet":["Prélude et Fugue"],"_version_":1697074596586455000,"author_facet":["OL3965517A Jérôme Reijasse"]}
{"key":"/works/OL10000488W","text":["/works/OL10000488W","Linkin Park","Linkin Park ","De A à Z","OL12623831M","9782843431579","2843431573","Prélude et Fugue","OL3965518A","Charlotte Blum"],"type":"work","seed":["/books/OL12623831M","/works/OL10000488W","/authors/OL3965518A"],"title":"Linkin Park","title_suggest":["Linkin Park"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623831M"],"publish_date":["June 5, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["9782843431579","2843431573"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623831M","cover_i":3140937,"publisher":["Prélude et Fugue"],"language":["fre"],"author_key":["OL3965518A"],"author_name":["Charlotte Blum"],"id_goodreads":["231054"],"publisher_facet":["Prélude et Fugue"],"_version_":1697074595494887400,"author_facet":["OL3965518A Charlotte Blum"]}
{"key":"/works/OL10000489W","text":["/works/OL10000489W","Marilyn Manson de A à Z","OL12623805M","2843431077","9782843431074","L'Express Editions","OL3965518A","Charlotte Blum"],"type":"work","seed":["/books/OL12623805M","/works/OL10000489W","/authors/OL3965518A"],"title":"Marilyn Manson de A à Z","title_suggest":["Marilyn Manson de A à Z"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623805M"],"publish_date":["June 6, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2843431077","9782843431074"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623805M","cover_i":3140912,"publisher":["L'Express Editions"],"language":["fre"],"author_key":["OL3965518A"],"author_name":["Charlotte Blum"],"id_goodreads":["1162272"],"publisher_facet":["L'Express Editions"],"_version_":1697074596673486800,"author_facet":["OL3965518A Charlotte Blum"]}
{"key":"/works/OL1000048W","text":["/works/OL1000048W","Embroidery and lacemaking in Ulster","Embroidery and lacemaking in Ulster.","OL17272567M","OL92935A","Elizabeth Boyle"],"type":"work","seed":["/books/OL17272567M","/works/OL1000048W","/authors/OL92935A"],"title":"Embroidery and lacemaking in Ulster","title_suggest":["Embroidery and lacemaking in Ulster"],"has_fulltext":false,"edition_count":1,"edition_key":["OL17272567M"],"publish_date":["1964"],"publish_year":[1964],"first_publish_year":1964,"publish_place":["Belfast"],"last_modified_i":1260385408,"ebook_count_i":0,"language":["eng"],"author_key":["OL92935A"],"author_name":["Elizabeth Boyle"],"_version_":1697074596281319400,"author_facet":["OL92935A Elizabeth Boyle"]}
{"key":"/works/OL10000490W","text":["/works/OL10000490W","Slipknot de A à Z","OL12623811M","401935620","9782843431173","2843431174","L'Express Editions","OL3965519A","Nicolas Brun"],"type":"work","seed":["/books/OL12623811M","/works/OL10000490W","/authors/OL3965519A"],"title":"Slipknot de A à Z","title_suggest":["Slipknot de A à Z"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623811M"],"publish_date":["October 24, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["401935620"],"isbn":["9782843431173","2843431174"],"last_modified_i":1303769872,"ebook_count_i":0,"cover_edition_key":"OL12623811M","cover_i":3140918,"publisher":["L'Express Editions"],"language":["fre"],"author_key":["OL3965519A"],"author_name":["Nicolas Brun"],"id_goodreads":["5931862"],"publisher_facet":["L'Express Editions"],"_version_":1697074596222599200,"author_facet":["OL3965519A Nicolas Brun"]}
{"key":"/works/OL10000491W","text":["/works/OL10000491W","Le Guide des concours de la fonction publique 2003","OL12623819M","9782843431401","2843431409","Express Editions","OL3965520A","Olivia Marquis"],"type":"work","seed":["/books/OL12623819M","/works/OL10000491W","/authors/OL3965520A"],"title":"Le Guide des concours de la fonction publique 2003","title_suggest":["Le Guide des concours de la fonction publique 2003"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623819M"],"publish_date":["May 15, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["9782843431401","2843431409"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623819M","cover_i":3140926,"publisher":["Express Editions"],"language":["fre"],"author_key":["OL3965520A"],"author_name":["Olivia Marquis"],"id_goodreads":["1020377"],"publisher_facet":["Express Editions"],"_version_":1697074596102013000,"author_facet":["OL3965520A Olivia Marquis"]}
{"key":"/works/OL10000492W","text":["/works/OL10000492W","Florent Pagny","de A à Z","OL19374644M","Delphine Soan.","57690642","9782843431968","2843431964","Prélude et fugue","OL3965521A","Delphine Sloan","Florent Pagny","France","Singers","Biographt"],"type":"work","seed":["/books/OL19374644M","/works/OL10000492W","/subjects/singers","/subjects/biographt","/subjects/person:florent_pagny","/subjects/place:france","/authors/OL3965521A"],"title":"Florent Pagny","title_suggest":["Florent Pagny"],"has_fulltext":false,"edition_count":1,"edition_key":["OL19374644M"],"publish_date":["2004"],"publish_year":[2004],"first_publish_year":2004,"publish_place":["Paris"],"oclc":["57690642"],"isbn":["9782843431968","2843431964"],"last_modified_i":1303838308,"ebook_count_i":0,"publisher":["Prélude et fugue"],"language":["fre"],"author_key":["OL3965521A"],"author_name":["Delphine Sloan"],"person":["Florent Pagny"],"place":["France"],"subject":["Singers","Biographt"],"publisher_facet":["Prélude et fugue"],"person_key":["florent_pagny"],"place_key":["france"],"person_facet":["Florent Pagny"],"subject_facet":["Biographt","Singers"],"_version_":1697074596513054700,"place_facet":["France"],"author_facet":["OL3965521A Delphine Sloan"],"subject_key":["biographt","singers"]}
{"key":"/works/OL10000493W","text":["/works/OL10000493W","IAM de A à Z","OL12623821M","314515318","284343145X","9782843431456","Prélude et Fugue","OL3965521A","Delphine Sloan"],"type":"work","seed":["/books/OL12623821M","/works/OL10000493W","/authors/OL3965521A"],"title":"IAM de A à Z","title_suggest":["IAM de A à Z"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623821M"],"publish_date":["May 22, 2003"],"publish_year":[2003],"first_publish_year":2003,"oclc":["314515318"],"isbn":["284343145X","9782843431456"],"last_modified_i":1304024236,"ebook_count_i":0,"cover_edition_key":"OL12623821M","cover_i":3140927,"publisher":["Prélude et Fugue"],"language":["fre"],"author_key":["OL3965521A"],"author_name":["Delphine Sloan"],"id_goodreads":["7294435"],"id_librarything":["4343214"],"publisher_facet":["Prélude et Fugue"],"_version_":1697074596326408200,"author_facet":["OL3965521A Delphine Sloan"]}
{"key":"/works/OL10000494W","text":["/works/OL10000494W","Lorie de A à Z","OL12623822M","9782843431463","2843431468","Prélude et Fugue","OL3965522A","Julie Avril"],"type":"work","seed":["/books/OL12623822M","/works/OL10000494W","/authors/OL3965522A"],"title":"Lorie de A à Z","title_suggest":["Lorie de A à Z"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623822M"],"publish_date":["May 22, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["9782843431463","2843431468"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623822M","cover_i":3140928,"publisher":["Prélude et Fugue"],"language":["fre"],"author_key":["OL3965522A"],"author_name":["Julie Avril"],"publisher_facet":["Prélude et Fugue"],"_version_":1697074596088381400,"author_facet":["OL3965522A Julie Avril"]}
{"key":"/works/OL10000495W","text":["/works/OL10000495W","Indochine","OL12623830M","2843431565","9782843431562","Prélude et Fugue","OL3965523A","Sébastien Bataille"],"type":"work","seed":["/books/OL12623830M","/works/OL10000495W","/authors/OL3965523A"],"title":"Indochine","title_suggest":["Indochine"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623830M"],"publish_date":["May 22, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["2843431565","9782843431562"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12623830M","cover_i":3140936,"publisher":["Prélude et Fugue"],"language":["fre"],"author_key":["OL3965523A"],"author_name":["Sébastien Bataille"],"id_librarything":["9706804"],"publisher_facet":["Prélude et Fugue"],"_version_":1697074595678388200,"author_facet":["OL3965523A Sébastien Bataille"]}
{"key":"/works/OL10000496W","text":["/works/OL10000496W","En quarantaine","OL16654441M","Vincent Brunner, Christophe Miossec.","2007485454","Miossec, Christophe.","208068955X","9782080689559","Flammarion","OL3965526A","Vincent Brunner","Christophe Miossec","France","Singers","Interviews","Rock musicians","Biography"],"type":"work","seed":["/books/OL16654441M","/works/OL10000496W","/subjects/singers","/subjects/interviews","/subjects/rock_musicians","/subjects/biography","/subjects/person:christophe_miossec","/subjects/place:france","/authors/OL3965526A"],"title":"En quarantaine","title_suggest":["En quarantaine"],"has_fulltext":false,"edition_count":1,"edition_key":["OL16654441M"],"publish_date":["2007"],"publish_year":[2007],"first_publish_year":2007,"lccn":["2007485454"],"publish_place":["Paris"],"contributor":["Miossec, Christophe."],"lcc":["ML-0420.00000000.M528 B78 2007"],"isbn":["208068955X","9782080689559"],"last_modified_i":1608401989,"ebook_count_i":0,"publisher":["Flammarion"],"language":["fre"],"author_key":["OL3965526A"],"author_name":["Vincent Brunner"],"person":["Christophe Miossec"],"place":["France"],"subject":["Singers","Interviews","Rock musicians","Biography"],"id_goodreads":["7056241"],"publisher_facet":["Flammarion"],"person_key":["christophe_miossec"],"place_key":["france"],"person_facet":["Christophe Miossec"],"subject_facet":["Biography","Interviews","Rock musicians","Singers"],"_version_":1697074596075798500,"place_facet":["France"],"lcc_sort":"ML-0420.00000000.M528 B78 2007","author_facet":["OL3965526A Vincent Brunner"],"subject_key":["biography","interviews","rock_musicians","singers"]}
{"key":"/works/OL10000497W","text":["/works/OL10000497W","France et Chine","vie publique et privée des Chinois anciens et modernes, passé et avenir de la France dans l'Extrême Orient","OL16408367M","par O. Girard.","L. Hachette","OL3965530A","Olivier Girard","China","Civilization","Description and travel"],"type":"work","seed":["/books/OL16408367M","/works/OL10000497W","/subjects/civilization","/subjects/description_and_travel","/subjects/place:china","/authors/OL3965530A"],"title":"France et Chine","title_suggest":["France et Chine"],"has_fulltext":false,"edition_count":1,"edition_key":["OL16408367M"],"publish_date":["1870"],"publish_year":[1870],"first_publish_year":1870,"publish_place":["Paris"],"last_modified_i":1279636588,"ebook_count_i":0,"publisher":["L. Hachette"],"language":["fre"],"author_key":["OL3965530A"],"author_name":["Olivier Girard"],"place":["China"],"subject":["Civilization","Description and travel"],"publisher_facet":["L. Hachette"],"place_key":["china"],"subject_facet":["Civilization","Description and travel"],"_version_":1697074596088381400,"place_facet":["China"],"author_facet":["OL3965530A Olivier Girard"],"subject_key":["civilization","description_and_travel"]}
{"key":"/works/OL10000498W","text":["/works/OL10000498W","Leurs quatre vérités","Leurs quatre vérités.","OL15245115M","9782862420042","2862420042","Stanké","OL3965530A","Olivier Girard"],"type":"work","seed":["/books/OL15245115M","/works/OL10000498W","/authors/OL3965530A"],"title":"Leurs quatre vérités","title_suggest":["Leurs quatre vérités"],"has_fulltext":false,"edition_count":1,"edition_key":["OL15245115M"],"publish_date":["1977"],"publish_year":[1977],"first_publish_year":1977,"publish_place":["Ottawa"],"ddc":["320.944083"],"isbn":["9782862420042","2862420042"],"last_modified_i":1260844699,"ebook_count_i":0,"publisher":["Stanké"],"language":["fre"],"author_key":["OL3965530A"],"author_name":["Olivier Girard"],"publisher_facet":["Stanké"],"_version_":1697074596604280800,"author_facet":["OL3965530A Olivier Girard"],"ddc_sort":"320.944083"}
{"key":"/works/OL10000499W","text":["/works/OL10000499W","Stairways to hell","OL12623836M","2843440432","9782843440434","Du Belial","OL3965530A","Olivier Girard"],"type":"work","seed":["/books/OL12623836M","/works/OL10000499W","/authors/OL3965530A"],"title":"Stairways to hell","title_suggest":["Stairways to hell"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623836M"],"publish_date":["October 4, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2843440432","9782843440434"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12623836M","cover_i":3140941,"publisher":["Du Belial"],"author_key":["OL3965530A"],"author_name":["Olivier Girard"],"id_goodreads":["113534"],"id_librarything":["3359698"],"publisher_facet":["Du Belial"],"_version_":1697074596173316000,"author_facet":["OL3965530A Olivier Girard"]}
{"key":"/works/OL1000049W","text":["/works/OL1000049W","Geliebter Schurke","Geliebter Schurke.","OL12688798M","9783404186402","3404186400","Lübbe","OL92935A","Elizabeth Boyle"],"type":"work","seed":["/books/OL12688798M","/works/OL1000049W","/authors/OL92935A"],"title":"Geliebter Schurke","title_suggest":["Geliebter Schurke"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12688798M"],"publish_date":["November 1, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9783404186402","3404186400"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12688798M","cover_i":3182639,"publisher":["Lübbe"],"author_key":["OL92935A"],"author_name":["Elizabeth Boyle"],"publisher_facet":["Lübbe"],"_version_":1697074596739547100,"author_facet":["OL92935A Elizabeth Boyle"]}
{"key":"/works/OL100004W","text":["/works/OL100004W","Last lessons of summer","OL3684514M","OL23247365M","OL3690260M","Margaret Maron.","2003045924","2003059276","51855576","9780892967803","0892967803","9780754077305","9780786258499","9780754077312","0754077306","0786258497","0754077314","lastlessonsofsum00maro","lastlessonsofsum00maro_0","Thorndike Press","Mysterious Press","OL3326443A","Margaret Maron","Margaret Maron","Maron, Margaret","MARGARET MARON","North Carolina","Summer","Death","Family-owned business enterprises","Mothers","Grandmothers","Fiction","Mystery fiction","Inheritance and succession","Women","Large type books","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL3684514M","/books/OL23247365M","/books/OL3690260M","/works/OL100004W","/subjects/summer","/subjects/death","/subjects/family-owned_business_enterprises","/subjects/mothers","/subjects/grandmothers","/subjects/fiction","/subjects/mystery_fiction","/subjects/inheritance_and_succession","/subjects/women","/subjects/large_type_books","/subjects/place:north_carolina","/authors/OL3326443A"],"title":"Last lessons of summer","title_suggest":["Last lessons of summer"],"has_fulltext":true,"edition_count":3,"edition_key":["OL3684514M","OL23247365M","OL3690260M"],"publish_date":["2003"],"publish_year":[2003],"first_publish_year":2003,"lccn":["2003045924","2003059276"],"publish_place":["Waterville, Me","New York"],"oclc":["51855576"],"lcc":["PS-3563.00000000.A679 L37 2003","PS-3563.00000000.A679 L37 2003b"],"ddc":["813.54"],"isbn":["9780892967803","0892967803","9780754077305","9780786258499","9780754077312","0754077306","0786258497","0754077314"],"last_modified_i":1607395261,"ebook_count_i":2,"ia":["lastlessonsofsum00maro","lastlessonsofsum00maro_0"],"public_scan_b":false,"ia_collection_s":"americana;china;universityofarizona-ol;inlibrary;delawarecountydistrictlibrary;printdisabled;hamiltonpubliclibrary-ol;library_of_atlantis;internetarchivebooks;delawarecountydistrictlibrary-ol","lending_edition_s":"OL23247365M","lending_identifier_s":"lastlessonsofsum00maro","printdisabled_s":"OL23247365M;OL3690260M","cover_edition_key":"OL3684514M","cover_i":691957,"publisher":["Thorndike Press","Mysterious Press"],"language":["eng"],"author_key":["OL3326443A"],"author_name":["Margaret Maron"],"author_alternative_name":["Margaret Maron","Maron, Margaret","MARGARET MARON"],"place":["North Carolina"],"subject":["Summer","Death","Family-owned business enterprises","Mothers","Grandmothers","Fiction","Mystery fiction","Inheritance and succession","Women","Large type books","Accessible book","Protected DAISY"],"id_goodreads":["1843783"],"id_librarything":["171818"],"ia_loaded_id":["lastlessonsofsum00maro_0"],"ia_box_id":["IA117513","IA178401"],"publisher_facet":["Mysterious Press","Thorndike Press"],"place_key":["north_carolina"],"subject_facet":["Accessible book","Death","Family-owned business enterprises","Fiction","Grandmothers","Inheritance and succession","Large type books","Mothers","Mystery fiction","Protected DAISY","Summer","Women"],"_version_":1697074596138713000,"place_facet":["North Carolina"],"lcc_sort":"PS-3563.00000000.A679 L37 2003b","author_facet":["OL3326443A Margaret Maron"],"subject_key":["accessible_book","death","family-owned_business_enterprises","fiction","grandmothers","inheritance_and_succession","large_type_books","mothers","mystery_fiction","protected_daisy","summer","women"],"ddc_sort":"813.54"}
{"key":"/works/OL10000500W","text":["/works/OL10000500W","Où vas-tu Irlande ?","OL12623837M","2843460417","9782843460418","Breizh","OL3965531A","Dominique Le Meur"],"type":"work","seed":["/books/OL12623837M","/works/OL10000500W","/authors/OL3965531A"],"title":"Où vas-tu Irlande ?","title_suggest":["Où vas-tu Irlande ?"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623837M"],"publish_date":["January 1, 1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["2843460417","9782843460418"],"last_modified_i":1260840403,"ebook_count_i":0,"publisher":["Breizh"],"author_key":["OL3965531A"],"author_name":["Dominique Le Meur"],"publisher_facet":["Breizh"],"_version_":1697074595564093400,"author_facet":["OL3965531A Dominique Le Meur"]}
{"key":"/works/OL10000501W","text":["/works/OL10000501W","La Belgique","OL12623838M","470227514","9782843500206","2843500206","Romain Pagès","OL3965532A","Catherine Ferrière"],"type":"work","seed":["/books/OL12623838M","/works/OL10000501W","/authors/OL3965532A"],"title":"La Belgique","title_suggest":["La Belgique"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623838M"],"publish_date":["June 1, 1999"],"publish_year":[1999],"first_publish_year":1999,"oclc":["470227514"],"isbn":["9782843500206","2843500206"],"last_modified_i":1307507807,"ebook_count_i":0,"cover_edition_key":"OL12623838M","cover_i":3140942,"publisher":["Romain Pagès"],"author_key":["OL3965532A"],"author_name":["Catherine Ferrière"],"publisher_facet":["Romain Pagès"],"_version_":1697074595945775000,"author_facet":["OL3965532A Catherine Ferrière"]}
{"key":"/works/OL10000502W","text":["/works/OL10000502W","Salades","OL12623841M","9782843500336","2843500338","Romain Pagès","OL3965537A","C. Ferrière"],"type":"work","seed":["/books/OL12623841M","/works/OL10000502W","/authors/OL3965537A"],"title":"Salades","title_suggest":["Salades"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623841M"],"publish_date":["May 26, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782843500336","2843500338"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623841M","cover_i":3140945,"publisher":["Romain Pagès"],"language":["fre"],"author_key":["OL3965537A"],"author_name":["C. Ferrière"],"publisher_facet":["Romain Pagès"],"_version_":1697074595966746600,"author_facet":["OL3965537A C. Ferrière"]}
{"key":"/works/OL10000503W","text":["/works/OL10000503W","Québec","OL12623845M","2843500583","9782843500589","Romain Pagès","OL3965542A","l. Cocherel"],"type":"work","seed":["/books/OL12623845M","/works/OL10000503W","/authors/OL3965542A"],"title":"Québec","title_suggest":["Québec"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623845M"],"publish_date":["September 13, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2843500583","9782843500589"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623845M","cover_i":3140949,"publisher":["Romain Pagès"],"author_key":["OL3965542A"],"author_name":["l. Cocherel"],"publisher_facet":["Romain Pagès"],"_version_":1697074595836723200,"author_facet":["OL3965542A l. Cocherel"]}
{"key":"/works/OL10000504W","text":["/works/OL10000504W","Guide des chambres et maisons d'hôtes en Toscane","OL12623846M","470228032","2843500613","9782843500619","Romain Pagès","OL3965543A","A. Melan"],"type":"work","seed":["/books/OL12623846M","/works/OL10000504W","/authors/OL3965543A"],"title":"Guide des chambres et maisons d'hôtes en Toscane","title_suggest":["Guide des chambres et maisons d'hôtes en Toscane"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623846M"],"publish_date":["May 4, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["470228032"],"isbn":["2843500613","9782843500619"],"last_modified_i":1304048529,"ebook_count_i":0,"cover_edition_key":"OL12623846M","cover_i":3140950,"publisher":["Romain Pagès"],"language":["fre"],"author_key":["OL3965543A"],"author_name":["A. Melan"],"id_goodreads":["2401083"],"publisher_facet":["Romain Pagès"],"_version_":1697074596361011200,"author_facet":["OL3965543A A. Melan"]}
{"key":"/works/OL10000505W","text":["/works/OL10000505W","Sud de la France","OL12623847M","2843500729","9782843500725","Romain Pagès","OL3965544A","Catherine Leclère-Ferrière"],"type":"work","seed":["/books/OL12623847M","/works/OL10000505W","/authors/OL3965544A"],"title":"Sud de la France","title_suggest":["Sud de la France"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623847M"],"publish_date":["March 29, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2843500729","9782843500725"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623847M","cover_i":3140951,"publisher":["Romain Pagès"],"language":["fre"],"author_key":["OL3965544A"],"author_name":["Catherine Leclère-Ferrière"],"id_goodreads":["2452336"],"publisher_facet":["Romain Pagès"],"_version_":1697074596411342800,"author_facet":["OL3965544A Catherine Leclère-Ferrière"]}
{"key":"/works/OL10000506W","text":["/works/OL10000506W","L'Alchimie de la guérison, tome 1","OL12623851M","422249875","2843530156","9782843530159","Centre Anahata","OL3965545A","Piotr Phenix"],"type":"work","seed":["/books/OL12623851M","/works/OL10000506W","/authors/OL3965545A"],"title":"L'Alchimie de la guérison, tome 1","title_suggest":["L'Alchimie de la guérison, tome 1"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623851M"],"publish_date":["August 15, 1997"],"publish_year":[1997],"first_publish_year":1997,"oclc":["422249875"],"isbn":["2843530156","9782843530159"],"last_modified_i":1303959159,"ebook_count_i":0,"cover_edition_key":"OL12623851M","cover_i":3140955,"publisher":["Centre Anahata"],"author_key":["OL3965545A"],"author_name":["Piotr Phenix"],"id_goodreads":["6046238"],"publisher_facet":["Centre Anahata"],"_version_":1697074595831480300,"author_facet":["OL3965545A Piotr Phenix"]}
{"key":"/works/OL10000507W","text":["/works/OL10000507W","L'Alchimie de la guérison, tome 2","OL12623852M","2843530164","9782843530166","Centre Anahata","OL3965546A","Piotr Phénix"],"type":"work","seed":["/books/OL12623852M","/works/OL10000507W","/authors/OL3965546A"],"title":"L'Alchimie de la guérison, tome 2","title_suggest":["L'Alchimie de la guérison, tome 2"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623852M"],"publish_date":["August 1, 1997"],"publish_year":[1997],"first_publish_year":1997,"isbn":["2843530164","9782843530166"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623852M","cover_i":3140956,"publisher":["Centre Anahata"],"language":["fre"],"author_key":["OL3965546A"],"author_name":["Piotr Phénix"],"publisher_facet":["Centre Anahata"],"_version_":1697074596557095000,"author_facet":["OL3965546A Piotr Phénix"]}
{"key":"/works/OL10000508W","text":["/works/OL10000508W","Echocardiographie transoesophagienne en anesthésie-réanimation","OL12623864M","38050424","9782843600043","2843600049","Pradel","OL3965547A","Bettex"],"type":"work","seed":["/books/OL12623864M","/works/OL10000508W","/authors/OL3965547A"],"title":"Echocardiographie transoesophagienne en anesthésie-réanimation","title_suggest":["Echocardiographie transoesophagienne en anesthésie-réanimation"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623864M"],"publish_date":["June 8, 1999"],"publish_year":[1999],"first_publish_year":1999,"oclc":["38050424"],"isbn":["9782843600043","2843600049"],"last_modified_i":1304116435,"ebook_count_i":0,"cover_edition_key":"OL12623864M","cover_i":3140962,"publisher":["Pradel"],"author_key":["OL3965547A"],"author_name":["Bettex"],"publisher_facet":["Pradel"],"_version_":1697074596234133500,"author_facet":["OL3965547A Bettex"]}
{"key":"/works/OL10000509W","text":["/works/OL10000509W","Intubation and the Upper Airway","Intubation and the upper airway","[symposium, Bordeaux], 26-27 June, 1997","OL21348129M","OL12623865M","[ed. by Anne-Marie Cros].","Cros, Anne-Marie.","2843600081","9782843600081","Williams and Wilkins (Europe) Ltd","Pradel","OL3965548A","Anne-Marie Cros"],"type":"work","seed":["/books/OL21348129M","/books/OL12623865M","/works/OL10000509W","/authors/OL3965548A"],"title":"Intubation and the Upper Airway","title_suggest":["Intubation and the Upper Airway"],"has_fulltext":false,"edition_count":2,"edition_key":["OL21348129M","OL12623865M"],"publish_date":["July 1997","1997"],"publish_year":[1997],"first_publish_year":1997,"publish_place":["Paris"],"contributor":["Cros, Anne-Marie."],"lcc":["RF-0517.00000000.I6 1997"],"ddc":["610"],"isbn":["2843600081","9782843600081"],"last_modified_i":1564587298,"ebook_count_i":0,"cover_edition_key":"OL12623865M","cover_i":3140963,"publisher":["Williams and Wilkins (Europe) Ltd","Pradel"],"language":["eng"],"author_key":["OL3965548A"],"author_name":["Anne-Marie Cros"],"publisher_facet":["Pradel","Williams and Wilkins (Europe) Ltd"],"_version_":1697074595846160400,"lcc_sort":"RF-0517.00000000.I6 1997","author_facet":["OL3965548A Anne-Marie Cros"],"ddc_sort":"610"}
{"key":"/works/OL1000050W","text":["/works/OL1000050W","The Irish flowerers","The Irish flowerers.","OL5023283M","76868975","9780902588011","090258801X","Queen's University (Institute of Irish Studies)","Ulster Folk Museum","OL92935A","Elizabeth Boyle","Ireland","History","Lace industry","Embroidery","Lace and lace making"],"type":"work","seed":["/books/OL5023283M","/works/OL1000050W","/subjects/history","/subjects/lace_industry","/subjects/embroidery","/subjects/lace_and_lace_making","/subjects/place:ireland","/authors/OL92935A"],"title":"The Irish flowerers","title_suggest":["The Irish flowerers"],"has_fulltext":false,"edition_count":1,"edition_key":["OL5023283M"],"publish_date":["1971"],"publish_year":[1971],"first_publish_year":1971,"lccn":["76868975"],"publish_place":["Holywood (Cultra Manor, Holywood, Co. Down)","Belfast"],"lcc":["HD-9935.00000000.I72 B6"],"ddc":["338.477464409415"],"isbn":["9780902588011","090258801X"],"last_modified_i":1602551291,"ebook_count_i":0,"publisher":["Queen's University (Institute of Irish Studies)","Ulster Folk Museum"],"language":["eng"],"author_key":["OL92935A"],"author_name":["Elizabeth Boyle"],"place":["Ireland"],"subject":["History","Lace industry","Embroidery","Lace and lace making"],"id_goodreads":["3526728"],"publisher_facet":["Queen's University (Institute of Irish Studies)","Ulster Folk Museum"],"place_key":["ireland"],"subject_facet":["Embroidery","History","Lace and lace making","Lace industry"],"_version_":1697074596156539000,"place_facet":["Ireland"],"lcc_sort":"HD-9935.00000000.I72 B6","author_facet":["OL92935A Elizabeth Boyle"],"subject_key":["embroidery","history","lace_and_lace_making","lace_industry"],"ddc_sort":"338.477464409415"}
{"key":"/works/OL10000510W","text":["/works/OL10000510W","Principes de médecine manuelle","OL12623866M","40778470","9782843600241","2843600243","Pradel","OL3965549A","Greenman"],"type":"work","seed":["/books/OL12623866M","/works/OL10000510W","/authors/OL3965549A"],"title":"Principes de médecine manuelle","title_suggest":["Principes de médecine manuelle"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623866M"],"publish_date":["October 13, 1998"],"publish_year":[1998],"first_publish_year":1998,"oclc":["40778470"],"isbn":["9782843600241","2843600243"],"last_modified_i":1303884661,"ebook_count_i":0,"cover_edition_key":"OL12623866M","cover_i":3140964,"publisher":["Pradel"],"author_key":["OL3965549A"],"author_name":["Greenman"],"publisher_facet":["Pradel"],"_version_":1697074596575969300,"author_facet":["OL3965549A Greenman"]}
{"key":"/works/OL10000511W","text":["/works/OL10000511W","Examen clinique de l'enfant","Comment recueillir l'anamnèse et examiner un enfant","OL12623869M","40136409","9782843600289","2843600286","Pradel","OL3965551A","Algranati"],"type":"work","seed":["/books/OL12623869M","/works/OL10000511W","/authors/OL3965551A"],"title":"Examen clinique de l'enfant","title_suggest":["Examen clinique de l'enfant"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623869M"],"publish_date":["July 10, 1998"],"publish_year":[1998],"first_publish_year":1998,"oclc":["40136409"],"isbn":["9782843600289","2843600286"],"last_modified_i":1307528041,"ebook_count_i":0,"cover_edition_key":"OL12623869M","cover_i":3140967,"publisher":["Pradel"],"author_key":["OL3965551A"],"author_name":["Algranati"],"id_goodreads":["6182419"],"publisher_facet":["Pradel"],"_version_":1697074596229939200,"author_facet":["OL3965551A Algranati"]}
{"key":"/works/OL10000512W","text":["/works/OL10000512W","PCEM intensif","PCEM intensif ","Physiologie","OL12623870M","39862836","9782843600296","2843600294","Pradel","OL3965552A","Linda S. Constanzo"],"type":"work","seed":["/books/OL12623870M","/works/OL10000512W","/authors/OL3965552A"],"title":"PCEM intensif","title_suggest":["PCEM intensif"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623870M"],"publish_date":["August 31, 2001"],"publish_year":[2001],"first_publish_year":2001,"oclc":["39862836"],"isbn":["9782843600296","2843600294"],"last_modified_i":1304043306,"ebook_count_i":0,"cover_edition_key":"OL12623870M","cover_i":3140968,"publisher":["Pradel"],"language":["fre"],"author_key":["OL3965552A"],"author_name":["Linda S. Constanzo"],"id_goodreads":["6620533"],"publisher_facet":["Pradel"],"_version_":1697074596199530500,"author_facet":["OL3965552A Linda S. Constanzo"]}
{"key":"/works/OL10000513W","text":["/works/OL10000513W","Livre de poche de psychiatrie clinique","OL12623871M","40752161","2843600316","9782843600319","Pradel","OL3965553A","Kaplan/Sadock"],"type":"work","seed":["/books/OL12623871M","/works/OL10000513W","/authors/OL3965553A"],"title":"Livre de poche de psychiatrie clinique","title_suggest":["Livre de poche de psychiatrie clinique"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623871M"],"publish_date":["October 12, 1998"],"publish_year":[1998],"first_publish_year":1998,"oclc":["40752161"],"isbn":["2843600316","9782843600319"],"last_modified_i":1307514585,"ebook_count_i":0,"cover_edition_key":"OL12623871M","cover_i":3140969,"publisher":["Pradel"],"author_key":["OL3965553A"],"author_name":["Kaplan/Sadock"],"publisher_facet":["Pradel"],"_version_":1697074596579115000,"author_facet":["OL3965553A Kaplan/Sadock"]}
{"key":"/works/OL10000514W","text":["/works/OL10000514W","AMIR","AMIR ","Aide-Mémoire Infirmier en Réanimation","OL12623873M","2843600367","9782843600364","Pradel","OL3965554A","Bruno Meshaka"],"type":"work","seed":["/books/OL12623873M","/works/OL10000514W","/authors/OL3965554A"],"title":"AMIR","title_suggest":["AMIR"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623873M"],"publish_date":["September 19, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2843600367","9782843600364"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12623873M","cover_i":3140971,"publisher":["Pradel"],"author_key":["OL3965554A"],"author_name":["Bruno Meshaka"],"id_goodreads":["2770538"],"id_librarything":["4507097"],"publisher_facet":["Pradel"],"_version_":1697074595857694700,"author_facet":["OL3965554A Bruno Meshaka"]}
{"key":"/works/OL10000515W","text":["/works/OL10000515W","Chirurgie implantaire","OL12623874M","9782843610066","2843610060","Cdp - Centre de Protheses","OL3965555A","Missika"],"type":"work","seed":["/books/OL12623874M","/works/OL10000515W","/authors/OL3965555A"],"title":"Chirurgie implantaire","title_suggest":["Chirurgie implantaire"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623874M"],"publish_date":["December 1, 1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["9782843610066","2843610060"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623874M","cover_i":3140972,"publisher":["Cdp - Centre de Protheses"],"author_key":["OL3965555A"],"author_name":["Missika"],"publisher_facet":["Cdp - Centre de Protheses"],"_version_":1697074596034904000,"author_facet":["OL3965555A Missika"]}
{"key":"/works/OL10000516W","text":["/works/OL10000516W","Pédodontie","OL12623875M","38999043","2843610109","9782843610103","Cdp - Centre de Protheses","OL3965556A","Shaw l"],"type":"work","seed":["/books/OL12623875M","/works/OL10000516W","/authors/OL3965556A"],"title":"Pédodontie","title_suggest":["Pédodontie"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623875M"],"publish_date":["December 1, 1998"],"publish_year":[1998],"first_publish_year":1998,"oclc":["38999043"],"isbn":["2843610109","9782843610103"],"last_modified_i":1303948977,"ebook_count_i":0,"cover_edition_key":"OL12623875M","cover_i":3140973,"publisher":["Cdp - Centre de Protheses"],"author_key":["OL3965556A"],"author_name":["Shaw l"],"publisher_facet":["Cdp - Centre de Protheses"],"_version_":1697074595803168800,"author_facet":["OL3965556A Shaw l"]}
{"key":"/works/OL10000517W","text":["/works/OL10000517W","Chirurgie parodontale orthodontique","OL12623876M","9782843610202","2843610206","chirurgieparodon00korb","Cdp - Centre de Protheses","OL3965557A","Korbendeau","Parodontologie","Eruption dentaire","Periodontal Diseases","Corrective Orthodontics","Dent incluse","Orthodontie","Chirurgie","Therapy","Adverse effects","Oral Surgical Procedures","Atlases","Chirurgie dentaire","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL12623876M","/works/OL10000517W","/subjects/parodontologie","/subjects/eruption_dentaire","/subjects/periodontal_diseases","/subjects/corrective_orthodontics","/subjects/dent_incluse","/subjects/orthodontie","/subjects/chirurgie","/subjects/therapy","/subjects/adverse_effects","/subjects/oral_surgical_procedures","/subjects/atlases","/subjects/chirurgie_dentaire","/authors/OL3965557A"],"title":"Chirurgie parodontale orthodontique","title_suggest":["Chirurgie parodontale orthodontique"],"has_fulltext":true,"edition_count":1,"edition_key":["OL12623876M"],"publish_date":["February 10, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782843610202","2843610206"],"last_modified_i":1406644693,"ebook_count_i":1,"ia":["chirurgieparodon00korb"],"public_scan_b":false,"ia_collection_s":"librarygenesis;printdisabled","printdisabled_s":"OL12623876M","cover_edition_key":"OL12623876M","cover_i":3140974,"publisher":["Cdp - Centre de Protheses"],"author_key":["OL3965557A"],"author_name":["Korbendeau"],"subject":["Parodontologie","Eruption dentaire","Periodontal Diseases","Corrective Orthodontics","Dent incluse","Orthodontie","Chirurgie","Therapy","Adverse effects","Oral Surgical Procedures","Atlases","Chirurgie dentaire","Accessible book","Protected DAISY"],"publisher_facet":["Cdp - Centre de Protheses"],"subject_facet":["Accessible book","Adverse effects","Atlases","Chirurgie","Chirurgie dentaire","Corrective Orthodontics","Dent incluse","Eruption dentaire","Oral Surgical Procedures","Orthodontie","Parodontologie","Periodontal Diseases","Protected DAISY","Therapy"],"_version_":1697074596211064800,"author_facet":["OL3965557A Korbendeau"],"subject_key":["accessible_book","adverse_effects","atlases","chirurgie","chirurgie_dentaire","corrective_orthodontics","dent_incluse","eruption_dentaire","oral_surgical_procedures","orthodontie","parodontologie","periodontal_diseases","protected_daisy","therapy"]}
{"key":"/works/OL10000518W","text":["/works/OL10000518W","Manuel d'implantologie clinique","OL12623877M","2843610249","9782843610240","Cdp - Centre de Protheses","OL3965558A","Davarpanah"],"type":"work","seed":["/books/OL12623877M","/works/OL10000518W","/authors/OL3965558A"],"title":"Manuel d'implantologie clinique","title_suggest":["Manuel d'implantologie clinique"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623877M"],"publish_date":["December 7, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["2843610249","9782843610240"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623877M","cover_i":3140975,"publisher":["Cdp - Centre de Protheses"],"author_key":["OL3965558A"],"author_name":["Davarpanah"],"publisher_facet":["Cdp - Centre de Protheses"],"_version_":1697074596535074800,"author_facet":["OL3965558A Davarpanah"]}
{"key":"/works/OL10000519W","text":["/works/OL10000519W","La reconstitution corono-radiculaire préprothétique des dents dépulpées","OL12623878M","284361029X","9782843610295","Cdp - Centre de Protheses","OL3965559A","Bolla M"],"type":"work","seed":["/books/OL12623878M","/works/OL10000519W","/authors/OL3965559A"],"title":"La reconstitution corono-radiculaire préprothétique des dents dépulpées","title_suggest":["La reconstitution corono-radiculaire préprothétique des dents dépulpées"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623878M"],"publish_date":["November 23, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["284361029X","9782843610295"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623878M","cover_i":3140976,"publisher":["Cdp - Centre de Protheses"],"author_key":["OL3965559A"],"author_name":["Bolla M"],"id_goodreads":["6174104"],"publisher_facet":["Cdp - Centre de Protheses"],"_version_":1697074595748642800,"author_facet":["OL3965559A Bolla M"]}
{"key":"/works/OL1000051W","text":["/works/OL1000051W","L'Ange impudique","OL12514696M","2290300195","9782290300190","J'ai lu","OL92935A","Elizabeth Boyle"],"type":"work","seed":["/books/OL12514696M","/works/OL1000051W","/authors/OL92935A"],"title":"L'Ange impudique","title_suggest":["L'Ange impudique"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12514696M"],"publish_date":["February 8, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2290300195","9782290300190"],"last_modified_i":1272134686,"ebook_count_i":0,"publisher":["J'ai lu"],"author_key":["OL92935A"],"author_name":["Elizabeth Boyle"],"id_goodreads":["3205507"],"publisher_facet":["J'ai lu"],"_version_":1697074596597989400,"author_facet":["OL92935A Elizabeth Boyle"]}
{"key":"/works/OL10000520W","text":["/works/OL10000520W","Chirurgie plastique parodontale","OL12623880M","9782843610318","2843610311","Cdp - Centre de Protheses","OL3965560A","A. Borghetti"],"type":"work","seed":["/books/OL12623880M","/works/OL10000520W","/authors/OL3965560A"],"title":"Chirurgie plastique parodontale","title_suggest":["Chirurgie plastique parodontale"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623880M"],"publish_date":["October 2, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782843610318","2843610311"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623880M","cover_i":3140978,"publisher":["Cdp - Centre de Protheses"],"language":["fre"],"author_key":["OL3965560A"],"author_name":["A. Borghetti"],"publisher_facet":["Cdp - Centre de Protheses"],"_version_":1697074596013932500,"author_facet":["OL3965560A A. Borghetti"]}
{"key":"/works/OL10000521W","text":["/works/OL10000521W","Prothèse implantaire","OL12623883M","2843610346","9782843610349","Cdp - Centre de Protheses","OL3965567A","B. Picard"],"type":"work","seed":["/books/OL12623883M","/works/OL10000521W","/authors/OL3965567A"],"title":"Prothèse implantaire","title_suggest":["Prothèse implantaire"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623883M"],"publish_date":["November 17, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2843610346","9782843610349"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623883M","cover_i":3140981,"publisher":["Cdp - Centre de Protheses"],"author_key":["OL3965567A"],"author_name":["B. Picard"],"publisher_facet":["Cdp - Centre de Protheses"],"_version_":1697074596174364700,"author_facet":["OL3965567A B. Picard"]}
{"key":"/works/OL10000522W","text":["/works/OL10000522W","La prothese fixee transitoir","OL12623884M","9782843610356","2843610354","Cdp - Centre de Protheses","OL3965568A","F. Graux"],"type":"work","seed":["/books/OL12623884M","/works/OL10000522W","/authors/OL3965568A"],"title":"La prothese fixee transitoir","title_suggest":["La prothese fixee transitoir"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623884M"],"publish_date":["November 24, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782843610356","2843610354"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623884M","cover_i":3140982,"publisher":["Cdp - Centre de Protheses"],"language":["fre"],"author_key":["OL3965568A"],"author_name":["F. Graux"],"publisher_facet":["Cdp - Centre de Protheses"],"_version_":1697074596288659500,"author_facet":["OL3965568A F. Graux"]}
{"key":"/works/OL10000523W","text":["/works/OL10000523W","Diagnostic et traitement des dysfonctions cranio-mandibulaires","OL12623885M","2843610362","9782843610363","Cdp - Centre de Protheses","OL3965569A","Dupas"],"type":"work","seed":["/books/OL12623885M","/works/OL10000523W","/authors/OL3965569A"],"title":"Diagnostic et traitement des dysfonctions cranio-mandibulaires","title_suggest":["Diagnostic et traitement des dysfonctions cranio-mandibulaires"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623885M"],"publish_date":["March 6, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2843610362","9782843610363"],"last_modified_i":1260840403,"ebook_count_i":0,"publisher":["Cdp - Centre de Protheses"],"author_key":["OL3965569A"],"author_name":["Dupas"],"publisher_facet":["Cdp - Centre de Protheses"],"_version_":1697074596096770000,"author_facet":["OL3965569A Dupas"]}
{"key":"/works/OL10000524W","text":["/works/OL10000524W","Esthetique et profil d'emergence en implantologie","OL12623886M","45855572","9782843610400","2843610400","Cdp - Centre de Protheses","OL3965570A","M. Bennami"],"type":"work","seed":["/books/OL12623886M","/works/OL10000524W","/authors/OL3965570A"],"title":"Esthetique et profil d'emergence en implantologie","title_suggest":["Esthetique et profil d'emergence en implantologie"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623886M"],"publish_date":["November 24, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["45855572"],"isbn":["9782843610400","2843610400"],"last_modified_i":1304122803,"ebook_count_i":0,"cover_edition_key":"OL12623886M","cover_i":3140983,"publisher":["Cdp - Centre de Protheses"],"language":["fre"],"author_key":["OL3965570A"],"author_name":["M. Bennami"],"publisher_facet":["Cdp - Centre de Protheses"],"_version_":1697074595913269200,"author_facet":["OL3965570A M. Bennami"]}
{"key":"/works/OL10000525W","text":["/works/OL10000525W","Odontologie pédiatrique au quotidien","OL22175868M","Frédéric Courson, Marguerite-Marie Landru.","62108825","Landru, Marguerite-Marie.","2843610842","9782843610844","Éditions CdP","OL3965572A","Frédéric Courson","Enfants","Soins dentaires","Pédodontie"],"type":"work","seed":["/books/OL22175868M","/works/OL10000525W","/subjects/enfants","/subjects/soins_dentaires","/subjects/pédodontie","/authors/OL3965572A"],"title":"Odontologie pédiatrique au quotidien","title_suggest":["Odontologie pédiatrique au quotidien"],"has_fulltext":false,"edition_count":1,"edition_key":["OL22175868M"],"publish_date":["2005"],"publish_year":[2005],"first_publish_year":2005,"publish_place":["[Rueil-Malmaison]"],"oclc":["62108825"],"contributor":["Landru, Marguerite-Marie."],"isbn":["2843610842","9782843610844"],"last_modified_i":1304034732,"ebook_count_i":0,"publisher":["Éditions CdP"],"language":["fre"],"author_key":["OL3965572A"],"author_name":["Frédéric Courson"],"subject":["Enfants","Soins dentaires","Pédodontie"],"publisher_facet":["Éditions CdP"],"subject_facet":["Enfants","Pédodontie","Soins dentaires"],"_version_":1697074596216307700,"author_facet":["OL3965572A Frédéric Courson"],"subject_key":["enfants","pédodontie","soins_dentaires"]}
{"key":"/works/OL10000526W","text":["/works/OL10000526W","Prothèse amovible complète, prothèse immédiate, prothèse supraradiculaire et implantaire","Prothèse amovible complète - Prothèse immédiate - Prothèses supraradiculaire et implantaire","Prothèse immédiate","Prothèse supraradiculaire et implantaire","OL12623889M","OL22171010M","Christophe Rignon-Bret, Jean-Marie Rignon-Bret.","Rignon-Bret, Jean-Marie","9782843610554","2843610559","Éditions CdP","Editons CdP","OL3965574A","OL3965575A","Christophe Rignon-Bret","Jean-Marie Rignon-Bret","Prothèses supraradiculaires","Prothèses dentaires complètes","Prothèses dentaires immédiates","Prothèses dentaires supportées par implants"],"type":"work","seed":["/books/OL12623889M","/books/OL22171010M","/works/OL10000526W","/subjects/prothèses_supraradiculaires","/subjects/prothèses_dentaires_complètes","/subjects/prothèses_dentaires_immédiates","/subjects/prothèses_dentaires_supportées_par_implants","/authors/OL3965574A","/authors/OL3965575A"],"title":"Prothèse amovible complète, prothèse immédiate, prothèse supraradiculaire et implantaire","title_suggest":["Prothèse amovible complète, prothèse immédiate, prothèse supraradiculaire et implantaire"],"has_fulltext":false,"edition_count":2,"edition_key":["OL12623889M","OL22171010M"],"publish_date":["December 4, 2002","2002"],"publish_year":[2002],"first_publish_year":2002,"publish_place":["Ruel-Malmaison"],"contributor":["Rignon-Bret, Jean-Marie"],"lcc":["RK-0656.00000000"],"isbn":["9782843610554","2843610559"],"last_modified_i":1564587298,"ebook_count_i":0,"cover_edition_key":"OL12623889M","cover_i":3140986,"publisher":["Éditions CdP","Editons CdP"],"language":["fre"],"author_key":["OL3965574A","OL3965575A"],"author_name":["Christophe Rignon-Bret","Jean-Marie Rignon-Bret"],"subject":["Prothèses supraradiculaires","Prothèses dentaires complètes","Prothèses dentaires immédiates","Prothèses dentaires supportées par implants"],"publisher_facet":["Editons CdP","Éditions CdP"],"subject_facet":["Prothèses dentaires complètes","Prothèses dentaires immédiates","Prothèses dentaires supportées par implants","Prothèses supraradiculaires"],"_version_":1697074596427071500,"lcc_sort":"RK-0656.00000000","author_facet":["OL3965574A Christophe Rignon-Bret","OL3965575A Jean-Marie Rignon-Bret"],"subject_key":["prothèses_dentaires_complètes","prothèses_dentaires_immédiates","prothèses_dentaires_supportées_par_implants","prothèses_supraradiculaires"]}
{"key":"/works/OL10000527W","text":["/works/OL10000527W","Les Noëls bretons","OL12623899M","2843620317","9782843620317","Terre de brume","OL3965578A","Dominique Besançon"],"type":"work","seed":["/books/OL12623899M","/works/OL10000527W","/authors/OL3965578A"],"title":"Les Noëls bretons","title_suggest":["Les Noëls bretons"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623899M"],"publish_date":["September 30, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["2843620317","9782843620317"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623899M","cover_i":3140995,"publisher":["Terre de brume"],"language":["fre"],"author_key":["OL3965578A"],"author_name":["Dominique Besançon"],"id_goodreads":["5315555"],"publisher_facet":["Terre de brume"],"_version_":1697074596736401400,"author_facet":["OL3965578A Dominique Besançon"]}
{"key":"/works/OL10000528W","text":["/works/OL10000528W","Morts, fantômes et revenants","OL12623919M","611148533","9782843620744","2843620740","Terre de brume","OL3965578A","Dominique Besançon"],"type":"work","seed":["/books/OL12623919M","/works/OL10000528W","/authors/OL3965578A"],"title":"Morts, fantômes et revenants","title_suggest":["Morts, fantômes et revenants"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623919M"],"publish_date":["March 8, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["611148533"],"isbn":["9782843620744","2843620740"],"last_modified_i":1304074940,"ebook_count_i":0,"cover_edition_key":"OL12623919M","cover_i":3141015,"publisher":["Terre de brume"],"language":["fre"],"author_key":["OL3965578A"],"author_name":["Dominique Besançon"],"id_goodreads":["5315558"],"publisher_facet":["Terre de brume"],"_version_":1697074596140810200,"author_facet":["OL3965578A Dominique Besançon"]}
{"key":"/works/OL10000529W","text":["/works/OL10000529W","Possession, sorcellerie et envoûtement","OL12623956M","2843621518","9782843621512","Terre de brume","OL3965578A","Dominique Besançon"],"type":"work","seed":["/books/OL12623956M","/works/OL10000529W","/authors/OL3965578A"],"title":"Possession, sorcellerie et envoûtement","title_suggest":["Possession, sorcellerie et envoûtement"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623956M"],"publish_date":["May 27, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2843621518","9782843621512"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623956M","cover_i":3141051,"publisher":["Terre de brume"],"author_key":["OL3965578A"],"author_name":["Dominique Besançon"],"id_goodreads":["5315554"],"publisher_facet":["Terre de brume"],"_version_":1697074595896492000,"author_facet":["OL3965578A Dominique Besançon"]}
{"key":"/works/OL1000052W","text":["/works/OL1000052W","Multilingual FSI","Cantonese Basic, Level 1 (Cassette Included)","Serbo-Croatian Basic Course 1"," Swedish Basic Course (15 Cassettes)","OL11700092M","OL11700096M","OL11700094M","Allen Weinstein (Editor)","0963151827","9780963151858","0963151851","9780963151827","9780963151872","0963151878","Multilingual Books and Tapes","OL92935A","Elizabeth Boyle"],"type":"work","seed":["/books/OL11700092M","/books/OL11700096M","/books/OL11700094M","/works/OL1000052W","/authors/OL92935A"],"title":"Multilingual FSI","title_suggest":["Multilingual FSI"],"subtitle":"Cantonese Basic, Level 1 (Cassette Included)","has_fulltext":false,"edition_count":3,"edition_key":["OL11700092M","OL11700096M","OL11700094M"],"publish_date":["January 1, 1998"],"publish_year":[1998],"first_publish_year":1998,"contributor":["Allen Weinstein (Editor)"],"isbn":["0963151827","9780963151858","0963151851","9780963151827","9780963151872","0963151878"],"last_modified_i":1304535008,"ebook_count_i":0,"publisher":["Multilingual Books and Tapes"],"author_key":["OL92935A"],"author_name":["Elizabeth Boyle"],"id_goodreads":["2353099","6307028"],"publisher_facet":["Multilingual Books and Tapes"],"_version_":1697074595395272700,"author_facet":["OL92935A Elizabeth Boyle"]}
{"key":"/works/OL10000530W","text":["/works/OL10000530W","La Veuve des Highlands et autres contes surnaturels","OL12623902M","2843620392","9782843620393","Terre de brume","OL3965579A","Water Scott"],"type":"work","seed":["/books/OL12623902M","/works/OL10000530W","/authors/OL3965579A"],"title":"La Veuve des Highlands et autres contes surnaturels","title_suggest":["La Veuve des Highlands et autres contes surnaturels"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623902M"],"publish_date":["March 12, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["2843620392","9782843620393"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12623902M","cover_i":3140998,"publisher":["Terre de brume"],"author_key":["OL3965579A"],"author_name":["Water Scott"],"id_librarything":["6212948"],"publisher_facet":["Terre de brume"],"_version_":1697074596334796800,"author_facet":["OL3965579A Water Scott"]}
{"key":"/works/OL10000531W","text":["/works/OL10000531W","Samedi, l'évêque a raté le bus","OL12623904M","2843620449","9782843620447","Terre de brume","OL3965581A","Bernard Pouchèle"],"type":"work","seed":["/books/OL12623904M","/works/OL10000531W","/authors/OL3965581A"],"title":"Samedi, l'évêque a raté le bus","title_suggest":["Samedi, l'évêque a raté le bus"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623904M"],"publish_date":["April 12, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["2843620449","9782843620447"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623904M","cover_i":3141000,"publisher":["Terre de brume"],"language":["fre"],"author_key":["OL3965581A"],"author_name":["Bernard Pouchèle"],"id_goodreads":["5491087"],"publisher_facet":["Terre de brume"],"_version_":1697074596186947600,"author_facet":["OL3965581A Bernard Pouchèle"]}
{"key":"/works/OL10000532W","text":["/works/OL10000532W","De l'étreinte à l'éternité","De l'étreinte à l'éternité ","Les rituels de l'extase en orient et en occident","OL12652319M","9782909698670","290969867X","Editions du Relié","OL3965582A","Philippe Camby"],"type":"work","seed":["/books/OL12652319M","/works/OL10000532W","/authors/OL3965582A"],"title":"De l'étreinte à l'éternité","title_suggest":["De l'étreinte à l'éternité"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12652319M"],"publish_date":["May 2, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782909698670","290969867X"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12652319M","cover_i":3160851,"publisher":["Editions du Relié"],"language":["fre"],"author_key":["OL3965582A"],"author_name":["Philippe Camby"],"id_goodreads":["6675726"],"publisher_facet":["Editions du Relié"],"_version_":1697074596341088300,"author_facet":["OL3965582A Philippe Camby"]}
{"key":"/works/OL10000533W","text":["/works/OL10000533W","Florilège des insultes et satires des Bretons","OL12623908M","9782843620515","2843620511","Terre de brume","OL3965582A","Philippe Camby"],"type":"work","seed":["/books/OL12623908M","/works/OL10000533W","/authors/OL3965582A"],"title":"Florilège des insultes et satires des Bretons","title_suggest":["Florilège des insultes et satires des Bretons"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623908M"],"publish_date":["June 11, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782843620515","2843620511"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623908M","cover_i":3141004,"publisher":["Terre de brume"],"language":["fre"],"author_key":["OL3965582A"],"author_name":["Philippe Camby"],"id_goodreads":["4119317"],"publisher_facet":["Terre de brume"],"_version_":1697074595861889000,"author_facet":["OL3965582A Philippe Camby"]}
{"key":"/works/OL10000534W","text":["/works/OL10000534W","La libération de la Bretagne","libération de la Bretagne","OL19375243M","Philippe Camby ; iconographie Pierre Gaigneux et l'auteur.","Gaigneux, Pierre.","Ouest France","OL3965582A","Philippe Camby","Brittany (France)","Brittany","France","World War, 1939-1945","History","20th century"],"type":"work","seed":["/books/OL19375243M","/works/OL10000534W","/subjects/world_war_1939-1945","/subjects/history","/subjects/place:brittany_(france)","/subjects/place:brittany","/subjects/place:france","/subjects/time:20th_century","/authors/OL3965582A"],"title":"La libération de la Bretagne","title_suggest":["La libération de la Bretagne"],"has_fulltext":false,"edition_count":1,"edition_key":["OL19375243M"],"publish_date":["1980"],"publish_year":[1980],"first_publish_year":1980,"publish_place":["Rennes"],"contributor":["Gaigneux, Pierre."],"lcc":["D--0762.00000000.B844 C178 1980"],"last_modified_i":1279636588,"ebook_count_i":0,"publisher":["Ouest France"],"language":["fre"],"author_key":["OL3965582A"],"author_name":["Philippe Camby"],"place":["Brittany (France)","Brittany","France"],"subject":["World War, 1939-1945","History"],"time":["20th century"],"publisher_facet":["Ouest France"],"place_key":["brittany","brittany_(france)","france"],"time_facet":["20th century"],"subject_facet":["History","World War, 1939-1945"],"_version_":1697074595585065000,"place_facet":["Brittany","Brittany (France)","France"],"lcc_sort":"D--0762.00000000.B844 C178 1980","author_facet":["OL3965582A Philippe Camby"],"subject_key":["history","world_war_1939-1945"],"time_key":["20th_century"]}
{"key":"/works/OL10000535W","text":["/works/OL10000535W","Petits contes licencieux des Bretons","OL12651219M","2908021633","9782908021639","Terre de brume","OL3965582A","Philippe Camby"],"type":"work","seed":["/books/OL12651219M","/works/OL10000535W","/authors/OL3965582A"],"title":"Petits contes licencieux des Bretons","title_suggest":["Petits contes licencieux des Bretons"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12651219M"],"publish_date":["March 21, 1996"],"publish_year":[1996],"first_publish_year":1996,"isbn":["2908021633","9782908021639"],"last_modified_i":1272134848,"ebook_count_i":0,"publisher":["Terre de brume"],"language":["fre"],"author_key":["OL3965582A"],"author_name":["Philippe Camby"],"id_goodreads":["4309433"],"publisher_facet":["Terre de brume"],"_version_":1697074596609523700,"author_facet":["OL3965582A Philippe Camby"]}
{"key":"/works/OL10000536W","text":["/works/OL10000536W","Petits contes licencieux des provinces de France","OL12623910M","9782843620584","2843620589","petitsconteslice0000unse","Terre de brume","OL3965583A","Camby P","Tales","Histoires érotiques françaises","Contes","Sexualité","Folklore","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL12623910M","/works/OL10000536W","/subjects/tales","/subjects/histoires_érotiques_françaises","/subjects/contes","/subjects/sexualité","/subjects/folklore","/authors/OL3965583A"],"title":"Petits contes licencieux des provinces de France","title_suggest":["Petits contes licencieux des provinces de France"],"has_fulltext":true,"edition_count":1,"edition_key":["OL12623910M"],"publish_date":["September 14, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782843620584","2843620589"],"last_modified_i":1613454572,"ebook_count_i":1,"ia":["petitsconteslice0000unse"],"public_scan_b":false,"ia_collection_s":"inlibrary;printdisabled;internetarchivebooks","lending_edition_s":"OL12623910M","lending_identifier_s":"petitsconteslice0000unse","printdisabled_s":"OL12623910M","cover_edition_key":"OL12623910M","cover_i":3141006,"publisher":["Terre de brume"],"language":["fre"],"author_key":["OL3965583A"],"author_name":["Camby P"],"subject":["Tales","Histoires érotiques françaises","Contes","Sexualité","Folklore","Accessible book","Protected DAISY"],"id_goodreads":["1610663"],"ia_box_id":["IA40060514"],"publisher_facet":["Terre de brume"],"subject_facet":["Accessible book","Contes","Folklore","Histoires érotiques françaises","Protected DAISY","Sexualité","Tales"],"_version_":1697074596505714700,"author_facet":["OL3965583A Camby P"],"subject_key":["accessible_book","contes","folklore","histoires_érotiques_françaises","protected_daisy","sexualité","tales"]}
{"key":"/works/OL10000537W","text":["/works/OL10000537W","Les librateurs de l'Irlande (Bibliotque Irlandaise)","OL12623916M","2843620694","9782843620690","Terre de brume","OL3965585A","Paul Fval"],"type":"work","seed":["/books/OL12623916M","/works/OL10000537W","/authors/OL3965585A"],"title":"Les librateurs de l'Irlande (Bibliotque Irlandaise)","title_suggest":["Les librateurs de l'Irlande (Bibliotque Irlandaise)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623916M"],"publish_date":["2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2843620694","9782843620690"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12623916M","cover_i":3141012,"publisher":["Terre de brume"],"language":["fre"],"author_key":["OL3965585A"],"author_name":["Paul Fval"],"id_librarything":["8401138"],"publisher_facet":["Terre de brume"],"_version_":1697074596577017900,"author_facet":["OL3965585A Paul Fval"]}
{"key":"/works/OL10000538W","text":["/works/OL10000538W","La Bête à cinq doigts","OL12623918M","406845103","2843620724","9782843620720","Terre de brume","OL3965586A","William Fryer-Harvey"],"type":"work","seed":["/books/OL12623918M","/works/OL10000538W","/authors/OL3965586A"],"title":"La Bête à cinq doigts","title_suggest":["La Bête à cinq doigts"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623918M"],"publish_date":["March 8, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["406845103"],"isbn":["2843620724","9782843620720"],"last_modified_i":1303959159,"ebook_count_i":0,"cover_edition_key":"OL12623918M","cover_i":3141014,"publisher":["Terre de brume"],"language":["fre"],"author_key":["OL3965586A"],"author_name":["William Fryer-Harvey"],"id_goodreads":["6833737"],"publisher_facet":["Terre de brume"],"_version_":1697074595944726500,"author_facet":["OL3965586A William Fryer-Harvey"]}
{"key":"/works/OL10000539W","text":["/works/OL10000539W","Les Quatre Saisons d'Ys","Les Quatre Saisons d'Ys ","Ys en été","OL12623952M","2843621461","9782843621468","Terre de brume","OL3965587A","Martial Caroff"],"type":"work","seed":["/books/OL12623952M","/works/OL10000539W","/authors/OL3965587A"],"title":"Les Quatre Saisons d'Ys","title_suggest":["Les Quatre Saisons d'Ys"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623952M"],"publish_date":["March 14, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2843621461","9782843621468"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623952M","cover_i":3141047,"publisher":["Terre de brume"],"author_key":["OL3965587A"],"author_name":["Martial Caroff"],"id_goodreads":["5062948"],"publisher_facet":["Terre de brume"],"_version_":1697074596338991000,"author_facet":["OL3965587A Martial Caroff"]}
{"key":"/works/OL1000053W","text":["/works/OL1000053W","No Marriage of Convenience (Avon Romantic Treasure)","No Marriage of Convenience","OL7435569M","OL24262017M","45184488","0380815346","9780380815340","9780061750861","0061750867","9780061207792","9780061207808","0061207802","0061207799","nomarriageofconv0000boyl","\"Cousin Felicity, my brother had the business sense of a pelican,\" Mason St. Clair, the new Earl of Ashlin said, waving his hand over his littered desk.","HarperCollins","Avon","OL92935A","Elizabeth Boyle","Fiction","Historical Fiction","Romance","Romance fiction","Historical fiction","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL7435569M","/books/OL24262017M","/works/OL1000053W","/subjects/fiction","/subjects/historical_fiction","/subjects/romance","/subjects/romance_fiction","/subjects/historical_fiction","/authors/OL92935A"],"title":"No Marriage of Convenience (Avon Romantic Treasure)","title_suggest":["No Marriage of Convenience (Avon Romantic Treasure)"],"has_fulltext":true,"edition_count":2,"edition_key":["OL7435569M","OL24262017M"],"publish_date":["September 1, 2000","2006"],"publish_year":[2000,2006],"first_publish_year":2000,"publish_place":["New York"],"oclc":["45184488"],"lcc":["PS-3552.00000000.O923 N6 2000x"],"isbn":["0380815346","9780380815340","9780061750861","0061750867","9780061207792","9780061207808","0061207802","0061207799"],"last_modified_i":1604886896,"ebook_count_i":1,"ia":["nomarriageofconv0000boyl"],"public_scan_b":false,"ia_collection_s":"printdisabled;internetarchivebooks","printdisabled_s":"OL7435569M","cover_edition_key":"OL7435569M","cover_i":237277,"first_sentence":["\"Cousin Felicity, my brother had the business sense of a pelican,\" Mason St. Clair, the new Earl of Ashlin said, waving his hand over his littered desk."],"publisher":["HarperCollins","Avon"],"language":["eng"],"author_key":["OL92935A"],"author_name":["Elizabeth Boyle"],"subject":["Fiction","Historical Fiction","Romance","Romance fiction","Historical fiction","Accessible book","Protected DAISY"],"id_goodreads":["212283"],"id_librarything":["78953"],"id_overdrive":["83EF2DBD-2D05-4764-A9D0-8AD577AD1B11"],"ia_box_id":["IA1756316"],"publisher_facet":["Avon","HarperCollins"],"subject_facet":["Accessible book","Fiction","Historical Fiction","Historical fiction","Protected DAISY","Romance","Romance fiction"],"_version_":1697074596402954200,"lcc_sort":"PS-3552.00000000.O923 N6 2000x","author_facet":["OL92935A Elizabeth Boyle"],"subject_key":["accessible_book","fiction","historical_fiction","protected_daisy","romance","romance_fiction"]}
{"key":"/works/OL10000540W","text":["/works/OL10000540W","Les quatres saisons d'Ys","Les quatres saisons d'Ys ","Ys au printemps","OL12623944M","2843621313","9782843621314","Terre de brume","OL3965587A","Martial Caroff"],"type":"work","seed":["/books/OL12623944M","/works/OL10000540W","/authors/OL3965587A"],"title":"Les quatres saisons d'Ys","title_suggest":["Les quatres saisons d'Ys"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623944M"],"publish_date":["August 31, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2843621313","9782843621314"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623944M","cover_i":3141039,"publisher":["Terre de brume"],"author_key":["OL3965587A"],"author_name":["Martial Caroff"],"id_goodreads":["5062950"],"publisher_facet":["Terre de brume"],"_version_":1697074596443848700,"author_facet":["OL3965587A Martial Caroff"]}
{"key":"/works/OL10000541W","text":["/works/OL10000541W","Ys en automne","OL12623920M","9782843620799","2843620791","Terre de brume","OL3965587A","Martial Caroff"],"type":"work","seed":["/books/OL12623920M","/works/OL10000541W","/authors/OL3965587A"],"title":"Ys en automne","title_suggest":["Ys en automne"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623920M"],"publish_date":["April 12, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782843620799","2843620791"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623920M","cover_i":3141016,"publisher":["Terre de brume"],"language":["fre"],"author_key":["OL3965587A"],"author_name":["Martial Caroff"],"id_goodreads":["6033126"],"publisher_facet":["Terre de brume"],"_version_":1697074596739547100,"author_facet":["OL3965587A Martial Caroff"]}
{"key":"/works/OL10000542W","text":["/works/OL10000542W","Ys en hiver","OL12623928M","2843620937","9782843620935","Terre de brume","OL3965587A","Martial Caroff"],"type":"work","seed":["/books/OL12623928M","/works/OL10000542W","/authors/OL3965587A"],"title":"Ys en hiver","title_suggest":["Ys en hiver"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623928M"],"publish_date":["September 20, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2843620937","9782843620935"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623928M","cover_i":3141025,"publisher":["Terre de brume"],"language":["fre"],"author_key":["OL3965587A"],"author_name":["Martial Caroff"],"id_goodreads":["6033125"],"publisher_facet":["Terre de brume"],"_version_":1697074595976183800,"author_facet":["OL3965587A Martial Caroff"]}
{"key":"/works/OL10000543W","text":["/works/OL10000543W","Petit Doigt du grand architecte","OL12623921M","9782843620805","2843620805","Terre de brume","OL3965588A","Louarnig Gwaskell"],"type":"work","seed":["/books/OL12623921M","/works/OL10000543W","/authors/OL3965588A"],"title":"Petit Doigt du grand architecte","title_suggest":["Petit Doigt du grand architecte"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623921M"],"publish_date":["June 27, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782843620805","2843620805"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623921M","cover_i":3141017,"publisher":["Terre de brume"],"language":["fre"],"author_key":["OL3965588A"],"author_name":["Louarnig Gwaskell"],"publisher_facet":["Terre de brume"],"_version_":1697074596584358000,"author_facet":["OL3965588A Louarnig Gwaskell"]}
{"key":"/works/OL10000544W","text":["/works/OL10000544W","Fees, naiades et nymphes","OL12623931M","48131575","284362102X","9782843621024","Terre de brume","OL3965589A","Dominique Besancon"],"type":"work","seed":["/books/OL12623931M","/works/OL10000544W","/authors/OL3965589A"],"title":"Fees, naiades et nymphes","title_suggest":["Fees, naiades et nymphes"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623931M"],"publish_date":["October 19, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["48131575"],"isbn":["284362102X","9782843621024"],"last_modified_i":1304065736,"ebook_count_i":0,"cover_edition_key":"OL12623931M","cover_i":3141027,"publisher":["Terre de brume"],"language":["fre"],"author_key":["OL3965589A"],"author_name":["Dominique Besancon"],"id_goodreads":["4576753"],"publisher_facet":["Terre de brume"],"_version_":1697074596342136800,"author_facet":["OL3965589A Dominique Besancon"]}
{"key":"/works/OL10000545W","text":["/works/OL10000545W","Histoire naturelle des dragons","OL12623933M","2001395715","9782843621093","2843621097","Terre de brume","OL3965590A","Meurger M","Dragons"],"type":"work","seed":["/books/OL12623933M","/works/OL10000545W","/subjects/dragons","/authors/OL3965590A"],"title":"Histoire naturelle des dragons","title_suggest":["Histoire naturelle des dragons"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623933M"],"publish_date":["March 1, 2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2001395715"],"lcc":["GR-0830.00000000.D7 M48 2001"],"isbn":["9782843621093","2843621097"],"last_modified_i":1607136506,"ebook_count_i":0,"cover_edition_key":"OL12623933M","cover_i":3141029,"publisher":["Terre de brume"],"language":["fre"],"author_key":["OL3965590A"],"author_name":["Meurger M"],"subject":["Dragons"],"id_librarything":["2705851"],"publisher_facet":["Terre de brume"],"subject_facet":["Dragons"],"_version_":1697074596310679600,"lcc_sort":"GR-0830.00000000.D7 M48 2001","author_facet":["OL3965590A Meurger M"],"subject_key":["dragons"]}
{"key":"/works/OL10000546W","text":["/works/OL10000546W","Balade de gwen","OL12623936M","468949364","2843621178","9782843621178","Terre de brume","OL3965591A","Stephane Heurteau"],"type":"work","seed":["/books/OL12623936M","/works/OL10000546W","/authors/OL3965591A"],"title":"Balade de gwen","title_suggest":["Balade de gwen"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623936M"],"publish_date":["April 11, 2001"],"publish_year":[2001],"first_publish_year":2001,"oclc":["468949364"],"isbn":["2843621178","9782843621178"],"last_modified_i":1304156990,"ebook_count_i":0,"cover_edition_key":"OL12623936M","cover_i":3141032,"publisher":["Terre de brume"],"language":["fre"],"author_key":["OL3965591A"],"author_name":["Stephane Heurteau"],"publisher_facet":["Terre de brume"],"_version_":1697074596206870500,"author_facet":["OL3965591A Stephane Heurteau"]}
{"key":"/works/OL10000547W","text":["/works/OL10000547W","Du Rififi Chez le Roi Arthur","OL12623955M","9782843621505","284362150X","Terre de brume","OL3965591A","Stephane Heurteau"],"type":"work","seed":["/books/OL12623955M","/works/OL10000547W","/authors/OL3965591A"],"title":"Du Rififi Chez le Roi Arthur","title_suggest":["Du Rififi Chez le Roi Arthur"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623955M"],"publish_date":["2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843621505","284362150X"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623955M","cover_i":3141050,"publisher":["Terre de brume"],"language":["fre"],"author_key":["OL3965591A"],"author_name":["Stephane Heurteau"],"publisher_facet":["Terre de brume"],"_version_":1697074595948920800,"author_facet":["OL3965591A Stephane Heurteau"]}
{"key":"/works/OL10000548W","text":["/works/OL10000548W","Islande","Islande ","Entre feu et glace","OL12623950M","2843621445","9782843621444","Terre de brume","OL3965592A","Jean Hervoche"],"type":"work","seed":["/books/OL12623950M","/works/OL10000548W","/authors/OL3965592A"],"title":"Islande","title_suggest":["Islande"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623950M"],"publish_date":["April 18, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2843621445","9782843621444"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623950M","cover_i":3141045,"publisher":["Terre de brume"],"author_key":["OL3965592A"],"author_name":["Jean Hervoche"],"id_goodreads":["7297170"],"publisher_facet":["Terre de brume"],"_version_":1697074596432314400,"author_facet":["OL3965592A Jean Hervoche"]}
{"key":"/works/OL10000549W","text":["/works/OL10000549W","Contes drolatiques du monde entier","OL12623940M","48176406","9782843621253","2843621259","Terre de brume","OL3965593A","d. Besancon"],"type":"work","seed":["/books/OL12623940M","/works/OL10000549W","/authors/OL3965593A"],"title":"Contes drolatiques du monde entier","title_suggest":["Contes drolatiques du monde entier"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623940M"],"publish_date":["May 1, 2001"],"publish_year":[2001],"first_publish_year":2001,"oclc":["48176406"],"isbn":["9782843621253","2843621259"],"last_modified_i":1303811224,"ebook_count_i":0,"cover_edition_key":"OL12623940M","cover_i":3141036,"publisher":["Terre de brume"],"language":["fre"],"author_key":["OL3965593A"],"author_name":["d. Besancon"],"publisher_facet":["Terre de brume"],"_version_":1697074595581919200,"author_facet":["OL3965593A d. Besancon"]}
{"key":"/works/OL1000054W","text":["/works/OL1000054W","Obsession","OL22276983M","by Elizabeth Boyle.","0920424139","9780920424124","0920424120","9780920424131","obsession0000boyl","York Pub. & Print. Co.","OL92935A","Elizabeth Boyle","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL22276983M","/works/OL1000054W","/authors/OL92935A"],"title":"Obsession","title_suggest":["Obsession"],"has_fulltext":true,"edition_count":1,"edition_key":["OL22276983M"],"publish_date":["1978"],"publish_year":[1978],"first_publish_year":1978,"publish_place":["Toronto"],"ddc":["813.54"],"isbn":["0920424139","9780920424124","0920424120","9780920424131"],"last_modified_i":1589528942,"ebook_count_i":1,"ia":["obsession0000boyl"],"public_scan_b":false,"ia_collection_s":"inlibrary;printdisabled;trent_university;fav-moonelf;internetarchivebooks;fav-sheree20","lending_edition_s":"OL22276983M","lending_identifier_s":"obsession0000boyl","printdisabled_s":"OL22276983M","cover_edition_key":"OL22276983M","cover_i":9439071,"publisher":["York Pub. & Print. Co."],"language":["eng"],"author_key":["OL92935A"],"author_name":["Elizabeth Boyle"],"subject":["Accessible book","Protected DAISY"],"ia_box_id":["IA1515002"],"publisher_facet":["York Pub. & Print. Co."],"subject_facet":["Accessible book","Protected DAISY"],"_version_":1697074596547657700,"author_facet":["OL92935A Elizabeth Boyle"],"subject_key":["accessible_book","protected_daisy"],"ddc_sort":"813.54"}
{"key":"/works/OL10000550W","text":["/works/OL10000550W","Gnomes, lutins et korrigans","OL12623979M","2843621933","9782843621932","Terre de brume","OL3965593A","d. Besancon"],"type":"work","seed":["/books/OL12623979M","/works/OL10000550W","/authors/OL3965593A"],"title":"Gnomes, lutins et korrigans","title_suggest":["Gnomes, lutins et korrigans"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623979M"],"publish_date":["April 25, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["2843621933","9782843621932"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623979M","cover_i":3141074,"publisher":["Terre de brume"],"language":["fre"],"author_key":["OL3965593A"],"author_name":["d. Besancon"],"id_goodreads":["2617081"],"publisher_facet":["Terre de brume"],"_version_":1697074596477403100,"author_facet":["OL3965593A d. Besancon"]}
{"key":"/works/OL10000551W","text":["/works/OL10000551W","Images D'Irlandae","Photographies de Pierre Josse, Jean Hervoche and Claude Le Gall","OL12623942M","52746945","9782843621291","2843621291","Terre de brume","OL3965596A","Bernard Berrou"],"type":"work","seed":["/books/OL12623942M","/works/OL10000551W","/authors/OL3965596A"],"title":"Images D'Irlandae","title_suggest":["Images D'Irlandae"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623942M"],"publish_date":["2001"],"publish_year":[2001],"first_publish_year":2001,"oclc":["52746945"],"isbn":["9782843621291","2843621291"],"last_modified_i":1304046665,"ebook_count_i":0,"publisher":["Terre de brume"],"author_key":["OL3965596A"],"author_name":["Bernard Berrou"],"id_goodreads":["2396026"],"publisher_facet":["Terre de brume"],"_version_":1697074595878666200,"author_facet":["OL3965596A Bernard Berrou"]}
{"key":"/works/OL10000552W","text":["/works/OL10000552W","Le rendez-vous irlandais","Rcits","OL12655999M","291396950X","9782913969506","Blanc silex","OL3965596A","Bernard Berrou"],"type":"work","seed":["/books/OL12655999M","/works/OL10000552W","/authors/OL3965596A"],"title":"Le rendez-vous irlandais","title_suggest":["Le rendez-vous irlandais"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12655999M"],"publish_date":["2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["291396950X","9782913969506"],"last_modified_i":1272134848,"ebook_count_i":0,"publisher":["Blanc silex"],"author_key":["OL3965596A"],"author_name":["Bernard Berrou"],"id_goodreads":["4378847"],"publisher_facet":["Blanc silex"],"_version_":1697074595449798700,"author_facet":["OL3965596A Bernard Berrou"]}
{"key":"/works/OL10000553W","text":["/works/OL10000553W","Une saison en Irlande, ou, L'attente de l'Ouest (Bibliothque irlandaise)","OL12651223M","290802179X","9782908021790","Terre de brume","OL3965596A","Bernard Berrou"],"type":"work","seed":["/books/OL12651223M","/works/OL10000553W","/authors/OL3965596A"],"title":"Une saison en Irlande, ou, L'attente de l'Ouest (Bibliothque irlandaise)","title_suggest":["Une saison en Irlande, ou, L'attente de l'Ouest (Bibliothque irlandaise)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12651223M"],"publish_date":["1996"],"publish_year":[1996],"first_publish_year":1996,"isbn":["290802179X","9782908021790"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12651223M","cover_i":3160163,"publisher":["Terre de brume"],"language":["fre"],"author_key":["OL3965596A"],"author_name":["Bernard Berrou"],"id_goodreads":["4378839"],"publisher_facet":["Terre de brume"],"_version_":1697074596356817000,"author_facet":["OL3965596A Bernard Berrou"]}
{"key":"/works/OL10000554W","text":["/works/OL10000554W","Au Royaume du dragon rouge","Au Royaume du dragon rouge ","Contes et Légendes du pays de Galles","OL12623943M","9782843621307","2843621305","Terre de brume","OL3965597A","Sylvie Ferdinand"],"type":"work","seed":["/books/OL12623943M","/works/OL10000554W","/authors/OL3965597A"],"title":"Au Royaume du dragon rouge","title_suggest":["Au Royaume du dragon rouge"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623943M"],"publish_date":["September 24, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782843621307","2843621305"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623943M","cover_i":3141038,"publisher":["Terre de brume"],"author_key":["OL3965597A"],"author_name":["Sylvie Ferdinand"],"id_goodreads":["4577098"],"publisher_facet":["Terre de brume"],"_version_":1697074596445945900,"author_facet":["OL3965597A Sylvie Ferdinand"]}
{"key":"/works/OL10000555W","text":["/works/OL10000555W","Mémoire de sang","OL12623949M","2843621437","9782843621437","Terre de brume","OL3965602A","Yannick Letty"],"type":"work","seed":["/books/OL12623949M","/works/OL10000555W","/authors/OL3965602A"],"title":"Mémoire de sang","title_suggest":["Mémoire de sang"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623949M"],"publish_date":["March 14, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2843621437","9782843621437"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623949M","cover_i":3141044,"publisher":["Terre de brume"],"author_key":["OL3965602A"],"author_name":["Yannick Letty"],"id_goodreads":["4436688"],"publisher_facet":["Terre de brume"],"_version_":1697074596623155200,"author_facet":["OL3965602A Yannick Letty"]}
{"key":"/works/OL10000556W","text":["/works/OL10000556W","Fracture","OL12623953M","9782843621475","284362147X","Terre de brume","OL3965603A","Cédric Pêche"],"type":"work","seed":["/books/OL12623953M","/works/OL10000556W","/authors/OL3965603A"],"title":"Fracture","title_suggest":["Fracture"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623953M"],"publish_date":["April 17, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843621475","284362147X"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623953M","cover_i":3141048,"publisher":["Terre de brume"],"author_key":["OL3965603A"],"author_name":["Cédric Pêche"],"publisher_facet":["Terre de brume"],"_version_":1697074596128227300,"author_facet":["OL3965603A Cédric Pêche"]}
{"key":"/works/OL10000557W","text":["/works/OL10000557W","Contes et facéties des enfants de Provence","OL12623960M","422244783","2843621607","9782843621604","Terre de brume","OL3965606A","Thibault d' Orsan"],"type":"work","seed":["/books/OL12623960M","/works/OL10000557W","/authors/OL3965606A"],"title":"Contes et facéties des enfants de Provence","title_suggest":["Contes et facéties des enfants de Provence"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623960M"],"publish_date":["May 27, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["422244783"],"isbn":["2843621607","9782843621604"],"last_modified_i":1304010958,"ebook_count_i":0,"cover_edition_key":"OL12623960M","cover_i":3141055,"publisher":["Terre de brume"],"author_key":["OL3965606A"],"author_name":["Thibault d' Orsan"],"id_goodreads":["2346231"],"publisher_facet":["Terre de brume"],"_version_":1697074596006592500,"author_facet":["OL3965606A Thibault d' Orsan"]}
{"key":"/works/OL10000558W","text":["/works/OL10000558W","L'enfant du 8 mai chausse du 45","OL12623962M","9782843621635","2843621631","Terre de brume","OL3965607A","Pierrick Le Noane"],"type":"work","seed":["/books/OL12623962M","/works/OL10000558W","/authors/OL3965607A"],"title":"L'enfant du 8 mai chausse du 45","title_suggest":["L'enfant du 8 mai chausse du 45"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623962M"],"publish_date":["September 11, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843621635","2843621631"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623962M","cover_i":3141057,"publisher":["Terre de brume"],"author_key":["OL3965607A"],"author_name":["Pierrick Le Noane"],"publisher_facet":["Terre de brume"],"_version_":1697074595879714800,"author_facet":["OL3965607A Pierrick Le Noane"]}
{"key":"/works/OL10000559W","text":["/works/OL10000559W","Veillées bretonnes","OL12623965M","9782843621703","2843621704","Terre de brume","OL3965610A","François-Marie Luzel"],"type":"work","seed":["/books/OL12623965M","/works/OL10000559W","/authors/OL3965610A"],"title":"Veillées bretonnes","title_suggest":["Veillées bretonnes"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623965M"],"publish_date":["November 21, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843621703","2843621704"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623965M","cover_i":3141060,"publisher":["Terre de brume"],"language":["fre"],"author_key":["OL3965610A"],"author_name":["François-Marie Luzel"],"id_goodreads":["6914230"],"publisher_facet":["Terre de brume"],"_version_":1697074596606378000,"author_facet":["OL3965610A François-Marie Luzel"]}
{"key":"/works/OL1000055W","text":["/works/OL1000055W","Once Tempted","Once Tempted (Avon Historical Romance)","OL7435570M","OL24270490M","47250708","0061751170","0061128023","9780061751172","0061128015","9780380815357","9780061128028","0380815354","9780061128011","oncetempted0000boyl","oncetempted00boyl","\"How was your trip to the solicitor, my lady?\"","HarperCollins","Avon","OL92935A","Elizabeth Boyle","Fiction","Historical Fiction","Romance","Man-woman relationships","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL7435570M","/books/OL24270490M","/works/OL1000055W","/subjects/fiction","/subjects/historical_fiction","/subjects/romance","/subjects/man-woman_relationships","/authors/OL92935A"],"title":"Once Tempted","title_suggest":["Once Tempted"],"has_fulltext":true,"edition_count":2,"edition_key":["OL7435570M","OL24270490M"],"publish_date":["July 3, 2001","2005"],"publish_year":[2001,2005],"first_publish_year":2001,"publish_place":["New York"],"oclc":["47250708"],"isbn":["0061751170","0061128023","9780061751172","0061128015","9780380815357","9780061128028","0380815354","9780061128011"],"last_modified_i":1563797496,"ebook_count_i":2,"ia":["oncetempted0000boyl","oncetempted00boyl"],"public_scan_b":false,"ia_collection_s":"printdisabled;china;internetarchivebooks;librarygenesis","printdisabled_s":"OL24270490M;OL7435570M","cover_edition_key":"OL7435570M","cover_i":237278,"first_sentence":["\"How was your trip to the solicitor, my lady?\""],"publisher":["HarperCollins","Avon"],"language":["eng"],"author_key":["OL92935A"],"author_name":["Elizabeth Boyle"],"subject":["Fiction","Historical Fiction","Romance","Man-woman relationships","Accessible book","Protected DAISY"],"id_goodreads":["445096"],"id_librarything":["79002"],"id_overdrive":["719774F5-B01B-4895-A5AE-D6BBA6061A46"],"ia_box_id":["IA1385414"],"publisher_facet":["Avon","HarperCollins"],"subject_facet":["Accessible book","Fiction","Historical Fiction","Man-woman relationships","Protected DAISY","Romance"],"_version_":1697074595997155300,"author_facet":["OL92935A Elizabeth Boyle"],"subject_key":["accessible_book","fiction","historical_fiction","man-woman_relationships","protected_daisy","romance"]}
{"key":"/works/OL10000560W","text":["/works/OL10000560W","Les Diables rouges","OL12623969M","284362181X","9782843621819","Terre de brume","OL3965612A","Patrick Delahais"],"type":"work","seed":["/books/OL12623969M","/works/OL10000560W","/authors/OL3965612A"],"title":"Les Diables rouges","title_suggest":["Les Diables rouges"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623969M"],"publish_date":["February 20, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["284362181X","9782843621819"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623969M","cover_i":3141064,"publisher":["Terre de brume"],"language":["fre"],"author_key":["OL3965612A"],"author_name":["Patrick Delahais"],"publisher_facet":["Terre de brume"],"_version_":1697074596147101700,"author_facet":["OL3965612A Patrick Delahais"]}
{"key":"/works/OL10000561W","text":["/works/OL10000561W","Danger public","OL12623973M","9782843621871","2843621879","Terre de brume","OL3965614A","Mathieu Goguel"],"type":"work","seed":["/books/OL12623973M","/works/OL10000561W","/authors/OL3965614A"],"title":"Danger public","title_suggest":["Danger public"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623973M"],"publish_date":["March 13, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["9782843621871","2843621879"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623973M","cover_i":3141068,"publisher":["Terre de brume"],"language":["fre"],"author_key":["OL3965614A"],"author_name":["Mathieu Goguel"],"id_goodreads":["7026318"],"publisher_facet":["Terre de brume"],"_version_":1697074596556046300,"author_facet":["OL3965614A Mathieu Goguel"]}
{"key":"/works/OL10000562W","text":["/works/OL10000562W","Délicieuses obsèques","OL12623976M","9782843621901","2843621909","Terre de brume Jeunesse","OL3965615A","Marc Le Rest"],"type":"work","seed":["/books/OL12623976M","/works/OL10000562W","/authors/OL3965615A"],"title":"Délicieuses obsèques","title_suggest":["Délicieuses obsèques"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623976M"],"publish_date":["April 17, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["9782843621901","2843621909"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623976M","cover_i":3141071,"publisher":["Terre de brume Jeunesse"],"language":["fre"],"author_key":["OL3965615A"],"author_name":["Marc Le Rest"],"id_goodreads":["6573070"],"publisher_facet":["Terre de brume Jeunesse"],"_version_":1697074596159684600,"author_facet":["OL3965615A Marc Le Rest"]}
{"key":"/works/OL10000563W","text":["/works/OL10000563W","Comment concevoir un service web","De la théorie à la pratique","OL12623985M","2843650232","9782843650239","Adbs - Association des","OL3965617A","Le Guelvouit"],"type":"work","seed":["/books/OL12623985M","/works/OL10000563W","/authors/OL3965617A"],"title":"Comment concevoir un service web","title_suggest":["Comment concevoir un service web"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623985M"],"publish_date":["July 30, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["2843650232","9782843650239"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623985M","cover_i":3141080,"publisher":["Adbs - Association des"],"author_key":["OL3965617A"],"author_name":["Le Guelvouit"],"publisher_facet":["Adbs - Association des"],"_version_":1697074596578066400,"author_facet":["OL3965617A Le Guelvouit"]}
{"key":"/works/OL10000564W","text":["/works/OL10000564W","La Garde républicaine, numéro 17","OL12623986M","467104981","2843680050","9782843680052","Nouvelle Arche de Noé","OL3965618A","Ancien directeur général de la Gendarmerie natio5Bernard Bernard Prévost"],"type":"work","seed":["/books/OL12623986M","/works/OL10000564W","/authors/OL3965618A"],"title":"La Garde républicaine, numéro 17","title_suggest":["La Garde républicaine, numéro 17"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623986M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["467104981"],"isbn":["2843680050","9782843680052"],"last_modified_i":1303894032,"ebook_count_i":0,"publisher":["Nouvelle Arche de Noé"],"language":["fre"],"author_key":["OL3965618A"],"author_name":["Ancien directeur général de la Gendarmerie natio5Bernard Bernard Prévost"],"id_goodreads":["5426494"],"publisher_facet":["Nouvelle Arche de Noé"],"_version_":1697074596588552200,"author_facet":["OL3965618A Ancien directeur général de la Gendarmerie natio5Bernard Bernard Prévost"]}
{"key":"/works/OL10000565W","text":["/works/OL10000565W","Les Stups, la drogue, numéro 18","OL12623987M","9782843680069","2843680069","racontemoilesstu0000unse","Nouvelle Arche de Noé","OL3965619A","Chef de la Mission de Lutte anti-drogue Michel Bouchet ministère de l'Intérieur","Police","Ouvrages pour la jeunesse","Drogues","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL12623987M","/works/OL10000565W","/subjects/police","/subjects/ouvrages_pour_la_jeunesse","/subjects/drogues","/authors/OL3965619A"],"title":"Les Stups, la drogue, numéro 18","title_suggest":["Les Stups, la drogue, numéro 18"],"has_fulltext":true,"edition_count":1,"edition_key":["OL12623987M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782843680069","2843680069"],"last_modified_i":1612255805,"ebook_count_i":1,"ia":["racontemoilesstu0000unse"],"public_scan_b":false,"ia_collection_s":"inlibrary;printdisabled;internetarchivebooks","lending_edition_s":"OL12623987M","lending_identifier_s":"racontemoilesstu0000unse","printdisabled_s":"OL12623987M","cover_edition_key":"OL12623987M","cover_i":3141081,"publisher":["Nouvelle Arche de Noé"],"language":["fre"],"author_key":["OL3965619A"],"author_name":["Chef de la Mission de Lutte anti-drogue Michel Bouchet ministère de l'Intérieur"],"subject":["Police","Ouvrages pour la jeunesse","Drogues","Accessible book","Protected DAISY"],"id_goodreads":["5684395"],"ia_box_id":["IA40048903"],"publisher_facet":["Nouvelle Arche de Noé"],"subject_facet":["Accessible book","Drogues","Ouvrages pour la jeunesse","Police","Protected DAISY"],"_version_":1697074596170170400,"author_facet":["OL3965619A Chef de la Mission de Lutte anti-drogue Michel Bouchet ministère de l'Intérieur"],"subject_key":["accessible_book","drogues","ouvrages_pour_la_jeunesse","police","protected_daisy"]}
{"key":"/works/OL10000566W","text":["/works/OL10000566W","Les Nations Unies, numéro 12","OL12623988M","9782843680175","2843680174","Nouvelle Arche de Noé","OL3965620A","Secrétaire général des Nations Unies Annan Kofi"],"type":"work","seed":["/books/OL12623988M","/works/OL10000566W","/authors/OL3965620A"],"title":"Les Nations Unies, numéro 12","title_suggest":["Les Nations Unies, numéro 12"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623988M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782843680175","2843680174"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623988M","cover_i":3141082,"publisher":["Nouvelle Arche de Noé"],"language":["fre"],"author_key":["OL3965620A"],"author_name":["Secrétaire général des Nations Unies Annan Kofi"],"publisher_facet":["Nouvelle Arche de Noé"],"_version_":1697074596126130200,"author_facet":["OL3965620A Secrétaire général des Nations Unies Annan Kofi"]}
{"key":"/works/OL10000567W","text":["/works/OL10000567W","Ophtalmologie","Dermatologie","OL12623992M","2843710006","9782843710001","Estem","OL3965621A","Beffard Bajer"],"type":"work","seed":["/books/OL12623992M","/works/OL10000567W","/authors/OL3965621A"],"title":"Ophtalmologie","title_suggest":["Ophtalmologie"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623992M"],"publish_date":["August 26, 1997"],"publish_year":[1997],"first_publish_year":1997,"isbn":["2843710006","9782843710001"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623992M","cover_i":3141086,"publisher":["Estem"],"author_key":["OL3965621A"],"author_name":["Beffard Bajer"],"publisher_facet":["Estem"],"_version_":1697074595922706400,"author_facet":["OL3965621A Beffard Bajer"]}
{"key":"/works/OL10000568W","text":["/works/OL10000568W","Les maladies de l'humeur","OL12623993M","40875747","2843710243","9782843710247","Estem","OL3965622A","Michèle Lévy"],"type":"work","seed":["/books/OL12623993M","/works/OL10000568W","/authors/OL3965622A"],"title":"Les maladies de l'humeur","title_suggest":["Les maladies de l'humeur"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623993M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["40875747"],"isbn":["2843710243","9782843710247"],"last_modified_i":1303897327,"ebook_count_i":0,"cover_edition_key":"OL12623993M","cover_i":3141087,"publisher":["Estem"],"author_key":["OL3965622A"],"author_name":["Michèle Lévy"],"publisher_facet":["Estem"],"_version_":1697074596269785000,"author_facet":["OL3965622A Michèle Lévy"]}
{"key":"/works/OL10000569W","text":["/works/OL10000569W","Economie monétaire internationale","OL12623994M","2843710278","9782843710278","Estem","OL3965623A","Ondo Ossa"],"type":"work","seed":["/books/OL12623994M","/works/OL10000569W","/authors/OL3965623A"],"title":"Economie monétaire internationale","title_suggest":["Economie monétaire internationale"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623994M"],"publish_date":["May 3, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2843710278","9782843710278"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623994M","cover_i":3141088,"publisher":["Estem"],"language":["fre"],"author_key":["OL3965623A"],"author_name":["Ondo Ossa"],"publisher_facet":["Estem"],"_version_":1697074596224696300,"author_facet":["OL3965623A Ondo Ossa"]}
{"key":"/works/OL1000056W","text":["/works/OL1000056W","Something about Emmaline","Something About Emmaline","OL3475603M","OL24272142M","Elizabeth Boyle.","2005588197","57495833","Copyright Paperback Collection (Library of Congress)","0061752460","9780061207853","9780061752469","0060549319","9780061207860","0061207861","9780060549312","0061207853","isbn_9780060549312","Avon Books","HarperCollins","OL92935A","Elizabeth Boyle","Fiction","Historical Fiction","Romance","Man-woman relationships","Man-woman relationship","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL3475603M","/books/OL24272142M","/works/OL1000056W","/subjects/fiction","/subjects/historical_fiction","/subjects/romance","/subjects/man-woman_relationships","/subjects/man-woman_relationship","/authors/OL92935A"],"title":"Something about Emmaline","title_suggest":["Something about Emmaline"],"has_fulltext":true,"edition_count":2,"edition_key":["OL3475603M","OL24272142M"],"publish_date":["2006","2005"],"publish_year":[2006,2005],"first_publish_year":2005,"lccn":["2005588197"],"publish_place":["New York"],"oclc":["57495833"],"contributor":["Copyright Paperback Collection (Library of Congress)"],"lcc":["CPB0000.00000000.Box no. 2328 vol. 2"],"isbn":["0061752460","9780061207853","9780061752469","0060549319","9780061207860","0061207861","9780060549312","0061207853"],"last_modified_i":1607900051,"ebook_count_i":1,"ia":["isbn_9780060549312"],"public_scan_b":false,"ia_collection_s":"printdisabled;china;internetarchivebooks","printdisabled_s":"OL3475603M","cover_edition_key":"OL3475603M","cover_i":28930,"publisher":["Avon Books","HarperCollins"],"language":["eng"],"author_key":["OL92935A"],"author_name":["Elizabeth Boyle"],"subject":["Fiction","Historical Fiction","Romance","Man-woman relationships","Man-woman relationship","Accessible book","Protected DAISY"],"id_goodreads":["279110"],"id_librarything":["79417"],"id_overdrive":["9DC4609D-939F-40BF-AA7B-E55EC2CF0E9F"],"ia_box_id":["IA1151911"],"publisher_facet":["Avon Books","HarperCollins"],"subject_facet":["Accessible book","Fiction","Historical Fiction","Man-woman relationship","Man-woman relationships","Protected DAISY","Romance"],"_version_":1697074596536123400,"lcc_sort":"CPB0000.00000000.Box no. 2328 vol. 2","author_facet":["OL92935A Elizabeth Boyle"],"subject_key":["accessible_book","fiction","historical_fiction","man-woman_relationship","man-woman_relationships","protected_daisy","romance"]}
{"key":"/works/OL10000570W","text":["/works/OL10000570W","Imagerie médicale","OL12623996M","2843710391","9782843710391","Estem","OL3965624A","Ara Loshkajian"],"type":"work","seed":["/books/OL12623996M","/works/OL10000570W","/authors/OL3965624A"],"title":"Imagerie médicale","title_suggest":["Imagerie médicale"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623996M"],"publish_date":["April 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2843710391","9782843710391"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623996M","cover_i":3141090,"publisher":["Estem"],"language":["fre"],"author_key":["OL3965624A"],"author_name":["Ara Loshkajian"],"publisher_facet":["Estem"],"_version_":1697074595696214000,"author_facet":["OL3965624A Ara Loshkajian"]}
{"key":"/works/OL10000571W","text":["/works/OL10000571W","Changements démographiques en Amérique latine","OL12623997M","41438526","9782843710445","2843710448","Estem","OL3965625A","Cosio Zavala"],"type":"work","seed":["/books/OL12623997M","/works/OL10000571W","/authors/OL3965625A"],"title":"Changements démographiques en Amérique latine","title_suggest":["Changements démographiques en Amérique latine"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623997M"],"publish_date":["January 15, 1999"],"publish_year":[1999],"first_publish_year":1999,"oclc":["41438526"],"isbn":["9782843710445","2843710448"],"last_modified_i":1303875018,"ebook_count_i":0,"cover_edition_key":"OL12623997M","cover_i":3141091,"publisher":["Estem"],"author_key":["OL3965625A"],"author_name":["Cosio Zavala"],"publisher_facet":["Estem"],"_version_":1697074596194287600,"author_facet":["OL3965625A Cosio Zavala"]}
{"key":"/works/OL10000572W","text":["/works/OL10000572W","Mot-a-maux - 400 moyens mnemotechniques - zagury/mot-a-maux - 400 moyens mnemotechniques/a l'usage d","OL12623998M","9782843710483","2843710480","Estem","OL3965626A","Zagury"],"type":"work","seed":["/books/OL12623998M","/works/OL10000572W","/authors/OL3965626A"],"title":"Mot-a-maux - 400 moyens mnemotechniques - zagury/mot-a-maux - 400 moyens mnemotechniques/a l'usage d","title_suggest":["Mot-a-maux - 400 moyens mnemotechniques - zagury/mot-a-maux - 400 moyens mnemotechniques/a l'usage d"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623998M"],"publish_date":["December 30, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782843710483","2843710480"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12623998M","cover_i":3141092,"publisher":["Estem"],"language":["fre"],"author_key":["OL3965626A"],"author_name":["Zagury"],"publisher_facet":["Estem"],"_version_":1697074595401564200,"author_facet":["OL3965626A Zagury"]}
{"key":"/works/OL10000573W","text":["/works/OL10000573W","Soins & croyances","OL12623999M","2843710499","9782843710490","Estem","OL3965627A","Isabelle Lévy"],"type":"work","seed":["/books/OL12623999M","/works/OL10000573W","/authors/OL3965627A"],"title":"Soins & croyances","title_suggest":["Soins & croyances"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12623999M"],"publish_date":["April 19, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["2843710499","9782843710490"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12623999M","cover_i":3141093,"publisher":["Estem"],"author_key":["OL3965627A"],"author_name":["Isabelle Lévy"],"id_goodreads":["4009767"],"id_librarything":["4304362"],"publisher_facet":["Estem"],"_version_":1697074596620009500,"author_facet":["OL3965627A Isabelle Lévy"]}
{"key":"/works/OL10000574W","text":["/works/OL10000574W","50 dossiers rhumatologie","OL12624000M","9782843710582","2843710588","Estem","OL3965628A","Lavie"],"type":"work","seed":["/books/OL12624000M","/works/OL10000574W","/authors/OL3965628A"],"title":"50 dossiers rhumatologie","title_suggest":["50 dossiers rhumatologie"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624000M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782843710582","2843710588"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624000M","cover_i":3141094,"publisher":["Estem"],"language":["fre"],"author_key":["OL3965628A"],"author_name":["Lavie"],"publisher_facet":["Estem"],"_version_":1697074596492083200,"author_facet":["OL3965628A Lavie"]}
{"key":"/works/OL10000575W","text":["/works/OL10000575W","Urgences vitales prises en charge et diagnostics","Urgences vitales","prises en charge et diagnostics : gestes techniques et thérapeutiques","OL12624001M","OL22178456M","Patrick Plaisance.","Plaisance, Patrick","9782843710704","2843710707","Estem","Éditions ESTEM","OL3965629A","Plaisance","Médecine d'urgence","Urgences médicales"],"type":"work","seed":["/books/OL12624001M","/books/OL22178456M","/works/OL10000575W","/subjects/médecine_d'urgence","/subjects/urgences_médicales","/authors/OL3965629A"],"title":"Urgences vitales prises en charge et diagnostics","title_suggest":["Urgences vitales prises en charge et diagnostics"],"has_fulltext":false,"edition_count":2,"edition_key":["OL12624001M","OL22178456M"],"publish_date":["January 1, 2000","2004"],"publish_year":[2000,2004],"first_publish_year":2000,"publish_place":["Paris"],"contributor":["Plaisance, Patrick"],"isbn":["9782843710704","2843710707"],"last_modified_i":1564587301,"ebook_count_i":0,"cover_edition_key":"OL12624001M","cover_i":3141095,"publisher":["Estem","Éditions ESTEM"],"language":["fre"],"author_key":["OL3965629A"],"author_name":["Plaisance"],"subject":["Médecine d'urgence","Urgences médicales"],"publisher_facet":["Estem","Éditions ESTEM"],"subject_facet":["Médecine d'urgence","Urgences médicales"],"_version_":1697074595634348000,"author_facet":["OL3965629A Plaisance"],"subject_key":["médecine_d'urgence","urgences_médicales"]}
{"key":"/works/OL10000576W","text":["/works/OL10000576W","Psychatrie 2001-2002","OL12624003M","9782843710940","2843710944","psychatrie00lvys","Estem","OL3965632A","P. Lévy-Soussan","Examens","Internat (médecine)","Psychiatrie","Thérapeutique","Questions d'examen","Internat et résidence","Maladies mentales","Questions","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL12624003M","/works/OL10000576W","/subjects/examens","/subjects/internat_(médecine)","/subjects/psychiatrie","/subjects/thérapeutique","/subjects/questions_d'examen","/subjects/internat_et_résidence","/subjects/maladies_mentales","/subjects/questions","/authors/OL3965632A"],"title":"Psychatrie 2001-2002","title_suggest":["Psychatrie 2001-2002"],"has_fulltext":true,"edition_count":1,"edition_key":["OL12624003M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782843710940","2843710944"],"last_modified_i":1562432106,"ebook_count_i":1,"ia":["psychatrie00lvys"],"public_scan_b":false,"ia_collection_s":"librarygenesis;printdisabled","printdisabled_s":"OL12624003M","cover_edition_key":"OL12624003M","cover_i":3141097,"publisher":["Estem"],"language":["fre"],"author_key":["OL3965632A"],"author_name":["P. Lévy-Soussan"],"subject":["Examens","Internat (médecine)","Psychiatrie","Thérapeutique","Questions d'examen","Internat et résidence","Maladies mentales","Questions","Accessible book","Protected DAISY"],"publisher_facet":["Estem"],"subject_facet":["Accessible book","Examens","Internat (médecine)","Internat et résidence","Maladies mentales","Protected DAISY","Psychiatrie","Questions","Questions d'examen","Thérapeutique"],"_version_":1697074596313825300,"author_facet":["OL3965632A P. Lévy-Soussan"],"subject_key":["accessible_book","examens","internat_(médecine)","internat_et_résidence","maladies_mentales","protected_daisy","psychiatrie","questions","questions_d'examen","thérapeutique"]}
{"key":"/works/OL10000577W","text":["/works/OL10000577W","Hématologie et transfusion, édition 2002-2003","OL12624004M","2843711142","9782843711145","Estem","OL3965633A","François Lefrère"],"type":"work","seed":["/books/OL12624004M","/works/OL10000577W","/authors/OL3965633A"],"title":"Hématologie et transfusion, édition 2002-2003","title_suggest":["Hématologie et transfusion, édition 2002-2003"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624004M"],"publish_date":["September 21, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2843711142","9782843711145"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624004M","cover_i":3141098,"publisher":["Estem"],"author_key":["OL3965633A"],"author_name":["François Lefrère"],"publisher_facet":["Estem"],"_version_":1697074596160733200,"author_facet":["OL3965633A François Lefrère"]}
{"key":"/works/OL10000578W","text":["/works/OL10000578W","Diagnostics et thérapeutique","guide pratique du symptôme à la prescription","OL22137595M","William Berrebi.","9782843711275","2843711274","Éditions Five-Estem","OL3965634A","William Berrebi","Guides, manuels, etc","Thérapeutique","Diagnostics","Guides, manuels"],"type":"work","seed":["/books/OL22137595M","/works/OL10000578W","/subjects/guides_manuels_etc","/subjects/thérapeutique","/subjects/diagnostics","/subjects/guides_manuels","/authors/OL3965634A"],"title":"Diagnostics et thérapeutique","title_suggest":["Diagnostics et thérapeutique"],"has_fulltext":false,"edition_count":1,"edition_key":["OL22137595M"],"publish_date":["2001"],"publish_year":[2001],"first_publish_year":2001,"publish_place":["Paris"],"isbn":["9782843711275","2843711274"],"last_modified_i":1279636588,"ebook_count_i":0,"publisher":["Éditions Five-Estem"],"language":["fre"],"author_key":["OL3965634A"],"author_name":["William Berrebi"],"subject":["Guides, manuels, etc","Thérapeutique","Diagnostics","Guides, manuels"],"publisher_facet":["Éditions Five-Estem"],"subject_facet":["Diagnostics","Guides, manuels","Guides, manuels, etc","Thérapeutique"],"_version_":1697074595848257500,"author_facet":["OL3965634A William Berrebi"],"subject_key":["diagnostics","guides_manuels","guides_manuels_etc","thérapeutique"]}
{"key":"/works/OL10000579W","text":["/works/OL10000579W","Diagnostics & thérapeutiques. guide pratique du symptome a la prescription (2e e","OL12624006M","9782843711275","2843711274","Estem","OL3965634A","William Berrebi"],"type":"work","seed":["/books/OL12624006M","/works/OL10000579W","/authors/OL3965634A"],"title":"Diagnostics & thérapeutiques. guide pratique du symptome a la prescription (2e e","title_suggest":["Diagnostics & thérapeutiques. guide pratique du symptome a la prescription (2e e"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624006M"],"publish_date":["September 28, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782843711275","2843711274"],"last_modified_i":1260840403,"ebook_count_i":0,"publisher":["Estem"],"language":["fre"],"author_key":["OL3965634A"],"author_name":["William Berrebi"],"publisher_facet":["Estem"],"_version_":1697074596640981000,"author_facet":["OL3965634A William Berrebi"]}
{"key":"/works/OL1000057W","text":["/works/OL1000057W","Stealing the Bride (Avon Romantic Treasure)","OL9618176M","1417710675","9781417710676","The Fates have a funny way of changing one's life in the blink of an eye, or in the case of Lady Diana Fordham, a moment spent pondering a bright blue bonnet in the window of Madame Renard's millinery shop.","Tandem Library","OL92935A","Elizabeth Boyle"],"type":"work","seed":["/books/OL9618176M","/works/OL1000057W","/authors/OL92935A"],"title":"Stealing the Bride (Avon Romantic Treasure)","title_suggest":["Stealing the Bride (Avon Romantic Treasure)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL9618176M"],"publish_date":["July 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["1417710675","9781417710676"],"last_modified_i":1281605330,"ebook_count_i":0,"first_sentence":["The Fates have a funny way of changing one's life in the blink of an eye, or in the case of Lady Diana Fordham, a moment spent pondering a bright blue bonnet in the window of Madame Renard's millinery shop."],"publisher":["Tandem Library"],"language":["eng"],"author_key":["OL92935A"],"author_name":["Elizabeth Boyle"],"id_librarything":["79453"],"publisher_facet":["Tandem Library"],"_version_":1697074596002398200,"author_facet":["OL92935A Elizabeth Boyle"]}
{"key":"/works/OL10000580W","text":["/works/OL10000580W","Hépatologie, gastro-entérologie","OL22138597M","William Berrebi.","9782846780186","9782843712272","2846780188","2843712270","Éditions Med-line","ESTEM","OL3965634A","William Berrebi","Guides, manuels","Maladies","Hépatologie","Foie","Appareil digestif","Gastroentérologie"],"type":"work","seed":["/books/OL22138597M","/works/OL10000580W","/subjects/guides_manuels","/subjects/maladies","/subjects/hépatologie","/subjects/foie","/subjects/appareil_digestif","/subjects/gastroentérologie","/authors/OL3965634A"],"title":"Hépatologie, gastro-entérologie","title_suggest":["Hépatologie, gastro-entérologie"],"has_fulltext":false,"edition_count":1,"edition_key":["OL22138597M"],"publish_date":["2003"],"publish_year":[2003],"first_publish_year":2003,"publish_place":["Paris"],"lcc":["RC-0801.00000000.B47 2003"],"isbn":["9782846780186","9782843712272","2846780188","2843712270"],"last_modified_i":1279636588,"ebook_count_i":0,"publisher":["Éditions Med-line","ESTEM"],"language":["fre"],"author_key":["OL3965634A"],"author_name":["William Berrebi"],"subject":["Guides, manuels","Maladies","Hépatologie","Foie","Appareil digestif","Gastroentérologie"],"publisher_facet":["ESTEM","Éditions Med-line"],"subject_facet":["Appareil digestif","Foie","Gastroentérologie","Guides, manuels","Hépatologie","Maladies"],"_version_":1697074595593453600,"lcc_sort":"RC-0801.00000000.B47 2003","author_facet":["OL3965634A William Berrebi"],"subject_key":["appareil_digestif","foie","gastroentérologie","guides_manuels","hépatologie","maladies"]}
{"key":"/works/OL10000581W","text":["/works/OL10000581W","Anatomie","ORL","OL22158501M","Pierre Bonfils, Jean-Marc Chevalier.","2257103300","9782257103307","Flammarion","OL3965636A","Pierre Bonfils","Anatomie","Tête","Cou","Oto-rhino-laryngologie"],"type":"work","seed":["/books/OL22158501M","/works/OL10000581W","/subjects/anatomie","/subjects/tête","/subjects/cou","/subjects/oto-rhino-laryngologie","/authors/OL3965636A"],"title":"Anatomie","title_suggest":["Anatomie"],"has_fulltext":false,"edition_count":1,"edition_key":["OL22158501M"],"publish_date":["2005"],"publish_year":[2005],"first_publish_year":2005,"publish_place":["Paris"],"isbn":["2257103300","9782257103307"],"last_modified_i":1279636588,"ebook_count_i":0,"publisher":["Flammarion"],"language":["fre"],"author_key":["OL3965636A"],"author_name":["Pierre Bonfils"],"subject":["Anatomie","Tête","Cou","Oto-rhino-laryngologie"],"publisher_facet":["Flammarion"],"subject_facet":["Anatomie","Cou","Oto-rhino-laryngologie","Tête"],"_version_":1697074595954163700,"author_facet":["OL3965636A Pierre Bonfils"],"subject_key":["anatomie","cou","oto-rhino-laryngologie","tête"]}
{"key":"/works/OL10000582W","text":["/works/OL10000582W","Urologie","OL12624008M","77156838","9782843711473","2843711479","Estem","OL3965637A","E. Chartier"],"type":"work","seed":["/books/OL12624008M","/works/OL10000582W","/authors/OL3965637A"],"title":"Urologie","title_suggest":["Urologie"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624008M"],"publish_date":["September 20, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["77156838"],"isbn":["9782843711473","2843711479"],"last_modified_i":1304111377,"ebook_count_i":0,"cover_edition_key":"OL12624008M","cover_i":3141102,"publisher":["Estem"],"language":["fre"],"author_key":["OL3965637A"],"author_name":["E. Chartier"],"publisher_facet":["Estem"],"_version_":1697074596466917400,"author_facet":["OL3965637A E. Chartier"]}
{"key":"/works/OL10000583W","text":["/works/OL10000583W","Rhumatologie","OL22176456M","Benjamin Bajer et Frédéric Lavie.","77099750","Lavie, Frédéric","9782843711794","2843711797","Estem","OL3965638A","Benjamin Bajer","France","Examens","Médecine","Examens, questions, etc","Universités","Rheumatology","Rhumatologie","Examens, questions"],"type":"work","seed":["/books/OL22176456M","/works/OL10000583W","/subjects/examens","/subjects/médecine","/subjects/examens_questions_etc","/subjects/universités","/subjects/rheumatology","/subjects/rhumatologie","/subjects/examens_questions","/subjects/place:france","/authors/OL3965638A"],"title":"Rhumatologie","title_suggest":["Rhumatologie"],"has_fulltext":false,"edition_count":1,"edition_key":["OL22176456M"],"publish_date":["2002"],"publish_year":[2002],"first_publish_year":2002,"publish_place":["Paris"],"oclc":["77099750"],"contributor":["Lavie, Frédéric"],"isbn":["9782843711794","2843711797"],"last_modified_i":1304075347,"ebook_count_i":0,"publisher":["Estem"],"language":["fre"],"author_key":["OL3965638A"],"author_name":["Benjamin Bajer"],"place":["France"],"subject":["Examens","Médecine","Examens, questions, etc","Universités","Rheumatology","Rhumatologie","Examens, questions"],"publisher_facet":["Estem"],"place_key":["france"],"subject_facet":["Examens","Examens, questions","Examens, questions, etc","Médecine","Rheumatology","Rhumatologie","Universités"],"_version_":1697074595772760000,"place_facet":["France"],"author_facet":["OL3965638A Benjamin Bajer"],"subject_key":["examens","examens_questions","examens_questions_etc","médecine","rheumatology","rhumatologie","universités"]}
{"key":"/works/OL10000584W","text":["/works/OL10000584W","Cardiologie","Dossiers cardiologie","OL22138654M","OL22171652M","Benjamin Bajer et Olivier de Pamphilis.","469849942","56728049","Pamphilis, Olivier de.","Pamphilis, Olivier de","9782843712869","2843712866","9782843711671","2843711673","Éd. ESTEM","Estem","OL3965638A","Benjamin Bajer","Cardiologie","Examens, questions","Examens, questions, etc"],"type":"work","seed":["/books/OL22138654M","/books/OL22171652M","/works/OL10000584W","/subjects/cardiologie","/subjects/examens_questions","/subjects/examens_questions_etc","/authors/OL3965638A"],"title":"Cardiologie","title_suggest":["Cardiologie"],"has_fulltext":false,"edition_count":2,"edition_key":["OL22138654M","OL22171652M"],"publish_date":["2004","2002"],"publish_year":[2002,2004],"first_publish_year":2002,"publish_place":["Paris"],"oclc":["469849942","56728049"],"contributor":["Pamphilis, Olivier de.","Pamphilis, Olivier de"],"isbn":["9782843712869","2843712866","9782843711671","2843711673"],"last_modified_i":1303855132,"ebook_count_i":0,"publisher":["Éd. ESTEM","Estem"],"language":["fre"],"author_key":["OL3965638A"],"author_name":["Benjamin Bajer"],"subject":["Cardiologie","Examens, questions","Examens, questions, etc"],"publisher_facet":["Estem","Éd. ESTEM"],"subject_facet":["Cardiologie","Examens, questions","Examens, questions, etc"],"_version_":1697074595501179000,"author_facet":["OL3965638A Benjamin Bajer"],"subject_key":["cardiologie","examens_questions","examens_questions_etc"]}
{"key":"/works/OL10000585W","text":["/works/OL10000585W","Orthopédie","OL22229613M","OL22235915M"," Benjamin Bajer, Frank Fitoussi, Alexandre Radovanovic."," Benjamin Bajer, Alexandre Radovanovic.","470072928","Fitoussi, Frank.","Radovanovic, Alexandre.","9782843710025","2843711762","9782843711763","2843710022","Editions ESTEM","OL3965638A","Benjamin Bajer","Orthopédie"," Examens, questions, et","Examens, questions, et"],"type":"work","seed":["/books/OL22229613M","/books/OL22235915M","/works/OL10000585W","/subjects/orthopédie","/subjects/examens_questions_et","/subjects/examens_questions_et","/authors/OL3965638A"],"title":"Orthopédie","title_suggest":["Orthopédie"],"has_fulltext":false,"edition_count":2,"edition_key":["OL22229613M","OL22235915M"],"publish_date":["2003","1997"],"publish_year":[2003,1997],"first_publish_year":1997,"publish_place":["Paris"],"oclc":["470072928"],"contributor":["Fitoussi, Frank.","Radovanovic, Alexandre."],"isbn":["9782843710025","2843711762","9782843711763","2843710022"],"last_modified_i":1307509147,"ebook_count_i":0,"publisher":["Editions ESTEM"],"language":["eng"],"author_key":["OL3965638A"],"author_name":["Benjamin Bajer"],"subject":["Orthopédie"," Examens, questions, et","Examens, questions, et"],"publisher_facet":["Editions ESTEM"],"subject_facet":[" Examens, questions, et","Examens, questions, et","Orthopédie"],"_version_":1697074595873423400,"author_facet":["OL3965638A Benjamin Bajer"],"subject_key":["_examens_questions_et","examens_questions_et","orthopédie"]}
{"key":"/works/OL10000586W","text":["/works/OL10000586W","Une theórie de l'Et́at esclavagiste","Dissertation sur le gouvernement.","John Caldwell Calhoun","OL19227741M","Geŕard Hugues.","2004456268","Calhoun, John C. 1782-1850.","2853995755","9782853995757","Publications de l'universite ́de Provence","OL3965641A","Gérard Hugues","John C. Calhoun (1782-1850)","United States","Politics and government","Legislators","Political science","Biography","1815-1861"],"type":"work","seed":["/books/OL19227741M","/works/OL10000586W","/subjects/politics_and_government","/subjects/legislators","/subjects/political_science","/subjects/biography","/subjects/person:john_c._calhoun_(1782-1850)","/subjects/place:united_states","/subjects/time:1815-1861","/authors/OL3965641A"],"title":"Une theórie de l'Et́at esclavagiste","title_suggest":["Une theórie de l'Et́at esclavagiste"],"has_fulltext":false,"edition_count":1,"edition_key":["OL19227741M"],"publish_date":["2004"],"publish_year":[2004],"first_publish_year":2004,"lccn":["2004456268"],"publish_place":["Aix-en-Provence"],"contributor":["Calhoun, John C. 1782-1850."],"lcc":["E--0340.00000000.C15 H77 2004"],"ddc":["973.5092"],"isbn":["2853995755","9782853995757"],"last_modified_i":1607640574,"ebook_count_i":0,"publisher":["Publications de l'universite ́de Provence"],"language":["fre"],"author_key":["OL3965641A"],"author_name":["Gérard Hugues"],"person":["John C. Calhoun (1782-1850)"],"place":["United States"],"subject":["Politics and government","Legislators","Political science","Biography"],"time":["1815-1861"],"publisher_facet":["Publications de l'universite ́de Provence"],"person_key":["john_c._calhoun_(1782-1850)"],"place_key":["united_states"],"time_facet":["1815-1861"],"person_facet":["John C. Calhoun (1782-1850)"],"subject_facet":["Biography","Legislators","Political science","Politics and government"],"_version_":1697074596373594000,"place_facet":["United States"],"lcc_sort":"E--0340.00000000.C15 H77 2004","author_facet":["OL3965641A Gérard Hugues"],"subject_key":["biography","legislators","political_science","politics_and_government"],"ddc_sort":"973.5092","time_key":["1815-1861"]}
{"key":"/works/OL10000587W","text":["/works/OL10000587W","Röntgen et les images du corps","OL12624027M","47134993","9782843720413","2843720419","Mallard","OL3965643A","Serge Cacaly"],"type":"work","seed":["/books/OL12624027M","/works/OL10000587W","/authors/OL3965643A"],"title":"Röntgen et les images du corps","title_suggest":["Röntgen et les images du corps"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624027M"],"publish_date":["May 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["47134993"],"isbn":["9782843720413","2843720419"],"last_modified_i":1307514585,"ebook_count_i":0,"cover_edition_key":"OL12624027M","cover_i":3141121,"publisher":["Mallard"],"author_key":["OL3965643A"],"author_name":["Serge Cacaly"],"id_goodreads":["6198776"],"publisher_facet":["Mallard"],"_version_":1697074596502569000,"author_facet":["OL3965643A Serge Cacaly"]}
{"key":"/works/OL10000588W","text":["/works/OL10000588W","Faux comme une image ?","Faux comme une image?","OL12624028M","OL22165509M","9782843720505","2843720508","Mallard","OL3965644A","Jérôme Bonaldi"],"type":"work","seed":["/books/OL12624028M","/books/OL22165509M","/works/OL10000588W","/authors/OL3965644A"],"title":"Faux comme une image ?","title_suggest":["Faux comme une image ?"],"has_fulltext":false,"edition_count":2,"edition_key":["OL12624028M","OL22165509M"],"publish_date":["2001","April 1, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782843720505","2843720508"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624028M","cover_i":3141122,"publisher":["Mallard"],"language":["eng"],"author_key":["OL3965644A"],"author_name":["Jérôme Bonaldi"],"id_goodreads":["6253593"],"publisher_facet":["Mallard"],"_version_":1697074595911172000,"author_facet":["OL3965644A Jérôme Bonaldi"]}
{"key":"/works/OL10000589W","text":["/works/OL10000589W","Titounet et Titounette, volume 19","Titounet et Titounette, volume 19 ","L'été en fanfare","OL12624046M","9782843780721","2843780721","Triomphe","OL3965650A","Marie-Mad."],"type":"work","seed":["/books/OL12624046M","/works/OL10000589W","/authors/OL3965650A"],"title":"Titounet et Titounette, volume 19","title_suggest":["Titounet et Titounette, volume 19"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624046M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782843780721","2843780721"],"last_modified_i":1260840403,"ebook_count_i":0,"publisher":["Triomphe"],"language":["fre"],"author_key":["OL3965650A"],"author_name":["Marie-Mad."],"publisher_facet":["Triomphe"],"_version_":1697074596223647700,"author_facet":["OL3965650A Marie-Mad."]}
{"key":"/works/OL1000058W","text":["/works/OL1000058W","This Rake of Mine (The Bachelor Chronicles)","OL7916927M","77500474","9780739459881","0739459880","Avon Books","OL92935A","Elizabeth Boyle"],"type":"work","seed":["/books/OL7916927M","/works/OL1000058W","/authors/OL92935A"],"title":"This Rake of Mine (The Bachelor Chronicles)","title_suggest":["This Rake of Mine (The Bachelor Chronicles)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL7916927M"],"publish_date":["2005"],"publish_year":[2005],"first_publish_year":2005,"oclc":["77500474"],"isbn":["9780739459881","0739459880"],"last_modified_i":1303766571,"ebook_count_i":0,"publisher":["Avon Books"],"language":["eng"],"author_key":["OL92935A"],"author_name":["Elizabeth Boyle"],"id_goodreads":["1858461"],"id_librarything":["80036"],"publisher_facet":["Avon Books"],"_version_":1697074595933192200,"author_facet":["OL92935A Elizabeth Boyle"]}
{"key":"/works/OL10000590W","text":["/works/OL10000590W","Vive la rentrée !","OL12624047M","466602718","284378087X","9782843780875","Triomphe","OL3965651A","Marie-Mad"],"type":"work","seed":["/books/OL12624047M","/works/OL10000590W","/authors/OL3965651A"],"title":"Vive la rentrée !","title_suggest":["Vive la rentrée !"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624047M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["466602718"],"isbn":["284378087X","9782843780875"],"last_modified_i":1304019314,"ebook_count_i":0,"publisher":["Triomphe"],"language":["fre"],"author_key":["OL3965651A"],"author_name":["Marie-Mad"],"publisher_facet":["Triomphe"],"_version_":1697074596526686200,"author_facet":["OL3965651A Marie-Mad"]}
{"key":"/works/OL10000591W","text":["/works/OL10000591W","Moky et Poupy et le voleur de fourrures","OL12624048M","466602713","9782843780882","2843780888","Triomphe","OL3965652A","Roger Bussemey"],"type":"work","seed":["/books/OL12624048M","/works/OL10000591W","/authors/OL3965652A"],"title":"Moky et Poupy et le voleur de fourrures","title_suggest":["Moky et Poupy et le voleur de fourrures"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624048M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["466602713"],"isbn":["9782843780882","2843780888"],"last_modified_i":1303754097,"ebook_count_i":0,"publisher":["Triomphe"],"language":["fre"],"author_key":["OL3965652A"],"author_name":["Roger Bussemey"],"id_goodreads":["6824391"],"publisher_facet":["Triomphe"],"_version_":1697074596078944300,"author_facet":["OL3965652A Roger Bussemey"]}
{"key":"/works/OL10000592W","text":["/works/OL10000592W","Moky et Poupy rencontrent Teddy","OL12624049M","466602716","2843780896","9782843780899","Triomphe","OL3965652A","Roger Bussemey"],"type":"work","seed":["/books/OL12624049M","/works/OL10000592W","/authors/OL3965652A"],"title":"Moky et Poupy rencontrent Teddy","title_suggest":["Moky et Poupy rencontrent Teddy"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624049M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["466602716"],"isbn":["2843780896","9782843780899"],"last_modified_i":1304099505,"ebook_count_i":0,"publisher":["Triomphe"],"author_key":["OL3965652A"],"author_name":["Roger Bussemey"],"id_goodreads":["6824390"],"publisher_facet":["Triomphe"],"_version_":1697074595927949300,"author_facet":["OL3965652A Roger Bussemey"]}
{"key":"/works/OL10000593W","text":["/works/OL10000593W","Un mamouth dans l'aspirateur","OL12624050M","466587801","284378090X","9782843780905","Triomphe","OL3965653A","René Bonnet"],"type":"work","seed":["/books/OL12624050M","/works/OL10000593W","/authors/OL3965653A"],"title":"Un mamouth dans l'aspirateur","title_suggest":["Un mamouth dans l'aspirateur"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624050M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["466587801"],"isbn":["284378090X","9782843780905"],"last_modified_i":1304129314,"ebook_count_i":0,"publisher":["Triomphe"],"language":["fre"],"author_key":["OL3965653A"],"author_name":["René Bonnet"],"id_goodreads":["1923974"],"publisher_facet":["Triomphe"],"_version_":1697074596514103300,"author_facet":["OL3965653A René Bonnet"]}
{"key":"/works/OL10000594W","text":["/works/OL10000594W","Le Ring","L'Or du Rhin - La Walkyrie - Siegfried - Crépuscule des dieux.","OL12624113M","2843851998","9782843851995","Premières Loges","OL42325A","Richard Wagner","Richard wagner","Wagner, Wilhelm Richard, 1813-1883.","Wagner, Richard, 1813-1883","Richard       Cdvmm            809 Wagner","Richard WAGNER","RICHARD WAGNER","Wagner Richard","Richard ( Wagner","Wagner, Richard,1813-1883","Wilhelm Richard Wagner","Wagner Richard."],"type":"work","seed":["/books/OL12624113M","/works/OL10000594W","/authors/OL42325A"],"title":"Le Ring","title_suggest":["Le Ring"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624113M"],"publish_date":["April 1, 1993"],"publish_year":[1993],"first_publish_year":1993,"isbn":["2843851998","9782843851995"],"last_modified_i":1287467318,"ebook_count_i":0,"publisher":["Premières Loges"],"language":["fre"],"author_key":["OL42325A"],"author_name":["Richard Wagner"],"author_alternative_name":["Richard wagner","Wagner, Wilhelm Richard, 1813-1883.","Wagner, Richard, 1813-1883","Richard       Cdvmm            809 Wagner","Richard WAGNER","RICHARD WAGNER","Wagner Richard","Richard ( Wagner","Wagner, Richard,1813-1883","Wilhelm Richard Wagner","Wagner Richard."],"publisher_facet":["Premières Loges"],"_version_":1697074595898589200,"author_facet":["OL42325A Richard Wagner"]}
{"key":"/works/OL10000595W","text":["/works/OL10000595W","Le Vaisseau fantôme","OL12624059M","2843850207","9782843850202","Premières Loges","OL42325A","Richard Wagner","Richard wagner","Wagner, Wilhelm Richard, 1813-1883.","Wagner, Richard, 1813-1883","Richard       Cdvmm            809 Wagner","Richard WAGNER","RICHARD WAGNER","Wagner Richard","Richard ( Wagner","Wagner, Richard,1813-1883","Wilhelm Richard Wagner","Wagner Richard."],"type":"work","seed":["/books/OL12624059M","/works/OL10000595W","/authors/OL42325A"],"title":"Le Vaisseau fantôme","title_suggest":["Le Vaisseau fantôme"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624059M"],"publish_date":["June 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2843850207","9782843850202"],"last_modified_i":1287467318,"ebook_count_i":0,"cover_edition_key":"OL12624059M","cover_i":3141135,"publisher":["Premières Loges"],"language":["fre"],"author_key":["OL42325A"],"author_name":["Richard Wagner"],"author_alternative_name":["Richard wagner","Wagner, Wilhelm Richard, 1813-1883.","Wagner, Richard, 1813-1883","Richard       Cdvmm            809 Wagner","Richard WAGNER","RICHARD WAGNER","Wagner Richard","Richard ( Wagner","Wagner, Richard,1813-1883","Wilhelm Richard Wagner","Wagner Richard."],"id_goodreads":["6436305"],"publisher_facet":["Premières Loges"],"_version_":1697074596357865500,"author_facet":["OL42325A Richard Wagner"]}
{"key":"/works/OL10000596W","text":["/works/OL10000596W","L'Or du Rhin","OL12624054M","9782843850042","2843850045","Premières Loges","OL42325A","Richard Wagner","Richard wagner","Wagner, Wilhelm Richard, 1813-1883.","Wagner, Richard, 1813-1883","Richard       Cdvmm            809 Wagner","Richard WAGNER","RICHARD WAGNER","Wagner Richard","Richard ( Wagner","Wagner, Richard,1813-1883","Wilhelm Richard Wagner","Wagner Richard."],"type":"work","seed":["/books/OL12624054M","/works/OL10000596W","/authors/OL42325A"],"title":"L'Or du Rhin","title_suggest":["L'Or du Rhin"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624054M"],"publish_date":["March 1, 1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["9782843850042","2843850045"],"last_modified_i":1287467318,"ebook_count_i":0,"cover_edition_key":"OL12624054M","cover_i":3141131,"publisher":["Premières Loges"],"language":["fre"],"author_key":["OL42325A"],"author_name":["Richard Wagner"],"author_alternative_name":["Richard wagner","Wagner, Wilhelm Richard, 1813-1883.","Wagner, Richard, 1813-1883","Richard       Cdvmm            809 Wagner","Richard WAGNER","RICHARD WAGNER","Wagner Richard","Richard ( Wagner","Wagner, Richard,1813-1883","Wilhelm Richard Wagner","Wagner Richard."],"publisher_facet":["Premières Loges"],"_version_":1697074595655319600,"author_facet":["OL42325A Richard Wagner"]}
{"key":"/works/OL10000597W","text":["/works/OL10000597W","Carmen","OL12624057M","2843850177","9782843850172","Premières Loges","OL54691A","Georges Bizet","Bizet Georges","Bizet, Georges Alexandre Cesar Leopold, 1838-1875.","Georges BIZET","George Bizet","Bizet, Georges, 1838-1875."],"type":"work","seed":["/books/OL12624057M","/works/OL10000597W","/authors/OL54691A"],"title":"Carmen","title_suggest":["Carmen"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624057M"],"publish_date":["December 1, 1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["2843850177","9782843850172"],"last_modified_i":1544740755,"ebook_count_i":0,"cover_edition_key":"OL12624057M","cover_i":3141134,"publisher":["Premières Loges"],"language":["fre"],"author_key":["OL54691A"],"author_name":["Georges Bizet"],"author_alternative_name":["Bizet Georges","Bizet, Georges Alexandre Cesar Leopold, 1838-1875.","Georges BIZET","George Bizet","Bizet, Georges, 1838-1875."],"id_librarything":["611592"],"publisher_facet":["Premières Loges"],"_version_":1697074596554997800,"author_facet":["OL54691A Georges Bizet"]}
{"key":"/works/OL10000598W","text":["/works/OL10000598W","La Somnambule","OL12624093M","2843851505","9782843851506","Premières Loges","OL54679A","Vincenzo Bellini","Bellini Vincenzo","Vincenzo BELLINI","Bellini, Vincenzo"],"type":"work","seed":["/books/OL12624093M","/works/OL10000598W","/authors/OL54679A"],"title":"La Somnambule","title_suggest":["La Somnambule"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624093M"],"publish_date":["July 1, 1997"],"publish_year":[1997],"first_publish_year":1997,"isbn":["2843851505","9782843851506"],"last_modified_i":1517764341,"ebook_count_i":0,"cover_edition_key":"OL12624093M","cover_i":3141168,"publisher":["Premières Loges"],"language":["fre"],"author_key":["OL54679A"],"author_name":["Vincenzo Bellini"],"author_alternative_name":["Bellini Vincenzo","Vincenzo BELLINI","Bellini, Vincenzo"],"id_librarything":["5007556"],"publisher_facet":["Premières Loges"],"_version_":1697074596271882200,"author_facet":["OL54679A Vincenzo Bellini"]}
{"key":"/works/OL10000599W","text":["/works/OL10000599W","Les Puritains","OL12624072M","2843850770","9782843850776","Premières Loges","OL54679A","Vincenzo Bellini","Bellini Vincenzo","Vincenzo BELLINI","Bellini, Vincenzo"],"type":"work","seed":["/books/OL12624072M","/works/OL10000599W","/authors/OL54679A"],"title":"Les Puritains","title_suggest":["Les Puritains"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624072M"],"publish_date":["March 1, 1987"],"publish_year":[1987],"first_publish_year":1987,"isbn":["2843850770","9782843850776"],"last_modified_i":1517764341,"ebook_count_i":0,"cover_edition_key":"OL12624072M","cover_i":3141147,"publisher":["Premières Loges"],"language":["fre"],"author_key":["OL54679A"],"author_name":["Vincenzo Bellini"],"author_alternative_name":["Bellini Vincenzo","Vincenzo BELLINI","Bellini, Vincenzo"],"id_librarything":["5655057"],"publisher_facet":["Premières Loges"],"_version_":1697074596270833700,"author_facet":["OL54679A Vincenzo Bellini"]}
{"key":"/works/OL1000059W","text":["/works/OL1000059W","Brazen Angel","OL7522672M","OL7519805M","2011486869","56017476","37385485","0440224128","9780440613701","9780440224129","0440613701","brazenangel00boyl","\"OH, BROTHER, GILES. Look who's arrived,\" Montgomery, the Duke of Stanton, whispered loudly.","Delta","Dell","OL92935A","Elizabeth Boyle","Social life and customs","Fiction","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL7522672M","/books/OL7519805M","/works/OL1000059W","/subjects/social_life_and_customs","/subjects/fiction","/authors/OL92935A"],"title":"Brazen Angel","title_suggest":["Brazen Angel"],"has_fulltext":true,"edition_count":2,"edition_key":["OL7522672M","OL7519805M"],"publish_date":["July 7, 1997"],"publish_year":[1997],"first_publish_year":1997,"lccn":["2011486869"],"oclc":["56017476","37385485"],"lcc":["CPB0000.00000000.Box no. 3892 vol. 2"],"isbn":["0440224128","9780440613701","9780440224129","0440613701"],"last_modified_i":1602922658,"ebook_count_i":1,"ia":["brazenangel00boyl"],"public_scan_b":false,"ia_collection_s":"librarygenesis;printdisabled","printdisabled_s":"OL7522672M","cover_edition_key":"OL7519805M","cover_i":280908,"first_sentence":["\"OH, BROTHER, GILES. Look who's arrived,\" Montgomery, the Duke of Stanton, whispered loudly."],"publisher":["Delta","Dell"],"language":["eng"],"author_key":["OL92935A"],"author_name":["Elizabeth Boyle"],"subject":["Social life and customs","Fiction","Accessible book","Protected DAISY"],"id_goodreads":["4645203","345008"],"id_librarything":["77754"],"publisher_facet":["Dell","Delta"],"subject_facet":["Accessible book","Fiction","Protected DAISY","Social life and customs"],"_version_":1697074596032807000,"lcc_sort":"CPB0000.00000000.Box no. 3892 vol. 2","author_facet":["OL92935A Elizabeth Boyle"],"subject_key":["accessible_book","fiction","protected_daisy","social_life_and_customs"]}
{"key":"/works/OL100005W","text":["/works/OL100005W","One coffee with","One Coffee With (Ulverscroft Large Print Series)","One Coffee With","OL10748148M","OL21271332M","OL22633299M","OL7778248M","Margaret Maron.","21050615","16914647","9780708924334","0373600542","0708924336","0747231370","9780373600540","9780747231370","Few institutions of higher learning are content that their faculties do nothing but teach.","Thorpe","Headline Book Publishing","Raven House","Ulverscroft Large Print","OL3326443A","Margaret Maron","Margaret Maron","Maron, Margaret","MARGARET MARON"],"type":"work","seed":["/books/OL10748148M","/books/OL21271332M","/books/OL22633299M","/books/OL7778248M","/works/OL100005W","/authors/OL3326443A"],"title":"One coffee with","title_suggest":["One coffee with"],"has_fulltext":false,"edition_count":4,"edition_key":["OL10748148M","OL21271332M","OL22633299M","OL7778248M"],"publish_date":["July 1991","1981","1991","1988"],"publish_year":[1981,1988,1991],"first_publish_year":1981,"publish_place":["Anstey","London"],"oclc":["21050615","16914647"],"ddc":["813.54"],"isbn":["9780708924334","0373600542","0708924336","0747231370","9780373600540","9780747231370"],"last_modified_i":1564562253,"ebook_count_i":0,"first_sentence":["Few institutions of higher learning are content that their faculties do nothing but teach."],"publisher":["Thorpe","Headline Book Publishing","Raven House","Ulverscroft Large Print"],"language":["eng"],"author_key":["OL3326443A"],"author_name":["Margaret Maron"],"author_alternative_name":["Margaret Maron","Maron, Margaret","MARGARET MARON"],"id_goodreads":["1805081","533382"],"id_librarything":["296872"],"publisher_facet":["Headline Book Publishing","Raven House","Thorpe","Ulverscroft Large Print"],"_version_":1697074596107255800,"author_facet":["OL3326443A Margaret Maron"],"ddc_sort":"813.54"}
{"key":"/works/OL10000600W","text":["/works/OL10000600W","Norma","OL12624058M","2843850193","9782843850196","Premières Loges","OL54679A","Vincenzo Bellini","Bellini Vincenzo","Vincenzo BELLINI","Bellini, Vincenzo"],"type":"work","seed":["/books/OL12624058M","/works/OL10000600W","/authors/OL54679A"],"title":"Norma","title_suggest":["Norma"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624058M"],"publish_date":["September 1, 1980"],"publish_year":[1980],"first_publish_year":1980,"isbn":["2843850193","9782843850196"],"last_modified_i":1517764341,"ebook_count_i":0,"publisher":["Premières Loges"],"language":["fre"],"author_key":["OL54679A"],"author_name":["Vincenzo Bellini"],"author_alternative_name":["Bellini Vincenzo","Vincenzo BELLINI","Bellini, Vincenzo"],"publisher_facet":["Premières Loges"],"_version_":1697074596586455000,"author_facet":["OL54679A Vincenzo Bellini"]}
{"key":"/works/OL10000601W","text":["/works/OL10000601W","Eugène Onéguine","OL12624060M","493373880","9782843850318","2843850312","Premières Loges","OL260354A","Peter Ilich Tchaikovsky","Piotr Ilyich Tchaikovsky","Petr Ilʹich Chaĭkovskiĭ","Peter Ilyich Tchaikovsky","Petr Il'ich Chǐkovskiǐ","Pyotr Tchaikovsky","Peter Tchaikovsky","P. I. Chaikovskii","CHAIKOVSKII","Pëtr Il'ic Cajkovskij","P. I. Tchaikovsky","Chaikovskii, Pi,Petr.,Ilich","Petr Ilich Chaikovskii","Piotr Ilitch Tchaïkovski","P. I. Chaĭkovskiĭ","Chaikovskii, Pi.,Petr,Ilich","Piotr Illitch Tchaïkovski","Peter Ilyitch Tchaikovsky","Pyotr Ilyich Tchaikovsky","Chaikovskii, Pi,.Petr,Ilich","Petr Il'ich Ghaĭkovskiĭ","Petr Il'ich Ghaǐkovskiǐ"],"type":"work","seed":["/books/OL12624060M","/works/OL10000601W","/authors/OL260354A"],"title":"Eugène Onéguine","title_suggest":["Eugène Onéguine"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624060M"],"publish_date":["October 1, 1998"],"publish_year":[1998],"first_publish_year":1998,"oclc":["493373880"],"isbn":["9782843850318","2843850312"],"last_modified_i":1307511609,"ebook_count_i":0,"cover_edition_key":"OL12624060M","cover_i":3141136,"publisher":["Premières Loges"],"author_key":["OL260354A"],"author_name":["Peter Ilich Tchaikovsky"],"author_alternative_name":["Piotr Ilyich Tchaikovsky","Petr Ilʹich Chaĭkovskiĭ","Peter Ilyich Tchaikovsky","Petr Il'ich Chǐkovskiǐ","Pyotr Tchaikovsky","Peter Tchaikovsky","P. I. Chaikovskii","CHAIKOVSKII","Pëtr Il'ic Cajkovskij","P. I. Tchaikovsky","Chaikovskii, Pi,Petr.,Ilich","Petr Ilich Chaikovskii","Piotr Ilitch Tchaïkovski","P. I. Chaĭkovskiĭ","Chaikovskii, Pi.,Petr,Ilich","Piotr Illitch Tchaïkovski","Peter Ilyitch Tchaikovsky","Pyotr Ilyich Tchaikovsky","Chaikovskii, Pi,.Petr,Ilich","Petr Il'ich Ghaĭkovskiĭ","Petr Il'ich Ghaǐkovskiǐ"],"id_goodreads":["1213035"],"publisher_facet":["Premières Loges"],"_version_":1697074596420780000,"author_facet":["OL260354A Peter Ilich Tchaikovsky"]}
{"key":"/works/OL10000602W","text":["/works/OL10000602W","Cavalleria rusticana + Paillasse","OL12624062M","2843850371","9782843850370","Premières Loges","OL3965658A","Mascagni Pietro/Leoncavallo Ruggero"],"type":"work","seed":["/books/OL12624062M","/works/OL10000602W","/authors/OL3965658A"],"title":"Cavalleria rusticana + Paillasse","title_suggest":["Cavalleria rusticana + Paillasse"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624062M"],"publish_date":["March 1, 1983"],"publish_year":[1983],"first_publish_year":1983,"isbn":["2843850371","9782843850370"],"last_modified_i":1554297521,"ebook_count_i":0,"cover_edition_key":"OL12624062M","cover_i":3141138,"publisher":["Premières Loges"],"language":["fre"],"author_key":["OL3965658A"],"author_name":["Mascagni Pietro/Leoncavallo Ruggero"],"id_librarything":["5023404"],"publisher_facet":["Premières Loges"],"_version_":1697074595781148700,"author_facet":["OL3965658A Mascagni Pietro/Leoncavallo Ruggero"]}
{"key":"/works/OL10000603W","text":["/works/OL10000603W","L'elisir d'amore","L'Elixir d'amour","OL12624071M","9782843850769","2843850762","Premières Loges","OL284141A","Gaetano Donizetti","Donizetti, Domenico Gaetano Maria, 1797-1848.","Donizetti,Gaetano","Gaeteno Donizetti","Donizetti Gaetano","G. Donizetti","G DONIZETTI","DONIZETTI","Donizetti","Gaetano] [Donizetti","Gaetano ( Donizetti ","Gaetano DONIZETTI"],"type":"work","seed":["/books/OL12624071M","/works/OL10000603W","/authors/OL284141A"],"title":"L'elisir d'amore","title_suggest":["L'elisir d'amore"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624071M"],"publish_date":["May 1, 1996"],"publish_year":[1996],"first_publish_year":1996,"isbn":["9782843850769","2843850762"],"last_modified_i":1534365149,"ebook_count_i":0,"cover_edition_key":"OL12624071M","cover_i":3141146,"publisher":["Premières Loges"],"author_key":["OL284141A"],"author_name":["Gaetano Donizetti"],"author_alternative_name":["Donizetti, Domenico Gaetano Maria, 1797-1848.","Donizetti,Gaetano","Gaeteno Donizetti","Donizetti Gaetano","G. Donizetti","G DONIZETTI","DONIZETTI","Donizetti","Gaetano] [Donizetti","Gaetano ( Donizetti ","Gaetano DONIZETTI"],"id_goodreads":["2749750"],"id_librarything":["5019404"],"publisher_facet":["Premières Loges"],"_version_":1697074596283416600,"author_facet":["OL284141A Gaetano Donizetti"]}
{"key":"/works/OL10000604W","text":["/works/OL10000604W","Lucia di Lammermoor","OL12624064M","492254439","2843850428","9782843850424","Premières Loges","OL284141A","Gaetano Donizetti","Donizetti, Domenico Gaetano Maria, 1797-1848.","Donizetti,Gaetano","Gaeteno Donizetti","Donizetti Gaetano","G. Donizetti","G DONIZETTI","DONIZETTI","Donizetti","Gaetano] [Donizetti","Gaetano ( Donizetti ","Gaetano DONIZETTI"],"type":"work","seed":["/books/OL12624064M","/works/OL10000604W","/authors/OL284141A"],"title":"Lucia di Lammermoor","title_suggest":["Lucia di Lammermoor"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624064M"],"publish_date":["September 1, 1983"],"publish_year":[1983],"first_publish_year":1983,"oclc":["492254439"],"isbn":["2843850428","9782843850424"],"last_modified_i":1534364014,"ebook_count_i":0,"cover_edition_key":"OL12624064M","cover_i":3141140,"publisher":["Premières Loges"],"language":["fre"],"author_key":["OL284141A"],"author_name":["Gaetano Donizetti"],"author_alternative_name":["Donizetti, Domenico Gaetano Maria, 1797-1848.","Donizetti,Gaetano","Gaeteno Donizetti","Donizetti Gaetano","G. Donizetti","G DONIZETTI","DONIZETTI","Donizetti","Gaetano] [Donizetti","Gaetano ( Donizetti ","Gaetano DONIZETTI"],"publisher_facet":["Premières Loges"],"_version_":1697074596162830300,"author_facet":["OL284141A Gaetano Donizetti"]}
{"key":"/works/OL10000605W","text":["/works/OL10000605W","L'Avant-scène Opéra, numéro 99","La Clémence de Titus","L'Avant-scène Opéra, numéro 99 ","OL12624075M","2843850800","9782843850806","Premières Loges","OL5017833A","Wolfgang Amadeus Mozart","Mozart, Wolfgang Amadeus","Johann Chrysostom Wolfgang Amadeus Mozart","W. A. Mozart","Wolfgang Mozart","Amadeus Saint, Bishop of Lausanne","Amadeus Saint, Bishop of Lausanne."],"type":"work","seed":["/books/OL12624075M","/works/OL10000605W","/authors/OL5017833A"],"title":"L'Avant-scène Opéra, numéro 99","title_suggest":["L'Avant-scène Opéra, numéro 99"],"subtitle":"La Clémence de Titus","has_fulltext":false,"edition_count":1,"edition_key":["OL12624075M"],"publish_date":["January 1, 1987"],"publish_year":[1987],"first_publish_year":1987,"isbn":["2843850800","9782843850806"],"last_modified_i":1303635759,"ebook_count_i":0,"cover_edition_key":"OL12624075M","cover_i":3141150,"publisher":["Premières Loges"],"author_key":["OL5017833A"],"author_name":["Wolfgang Amadeus Mozart"],"author_alternative_name":["Mozart, Wolfgang Amadeus","Johann Chrysostom Wolfgang Amadeus Mozart","W. A. Mozart","Wolfgang Mozart","Amadeus Saint, Bishop of Lausanne","Amadeus Saint, Bishop of Lausanne."],"publisher_facet":["Premières Loges"],"_version_":1697074596430217200,"author_facet":["OL5017833A Wolfgang Amadeus Mozart"]}
{"key":"/works/OL10000606W","text":["/works/OL10000606W","L'Avant-scène Opéra, numéros 135-136","Les Noces de Figaro","L'Avant-scène Opéra, numéros 135-136 ","OL12624081M","9782843851100","2843851106","Premières Loges","OL5017833A","Wolfgang Amadeus Mozart","Mozart, Wolfgang Amadeus","Johann Chrysostom Wolfgang Amadeus Mozart","W. A. Mozart","Wolfgang Mozart","Amadeus Saint, Bishop of Lausanne","Amadeus Saint, Bishop of Lausanne."],"type":"work","seed":["/books/OL12624081M","/works/OL10000606W","/authors/OL5017833A"],"title":"L'Avant-scène Opéra, numéros 135-136","title_suggest":["L'Avant-scène Opéra, numéros 135-136"],"subtitle":"Les Noces de Figaro","has_fulltext":false,"edition_count":1,"edition_key":["OL12624081M"],"publish_date":["January 1, 1990"],"publish_year":[1990],"first_publish_year":1990,"isbn":["9782843851100","2843851106"],"last_modified_i":1573460089,"ebook_count_i":0,"cover_edition_key":"OL12624081M","cover_i":3141156,"publisher":["Premières Loges"],"author_key":["OL5017833A"],"author_name":["Wolfgang Amadeus Mozart"],"author_alternative_name":["Mozart, Wolfgang Amadeus","Johann Chrysostom Wolfgang Amadeus Mozart","W. A. Mozart","Wolfgang Mozart","Amadeus Saint, Bishop of Lausanne","Amadeus Saint, Bishop of Lausanne."],"id_librarything":["1416207"],"publisher_facet":["Premières Loges"],"_version_":1697074595809460200,"author_facet":["OL5017833A Wolfgang Amadeus Mozart"]}
{"key":"/works/OL10000607W","text":["/works/OL10000607W","Atys","OL12624070M","496172488","2843850754","9782843850752","Premières Loges","OL4689630A","Jean Baptiste Lully","Lulli Jean Baptiste","Jean-Baptiste Lully","Lully, Jean Baptiste, 1632-1687","Lulli, Jean Baptiste, 1632-1687","Jean-Baptiste Lulli","Lully Jean Baptiste"],"type":"work","seed":["/books/OL12624070M","/works/OL10000607W","/authors/OL4689630A"],"title":"Atys","title_suggest":["Atys"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624070M"],"publish_date":["January 1, 1987"],"publish_year":[1987],"first_publish_year":1987,"oclc":["496172488"],"isbn":["2843850754","9782843850752"],"last_modified_i":1332615886,"ebook_count_i":0,"cover_edition_key":"OL12624070M","cover_i":3141145,"publisher":["Premières Loges"],"language":["fre"],"author_key":["OL4689630A"],"author_name":["Jean Baptiste Lully"],"author_alternative_name":["Lulli Jean Baptiste","Jean-Baptiste Lully","Lully, Jean Baptiste, 1632-1687","Lulli, Jean Baptiste, 1632-1687","Jean-Baptiste Lulli","Lully Jean Baptiste"],"id_goodreads":["7256009"],"publisher_facet":["Premières Loges"],"_version_":1697074596103061500,"author_facet":["OL4689630A Jean Baptiste Lully"]}
{"key":"/works/OL10000609W","text":["/works/OL10000609W","Jules Césars","OL12624073M","496744747","2843850789","9782843850783","Premières Loges","OL601846A","George Frideric Handel","Georg Fr. Händel","G.F Handel","George Fredrick Handel","George Frederick Handel","George F. Handel","Georg Frederick Handel","George Handel","G.F. Handel","Georg Friedrich Händel","George Frederic Handel","G. F. Handel","Georg Friedrich Handel"],"type":"work","seed":["/books/OL12624073M","/works/OL10000609W","/authors/OL601846A"],"title":"Jules Césars","title_suggest":["Jules Césars"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624073M"],"publish_date":["April 1, 1992"],"publish_year":[1992],"first_publish_year":1992,"oclc":["496744747"],"isbn":["2843850789","9782843850783"],"last_modified_i":1303776704,"ebook_count_i":0,"cover_edition_key":"OL12624073M","cover_i":3141148,"publisher":["Premières Loges"],"language":["fre"],"author_key":["OL601846A"],"author_name":["George Frideric Handel"],"author_alternative_name":["Georg Fr. Händel","G.F Handel","George Fredrick Handel","George Frederick Handel","George F. Handel","Georg Frederick Handel","George Handel","G.F. Handel","Georg Friedrich Händel","George Frederic Handel","G. F. Handel","Georg Friedrich Handel"],"publisher_facet":["Premières Loges"],"_version_":1697074596509909000,"author_facet":["OL601846A George Frideric Handel"]}
{"key":"/works/OL1000060W","text":["/works/OL1000060W","Brazen Temptress","OL7519913M","OL7522674M","99480326","41553073","0440613760","9780440613763","0440226392","9780440226390","brazentemptress00boyl_0","\"These acts of predation must cease!\"","Delta","Dell","OL92935A","Elizabeth Boyle","Women pirates","Fiction","Social life and customs","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL7519913M","/books/OL7522674M","/works/OL1000060W","/subjects/women_pirates","/subjects/fiction","/subjects/social_life_and_customs","/authors/OL92935A"],"title":"Brazen Temptress","title_suggest":["Brazen Temptress"],"has_fulltext":true,"edition_count":2,"edition_key":["OL7519913M","OL7522674M"],"publish_date":["June 8, 1999"],"publish_year":[1999],"first_publish_year":1999,"lccn":["99480326"],"oclc":["41553073"],"lcc":["CPB0000.00000000.Box no. 1419 vol. 7","PS-3552.00000000.O923 B727 1999x"],"isbn":["0440613760","9780440613763","0440226392","9780440226390"],"last_modified_i":1612887028,"ebook_count_i":1,"ia":["brazentemptress00boyl_0"],"public_scan_b":false,"ia_collection_s":"printdisabled;china;internetarchivebooks","printdisabled_s":"OL7519913M","cover_edition_key":"OL7519913M","cover_i":281066,"first_sentence":["\"These acts of predation must cease!\""],"publisher":["Delta","Dell"],"language":["eng"],"author_key":["OL92935A"],"author_name":["Elizabeth Boyle"],"subject":["Women pirates","Fiction","Social life and customs","Accessible book","Protected DAISY"],"id_goodreads":["871891","445095"],"id_librarything":["77756"],"ia_box_id":["IA1157820"],"publisher_facet":["Dell","Delta"],"subject_facet":["Accessible book","Fiction","Protected DAISY","Social life and customs","Women pirates"],"_version_":1697074596011835400,"lcc_sort":"CPB0000.00000000.Box no. 1419 vol. 7","author_facet":["OL92935A Elizabeth Boyle"],"subject_key":["accessible_book","fiction","protected_daisy","social_life_and_customs","women_pirates"]}
{"key":"/works/OL10000611W","text":["/works/OL10000611W","La Juive","OL12624076M","9782843850813","2843850819","Premières Loges","OL3965663A","Halévy Jacques"],"type":"work","seed":["/books/OL12624076M","/works/OL10000611W","/authors/OL3965663A"],"title":"La Juive","title_suggest":["La Juive"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624076M"],"publish_date":["July 1, 1987"],"publish_year":[1987],"first_publish_year":1987,"isbn":["9782843850813","2843850819"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12624076M","cover_i":3141151,"publisher":["Premières Loges"],"language":["fre"],"author_key":["OL3965663A"],"author_name":["Halévy Jacques"],"id_librarything":["388678"],"publisher_facet":["Premières Loges"],"_version_":1697074596187996200,"author_facet":["OL3965663A Halévy Jacques"]}
{"key":"/works/OL10000612W","text":["/works/OL10000612W","Jenufa","OL12624077M","496681163","2843850835","9782843850837","Avant-Scene Opéra","OL3965664A","Janacek Leos"],"type":"work","seed":["/books/OL12624077M","/works/OL10000612W","/authors/OL3965664A"],"title":"Jenufa","title_suggest":["Jenufa"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624077M"],"publish_date":["October 1, 1987"],"publish_year":[1987],"first_publish_year":1987,"oclc":["496681163"],"isbn":["2843850835","9782843850837"],"last_modified_i":1307492811,"ebook_count_i":0,"cover_edition_key":"OL12624077M","cover_i":3141152,"publisher":["Avant-Scene Opéra"],"language":["fre"],"author_key":["OL3965664A"],"author_name":["Janacek Leos"],"publisher_facet":["Avant-Scene Opéra"],"_version_":1697074595960455200,"author_facet":["OL3965664A Janacek Leos"]}
{"key":"/works/OL10000613W","text":["/works/OL10000613W","Le Freischütz","OL12624078M","284385086X","9782843850868","Premières Loges","OL1098039A","Carl Maria von Weber","WEBER CARL MARIA VON","Carl Maria Von Weber","Carl Maria von WEBER","Maria Von Trapp","Carl Maria Weber","Carl Maria van Weber","Maria von Wedemeyer","Weber Carl Maria Von","Weber, Carl Maria Friedrich Ernst von, 1786-1826.","Von Weber Carl M","CARL MARIA VON WEBER"],"type":"work","seed":["/books/OL12624078M","/works/OL10000613W","/authors/OL1098039A"],"title":"Le Freischütz","title_suggest":["Le Freischütz"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624078M"],"publish_date":["January 1, 1988"],"publish_year":[1988],"first_publish_year":1988,"isbn":["284385086X","9782843850868"],"last_modified_i":1287528870,"ebook_count_i":0,"cover_edition_key":"OL12624078M","cover_i":3141153,"publisher":["Premières Loges"],"language":["fre"],"author_key":["OL1098039A"],"author_name":["Carl Maria von Weber"],"author_alternative_name":["WEBER CARL MARIA VON","Carl Maria Von Weber","Carl Maria von WEBER","Maria Von Trapp","Carl Maria Weber","Carl Maria van Weber","Maria von Wedemeyer","Weber Carl Maria Von","Weber, Carl Maria Friedrich Ernst von, 1786-1826.","Von Weber Carl M","CARL MARIA VON WEBER"],"publisher_facet":["Premières Loges"],"_version_":1697074596545560600,"author_facet":["OL1098039A Carl Maria von Weber"]}
{"key":"/works/OL10000614W","text":["/works/OL10000614W","King Arthur","OL12624086M","9782843851353","2843851351","Premières Loges","OL3965666A","Purcell Henry"],"type":"work","seed":["/books/OL12624086M","/works/OL10000614W","/authors/OL3965666A"],"title":"King Arthur","title_suggest":["King Arthur"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624086M"],"publish_date":["January 1, 1995"],"publish_year":[1995],"first_publish_year":1995,"isbn":["9782843851353","2843851351"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12624086M","cover_i":3141161,"publisher":["Premières Loges"],"language":["fre"],"author_key":["OL3965666A"],"author_name":["Purcell Henry"],"id_goodreads":["5308708"],"id_librarything":["3869631"],"publisher_facet":["Premières Loges"],"_version_":1697074595940532200,"author_facet":["OL3965666A Purcell Henry"]}
{"key":"/works/OL10000615W","text":["/works/OL10000615W","Fidelio","OL12624087M","9782843851360","284385136X","Premières Loges","OL127077A","Ludwig van Beethoven","Lugwig van Beethoven","Beethoven Ludwig Van","Ludwig Van xzo Beethoven","Ludwig van xzo Beethoven","LUDWIG VAN BEETHOVEN","van Ludwig Beethoven","Beethoven Ludwig van","Ludwig van Beethoven","Ludwig Van BEETHOVEN","Ludwig V. Beethoven","Ludwig van BEETHOVEN","Beethoven, Ludwig van, 1770-1827.","Ludwig Beethoven","Ludwig van 1770-1827 Beethoven","BEETHOVEN, LUCWIG VAN, 1770-1827","Beethoven.","Beethoven*Ludwig van.","Beethoven Ludwig van.","Ludwig von Beethoven","Beethoven, Ludwig van, 1770-1827","Beethoven","Ludwig van Bethoven","Ludvig van Beethoven","Ludwig Von Beethoven","Ludwig Van Beethoven"],"type":"work","seed":["/books/OL12624087M","/works/OL10000615W","/authors/OL127077A"],"title":"Fidelio","title_suggest":["Fidelio"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624087M"],"publish_date":["March 1, 1995"],"publish_year":[1995],"first_publish_year":1995,"isbn":["9782843851360","284385136X"],"last_modified_i":1573457807,"ebook_count_i":0,"cover_edition_key":"OL12624087M","cover_i":3141162,"publisher":["Premières Loges"],"language":["fre"],"author_key":["OL127077A"],"author_name":["Ludwig van Beethoven"],"author_alternative_name":["Lugwig van Beethoven","Beethoven Ludwig Van","Ludwig Van xzo Beethoven","Ludwig van xzo Beethoven","LUDWIG VAN BEETHOVEN","van Ludwig Beethoven","Beethoven Ludwig van","Ludwig van Beethoven","Ludwig Van BEETHOVEN","Ludwig V. Beethoven","Ludwig van BEETHOVEN","Beethoven, Ludwig van, 1770-1827.","Ludwig Beethoven","Ludwig van 1770-1827 Beethoven","BEETHOVEN, LUCWIG VAN, 1770-1827","Beethoven.","Beethoven*Ludwig van.","Beethoven Ludwig van.","Ludwig von Beethoven","Beethoven, Ludwig van, 1770-1827","Beethoven","Ludwig van Bethoven","Ludvig van Beethoven","Ludwig Von Beethoven","Ludwig Van Beethoven"],"id_goodreads":["5977630"],"id_librarything":["7791762"],"publisher_facet":["Premières Loges"],"_version_":1697074595705651200,"author_facet":["OL127077A Ludwig van Beethoven"]}
{"key":"/works/OL10000616W","text":["/works/OL10000616W","Moïse et Aaron","OL12624088M","9782843851391","2843851394","Premières Loges","OL143316A","Arnold Schoenberg","ARNOLD SCHOENBERG","A Schoenberg","A. Schoenberg","Arnold Schonberg","Arnold Schönberg","Schoenberg Arnold"],"type":"work","seed":["/books/OL12624088M","/works/OL10000616W","/authors/OL143316A"],"title":"Moïse et Aaron","title_suggest":["Moïse et Aaron"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624088M"],"publish_date":["September 1, 1995"],"publish_year":[1995],"first_publish_year":1995,"isbn":["9782843851391","2843851394"],"last_modified_i":1359025121,"ebook_count_i":0,"cover_edition_key":"OL12624088M","cover_i":3141163,"publisher":["Premières Loges"],"language":["fre"],"author_key":["OL143316A"],"author_name":["Arnold Schoenberg"],"author_alternative_name":["ARNOLD SCHOENBERG","A Schoenberg","A. Schoenberg","Arnold Schonberg","Arnold Schönberg","Schoenberg Arnold"],"id_librarything":["3518363"],"publisher_facet":["Premières Loges"],"_version_":1697074596097818600,"author_facet":["OL143316A Arnold Schoenberg"]}
{"key":"/works/OL10000617W","text":["/works/OL10000617W","Le Prince Igor","OL12624089M","9782843851407","2843851408","Premières Loges","OL3965669A","Borodine Alexandre"],"type":"work","seed":["/books/OL12624089M","/works/OL10000617W","/authors/OL3965669A"],"title":"Le Prince Igor","title_suggest":["Le Prince Igor"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624089M"],"publish_date":["November 1, 1995"],"publish_year":[1995],"first_publish_year":1995,"isbn":["9782843851407","2843851408"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12624089M","cover_i":3141164,"publisher":["Premières Loges"],"language":["fre"],"author_key":["OL3965669A"],"author_name":["Borodine Alexandre"],"id_librarything":["5007631"],"publisher_facet":["Premières Loges"],"_version_":1697074596396662800,"author_facet":["OL3965669A Borodine Alexandre"]}
{"key":"/works/OL10000618W","text":["/works/OL10000618W","Le Grand Macabre","OL12624094M","38066909","2843851521","9782843851520","Premières Loges","OL3965671A","Ligeti György"],"type":"work","seed":["/books/OL12624094M","/works/OL10000618W","/authors/OL3965671A"],"title":"Le Grand Macabre","title_suggest":["Le Grand Macabre"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624094M"],"publish_date":["November 1, 1997"],"publish_year":[1997],"first_publish_year":1997,"oclc":["38066909"],"isbn":["2843851521","9782843851520"],"last_modified_i":1304102795,"ebook_count_i":0,"cover_edition_key":"OL12624094M","cover_i":3141169,"publisher":["Premières Loges"],"language":["fre"],"author_key":["OL3965671A"],"author_name":["Ligeti György"],"id_goodreads":["7215719"],"id_librarything":["1368151"],"publisher_facet":["Premières Loges"],"_version_":1697074596184850400,"author_facet":["OL3965671A Ligeti György"]}
{"key":"/works/OL10000619W","text":["/works/OL10000619W","Lakmé","OL12624095M","9782843851544","2843851548","Premières Loges","OL4286953A","Léo Delibes","Leo Delibes","Delibes Leo","Le o Delibes","LEO DELIBES"],"type":"work","seed":["/books/OL12624095M","/works/OL10000619W","/authors/OL4286953A"],"title":"Lakmé","title_suggest":["Lakmé"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624095M"],"publish_date":["March 1, 1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["9782843851544","2843851548"],"last_modified_i":1546107359,"ebook_count_i":0,"cover_edition_key":"OL12624095M","cover_i":3141170,"publisher":["Premières Loges"],"language":["fre"],"author_key":["OL4286953A"],"author_name":["Léo Delibes"],"author_alternative_name":["Leo Delibes","Delibes Leo","Le o Delibes","LEO DELIBES"],"id_librarything":["1368264"],"publisher_facet":["Premières Loges"],"_version_":1697074596649369600,"author_facet":["OL4286953A Léo Delibes"]}
{"key":"/works/OL1000061W","text":["/works/OL1000061W","His Mistress By Morning (Avon Romantic Treasure)","His Mistress By Morning","OL9236384M","OL7281677M","OL24272010M","2007580797","0061746819","9780060784027","0060784024","0061207918","9780061746819","0061207926","9780061207921","9780061207914","hismistressbymor00boyl","hismistressbymor00boyl_985","HarperCollins","Avon","OL92935A","Elizabeth Boyle","Fiction","Romance","Historical Fiction","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL9236384M","/books/OL7281677M","/books/OL24272010M","/works/OL1000061W","/subjects/fiction","/subjects/romance","/subjects/historical_fiction","/authors/OL92935A"],"title":"His Mistress By Morning (Avon Romantic Treasure)","title_suggest":["His Mistress By Morning (Avon Romantic Treasure)"],"has_fulltext":true,"edition_count":3,"edition_key":["OL9236384M","OL7281677M","OL24272010M"],"publish_date":["August 29, 2006","2006"],"publish_year":[2006],"first_publish_year":2006,"lccn":["2007580797"],"publish_place":["New York"],"lcc":["CPB0000.00000000.Box no. 2582 vol. 3"],"isbn":["0061746819","9780060784027","0060784024","0061207918","9780061746819","0061207926","9780061207921","9780061207914"],"last_modified_i":1608413532,"ebook_count_i":2,"ia":["hismistressbymor00boyl","hismistressbymor00boyl_985"],"public_scan_b":false,"ia_collection_s":"americana;china;printdisabled;delawarecountydistrictlibrary;internetarchivebooks;librarygenesis","printdisabled_s":"OL7281677M;OL24272010M","cover_edition_key":"OL9236384M","cover_i":35964,"publisher":["HarperCollins","Avon"],"language":["eng"],"author_key":["OL92935A"],"author_name":["Elizabeth Boyle"],"subject":["Fiction","Romance","Historical Fiction","Accessible book","Protected DAISY"],"id_goodreads":["101268"],"id_librarything":["1474140"],"id_overdrive":["51FECD4C-2A3A-4DA3-A851-E44BD2DF9780"],"ia_loaded_id":["hismistressbymor00boyl"],"ia_box_id":["IA180301"],"publisher_facet":["Avon","HarperCollins"],"subject_facet":["Accessible book","Fiction","Historical Fiction","Protected DAISY","Romance"],"_version_":1697074596667195400,"lcc_sort":"CPB0000.00000000.Box no. 2582 vol. 3","author_facet":["OL92935A Elizabeth Boyle"],"subject_key":["accessible_book","fiction","historical_fiction","protected_daisy","romance"]}
{"key":"/works/OL10000620W","text":["/works/OL10000620W","Platée","OL12624098M","9782843851605","2843851602","Premières Loges","OL1046642A","Jean-Philippe Rameau","Jean Phillipe Rameau","Jean Philippe Rameau","J. P. Rameau","Rameau Jean-Philippe","Rameau Jean Philippe"],"type":"work","seed":["/books/OL12624098M","/works/OL10000620W","/authors/OL1046642A"],"title":"Platée","title_suggest":["Platée"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624098M"],"publish_date":["March 1, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782843851605","2843851602"],"last_modified_i":1557588204,"ebook_count_i":0,"cover_edition_key":"OL12624098M","cover_i":3141173,"publisher":["Premières Loges"],"author_key":["OL1046642A"],"author_name":["Jean-Philippe Rameau"],"author_alternative_name":["Jean Phillipe Rameau","Jean Philippe Rameau","J. P. Rameau","Rameau Jean-Philippe","Rameau Jean Philippe"],"publisher_facet":["Premières Loges"],"_version_":1697074596007641000,"author_facet":["OL1046642A Jean-Philippe Rameau"]}
{"key":"/works/OL10000621W","text":["/works/OL10000621W","Orphée","OL12624100M","9782843851636","2843851637","Premières Loges","OL1243793A","Christoph Willibald Gluck","Christoph Willibald Gluck","Christoph Willibald von Gluck","Christoph Willibald Von Gluck","Gluck Christoph Willibald","Gluck, Christoph Willibald, Ritter von, 1714-1787.","Christoph Willibad Gluck","Christoph Gluck","Christoph W. Gluck","Gluck, Christoph Willibald Ritter von, 1714-1787","Christoph Willibald Ritter Von Gluck","Gluck, Christoph Willibald, Ritter von","Gluck, Christoph Willibald Ritter von"],"type":"work","seed":["/books/OL12624100M","/works/OL10000621W","/authors/OL1243793A"],"title":"Orphée","title_suggest":["Orphée"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624100M"],"publish_date":["September 1, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782843851636","2843851637"],"last_modified_i":1378058484,"ebook_count_i":0,"cover_edition_key":"OL12624100M","cover_i":3141175,"publisher":["Premières Loges"],"language":["fre"],"author_key":["OL1243793A"],"author_name":["Christoph Willibald Gluck"],"author_alternative_name":["Christoph Willibald Gluck","Christoph Willibald von Gluck","Christoph Willibald Von Gluck","Gluck Christoph Willibald","Gluck, Christoph Willibald, Ritter von, 1714-1787.","Christoph Willibad Gluck","Christoph Gluck","Christoph W. Gluck","Gluck, Christoph Willibald Ritter von, 1714-1787","Christoph Willibald Ritter Von Gluck","Gluck, Christoph Willibald, Ritter von","Gluck, Christoph Willibald Ritter von"],"id_librarything":["722617"],"publisher_facet":["Premières Loges"],"_version_":1697074596330602500,"author_facet":["OL1243793A Christoph Willibald Gluck"]}
{"key":"/works/OL10000622W","text":["/works/OL10000622W","La locandiera. A new comic, opera, in two acts. As perfored at the King's Theatre in the Hay-Market. the music entirely new, by Signor Domenico Cimarosa, under the direction of Mr. Mazzinghi","Italiana in Londra.","OL16951413M","printed by D. Stuart","OL3965675A","Giuseppe Petrosellini"],"type":"work","seed":["/books/OL16951413M","/works/OL10000622W","/authors/OL3965675A"],"title":"La locandiera. A new comic, opera, in two acts. As perfored at the King's Theatre in the Hay-Market. the music entirely new, by Signor Domenico Cimarosa, under the direction of Mr. Mazzinghi","title_suggest":["La locandiera. A new comic, opera, in two acts. As perfored at the King's Theatre in the Hay-Market. the music entirely new, by Signor Domenico Cimarosa, under the direction of Mr. Mazzinghi"],"has_fulltext":false,"edition_count":1,"edition_key":["OL16951413M"],"publish_date":["1788"],"publish_year":[1788],"first_publish_year":1788,"publish_place":["London"],"last_modified_i":1344092832,"ebook_count_i":0,"publisher":["printed by D. Stuart"],"language":["eng"],"author_key":["OL3965675A"],"author_name":["Giuseppe Petrosellini"],"publisher_facet":["printed by D. Stuart"],"_version_":1697074596098867200,"author_facet":["OL3965675A Giuseppe Petrosellini"]}
{"key":"/works/OL10000623W","text":["/works/OL10000623W","Le due contesse; a new comic opera: as performed at the King's Theatre, in the Hay-Market. The music by Signor Paisiello, and other eminent composers, ..","Le due contesse; a new comic opera: as performed at the King's Theatre, in the Hay-Market. The music by Signor Paisiello, and other eminent composers, ...","OL16988745M","printed for T. Cadell","OL3965675A","Giuseppe Petrosellini"],"type":"work","seed":["/books/OL16988745M","/works/OL10000623W","/authors/OL3965675A"],"title":"Le due contesse; a new comic opera: as performed at the King's Theatre, in the Hay-Market. The music by Signor Paisiello, and other eminent composers, ..","title_suggest":["Le due contesse; a new comic opera: as performed at the King's Theatre, in the Hay-Market. The music by Signor Paisiello, and other eminent composers, .."],"has_fulltext":false,"edition_count":1,"edition_key":["OL16988745M"],"publish_date":["1777"],"publish_year":[1777],"first_publish_year":1777,"publish_place":["London"],"last_modified_i":1344092799,"ebook_count_i":0,"publisher":["printed for T. Cadell"],"language":["eng"],"author_key":["OL3965675A"],"author_name":["Giuseppe Petrosellini"],"publisher_facet":["printed for T. Cadell"],"_version_":1697074596678729700,"author_facet":["OL3965675A Giuseppe Petrosellini"]}
{"key":"/works/OL10000624W","text":["/works/OL10000624W","Le vicende della sorte","or, the turns of fortune. A new comic opera; as acted at the King's-Theatre in the Hay-Market. The music by several eminent composers, ...","OL17007930M","printed for T. Becket, and Co.","OL3965675A","Giuseppe Petrosellini"],"type":"work","seed":["/books/OL17007930M","/works/OL10000624W","/authors/OL3965675A"],"title":"Le vicende della sorte","title_suggest":["Le vicende della sorte"],"has_fulltext":false,"edition_count":1,"edition_key":["OL17007930M"],"publish_date":["1770"],"publish_year":[1770],"first_publish_year":1770,"publish_place":["London"],"last_modified_i":1343774254,"ebook_count_i":0,"publisher":["printed for T. Becket, and Co."],"language":["eng"],"author_key":["OL3965675A"],"author_name":["Giuseppe Petrosellini"],"publisher_facet":["printed for T. Becket, and Co."],"_version_":1697074595827286000,"author_facet":["OL3965675A Giuseppe Petrosellini"]}
{"key":"/works/OL10000625W","text":["/works/OL10000625W","Pittore Parigino","Pittore Parigino.","Il pittor Parigino. = The Parisian painter. A comic opera, as performed at the King's Theatre, in the Hay-Market. With alterations, by Signor A. Andrei. The music entirely new, by Signor Cimarosa","OL16880427M","OL18957850M","printed by E. Cox","OL3965675A","Giuseppe Petrosellini"],"type":"work","seed":["/books/OL16880427M","/books/OL18957850M","/works/OL10000625W","/authors/OL3965675A"],"title":"Pittore Parigino","title_suggest":["Pittore Parigino"],"has_fulltext":false,"edition_count":2,"edition_key":["OL16880427M","OL18957850M"],"publish_date":["1785"],"publish_year":[1785],"first_publish_year":1785,"publish_place":["London"],"last_modified_i":1344092799,"ebook_count_i":0,"publisher":["printed by E. Cox"],"language":["eng"],"author_key":["OL3965675A"],"author_name":["Giuseppe Petrosellini"],"publisher_facet":["printed by E. Cox"],"_version_":1697074595955212300,"author_facet":["OL3965675A Giuseppe Petrosellini"]}
{"key":"/works/OL10000626W","text":["/works/OL10000626W","Una crepa nel buio","crepa nel buio.","OL18480733M","Grafiche Galeati","OL3965676A","Claudio Mancini"],"type":"work","seed":["/books/OL18480733M","/works/OL10000626W","/authors/OL3965676A"],"title":"Una crepa nel buio","title_suggest":["Una crepa nel buio"],"has_fulltext":false,"edition_count":1,"edition_key":["OL18480733M"],"publish_date":["1973"],"publish_year":[1973],"first_publish_year":1973,"publish_place":["Imola"],"lcc":["PQ-4873.00000000.A4657 C7"],"last_modified_i":1260855823,"ebook_count_i":0,"publisher":["Grafiche Galeati"],"language":["ita"],"author_key":["OL3965676A"],"author_name":["Claudio Mancini"],"publisher_facet":["Grafiche Galeati"],"_version_":1697074596421828600,"lcc_sort":"PQ-4873.00000000.A4657 C7","author_facet":["OL3965676A Claudio Mancini"]}
{"key":"/works/OL10000627W","text":["/works/OL10000627W","Louise","OL12624103M","9782843851681","2843851688","Premières Loges","OL3965678A","Charpentier Gustave"],"type":"work","seed":["/books/OL12624103M","/works/OL10000627W","/authors/OL3965678A"],"title":"Louise","title_suggest":["Louise"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624103M"],"publish_date":["July 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782843851681","2843851688"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12624103M","cover_i":3141179,"publisher":["Premières Loges"],"language":["fre"],"author_key":["OL3965678A"],"author_name":["Charpentier Gustave"],"id_librarything":["5018328"],"publisher_facet":["Premières Loges"],"_version_":1697074596550803500,"author_facet":["OL3965678A Charpentier Gustave"]}
{"key":"/works/OL10000628W","text":["/works/OL10000628W","Ariodante","OL12624105M","9782843851728","2843851726","Avant-Scene Opéra","OL3965679A","Haendek"],"type":"work","seed":["/books/OL12624105M","/works/OL10000628W","/authors/OL3965679A"],"title":"Ariodante","title_suggest":["Ariodante"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624105M"],"publish_date":["March 20, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782843851728","2843851726"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12624105M","cover_i":3141181,"publisher":["Avant-Scene Opéra"],"author_key":["OL3965679A"],"author_name":["Haendek"],"id_librarything":["3319955"],"publisher_facet":["Avant-Scene Opéra"],"_version_":1697074596200579000,"author_facet":["OL3965679A Haendek"]}
{"key":"/works/OL10000629W","text":["/works/OL10000629W","La vie parisienne","Offenbach, La vie parisienne","Vie parisienne","OL12624107M","OL22483404M","[commentaire littéraire et musical de Jean-Christophe Marti].","Meilhac, Henri, 1831-1897.","Halévy, Ludovic, 1834-1908.","Offenbach, Jacques, 1819-1880.","Marti, Jean-Christophe.","2843851777","9782843851773","Avant-Scene Opéra","Editions Premières Loges","OL3965680A","Offenbach","Analysis, appreciation","Operas","Librettos"],"type":"work","seed":["/books/OL12624107M","/books/OL22483404M","/works/OL10000629W","/subjects/analysis_appreciation","/subjects/operas","/subjects/librettos","/authors/OL3965680A"],"title":"La vie parisienne","title_suggest":["La vie parisienne"],"has_fulltext":false,"edition_count":2,"edition_key":["OL12624107M","OL22483404M"],"publish_date":["December 31, 1999","2002"],"publish_year":[1999,2002],"first_publish_year":1999,"publish_place":["Paris"],"contributor":["Meilhac, Henri, 1831-1897.","Halévy, Ludovic, 1834-1908.","Offenbach, Jacques, 1819-1880.","Marti, Jean-Christophe."],"isbn":["2843851777","9782843851773"],"last_modified_i":1564587304,"ebook_count_i":0,"cover_edition_key":"OL12624107M","cover_i":3141183,"publisher":["Avant-Scene Opéra","Editions Premières Loges"],"language":["fre"],"author_key":["OL3965680A"],"author_name":["Offenbach"],"subject":["Analysis, appreciation","Operas","Librettos"],"id_goodreads":["635148"],"id_librarything":["5031223"],"publisher_facet":["Avant-Scene Opéra","Editions Premières Loges"],"subject_facet":["Analysis, appreciation","Librettos","Operas"],"_version_":1697074596675584000,"author_facet":["OL3965680A Offenbach"],"subject_key":["analysis_appreciation","librettos","operas"]}
{"key":"/works/OL1000062W","text":["/works/OL1000062W","It takes a hero","Geroĭ moego romana","It takes a hero.","It Takes A Hero","roman","OL3387792M","OL24273622M","OL23053713M","Ė̇lizabet Boĭl ; [perevod s angliĭskogo Ė.G. Konovalova].","Elizabeth Boyle.","2004574891","54830552","Copyright Paperback Collection (Library of Congress)","9780061745331","0060549300","9780060549305","9780061128196","9780061128202","0061128201","0061745332","9785170296514","5170296517","9785966015138","5966015139","0061128198","ittakeshero00boyl_0","ittakeshero00boyl_519","Avon Books","AST","Li︠u︡ks","HarperCollins","OL92935A","Elizabeth Boyle","London (England)","Social life and customs","Fiction","Historical Fiction","Romance","Accessible book","Protected DAISY","19th century"],"type":"work","seed":["/books/OL3387792M","/books/OL24273622M","/books/OL23053713M","/works/OL1000062W","/subjects/social_life_and_customs","/subjects/fiction","/subjects/historical_fiction","/subjects/romance","/subjects/place:london_(england)","/subjects/time:19th_century","/authors/OL92935A"],"title":"It takes a hero","title_suggest":["It takes a hero"],"has_fulltext":true,"edition_count":3,"edition_key":["OL3387792M","OL24273622M","OL23053713M"],"publish_date":["2005","2004"],"publish_year":[2004,2005],"first_publish_year":2004,"lccn":["2004574891"],"publish_place":["New York","Moskva"],"oclc":["54830552"],"contributor":["Copyright Paperback Collection (Library of Congress)"],"lcc":["CPB0000.00000000.Box no. 2193 vol. 4"],"isbn":["9780061745331","0060549300","9780060549305","9780061128196","9780061128202","0061128201","0061745332","9785170296514","5170296517","9785966015138","5966015139","0061128198"],"last_modified_i":1607658298,"ebook_count_i":2,"ia":["ittakeshero00boyl_0","ittakeshero00boyl_519"],"public_scan_b":false,"ia_collection_s":"printdisabled;china;internetarchivebooks;librarygenesis","printdisabled_s":"OL24273622M;OL3387792M","cover_edition_key":"OL3387792M","cover_i":28929,"publisher":["Avon Books","AST","Li︠u︡ks","HarperCollins"],"language":["eng","rus"],"author_key":["OL92935A"],"author_name":["Elizabeth Boyle"],"place":["London (England)"],"subject":["Social life and customs","Fiction","Historical Fiction","Romance","Accessible book","Protected DAISY"],"time":["19th century"],"id_goodreads":["35093","5616200"],"id_librarything":["78458"],"id_overdrive":["2915EE5E-0042-44A7-A3B7-F2283ABAE621"],"ia_box_id":["IA1151312"],"publisher_facet":["AST","Avon Books","HarperCollins","Li︠u︡ks"],"place_key":["london_(england)"],"time_facet":["19th century"],"subject_facet":["Accessible book","Fiction","Historical Fiction","Protected DAISY","Romance","Social life and customs"],"_version_":1697074596060070000,"place_facet":["London (England)"],"lcc_sort":"CPB0000.00000000.Box no. 2193 vol. 4","author_facet":["OL92935A Elizabeth Boyle"],"subject_key":["accessible_book","fiction","historical_fiction","protected_daisy","romance","social_life_and_customs"],"time_key":["19th_century"]}
{"key":"/works/OL10000630W","text":["/works/OL10000630W","Les Contes D'Hoffmann","OL13105440M","9638303182","9789638303189","Konemann","OL3965680A","Offenbach"],"type":"work","seed":["/books/OL13105440M","/works/OL10000630W","/authors/OL3965680A"],"title":"Les Contes D'Hoffmann","title_suggest":["Les Contes D'Hoffmann"],"has_fulltext":false,"edition_count":1,"edition_key":["OL13105440M"],"publish_date":["February 1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["9638303182","9789638303189"],"last_modified_i":1294477011,"ebook_count_i":0,"cover_edition_key":"OL13105440M","cover_i":3352878,"publisher":["Konemann"],"language":["eng"],"author_key":["OL3965680A"],"author_name":["Offenbach"],"id_goodreads":["5412572"],"publisher_facet":["Konemann"],"_version_":1697074595865034800,"author_facet":["OL3965680A Offenbach"]}
{"key":"/works/OL10000631W","text":["/works/OL10000631W","Juliette et la cle des songes","Clé des songes","Juliette, ou, La clé des songes","OL12624109M","OL22491669M","Martinů.","Martinů, Bohuslav, 1890-1959.","2843851815","9782843851810","Editions Premières loges","Avant-Scene Opéra","OL3965681A","Martinu","Analysis, appreciation","Operas","Librettos"],"type":"work","seed":["/books/OL12624109M","/books/OL22491669M","/works/OL10000631W","/subjects/analysis_appreciation","/subjects/operas","/subjects/librettos","/authors/OL3965681A"],"title":"Juliette et la cle des songes","title_suggest":["Juliette et la cle des songes"],"has_fulltext":false,"edition_count":2,"edition_key":["OL12624109M","OL22491669M"],"publish_date":["September 23, 2002","2002"],"publish_year":[2002],"first_publish_year":2002,"publish_place":["Paris"],"contributor":["Martinů, Bohuslav, 1890-1959."],"isbn":["2843851815","9782843851810"],"last_modified_i":1564587305,"ebook_count_i":0,"cover_edition_key":"OL12624109M","cover_i":3141185,"publisher":["Editions Premières loges","Avant-Scene Opéra"],"language":["fre"],"author_key":["OL3965681A"],"author_name":["Martinu"],"subject":["Analysis, appreciation","Operas","Librettos"],"id_librarything":["5023741"],"publisher_facet":["Avant-Scene Opéra","Editions Premières loges"],"subject_facet":["Analysis, appreciation","Librettos","Operas"],"_version_":1697074595965698000,"author_facet":["OL3965681A Martinu"],"subject_key":["analysis_appreciation","librettos","operas"]}
{"key":"/works/OL10000632W","text":["/works/OL10000632W","Le coq d or","OL12624110M","9782843851827","2843851823","Avant-Scene Opéra","OL3965682A","Rimski -Korsakov"],"type":"work","seed":["/books/OL12624110M","/works/OL10000632W","/authors/OL3965682A"],"title":"Le coq d or","title_suggest":["Le coq d or"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624110M"],"publish_date":["November 13, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843851827","2843851823"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12624110M","cover_i":3141186,"publisher":["Avant-Scene Opéra"],"language":["fre"],"author_key":["OL3965682A"],"author_name":["Rimski -Korsakov"],"id_goodreads":["5343751"],"id_librarything":["5036506"],"publisher_facet":["Avant-Scene Opéra"],"_version_":1697074596689215500,"author_facet":["OL3965682A Rimski -Korsakov"]}
{"key":"/works/OL10000633W","text":["/works/OL10000633W","Frank Martin, ou, L'insatiable quête","Frank Martin.","Insatiable quête.","OL19496202M","Alain Perroux.","9782940310029","2940310025","Éditions Papillon","OL3965683A","Alain Perroux","Frank Martin (1890-1974)","Switzerland","Composers","Biography"],"type":"work","seed":["/books/OL19496202M","/works/OL10000633W","/subjects/composers","/subjects/biography","/subjects/person:frank_martin_(1890-1974)","/subjects/place:switzerland","/authors/OL3965683A"],"title":"Frank Martin, ou, L'insatiable quête","title_suggest":["Frank Martin, ou, L'insatiable quête"],"has_fulltext":false,"edition_count":1,"edition_key":["OL19496202M"],"publish_date":["2001"],"publish_year":[2001],"first_publish_year":2001,"publish_place":["Genève"],"lcc":["ML-0410.00000000"],"isbn":["9782940310029","2940310025"],"last_modified_i":1282135667,"ebook_count_i":0,"publisher":["Éditions Papillon"],"language":["fre"],"author_key":["OL3965683A"],"author_name":["Alain Perroux"],"person":["Frank Martin (1890-1974)"],"place":["Switzerland"],"subject":["Composers","Biography"],"id_librarything":["5023787"],"publisher_facet":["Éditions Papillon"],"person_key":["frank_martin_(1890-1974)"],"place_key":["switzerland"],"person_facet":["Frank Martin (1890-1974)"],"subject_facet":["Biography","Composers"],"_version_":1697074596021272600,"place_facet":["Switzerland"],"lcc_sort":"ML-0410.00000000","author_facet":["OL3965683A Alain Perroux"],"subject_key":["biography","composers"]}
{"key":"/works/OL10000634W","text":["/works/OL10000634W","Franz Schreker, ou, A la recherche du son lointain","A la recherche du son lointain","OL19872949M","Alain Perroux.","2940310149","9782940310142","Editions Papillon","OL3965683A","Alain Perroux","Franz Schreker (1878-1934)","Austria","Composers","Biography"],"type":"work","seed":["/books/OL19872949M","/works/OL10000634W","/subjects/composers","/subjects/biography","/subjects/person:franz_schreker_(1878-1934)","/subjects/place:austria","/authors/OL3965683A"],"title":"Franz Schreker, ou, A la recherche du son lointain","title_suggest":["Franz Schreker, ou, A la recherche du son lointain"],"has_fulltext":false,"edition_count":1,"edition_key":["OL19872949M"],"publish_date":["2001"],"publish_year":[2001],"first_publish_year":2001,"publish_place":["Genève"],"lcc":["ML-0410.00000000.S288 P48 2001"],"isbn":["2940310149","9782940310142"],"last_modified_i":1279636588,"ebook_count_i":0,"publisher":["Editions Papillon"],"language":["fre"],"author_key":["OL3965683A"],"author_name":["Alain Perroux"],"person":["Franz Schreker (1878-1934)"],"place":["Austria"],"subject":["Composers","Biography"],"publisher_facet":["Editions Papillon"],"person_key":["franz_schreker_(1878-1934)"],"place_key":["austria"],"person_facet":["Franz Schreker (1878-1934)"],"subject_facet":["Biography","Composers"],"_version_":1697074595737108500,"place_facet":["Austria"],"lcc_sort":"ML-0410.00000000.S288 P48 2001","author_facet":["OL3965683A Alain Perroux"],"subject_key":["biography","composers"]}
{"key":"/works/OL10000635W","text":["/works/OL10000635W","L'Opéra mode d'emploi","OL12624112M","2001442436","9782843851940","2843851947","Premières Loges","OL3965683A","Alain Perroux","Opera","Handbooks, manuals"],"type":"work","seed":["/books/OL12624112M","/works/OL10000635W","/subjects/opera","/subjects/handbooks_manuals","/authors/OL3965683A"],"title":"L'Opéra mode d'emploi","title_suggest":["L'Opéra mode d'emploi"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624112M"],"publish_date":["November 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"lccn":["2001442436"],"lcc":["ML-1700.00000000.P44 2001"],"isbn":["9782843851940","2843851947"],"last_modified_i":1607154670,"ebook_count_i":0,"cover_edition_key":"OL12624112M","cover_i":3141188,"publisher":["Premières Loges"],"author_key":["OL3965683A"],"author_name":["Alain Perroux"],"subject":["Opera","Handbooks, manuals"],"id_librarything":["5047126"],"publisher_facet":["Premières Loges"],"subject_facet":["Handbooks, manuals","Opera"],"_version_":1697074595924803600,"lcc_sort":"ML-1700.00000000.P44 2001","author_facet":["OL3965683A Alain Perroux"],"subject_key":["handbooks_manuals","opera"]}
{"key":"/works/OL10000636W","text":["/works/OL10000636W","Melophiles, vol. 11: Franz Schreker","OL19730568M","2940310149","9782940310142","Editions Papillon","OL3965683A","Alain Perroux"],"type":"work","seed":["/books/OL19730568M","/works/OL10000636W","/authors/OL3965683A"],"title":"Melophiles, vol. 11: Franz Schreker","title_suggest":["Melophiles, vol. 11: Franz Schreker"],"has_fulltext":false,"edition_count":1,"edition_key":["OL19730568M"],"publish_place":["Geneve"],"isbn":["2940310149","9782940310142"],"last_modified_i":1260859208,"ebook_count_i":0,"publisher":["Editions Papillon"],"language":["fre"],"author_key":["OL3965683A"],"author_name":["Alain Perroux"],"publisher_facet":["Editions Papillon"],"_version_":1697074596677681200,"author_facet":["OL3965683A Alain Perroux"]}
{"key":"/works/OL10000637W","text":["/works/OL10000637W","L'arche de Noé (CD)","OL12624117M","2843900042","9782843900044","Le Sablier","OL3965684A","Hugues Martel"],"type":"work","seed":["/books/OL12624117M","/works/OL10000637W","/authors/OL3965684A"],"title":"L'arche de Noé (CD)","title_suggest":["L'arche de Noé (CD)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624117M"],"publish_date":["January 30, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["2843900042","9782843900044"],"last_modified_i":1260840403,"ebook_count_i":0,"publisher":["Le Sablier"],"author_key":["OL3965684A"],"author_name":["Hugues Martel"],"publisher_facet":["Le Sablier"],"_version_":1697074596515152000,"author_facet":["OL3965684A Hugues Martel"]}
{"key":"/works/OL10000638W","text":["/works/OL10000638W","B-A BA des mégalithes","OL12636033M","9782867142147","2867142148","Pardès","OL3965688A","Philibert"],"type":"work","seed":["/books/OL12636033M","/works/OL10000638W","/authors/OL3965688A"],"title":"B-A BA des mégalithes","title_suggest":["B-A BA des mégalithes"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12636033M"],"publish_date":["March 31, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782867142147","2867142148"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12636033M","cover_i":3151085,"publisher":["Pardès"],"language":["fre"],"author_key":["OL3965688A"],"author_name":["Philibert"],"publisher_facet":["Pardès"],"_version_":1697074596476354600,"author_facet":["OL3965688A Philibert"]}
{"key":"/works/OL10000639W","text":["/works/OL10000639W","Coucou ! Caché au bord de la mer","OL12624127M","406670081","2843900565","9782843900563","Le Sablier Editions","OL3965692A","Nathalie Pautrat"],"type":"work","seed":["/books/OL12624127M","/works/OL10000639W","/authors/OL3965692A"],"title":"Coucou ! Caché au bord de la mer","title_suggest":["Coucou ! Caché au bord de la mer"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624127M"],"publish_date":["April 29, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["406670081"],"isbn":["2843900565","9782843900563"],"last_modified_i":1303926575,"ebook_count_i":0,"cover_edition_key":"OL12624127M","cover_i":3141200,"publisher":["Le Sablier Editions"],"author_key":["OL3965692A"],"author_name":["Nathalie Pautrat"],"id_goodreads":["6074289"],"publisher_facet":["Le Sablier Editions"],"_version_":1697074596556046300,"author_facet":["OL3965692A Nathalie Pautrat"]}
{"key":"/works/OL1000063W","text":["/works/OL1000063W","Love Letters From a Duke","OL24262540M","OL7281678M","2009484558","148886354","0060784032","9780061471933","9780061471940","0061747122","0061471933","9780060784034","0061471941","9780061747120","lovelettersfromd00boyl","lovelettersfromd00boyl_553","HarperCollins","Avon","OL92935A","Elizabeth Boyle","England","Impostors and imposture","Fiction","Romance","Betrothal","Historical Fiction","Love-letters","Nobility","History","Class consciousness","Household employees","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL24262540M","/books/OL7281678M","/works/OL1000063W","/subjects/impostors_and_imposture","/subjects/fiction","/subjects/romance","/subjects/betrothal","/subjects/historical_fiction","/subjects/love-letters","/subjects/nobility","/subjects/history","/subjects/class_consciousness","/subjects/household_employees","/subjects/place:england","/authors/OL92935A"],"title":"Love Letters From a Duke","title_suggest":["Love Letters From a Duke"],"has_fulltext":true,"edition_count":2,"edition_key":["OL24262540M","OL7281678M"],"publish_date":["September 2007","2007"],"publish_year":[2007],"first_publish_year":2007,"lccn":["2009484558"],"publish_place":["New York","New York, USA"],"oclc":["148886354"],"lcc":["CPB0000.00000000.Box no. 3019 vol. 11"],"isbn":["0060784032","9780061471933","9780061471940","0061747122","0061471933","9780060784034","0061471941","9780061747120"],"last_modified_i":1603964061,"ebook_count_i":2,"ia":["lovelettersfromd00boyl","lovelettersfromd00boyl_553"],"public_scan_b":false,"ia_collection_s":"americana;printdisabled;china;delawarecountydistrictlibrary;internetarchivebooks;librarygenesis","printdisabled_s":"OL24262540M;OL7281678M","cover_edition_key":"OL7281678M","cover_i":4941025,"publisher":["HarperCollins","Avon"],"language":["eng"],"author_key":["OL92935A"],"author_name":["Elizabeth Boyle"],"place":["England"],"subject":["Impostors and imposture","Fiction","Romance","Betrothal","Historical Fiction","Love-letters","Nobility","History","Class consciousness","Household employees","Accessible book","Protected DAISY"],"id_goodreads":["551507"],"id_librarything":["3349049"],"id_overdrive":["304473C0-E908-4CCB-8343-8F690CE7EA46"],"ia_loaded_id":["lovelettersfromd00boyl"],"ia_box_id":["IA171901"],"publisher_facet":["Avon","HarperCollins"],"place_key":["england"],"subject_facet":["Accessible book","Betrothal","Class consciousness","Fiction","Historical Fiction","History","Household employees","Impostors and imposture","Love-letters","Nobility","Protected DAISY","Romance"],"_version_":1697074596323262500,"place_facet":["England"],"lcc_sort":"CPB0000.00000000.Box no. 3019 vol. 11","author_facet":["OL92935A Elizabeth Boyle"],"subject_key":["accessible_book","betrothal","class_consciousness","fiction","historical_fiction","history","household_employees","impostors_and_imposture","love-letters","nobility","protected_daisy","romance"]}
{"key":"/works/OL10000640W","text":["/works/OL10000640W","Les Comptines de l'alphabet","OL12624133M","9782843900730","2843900735","Le Sablier Editions","OL3965692A","Nathalie Pautrat"],"type":"work","seed":["/books/OL12624133M","/works/OL10000640W","/authors/OL3965692A"],"title":"Les Comptines de l'alphabet","title_suggest":["Les Comptines de l'alphabet"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624133M"],"publish_date":["April 29, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843900730","2843900735"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624133M","cover_i":3141205,"publisher":["Le Sablier Editions"],"author_key":["OL3965692A"],"author_name":["Nathalie Pautrat"],"id_goodreads":["6074290"],"publisher_facet":["Le Sablier Editions"],"_version_":1697074596552900600,"author_facet":["OL3965692A Nathalie Pautrat"]}
{"key":"/works/OL10000641W","text":["/works/OL10000641W","Coucou ! Caché dans la forêt","Coucou ! Caché dans la forêt ","Mais où vivent les animaux de la forêt ? (1 livre + 1 CD audio)","OL12624129M","OL12624128M","45620509","9782843900570","9782843900624","284390062X","2843900573","Le Sablier Editions","OL3965692A","Nathalie Pautrat"],"type":"work","seed":["/books/OL12624129M","/books/OL12624128M","/works/OL10000641W","/authors/OL3965692A"],"title":"Coucou ! Caché dans la forêt","title_suggest":["Coucou ! Caché dans la forêt"],"has_fulltext":false,"edition_count":2,"edition_key":["OL12624129M","OL12624128M"],"publish_date":["April 29, 2002","July 12, 2000"],"publish_year":[2000,2002],"first_publish_year":2000,"oclc":["45620509"],"isbn":["9782843900570","9782843900624","284390062X","2843900573"],"last_modified_i":1307525946,"ebook_count_i":0,"cover_edition_key":"OL12624129M","cover_i":3141202,"publisher":["Le Sablier Editions"],"language":["fre"],"author_key":["OL3965692A"],"author_name":["Nathalie Pautrat"],"id_goodreads":["6074288","6074287"],"publisher_facet":["Le Sablier Editions"],"_version_":1697074596100964400,"author_facet":["OL3965692A Nathalie Pautrat"]}
{"key":"/works/OL10000642W","text":["/works/OL10000642W","Marchand de sable livre CD","OL12624132M","9782843900723","2843900727","Le Sablier","OL3965693A","Stein Aubert"],"type":"work","seed":["/books/OL12624132M","/works/OL10000642W","/authors/OL3965693A"],"title":"Marchand de sable livre CD","title_suggest":["Marchand de sable livre CD"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624132M"],"publish_date":["October 16, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782843900723","2843900727"],"last_modified_i":1260840403,"ebook_count_i":0,"publisher":["Le Sablier"],"language":["fre"],"author_key":["OL3965693A"],"author_name":["Stein Aubert"],"publisher_facet":["Le Sablier"],"_version_":1697074595976183800,"author_facet":["OL3965693A Stein Aubert"]}
{"key":"/works/OL10000643W","text":["/works/OL10000643W","La mouche qui a piqué Koto (Livre et CD)","OL12624139M","421792185","2843900891","9782843900891","Le Sablier Editions","OL3965696A","Frédérique Mousset"],"type":"work","seed":["/books/OL12624139M","/works/OL10000643W","/authors/OL3965696A"],"title":"La mouche qui a piqué Koto (Livre et CD)","title_suggest":["La mouche qui a piqué Koto (Livre et CD)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624139M"],"publish_date":["April 29, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["421792185"],"isbn":["2843900891","9782843900891"],"last_modified_i":1303989960,"ebook_count_i":0,"cover_edition_key":"OL12624139M","cover_i":3141211,"publisher":["Le Sablier Editions"],"author_key":["OL3965696A"],"author_name":["Frédérique Mousset"],"publisher_facet":["Le Sablier Editions"],"_version_":1697074595939483600,"author_facet":["OL3965696A Frédérique Mousset"]}
{"key":"/works/OL10000644W","text":["/works/OL10000644W","Eléphant et compagnie","OL12624141M","9782843900969","2843900964","Le Sablier","OL3965697A","Françoise Malaval"],"type":"work","seed":["/books/OL12624141M","/works/OL10000644W","/authors/OL3965697A"],"title":"Eléphant et compagnie","title_suggest":["Eléphant et compagnie"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624141M"],"publish_date":["October 2, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843900969","2843900964"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624141M","cover_i":3141213,"publisher":["Le Sablier"],"author_key":["OL3965697A"],"author_name":["Françoise Malaval"],"id_goodreads":["6107773"],"publisher_facet":["Le Sablier"],"_version_":1697074596054827000,"author_facet":["OL3965697A Françoise Malaval"]}
{"key":"/works/OL10000645W","text":["/works/OL10000645W","Jardin sauvage","OL12624144M","470292139","2843901189","9782843901188","Le Sablier","OL3965698A","Karpouc Stein-Aubert"],"type":"work","seed":["/books/OL12624144M","/works/OL10000645W","/authors/OL3965698A"],"title":"Jardin sauvage","title_suggest":["Jardin sauvage"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624144M"],"publish_date":["April 19, 2003"],"publish_year":[2003],"first_publish_year":2003,"oclc":["470292139"],"isbn":["2843901189","9782843901188"],"last_modified_i":1307514585,"ebook_count_i":0,"cover_edition_key":"OL12624144M","cover_i":3141216,"publisher":["Le Sablier"],"language":["fre"],"author_key":["OL3965698A"],"author_name":["Karpouc Stein-Aubert"],"publisher_facet":["Le Sablier"],"_version_":1697074595985621000,"author_facet":["OL3965698A Karpouc Stein-Aubert"]}
{"key":"/works/OL10000646W","text":["/works/OL10000646W","Les trois couleurs","trois couleurs","France, son histoire","OL18093958M","imagé par Job.","Librairie Félix Juven","OL3965699A","G. Montorgueil"],"type":"work","seed":["/books/OL18093958M","/works/OL10000646W","/authors/OL3965699A"],"title":"Les trois couleurs","title_suggest":["Les trois couleurs"],"has_fulltext":false,"edition_count":1,"edition_key":["OL18093958M"],"publish_place":["Paris"],"last_modified_i":1260854209,"ebook_count_i":0,"publisher":["Librairie Félix Juven"],"language":["fre"],"author_key":["OL3965699A"],"author_name":["G. Montorgueil"],"publisher_facet":["Librairie Félix Juven"],"_version_":1697074596740595700,"author_facet":["OL3965699A G. Montorgueil"]}
{"key":"/works/OL10000647W","text":["/works/OL10000647W","Napoléon","OL12624146M","2843940141","9782843940149","Atlantica","OL3965699A","G. Montorgueil"],"type":"work","seed":["/books/OL12624146M","/works/OL10000647W","/authors/OL3965699A"],"title":"Napoléon","title_suggest":["Napoléon"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624146M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2843940141","9782843940149"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624146M","cover_i":3141217,"publisher":["Atlantica"],"language":["fre"],"author_key":["OL3965699A"],"author_name":["G. Montorgueil"],"id_goodreads":["6091796"],"publisher_facet":["Atlantica"],"_version_":1697074596582260700,"author_facet":["OL3965699A G. Montorgueil"]}
{"key":"/works/OL10000648W","text":["/works/OL10000648W","L'Entrainement","L'Entrainement ","Méthodologie, tome 3","OL12624148M","9782843940422","2843940427","Atlantica","OL3965700A","Philippe Hellard"],"type":"work","seed":["/books/OL12624148M","/works/OL10000648W","/authors/OL3965700A"],"title":"L'Entrainement","title_suggest":["L'Entrainement"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624148M"],"publish_date":["January 1, 1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["9782843940422","2843940427"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624148M","cover_i":3141219,"publisher":["Atlantica"],"language":["fre"],"author_key":["OL3965700A"],"author_name":["Philippe Hellard"],"publisher_facet":["Atlantica"],"_version_":1697074596141858800,"author_facet":["OL3965700A Philippe Hellard"]}
{"key":"/works/OL10000649W","text":["/works/OL10000649W","L'Entraînement, tome 2","L'Entraînement, tome 2 ","Analyse de l'activité","OL12624147M","2843940419","9782843940415","Atlantica","OL3965700A","Philippe Hellard"],"type":"work","seed":["/books/OL12624147M","/works/OL10000649W","/authors/OL3965700A"],"title":"L'Entraînement, tome 2","title_suggest":["L'Entraînement, tome 2"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624147M"],"publish_date":["October 1, 1997"],"publish_year":[1997],"first_publish_year":1997,"isbn":["2843940419","9782843940415"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624147M","cover_i":3141218,"publisher":["Atlantica"],"language":["fre"],"author_key":["OL3965700A"],"author_name":["Philippe Hellard"],"publisher_facet":["Atlantica"],"_version_":1697074596737450000,"author_facet":["OL3965700A Philippe Hellard"]}
{"key":"/works/OL1000064W","text":["/works/OL1000064W","One night of passion","One Night of Passion","OL3384245M","OL3578953M","OL24251674M","Elizabeth Boyle.","2002192582","2004563289","50134566","50898684","Copyright Paperback Collection (Library of Congress)","0061753858","0786249900","0380820897","9780061128189","9780061753855","0061128171","9780786249909","9780061128172","9780380820894","006112818X","onenightpassiona00boyl","onenightofpassio0000boyl","onenightofpassio00boyl_1","Avon Books","HarperCollins","Thorndike Press","OL92935A","Elizabeth Boyle","London (England)","Fiction","Historical Fiction","Romance","Social life and customs","Manners and customs","Large type books","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL3384245M","/books/OL3578953M","/books/OL24251674M","/works/OL1000064W","/subjects/fiction","/subjects/historical_fiction","/subjects/romance","/subjects/social_life_and_customs","/subjects/manners_and_customs","/subjects/large_type_books","/subjects/place:london_(england)","/authors/OL92935A"],"title":"One night of passion","title_suggest":["One night of passion"],"has_fulltext":true,"edition_count":3,"edition_key":["OL3384245M","OL3578953M","OL24251674M"],"publish_date":["2003","2005","2002"],"publish_year":[2003,2002,2005],"first_publish_year":2002,"lccn":["2002192582","2004563289"],"publish_place":["Waterville, Me","New York"],"oclc":["50134566","50898684"],"contributor":["Copyright Paperback Collection (Library of Congress)"],"lcc":["PS-3552.00000000.O923 O54 2003","CPB0000.00000000.Box no. 2101 vol. 3"],"ddc":["813.54"],"isbn":["0061753858","0786249900","0380820897","9780061128189","9780061753855","0061128171","9780786249909","9780061128172","9780380820894","006112818X"],"last_modified_i":1607202900,"ebook_count_i":3,"ia":["onenightpassiona00boyl","onenightofpassio0000boyl","onenightofpassio00boyl_1"],"public_scan_b":false,"ia_collection_s":"china;librarygenesis;fav-sheree20;fav-shadybrig;inlibrary;printdisabled;internetarchivebooks;delawarecountydistrictlibrary-ol","lending_edition_s":"OL3384245M","lending_identifier_s":"onenightofpassio0000boyl","printdisabled_s":"OL24251674M;OL3578953M;OL3384245M","cover_edition_key":"OL3384245M","cover_i":237497,"publisher":["Avon Books","HarperCollins","Thorndike Press"],"language":["eng"],"author_key":["OL92935A"],"author_name":["Elizabeth Boyle"],"place":["London (England)"],"subject":["Fiction","Historical Fiction","Romance","Social life and customs","Manners and customs","Large type books","Accessible book","Protected DAISY"],"id_goodreads":["3702377","345015"],"id_librarything":["79018"],"id_overdrive":["6CE7366C-B6D3-4C9F-95E1-32BE923996CD"],"ia_box_id":["IA1153411","IA1919019"],"publisher_facet":["Avon Books","HarperCollins","Thorndike Press"],"place_key":["london_(england)"],"subject_facet":["Accessible book","Fiction","Historical Fiction","Large type books","Manners and customs","Protected DAISY","Romance","Social life and customs"],"_version_":1697074596110401500,"place_facet":["London (England)"],"lcc_sort":"CPB0000.00000000.Box no. 2101 vol. 3","author_facet":["OL92935A Elizabeth Boyle"],"subject_key":["accessible_book","fiction","historical_fiction","large_type_books","manners_and_customs","protected_daisy","romance","social_life_and_customs"],"ddc_sort":"813.54"}
{"key":"/works/OL10000650W","text":["/works/OL10000650W","Même pas peur des loups!","OL12624150M","468853146","2843940958","9782843940958","Atlantica","OL3965701A","Aurore Giscard D'Estaing"],"type":"work","seed":["/books/OL12624150M","/works/OL10000650W","/authors/OL3965701A"],"title":"Même pas peur des loups!","title_suggest":["Même pas peur des loups!"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624150M"],"publish_date":["November 1, 1998"],"publish_year":[1998],"first_publish_year":1998,"oclc":["468853146"],"isbn":["2843940958","9782843940958"],"last_modified_i":1304181053,"ebook_count_i":0,"publisher":["Atlantica"],"language":["fre"],"author_key":["OL3965701A"],"author_name":["Aurore Giscard D'Estaing"],"id_goodreads":["5444909"],"publisher_facet":["Atlantica"],"_version_":1697074596590649300,"author_facet":["OL3965701A Aurore Giscard D'Estaing"]}
{"key":"/works/OL10000651W","text":["/works/OL10000651W","Même pas peur des requins!","OL12624151M","468446018","9782843940965","2843940966","Atlantica","OL3965701A","Aurore Giscard D'Estaing"],"type":"work","seed":["/books/OL12624151M","/works/OL10000651W","/authors/OL3965701A"],"title":"Même pas peur des requins!","title_suggest":["Même pas peur des requins!"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624151M"],"publish_date":["November 1, 1998"],"publish_year":[1998],"first_publish_year":1998,"oclc":["468446018"],"isbn":["9782843940965","2843940966"],"last_modified_i":1304070452,"ebook_count_i":0,"publisher":["Atlantica"],"author_key":["OL3965701A"],"author_name":["Aurore Giscard D'Estaing"],"id_goodreads":["5444910"],"publisher_facet":["Atlantica"],"_version_":1697074596362059800,"author_facet":["OL3965701A Aurore Giscard D'Estaing"]}
{"key":"/works/OL10000652W","text":["/works/OL10000652W","Même pas peur des serpents !","OL12624152M","468853140","2843940974","9782843940972","Atlantica","OL3965702A","Aurore Giscard d'Estaing"],"type":"work","seed":["/books/OL12624152M","/works/OL10000652W","/authors/OL3965702A"],"title":"Même pas peur des serpents !","title_suggest":["Même pas peur des serpents !"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624152M"],"publish_date":["November 1, 1998"],"publish_year":[1998],"first_publish_year":1998,"oclc":["468853140"],"isbn":["2843940974","9782843940972"],"last_modified_i":1303954014,"ebook_count_i":0,"cover_edition_key":"OL12624152M","cover_i":3141220,"publisher":["Atlantica"],"language":["fre"],"author_key":["OL3965702A"],"author_name":["Aurore Giscard d'Estaing"],"id_goodreads":["3161188"],"publisher_facet":["Atlantica"],"_version_":1697074596457480200,"author_facet":["OL3965702A Aurore Giscard d'Estaing"]}
{"key":"/works/OL10000653W","text":["/works/OL10000653W","Ivan Lacković Croata","OL19156297M","Jean-Louis Depierris ; prijevod s francuskog Đurđa Šimko-Depierris.","224570873","Lacković, Ivan, 1932-","Biškupić, Božo.","9789536660001","9536660008","Hrvatski muzej naivne umjetnosti","OL3965703A","Jean-Louis Depierris","Ivan Lacković (1932-)","Croatia","Primitivism in art","Criticism and interpretation"],"type":"work","seed":["/books/OL19156297M","/works/OL10000653W","/subjects/primitivism_in_art","/subjects/criticism_and_interpretation","/subjects/person:ivan_lacković_(1932-)","/subjects/place:croatia","/authors/OL3965703A"],"title":"Ivan Lacković Croata","title_suggest":["Ivan Lacković Croata"],"has_fulltext":false,"edition_count":1,"edition_key":["OL19156297M"],"publish_date":["1997"],"publish_year":[1997],"first_publish_year":1997,"publish_place":["Zagreb"],"oclc":["224570873"],"contributor":["Lacković, Ivan, 1932-","Biškupić, Božo."],"lcc":["N--7253.00000000.L25 .D46 1997"],"isbn":["9789536660001","9536660008"],"last_modified_i":1303863822,"ebook_count_i":0,"publisher":["Hrvatski muzej naivne umjetnosti"],"language":["scr"],"author_key":["OL3965703A"],"author_name":["Jean-Louis Depierris"],"person":["Ivan Lacković (1932-)"],"place":["Croatia"],"subject":["Primitivism in art","Criticism and interpretation"],"publisher_facet":["Hrvatski muzej naivne umjetnosti"],"person_key":["ivan_lacković_(1932-)"],"place_key":["croatia"],"person_facet":["Ivan Lacković (1932-)"],"subject_facet":["Criticism and interpretation","Primitivism in art"],"_version_":1697074596025467000,"place_facet":["Croatia"],"lcc_sort":"N--7253.00000000.L25 .D46 1997","author_facet":["OL3965703A Jean-Louis Depierris"],"subject_key":["criticism_and_interpretation","primitivism_in_art"]}
{"key":"/works/OL10000654W","text":["/works/OL10000654W","Shahla Moazzezi. 41 illustrations en couleur","OL12624155M","42963306","2843941350","9782843941351","Atlantica","OL3965703A","Jean-Louis Depierris"],"type":"work","seed":["/books/OL12624155M","/works/OL10000654W","/authors/OL3965703A"],"title":"Shahla Moazzezi. 41 illustrations en couleur","title_suggest":["Shahla Moazzezi. 41 illustrations en couleur"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624155M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["42963306"],"isbn":["2843941350","9782843941351"],"last_modified_i":1304048529,"ebook_count_i":0,"publisher":["Atlantica"],"language":["fre"],"author_key":["OL3965703A"],"author_name":["Jean-Louis Depierris"],"id_goodreads":["6863038"],"publisher_facet":["Atlantica"],"_version_":1697074596183801900,"author_facet":["OL3965703A Jean-Louis Depierris"]}
{"key":"/works/OL10000655W","text":["/works/OL10000655W","Gaston Fébus par Alexandre Dumas","OL12624158M","2005534149","2843942381","9782843942389","Main courante","OL3965708A","Pierre Tucco-Chala","Fiction"],"type":"work","seed":["/books/OL12624158M","/works/OL10000655W","/subjects/fiction","/authors/OL3965708A"],"title":"Gaston Fébus par Alexandre Dumas","title_suggest":["Gaston Fébus par Alexandre Dumas"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624158M"],"publish_date":["April 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"lccn":["2005534149"],"lcc":["PQ-2227.00000000.M77 2000"],"isbn":["2843942381","9782843942389"],"last_modified_i":1607892023,"ebook_count_i":0,"cover_edition_key":"OL12624158M","cover_i":3141223,"publisher":["Main courante"],"language":["fre"],"author_key":["OL3965708A"],"author_name":["Pierre Tucco-Chala"],"subject":["Fiction"],"publisher_facet":["Main courante"],"subject_facet":["Fiction"],"_version_":1697074596247765000,"lcc_sort":"PQ-2227.00000000.M77 2000","author_facet":["OL3965708A Pierre Tucco-Chala"],"subject_key":["fiction"]}
{"key":"/works/OL10000656W","text":["/works/OL10000656W","Autrefois Anglet","Autrefois Anglet ","Receuil de cartes postales anciennes","OL12624159M","2843942829","9782843942822","Atlantica","OL3965709A","Philippe Salquan"],"type":"work","seed":["/books/OL12624159M","/works/OL10000656W","/authors/OL3965709A"],"title":"Autrefois Anglet","title_suggest":["Autrefois Anglet"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624159M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2843942829","9782843942822"],"last_modified_i":1260840403,"ebook_count_i":0,"publisher":["Atlantica"],"language":["fre"],"author_key":["OL3965709A"],"author_name":["Philippe Salquan"],"publisher_facet":["Atlantica"],"_version_":1697074596476354600,"author_facet":["OL3965709A Philippe Salquan"]}
{"key":"/works/OL10000657W","text":["/works/OL10000657W","Histoires de maillot","Histoires de maillot ","football","OL12624160M","2843942942","9782843942945","Atlantica","OL3965710A","Nicolas Jeanneau"],"type":"work","seed":["/books/OL12624160M","/works/OL10000657W","/authors/OL3965710A"],"title":"Histoires de maillot","title_suggest":["Histoires de maillot"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624160M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2843942942","9782843942945"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624160M","cover_i":3141225,"publisher":["Atlantica"],"author_key":["OL3965710A"],"author_name":["Nicolas Jeanneau"],"publisher_facet":["Atlantica"],"_version_":1697074596308582400,"author_facet":["OL3965710A Nicolas Jeanneau"]}
{"key":"/works/OL10000658W","text":["/works/OL10000658W","L' eau et l'Union européenne","un guide sur la politique, sa mise en oeuvre et ses instruments","OL16903926M","Ivan Conesa Alcolea, Mathieu Bousquet.","2002508805","Bousquet, Mathieu.","Institut français de recherche pour l'exploitation de la mer.","CLORA.","2844330622","9782844330628","Diffusion, ALT Brest","IFREMER","OL3965711A","Ivan Conesa Alcolea","European Union countries","Government policy","Water-supply","Water resources development"],"type":"work","seed":["/books/OL16903926M","/works/OL10000658W","/subjects/government_policy","/subjects/water-supply","/subjects/water_resources_development","/subjects/place:european_union_countries","/authors/OL3965711A"],"title":"L' eau et l'Union européenne","title_suggest":["L' eau et l'Union européenne"],"has_fulltext":false,"edition_count":1,"edition_key":["OL16903926M"],"publish_date":["2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2002508805"],"publish_place":["Plouzané","Brest"],"contributor":["Bousquet, Mathieu.","Institut français de recherche pour l'exploitation de la mer.","CLORA."],"lcc":["HD-1697.00000000.A5 C66 2001"],"ddc":["333.910094"],"isbn":["2844330622","9782844330628"],"last_modified_i":1607360231,"ebook_count_i":0,"publisher":["Diffusion, ALT Brest","IFREMER"],"language":["fre"],"author_key":["OL3965711A"],"author_name":["Ivan Conesa Alcolea"],"place":["European Union countries"],"subject":["Government policy","Water-supply","Water resources development"],"publisher_facet":["Diffusion, ALT Brest","IFREMER"],"place_key":["european_union_countries"],"subject_facet":["Government policy","Water resources development","Water-supply"],"_version_":1697074596494180400,"place_facet":["European Union countries"],"lcc_sort":"HD-1697.00000000.A5 C66 2001","author_facet":["OL3965711A Ivan Conesa Alcolea"],"subject_key":["government_policy","water-supply","water_resources_development"],"ddc_sort":"333.910094"}
{"key":"/works/OL10000659W","text":["/works/OL10000659W","Zumeta","OL12624161M","2002423710","2843942977","9782843942976","Atlantica","OL3965711A","Ivan Conesa Alcolea","Exhibitions"],"type":"work","seed":["/books/OL12624161M","/works/OL10000659W","/subjects/exhibitions","/authors/OL3965711A"],"title":"Zumeta","title_suggest":["Zumeta"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624161M"],"publish_date":["January 2002"],"publish_year":[2002],"first_publish_year":2002,"lccn":["2002423710"],"lcc":["ND-0813.00000000.Z82 A4 2002"],"isbn":["2843942977","9782843942976"],"last_modified_i":1607329200,"ebook_count_i":0,"publisher":["Atlantica"],"language":["fre"],"author_key":["OL3965711A"],"author_name":["Ivan Conesa Alcolea"],"subject":["Exhibitions"],"publisher_facet":["Atlantica"],"subject_facet":["Exhibitions"],"_version_":1697074596683972600,"lcc_sort":"ND-0813.00000000.Z82 A4 2002","author_facet":["OL3965711A Ivan Conesa Alcolea"],"subject_key":["exhibitions"]}
{"key":"/works/OL1000065W","text":["/works/OL1000065W","Stealing the bride","Stealing the Bride","OL3386039M","OL3690782M","OL24256351M","Elizabeth Boyle.","2003060824","2004573014","52535947","Copyright Paperback Collection (Library of Congress)","006112821X","0786259752","0061752746","9780061128219","9780380820900","0061128082","9780061128080","9780061752742","0380820900","9780786259755","stealingbride00boyl_0","stealingbrideavo00boyl","Avon Books","HarperCollins","Thorndike Press","OL92935A","Elizabeth Boyle","Fiction","Historical Fiction","Romance","Large type books","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL3386039M","/books/OL3690782M","/books/OL24256351M","/works/OL1000065W","/subjects/fiction","/subjects/historical_fiction","/subjects/romance","/subjects/large_type_books","/authors/OL92935A"],"title":"Stealing the bride","title_suggest":["Stealing the bride"],"has_fulltext":true,"edition_count":3,"edition_key":["OL3386039M","OL3690782M","OL24256351M"],"publish_date":["2003","2005"],"publish_year":[2003,2005],"first_publish_year":2003,"lccn":["2003060824","2004573014"],"publish_place":["Waterville, Me","New York"],"oclc":["52535947"],"contributor":["Copyright Paperback Collection (Library of Congress)"],"lcc":["CPB0000.00000000.Box no. 2137 vol. 14","PS-3552.00000000.O923 S74 2003b"],"ddc":["813.54"],"isbn":["006112821X","0786259752","0061752746","9780061128219","9780380820900","0061128082","9780061128080","9780061752742","0380820900","9780786259755"],"last_modified_i":1607657522,"ebook_count_i":2,"ia":["stealingbride00boyl_0","stealingbrideavo00boyl"],"public_scan_b":false,"ia_collection_s":"printdisabled;china;internetarchivebooks;librarygenesis","printdisabled_s":"OL24256351M;OL3386039M","cover_edition_key":"OL3386039M","cover_i":237498,"publisher":["Avon Books","HarperCollins","Thorndike Press"],"language":["eng"],"author_key":["OL92935A"],"author_name":["Elizabeth Boyle"],"subject":["Fiction","Historical Fiction","Romance","Large type books","Accessible book","Protected DAISY"],"id_goodreads":["344998","6458138"],"id_librarything":["79453"],"id_overdrive":["CE170A3A-5216-4067-A8A3-587D9F773C17"],"ia_box_id":["IA1305802"],"publisher_facet":["Avon Books","HarperCollins","Thorndike Press"],"subject_facet":["Accessible book","Fiction","Historical Fiction","Large type books","Protected DAISY","Romance"],"_version_":1697074596399808500,"lcc_sort":"CPB0000.00000000.Box no. 2137 vol. 14","author_facet":["OL92935A Elizabeth Boyle"],"subject_key":["accessible_book","fiction","historical_fiction","large_type_books","protected_daisy","romance"],"ddc_sort":"813.54"}
{"key":"/works/OL10000660W","text":["/works/OL10000660W","Chimborazo","OL12624164M","2843943310","9782843943317","Atlantica-Séguier","OL3965714A","Marc Gabas"],"type":"work","seed":["/books/OL12624164M","/works/OL10000660W","/authors/OL3965714A"],"title":"Chimborazo","title_suggest":["Chimborazo"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624164M"],"publish_date":["September 24, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2843943310","9782843943317"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624164M","cover_i":3141226,"publisher":["Atlantica-Séguier"],"language":["fre"],"author_key":["OL3965714A"],"author_name":["Marc Gabas"],"publisher_facet":["Atlantica-Séguier"],"_version_":1697074595814703000,"author_facet":["OL3965714A Marc Gabas"]}
{"key":"/works/OL10000661W","text":["/works/OL10000661W","La Route des palombes","OL12624165M","470276408","2843943361","9782843943362","Atlantica-Séguier","OL3965715A","Pierre Verdet"],"type":"work","seed":["/books/OL12624165M","/works/OL10000661W","/authors/OL3965715A"],"title":"La Route des palombes","title_suggest":["La Route des palombes"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624165M"],"publish_date":["September 27, 2001"],"publish_year":[2001],"first_publish_year":2001,"oclc":["470276408"],"isbn":["2843943361","9782843943362"],"last_modified_i":1307518863,"ebook_count_i":0,"cover_edition_key":"OL12624165M","cover_i":3141227,"publisher":["Atlantica-Séguier"],"author_key":["OL3965715A"],"author_name":["Pierre Verdet"],"publisher_facet":["Atlantica-Séguier"],"_version_":1697074596668244000,"author_facet":["OL3965715A Pierre Verdet"]}
{"key":"/works/OL10000662W","text":["/works/OL10000662W","Dax, La Feria","OL12624166M","2001438237","9782843943522","2843943523","Atlantica","OL3965716A","Stephane Riba","Bullfights","Pictorial works","Festivals"],"type":"work","seed":["/books/OL12624166M","/works/OL10000662W","/subjects/bullfights","/subjects/pictorial_works","/subjects/festivals","/authors/OL3965716A"],"title":"Dax, La Feria","title_suggest":["Dax, La Feria"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624166M"],"publish_date":["January 2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2001438237"],"lcc":["GV-1108.60000000.F8 R53 2001"],"isbn":["9782843943522","2843943523"],"last_modified_i":1607152812,"ebook_count_i":0,"publisher":["Atlantica"],"author_key":["OL3965716A"],"author_name":["Stephane Riba"],"subject":["Bullfights","Pictorial works","Festivals"],"id_goodreads":["4734809"],"id_librarything":["8905851"],"publisher_facet":["Atlantica"],"subject_facet":["Bullfights","Festivals","Pictorial works"],"_version_":1697074596652515300,"lcc_sort":"GV-1108.60000000.F8 R53 2001","author_facet":["OL3965716A Stephane Riba"],"subject_key":["bullfights","festivals","pictorial_works"]}
{"key":"/works/OL10000663W","text":["/works/OL10000663W","Nager","OL12624167M","284394354X","9782843943546","Atlantica","OL3965717A","Eric Legrand"],"type":"work","seed":["/books/OL12624167M","/works/OL10000663W","/authors/OL3965717A"],"title":"Nager","title_suggest":["Nager"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624167M"],"publish_date":["April 20, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["284394354X","9782843943546"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624167M","cover_i":3141228,"publisher":["Atlantica"],"language":["fre"],"author_key":["OL3965717A"],"author_name":["Eric Legrand"],"publisher_facet":["Atlantica"],"_version_":1697074595908026400,"author_facet":["OL3965717A Eric Legrand"]}
{"key":"/works/OL10000664W","text":["/works/OL10000664W","La nutritherapie. medecine des supplements alimentaires","OL12624169M","469511665","2843943760","9782843943768","Atlantica","OL3965719A","Roseline Cagnon"],"type":"work","seed":["/books/OL12624169M","/works/OL10000664W","/authors/OL3965719A"],"title":"La nutritherapie. medecine des supplements alimentaires","title_suggest":["La nutritherapie. medecine des supplements alimentaires"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624169M"],"publish_date":["October 15, 2001"],"publish_year":[2001],"first_publish_year":2001,"oclc":["469511665"],"isbn":["2843943760","9782843943768"],"last_modified_i":1304074940,"ebook_count_i":0,"cover_edition_key":"OL12624169M","cover_i":3141229,"publisher":["Atlantica"],"language":["fre"],"author_key":["OL3965719A"],"author_name":["Roseline Cagnon"],"id_librarything":["5171702"],"publisher_facet":["Atlantica"],"_version_":1697074595936338000,"author_facet":["OL3965719A Roseline Cagnon"]}
{"key":"/works/OL10000665W","text":["/works/OL10000665W","Anibaara. carnets de voyages au mali et au burkina-faso","OL12624170M","2843943841","9782843943843","Atlantica","OL3965720A","Lucie Peytermann"],"type":"work","seed":["/books/OL12624170M","/works/OL10000665W","/authors/OL3965720A"],"title":"Anibaara. carnets de voyages au mali et au burkina-faso","title_suggest":["Anibaara. carnets de voyages au mali et au burkina-faso"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624170M"],"publish_date":["December 20, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2843943841","9782843943843"],"last_modified_i":1260840403,"ebook_count_i":0,"publisher":["Atlantica"],"language":["fre"],"author_key":["OL3965720A"],"author_name":["Lucie Peytermann"],"publisher_facet":["Atlantica"],"_version_":1697074595930046500,"author_facet":["OL3965720A Lucie Peytermann"]}
{"key":"/works/OL10000666W","text":["/works/OL10000666W","Poumeyrol","OL12624171M","2002476184","9782843943911","2843943914","Atlantica","OL3965721A","Michele Heng","Criticism and interpretation","Realism in art"],"type":"work","seed":["/books/OL12624171M","/works/OL10000666W","/subjects/criticism_and_interpretation","/subjects/realism_in_art","/authors/OL3965721A"],"title":"Poumeyrol","title_suggest":["Poumeyrol"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624171M"],"publish_date":["November 20, 2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2002476184"],"lcc":["ND-0553.00000000.P7 H46 2001"],"isbn":["9782843943911","2843943914"],"last_modified_i":1607346540,"ebook_count_i":0,"cover_edition_key":"OL12624171M","cover_i":3141230,"publisher":["Atlantica"],"language":["fre"],"author_key":["OL3965721A"],"author_name":["Michele Heng"],"subject":["Criticism and interpretation","Realism in art"],"publisher_facet":["Atlantica"],"subject_facet":["Criticism and interpretation","Realism in art"],"_version_":1697074596546609200,"lcc_sort":"ND-0553.00000000.P7 H46 2001","author_facet":["OL3965721A Michele Heng"],"subject_key":["criticism_and_interpretation","realism_in_art"]}
{"key":"/works/OL10000667W","text":["/works/OL10000667W","Un siecle de rugby a bayonne","OL12624173M","2002542728","9782843944499","284394449X","Atlantica","OL3965723A","Manuel Castiella","Rugby football","History","Rugby football players"],"type":"work","seed":["/books/OL12624173M","/works/OL10000667W","/subjects/rugby_football","/subjects/history","/subjects/rugby_football_players","/authors/OL3965723A"],"title":"Un siecle de rugby a bayonne","title_suggest":["Un siecle de rugby a bayonne"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624173M"],"publish_date":["December 12, 2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2002542728"],"lcc":["GV-0945.90000000.F8 C27 2001"],"isbn":["9782843944499","284394449X"],"last_modified_i":1607367362,"ebook_count_i":0,"publisher":["Atlantica"],"language":["fre"],"author_key":["OL3965723A"],"author_name":["Manuel Castiella"],"subject":["Rugby football","History","Rugby football players"],"publisher_facet":["Atlantica"],"subject_facet":["History","Rugby football","Rugby football players"],"_version_":1697074596677681200,"lcc_sort":"GV-0945.90000000.F8 C27 2001","author_facet":["OL3965723A Manuel Castiella"],"subject_key":["history","rugby_football","rugby_football_players"]}
{"key":"/works/OL10000668W","text":["/works/OL10000668W","El juli","OL12624175M","9782843944659","2843944651","Atlantica","OL3965724A","T. P. /Esch Forestier"],"type":"work","seed":["/books/OL12624175M","/works/OL10000668W","/authors/OL3965724A"],"title":"El juli","title_suggest":["El juli"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624175M"],"publish_date":["March 22, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843944659","2843944651"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624175M","cover_i":3141232,"publisher":["Atlantica"],"language":["fre"],"author_key":["OL3965724A"],"author_name":["T. P. /Esch Forestier"],"id_goodreads":["5916954"],"publisher_facet":["Atlantica"],"_version_":1697074596203724800,"author_facet":["OL3965724A T. P. /Esch Forestier"]}
{"key":"/works/OL10000669W","text":["/works/OL10000669W","Caty Leveque","Journal Intime","OL12624176M","2003442973","9782843945724","2843945720","Atlantica","OL3965725A","Caty Leveque","Diaries","Painters"],"type":"work","seed":["/books/OL12624176M","/works/OL10000669W","/subjects/diaries","/subjects/painters","/authors/OL3965725A"],"title":"Caty Leveque","title_suggest":["Caty Leveque"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624176M"],"publish_date":["January 2003"],"publish_year":[2003],"first_publish_year":2003,"lccn":["2003442973"],"lcc":["ND-0553.00000000.L8393 A2 2003"],"isbn":["9782843945724","2843945720"],"last_modified_i":1607372704,"ebook_count_i":0,"publisher":["Atlantica"],"author_key":["OL3965725A"],"author_name":["Caty Leveque"],"subject":["Diaries","Painters"],"publisher_facet":["Atlantica"],"subject_facet":["Diaries","Painters"],"_version_":1697074596104110000,"lcc_sort":"ND-0553.00000000.L8393 A2 2003","author_facet":["OL3965725A Caty Leveque"],"subject_key":["diaries","painters"]}
{"key":"/works/OL1000066W","text":["/works/OL1000066W","This Rake of Mine (Avon Romantic Treasure)","This Rake of Mine","OL24272626M","OL7281676M","OL9236383M","2006573075","62124061","9780060783990","9780061753961","0060783990","9780061127809","0061127809","9780061127793","0061127795","0061753963","thisrakeofmine00boyl","\"I don't see why he has to be allowed in,\" Lady Philippa Knolles complained to her cousin, Miss Felicity Langley, as they crept down the back stairs of their school.","HarperCollins","Avon","OL92935A","Elizabeth Boyle","Fiction","Romance","Historical Fiction","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL24272626M","/books/OL7281676M","/books/OL9236383M","/works/OL1000066W","/subjects/fiction","/subjects/romance","/subjects/historical_fiction","/authors/OL92935A"],"title":"This Rake of Mine (Avon Romantic Treasure)","title_suggest":["This Rake of Mine (Avon Romantic Treasure)"],"has_fulltext":true,"edition_count":3,"edition_key":["OL24272626M","OL7281676M","OL9236383M"],"publish_date":["October 25, 2005","2005"],"publish_year":[2005],"first_publish_year":2005,"lccn":["2006573075"],"publish_place":["New York"],"oclc":["62124061"],"lcc":["CPB0000.00000000.Box no. 2425 vol. 5"],"isbn":["9780060783990","9780061753961","0060783990","9780061127809","0061127809","9780061127793","0061127795","0061753963"],"last_modified_i":1608170611,"ebook_count_i":1,"ia":["thisrakeofmine00boyl"],"public_scan_b":false,"ia_collection_s":"americana;china;printdisabled;delawarecountydistrictlibrary;internetarchivebooks","printdisabled_s":"OL9236383M","cover_edition_key":"OL7281676M","cover_i":35962,"first_sentence":["\"I don't see why he has to be allowed in,\" Lady Philippa Knolles complained to her cousin, Miss Felicity Langley, as they crept down the back stairs of their school."],"publisher":["HarperCollins","Avon"],"language":["eng"],"author_key":["OL92935A"],"author_name":["Elizabeth Boyle"],"subject":["Fiction","Romance","Historical Fiction","Accessible book","Protected DAISY"],"id_goodreads":["212282"],"id_librarything":["80036"],"id_overdrive":["96547B36-81D5-4518-943C-E997F5B0A137"],"ia_loaded_id":["thisrakeofmine00boyl"],"ia_box_id":["IA142305"],"publisher_facet":["Avon","HarperCollins"],"subject_facet":["Accessible book","Fiction","Historical Fiction","Protected DAISY","Romance"],"_version_":1697074595700408300,"lcc_sort":"CPB0000.00000000.Box no. 2425 vol. 5","author_facet":["OL92935A Elizabeth Boyle"],"subject_key":["accessible_book","fiction","historical_fiction","protected_daisy","romance"]}
{"key":"/works/OL10000670W","text":["/works/OL10000670W","Cancer ascendant cancer","OL12624177M","9782843970146","2843970148","Blanc","OL3965726A","Bailly N."],"type":"work","seed":["/books/OL12624177M","/works/OL10000670W","/authors/OL3965726A"],"title":"Cancer ascendant cancer","title_suggest":["Cancer ascendant cancer"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624177M"],"publish_date":["January 1, 1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["9782843970146","2843970148"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624177M","cover_i":3141234,"publisher":["Blanc"],"language":["fre"],"author_key":["OL3965726A"],"author_name":["Bailly N."],"publisher_facet":["Blanc"],"_version_":1697074596279222300,"author_facet":["OL3965726A Bailly N."]}
{"key":"/works/OL10000671W","text":["/works/OL10000671W","Monts d'Arrée","OL12624179M","284398016X","9782843980169","Apogée","OL3965727A","Ewen/Sandford P./a.P"],"type":"work","seed":["/books/OL12624179M","/works/OL10000671W","/authors/OL3965727A"],"title":"Monts d'Arrée","title_suggest":["Monts d'Arrée"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624179M"],"publish_date":["January 13, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["284398016X","9782843980169"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624179M","cover_i":3141235,"publisher":["Apogée"],"language":["fre"],"author_key":["OL3965727A"],"author_name":["Ewen/Sandford P./a.P"],"publisher_facet":["Apogée"],"_version_":1697074595919560700,"author_facet":["OL3965727A Ewen/Sandford P./a.P"]}
{"key":"/works/OL10000672W","text":["/works/OL10000672W","Femmes de Bretagne","Images et histoire","OL12624180M","2843980216","9782843980213","Apogée","OL3965728A","Croix/Douard a./C."],"type":"work","seed":["/books/OL12624180M","/works/OL10000672W","/authors/OL3965728A"],"title":"Femmes de Bretagne","title_suggest":["Femmes de Bretagne"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624180M"],"publish_date":["April 2, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["2843980216","9782843980213"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624180M","cover_i":3141236,"publisher":["Apogée"],"author_key":["OL3965728A"],"author_name":["Croix/Douard a./C."],"publisher_facet":["Apogée"],"_version_":1697074596285513700,"author_facet":["OL3965728A Croix/Douard a./C."]}
{"key":"/works/OL10000673W","text":["/works/OL10000673W","Islandais","Islandais ","mémoire de la grande pêche","OL12624182M","468799475","9782843980305","2843980305","Apogée","OL3965730A","P. Roturier"],"type":"work","seed":["/books/OL12624182M","/works/OL10000673W","/authors/OL3965730A"],"title":"Islandais","title_suggest":["Islandais"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624182M"],"publish_date":["July 1, 1999"],"publish_year":[1999],"first_publish_year":1999,"oclc":["468799475"],"isbn":["9782843980305","2843980305"],"last_modified_i":1303751651,"ebook_count_i":0,"cover_edition_key":"OL12624182M","cover_i":3141238,"publisher":["Apogée"],"language":["fre"],"author_key":["OL3965730A"],"author_name":["P. Roturier"],"publisher_facet":["Apogée"],"_version_":1697074595686776800,"author_facet":["OL3965730A P. Roturier"]}
{"key":"/works/OL10000674W","text":["/works/OL10000674W","Trégor","OL12624183M","2843980321","9782843980329","Apogée","OL3965731A","Le Men/Boelle Y/Y"],"type":"work","seed":["/books/OL12624183M","/works/OL10000674W","/authors/OL3965731A"],"title":"Trégor","title_suggest":["Trégor"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624183M"],"publish_date":["August 2, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2843980321","9782843980329"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624183M","cover_i":3141239,"publisher":["Apogée"],"language":["fre"],"author_key":["OL3965731A"],"author_name":["Le Men/Boelle Y/Y"],"publisher_facet":["Apogée"],"_version_":1697074596072652800,"author_facet":["OL3965731A Le Men/Boelle Y/Y"]}
{"key":"/works/OL10000675W","text":["/works/OL10000675W","Pays bigouden","OL12624184M","9782843980336","284398033X","Apogée","OL3965732A","Yonnet/Thersiquel d"],"type":"work","seed":["/books/OL12624184M","/works/OL10000675W","/authors/OL3965732A"],"title":"Pays bigouden","title_suggest":["Pays bigouden"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624184M"],"publish_date":["August 2, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782843980336","284398033X"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624184M","cover_i":3141240,"publisher":["Apogée"],"language":["fre"],"author_key":["OL3965732A"],"author_name":["Yonnet/Thersiquel d"],"publisher_facet":["Apogée"],"_version_":1697074595853500400,"author_facet":["OL3965732A Yonnet/Thersiquel d"]}
{"key":"/works/OL10000676W","text":["/works/OL10000676W","Golfe du Morbihan","OL12624185M","9782843980343","2843980348","Apogée","OL3965733A","Jean Louis Guery"],"type":"work","seed":["/books/OL12624185M","/works/OL10000676W","/authors/OL3965733A"],"title":"Golfe du Morbihan","title_suggest":["Golfe du Morbihan"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624185M"],"publish_date":["June 10, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782843980343","2843980348"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624185M","cover_i":3141241,"publisher":["Apogée"],"language":["fre"],"author_key":["OL3965733A"],"author_name":["Jean Louis Guery"],"id_goodreads":["5853630"],"publisher_facet":["Apogée"],"_version_":1697074596118790100,"author_facet":["OL3965733A Jean Louis Guery"]}
{"key":"/works/OL10000677W","text":["/works/OL10000677W","Le Droit de la franchise","OL12624187M","9782843980381","2843980380","Apogée","OL3965734A","Bensoussan H."],"type":"work","seed":["/books/OL12624187M","/works/OL10000677W","/authors/OL3965734A"],"title":"Le Droit de la franchise","title_suggest":["Le Droit de la franchise"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624187M"],"publish_date":["December 10, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782843980381","2843980380"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624187M","cover_i":3141243,"publisher":["Apogée"],"author_key":["OL3965734A"],"author_name":["Bensoussan H."],"publisher_facet":["Apogée"],"_version_":1697074596613718000,"author_facet":["OL3965734A Bensoussan H."]}
{"key":"/works/OL10000678W","text":["/works/OL10000678W","Pêche à pied et usage de l'estran","OL12624189M","2843980445","9782843980442","Apogée","OL3965736A","Guy Prigent"],"type":"work","seed":["/books/OL12624189M","/works/OL10000678W","/authors/OL3965736A"],"title":"Pêche à pied et usage de l'estran","title_suggest":["Pêche à pied et usage de l'estran"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624189M"],"publish_date":["June 11, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["2843980445","9782843980442"],"last_modified_i":1272134761,"ebook_count_i":0,"publisher":["Apogée"],"language":["fre"],"author_key":["OL3965736A"],"author_name":["Guy Prigent"],"id_goodreads":["5693379"],"publisher_facet":["Apogée"],"_version_":1697074595891249200,"author_facet":["OL3965736A Guy Prigent"]}
{"key":"/works/OL10000679W","text":["/works/OL10000679W","Phares & balises","OL12624201M","9782843981180","2843981182","Apogée","OL3965736A","Guy Prigent"],"type":"work","seed":["/books/OL12624201M","/works/OL10000679W","/authors/OL3965736A"],"title":"Phares & balises","title_suggest":["Phares & balises"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624201M"],"publish_date":["June 30, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782843981180","2843981182"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624201M","cover_i":3141255,"publisher":["Apogée"],"author_key":["OL3965736A"],"author_name":["Guy Prigent"],"id_goodreads":["5693377"],"publisher_facet":["Apogée"],"_version_":1697074595892297700,"author_facet":["OL3965736A Guy Prigent"]}
{"key":"/works/OL1000067W","text":["/works/OL1000067W","Tempted by the night","Tempted By the Night","OL24258838M","OL22848925M","OL23106580M","OL22802397M","OL22853599M","by Elizabeth Boyle.","Elizabeth Boyle.","2007048700","2008055964","Copyright Paperback Collection (Library of Congress)","0061700711","9780061700712","9780061700705","9780061373220","141041437X","9781410414373","0061373222","0061700703","isbn_9781410414373","temptedbynight00boyl","Thorndike Press","HarperCollins","Avon","OL92935A","Elizabeth Boyle","England","London (England)","Fiction","Aristocracy (Social class)","Historical Fiction","Romance","Large type books","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL24258838M","/books/OL22848925M","/books/OL23106580M","/books/OL22802397M","/books/OL22853599M","/works/OL1000067W","/subjects/fiction","/subjects/aristocracy_(social_class)","/subjects/historical_fiction","/subjects/romance","/subjects/large_type_books","/subjects/place:england","/subjects/place:london_(england)","/authors/OL92935A"],"title":"Tempted by the night","title_suggest":["Tempted by the night"],"has_fulltext":true,"edition_count":5,"edition_key":["OL24258838M","OL22848925M","OL23106580M","OL22802397M","OL22853599M"],"publish_date":["2008","2009"],"publish_year":[2008,2009],"first_publish_year":2008,"lccn":["2007048700","2008055964"],"publish_place":["Waterville, Me","New York"],"contributor":["Copyright Paperback Collection (Library of Congress)"],"lcc":["PS-3552.00000000.O923 T46 2009","PS-3552.00000000.O923 T46 2008","CPB0000.00000000.Box no. 2806 vol. 2"],"ddc":["813.54"],"isbn":["0061700711","9780061700712","9780061700705","9780061373220","141041437X","9781410414373","0061373222","0061700703"],"last_modified_i":1608449529,"ebook_count_i":2,"ia":["isbn_9781410414373","temptedbynight00boyl"],"public_scan_b":false,"ia_collection_s":"printdisabled;china;internetarchivebooks;librarygenesis","printdisabled_s":"OL24258838M;OL22853599M","cover_edition_key":"OL22853599M","cover_i":7916359,"publisher":["Thorndike Press","HarperCollins","Avon"],"language":["eng"],"author_key":["OL92935A"],"author_name":["Elizabeth Boyle"],"place":["England","London (England)"],"subject":["Fiction","Aristocracy (Social class)","Historical Fiction","Romance","Large type books","Accessible book","Protected DAISY"],"id_goodreads":["3158878","7288797"],"id_librarything":["5033363"],"id_overdrive":["8AED4B6B-3B3D-43D8-BFB0-6DE7159899EB"],"ia_box_id":["IA1147814"],"publisher_facet":["Avon","HarperCollins","Thorndike Press"],"place_key":["england","london_(england)"],"subject_facet":["Accessible book","Aristocracy (Social class)","Fiction","Historical Fiction","Large type books","Protected DAISY","Romance"],"_version_":1697074596498374700,"place_facet":["England","London (England)"],"lcc_sort":"CPB0000.00000000.Box no. 2806 vol. 2","author_facet":["OL92935A Elizabeth Boyle"],"subject_key":["accessible_book","aristocracy_(social_class)","fiction","historical_fiction","large_type_books","protected_daisy","romance"],"ddc_sort":"813.54"}
{"key":"/works/OL10000680W","text":["/works/OL10000680W","Dictionnaire du patrimoine breton (+1cd ROM) deuxième édition","OL12624196M","2843980992","9782843980992","Apogée","OL3965742A","Croix /Veillard"],"type":"work","seed":["/books/OL12624196M","/works/OL10000680W","/authors/OL3965742A"],"title":"Dictionnaire du patrimoine breton (+1cd ROM) deuxième édition","title_suggest":["Dictionnaire du patrimoine breton (+1cd ROM) deuxième édition"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624196M"],"publish_date":["December 31, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["2843980992","9782843980992"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624196M","cover_i":3141250,"publisher":["Apogée"],"author_key":["OL3965742A"],"author_name":["Croix /Veillard"],"id_goodreads":["5904619"],"publisher_facet":["Apogée"],"_version_":1697074596035952600,"author_facet":["OL3965742A Croix /Veillard"]}
{"key":"/works/OL10000681W","text":["/works/OL10000681W","L'Internet militant","L'Internet militant ","Mouvement social et usage des réseaux télématiques","OL12624197M","2002382329","9782843981036","2843981034","Apogée","OL3965743A","Fabien Granjon","Internet","Social aspects","Political aspects","Social movements"],"type":"work","seed":["/books/OL12624197M","/works/OL10000681W","/subjects/internet","/subjects/social_aspects","/subjects/political_aspects","/subjects/social_movements","/authors/OL3965743A"],"title":"L'Internet militant","title_suggest":["L'Internet militant"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624197M"],"publish_date":["September 30, 2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2002382329"],"lcc":["HM-0851.00000000.G72 2001"],"isbn":["9782843981036","2843981034"],"last_modified_i":1607309649,"ebook_count_i":0,"cover_edition_key":"OL12624197M","cover_i":3141251,"publisher":["Apogée"],"author_key":["OL3965743A"],"author_name":["Fabien Granjon"],"subject":["Internet","Social aspects","Political aspects","Social movements"],"publisher_facet":["Apogée"],"subject_facet":["Internet","Political aspects","Social aspects","Social movements"],"_version_":1697074596458528800,"lcc_sort":"HM-0851.00000000.G72 2001","author_facet":["OL3965743A Fabien Granjon"],"subject_key":["internet","political_aspects","social_aspects","social_movements"]}
{"key":"/works/OL10000682W","text":["/works/OL10000682W","Quels Partenariats Pour Les Regions de L'Union Europeenne?","OL12624198M","2002419463","2843981115","9782843981111","Apogee","OL3965744A","Olivier Castric","Regionalism","Decentralization in government","Intergovernmental cooperation"],"type":"work","seed":["/books/OL12624198M","/works/OL10000682W","/subjects/regionalism","/subjects/decentralization_in_government","/subjects/intergovernmental_cooperation","/authors/OL3965744A"],"title":"Quels Partenariats Pour Les Regions de L'Union Europeenne?","title_suggest":["Quels Partenariats Pour Les Regions de L'Union Europeenne?"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624198M"],"publish_date":["January 2002"],"publish_year":[2002],"first_publish_year":2002,"lccn":["2002419463"],"lcc":["JN-0034.50000000.C37 2002"],"isbn":["2843981115","9782843981111"],"last_modified_i":1607327164,"ebook_count_i":0,"cover_edition_key":"OL12624198M","cover_i":3141252,"publisher":["Apogee"],"author_key":["OL3965744A"],"author_name":["Olivier Castric"],"subject":["Regionalism","Decentralization in government","Intergovernmental cooperation"],"id_librarything":["9498352"],"publisher_facet":["Apogee"],"subject_facet":["Decentralization in government","Intergovernmental cooperation","Regionalism"],"_version_":1697074596548706300,"lcc_sort":"JN-0034.50000000.C37 2002","author_facet":["OL3965744A Olivier Castric"],"subject_key":["decentralization_in_government","intergovernmental_cooperation","regionalism"]}
{"key":"/works/OL10000683W","text":["/works/OL10000683W","Architecture de terre en Ille-et-Vilaine","OL12624202M","2002497022","9782843981197","2843981190","Apogée","OL3965745A","Jean-Luc Maillard","Domestic Architecture","Clay Building","Vernacular architecture"],"type":"work","seed":["/books/OL12624202M","/works/OL10000683W","/subjects/domestic_architecture","/subjects/clay_building","/subjects/vernacular_architecture","/authors/OL3965745A"],"title":"Architecture de terre en Ille-et-Vilaine","title_suggest":["Architecture de terre en Ille-et-Vilaine"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624202M"],"publish_date":["September 6, 2002"],"publish_year":[2002],"first_publish_year":2002,"lccn":["2002497022"],"lcc":["NA-7347.00000000.I45 B37 2002"],"isbn":["9782843981197","2843981190"],"last_modified_i":1607355226,"ebook_count_i":0,"publisher":["Apogée"],"author_key":["OL3965745A"],"author_name":["Jean-Luc Maillard"],"subject":["Domestic Architecture","Clay Building","Vernacular architecture"],"publisher_facet":["Apogée"],"subject_facet":["Clay Building","Domestic Architecture","Vernacular architecture"],"_version_":1697074595711942700,"lcc_sort":"NA-7347.00000000.I45 B37 2002","author_facet":["OL3965745A Jean-Luc Maillard"],"subject_key":["clay_building","domestic_architecture","vernacular_architecture"]}
{"key":"/works/OL10000684W","text":["/works/OL10000684W","Petite formes","OL12624204M","9782843981210","2843981212","Apogée","OL3965746A","Dominique Quélen"],"type":"work","seed":["/books/OL12624204M","/works/OL10000684W","/authors/OL3965746A"],"title":"Petite formes","title_suggest":["Petite formes"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624204M"],"publish_date":["January 27, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["9782843981210","2843981212"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624204M","cover_i":3141257,"publisher":["Apogée"],"author_key":["OL3965746A"],"author_name":["Dominique Quélen"],"publisher_facet":["Apogée"],"_version_":1697074596008689700,"author_facet":["OL3965746A Dominique Quélen"]}
{"key":"/works/OL10000685W","text":["/works/OL10000685W","Annuaire des biotechnologies et des bio-industries, 2002-2003","OL12624205M","51263724","9782843981234","2843981239","Apogée","OL3965747A","Adebio"],"type":"work","seed":["/books/OL12624205M","/works/OL10000685W","/authors/OL3965747A"],"title":"Annuaire des biotechnologies et des bio-industries, 2002-2003","title_suggest":["Annuaire des biotechnologies et des bio-industries, 2002-2003"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624205M"],"publish_date":["October 17, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["51263724"],"isbn":["9782843981234","2843981239"],"last_modified_i":1303931705,"ebook_count_i":0,"cover_edition_key":"OL12624205M","cover_i":3141258,"publisher":["Apogée"],"language":["fre"],"author_key":["OL3965747A"],"author_name":["Adebio"],"publisher_facet":["Apogée"],"_version_":1697074595604988000,"author_facet":["OL3965747A Adebio"]}
{"key":"/works/OL10000686W","text":["/works/OL10000686W","Jean-Georges Cornélius","un primitif du XXe siècle","OL23647196M","Olivier Levasseur.","2009422158","Cornélius, Jean-Georges, 1880-1963.","9782843983214","2843983215","Apogée","OL3965748A","Olivier Levasseur","Painters","Biography"],"type":"work","seed":["/books/OL23647196M","/works/OL10000686W","/subjects/painters","/subjects/biography","/authors/OL3965748A"],"title":"Jean-Georges Cornélius","title_suggest":["Jean-Georges Cornélius"],"has_fulltext":false,"edition_count":1,"edition_key":["OL23647196M"],"publish_date":["2009"],"publish_year":[2009],"first_publish_year":2009,"lccn":["2009422158"],"publish_place":["Rennes"],"contributor":["Cornélius, Jean-Georges, 1880-1963."],"lcc":["ND-0553.00000000.C775 L38 2009"],"isbn":["9782843983214","2843983215"],"last_modified_i":1608758305,"ebook_count_i":0,"publisher":["Apogée"],"language":["fre"],"author_key":["OL3965748A"],"author_name":["Olivier Levasseur"],"subject":["Painters","Biography"],"publisher_facet":["Apogée"],"subject_facet":["Biography","Painters"],"_version_":1697074596029661200,"lcc_sort":"ND-0553.00000000.C775 L38 2009","author_facet":["OL3965748A Olivier Levasseur"],"subject_key":["biography","painters"]}
{"key":"/works/OL10000687W","text":["/works/OL10000687W","Sardines à la clé","OL12624207M","2843981271","9782843981272","Apogée","OL3965750A","Nicolas de La Casinière"],"type":"work","seed":["/books/OL12624207M","/works/OL10000687W","/authors/OL3965750A"],"title":"Sardines à la clé","title_suggest":["Sardines à la clé"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624207M"],"publish_date":["October 15, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2843981271","9782843981272"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624207M","cover_i":3141260,"publisher":["Apogée"],"language":["fre"],"author_key":["OL3965750A"],"author_name":["Nicolas de La Casinière"],"id_goodreads":["5237008"],"publisher_facet":["Apogée"],"_version_":1697074595690971100,"author_facet":["OL3965750A Nicolas de La Casinière"]}
{"key":"/works/OL10000688W","text":["/works/OL10000688W","Guide pratique du labyrinthe communautaire","OL12624208M","2843981336","9782843981333","Apogée","OL3965751A","Daniel Guéguen"],"type":"work","seed":["/books/OL12624208M","/works/OL10000688W","/authors/OL3965751A"],"title":"Guide pratique du labyrinthe communautaire","title_suggest":["Guide pratique du labyrinthe communautaire"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624208M"],"publish_date":["January 15, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["2843981336","9782843981333"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624208M","cover_i":3141261,"publisher":["Apogée"],"author_key":["OL3965751A"],"author_name":["Daniel Guéguen"],"id_goodreads":["4367242"],"publisher_facet":["Apogée"],"_version_":1697074595547316200,"author_facet":["OL3965751A Daniel Guéguen"]}
{"key":"/works/OL10000689W","text":["/works/OL10000689W","Les Bricoleurs de l'indicible, tome 1","Les Bricoleurs de l'indicible, tome 1 ","De l'insertion en général, des missions locales en particulier","OL12624210M","9782843981418","2843981417","Apogée","OL3965754A","Philippe Labbé"],"type":"work","seed":["/books/OL12624210M","/works/OL10000689W","/authors/OL3965754A"],"title":"Les Bricoleurs de l'indicible, tome 1","title_suggest":["Les Bricoleurs de l'indicible, tome 1"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624210M"],"publish_date":["May 15, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["9782843981418","2843981417"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624210M","cover_i":3141263,"publisher":["Apogée"],"language":["fre"],"author_key":["OL3965754A"],"author_name":["Philippe Labbé"],"id_goodreads":["2421169"],"publisher_facet":["Apogée"],"_version_":1697074596578066400,"author_facet":["OL3965754A Philippe Labbé"]}
{"key":"/works/OL1000068W","text":["/works/OL1000068W","Cat and the countess","OL3550192M","Casey Claybourne.","2001571318","43457969","Copyright Paperback Collection (Library of Congress)","0425173356","9780425173350","catcountess00clay","Berkley Books","OL92936A","Casey Claybourne","England","Fiction","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL3550192M","/works/OL1000068W","/subjects/fiction","/subjects/place:england","/authors/OL92936A"],"title":"Cat and the countess","title_suggest":["Cat and the countess"],"has_fulltext":true,"edition_count":1,"edition_key":["OL3550192M"],"publish_date":["2000"],"publish_year":[2000],"first_publish_year":2000,"lccn":["2001571318"],"publish_place":["New York"],"oclc":["43457969"],"contributor":["Copyright Paperback Collection (Library of Congress)"],"lcc":["CPB0000.00000000.Box no. 1760 vol. 9"],"isbn":["0425173356","9780425173350"],"last_modified_i":1607169182,"ebook_count_i":1,"ia":["catcountess00clay"],"public_scan_b":false,"ia_collection_s":"fav-kariobangi;china;inlibrary;printdisabled;internetarchivebooks","lending_edition_s":"OL3550192M","lending_identifier_s":"catcountess00clay","printdisabled_s":"OL3550192M","cover_edition_key":"OL3550192M","cover_i":271581,"publisher":["Berkley Books"],"language":["eng"],"author_key":["OL92936A"],"author_name":["Casey Claybourne"],"place":["England"],"subject":["Fiction","Accessible book","Protected DAISY"],"id_goodreads":["1684910"],"id_librarything":["1678766"],"ia_loaded_id":["catcountess00clay"],"ia_box_id":["IA170901"],"publisher_facet":["Berkley Books"],"place_key":["england"],"subject_facet":["Accessible book","Fiction","Protected DAISY"],"_version_":1697074595755982800,"place_facet":["England"],"lcc_sort":"CPB0000.00000000.Box no. 1760 vol. 9","author_facet":["OL92936A Casey Claybourne"],"subject_key":["accessible_book","fiction","protected_daisy"]}
{"key":"/works/OL10000690W","text":["/works/OL10000690W","Liberté, égalité... sans papiers","OL12624212M","2001386866","9782844050694","2844050697","Esprit frappeur","OL3965755A","Droits Devant","Foreign workers","Civil rights","Illegal aliens"],"type":"work","seed":["/books/OL12624212M","/works/OL10000690W","/subjects/foreign_workers","/subjects/civil_rights","/subjects/illegal_aliens","/authors/OL3965755A"],"title":"Liberté, égalité... sans papiers","title_suggest":["Liberté, égalité... sans papiers"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624212M"],"publish_date":["March 25, 1999"],"publish_year":[1999],"first_publish_year":1999,"lccn":["2001386866"],"lcc":["HD-8438.00000000.A2 L498 1999"],"isbn":["9782844050694","2844050697"],"last_modified_i":1607132986,"ebook_count_i":0,"cover_edition_key":"OL12624212M","cover_i":3141265,"publisher":["Esprit frappeur"],"language":["fre"],"author_key":["OL3965755A"],"author_name":["Droits Devant"],"subject":["Foreign workers","Civil rights","Illegal aliens"],"id_librarything":["3290373"],"publisher_facet":["Esprit frappeur"],"subject_facet":["Civil rights","Foreign workers","Illegal aliens"],"_version_":1697074595679436800,"lcc_sort":"HD-8438.00000000.A2 L498 1999","author_facet":["OL3965755A Droits Devant"],"subject_key":["civil_rights","foreign_workers","illegal_aliens"]}
{"key":"/works/OL10000691W","text":["/works/OL10000691W","Le nucléaire et la lampeà pétrole","OL12624213M","9782844050717","2844050719","Esprit frappeur","OL3965756A","Les Verts"],"type":"work","seed":["/books/OL12624213M","/works/OL10000691W","/authors/OL3965756A"],"title":"Le nucléaire et la lampeà pétrole","title_suggest":["Le nucléaire et la lampeà pétrole"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624213M"],"publish_date":["February 10, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782844050717","2844050719"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12624213M","cover_i":3141266,"publisher":["Esprit frappeur"],"language":["fre"],"author_key":["OL3965756A"],"author_name":["Les Verts"],"id_librarything":["3290379"],"publisher_facet":["Esprit frappeur"],"_version_":1697074596063215600,"author_facet":["OL3965756A Les Verts"]}
{"key":"/works/OL10000692W","text":["/works/OL10000692W","L'Absinthe, un mythe toujours vert","OL12624215M","9782844050946","2844050948","Esprit frappeur","OL3965757A","Noël Benoît"],"type":"work","seed":["/books/OL12624215M","/works/OL10000692W","/authors/OL3965757A"],"title":"L'Absinthe, un mythe toujours vert","title_suggest":["L'Absinthe, un mythe toujours vert"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624215M"],"publish_date":["July 5, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782844050946","2844050948"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12624215M","cover_i":3141268,"publisher":["Esprit frappeur"],"language":["fre"],"author_key":["OL3965757A"],"author_name":["Noël Benoît"],"id_goodreads":["170716"],"id_librarything":["7929076"],"publisher_facet":["Esprit frappeur"],"_version_":1697074596518297600,"author_facet":["OL3965757A Noël Benoît"]}
{"key":"/works/OL10000693W","text":["/works/OL10000693W","Prisons","Prisons ","Un état des lieux","OL12624216M","2001367381","2844051103","9782844051103","Esprit frappeur","OL3965758A","Observatoire International des Prisons","Prisons"],"type":"work","seed":["/books/OL12624216M","/works/OL10000693W","/subjects/prisons","/authors/OL3965758A"],"title":"Prisons","title_suggest":["Prisons"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624216M"],"publish_date":["July 5, 2000"],"publish_year":[2000],"first_publish_year":2000,"lccn":["2001367381"],"lcc":["HV-9667.00000000.P745 2000"],"isbn":["2844051103","9782844051103"],"last_modified_i":1607123360,"ebook_count_i":0,"cover_edition_key":"OL12624216M","cover_i":3141269,"publisher":["Esprit frappeur"],"language":["fre"],"author_key":["OL3965758A"],"author_name":["Observatoire International des Prisons"],"subject":["Prisons"],"id_librarything":["3290342"],"publisher_facet":["Esprit frappeur"],"subject_facet":["Prisons"],"_version_":1697074596150247400,"lcc_sort":"HV-9667.00000000.P745 2000","author_facet":["OL3965758A Observatoire International des Prisons"],"subject_key":["prisons"]}
{"key":"/works/OL10000694W","text":["/works/OL10000694W","Je ne veux pas dessiner la guerre - dessins d'enfants tchetchenes","Je ne veux pas dessiner la guerre - dessins d'enfants tchetchenes.","OL12624217M","9782844051479","2844051472","Esprit frappeur","OL3965759A","Médecins du Monde"],"type":"work","seed":["/books/OL12624217M","/works/OL10000694W","/authors/OL3965759A"],"title":"Je ne veux pas dessiner la guerre - dessins d'enfants tchetchenes","title_suggest":["Je ne veux pas dessiner la guerre - dessins d'enfants tchetchenes"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624217M"],"publish_date":["March 15, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782844051479","2844051472"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624217M","cover_i":3141270,"publisher":["Esprit frappeur"],"author_key":["OL3965759A"],"author_name":["Médecins du Monde"],"publisher_facet":["Esprit frappeur"],"_version_":1697074595752837000,"author_facet":["OL3965759A Médecins du Monde"]}
{"key":"/works/OL10000695W","text":["/works/OL10000695W","Stop quelle violence?","OL12624219M","50084969","9782844051547","2844051545","Esprit frappeur","OL3965762A","Tissot /Tevanian"],"type":"work","seed":["/books/OL12624219M","/works/OL10000695W","/authors/OL3965762A"],"title":"Stop quelle violence?","title_suggest":["Stop quelle violence?"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624219M"],"publish_date":["March 15, 2001"],"publish_year":[2001],"first_publish_year":2001,"oclc":["50084969"],"isbn":["9782844051547","2844051545"],"last_modified_i":1303508629,"ebook_count_i":0,"cover_edition_key":"OL12624219M","cover_i":3141272,"publisher":["Esprit frappeur"],"language":["fre"],"author_key":["OL3965762A"],"author_name":["Tissot /Tevanian"],"id_goodreads":["881968"],"id_librarything":["2890233"],"publisher_facet":["Esprit frappeur"],"_version_":1697074596593795000,"author_facet":["OL3965762A Tissot /Tevanian"]}
{"key":"/works/OL10000696W","text":["/works/OL10000696W","L'utilisation rituelle du cannabis","OL12624220M","635535264","9782844051707","2844051707","Esprit frappeur","OL3965763A","William a. Emboden"],"type":"work","seed":["/books/OL12624220M","/works/OL10000696W","/authors/OL3965763A"],"title":"L'utilisation rituelle du cannabis","title_suggest":["L'utilisation rituelle du cannabis"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624220M"],"publish_date":["April 15, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["635535264"],"isbn":["9782844051707","2844051707"],"last_modified_i":1307523367,"ebook_count_i":0,"publisher":["Esprit frappeur"],"language":["fre"],"author_key":["OL3965763A"],"author_name":["William a. Emboden"],"id_goodreads":["681318"],"id_librarything":["9633717"],"publisher_facet":["Esprit frappeur"],"_version_":1697074595661611000,"author_facet":["OL3965763A William a. Emboden"]}
{"key":"/works/OL10000697W","text":["/works/OL10000697W","Le racisme republicain","OL12624222M","2006403170","9782844051813","2844051812","Esprit frappeur","OL3965764A","Pierre Tevania","Racism","Race discrimination","Race relations"],"type":"work","seed":["/books/OL12624222M","/works/OL10000697W","/subjects/racism","/subjects/race_discrimination","/subjects/race_relations","/authors/OL3965764A"],"title":"Le racisme republicain","title_suggest":["Le racisme republicain"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624222M"],"publish_date":["March 1, 2002"],"publish_year":[2002],"first_publish_year":2002,"lccn":["2006403170"],"lcc":["DC-0034.00000000.T48 2004"],"isbn":["9782844051813","2844051812"],"last_modified_i":1607997867,"ebook_count_i":0,"cover_edition_key":"OL12624222M","cover_i":3141273,"publisher":["Esprit frappeur"],"author_key":["OL3965764A"],"author_name":["Pierre Tevania"],"subject":["Racism","Race discrimination","Race relations"],"publisher_facet":["Esprit frappeur"],"subject_facet":["Race discrimination","Race relations","Racism"],"_version_":1697074596304388000,"lcc_sort":"DC-0034.00000000.T48 2004","author_facet":["OL3965764A Pierre Tevania"],"subject_key":["race_discrimination","race_relations","racism"]}
{"key":"/works/OL10000698W","text":["/works/OL10000698W","Vos papiers!-que faire face a la police","OL12624223M","9782844051837","2844051839","Esprit frappeur","OL3965765A","Synd. Magistrature"],"type":"work","seed":["/books/OL12624223M","/works/OL10000698W","/authors/OL3965765A"],"title":"Vos papiers!-que faire face a la police","title_suggest":["Vos papiers!-que faire face a la police"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624223M"],"publish_date":["October 7, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782844051837","2844051839"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12624223M","cover_i":3141274,"publisher":["Esprit frappeur"],"language":["fre"],"author_key":["OL3965765A"],"author_name":["Synd. Magistrature"],"id_librarything":["3290328"],"publisher_facet":["Esprit frappeur"],"_version_":1697074595724525600,"author_facet":["OL3965765A Synd. Magistrature"]}
{"key":"/works/OL10000699W","text":["/works/OL10000699W","Introduction au mouvement rastafari","OL12624224M","494157457","2844051847","9782844051844","Esprit frappeur","OL3965766A","Boris Lutanie"],"type":"work","seed":["/books/OL12624224M","/works/OL10000699W","/authors/OL3965766A"],"title":"Introduction au mouvement rastafari","title_suggest":["Introduction au mouvement rastafari"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624224M"],"publish_date":["April 18, 2003"],"publish_year":[2003],"first_publish_year":2003,"oclc":["494157457"],"isbn":["2844051847","9782844051844"],"last_modified_i":1303861856,"ebook_count_i":0,"cover_edition_key":"OL12624224M","cover_i":3141275,"publisher":["Esprit frappeur"],"language":["fre"],"author_key":["OL3965766A"],"author_name":["Boris Lutanie"],"id_goodreads":["5334276"],"id_librarything":["3394238"],"publisher_facet":["Esprit frappeur"],"_version_":1697074596361011200,"author_facet":["OL3965766A Boris Lutanie"]}
{"key":"/works/OL1000069W","text":["/works/OL1000069W","The Devil's Darling","OL7657405M","2012397777","31470626","9780515114928","0515114928","Jove","OL92936A","Casey Claybourne","Social life and customs","Fiction"],"type":"work","seed":["/books/OL7657405M","/works/OL1000069W","/subjects/social_life_and_customs","/subjects/fiction","/authors/OL92936A"],"title":"The Devil's Darling","title_suggest":["The Devil's Darling"],"has_fulltext":false,"edition_count":1,"edition_key":["OL7657405M"],"publish_date":["November 1, 1994"],"publish_year":[1994],"first_publish_year":1994,"lccn":["2012397777"],"oclc":["31470626"],"lcc":["CPB0000.00000000.Box no. 113 vol. 12"],"isbn":["9780515114928","0515114928"],"last_modified_i":1600780962,"ebook_count_i":0,"publisher":["Jove"],"language":["eng"],"author_key":["OL92936A"],"author_name":["Casey Claybourne"],"subject":["Social life and customs","Fiction"],"id_goodreads":["1684911"],"id_librarything":["935853"],"publisher_facet":["Jove"],"subject_facet":["Fiction","Social life and customs"],"_version_":1697074595681534000,"lcc_sort":"CPB0000.00000000.Box no. 113 vol. 12","author_facet":["OL92936A Casey Claybourne"],"subject_key":["fiction","social_life_and_customs"]}
{"key":"/works/OL100006W","text":["/works/OL100006W","Past imperfect","PAST IMPERFECT (Sigrid Harald Mystery)","OL1880493M","OL23269472M","OL22270833M","OL7825386M","Margaret Maron.","90041018","21948936","26310281","0553295462","0727843095","0385413645","9780385413640","9780553295467","9780727843098","Crimeline","Doubleday","Bantam","SevernHouse","OL3326443A","Margaret Maron","Margaret Maron","Maron, Margaret","MARGARET MARON","New York (State)","New York (N.Y.)","New York","Police","Fiction","Sigrid Harald (Fictitious character)","Policewomen"],"type":"work","seed":["/books/OL1880493M","/books/OL23269472M","/books/OL22270833M","/books/OL7825386M","/works/OL100006W","/subjects/police","/subjects/fiction","/subjects/sigrid_harald_(fictitious_character)","/subjects/policewomen","/subjects/place:new_york_(state)","/subjects/place:new_york_(n.y.)","/subjects/place:new_york","/authors/OL3326443A"],"title":"Past imperfect","title_suggest":["Past imperfect"],"has_fulltext":false,"edition_count":4,"edition_key":["OL1880493M","OL23269472M","OL22270833M","OL7825386M"],"publish_date":["April 1, 1992","1992","1991"],"publish_year":[1992,1991],"first_publish_year":1991,"lccn":["90041018"],"publish_place":["New York","Wallington"],"oclc":["21948936","26310281"],"lcc":["PS-3563.00000000.A679 P37 1991"],"ddc":["813.54"],"isbn":["0553295462","0727843095","0385413645","9780385413640","9780553295467","9780727843098"],"last_modified_i":1605088737,"ebook_count_i":0,"cover_edition_key":"OL7825386M","cover_i":4673121,"publisher":["Crimeline","Doubleday","Bantam","SevernHouse"],"language":["eng"],"author_key":["OL3326443A"],"author_name":["Margaret Maron"],"author_alternative_name":["Margaret Maron","Maron, Margaret","MARGARET MARON"],"place":["New York (State)","New York (N.Y.)","New York"],"subject":["Police","Fiction","Sigrid Harald (Fictitious character)","Policewomen"],"id_goodreads":["552342","880440"],"id_librarything":["1072689"],"publisher_facet":["Bantam","Crimeline","Doubleday","SevernHouse"],"place_key":["new_york","new_york_(n.y.)","new_york_(state)"],"subject_facet":["Fiction","Police","Policewomen","Sigrid Harald (Fictitious character)"],"_version_":1697074596512006100,"place_facet":["New York","New York (N.Y.)","New York (State)"],"lcc_sort":"PS-3563.00000000.A679 P37 1991","author_facet":["OL3326443A Margaret Maron"],"subject_key":["fiction","police","policewomen","sigrid_harald_(fictitious_character)"],"ddc_sort":"813.54"}
{"key":"/works/OL10000700W","text":["/works/OL10000700W","L'ordre, mon cul! la liberte m'habite","OL12624226M","2844051863","9782844051868","Esprit frappeur","OL3965767A","Jv Verlinde."],"type":"work","seed":["/books/OL12624226M","/works/OL10000700W","/authors/OL3965767A"],"title":"L'ordre, mon cul! la liberte m'habite","title_suggest":["L'ordre, mon cul! la liberte m'habite"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624226M"],"publish_date":["March 15, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2844051863","9782844051868"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12624226M","cover_i":3141277,"publisher":["Esprit frappeur"],"language":["fre"],"author_key":["OL3965767A"],"author_name":["Jv Verlinde."],"id_goodreads":["2899701"],"id_librarything":["4863696"],"publisher_facet":["Esprit frappeur"],"_version_":1697074596618961000,"author_facet":["OL3965767A Jv Verlinde."]}
{"key":"/works/OL10000701W","text":["/works/OL10000701W","Dictionnaire de la lepenisation des esprits","OL12624230M","2844051936","9782844051936","Esprit frappeur","OL3965768A","S. P. /Tissot Tevanian"],"type":"work","seed":["/books/OL12624230M","/works/OL10000701W","/authors/OL3965768A"],"title":"Dictionnaire de la lepenisation des esprits","title_suggest":["Dictionnaire de la lepenisation des esprits"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624230M"],"publish_date":["September 30, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2844051936","9782844051936"],"last_modified_i":1272134783,"ebook_count_i":0,"publisher":["Esprit frappeur"],"author_key":["OL3965768A"],"author_name":["S. P. /Tissot Tevanian"],"id_goodreads":["881970"],"publisher_facet":["Esprit frappeur"],"_version_":1697074596682924000,"author_facet":["OL3965768A S. P. /Tissot Tevanian"]}
{"key":"/works/OL10000702W","text":["/works/OL10000702W","Vrrr..","Vrrr...","OL12624242M","9782844070241","2844070248","Etre Editions","OL3965771A","Bruel Claveloux"],"type":"work","seed":["/books/OL12624242M","/works/OL10000702W","/authors/OL3965771A"],"title":"Vrrr..","title_suggest":["Vrrr.."],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624242M"],"publish_date":["November 27, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782844070241","2844070248"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624242M","cover_i":3141291,"publisher":["Etre Editions"],"language":["fre"],"author_key":["OL3965771A"],"author_name":["Bruel Claveloux"],"publisher_facet":["Etre Editions"],"_version_":1697074596622106600,"author_facet":["OL3965771A Bruel Claveloux"]}
{"key":"/works/OL10000703W","text":["/works/OL10000703W","Arabic Russian Bulgarian Romanian Phrase","OL12624247M","9782844092441","2844092446","OL3965772A","Arab Scientific Pub"],"type":"work","seed":["/books/OL12624247M","/works/OL10000703W","/authors/OL3965772A"],"title":"Arabic Russian Bulgarian Romanian Phrase","title_suggest":["Arabic Russian Bulgarian Romanian Phrase"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624247M"],"isbn":["9782844092441","2844092446"],"last_modified_i":1272134783,"ebook_count_i":0,"author_key":["OL3965772A"],"author_name":["Arab Scientific Pub"],"id_goodreads":["4766556"],"_version_":1697074596047487000,"author_facet":["OL3965772A Arab Scientific Pub"]}
{"key":"/works/OL10000704W","text":["/works/OL10000704W","Vitamins, Herbs, Minerals & Supplements","The Complete Guide","OL12624250M","2844097030","9782844097033","Arab Scientific Publishers","OL3965773A","Winter Griffith"],"type":"work","seed":["/books/OL12624250M","/works/OL10000704W","/authors/OL3965773A"],"title":"Vitamins, Herbs, Minerals & Supplements","title_suggest":["Vitamins, Herbs, Minerals & Supplements"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624250M"],"publish_date":["June 6, 2005"],"publish_year":[2005],"first_publish_year":2005,"isbn":["2844097030","9782844097033"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624250M","cover_i":3141295,"publisher":["Arab Scientific Publishers"],"language":["ara"],"author_key":["OL3965773A"],"author_name":["Winter Griffith"],"publisher_facet":["Arab Scientific Publishers"],"_version_":1697074596414488600,"author_facet":["OL3965773A Winter Griffith"]}
{"key":"/works/OL10000705W","text":["/works/OL10000705W","Initiation à l'intelligence informatique","Initiation à l'intelligence informatique.","OL18591423M","Privat","OL3965774A","André Deledicq","Electronic digital computers","Electronic data processing"],"type":"work","seed":["/books/OL18591423M","/works/OL10000705W","/subjects/electronic_digital_computers","/subjects/electronic_data_processing","/authors/OL3965774A"],"title":"Initiation à l'intelligence informatique","title_suggest":["Initiation à l'intelligence informatique"],"has_fulltext":false,"edition_count":1,"edition_key":["OL18591423M"],"publish_date":["1970"],"publish_year":[1970],"first_publish_year":1970,"publish_place":["[Toulouse]"],"lcc":["QA-0076.00000000.D38"],"last_modified_i":1279636588,"ebook_count_i":0,"publisher":["Privat"],"language":["fre"],"author_key":["OL3965774A"],"author_name":["André Deledicq"],"subject":["Electronic digital computers","Electronic data processing"],"publisher_facet":["Privat"],"subject_facet":["Electronic data processing","Electronic digital computers"],"_version_":1697074595883909000,"lcc_sort":"QA-0076.00000000.D38","author_facet":["OL3965774A André Deledicq"],"subject_key":["electronic_data_processing","electronic_digital_computers"]}
{"key":"/works/OL10000706W","text":["/works/OL10000706W","Mathématiquescollège","OL12624255M","2844100058","9782844100054","Editions de la Cité","OL3965774A","André Deledicq"],"type":"work","seed":["/books/OL12624255M","/works/OL10000706W","/authors/OL3965774A"],"title":"Mathématiquescollège","title_suggest":["Mathématiquescollège"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624255M"],"publish_date":["March 31, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2844100058","9782844100054"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12624255M","cover_i":3141299,"publisher":["Editions de la Cité"],"language":["fre"],"author_key":["OL3965774A"],"author_name":["André Deledicq"],"id_goodreads":["3411781"],"id_librarything":["4358391"],"publisher_facet":["Editions de la Cité"],"_version_":1697074596019175400,"author_facet":["OL3965774A André Deledicq"]}
{"key":"/works/OL10000707W","text":["/works/OL10000707W","Mathématiques lycée","OL12624254M","9782844100047","284410004X","Édition de la Cité","OL3965774A","André Deledicq"],"type":"work","seed":["/books/OL12624254M","/works/OL10000707W","/authors/OL3965774A"],"title":"Mathématiques lycée","title_suggest":["Mathématiques lycée"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624254M"],"publish_date":["June 30, 1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["9782844100047","284410004X"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12624254M","cover_i":3141298,"publisher":["Édition de la Cité"],"author_key":["OL3965774A"],"author_name":["André Deledicq"],"id_goodreads":["5376436"],"id_librarything":["4598387"],"publisher_facet":["Édition de la Cité"],"_version_":1697074596022321200,"author_facet":["OL3965774A André Deledicq"]}
{"key":"/works/OL10000708W","text":["/works/OL10000708W","Physique-Chimie, niveau collège","OL12624260M","409585863","2844100236","9782844100238","Editions de la Cité","OL3965775A","Chevalet"],"type":"work","seed":["/books/OL12624260M","/works/OL10000708W","/authors/OL3965775A"],"title":"Physique-Chimie, niveau collège","title_suggest":["Physique-Chimie, niveau collège"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624260M"],"publish_date":["April 21, 1999"],"publish_year":[1999],"first_publish_year":1999,"oclc":["409585863"],"isbn":["2844100236","9782844100238"],"last_modified_i":1303762976,"ebook_count_i":0,"cover_edition_key":"OL12624260M","cover_i":3141304,"publisher":["Editions de la Cité"],"author_key":["OL3965775A"],"author_name":["Chevalet"],"publisher_facet":["Editions de la Cité"],"_version_":1697074596181704700,"author_facet":["OL3965775A Chevalet"]}
{"key":"/works/OL10000709W","text":["/works/OL10000709W","Physique-Chimie, niveau lycée","OL12624266M","409409826","2844100414","9782844100412","Editions de la Cité","OL3965775A","Chevalet"],"type":"work","seed":["/books/OL12624266M","/works/OL10000709W","/authors/OL3965775A"],"title":"Physique-Chimie, niveau lycée","title_suggest":["Physique-Chimie, niveau lycée"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624266M"],"publish_date":["June 14, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["409409826"],"isbn":["2844100414","9782844100412"],"last_modified_i":1307497900,"ebook_count_i":0,"cover_edition_key":"OL12624266M","cover_i":3141310,"publisher":["Editions de la Cité"],"language":["fre"],"author_key":["OL3965775A"],"author_name":["Chevalet"],"publisher_facet":["Editions de la Cité"],"_version_":1697074596602183700,"author_facet":["OL3965775A Chevalet"]}
{"key":"/works/OL1000070W","text":["/works/OL1000070W","A Ghost of a Chance (Haunting Hearts)","OL7657504M","97816684","35169084","0515118575","9780515118575","Jove","OL92936A","Casey Claybourne","Ghost stories","Mothers-in-law","Fiction"],"type":"work","seed":["/books/OL7657504M","/works/OL1000070W","/subjects/ghost_stories","/subjects/mothers-in-law","/subjects/fiction","/authors/OL92936A"],"title":"A Ghost of a Chance (Haunting Hearts)","title_suggest":["A Ghost of a Chance (Haunting Hearts)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL7657504M"],"publish_date":["August 1, 1996"],"publish_year":[1996],"first_publish_year":1996,"lccn":["97816684"],"oclc":["35169084"],"lcc":["CPB0000.00000000.Box no. 650 vol. 18"],"isbn":["0515118575","9780515118575"],"last_modified_i":1606456857,"ebook_count_i":0,"cover_edition_key":"OL7657504M","cover_i":318869,"publisher":["Jove"],"language":["eng"],"author_key":["OL92936A"],"author_name":["Casey Claybourne"],"subject":["Ghost stories","Mothers-in-law","Fiction"],"id_goodreads":["968314"],"id_librarything":["537472"],"publisher_facet":["Jove"],"subject_facet":["Fiction","Ghost stories","Mothers-in-law"],"_version_":1697074596408197000,"lcc_sort":"CPB0000.00000000.Box no. 650 vol. 18","author_facet":["OL92936A Casey Claybourne"],"subject_key":["fiction","ghost_stories","mothers-in-law"]}
{"key":"/works/OL10000710W","text":["/works/OL10000710W","L'Homme qui inventa le pch","Et autres nouvelles","OL12624278M","45964123","9782844120434","2844120431","Jolle Losfeld","OL3965776A","Sen O'Faolìn"],"type":"work","seed":["/books/OL12624278M","/works/OL10000710W","/authors/OL3965776A"],"title":"L'Homme qui inventa le pch","title_suggest":["L'Homme qui inventa le pch"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624278M"],"publish_date":["2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["45964123"],"isbn":["9782844120434","2844120431"],"last_modified_i":1304109555,"ebook_count_i":0,"cover_edition_key":"OL12624278M","cover_i":3141322,"publisher":["Jolle Losfeld"],"language":["fre"],"author_key":["OL3965776A"],"author_name":["Sen O'Faolìn"],"id_goodreads":["1737259"],"publisher_facet":["Jolle Losfeld"],"_version_":1697074595426730000,"author_facet":["OL3965776A Sen O'Faolìn"]}
{"key":"/works/OL10000711W","text":["/works/OL10000711W","Vacances à la maison blanche","OL12624279M","284412044X","9782844120441","Joëlle Losfeld","OL3965777A","U. Zurn"],"type":"work","seed":["/books/OL12624279M","/works/OL10000711W","/authors/OL3965777A"],"title":"Vacances à la maison blanche","title_suggest":["Vacances à la maison blanche"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624279M"],"publish_date":["April 13, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["284412044X","9782844120441"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624279M","cover_i":3141323,"publisher":["Joëlle Losfeld"],"author_key":["OL3965777A"],"author_name":["U. Zurn"],"id_goodreads":["2421138"],"publisher_facet":["Joëlle Losfeld"],"_version_":1697074596289708000,"author_facet":["OL3965777A U. Zurn"]}
{"key":"/works/OL10000712W","text":["/works/OL10000712W","Les Ensorcelées","OL12624280M","319929529","2844120474","9782844120472","Joëlle Losfeld","OL3965778A","Arensberg"],"type":"work","seed":["/books/OL12624280M","/works/OL10000712W","/authors/OL3965778A"],"title":"Les Ensorcelées","title_suggest":["Les Ensorcelées"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624280M"],"publish_date":["May 4, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["319929529"],"isbn":["2844120474","9782844120472"],"last_modified_i":1307524793,"ebook_count_i":0,"cover_edition_key":"OL12624280M","cover_i":3141324,"publisher":["Joëlle Losfeld"],"language":["fre"],"author_key":["OL3965778A"],"author_name":["Arensberg"],"id_librarything":["5259688"],"publisher_facet":["Joëlle Losfeld"],"_version_":1697074595729768400,"author_facet":["OL3965778A Arensberg"]}
{"key":"/works/OL10000713W","text":["/works/OL10000713W","Claudine et le Théâtre","OL12624284M","2844120539","9782844120533","Joëlle Losfeld","OL3965779A","Philippe Caubere"],"type":"work","seed":["/books/OL12624284M","/works/OL10000713W","/authors/OL3965779A"],"title":"Claudine et le Théâtre","title_suggest":["Claudine et le Théâtre"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624284M"],"publish_date":["July 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2844120539","9782844120533"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624284M","cover_i":3141328,"publisher":["Joëlle Losfeld"],"language":["fre"],"author_key":["OL3965779A"],"author_name":["Philippe Caubere"],"id_goodreads":["6258602"],"publisher_facet":["Joëlle Losfeld"],"_version_":1697074596685021200,"author_facet":["OL3965779A Philippe Caubere"]}
{"key":"/works/OL10000714W","text":["/works/OL10000714W","XCA le camp","OL12624285M","9782844120571","2844120571","Joëlle Losfeld","OL3965780A","J.-l. Payen"],"type":"work","seed":["/books/OL12624285M","/works/OL10000714W","/authors/OL3965780A"],"title":"XCA le camp","title_suggest":["XCA le camp"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624285M"],"publish_date":["August 25, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782844120571","2844120571"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624285M","cover_i":3141329,"publisher":["Joëlle Losfeld"],"language":["fre"],"author_key":["OL3965780A"],"author_name":["J.-l. Payen"],"id_goodreads":["5205769"],"publisher_facet":["Joëlle Losfeld"],"_version_":1697074596204773400,"author_facet":["OL3965780A J.-l. Payen"]}
{"key":"/works/OL10000715W","text":["/works/OL10000715W","La Crevette et l'Anémone","OL12624289M","9782844120656","2844120652","Joëlle Losfeld","OL3965782A","Leslie Poles Hartlay"],"type":"work","seed":["/books/OL12624289M","/works/OL10000715W","/authors/OL3965782A"],"title":"La Crevette et l'Anémone","title_suggest":["La Crevette et l'Anémone"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624289M"],"publish_date":["October 4, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782844120656","2844120652"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624289M","cover_i":3141333,"publisher":["Joëlle Losfeld"],"author_key":["OL3965782A"],"author_name":["Leslie Poles Hartlay"],"id_goodreads":["3279240"],"publisher_facet":["Joëlle Losfeld"],"_version_":1697074596510957600,"author_facet":["OL3965782A Leslie Poles Hartlay"]}
{"key":"/works/OL10000716W","text":["/works/OL10000716W","La nuit, tous les vieux sont gris","La nuit, tous les vieux sont gris ","La Société contre la vieillesse","OL12638422M","9782869700833","2869700830","Bibliophane","OL3965785A","Jérôme Pellissier"],"type":"work","seed":["/books/OL12638422M","/works/OL10000716W","/authors/OL3965785A"],"title":"La nuit, tous les vieux sont gris","title_suggest":["La nuit, tous les vieux sont gris"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12638422M"],"publish_date":["April 25, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["9782869700833","2869700830"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12638422M","cover_i":3153170,"publisher":["Bibliophane"],"author_key":["OL3965785A"],"author_name":["Jérôme Pellissier"],"id_goodreads":["6244216"],"publisher_facet":["Bibliophane"],"_version_":1697074595909075000,"author_facet":["OL3965785A Jérôme Pellissier"]}
{"key":"/works/OL10000717W","text":["/works/OL10000717W","Les Insensés","OL12624316M","9782844121370","2844121373","Joëlle Losfeld","OL3965785A","Jérôme Pellissier"],"type":"work","seed":["/books/OL12624316M","/works/OL10000717W","/authors/OL3965785A"],"title":"Les Insensés","title_suggest":["Les Insensés"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624316M"],"publish_date":["July 31, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782844121370","2844121373"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624316M","cover_i":3141360,"publisher":["Joëlle Losfeld"],"author_key":["OL3965785A"],"author_name":["Jérôme Pellissier"],"id_goodreads":["7250017"],"publisher_facet":["Joëlle Losfeld"],"_version_":1697074596374642700,"author_facet":["OL3965785A Jérôme Pellissier"]}
{"key":"/works/OL10000718W","text":["/works/OL10000718W","La voile légère","La voile légère ","le dériveur","OL12624347M","301612705","9782844150042","2844150047","Ulisse","OL3965795A","Nicolas Dejean"],"type":"work","seed":["/books/OL12624347M","/works/OL10000718W","/authors/OL3965795A"],"title":"La voile légère","title_suggest":["La voile légère"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624347M"],"publish_date":["June 4, 1999"],"publish_year":[1999],"first_publish_year":1999,"oclc":["301612705"],"isbn":["9782844150042","2844150047"],"last_modified_i":1303904195,"ebook_count_i":0,"cover_edition_key":"OL12624347M","cover_i":3141381,"publisher":["Ulisse"],"language":["fre"],"author_key":["OL3965795A"],"author_name":["Nicolas Dejean"],"publisher_facet":["Ulisse"],"_version_":1697074596171219000,"author_facet":["OL3965795A Nicolas Dejean"]}
{"key":"/works/OL10000719W","text":["/works/OL10000719W","Les masques","OL12624348M","9782844150059","2844150055","Ulisse","OL3965796A","Line Clément"],"type":"work","seed":["/books/OL12624348M","/works/OL10000719W","/authors/OL3965796A"],"title":"Les masques","title_suggest":["Les masques"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624348M"],"publish_date":["May 26, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782844150059","2844150055"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624348M","cover_i":3141382,"publisher":["Ulisse"],"language":["fre"],"author_key":["OL3965796A"],"author_name":["Line Clément"],"publisher_facet":["Ulisse"],"_version_":1697074596653564000,"author_facet":["OL3965796A Line Clément"]}
{"key":"/works/OL1000071W","text":["/works/OL1000071W","Jaguar eyes","OL141051M","Casey Claybourne.","99611048","40177541","Copyright Paperback Collection (Library of Congress)","0505522845","9780505522849","jaguareyes00clay","Dorchester Pub. Co.","OL92936A","Casey Claybourne","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL141051M","/works/OL1000071W","/authors/OL92936A"],"title":"Jaguar eyes","title_suggest":["Jaguar eyes"],"has_fulltext":true,"edition_count":1,"edition_key":["OL141051M"],"publish_date":["1998"],"publish_year":[1998],"first_publish_year":1998,"lccn":["99611048"],"publish_place":["New York, N.Y"],"oclc":["40177541"],"contributor":["Copyright Paperback Collection (Library of Congress)"],"lcc":["CPB0000.00000000.Box no. 1456 vol. 19"],"isbn":["0505522845","9780505522849"],"last_modified_i":1606979407,"ebook_count_i":1,"ia":["jaguareyes00clay"],"public_scan_b":false,"ia_collection_s":"china;inlibrary;printdisabled;fav-anitalynn101;internetarchivebooks","lending_edition_s":"OL141051M","lending_identifier_s":"jaguareyes00clay","printdisabled_s":"OL141051M","cover_edition_key":"OL141051M","cover_i":317517,"publisher":["Dorchester Pub. Co."],"language":["eng"],"author_key":["OL92936A"],"author_name":["Casey Claybourne"],"subject":["Accessible book","Protected DAISY"],"id_goodreads":["1684912"],"id_librarything":["1956446"],"ia_loaded_id":["jaguareyes00clay"],"ia_box_id":["IA180601"],"publisher_facet":["Dorchester Pub. Co."],"subject_facet":["Accessible book","Protected DAISY"],"_version_":1697074595783245800,"lcc_sort":"CPB0000.00000000.Box no. 1456 vol. 19","author_facet":["OL92936A Casey Claybourne"],"subject_key":["accessible_book","protected_daisy"]}
{"key":"/works/OL10000720W","text":["/works/OL10000720W","Les marionnettes","OL12624349M","77180010","9782844150066","2844150063","Ulisse","OL3965797A","Jacqueline Sarrazin"],"type":"work","seed":["/books/OL12624349M","/works/OL10000720W","/authors/OL3965797A"],"title":"Les marionnettes","title_suggest":["Les marionnettes"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624349M"],"publish_date":["September 14, 1999"],"publish_year":[1999],"first_publish_year":1999,"oclc":["77180010"],"isbn":["9782844150066","2844150063"],"last_modified_i":1304114840,"ebook_count_i":0,"cover_edition_key":"OL12624349M","cover_i":3141383,"publisher":["Ulisse"],"author_key":["OL3965797A"],"author_name":["Jacqueline Sarrazin"],"id_goodreads":["2260778"],"publisher_facet":["Ulisse"],"_version_":1697074595677339600,"author_facet":["OL3965797A Jacqueline Sarrazin"]}
{"key":"/works/OL10000721W","text":["/works/OL10000721W","Bois décoré","OL12624351M","9782844150103","2844150101","Ulisse","OL3965799A","Diane Borione"],"type":"work","seed":["/books/OL12624351M","/works/OL10000721W","/authors/OL3965799A"],"title":"Bois décoré","title_suggest":["Bois décoré"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624351M"],"publish_date":["November 18, 1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["9782844150103","2844150101"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624351M","cover_i":3141385,"publisher":["Ulisse"],"author_key":["OL3965799A"],"author_name":["Diane Borione"],"publisher_facet":["Ulisse"],"_version_":1697074595739205600,"author_facet":["OL3965799A Diane Borione"]}
{"key":"/works/OL10000722W","text":["/works/OL10000722W","Bois peint styles et techniques russe khokhloma uzes bourguignon","OL12624352M","406860559","9782844150110","284415011X","Ulisse","OL3965800A","Gohin P"],"type":"work","seed":["/books/OL12624352M","/works/OL10000722W","/authors/OL3965800A"],"title":"Bois peint styles et techniques russe khokhloma uzes bourguignon","title_suggest":["Bois peint styles et techniques russe khokhloma uzes bourguignon"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624352M"],"publish_date":["September 14, 1999"],"publish_year":[1999],"first_publish_year":1999,"oclc":["406860559"],"isbn":["9782844150110","284415011X"],"last_modified_i":1307518863,"ebook_count_i":0,"cover_edition_key":"OL12624352M","cover_i":3141386,"publisher":["Ulisse"],"author_key":["OL3965800A"],"author_name":["Gohin P"],"publisher_facet":["Ulisse"],"_version_":1697074595800023000,"author_facet":["OL3965800A Gohin P"]}
{"key":"/works/OL10000723W","text":["/works/OL10000723W","La Porcelaine","La Porcelaine ","101 astuces","OL12624376M","9782844150509","2844150500","Ulisse","OL3965801A","Véronique Habègre"],"type":"work","seed":["/books/OL12624376M","/works/OL10000723W","/authors/OL3965801A"],"title":"La Porcelaine","title_suggest":["La Porcelaine"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624376M"],"publish_date":["November 20, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782844150509","2844150500"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624376M","cover_i":3141409,"publisher":["Ulisse"],"language":["fre"],"author_key":["OL3965801A"],"author_name":["Véronique Habègre"],"id_goodreads":["2260775"],"publisher_facet":["Ulisse"],"_version_":1697074596575969300,"author_facet":["OL3965801A Véronique Habègre"]}
{"key":"/works/OL10000724W","text":["/works/OL10000724W","Le lustre","OL12624354M","9782844150134","2844150136","Ulisse","OL3965801A","Véronique Habègre"],"type":"work","seed":["/books/OL12624354M","/works/OL10000724W","/authors/OL3965801A"],"title":"Le lustre","title_suggest":["Le lustre"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624354M"],"publish_date":["February 3, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782844150134","2844150136"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624354M","cover_i":3141388,"publisher":["Ulisse"],"author_key":["OL3965801A"],"author_name":["Véronique Habègre"],"id_goodreads":["2260767"],"publisher_facet":["Ulisse"],"_version_":1697074596234133500,"author_facet":["OL3965801A Véronique Habègre"]}
{"key":"/works/OL10000725W","text":["/works/OL10000725W","Cartonnage technique et réalisation","OL12624357M","406606533","2844150217","9782844150219","Ulisse","OL3965802A","M. Gras-Depoix"],"type":"work","seed":["/books/OL12624357M","/works/OL10000725W","/authors/OL3965802A"],"title":"Cartonnage technique et réalisation","title_suggest":["Cartonnage technique et réalisation"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624357M"],"publish_date":["November 29, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["406606533"],"isbn":["2844150217","9782844150219"],"last_modified_i":1303916945,"ebook_count_i":0,"cover_edition_key":"OL12624357M","cover_i":3141391,"publisher":["Ulisse"],"author_key":["OL3965802A"],"author_name":["M. Gras-Depoix"],"id_goodreads":["2260781"],"publisher_facet":["Ulisse"],"_version_":1697074595905929200,"author_facet":["OL3965802A M. Gras-Depoix"]}
{"key":"/works/OL10000726W","text":["/works/OL10000726W","La Peinture au couteau","OL12624358M","2844150225","9782844150226","Ulisse","OL3965803A","F. Florent"],"type":"work","seed":["/books/OL12624358M","/works/OL10000726W","/authors/OL3965803A"],"title":"La Peinture au couteau","title_suggest":["La Peinture au couteau"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624358M"],"publish_date":["April 4, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2844150225","9782844150226"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624358M","cover_i":3141392,"publisher":["Ulisse"],"language":["fre"],"author_key":["OL3965803A"],"author_name":["F. Florent"],"publisher_facet":["Ulisse"],"_version_":1697074595860840400,"author_facet":["OL3965803A F. Florent"]}
{"key":"/works/OL10000727W","text":["/works/OL10000727W","Aquarelle","OL12624359M","9782844150233","2844150233","Ulisse","OL3965804A","Ans Van Berkel"],"type":"work","seed":["/books/OL12624359M","/works/OL10000727W","/authors/OL3965804A"],"title":"Aquarelle","title_suggest":["Aquarelle"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624359M"],"publish_date":["November 29, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782844150233","2844150233"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624359M","cover_i":3141393,"publisher":["Ulisse"],"language":["fre"],"author_key":["OL3965804A"],"author_name":["Ans Van Berkel"],"id_goodreads":["6211894"],"publisher_facet":["Ulisse"],"_version_":1697074596591698000,"author_facet":["OL3965804A Ans Van Berkel"]}
{"key":"/works/OL10000728W","text":["/works/OL10000728W","L'Aquarelle, 101 astuces","OL12624360M","9782844150240","2844150241","Ulisse","OL3965805A","J. Bordet"],"type":"work","seed":["/books/OL12624360M","/works/OL10000728W","/authors/OL3965805A"],"title":"L'Aquarelle, 101 astuces","title_suggest":["L'Aquarelle, 101 astuces"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624360M"],"publish_date":["January 5, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782844150240","2844150241"],"last_modified_i":1260840403,"ebook_count_i":0,"publisher":["Ulisse"],"language":["fre"],"author_key":["OL3965805A"],"author_name":["J. Bordet"],"publisher_facet":["Ulisse"],"_version_":1697074596414488600,"author_facet":["OL3965805A J. Bordet"]}
{"key":"/works/OL10000729W","text":["/works/OL10000729W","Porcelaine décorée","OL12624362M","2844150268","9782844150264","Ulisse","OL3965806A","Catherine Le Noël"],"type":"work","seed":["/books/OL12624362M","/works/OL10000729W","/authors/OL3965806A"],"title":"Porcelaine décorée","title_suggest":["Porcelaine décorée"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624362M"],"publish_date":["November 29, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2844150268","9782844150264"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624362M","cover_i":3141395,"publisher":["Ulisse"],"language":["fre"],"author_key":["OL3965806A"],"author_name":["Catherine Le Noël"],"publisher_facet":["Ulisse"],"_version_":1697074596161781800,"author_facet":["OL3965806A Catherine Le Noël"]}
{"key":"/works/OL1000072W","text":["/works/OL1000072W","My Lucky Lady","OL7657409M","97820222","31907854","0515115045","9780515115048","Jove","OL92936A","Casey Claybourne"],"type":"work","seed":["/books/OL7657409M","/works/OL1000072W","/authors/OL92936A"],"title":"My Lucky Lady","title_suggest":["My Lucky Lady"],"has_fulltext":false,"edition_count":1,"edition_key":["OL7657409M"],"publish_date":["December 1, 1994"],"publish_year":[1994],"first_publish_year":1994,"lccn":["97820222"],"oclc":["31907854"],"lcc":["CPB0000.00000000.Box no. 778 vol. 17"],"isbn":["0515115045","9780515115048"],"last_modified_i":1606458657,"ebook_count_i":0,"publisher":["Jove"],"language":["eng"],"author_key":["OL92936A"],"author_name":["Casey Claybourne"],"id_goodreads":["1433641"],"id_librarything":["31582"],"publisher_facet":["Jove"],"_version_":1697074595576676400,"lcc_sort":"CPB0000.00000000.Box no. 778 vol. 17","author_facet":["OL92936A Casey Claybourne"]}
{"key":"/works/OL10000730W","text":["/works/OL10000730W","La terre qui chante","OL12624363M","2844150276","9782844150271","Ulisse","OL3965807A","Evelyne Jullian"],"type":"work","seed":["/books/OL12624363M","/works/OL10000730W","/authors/OL3965807A"],"title":"La terre qui chante","title_suggest":["La terre qui chante"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624363M"],"publish_date":["March 14, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2844150276","9782844150271"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624363M","cover_i":3141396,"publisher":["Ulisse"],"author_key":["OL3965807A"],"author_name":["Evelyne Jullian"],"id_goodreads":["2260776"],"publisher_facet":["Ulisse"],"_version_":1697074596271882200,"author_facet":["OL3965807A Evelyne Jullian"]}
{"key":"/works/OL10000731W","text":["/works/OL10000731W","L'acrylique","L'acrylique ","techniques et matières","OL12624364M","2844150292","9782844150295","Ulisse","OL3965808A","Nicole Bommarito"],"type":"work","seed":["/books/OL12624364M","/works/OL10000731W","/authors/OL3965808A"],"title":"L'acrylique","title_suggest":["L'acrylique"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624364M"],"publish_date":["June 1, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2844150292","9782844150295"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624364M","cover_i":3141397,"publisher":["Ulisse"],"author_key":["OL3965808A"],"author_name":["Nicole Bommarito"],"id_goodreads":["5717949"],"publisher_facet":["Ulisse"],"_version_":1697074595900686300,"author_facet":["OL3965808A Nicole Bommarito"]}
{"key":"/works/OL10000732W","text":["/works/OL10000732W","L'encadrement","OL12624365M","9782844150301","2844150306","Ulisse","OL3965809A","Nicole Marinier"],"type":"work","seed":["/books/OL12624365M","/works/OL10000732W","/authors/OL3965809A"],"title":"L'encadrement","title_suggest":["L'encadrement"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624365M"],"publish_date":["April 3, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["9782844150301","2844150306"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624365M","cover_i":3141398,"publisher":["Ulisse"],"author_key":["OL3965809A"],"author_name":["Nicole Marinier"],"id_goodreads":["5717947"],"publisher_facet":["Ulisse"],"_version_":1697074596359962600,"author_facet":["OL3965809A Nicole Marinier"]}
{"key":"/works/OL10000733W","text":["/works/OL10000733W","Les animaux et la porcelaine","OL12624366M","2844150314","9782844150318","Ulisse","OL3965810A","Aude Creuzé"],"type":"work","seed":["/books/OL12624366M","/works/OL10000733W","/authors/OL3965810A"],"title":"Les animaux et la porcelaine","title_suggest":["Les animaux et la porcelaine"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624366M"],"publish_date":["June 1, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2844150314","9782844150318"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624366M","cover_i":3141399,"publisher":["Ulisse"],"author_key":["OL3965810A"],"author_name":["Aude Creuzé"],"id_goodreads":["4419147"],"publisher_facet":["Ulisse"],"_version_":1697074596213162000,"author_facet":["OL3965810A Aude Creuzé"]}
{"key":"/works/OL10000734W","text":["/works/OL10000734W","La Marqueterie de paille","OL12624371M","2844150403","9782844150400","Ulisse","OL3965811A","Anne-Marie Choain-Degand"],"type":"work","seed":["/books/OL12624371M","/works/OL10000734W","/authors/OL3965811A"],"title":"La Marqueterie de paille","title_suggest":["La Marqueterie de paille"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624371M"],"publish_date":["December 31, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2844150403","9782844150400"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624371M","cover_i":3141404,"publisher":["Ulisse"],"author_key":["OL3965811A"],"author_name":["Anne-Marie Choain-Degand"],"id_goodreads":["929246"],"publisher_facet":["Ulisse"],"_version_":1697074595759128600,"author_facet":["OL3965811A Anne-Marie Choain-Degand"]}
{"key":"/works/OL10000735W","text":["/works/OL10000735W","Le Pastel","OL12624372M","9782844150417","2844150411","Ulisse","OL3965812A","Denis Bauduin"],"type":"work","seed":["/books/OL12624372M","/works/OL10000735W","/authors/OL3965812A"],"title":"Le Pastel","title_suggest":["Le Pastel"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624372M"],"publish_date":["November 8, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782844150417","2844150411"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12624372M","cover_i":3141405,"publisher":["Ulisse"],"author_key":["OL3965812A"],"author_name":["Denis Bauduin"],"id_librarything":["2704991"],"publisher_facet":["Ulisse"],"_version_":1697074596538220500,"author_facet":["OL3965812A Denis Bauduin"]}
{"key":"/works/OL10000736W","text":["/works/OL10000736W","Création de motifs peints sur tissu","OL12624373M","422007506","284415042X","9782844150424","Ulisse","OL3965813A","Marie Lefort"],"type":"work","seed":["/books/OL12624373M","/works/OL10000736W","/authors/OL3965813A"],"title":"Création de motifs peints sur tissu","title_suggest":["Création de motifs peints sur tissu"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624373M"],"publish_date":["November 8, 2001"],"publish_year":[2001],"first_publish_year":2001,"oclc":["422007506"],"isbn":["284415042X","9782844150424"],"last_modified_i":1303783317,"ebook_count_i":0,"cover_edition_key":"OL12624373M","cover_i":3141406,"publisher":["Ulisse"],"author_key":["OL3965813A"],"author_name":["Marie Lefort"],"publisher_facet":["Ulisse"],"_version_":1697074595906977800,"author_facet":["OL3965813A Marie Lefort"]}
{"key":"/works/OL10000737W","text":["/works/OL10000737W","Ronde-bosse et bas-relief","Ronde-bosse et bas-relief ","Le modelage, petites et grandes pièces","OL12624374M","2844150438","9782844150431","Ulisse","OL3965814A","Philippe Chazot"],"type":"work","seed":["/books/OL12624374M","/works/OL10000737W","/authors/OL3965814A"],"title":"Ronde-bosse et bas-relief","title_suggest":["Ronde-bosse et bas-relief"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624374M"],"publish_date":["November 8, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2844150438","9782844150431"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624374M","cover_i":3141407,"publisher":["Ulisse"],"author_key":["OL3965814A"],"author_name":["Philippe Chazot"],"id_goodreads":["401109"],"publisher_facet":["Ulisse"],"_version_":1697074596590649300,"author_facet":["OL3965814A Philippe Chazot"]}
{"key":"/works/OL10000738W","text":["/works/OL10000738W","La Peintre sur porcelaine","La Peintre sur porcelaine ","Motifs champêtres","OL12624377M","9782844150516","2844150519","Ulisse","OL3965816A","Graziella Poyet"],"type":"work","seed":["/books/OL12624377M","/works/OL10000738W","/authors/OL3965816A"],"title":"La Peintre sur porcelaine","title_suggest":["La Peintre sur porcelaine"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624377M"],"publish_date":["March 31, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782844150516","2844150519"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624377M","cover_i":3141410,"publisher":["Ulisse"],"author_key":["OL3965816A"],"author_name":["Graziella Poyet"],"publisher_facet":["Ulisse"],"_version_":1697074595967795200,"author_facet":["OL3965816A Graziella Poyet"]}
{"key":"/works/OL10000739W","text":["/works/OL10000739W","La Mosaïque selon la tradition de Ravenne","OL12624378M","2844150527","9782844150523","Ulisse","OL3965817A","Giovanna Galli"],"type":"work","seed":["/books/OL12624378M","/works/OL10000739W","/authors/OL3965817A"],"title":"La Mosaïque selon la tradition de Ravenne","title_suggest":["La Mosaïque selon la tradition de Ravenne"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624378M"],"publish_date":["May 30, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2844150527","9782844150523"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624378M","cover_i":3141411,"publisher":["Ulisse"],"author_key":["OL3965817A"],"author_name":["Giovanna Galli"],"publisher_facet":["Ulisse"],"_version_":1697074596292853800,"author_facet":["OL3965817A Giovanna Galli"]}
{"key":"/works/OL1000073W","text":["/works/OL1000073W","Nick of Time","OL7657585M","98810237","9780515121896","0515121894","nickoftime0000clay","Jove","OL92936A","Casey Claybourne","Social life and customs","Time travel","Fiction","Manners and customs","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL7657585M","/works/OL1000073W","/subjects/social_life_and_customs","/subjects/time_travel","/subjects/fiction","/subjects/manners_and_customs","/authors/OL92936A"],"title":"Nick of Time","title_suggest":["Nick of Time"],"has_fulltext":true,"edition_count":1,"edition_key":["OL7657585M"],"publish_date":["December 1, 1997"],"publish_year":[1997],"first_publish_year":1997,"lccn":["98810237"],"lcc":["CPB0000.00000000.Box no. 919 vol. 11"],"isbn":["9780515121896","0515121894"],"last_modified_i":1606697056,"ebook_count_i":1,"ia":["nickoftime0000clay"],"public_scan_b":false,"ia_collection_s":"china;inlibrary;printdisabled;internetarchivebooks;fav-deedeebamagirl","lending_edition_s":"OL7657585M","lending_identifier_s":"nickoftime0000clay","printdisabled_s":"OL7657585M","cover_edition_key":"OL7657585M","cover_i":318937,"publisher":["Jove"],"language":["eng"],"author_key":["OL92936A"],"author_name":["Casey Claybourne"],"subject":["Social life and customs","Time travel","Fiction","Manners and customs","Accessible book","Protected DAISY"],"id_goodreads":["346499"],"id_librarything":["537669"],"ia_box_id":["IA1260603"],"publisher_facet":["Jove"],"subject_facet":["Accessible book","Fiction","Manners and customs","Protected DAISY","Social life and customs","Time travel"],"_version_":1697074596157587500,"lcc_sort":"CPB0000.00000000.Box no. 919 vol. 11","author_facet":["OL92936A Casey Claybourne"],"subject_key":["accessible_book","fiction","manners_and_customs","protected_daisy","social_life_and_customs","time_travel"]}
{"key":"/works/OL10000740W","text":["/works/OL10000740W","Mes premières bases de glaçures","Mes premières bases de glaçures ","grès et porcelaine","OL12624379M","402131305","9782844150530","2844150535","Ulisse","OL3965818A","Georges Lantéri"],"type":"work","seed":["/books/OL12624379M","/works/OL10000740W","/authors/OL3965818A"],"title":"Mes premières bases de glaçures","title_suggest":["Mes premières bases de glaçures"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624379M"],"publish_date":["April 3, 2003"],"publish_year":[2003],"first_publish_year":2003,"oclc":["402131305"],"isbn":["9782844150530","2844150535"],"last_modified_i":1304176485,"ebook_count_i":0,"cover_edition_key":"OL12624379M","cover_i":3141412,"publisher":["Ulisse"],"language":["fre"],"author_key":["OL3965818A"],"author_name":["Georges Lantéri"],"id_goodreads":["1820504"],"publisher_facet":["Ulisse"],"_version_":1697074595914317800,"author_facet":["OL3965818A Georges Lantéri"]}
{"key":"/works/OL10000741W","text":["/works/OL10000741W","Cartonnage","Cartonnage ","une passion a partager","OL12624381M","154657170","2844150578","9782844150578","Ulisse","OL3965819A","Bonnet-Westerlo"],"type":"work","seed":["/books/OL12624381M","/works/OL10000741W","/authors/OL3965819A"],"title":"Cartonnage","title_suggest":["Cartonnage"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624381M"],"publish_date":["December 20, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["154657170"],"isbn":["2844150578","9782844150578"],"last_modified_i":1304161734,"ebook_count_i":0,"cover_edition_key":"OL12624381M","cover_i":3141414,"publisher":["Ulisse"],"language":["fre"],"author_key":["OL3965819A"],"author_name":["Bonnet-Westerlo"],"id_goodreads":["2260771"],"publisher_facet":["Ulisse"],"_version_":1697074596446994400,"author_facet":["OL3965819A Bonnet-Westerlo"]}
{"key":"/works/OL10000742W","text":["/works/OL10000742W","101 astuces le cartonnage","OL12624382M","154657150","9782844150585","2844150586","Ulisse","OL3965820A","M. Gras Depoix"],"type":"work","seed":["/books/OL12624382M","/works/OL10000742W","/authors/OL3965820A"],"title":"101 astuces le cartonnage","title_suggest":["101 astuces le cartonnage"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624382M"],"publish_date":["March 20, 2003"],"publish_year":[2003],"first_publish_year":2003,"oclc":["154657150"],"isbn":["9782844150585","2844150586"],"last_modified_i":1303813100,"ebook_count_i":0,"cover_edition_key":"OL12624382M","cover_i":3141415,"publisher":["Ulisse"],"author_key":["OL3965820A"],"author_name":["M. Gras Depoix"],"id_goodreads":["5436096"],"publisher_facet":["Ulisse"],"_version_":1697074595945775000,"author_facet":["OL3965820A M. Gras Depoix"]}
{"key":"/works/OL10000743W","text":["/works/OL10000743W","Des idées de maquillage géniales","OL12624385M","2844150632","9782844150639","Ulisse","OL3965821A","René Reiche"],"type":"work","seed":["/books/OL12624385M","/works/OL10000743W","/authors/OL3965821A"],"title":"Des idées de maquillage géniales","title_suggest":["Des idées de maquillage géniales"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624385M"],"publish_date":["November 20, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2844150632","9782844150639"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624385M","cover_i":3141418,"publisher":["Ulisse"],"author_key":["OL3965821A"],"author_name":["René Reiche"],"id_goodreads":["2260770"],"publisher_facet":["Ulisse"],"_version_":1697074596265590800,"author_facet":["OL3965821A René Reiche"]}
{"key":"/works/OL10000744W","text":["/works/OL10000744W","Recettes originales du marché","OL12624392M","2844160948","9782844160942","Artémis","OL3965824A","Vergne/ Perrier-Robert"],"type":"work","seed":["/books/OL12624392M","/works/OL10000744W","/authors/OL3965824A"],"title":"Recettes originales du marché","title_suggest":["Recettes originales du marché"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624392M"],"publish_date":["October 2, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2844160948","9782844160942"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624392M","cover_i":3141425,"publisher":["Artémis"],"language":["fre"],"author_key":["OL3965824A"],"author_name":["Vergne/ Perrier-Robert"],"publisher_facet":["Artémis"],"_version_":1697074596627349500,"author_facet":["OL3965824A Vergne/ Perrier-Robert"]}
{"key":"/works/OL10000745W","text":["/works/OL10000745W","Mammifères","OL20032791M","Maurice Dupérat.","9782700308693","2700308697","Arthaud","OL3965825A","Maurice Dupérat","Europe","Mammifères","Identification"],"type":"work","seed":["/books/OL20032791M","/works/OL10000745W","/subjects/mammifères","/subjects/identification","/subjects/place:europe","/authors/OL3965825A"],"title":"Mammifères","title_suggest":["Mammifères"],"has_fulltext":false,"edition_count":1,"edition_key":["OL20032791M"],"publish_date":["1990"],"publish_year":[1990],"first_publish_year":1990,"publish_place":["Paris"],"isbn":["9782700308693","2700308697"],"last_modified_i":1279778393,"ebook_count_i":0,"publisher":["Arthaud"],"language":["fre"],"author_key":["OL3965825A"],"author_name":["Maurice Dupérat"],"place":["Europe"],"subject":["Mammifères","Identification"],"publisher_facet":["Arthaud"],"place_key":["europe"],"subject_facet":["Identification","Mammifères"],"_version_":1697074595619668000,"place_facet":["Europe"],"author_facet":["OL3965825A Maurice Dupérat"],"subject_key":["identification","mammifères"]}
{"key":"/works/OL10000746W","text":["/works/OL10000746W","Nids et oeufs","OL12624398M","2844161219","9782844161215","Artémis Editions","OL3965825A","Maurice Dupérat"],"type":"work","seed":["/books/OL12624398M","/works/OL10000746W","/authors/OL3965825A"],"title":"Nids et oeufs","title_suggest":["Nids et oeufs"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624398M"],"publish_date":["April 3, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2844161219","9782844161215"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624398M","cover_i":3141431,"publisher":["Artémis Editions"],"language":["fre"],"author_key":["OL3965825A"],"author_name":["Maurice Dupérat"],"publisher_facet":["Artémis Editions"],"_version_":1697074596151296000,"author_facet":["OL3965825A Maurice Dupérat"]}
{"key":"/works/OL10000747W","text":["/works/OL10000747W","Amphibiens et reptiles","OL12624399M","2844161227","9782844161222","Artémis Editions","OL3965826A","Marc Santiani"],"type":"work","seed":["/books/OL12624399M","/works/OL10000747W","/authors/OL3965826A"],"title":"Amphibiens et reptiles","title_suggest":["Amphibiens et reptiles"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624399M"],"publish_date":["April 30, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2844161227","9782844161222"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624399M","cover_i":3141432,"publisher":["Artémis Editions"],"language":["fre"],"author_key":["OL3965826A"],"author_name":["Marc Santiani"],"publisher_facet":["Artémis Editions"],"_version_":1697074596345282600,"author_facet":["OL3965826A Marc Santiani"]}
{"key":"/works/OL10000748W","text":["/works/OL10000748W","Farbmäuse. Haltung, Pflege, Ernährung, Gesundheit","Farbmäuse. Haltung, Pflege, Ernährung, Gesundheit.","OL12933201M","76312870","3806827117","9783806827118","Falken","OL3965827A","Hans W. Kothe"],"type":"work","seed":["/books/OL12933201M","/works/OL10000748W","/authors/OL3965827A"],"title":"Farbmäuse. Haltung, Pflege, Ernährung, Gesundheit","title_suggest":["Farbmäuse. Haltung, Pflege, Ernährung, Gesundheit"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12933201M"],"publish_date":["September 1, 2001"],"publish_year":[2001],"first_publish_year":2001,"oclc":["76312870"],"isbn":["3806827117","9783806827118"],"last_modified_i":1304101297,"ebook_count_i":0,"cover_edition_key":"OL12933201M","cover_i":3268105,"publisher":["Falken"],"author_key":["OL3965827A"],"author_name":["Hans W. Kothe"],"id_goodreads":["4191820"],"publisher_facet":["Falken"],"_version_":1697074596588552200,"author_facet":["OL3965827A Hans W. Kothe"]}
{"key":"/works/OL10000749W","text":["/works/OL10000749W","Naturnahe Gesellschaftsaquarien","Naturnahe Gesellschaftsaquarien.","OL12927881M","76140818","9783804371712","380437171X","AUGUSTUS VLG IM WELTBILD","OL3965827A","Hans W. Kothe"],"type":"work","seed":["/books/OL12927881M","/works/OL10000749W","/authors/OL3965827A"],"title":"Naturnahe Gesellschaftsaquarien","title_suggest":["Naturnahe Gesellschaftsaquarien"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12927881M"],"publish_date":["August 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["76140818"],"isbn":["9783804371712","380437171X"],"last_modified_i":1304159855,"ebook_count_i":0,"cover_edition_key":"OL12927881M","cover_i":3265779,"publisher":["AUGUSTUS VLG IM WELTBILD"],"language":["ger"],"author_key":["OL3965827A"],"author_name":["Hans W. Kothe"],"id_goodreads":["4191818"],"publisher_facet":["AUGUSTUS VLG IM WELTBILD"],"_version_":1697074596438605800,"author_facet":["OL3965827A Hans W. Kothe"]}
{"key":"/works/OL1000074W","text":["/works/OL1000074W","A spirited seduction","OL3548446M","Casey Claybourne.","2001555055","36781632","Copyright Paperback Collection (Library of Congress)","9780515120660","0515120669","spiritedseductio0000clay","Jove Books","OL92936A","Casey Claybourne","Mistresses","Seduction","Spirits","Fiction","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL3548446M","/works/OL1000074W","/subjects/mistresses","/subjects/seduction","/subjects/spirits","/subjects/fiction","/authors/OL92936A"],"title":"A spirited seduction","title_suggest":["A spirited seduction"],"has_fulltext":true,"edition_count":1,"edition_key":["OL3548446M"],"publish_date":["1997"],"publish_year":[1997],"first_publish_year":1997,"lccn":["2001555055"],"publish_place":["New York"],"oclc":["36781632"],"contributor":["Copyright Paperback Collection (Library of Congress)"],"lcc":["CPB0000.00000000.Box no. 1811 vol. 7"],"isbn":["9780515120660","0515120669"],"last_modified_i":1607168187,"ebook_count_i":1,"ia":["spiritedseductio0000clay"],"public_scan_b":false,"ia_collection_s":"china;inlibrary;printdisabled;fav-miimii5641;internetarchivebooks;fav-tilley123","lending_edition_s":"OL3548446M","lending_identifier_s":"spiritedseductio0000clay","printdisabled_s":"OL3548446M","cover_edition_key":"OL3548446M","cover_i":318910,"publisher":["Jove Books"],"language":["eng"],"author_key":["OL92936A"],"author_name":["Casey Claybourne"],"subject":["Mistresses","Seduction","Spirits","Fiction","Accessible book","Protected DAISY"],"id_goodreads":["1684909"],"id_librarything":["1956444"],"ia_box_id":["IA1207720"],"publisher_facet":["Jove Books"],"subject_facet":["Accessible book","Fiction","Mistresses","Protected DAISY","Seduction","Spirits"],"_version_":1697074596367302700,"lcc_sort":"CPB0000.00000000.Box no. 1811 vol. 7","author_facet":["OL92936A Casey Claybourne"],"subject_key":["accessible_book","fiction","mistresses","protected_daisy","seduction","spirits"]}
{"key":"/works/OL10000750W","text":["/works/OL10000750W","Perruches","OL12624400M","2844161294","9782844161291","Artémis Editions","OL3965827A","Hans W. Kothe"],"type":"work","seed":["/books/OL12624400M","/works/OL10000750W","/authors/OL3965827A"],"title":"Perruches","title_suggest":["Perruches"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624400M"],"publish_date":["March 27, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2844161294","9782844161291"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624400M","cover_i":3141433,"publisher":["Artémis Editions"],"author_key":["OL3965827A"],"author_name":["Hans W. Kothe"],"id_goodreads":["4191815"],"publisher_facet":["Artémis Editions"],"_version_":1697074596293902300,"author_facet":["OL3965827A Hans W. Kothe"]}
{"key":"/works/OL10000751W","text":["/works/OL10000751W","Vogelspinnen","Vogelspinnen.","OL12708000M","76698757","3440093670","9783440093672","Kosmos (Franckh-Kosmos)","OL3965827A","Hans W. Kothe"],"type":"work","seed":["/books/OL12708000M","/works/OL10000751W","/authors/OL3965827A"],"title":"Vogelspinnen","title_suggest":["Vogelspinnen"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12708000M"],"publish_date":["March 1, 2003"],"publish_year":[2003],"first_publish_year":2003,"oclc":["76698757"],"isbn":["3440093670","9783440093672"],"last_modified_i":1304015994,"ebook_count_i":0,"cover_edition_key":"OL12708000M","cover_i":3195865,"publisher":["Kosmos (Franckh-Kosmos)"],"author_key":["OL3965827A"],"author_name":["Hans W. Kothe"],"id_goodreads":["4191817"],"publisher_facet":["Kosmos (Franckh-Kosmos)"],"_version_":1697074595855597600,"author_facet":["OL3965827A Hans W. Kothe"]}
{"key":"/works/OL10000752W","text":["/works/OL10000752W","Matériel et montages de pêche","OL12624401M","401787903","2844161324","9782844161321","Artémis","OL3965828A","P. Durantel"],"type":"work","seed":["/books/OL12624401M","/works/OL10000752W","/authors/OL3965828A"],"title":"Matériel et montages de pêche","title_suggest":["Matériel et montages de pêche"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624401M"],"publish_date":["February 5, 2003"],"publish_year":[2003],"first_publish_year":2003,"oclc":["401787903"],"isbn":["2844161324","9782844161321"],"last_modified_i":1304060338,"ebook_count_i":0,"cover_edition_key":"OL12624401M","cover_i":3141434,"publisher":["Artémis"],"author_key":["OL3965828A"],"author_name":["P. Durantel"],"publisher_facet":["Artémis"],"_version_":1697074595871326200,"author_facet":["OL3965828A P. Durantel"]}
{"key":"/works/OL10000753W","text":["/works/OL10000753W","Vers les cimes","OL12624403M","470305694","9782844161352","2844161359","Artémis","OL3965829A","Frachon /Graveline"],"type":"work","seed":["/books/OL12624403M","/works/OL10000753W","/authors/OL3965829A"],"title":"Vers les cimes","title_suggest":["Vers les cimes"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624403M"],"publish_date":["October 16, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["470305694"],"isbn":["9782844161352","2844161359"],"last_modified_i":1303845038,"ebook_count_i":0,"cover_edition_key":"OL12624403M","cover_i":3141436,"publisher":["Artémis"],"language":["fre"],"author_key":["OL3965829A"],"author_name":["Frachon /Graveline"],"publisher_facet":["Artémis"],"_version_":1697074595733962800,"author_facet":["OL3965829A Frachon /Graveline"]}
{"key":"/works/OL10000754W","text":["/works/OL10000754W","Visage animal","OL12624408M","469876695","9782844161482","2844161480","Artémis Editions","OL3965830A","Schels /Schwabenthan"],"type":"work","seed":["/books/OL12624408M","/works/OL10000754W","/authors/OL3965830A"],"title":"Visage animal","title_suggest":["Visage animal"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624408M"],"publish_date":["October 23, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["469876695"],"isbn":["9782844161482","2844161480"],"last_modified_i":1304130835,"ebook_count_i":0,"publisher":["Artémis Editions"],"language":["fre"],"author_key":["OL3965830A"],"author_name":["Schels /Schwabenthan"],"publisher_facet":["Artémis Editions"],"_version_":1697074595630153700,"author_facet":["OL3965830A Schels /Schwabenthan"]}
{"key":"/works/OL10000755W","text":["/works/OL10000755W","Le levrier afghan","OL12624410M","469697508","9782844161536","2844161537","Artémis","OL3965831A","Martial Robin"],"type":"work","seed":["/books/OL12624410M","/works/OL10000755W","/authors/OL3965831A"],"title":"Le levrier afghan","title_suggest":["Le levrier afghan"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624410M"],"publish_date":["August 28, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["469697508"],"isbn":["9782844161536","2844161537"],"last_modified_i":1307528463,"ebook_count_i":0,"cover_edition_key":"OL12624410M","cover_i":3141441,"publisher":["Artémis"],"language":["fre"],"author_key":["OL3965831A"],"author_name":["Martial Robin"],"publisher_facet":["Artémis"],"_version_":1697074596172267500,"author_facet":["OL3965831A Martial Robin"]}
{"key":"/works/OL10000756W","text":["/works/OL10000756W","Le chien de St Hubert","OL12624411M","469710749","9782844161550","2844161553","Artémis","OL3965832A","Jean-Pierre Boitard"],"type":"work","seed":["/books/OL12624411M","/works/OL10000756W","/authors/OL3965832A"],"title":"Le chien de St Hubert","title_suggest":["Le chien de St Hubert"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624411M"],"publish_date":["October 16, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["469710749"],"isbn":["9782844161550","2844161553"],"last_modified_i":1304054430,"ebook_count_i":0,"cover_edition_key":"OL12624411M","cover_i":3141442,"publisher":["Artémis"],"language":["fre"],"author_key":["OL3965832A"],"author_name":["Jean-Pierre Boitard"],"id_goodreads":["1807822"],"publisher_facet":["Artémis"],"_version_":1697074596190093300,"author_facet":["OL3965832A Jean-Pierre Boitard"]}
{"key":"/works/OL10000757W","text":["/works/OL10000757W","Briard","OL12624412M","469688548","9782844161567","2844161561","Artémis","OL3965833A","Catherine Fauguiere"],"type":"work","seed":["/books/OL12624412M","/works/OL10000757W","/authors/OL3965833A"],"title":"Briard","title_suggest":["Briard"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624412M"],"publish_date":["October 2, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["469688548"],"isbn":["9782844161567","2844161561"],"last_modified_i":1304146991,"ebook_count_i":0,"cover_edition_key":"OL12624412M","cover_i":3141443,"publisher":["Artémis"],"language":["fre"],"author_key":["OL3965833A"],"author_name":["Catherine Fauguiere"],"publisher_facet":["Artémis"],"_version_":1697074596130324500,"author_facet":["OL3965833A Catherine Fauguiere"]}
{"key":"/works/OL10000758W","text":["/works/OL10000758W","Le rottweiler","OL12624413M","9782844161574","284416157X","Artémis","OL3965834A","Franck Haymann"],"type":"work","seed":["/books/OL12624413M","/works/OL10000758W","/authors/OL3965834A"],"title":"Le rottweiler","title_suggest":["Le rottweiler"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624413M"],"publish_date":["August 28, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782844161574","284416157X"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624413M","cover_i":3141444,"publisher":["Artémis"],"language":["fre"],"author_key":["OL3965834A"],"author_name":["Franck Haymann"],"publisher_facet":["Artémis"],"_version_":1697074596277125000,"author_facet":["OL3965834A Franck Haymann"]}
{"key":"/works/OL10000759W","text":["/works/OL10000759W","Grand guide encyclopédique des champignons","OL12624414M","2844161588","9782844161581","Artémis","OL3965835A","Lamaison/ Polese"],"type":"work","seed":["/books/OL12624414M","/works/OL10000759W","/authors/OL3965835A"],"title":"Grand guide encyclopédique des champignons","title_suggest":["Grand guide encyclopédique des champignons"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624414M"],"publish_date":["October 2, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2844161588","9782844161581"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624414M","cover_i":3141445,"publisher":["Artémis"],"author_key":["OL3965835A"],"author_name":["Lamaison/ Polese"],"publisher_facet":["Artémis"],"_version_":1697074596280270800,"author_facet":["OL3965835A Lamaison/ Polese"]}
{"key":"/works/OL1000075W","text":["/works/OL1000075W","A thing of beauty","OL3384771M","Casey Claybourne.","2004563851","45177388","Copyright Paperback Collection (Library of Congress)","0425176959","9780425176955","thingofbeauty00clay","Berkley Books","OL92936A","Casey Claybourne","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL3384771M","/works/OL1000075W","/authors/OL92936A"],"title":"A thing of beauty","title_suggest":["A thing of beauty"],"has_fulltext":true,"edition_count":1,"edition_key":["OL3384771M"],"publish_date":["2000"],"publish_year":[2000],"first_publish_year":2000,"lccn":["2004563851"],"publish_place":["New York, N.Y"],"oclc":["45177388"],"contributor":["Copyright Paperback Collection (Library of Congress)"],"lcc":["CPB0000.00000000.Box no. 2112 vol. 3"],"isbn":["0425176959","9780425176955"],"last_modified_i":1607656870,"ebook_count_i":1,"ia":["thingofbeauty00clay"],"public_scan_b":false,"ia_collection_s":"china;fav-areyaar;inlibrary;printdisabled;internetarchivebooks","lending_edition_s":"OL3384771M","lending_identifier_s":"thingofbeauty00clay","printdisabled_s":"OL3384771M","cover_edition_key":"OL3384771M","cover_i":271790,"publisher":["Berkley Books"],"language":["eng"],"author_key":["OL92936A"],"author_name":["Casey Claybourne"],"subject":["Accessible book","Protected DAISY"],"id_goodreads":["1886130"],"id_librarything":["181810"],"ia_loaded_id":["thingofbeauty00clay"],"ia_box_id":["IA178501"],"publisher_facet":["Berkley Books"],"subject_facet":["Accessible book","Protected DAISY"],"_version_":1697074595621765000,"lcc_sort":"CPB0000.00000000.Box no. 2112 vol. 3","author_facet":["OL92936A Casey Claybourne"],"subject_key":["accessible_book","protected_daisy"]}
{"key":"/works/OL10000760W","text":["/works/OL10000760W","Le bouvier bernois","OL12624415M","85311481","9782844161598","2844161596","Artémis","OL3965836A","Chantal Leclercq"],"type":"work","seed":["/books/OL12624415M","/works/OL10000760W","/authors/OL3965836A"],"title":"Le bouvier bernois","title_suggest":["Le bouvier bernois"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624415M"],"publish_date":["August 28, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["85311481"],"isbn":["9782844161598","2844161596"],"last_modified_i":1304074940,"ebook_count_i":0,"cover_edition_key":"OL12624415M","cover_i":3141446,"publisher":["Artémis"],"author_key":["OL3965836A"],"author_name":["Chantal Leclercq"],"publisher_facet":["Artémis"],"_version_":1697074596395614200,"author_facet":["OL3965836A Chantal Leclercq"]}
{"key":"/works/OL10000761W","text":["/works/OL10000761W","Yorshire","OL12624416M","469709678","9782844161604","284416160X","Artémis","OL3965837A","Alain Bobek"],"type":"work","seed":["/books/OL12624416M","/works/OL10000761W","/authors/OL3965837A"],"title":"Yorshire","title_suggest":["Yorshire"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624416M"],"publish_date":["October 2, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["469709678"],"isbn":["9782844161604","284416160X"],"last_modified_i":1304166903,"ebook_count_i":0,"cover_edition_key":"OL12624416M","cover_i":3141447,"publisher":["Artémis"],"language":["fre"],"author_key":["OL3965837A"],"author_name":["Alain Bobek"],"publisher_facet":["Artémis"],"_version_":1697074596600086500,"author_facet":["OL3965837A Alain Bobek"]}
{"key":"/works/OL10000762W","text":["/works/OL10000762W","Basset Hound","OL12624418M","469691229","2844161626","9782844161628","Artémis","OL3965838A","Jacques Medard-Ringuet"],"type":"work","seed":["/books/OL12624418M","/works/OL10000762W","/authors/OL3965838A"],"title":"Basset Hound","title_suggest":["Basset Hound"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624418M"],"publish_date":["October 2, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["469691229"],"isbn":["2844161626","9782844161628"],"last_modified_i":1303769872,"ebook_count_i":0,"cover_edition_key":"OL12624418M","cover_i":3141448,"publisher":["Artémis"],"author_key":["OL3965838A"],"author_name":["Jacques Medard-Ringuet"],"publisher_facet":["Artémis"],"_version_":1697074596520394800,"author_facet":["OL3965838A Jacques Medard-Ringuet"]}
{"key":"/works/OL10000763W","text":["/works/OL10000763W","Doberman","OL12624419M","469686892","2844161634","9782844161635","Artémis","OL3965839A","Angélique Heynard"],"type":"work","seed":["/books/OL12624419M","/works/OL10000763W","/authors/OL3965839A"],"title":"Doberman","title_suggest":["Doberman"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624419M"],"publish_date":["October 2, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["469686892"],"isbn":["2844161634","9782844161635"],"last_modified_i":1307518863,"ebook_count_i":0,"cover_edition_key":"OL12624419M","cover_i":3141449,"publisher":["Artémis"],"language":["fre"],"author_key":["OL3965839A"],"author_name":["Angélique Heynard"],"publisher_facet":["Artémis"],"_version_":1697074596640981000,"author_facet":["OL3965839A Angélique Heynard"]}
{"key":"/works/OL10000764W","text":["/works/OL10000764W","Les plus belles mouches de pêche","OL12624422M","470402663","9782844161673","2844161677","Artémis","OL3965841A","N. Ragonneau"],"type":"work","seed":["/books/OL12624422M","/works/OL10000764W","/authors/OL3965841A"],"title":"Les plus belles mouches de pêche","title_suggest":["Les plus belles mouches de pêche"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624422M"],"publish_date":["February 5, 2003"],"publish_year":[2003],"first_publish_year":2003,"oclc":["470402663"],"isbn":["9782844161673","2844161677"],"last_modified_i":1303800980,"ebook_count_i":0,"cover_edition_key":"OL12624422M","cover_i":3141452,"publisher":["Artémis"],"language":["fre"],"author_key":["OL3965841A"],"author_name":["N. Ragonneau"],"publisher_facet":["Artémis"],"_version_":1697074596351574000,"author_facet":["OL3965841A N. Ragonneau"]}
{"key":"/works/OL10000765W","text":["/works/OL10000765W","Le Boxer","OL12624424M","469648644","2844161758","9782844161758","Artémis","OL3965844A","Mariet-J.C"],"type":"work","seed":["/books/OL12624424M","/works/OL10000765W","/authors/OL3965844A"],"title":"Le Boxer","title_suggest":["Le Boxer"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624424M"],"publish_date":["May 21, 2003"],"publish_year":[2003],"first_publish_year":2003,"oclc":["469648644"],"isbn":["2844161758","9782844161758"],"last_modified_i":1304062168,"ebook_count_i":0,"cover_edition_key":"OL12624424M","cover_i":3141454,"publisher":["Artémis"],"language":["fre"],"author_key":["OL3965844A"],"author_name":["Mariet-J.C"],"publisher_facet":["Artémis"],"_version_":1697074595774857200,"author_facet":["OL3965844A Mariet-J.C"]}
{"key":"/works/OL10000766W","text":["/works/OL10000766W","Le chat sacré de Birmanie","OL12624425M","469648200","9782844161765","2844161766","Artémis","OL3965845A","Catherine Kretz"],"type":"work","seed":["/books/OL12624425M","/works/OL10000766W","/authors/OL3965845A"],"title":"Le chat sacré de Birmanie","title_suggest":["Le chat sacré de Birmanie"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624425M"],"publish_date":["May 21, 2003"],"publish_year":[2003],"first_publish_year":2003,"oclc":["469648200"],"isbn":["9782844161765","2844161766"],"last_modified_i":1303945578,"ebook_count_i":0,"cover_edition_key":"OL12624425M","cover_i":3141455,"publisher":["Artémis"],"author_key":["OL3965845A"],"author_name":["Catherine Kretz"],"publisher_facet":["Artémis"],"_version_":1697074595335504000,"author_facet":["OL3965845A Catherine Kretz"]}
{"key":"/works/OL10000767W","text":["/works/OL10000767W","Le Maine Coon","OL12624426M","470090479","9782844161772","2844161774","Artémis","OL3965846A","Philippe Noël"],"type":"work","seed":["/books/OL12624426M","/works/OL10000767W","/authors/OL3965846A"],"title":"Le Maine Coon","title_suggest":["Le Maine Coon"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624426M"],"publish_date":["July 16, 2003"],"publish_year":[2003],"first_publish_year":2003,"oclc":["470090479"],"isbn":["9782844161772","2844161774"],"last_modified_i":1303825637,"ebook_count_i":0,"cover_edition_key":"OL12624426M","cover_i":3141456,"publisher":["Artémis"],"language":["fre"],"author_key":["OL3965846A"],"author_name":["Philippe Noël"],"id_goodreads":["3848718"],"publisher_facet":["Artémis"],"_version_":1697074595910123500,"author_facet":["OL3965846A Philippe Noël"]}
{"key":"/works/OL10000768W","text":["/works/OL10000768W","Le Beauceron","OL12624428M","469648459","9782844161819","2844161812","Artémis","OL3965847A","Monique Reverdy"],"type":"work","seed":["/books/OL12624428M","/works/OL10000768W","/authors/OL3965847A"],"title":"Le Beauceron","title_suggest":["Le Beauceron"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624428M"],"publish_date":["May 21, 2003"],"publish_year":[2003],"first_publish_year":2003,"oclc":["469648459"],"isbn":["9782844161819","2844161812"],"last_modified_i":1307532997,"ebook_count_i":0,"cover_edition_key":"OL12624428M","cover_i":3141458,"publisher":["Artémis"],"author_key":["OL3965847A"],"author_name":["Monique Reverdy"],"id_goodreads":["2983185"],"publisher_facet":["Artémis"],"_version_":1697074596067410000,"author_facet":["OL3965847A Monique Reverdy"]}
{"key":"/works/OL10000769W","text":["/works/OL10000769W","Le Bull terrier","OL12624430M","2844161855","9782844161857","Artémis","OL3965848A","Julie Deutsch"],"type":"work","seed":["/books/OL12624430M","/works/OL10000769W","/authors/OL3965848A"],"title":"Le Bull terrier","title_suggest":["Le Bull terrier"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624430M"],"publish_date":["July 16, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["2844161855","9782844161857"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624430M","cover_i":3141460,"publisher":["Artémis"],"language":["fre"],"author_key":["OL3965848A"],"author_name":["Julie Deutsch"],"publisher_facet":["Artémis"],"_version_":1697074596466917400,"author_facet":["OL3965848A Julie Deutsch"]}
{"key":"/works/OL1000076W","text":["/works/OL1000076W","Tiger by the Tail","OL7504115M","41252914","0425163210","9780425163214","Berkley","OL92936A","Casey Claybourne","Social life and customs","Fiction"],"type":"work","seed":["/books/OL7504115M","/works/OL1000076W","/subjects/social_life_and_customs","/subjects/fiction","/authors/OL92936A"],"title":"Tiger by the Tail","title_suggest":["Tiger by the Tail"],"has_fulltext":false,"edition_count":1,"edition_key":["OL7504115M"],"publish_date":["May 1, 1999"],"publish_year":[1999],"first_publish_year":1999,"oclc":["41252914"],"isbn":["0425163210","9780425163214"],"last_modified_i":1339631295,"ebook_count_i":0,"cover_edition_key":"OL7504115M","cover_i":271109,"publisher":["Berkley"],"language":["eng"],"author_key":["OL92936A"],"author_name":["Casey Claybourne"],"subject":["Social life and customs","Fiction"],"id_goodreads":["1359974"],"id_librarything":["40360"],"publisher_facet":["Berkley"],"subject_facet":["Fiction","Social life and customs"],"_version_":1697074596389322800,"author_facet":["OL92936A Casey Claybourne"],"subject_key":["fiction","social_life_and_customs"]}
{"key":"/works/OL10000770W","text":["/works/OL10000770W","Bizarre !","OL12625716M","2845263791","9782845263796","Publications de l'Ecole Moderne Française (PEMF)","OL3965853A","Grégoire Vallancien"],"type":"work","seed":["/books/OL12625716M","/works/OL10000770W","/authors/OL3965853A"],"title":"Bizarre !","title_suggest":["Bizarre !"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12625716M"],"publish_date":["September 19, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2845263791","9782845263796"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12625716M","cover_i":3142654,"publisher":["Publications de l'Ecole Moderne Française (PEMF)"],"author_key":["OL3965853A"],"author_name":["Grégoire Vallancien"],"id_goodreads":["6815959"],"publisher_facet":["Publications de l'Ecole Moderne Française (PEMF)"],"_version_":1697074596040147000,"author_facet":["OL3965853A Grégoire Vallancien"]}
{"key":"/works/OL10000771W","text":["/works/OL10000771W","Monna, la vache","OL12624488M","2844200907","9782844200907","Thierry Magnier","OL3965855A","Claude Bonnin"],"type":"work","seed":["/books/OL12624488M","/works/OL10000771W","/authors/OL3965855A"],"title":"Monna, la vache","title_suggest":["Monna, la vache"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624488M"],"publish_date":["May 23, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2844200907","9782844200907"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624488M","cover_i":3141518,"publisher":["Thierry Magnier"],"language":["fre"],"author_key":["OL3965855A"],"author_name":["Claude Bonnin"],"id_goodreads":["6195137"],"publisher_facet":["Thierry Magnier"],"_version_":1697074596622106600,"author_facet":["OL3965855A Claude Bonnin"]}
{"key":"/works/OL10000772W","text":["/works/OL10000772W","Qui t'es toi ?","OL12624452M","9782844200204","2844200206","Thierry Magnier","OL3965855A","Claude Bonnin"],"type":"work","seed":["/books/OL12624452M","/works/OL10000772W","/authors/OL3965855A"],"title":"Qui t'es toi ?","title_suggest":["Qui t'es toi ?"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624452M"],"publish_date":["September 3, 1998"],"publish_year":[1998],"first_publish_year":1998,"isbn":["9782844200204","2844200206"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624452M","cover_i":3141482,"publisher":["Thierry Magnier"],"author_key":["OL3965855A"],"author_name":["Claude Bonnin"],"id_goodreads":["6195136"],"publisher_facet":["Thierry Magnier"],"_version_":1697074595843014700,"author_facet":["OL3965855A Claude Bonnin"]}
{"key":"/works/OL10000773W","text":["/works/OL10000773W","Celui qui n'etait pas encore le Che","OL12624460M","9782844200372","2844200370","Thierry Magnier","OL3965860A","Christian Moire"],"type":"work","seed":["/books/OL12624460M","/works/OL10000773W","/authors/OL3965860A"],"title":"Celui qui n'etait pas encore le Che","title_suggest":["Celui qui n'etait pas encore le Che"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624460M"],"publish_date":["April 23, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782844200372","2844200370"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624460M","cover_i":3141490,"publisher":["Thierry Magnier"],"language":["fre"],"author_key":["OL3965860A"],"author_name":["Christian Moire"],"publisher_facet":["Thierry Magnier"],"_version_":1697074596031758300,"author_facet":["OL3965860A Christian Moire"]}
{"key":"/works/OL10000774W","text":["/works/OL10000774W","Mon cochon","OL12624465M","9782844200433","2844200435","Thierry Magnier","OL3965861A","Jean-Pierre Blanpain"],"type":"work","seed":["/books/OL12624465M","/works/OL10000774W","/authors/OL3965861A"],"title":"Mon cochon","title_suggest":["Mon cochon"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624465M"],"publish_date":["April 23, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["9782844200433","2844200435"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624465M","cover_i":3141495,"publisher":["Thierry Magnier"],"language":["fre"],"author_key":["OL3965861A"],"author_name":["Jean-Pierre Blanpain"],"publisher_facet":["Thierry Magnier"],"_version_":1697074596666146800,"author_facet":["OL3965861A Jean-Pierre Blanpain"]}
{"key":"/works/OL10000775W","text":["/works/OL10000775W","Sur la piste de Liza","OL12624467M","2844200486","9782844200488","Thierry Magnier","OL3965862A","Guillaume Cherel"],"type":"work","seed":["/books/OL12624467M","/works/OL10000775W","/authors/OL3965862A"],"title":"Sur la piste de Liza","title_suggest":["Sur la piste de Liza"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624467M"],"publish_date":["March 28, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2844200486","9782844200488"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624467M","cover_i":3141497,"publisher":["Thierry Magnier"],"author_key":["OL3965862A"],"author_name":["Guillaume Cherel"],"id_goodreads":["5409834"],"publisher_facet":["Thierry Magnier"],"_version_":1697074595904880600,"author_facet":["OL3965862A Guillaume Cherel"]}
{"key":"/works/OL10000776W","text":["/works/OL10000776W","Le Pou qui lit","OL12624472M","9782844200624","2844200621","Thierry Magnier","OL3965863A","Richard Le Coguen"],"type":"work","seed":["/books/OL12624472M","/works/OL10000776W","/authors/OL3965863A"],"title":"Le Pou qui lit","title_suggest":["Le Pou qui lit"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624472M"],"publish_date":["April 25, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782844200624","2844200621"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624472M","cover_i":3141502,"publisher":["Thierry Magnier"],"author_key":["OL3965863A"],"author_name":["Richard Le Coguen"],"publisher_facet":["Thierry Magnier"],"_version_":1697074596215259100,"author_facet":["OL3965863A Richard Le Coguen"]}
{"key":"/works/OL10000777W","text":["/works/OL10000777W","La Danse interdite","OL12624474M","2844200699","9782844200693","Thierry Magnier","OL3965864A","Rachel Hausfater-Douieb"],"type":"work","seed":["/books/OL12624474M","/works/OL10000777W","/authors/OL3965864A"],"title":"La Danse interdite","title_suggest":["La Danse interdite"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624474M"],"publish_date":["March 28, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2844200699","9782844200693"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624474M","cover_i":3141504,"publisher":["Thierry Magnier"],"language":["fre"],"author_key":["OL3965864A"],"author_name":["Rachel Hausfater-Douieb"],"id_goodreads":["3114495"],"publisher_facet":["Thierry Magnier"],"_version_":1697074596592746500,"author_facet":["OL3965864A Rachel Hausfater-Douieb"]}
{"key":"/works/OL10000778W","text":["/works/OL10000778W","Le Chat qui était Lord","OL12624476M","9782844200723","2844200729","Thierry Magnier","OL3965865A","Laurent Rouxel"],"type":"work","seed":["/books/OL12624476M","/works/OL10000778W","/authors/OL3965865A"],"title":"Le Chat qui était Lord","title_suggest":["Le Chat qui était Lord"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624476M"],"publish_date":["April 25, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782844200723","2844200729"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624476M","cover_i":3141506,"publisher":["Thierry Magnier"],"language":["fre"],"author_key":["OL3965865A"],"author_name":["Laurent Rouxel"],"id_goodreads":["3061140"],"publisher_facet":["Thierry Magnier"],"_version_":1697074595863986200,"author_facet":["OL3965865A Laurent Rouxel"]}
{"key":"/works/OL10000779W","text":["/works/OL10000779W","Drôle de conte","OL12624477M","2844200737","9782844200730","Thierry Magnier","OL3965866A","Marie Haumont"],"type":"work","seed":["/books/OL12624477M","/works/OL10000779W","/authors/OL3965866A"],"title":"Drôle de conte","title_suggest":["Drôle de conte"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624477M"],"publish_date":["April 25, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2844200737","9782844200730"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624477M","cover_i":3141507,"publisher":["Thierry Magnier"],"language":["fre"],"author_key":["OL3965866A"],"author_name":["Marie Haumont"],"publisher_facet":["Thierry Magnier"],"_version_":1697074595897540600,"author_facet":["OL3965866A Marie Haumont"]}
{"key":"/works/OL1000077W","text":["/works/OL1000077W","The baron","OL3666060M","Juliana Garnett.","2002559613","43051728","Copyright Paperback Collection (Library of Congress)","0553576283","9780553576283","baron0000garn","Bantam Books","OL92937A","Juliana Garnett","Man-woman relationships","Romance fiction","Historical fiction","Fiction","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL3666060M","/works/OL1000077W","/subjects/man-woman_relationships","/subjects/romance_fiction","/subjects/historical_fiction","/subjects/fiction","/authors/OL92937A"],"title":"The baron","title_suggest":["The baron"],"has_fulltext":true,"edition_count":1,"edition_key":["OL3666060M"],"publish_date":["1999"],"publish_year":[1999],"first_publish_year":1999,"lccn":["2002559613"],"publish_place":["New York"],"oclc":["43051728"],"contributor":["Copyright Paperback Collection (Library of Congress)"],"lcc":["CPB0000.00000000.Box no. 1794 vol. 19"],"isbn":["0553576283","9780553576283"],"last_modified_i":1607372011,"ebook_count_i":1,"ia":["baron0000garn"],"public_scan_b":false,"ia_collection_s":"inlibrary;fav-emily_rutzen;printdisabled;internetarchivebooks","lending_edition_s":"OL3666060M","lending_identifier_s":"baron0000garn","printdisabled_s":"OL3666060M","cover_edition_key":"OL3666060M","cover_i":372630,"publisher":["Bantam Books"],"language":["eng"],"author_key":["OL92937A"],"author_name":["Juliana Garnett"],"subject":["Man-woman relationships","Romance fiction","Historical fiction","Fiction","Accessible book","Protected DAISY"],"id_goodreads":["3009765"],"id_librarything":["1688276"],"ia_box_id":["IA1867614"],"publisher_facet":["Bantam Books"],"subject_facet":["Accessible book","Fiction","Historical fiction","Man-woman relationships","Protected DAISY","Romance fiction"],"_version_":1697074595436167200,"lcc_sort":"CPB0000.00000000.Box no. 1794 vol. 19","author_facet":["OL92937A Juliana Garnett"],"subject_key":["accessible_book","fiction","historical_fiction","man-woman_relationships","protected_daisy","romance_fiction"]}
{"key":"/works/OL10000780W","text":["/works/OL10000780W","Pour de faux","OL12624479M","2844200761","9782844200761","Thierry Magnier","OL3965867A","Musitelli"],"type":"work","seed":["/books/OL12624479M","/works/OL10000780W","/authors/OL3965867A"],"title":"Pour de faux","title_suggest":["Pour de faux"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624479M"],"publish_date":["March 28, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2844200761","9782844200761"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624479M","cover_i":3141509,"publisher":["Thierry Magnier"],"language":["fre"],"author_key":["OL3965867A"],"author_name":["Musitelli"],"publisher_facet":["Thierry Magnier"],"_version_":1697074596541366300,"author_facet":["OL3965867A Musitelli"]}
{"key":"/works/OL10000781W","text":["/works/OL10000781W","Souvenirs de Paris","OL12624480M","9782844200778","284420077X","Thierry Magnier","OL3965868A","Cécile Paris"],"type":"work","seed":["/books/OL12624480M","/works/OL10000781W","/authors/OL3965868A"],"title":"Souvenirs de Paris","title_suggest":["Souvenirs de Paris"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624480M"],"publish_date":["March 28, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782844200778","284420077X"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624480M","cover_i":3141510,"publisher":["Thierry Magnier"],"language":["fre"],"author_key":["OL3965868A"],"author_name":["Cécile Paris"],"publisher_facet":["Thierry Magnier"],"_version_":1697074596090478600,"author_facet":["OL3965868A Cécile Paris"]}
{"key":"/works/OL10000782W","text":["/works/OL10000782W","Bonhomme bonhomme","OL12624481M","2844200788","9782844200785","Thierry Magnier","OL3965869A","Galota"],"type":"work","seed":["/books/OL12624481M","/works/OL10000782W","/authors/OL3965869A"],"title":"Bonhomme bonhomme","title_suggest":["Bonhomme bonhomme"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624481M"],"publish_date":["March 28, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2844200788","9782844200785"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624481M","cover_i":3141511,"publisher":["Thierry Magnier"],"language":["fre"],"author_key":["OL3965869A"],"author_name":["Galota"],"publisher_facet":["Thierry Magnier"],"_version_":1697074596079992800,"author_facet":["OL3965869A Galota"]}
{"key":"/works/OL10000783W","text":["/works/OL10000783W","Mon Roi","OL12624482M","9782844200808","284420080X","Thierry Magnier","OL3965870A","Céline Caneparo"],"type":"work","seed":["/books/OL12624482M","/works/OL10000783W","/authors/OL3965870A"],"title":"Mon Roi","title_suggest":["Mon Roi"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624482M"],"publish_date":["March 28, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782844200808","284420080X"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624482M","cover_i":3141512,"publisher":["Thierry Magnier"],"language":["fre"],"author_key":["OL3965870A"],"author_name":["Céline Caneparo"],"id_goodreads":["5767309"],"publisher_facet":["Thierry Magnier"],"_version_":1697074596593795000,"author_facet":["OL3965870A Céline Caneparo"]}
{"key":"/works/OL10000784W","text":["/works/OL10000784W","C'est la dernière fois","OL12624484M","9782844200822","2844200826","Thierry Magnier","OL3965872A","Seb. Lyky"],"type":"work","seed":["/books/OL12624484M","/works/OL10000784W","/authors/OL3965872A"],"title":"C'est la dernière fois","title_suggest":["C'est la dernière fois"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624484M"],"publish_date":["March 28, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782844200822","2844200826"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624484M","cover_i":3141514,"publisher":["Thierry Magnier"],"author_key":["OL3965872A"],"author_name":["Seb. Lyky"],"publisher_facet":["Thierry Magnier"],"_version_":1697074596624203800,"author_facet":["OL3965872A Seb. Lyky"]}
{"key":"/works/OL10000785W","text":["/works/OL10000785W","Joseph dans tous ses états","OL12624494M","9782844201072","2844201075","Thierry Magnier","OL3965873A","Riton Dupire-Clément"],"type":"work","seed":["/books/OL12624494M","/works/OL10000785W","/authors/OL3965873A"],"title":"Joseph dans tous ses états","title_suggest":["Joseph dans tous ses états"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624494M"],"publish_date":["March 28, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782844201072","2844201075"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624494M","cover_i":3141524,"publisher":["Thierry Magnier"],"author_key":["OL3965873A"],"author_name":["Riton Dupire-Clément"],"id_goodreads":["2545441"],"publisher_facet":["Thierry Magnier"],"_version_":1697074596224696300,"author_facet":["OL3965873A Riton Dupire-Clément"]}
{"key":"/works/OL10000786W","text":["/works/OL10000786W","Pas de bol","OL12624502M","9782844201270","284420127X","Thierry Magnier","OL3965878A","Bronn Morgenstern"],"type":"work","seed":["/books/OL12624502M","/works/OL10000786W","/authors/OL3965878A"],"title":"Pas de bol","title_suggest":["Pas de bol"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624502M"],"publish_date":["September 28, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782844201270","284420127X"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624502M","cover_i":3141532,"publisher":["Thierry Magnier"],"author_key":["OL3965878A"],"author_name":["Bronn Morgenstern"],"id_goodreads":["617547"],"publisher_facet":["Thierry Magnier"],"_version_":1697074595893346300,"author_facet":["OL3965878A Bronn Morgenstern"]}
{"key":"/works/OL10000787W","text":["/works/OL10000787W","La vie belle","OL12624516M","9782844201461","2844201466","Thierry Magnier","OL3965881A","Herv Coffinieres"],"type":"work","seed":["/books/OL12624516M","/works/OL10000787W","/authors/OL3965881A"],"title":"La vie belle","title_suggest":["La vie belle"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624516M"],"publish_date":["March 28, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782844201461","2844201466"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624516M","cover_i":3141546,"publisher":["Thierry Magnier"],"author_key":["OL3965881A"],"author_name":["Herv Coffinieres"],"publisher_facet":["Thierry Magnier"],"_version_":1697074595987718100,"author_facet":["OL3965881A Herv Coffinieres"]}
{"key":"/works/OL10000788W","text":["/works/OL10000788W","Ceci est un livre","OL12624517M","9782844201478","2844201474","Thierry Magnier","OL3965882A","Jarrie Louchard"],"type":"work","seed":["/books/OL12624517M","/works/OL10000788W","/authors/OL3965882A"],"title":"Ceci est un livre","title_suggest":["Ceci est un livre"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624517M"],"publish_date":["March 28, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782844201478","2844201474"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624517M","cover_i":3141547,"publisher":["Thierry Magnier"],"language":["fre"],"author_key":["OL3965882A"],"author_name":["Jarrie Louchard"],"id_goodreads":["2158244"],"publisher_facet":["Thierry Magnier"],"_version_":1697074596043292700,"author_facet":["OL3965882A Jarrie Louchard"]}
{"key":"/works/OL10000789W","text":["/works/OL10000789W","Dents de loup","OL12624519M","9782844201508","2844201504","Thierry Magnier","OL3965883A","Jean Lecointre"],"type":"work","seed":["/books/OL12624519M","/works/OL10000789W","/authors/OL3965883A"],"title":"Dents de loup","title_suggest":["Dents de loup"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624519M"],"publish_date":["March 28, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782844201508","2844201504"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12624519M","cover_i":3141549,"publisher":["Thierry Magnier"],"language":["fre"],"author_key":["OL3965883A"],"author_name":["Jean Lecointre"],"id_librarything":["5490135"],"publisher_facet":["Thierry Magnier"],"_version_":1697074596448043000,"author_facet":["OL3965883A Jean Lecointre"]}
{"key":"/works/OL1000078W","text":["/works/OL1000078W","Bittersüßes Versprechen","Bittersüßes Versprechen.","OL12703227M","76239378","9783426690314","3426690314","Droemer Knaur","OL92937A","Juliana Garnett"],"type":"work","seed":["/books/OL12703227M","/works/OL1000078W","/authors/OL92937A"],"title":"Bittersüßes Versprechen","title_suggest":["Bittersüßes Versprechen"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12703227M"],"publish_date":["April 1, 1999"],"publish_year":[1999],"first_publish_year":1999,"oclc":["76239378"],"isbn":["9783426690314","3426690314"],"last_modified_i":1307504622,"ebook_count_i":0,"cover_edition_key":"OL12703227M","cover_i":3192968,"publisher":["Droemer Knaur"],"author_key":["OL92937A"],"author_name":["Juliana Garnett"],"id_goodreads":["3007343"],"id_librarything":["187952"],"publisher_facet":["Droemer Knaur"],"_version_":1697074596434411500,"author_facet":["OL92937A Juliana Garnett"]}
{"key":"/works/OL10000790W","text":["/works/OL10000790W","Papa au bureau","OL12624520M","9782844201515","2844201512","Thierry Magnier","OL3965884A","Pierre Fatus"],"type":"work","seed":["/books/OL12624520M","/works/OL10000790W","/authors/OL3965884A"],"title":"Papa au bureau","title_suggest":["Papa au bureau"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624520M"],"publish_date":["March 28, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782844201515","2844201512"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624520M","cover_i":3141550,"publisher":["Thierry Magnier"],"author_key":["OL3965884A"],"author_name":["Pierre Fatus"],"publisher_facet":["Thierry Magnier"],"_version_":1697074596001349600,"author_facet":["OL3965884A Pierre Fatus"]}
{"key":"/works/OL10000791W","text":["/works/OL10000791W","Les insupportables","OL12624522M","9782844201591","2844201598","Thierry Magnier","OL3965885A","Joly Besse"],"type":"work","seed":["/books/OL12624522M","/works/OL10000791W","/authors/OL3965885A"],"title":"Les insupportables","title_suggest":["Les insupportables"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624522M"],"publish_date":["May 28, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782844201591","2844201598"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624522M","cover_i":3141552,"publisher":["Thierry Magnier"],"language":["fre"],"author_key":["OL3965885A"],"author_name":["Joly Besse"],"publisher_facet":["Thierry Magnier"],"_version_":1697074596525637600,"author_facet":["OL3965885A Joly Besse"]}
{"key":"/works/OL10000792W","text":["/works/OL10000792W","A table","OL12624523M","2844201601","9782844201607","Thierry Magnier","OL3965886A","Louchard /Couprie"],"type":"work","seed":["/books/OL12624523M","/works/OL10000792W","/authors/OL3965886A"],"title":"A table","title_suggest":["A table"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624523M"],"publish_date":["May 28, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2844201601","9782844201607"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624523M","cover_i":3141553,"publisher":["Thierry Magnier"],"language":["fre"],"author_key":["OL3965886A"],"author_name":["Louchard /Couprie"],"publisher_facet":["Thierry Magnier"],"_version_":1697074595872374800,"author_facet":["OL3965886A Louchard /Couprie"]}
{"key":"/works/OL10000793W","text":["/works/OL10000793W","Boutique jaune (la)","OL12624524M","9782844201614","284420161X","Thierry Magnier","OL3965887A","Benameur/Guilloppe"],"type":"work","seed":["/books/OL12624524M","/works/OL10000793W","/authors/OL3965887A"],"title":"Boutique jaune (la)","title_suggest":["Boutique jaune (la)"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624524M"],"publish_date":["April 26, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782844201614","284420161X"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624524M","cover_i":3141554,"publisher":["Thierry Magnier"],"language":["fre"],"author_key":["OL3965887A"],"author_name":["Benameur/Guilloppe"],"publisher_facet":["Thierry Magnier"],"_version_":1697074595732914200,"author_facet":["OL3965887A Benameur/Guilloppe"]}
{"key":"/works/OL10000794W","text":["/works/OL10000794W","C'est la règle","OL12624526M","9782844201652","2844201652","Thierry Magnier","OL3965888A","Pineau/Gisele"],"type":"work","seed":["/books/OL12624526M","/works/OL10000794W","/authors/OL3965888A"],"title":"C'est la règle","title_suggest":["C'est la règle"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624526M"],"publish_date":["April 26, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782844201652","2844201652"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624526M","cover_i":3141556,"publisher":["Thierry Magnier"],"author_key":["OL3965888A"],"author_name":["Pineau/Gisele"],"id_goodreads":["5071838"],"publisher_facet":["Thierry Magnier"],"_version_":1697074596639932400,"author_facet":["OL3965888A Pineau/Gisele"]}
{"key":"/works/OL10000795W","text":["/works/OL10000795W","Retour a douala","OL12624530M","9782844201720","2844201725","Thierry Magnier","OL3965890A","Marie-Felicit Ebokea"],"type":"work","seed":["/books/OL12624530M","/works/OL10000795W","/authors/OL3965890A"],"title":"Retour a douala","title_suggest":["Retour a douala"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624530M"],"publish_date":["September 27, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782844201720","2844201725"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624530M","cover_i":3141560,"publisher":["Thierry Magnier"],"language":["fre"],"author_key":["OL3965890A"],"author_name":["Marie-Felicit Ebokea"],"publisher_facet":["Thierry Magnier"],"_version_":1697074595884957700,"author_facet":["OL3965890A Marie-Felicit Ebokea"]}
{"key":"/works/OL10000796W","text":["/works/OL10000796W","Operation cobra","OL12624531M","9782844201744","2844201741","Thierry Magnier","OL3965891A","Stephane Daniel"],"type":"work","seed":["/books/OL12624531M","/works/OL10000796W","/authors/OL3965891A"],"title":"Operation cobra","title_suggest":["Operation cobra"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624531M"],"publish_date":["September 27, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782844201744","2844201741"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12624531M","cover_i":3141561,"publisher":["Thierry Magnier"],"language":["fre"],"author_key":["OL3965891A"],"author_name":["Stephane Daniel"],"id_librarything":["8112841"],"publisher_facet":["Thierry Magnier"],"_version_":1697074596375691300,"author_facet":["OL3965891A Stephane Daniel"]}
{"key":"/works/OL10000797W","text":["/works/OL10000797W","Ce soir y'a match","OL12624556M","2844202446","9782844202444","Thierry Magnier","OL3965892A","Yann Mens"],"type":"work","seed":["/books/OL12624556M","/works/OL10000797W","/authors/OL3965892A"],"title":"Ce soir y'a match","title_suggest":["Ce soir y'a match"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624556M"],"publish_date":["May 15, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["2844202446","9782844202444"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624556M","cover_i":3141586,"publisher":["Thierry Magnier"],"author_key":["OL3965892A"],"author_name":["Yann Mens"],"id_goodreads":["5174389"],"publisher_facet":["Thierry Magnier"],"_version_":1697074595638542300,"author_facet":["OL3965892A Yann Mens"]}
{"key":"/works/OL10000798W","text":["/works/OL10000798W","Les États-Unis et le Moyen-Orient","États-Unis et le Moyen-Orient","OL20123427M","dossier constitué par Yann Mens.","France. Secrétariat Général. Direction de la Documentation.","Documentation française","OL3965892A","Yann Mens"],"type":"work","seed":["/books/OL20123427M","/works/OL10000798W","/authors/OL3965892A"],"title":"Les États-Unis et le Moyen-Orient","title_suggest":["Les États-Unis et le Moyen-Orient"],"has_fulltext":false,"edition_count":1,"edition_key":["OL20123427M"],"publish_date":["1992"],"publish_year":[1992],"first_publish_year":1992,"publish_place":["Paris"],"contributor":["France. Secrétariat Général. Direction de la Documentation."],"last_modified_i":1260859770,"ebook_count_i":0,"publisher":["Documentation française"],"language":["fre"],"author_key":["OL3965892A"],"author_name":["Yann Mens"],"publisher_facet":["Documentation française"],"_version_":1697074596152344600,"author_facet":["OL3965892A Yann Mens"]}
{"key":"/works/OL10000799W","text":["/works/OL10000799W","A table president !","OL12624534M","9782844201775","2844201776","Thierry Magnier","OL3965892A","Yann Mens"],"type":"work","seed":["/books/OL12624534M","/works/OL10000799W","/authors/OL3965892A"],"title":"A table president !","title_suggest":["A table president !"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624534M"],"publish_date":["September 27, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782844201775","2844201776"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624534M","cover_i":3141564,"publisher":["Thierry Magnier"],"author_key":["OL3965892A"],"author_name":["Yann Mens"],"id_goodreads":["3494999"],"publisher_facet":["Thierry Magnier"],"_version_":1697074595969892400,"author_facet":["OL3965892A Yann Mens"]}
{"key":"/works/OL1000079W","text":["/works/OL1000079W","Gefangene der Sinnlichkeit","Gefangene der Sinnlichkeit.","OL12703247M","9783426690727","3426690721","Droemersche Verlagsanstalt Th. Knaur Nachf., GmbH & Co.","OL92937A","Juliana Garnett"],"type":"work","seed":["/books/OL12703247M","/works/OL1000079W","/authors/OL92937A"],"title":"Gefangene der Sinnlichkeit","title_suggest":["Gefangene der Sinnlichkeit"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12703247M"],"publish_date":["June 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9783426690727","3426690721"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12703247M","cover_i":3192987,"publisher":["Droemersche Verlagsanstalt Th. Knaur Nachf., GmbH & Co."],"author_key":["OL92937A"],"author_name":["Juliana Garnett"],"publisher_facet":["Droemersche Verlagsanstalt Th. Knaur Nachf., GmbH & Co."],"_version_":1697074595887054800,"author_facet":["OL92937A Juliana Garnett"]}
{"key":"/works/OL100007W","text":["/works/OL100007W","Rituals of the Season","Rituals of the season","mandeep singh namdhari from shimla puri ludihiana","i live in shimla puri ludihiana","OL18513725M","OL3301157M","OL23273543M","OL24263222M","OL3402028M","OL24749302M","Margaret Maron","by Margaret Maron.","Margaret Maron.","2005016802","2004030823","57406045","642314486","9780786280032","9780446509527","9780892968091","0446509523","0786280034","0892968095","ritualsofseason00maro_0","ritualsofseason00maro","Grand Central Publishing","mandeep book company","Thorndike Press","Mysterious Press","OL3326443A","Margaret Maron","Margaret Maron","Maron, Margaret","MARGARET MARON","India","North Carolina","Sources","Sikhs","History","Fiction","Mystery","Deborah Knott (Fictitious character)","Women judges","Weddings","Large type books","Accessible book","Protected DAISY","British occupation, 1765-1947"],"type":"work","seed":["/books/OL18513725M","/books/OL3301157M","/books/OL23273543M","/books/OL24263222M","/books/OL3402028M","/books/OL24749302M","/works/OL100007W","/subjects/sources","/subjects/sikhs","/subjects/history","/subjects/fiction","/subjects/mystery","/subjects/deborah_knott_(fictitious_character)","/subjects/women_judges","/subjects/weddings","/subjects/large_type_books","/subjects/place:india","/subjects/place:north_carolina","/subjects/time:british_occupation_1765-1947","/authors/OL3326443A"],"title":"Rituals of the Season","title_suggest":["Rituals of the Season"],"has_fulltext":true,"edition_count":6,"edition_key":["OL18513725M","OL3301157M","OL23273543M","OL24263222M","OL3402028M","OL24749302M"],"publish_date":["1988","2005"],"publish_year":[1988,2005],"first_publish_year":1988,"lccn":["2005016802","2004030823"],"publish_place":["Waterville, Me","New York","ludihiana"],"oclc":["57406045","642314486"],"lcc":["PS-3563.00000000.A679 R58 2005b","PS-3563.00000000.A679 R58 2005"],"ddc":["813.54"],"isbn":["9780786280032","9780446509527","9780892968091","0446509523","0786280034","0892968095"],"last_modified_i":1613807791,"ebook_count_i":2,"ia":["ritualsofseason00maro_0","ritualsofseason00maro"],"public_scan_b":false,"ia_collection_s":"china;spokanepubliclibrary-ol;inlibrary;printdisabled;hamiltonpubliclibrary-ol;internetarchivebooks;denverpubliclibrary-ol","lending_edition_s":"OL23273543M","lending_identifier_s":"ritualsofseason00maro","printdisabled_s":"OL24749302M;OL3402028M;OL23273543M","cover_edition_key":"OL3301157M","cover_i":691981,"publisher":["Grand Central Publishing","mandeep book company","Thorndike Press","Mysterious Press"],"language":["eng"],"author_key":["OL3326443A"],"author_name":["Margaret Maron"],"author_alternative_name":["Margaret Maron","Maron, Margaret","MARGARET MARON"],"place":["India","North Carolina"],"subject":["Sources","Sikhs","History","Fiction","Mystery","Deborah Knott (Fictitious character)","Women judges","Weddings","Large type books","Accessible book","Protected DAISY"],"time":["British occupation, 1765-1947"],"id_goodreads":["825140","537299"],"id_librarything":["177133"],"id_overdrive":["19E093CB-2C43-406D-B808-957EEC96CB67"],"ia_box_id":["IA1145402","IA132509"],"publisher_facet":["Grand Central Publishing","Mysterious Press","Thorndike Press","mandeep book company"],"place_key":["india","north_carolina"],"time_facet":["British occupation, 1765-1947"],"subject_facet":["Accessible book","Deborah Knott (Fictitious character)","Fiction","History","Large type books","Mystery","Protected DAISY","Sikhs","Sources","Weddings","Women judges"],"_version_":1697074596615815200,"place_facet":["India","North Carolina"],"lcc_sort":"PS-3563.00000000.A679 R58 2005b","author_facet":["OL3326443A Margaret Maron"],"subject_key":["accessible_book","deborah_knott_(fictitious_character)","fiction","history","large_type_books","mystery","protected_daisy","sikhs","sources","weddings","women_judges"],"ddc_sort":"813.54","time_key":["british_occupation_1765-1947"]}
{"key":"/works/OL10000800W","text":["/works/OL10000800W","Analphabetes","OL12624538M","401559449","2844201857","9782844201850","Thierry Magnier","OL3965893A","Jean-Marc Fiess"],"type":"work","seed":["/books/OL12624538M","/works/OL10000800W","/authors/OL3965893A"],"title":"Analphabetes","title_suggest":["Analphabetes"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624538M"],"publish_date":["September 27, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["401559449"],"isbn":["2844201857","9782844201850"],"last_modified_i":1304043306,"ebook_count_i":0,"cover_edition_key":"OL12624538M","cover_i":3141568,"publisher":["Thierry Magnier"],"language":["fre"],"author_key":["OL3965893A"],"author_name":["Jean-Marc Fiess"],"publisher_facet":["Thierry Magnier"],"_version_":1697074596260348000,"author_facet":["OL3965893A Jean-Marc Fiess"]}
{"key":"/works/OL10000801W","text":["/works/OL10000801W","Des rebus, des proverbes","OL12624540M","2003438699","9782844201966","2844201962","Thierry Magnier","OL3965895A","Anne-Marie Adda"],"type":"work","seed":["/books/OL12624540M","/works/OL10000801W","/authors/OL3965895A"],"title":"Des rebus, des proverbes","title_suggest":["Des rebus, des proverbes"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624540M"],"publish_date":["November 27, 2002"],"publish_year":[2002],"first_publish_year":2002,"lccn":["2003438699"],"isbn":["9782844201966","2844201962"],"last_modified_i":1607370857,"ebook_count_i":0,"cover_edition_key":"OL12624540M","cover_i":3141570,"publisher":["Thierry Magnier"],"author_key":["OL3965895A"],"author_name":["Anne-Marie Adda"],"publisher_facet":["Thierry Magnier"],"_version_":1697074595984572400,"author_facet":["OL3965895A Anne-Marie Adda"]}
{"key":"/works/OL10000802W","text":["/works/OL10000802W","Rébus, proverbes","OL17433946M","Anne-Marie Adda.","2003438699","9782844201966","2844201962","T. Magnier","OL3965895A","Anne-Marie Adda"],"type":"work","seed":["/books/OL17433946M","/works/OL10000802W","/authors/OL3965895A"],"title":"Rébus, proverbes","title_suggest":["Rébus, proverbes"],"has_fulltext":false,"edition_count":1,"edition_key":["OL17433946M"],"publish_date":["2002"],"publish_year":[2002],"first_publish_year":2002,"lccn":["2003438699"],"publish_place":["Paris"],"isbn":["9782844201966","2844201962"],"last_modified_i":1260850508,"ebook_count_i":0,"publisher":["T. Magnier"],"language":["fre"],"author_key":["OL3965895A"],"author_name":["Anne-Marie Adda"],"publisher_facet":["T. Magnier"],"_version_":1697074596409245700,"author_facet":["OL3965895A Anne-Marie Adda"]}
{"key":"/works/OL10000803W","text":["/works/OL10000803W","A-pic","OL12624542M","9782844201997","2844201997","Thierry Magnier","OL3965896A","Franck Secka"],"type":"work","seed":["/books/OL12624542M","/works/OL10000803W","/authors/OL3965896A"],"title":"A-pic","title_suggest":["A-pic"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624542M"],"publish_date":["October 29, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782844201997","2844201997"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624542M","cover_i":3141572,"publisher":["Thierry Magnier"],"language":["fre"],"author_key":["OL3965896A"],"author_name":["Franck Secka"],"publisher_facet":["Thierry Magnier"],"_version_":1697074596601135000,"author_facet":["OL3965896A Franck Secka"]}
{"key":"/works/OL10000804W","text":["/works/OL10000804W","Jour de colere","OL12624543M","2844202020","9782844202024","Thierry Magnier","OL3965897A","Caryl Ferey"],"type":"work","seed":["/books/OL12624543M","/works/OL10000804W","/authors/OL3965897A"],"title":"Jour de colere","title_suggest":["Jour de colere"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624543M"],"publish_date":["February 26, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["2844202020","9782844202024"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624543M","cover_i":3141573,"publisher":["Thierry Magnier"],"language":["fre"],"author_key":["OL3965897A"],"author_name":["Caryl Ferey"],"id_goodreads":["4571864"],"publisher_facet":["Thierry Magnier"],"_version_":1697074596369399800,"author_facet":["OL3965897A Caryl Ferey"]}
{"key":"/works/OL10000805W","text":["/works/OL10000805W","Le transfo","OL12624547M","77099767","2844202098","9782844202093","Thierry Magnier","OL3965898A","Sylvie Deshors"],"type":"work","seed":["/books/OL12624547M","/works/OL10000805W","/authors/OL3965898A"],"title":"Le transfo","title_suggest":["Le transfo"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624547M"],"publish_date":["March 26, 2003"],"publish_year":[2003],"first_publish_year":2003,"oclc":["77099767"],"isbn":["2844202098","9782844202093"],"last_modified_i":1303822139,"ebook_count_i":0,"cover_edition_key":"OL12624547M","cover_i":3141577,"publisher":["Thierry Magnier"],"language":["fre"],"author_key":["OL3965898A"],"author_name":["Sylvie Deshors"],"id_goodreads":["6193898"],"publisher_facet":["Thierry Magnier"],"_version_":1697074595979329500,"author_facet":["OL3965898A Sylvie Deshors"]}
{"key":"/works/OL10000806W","text":["/works/OL10000806W","Le garcon qui aimait les bebes","OL12624548M","9782844202130","2844202136","Thierry Magnier","OL3965899A","Rac Hausfater-Douieb"],"type":"work","seed":["/books/OL12624548M","/works/OL10000806W","/authors/OL3965899A"],"title":"Le garcon qui aimait les bebes","title_suggest":["Le garcon qui aimait les bebes"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624548M"],"publish_date":["March 26, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["9782844202130","2844202136"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624548M","cover_i":3141578,"publisher":["Thierry Magnier"],"author_key":["OL3965899A"],"author_name":["Rac Hausfater-Douieb"],"id_goodreads":["6534195"],"publisher_facet":["Thierry Magnier"],"_version_":1697074596029661200,"author_facet":["OL3965899A Rac Hausfater-Douieb"]}
{"key":"/works/OL10000807W","text":["/works/OL10000807W","Livre des coeurs","OL12624550M","401930107","2844202209","9782844202208","Thierry Magnier","OL3965900A","Schildge Delabruyere"],"type":"work","seed":["/books/OL12624550M","/works/OL10000807W","/authors/OL3965900A"],"title":"Livre des coeurs","title_suggest":["Livre des coeurs"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624550M"],"publish_date":["February 5, 2003"],"publish_year":[2003],"first_publish_year":2003,"oclc":["401930107"],"isbn":["2844202209","9782844202208"],"last_modified_i":1304134049,"ebook_count_i":0,"cover_edition_key":"OL12624550M","cover_i":3141580,"publisher":["Thierry Magnier"],"author_key":["OL3965900A"],"author_name":["Schildge Delabruyere"],"id_librarything":["7527910"],"publisher_facet":["Thierry Magnier"],"_version_":1697074596424974300,"author_facet":["OL3965900A Schildge Delabruyere"]}
{"key":"/works/OL10000808W","text":["/works/OL10000808W","Les voisins font un cirque le dimanche","OL12624551M","2844202225","9782844202222","Thierry Magnier","OL3965901A","Moncomble /Fortier","Neighbors","Children's stories, French","Circus","Fiction"],"type":"work","seed":["/books/OL12624551M","/works/OL10000808W","/subjects/neighbors","/subjects/children's_stories_french","/subjects/circus","/subjects/fiction","/authors/OL3965901A"],"title":"Les voisins font un cirque le dimanche","title_suggest":["Les voisins font un cirque le dimanche"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624551M"],"publish_date":["March 26, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["2844202225","9782844202222"],"last_modified_i":1563182288,"ebook_count_i":0,"cover_edition_key":"OL12624551M","cover_i":3141581,"publisher":["Thierry Magnier"],"language":["fre"],"author_key":["OL3965901A"],"author_name":["Moncomble /Fortier"],"subject":["Neighbors","Children's stories, French","Circus","Fiction"],"publisher_facet":["Thierry Magnier"],"subject_facet":["Children's stories, French","Circus","Fiction","Neighbors"],"_version_":1697074596330602500,"author_facet":["OL3965901A Moncomble /Fortier"],"subject_key":["children's_stories_french","circus","fiction","neighbors"]}
{"key":"/works/OL10000809W","text":["/works/OL10000809W","Le gros lot","Le gros lot ","comédie en un acte","OL12624562M","2844220819","9782844220813","Art et Comedie","OL3965907A","Francis Joffo"],"type":"work","seed":["/books/OL12624562M","/works/OL10000809W","/authors/OL3965907A"],"title":"Le gros lot","title_suggest":["Le gros lot"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624562M"],"publish_date":["January 1, 1999"],"publish_year":[1999],"first_publish_year":1999,"isbn":["2844220819","9782844220813"],"last_modified_i":1272134761,"ebook_count_i":0,"publisher":["Art et Comedie"],"language":["fre"],"author_key":["OL3965907A"],"author_name":["Francis Joffo"],"id_goodreads":["5737341"],"publisher_facet":["Art et Comedie"],"_version_":1697074596531929000,"author_facet":["OL3965907A Francis Joffo"]}
{"key":"/works/OL1000080W","text":["/works/OL1000080W","Herrin der Sehnsucht","Herrin der Sehnsucht.","OL12703238M","76186489","9783426690598","3426690594","Droemer Knaur","OL92937A","Juliana Garnett"],"type":"work","seed":["/books/OL12703238M","/works/OL1000080W","/authors/OL92937A"],"title":"Herrin der Sehnsucht","title_suggest":["Herrin der Sehnsucht"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12703238M"],"publish_date":["November 1, 1999"],"publish_year":[1999],"first_publish_year":1999,"oclc":["76186489"],"isbn":["9783426690598","3426690594"],"last_modified_i":1304142895,"ebook_count_i":0,"publisher":["Droemer Knaur"],"author_key":["OL92937A"],"author_name":["Juliana Garnett"],"id_goodreads":["3203425"],"id_librarything":["1721938"],"publisher_facet":["Droemer Knaur"],"_version_":1697074595931095000,"author_facet":["OL92937A Juliana Garnett"]}
{"key":"/works/OL10000810W","text":["/works/OL10000810W","Les miroirs de Venise","OL12624563M","466467710","9782844221551","2844221556","Art et Comédie","OL3965908A","René Bruneau"],"type":"work","seed":["/books/OL12624563M","/works/OL10000810W","/authors/OL3965908A"],"title":"Les miroirs de Venise","title_suggest":["Les miroirs de Venise"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624563M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["466467710"],"isbn":["9782844221551","2844221556"],"last_modified_i":1307528732,"ebook_count_i":0,"publisher":["Art et Comédie"],"author_key":["OL3965908A"],"author_name":["René Bruneau"],"publisher_facet":["Art et Comédie"],"_version_":1697074596553949200,"author_facet":["OL3965908A René Bruneau"]}
{"key":"/works/OL10000811W","text":["/works/OL10000811W","Cinq sketches à jouer à deux","OL12624564M","9782844221667","2844221661","Art et Comédie","OL3965909A","Jean Larriaga"],"type":"work","seed":["/books/OL12624564M","/works/OL10000811W","/authors/OL3965909A"],"title":"Cinq sketches à jouer à deux","title_suggest":["Cinq sketches à jouer à deux"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624564M"],"publish_date":["January 1, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782844221667","2844221661"],"last_modified_i":1260840403,"ebook_count_i":0,"publisher":["Art et Comédie"],"language":["fre"],"author_key":["OL3965909A"],"author_name":["Jean Larriaga"],"publisher_facet":["Art et Comédie"],"_version_":1697074596326408200,"author_facet":["OL3965909A Jean Larriaga"]}
{"key":"/works/OL10000812W","text":["/works/OL10000812W","L' Extra","Extra","comédie en trois actes","OL22406631M","de Jean Larriaga ; mise en scène de Jacques Rosny. Rue de la Paix, encore sous le choc / de Jean Larriaga ; mise en scène de Marc Olinger.","Larriaga, Jean.","L'Avant-scène","OL3965909A","Jean Larriaga"],"type":"work","seed":["/books/OL22406631M","/works/OL10000812W","/authors/OL3965909A"],"title":"L' Extra","title_suggest":["L' Extra"],"has_fulltext":false,"edition_count":1,"edition_key":["OL22406631M"],"publish_date":["1988"],"publish_year":[1988],"first_publish_year":1988,"publish_place":["Paris"],"contributor":["Larriaga, Jean."],"last_modified_i":1260863240,"ebook_count_i":0,"publisher":["L'Avant-scène"],"language":["fre"],"author_key":["OL3965909A"],"author_name":["Jean Larriaga"],"publisher_facet":["L'Avant-scène"],"_version_":1697074595617570800,"author_facet":["OL3965909A Jean Larriaga"]}
{"key":"/works/OL10000813W","text":["/works/OL10000813W","Architecture Instantanee - Nouvelles Acquisitions. Quinze X Vingt & UN","Architecture instantanée","nouvelles acquisitions","OL22467794M","OL12624578M","sous la direction de Alain Guiheux.","2001351384","Guiheux, A.","Centre Georges Pompidou.","2844260500","9782844260505","Centre Pompidou","Centre Georges Pompidou Service Commercial,France","OL3965912A","Alain Guiheux","Centre Georges Pompidou","Catalogs","Modern Architecture","Architectural models"],"type":"work","seed":["/books/OL22467794M","/books/OL12624578M","/works/OL10000813W","/subjects/centre_georges_pompidou","/subjects/catalogs","/subjects/modern_architecture","/subjects/architectural_models","/authors/OL3965912A"],"title":"Architecture Instantanee - Nouvelles Acquisitions. Quinze X Vingt & UN","title_suggest":["Architecture Instantanee - Nouvelles Acquisitions. Quinze X Vingt & UN"],"has_fulltext":false,"edition_count":2,"edition_key":["OL22467794M","OL12624578M"],"publish_date":["2000","October 31, 2000"],"publish_year":[2000],"first_publish_year":2000,"lccn":["2001351384"],"publish_place":["Paris"],"contributor":["Guiheux, A.","Centre Georges Pompidou."],"lcc":["NA-0680.00000000.A698 2000"],"isbn":["2844260500","9782844260505"],"last_modified_i":1607116740,"ebook_count_i":0,"cover_edition_key":"OL12624578M","cover_i":3141604,"publisher":["Centre Pompidou","Centre Georges Pompidou Service Commercial,France"],"language":["fre"],"author_key":["OL3965912A"],"author_name":["Alain Guiheux"],"subject":["Centre Georges Pompidou","Catalogs","Modern Architecture","Architectural models"],"id_goodreads":["5049716"],"publisher_facet":["Centre Georges Pompidou Service Commercial,France","Centre Pompidou"],"subject_facet":["Architectural models","Catalogs","Centre Georges Pompidou","Modern Architecture"],"_version_":1697074596246716400,"lcc_sort":"NA-0680.00000000.A698 2000","author_facet":["OL3965912A Alain Guiheux"],"subject_key":["architectural_models","catalogs","centre_georges_pompidou","modern_architecture"]}
{"key":"/works/OL10000814W","text":["/works/OL10000814W","Collection D'Architecture Du Centre Georges Pompidou","OL12632386M","99173828","9782858509447","2858509441","Centre Georges Pompidou Service Commercial,France","OL3965912A","Alain Guiheux","Musée national d'art moderne/Centre de création industrielle (France)","Catalogs","Modern Architecture"],"type":"work","seed":["/books/OL12632386M","/works/OL10000814W","/subjects/musée_national_d'art_moderne/centre_de_création_industrielle_(france)","/subjects/catalogs","/subjects/modern_architecture","/authors/OL3965912A"],"title":"Collection D'Architecture Du Centre Georges Pompidou","title_suggest":["Collection D'Architecture Du Centre Georges Pompidou"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12632386M"],"publish_date":["October 1998"],"publish_year":[1998],"first_publish_year":1998,"lccn":["99173828"],"lcc":["NA-2410.00000000.F8 P376 1998"],"isbn":["9782858509447","2858509441"],"last_modified_i":1606871405,"ebook_count_i":0,"cover_edition_key":"OL12632386M","cover_i":3147920,"publisher":["Centre Georges Pompidou Service Commercial,France"],"language":["fre"],"author_key":["OL3965912A"],"author_name":["Alain Guiheux"],"subject":["Musée national d'art moderne/Centre de création industrielle (France)","Catalogs","Modern Architecture"],"id_goodreads":["5049715"],"publisher_facet":["Centre Georges Pompidou Service Commercial,France"],"subject_facet":["Catalogs","Modern Architecture","Musée national d'art moderne/Centre de création industrielle (France)"],"_version_":1697074596185899000,"lcc_sort":"NA-2410.00000000.F8 P376 1998","author_facet":["OL3965912A Alain Guiheux"],"subject_key":["catalogs","modern_architecture","musée_national_d'art_modernecentre_de_création_industrielle_(france)"]}
{"key":"/works/OL10000815W","text":["/works/OL10000815W","Kisho Kurokawa","architecte : le métabolisme, 1960-1975.","OL22534982M","99211551","Centre Georges Pompidou.","Musée national d'art moderne.","Centre de création industrielle.","2858509352","9782858509355","Centre Georges Pompidou","OL3965912A","Alain Guiheux","Kisho Kurokawa (1934-)","Metabolism in architecture (Movement)"],"type":"work","seed":["/books/OL22534982M","/works/OL10000815W","/subjects/metabolism_in_architecture_(movement)","/subjects/person:kisho_kurokawa_(1934-)","/authors/OL3965912A"],"title":"Kisho Kurokawa","title_suggest":["Kisho Kurokawa"],"has_fulltext":false,"edition_count":1,"edition_key":["OL22534982M"],"publish_date":["1997"],"publish_year":[1997],"first_publish_year":1997,"lccn":["99211551"],"publish_place":["Paris"],"contributor":["Centre Georges Pompidou.","Musée national d'art moderne.","Centre de création industrielle."],"lcc":["NA-1559.00000000.K83 A4 1997"],"isbn":["2858509352","9782858509355"],"last_modified_i":1606892683,"ebook_count_i":0,"publisher":["Centre Georges Pompidou"],"language":["fre"],"author_key":["OL3965912A"],"author_name":["Alain Guiheux"],"person":["Kisho Kurokawa (1934-)"],"subject":["Metabolism in architecture (Movement)"],"id_goodreads":["2256588"],"id_librarything":["4261474"],"publisher_facet":["Centre Georges Pompidou"],"person_key":["kisho_kurokawa_(1934-)"],"person_facet":["Kisho Kurokawa (1934-)"],"subject_facet":["Metabolism in architecture (Movement)"],"_version_":1697074595994009600,"lcc_sort":"NA-1559.00000000.K83 A4 1997","author_facet":["OL3965912A Alain Guiheux"],"subject_key":["metabolism_in_architecture_(movement)"]}
{"key":"/works/OL10000816W","text":["/works/OL10000816W","L' ordre de la brique","ordre de la brique.","OL21809228M","2870092326","9782870092323","Pierre Mardaga","OL3965912A","Alain Guiheux"],"type":"work","seed":["/books/OL21809228M","/works/OL10000816W","/authors/OL3965912A"],"title":"L' ordre de la brique","title_suggest":["L' ordre de la brique"],"has_fulltext":false,"edition_count":1,"edition_key":["OL21809228M"],"publish_date":["1985"],"publish_year":[1985],"first_publish_year":1985,"publish_place":["Bruxelles"],"isbn":["2870092326","9782870092323"],"last_modified_i":1260862404,"ebook_count_i":0,"publisher":["Pierre Mardaga"],"language":["fre"],"author_key":["OL3965912A"],"author_name":["Alain Guiheux"],"publisher_facet":["Pierre Mardaga"],"_version_":1697074596050632700,"author_facet":["OL3965912A Alain Guiheux"]}
{"key":"/works/OL10000817W","text":["/works/OL10000817W","Raymond Hains - J'AI La Memoire Qui Planche","OL12624581M","2002322002","2844260624","9782844260628","Centre Georges Pompidou Service Commercial,France","OL3965913A","Pierre Leguillon","Exhibitions"],"type":"work","seed":["/books/OL12624581M","/works/OL10000817W","/subjects/exhibitions","/authors/OL3965913A"],"title":"Raymond Hains - J'AI La Memoire Qui Planche","title_suggest":["Raymond Hains - J'AI La Memoire Qui Planche"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624581M"],"publish_date":["August 31, 2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2002322002"],"lcc":["N--6853.00000000.H33 A4 2001"],"isbn":["2844260624","9782844260628"],"last_modified_i":1607295058,"ebook_count_i":0,"cover_edition_key":"OL12624581M","cover_i":3141607,"publisher":["Centre Georges Pompidou Service Commercial,France"],"author_key":["OL3965913A"],"author_name":["Pierre Leguillon"],"subject":["Exhibitions"],"id_goodreads":["1693996"],"id_librarything":["2700658"],"publisher_facet":["Centre Georges Pompidou Service Commercial,France"],"subject_facet":["Exhibitions"],"_version_":1697074595694116900,"lcc_sort":"N--6853.00000000.H33 A4 2001","author_facet":["OL3965913A Pierre Leguillon"],"subject_key":["exhibitions"]}
{"key":"/works/OL10000818W","text":["/works/OL10000818W","Collection De Design Du Centre Georges Pompidou","OL12624584M","2001395648","9782844260666","2844260667","Centre Georges Pompidou Service Commercial,France","OL3965915A","Marie Laure Jousset","Catalogs","Decorative arts","History","Furniture","Industrial Design","Design industriel","Objets usuels","Catalogues","Meubles","Design","Musée national d'art moderne/Centre de création industrielle (France)","Centre Georges Pompidou"],"type":"work","seed":["/books/OL12624584M","/works/OL10000818W","/subjects/catalogs","/subjects/decorative_arts","/subjects/history","/subjects/furniture","/subjects/industrial_design","/subjects/design_industriel","/subjects/objets_usuels","/subjects/catalogues","/subjects/meubles","/subjects/design","/subjects/musée_national_d'art_moderne/centre_de_création_industrielle_(france)","/subjects/centre_georges_pompidou","/authors/OL3965915A"],"title":"Collection De Design Du Centre Georges Pompidou","title_suggest":["Collection De Design Du Centre Georges Pompidou"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624584M"],"publish_date":["May 31, 2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2001395648"],"lcc":["NK-0480.00000000.P32 M365 2001"],"isbn":["9782844260666","2844260667"],"last_modified_i":1607136465,"ebook_count_i":0,"cover_edition_key":"OL12624584M","cover_i":3141610,"publisher":["Centre Georges Pompidou Service Commercial,France"],"author_key":["OL3965915A"],"author_name":["Marie Laure Jousset"],"subject":["Catalogs","Decorative arts","History","Furniture","Industrial Design","Design industriel","Objets usuels","Catalogues","Meubles","Design","Musée national d'art moderne/Centre de création industrielle (France)","Centre Georges Pompidou"],"id_goodreads":["5417720"],"publisher_facet":["Centre Georges Pompidou Service Commercial,France"],"subject_facet":["Catalogs","Catalogues","Centre Georges Pompidou","Decorative arts","Design","Design industriel","Furniture","History","Industrial Design","Meubles","Musée national d'art moderne/Centre de création industrielle (France)","Objets usuels"],"_version_":1697074595824140300,"lcc_sort":"NK-0480.00000000.P32 M365 2001","author_facet":["OL3965915A Marie Laure Jousset"],"subject_key":["catalogs","catalogues","centre_georges_pompidou","decorative_arts","design","design_industriel","furniture","history","industrial_design","meubles","musée_national_d'art_modernecentre_de_création_industrielle_(france)","objets_usuels"]}
{"key":"/works/OL10000819W","text":["/works/OL10000819W","Donation Kartell - Une Environnement Plastique 1949-1999. Quinze X Vingt & UN","La donation Kartell","un environnement plastique, 1949-2000 : Centre Pompidou du 12 septembre 2000 au 1er janvier 2001","OL22067479M","OL12624583M","sous la direction de Marie-Laure Jousset ; [commissaires, Marie-Laure Jousset, Valérie Guillaume].","2001351383","Kartell (Firm)","Jousset, Marie-Laure.","Guillaume, Valérie.","Centre Georges Pompidou.","2844260659","9782844260659","Centre Pompidou","Centre Georges Pompidou Service Commercial,France","OL3965915A","Marie Laure Jousset","History","Plastics","Design","Exhibitions","Industrial Design","Exhibtions","Kartell (Firm)","Plastic furniture","Expositions","Industrial design","Histoire","Meubles","Meubles en plastique","Kartell (Firme)"],"type":"work","seed":["/books/OL22067479M","/books/OL12624583M","/works/OL10000819W","/subjects/history","/subjects/plastics","/subjects/design","/subjects/exhibitions","/subjects/industrial_design","/subjects/exhibtions","/subjects/kartell_(firm)","/subjects/plastic_furniture","/subjects/expositions","/subjects/industrial_design","/subjects/histoire","/subjects/meubles","/subjects/meubles_en_plastique","/subjects/kartell_(firme)","/authors/OL3965915A"],"title":"Donation Kartell - Une Environnement Plastique 1949-1999. Quinze X Vingt & UN","title_suggest":["Donation Kartell - Une Environnement Plastique 1949-1999. Quinze X Vingt & UN"],"has_fulltext":false,"edition_count":2,"edition_key":["OL22067479M","OL12624583M"],"publish_date":["2000","October 31, 2000"],"publish_year":[2000],"first_publish_year":2000,"lccn":["2001351383"],"publish_place":["Paris"],"contributor":["Kartell (Firm)","Jousset, Marie-Laure.","Guillaume, Valérie.","Centre Georges Pompidou."],"lcc":["NK-1452.00000000.Z9 K37 2000"],"isbn":["2844260659","9782844260659"],"last_modified_i":1607116740,"ebook_count_i":0,"cover_edition_key":"OL12624583M","cover_i":3141609,"publisher":["Centre Pompidou","Centre Georges Pompidou Service Commercial,France"],"language":["fre"],"author_key":["OL3965915A"],"author_name":["Marie Laure Jousset"],"subject":["History","Plastics","Design","Exhibitions","Industrial Design","Exhibtions","Kartell (Firm)","Plastic furniture","Expositions","Industrial design","Histoire","Meubles","Meubles en plastique","Kartell (Firme)"],"id_goodreads":["5417721"],"publisher_facet":["Centre Georges Pompidou Service Commercial,France","Centre Pompidou"],"subject_facet":["Design","Exhibitions","Exhibtions","Expositions","Histoire","History","Industrial Design","Industrial design","Kartell (Firm)","Kartell (Firme)","Meubles","Meubles en plastique","Plastic furniture","Plastics"],"_version_":1697074595989815300,"lcc_sort":"NK-1452.00000000.Z9 K37 2000","author_facet":["OL3965915A Marie Laure Jousset"],"subject_key":["design","exhibitions","exhibtions","expositions","histoire","history","industrial_design","kartell_(firm)","kartell_(firme)","meubles","meubles_en_plastique","plastic_furniture","plastics"]}
{"key":"/works/OL1000081W","text":["/works/OL1000081W","The knight","OL3664668M","Juliana Garnett.","2002554406","46949907","Copyright Paperback Collection (Library of Congress)","0515130532","9780515130539","knight00garn","Jove Books","OL92937A","Juliana Garnett","Glastonbury","England","Historical Romance","Romance","Quest for the Holy Grail","Fiction","Knights and knighthood","Grail","Accessible book","Protected DAISY","Medieval","The Middle Ages"],"type":"work","seed":["/books/OL3664668M","/works/OL1000081W","/subjects/historical_romance","/subjects/romance","/subjects/quest_for_the_holy_grail","/subjects/fiction","/subjects/knights_and_knighthood","/subjects/grail","/subjects/place:glastonbury","/subjects/place:england","/subjects/time:medieval","/subjects/time:the_middle_ages","/authors/OL92937A"],"title":"The knight","title_suggest":["The knight"],"has_fulltext":true,"edition_count":1,"edition_key":["OL3664668M"],"publish_date":["2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2002554406"],"publish_place":["New York"],"oclc":["46949907"],"contributor":["Copyright Paperback Collection (Library of Congress)"],"lcc":["CPB0000.00000000.Box no. 1871 vol. 8"],"isbn":["0515130532","9780515130539"],"last_modified_i":1607371300,"ebook_count_i":1,"ia":["knight00garn"],"public_scan_b":false,"ia_collection_s":"china;inlibrary;printdisabled;fav-miimii5641;internetarchivebooks","lending_edition_s":"OL3664668M","lending_identifier_s":"knight00garn","printdisabled_s":"OL3664668M","cover_edition_key":"OL3664668M","cover_i":319197,"publisher":["Jove Books"],"language":["eng"],"author_key":["OL92937A"],"author_name":["Juliana Garnett"],"place":["Glastonbury","England"],"subject":["Historical Romance","Romance","Quest for the Holy Grail","Fiction","Knights and knighthood","Grail","Accessible book","Protected DAISY"],"time":["Medieval","The Middle Ages"],"id_goodreads":["3009763"],"id_librarything":["700930"],"ia_box_id":["IA164518"],"publisher_facet":["Jove Books"],"place_key":["england","glastonbury"],"time_facet":["Medieval","The Middle Ages"],"subject_facet":["Accessible book","Fiction","Grail","Historical Romance","Knights and knighthood","Protected DAISY","Quest for the Holy Grail","Romance"],"_version_":1697074595663708200,"place_facet":["England","Glastonbury"],"lcc_sort":"CPB0000.00000000.Box no. 1871 vol. 8","author_facet":["OL92937A Juliana Garnett"],"subject_key":["accessible_book","fiction","grail","historical_romance","knights_and_knighthood","protected_daisy","quest_for_the_holy_grail","romance"],"time_key":["medieval","the_middle_ages"]}
{"key":"/works/OL10000820W","text":["/works/OL10000820W","Antoine Pevsner - Dans Les Collections Du Mnam","OL12624597M","2002385267","9782844260956","2844260950","Centre Georges Pompidou Service Commercial,France","OL3965920A","Doina Lemny","Exhibitions","Constructivism (Art)","Art","Centre Georges Pompidou"],"type":"work","seed":["/books/OL12624597M","/works/OL10000820W","/subjects/exhibitions","/subjects/constructivism_(art)","/subjects/art","/subjects/centre_georges_pompidou","/authors/OL3965920A"],"title":"Antoine Pevsner - Dans Les Collections Du Mnam","title_suggest":["Antoine Pevsner - Dans Les Collections Du Mnam"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624597M"],"publish_date":["June 30, 2001"],"publish_year":[2001],"first_publish_year":2001,"lccn":["2002385267"],"lcc":["N--6853.00000000.P434 A4 2001"],"isbn":["9782844260956","2844260950"],"last_modified_i":1607311133,"ebook_count_i":0,"cover_edition_key":"OL12624597M","cover_i":3141623,"publisher":["Centre Georges Pompidou Service Commercial,France"],"author_key":["OL3965920A"],"author_name":["Doina Lemny"],"subject":["Exhibitions","Constructivism (Art)","Art","Centre Georges Pompidou"],"id_goodreads":["1929817"],"publisher_facet":["Centre Georges Pompidou Service Commercial,France"],"subject_facet":["Art","Centre Georges Pompidou","Constructivism (Art)","Exhibitions"],"_version_":1697074596405051400,"lcc_sort":"N--6853.00000000.P434 A4 2001","author_facet":["OL3965920A Doina Lemny"],"subject_key":["art","centre_georges_pompidou","constructivism_(art)","exhibitions"]}
{"key":"/works/OL10000821W","text":["/works/OL10000821W","Bleu Zinzolin Et Autres Bleus. Zigzart","OL12624613M","2003485376","9782844261472","2844261477","Centre Georges Pompidou Service Commercial,France","OL3965921A","E. Amzallag-Auge","Blue in art","Catalogs","Art","Centre Georges Pompidou"],"type":"work","seed":["/books/OL12624613M","/works/OL10000821W","/subjects/blue_in_art","/subjects/catalogs","/subjects/art","/subjects/centre_georges_pompidou","/authors/OL3965921A"],"title":"Bleu Zinzolin Et Autres Bleus. Zigzart","title_suggest":["Bleu Zinzolin Et Autres Bleus. Zigzart"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624613M"],"publish_date":["February 1, 2003"],"publish_year":[2003],"first_publish_year":2003,"lccn":["2003485376"],"lcc":["N--7432.70000000.A69 2002"],"isbn":["9782844261472","2844261477"],"last_modified_i":1607389308,"ebook_count_i":0,"cover_edition_key":"OL12624613M","cover_i":3141635,"publisher":["Centre Georges Pompidou Service Commercial,France"],"language":["fre"],"author_key":["OL3965921A"],"author_name":["E. Amzallag-Auge"],"subject":["Blue in art","Catalogs","Art","Centre Georges Pompidou"],"publisher_facet":["Centre Georges Pompidou Service Commercial,France"],"subject_facet":["Art","Blue in art","Catalogs","Centre Georges Pompidou"],"_version_":1697074596026515500,"lcc_sort":"N--7432.70000000.A69 2002","author_facet":["OL3965921A E. Amzallag-Auge"],"subject_key":["art","blue_in_art","catalogs","centre_georges_pompidou"]}
{"key":"/works/OL10000822W","text":["/works/OL10000822W","Peaux Tissus Et Bouts De Ficelles.Zigzart","OL12624614M","2003485375","2844261485","9782844261489","Centre Georges Pompidou Service Commercial,France","OL3965921A","E. Amzallag-Auge","Modern Art","Catalogs","Artists materials","Art","Centre Georges Pompidou"],"type":"work","seed":["/books/OL12624614M","/works/OL10000822W","/subjects/modern_art","/subjects/catalogs","/subjects/artists_materials","/subjects/art","/subjects/centre_georges_pompidou","/authors/OL3965921A"],"title":"Peaux Tissus Et Bouts De Ficelles.Zigzart","title_suggest":["Peaux Tissus Et Bouts De Ficelles.Zigzart"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624614M"],"publish_date":["February 1, 2003"],"publish_year":[2003],"first_publish_year":2003,"lccn":["2003485375"],"lcc":["N--6488.00000000.F8 P31178 2002"],"isbn":["2844261485","9782844261489"],"last_modified_i":1607389307,"ebook_count_i":0,"cover_edition_key":"OL12624614M","cover_i":3141636,"publisher":["Centre Georges Pompidou Service Commercial,France"],"language":["fre"],"author_key":["OL3965921A"],"author_name":["E. Amzallag-Auge"],"subject":["Modern Art","Catalogs","Artists materials","Art","Centre Georges Pompidou"],"publisher_facet":["Centre Georges Pompidou Service Commercial,France"],"subject_facet":["Art","Artists materials","Catalogs","Centre Georges Pompidou","Modern Art"],"_version_":1697074596322214000,"lcc_sort":"N--6488.00000000.F8 P31178 2002","author_facet":["OL3965921A E. Amzallag-Auge"],"subject_key":["art","artists_materials","catalogs","centre_georges_pompidou","modern_art"]}
{"key":"/works/OL10000823W","text":["/works/OL10000823W","La Grande Galerie Des Peintures Musee Du Louvre, D'Orsay, Centre Pompidou/Musee National D'Art Moderne","OL12624617M","9782844261526","2844261523","Centre Georges Pompidou Service Commercial,France","OL3965922A","Francoise Bertaux"],"type":"work","seed":["/books/OL12624617M","/works/OL10000823W","/authors/OL3965922A"],"title":"La Grande Galerie Des Peintures Musee Du Louvre, D'Orsay, Centre Pompidou/Musee National D'Art Moderne","title_suggest":["La Grande Galerie Des Peintures Musee Du Louvre, D'Orsay, Centre Pompidou/Musee National D'Art Moderne"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624617M"],"publish_date":["January 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["9782844261526","2844261523"],"last_modified_i":1282054263,"ebook_count_i":0,"publisher":["Centre Georges Pompidou Service Commercial,France"],"language":["fre"],"author_key":["OL3965922A"],"author_name":["Francoise Bertaux"],"id_goodreads":["2174393"],"id_librarything":["4263675"],"publisher_facet":["Centre Georges Pompidou Service Commercial,France"],"_version_":1697074595819946000,"author_facet":["OL3965922A Francoise Bertaux"]}
{"key":"/works/OL10000824W","text":["/works/OL10000824W","Maîtriser Office 97 visuel","OL12624626M","40516038","9782844270054","2844270050","First interactive","OL3965925A","MARANGRAPHICS"],"type":"work","seed":["/books/OL12624626M","/works/OL10000824W","/authors/OL3965925A"],"title":"Maîtriser Office 97 visuel","title_suggest":["Maîtriser Office 97 visuel"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624626M"],"publish_date":["September 30, 1998"],"publish_year":[1998],"first_publish_year":1998,"oclc":["40516038"],"isbn":["9782844270054","2844270050"],"last_modified_i":1303991565,"ebook_count_i":0,"cover_edition_key":"OL12624626M","cover_i":3141650,"publisher":["First interactive"],"author_key":["OL3965925A"],"author_name":["MARANGRAPHICS"],"publisher_facet":["First interactive"],"_version_":1697074595754934300,"author_facet":["OL3965925A MARANGRAPHICS"]}
{"key":"/works/OL10000825W","text":["/works/OL10000825W","Maîtriser Windows 2000 professionnel","OL12624667M","46592513","9782844271310","2844271316","First interactive","OL3965925A","MARANGRAPHICS"],"type":"work","seed":["/books/OL12624667M","/works/OL10000825W","/authors/OL3965925A"],"title":"Maîtriser Windows 2000 professionnel","title_suggest":["Maîtriser Windows 2000 professionnel"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624667M"],"publish_date":["September 13, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["46592513"],"isbn":["9782844271310","2844271316"],"last_modified_i":1304048529,"ebook_count_i":0,"cover_edition_key":"OL12624667M","cover_i":3141689,"publisher":["First interactive"],"author_key":["OL3965925A"],"author_name":["MARANGRAPHICS"],"id_librarything":["5484880"],"publisher_facet":["First interactive"],"_version_":1697074596580163600,"author_facet":["OL3965925A MARANGRAPHICS"]}
{"key":"/works/OL10000826W","text":["/works/OL10000826W","Sim City 3000, le guide de jeu","OL12624632M","468388042","2844270298","9782844270290","simcity3000guide0000dema","Editions First Interactive","OL3965926A","Russel De Maria","SimCity 3000","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL12624632M","/works/OL10000826W","/subjects/simcity_3000","/authors/OL3965926A"],"title":"Sim City 3000, le guide de jeu","title_suggest":["Sim City 3000, le guide de jeu"],"has_fulltext":true,"edition_count":1,"edition_key":["OL12624632M"],"publish_date":["April 21, 1999"],"publish_year":[1999],"first_publish_year":1999,"oclc":["468388042"],"isbn":["2844270298","9782844270290"],"last_modified_i":1613110631,"ebook_count_i":1,"ia":["simcity3000guide0000dema"],"public_scan_b":false,"ia_collection_s":"inlibrary;printdisabled;internetarchivebooks","lending_edition_s":"OL12624632M","lending_identifier_s":"simcity3000guide0000dema","printdisabled_s":"OL12624632M","cover_edition_key":"OL12624632M","cover_i":3141656,"publisher":["Editions First Interactive"],"author_key":["OL3965926A"],"author_name":["Russel De Maria"],"subject":["SimCity 3000","Accessible book","Protected DAISY"],"id_librarything":["6163813"],"ia_box_id":["IA40059723"],"publisher_facet":["Editions First Interactive"],"subject_facet":["Accessible book","Protected DAISY","SimCity 3000"],"_version_":1697074595557802000,"author_facet":["OL3965926A Russel De Maria"],"subject_key":["accessible_book","protected_daisy","simcity_3000"]}
{"key":"/works/OL10000827W","text":["/works/OL10000827W","Access 2000","OL12624672M","9782844271570","284427157X","Editions First Interactive","OL3965930A","Jean Nashe"],"type":"work","seed":["/books/OL12624672M","/works/OL10000827W","/authors/OL3965930A"],"title":"Access 2000","title_suggest":["Access 2000"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624672M"],"publish_date":["April 26, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782844271570","284427157X"],"last_modified_i":1282054263,"ebook_count_i":0,"cover_edition_key":"OL12624672M","cover_i":3141694,"publisher":["Editions First Interactive"],"author_key":["OL3965930A"],"author_name":["Jean Nashe"],"id_goodreads":["5345064"],"id_librarything":["5521516"],"publisher_facet":["Editions First Interactive"],"_version_":1697074596195336200,"author_facet":["OL3965930A Jean Nashe"]}
{"key":"/works/OL10000828W","text":["/works/OL10000828W","Assistant visuel dreamweaver mx","OL12624733M","9782844272935","2844272932","First","OL3965930A","Jean Nashe"],"type":"work","seed":["/books/OL12624733M","/works/OL10000828W","/authors/OL3965930A"],"title":"Assistant visuel dreamweaver mx","title_suggest":["Assistant visuel dreamweaver mx"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624733M"],"publish_date":["September 25, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782844272935","2844272932"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624733M","cover_i":3141753,"publisher":["First"],"author_key":["OL3965930A"],"author_name":["Jean Nashe"],"id_goodreads":["5345081"],"publisher_facet":["First"],"_version_":1697074596114595800,"author_facet":["OL3965930A Jean Nashe"]}
{"key":"/works/OL10000829W","text":["/works/OL10000829W","Assistant visuel windows xp et internet","OL12624750M","2844273238","9782844273239","First","OL3965930A","Jean Nashe"],"type":"work","seed":["/books/OL12624750M","/works/OL10000829W","/authors/OL3965930A"],"title":"Assistant visuel windows xp et internet","title_suggest":["Assistant visuel windows xp et internet"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624750M"],"publish_date":["May 16, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2844273238","9782844273239"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624750M","cover_i":3141770,"publisher":["First"],"language":["fre"],"author_key":["OL3965930A"],"author_name":["Jean Nashe"],"id_goodreads":["5345079"],"publisher_facet":["First"],"_version_":1697074595762274300,"author_facet":["OL3965930A Jean Nashe"]}
{"key":"/works/OL1000082W","text":["/works/OL1000082W","The laird","OL3384260M","Juliana Garnett.","2004563304","50727592","Copyright Paperback Collection (Library of Congress)","9780515133882","0515133884","laird00garn","Jove Books","OL92937A","Juliana Garnett","Robert the Bruce","King Edward III of England","Scotland","Northern England","Historical Romance","Hostage","Feud","Romance","Captive","Widow","Feeling Unwanted or Unloved","Father-Son","Clans","Fiction","Extended Family","Enemies","Accessible book","Protected DAISY","Medieval","The Middle Ages","1327-1328","14th Century"],"type":"work","seed":["/books/OL3384260M","/works/OL1000082W","/subjects/historical_romance","/subjects/hostage","/subjects/feud","/subjects/romance","/subjects/captive","/subjects/widow","/subjects/feeling_unwanted_or_unloved","/subjects/father-son","/subjects/clans","/subjects/fiction","/subjects/extended_family","/subjects/enemies","/subjects/person:robert_the_bruce","/subjects/person:king_edward_iii_of_england","/subjects/place:scotland","/subjects/place:northern_england","/subjects/time:medieval","/subjects/time:the_middle_ages","/subjects/time:1327-1328","/subjects/time:14th_century","/authors/OL92937A"],"title":"The laird","title_suggest":["The laird"],"has_fulltext":true,"edition_count":1,"edition_key":["OL3384260M"],"publish_date":["2002"],"publish_year":[2002],"first_publish_year":2002,"lccn":["2004563304"],"publish_place":["New York"],"oclc":["50727592"],"contributor":["Copyright Paperback Collection (Library of Congress)"],"lcc":["CPB0000.00000000.Box no. 2102 vol. 2"],"isbn":["9780515133882","0515133884"],"last_modified_i":1607656634,"ebook_count_i":1,"ia":["laird00garn"],"public_scan_b":false,"ia_collection_s":"china;cuny-ol;inlibrary;printdisabled;internetarchivebooks","lending_edition_s":"OL3384260M","lending_identifier_s":"laird00garn","printdisabled_s":"OL3384260M","cover_edition_key":"OL3384260M","cover_i":319309,"publisher":["Jove Books"],"language":["eng"],"author_key":["OL92937A"],"author_name":["Juliana Garnett"],"person":["Robert the Bruce","King Edward III of England"],"place":["Scotland","Northern England"],"subject":["Historical Romance","Hostage","Feud","Romance","Captive","Widow","Feeling Unwanted or Unloved","Father-Son","Clans","Fiction","Extended Family","Enemies","Accessible book","Protected DAISY"],"time":["Medieval","The Middle Ages","1327-1328","14th Century"],"id_goodreads":["3009761"],"id_librarything":["1061115"],"ia_box_id":["IA157801"],"publisher_facet":["Jove Books"],"person_key":["king_edward_iii_of_england","robert_the_bruce"],"place_key":["northern_england","scotland"],"time_facet":["1327-1328","14th Century","Medieval","The Middle Ages"],"person_facet":["King Edward III of England","Robert the Bruce"],"subject_facet":["Accessible book","Captive","Clans","Enemies","Extended Family","Father-Son","Feeling Unwanted or Unloved","Feud","Fiction","Historical Romance","Hostage","Protected DAISY","Romance","Widow"],"_version_":1697074596663001000,"place_facet":["Northern England","Scotland"],"lcc_sort":"CPB0000.00000000.Box no. 2102 vol. 2","author_facet":["OL92937A Juliana Garnett"],"subject_key":["accessible_book","captive","clans","enemies","extended_family","father-son","feeling_unwanted_or_unloved","feud","fiction","historical_romance","hostage","protected_daisy","romance","widow"],"time_key":["1327-1328","14th_century","medieval","the_middle_ages"]}
{"key":"/works/OL10000830W","text":["/works/OL10000830W","Excel 2000","OL12624668M","9782844271457","2844271456","Editions First Interactive","OL3965930A","Jean Nashe"],"type":"work","seed":["/books/OL12624668M","/works/OL10000830W","/authors/OL3965930A"],"title":"Excel 2000","title_suggest":["Excel 2000"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624668M"],"publish_date":["April 26, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782844271457","2844271456"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624668M","cover_i":3141690,"publisher":["Editions First Interactive"],"author_key":["OL3965930A"],"author_name":["Jean Nashe"],"id_goodreads":["5345065"],"publisher_facet":["Editions First Interactive"],"_version_":1697074595545219000,"author_facet":["OL3965930A Jean Nashe"]}
{"key":"/works/OL10000831W","text":["/works/OL10000831W","Flash 5","OL12624834M","2844278760","9782844278760","First interactive","OL3965930A","Jean Nashe"],"type":"work","seed":["/books/OL12624834M","/works/OL10000831W","/authors/OL3965930A"],"title":"Flash 5","title_suggest":["Flash 5"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624834M"],"publish_date":["January 2, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2844278760","9782844278760"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624834M","cover_i":3141844,"publisher":["First interactive"],"author_key":["OL3965930A"],"author_name":["Jean Nashe"],"id_goodreads":["5345068"],"publisher_facet":["First interactive"],"_version_":1697074596153393200,"author_facet":["OL3965930A Jean Nashe"]}
{"key":"/works/OL10000832W","text":["/works/OL10000832W","Fonctions et graphiques Excel 2000/2002","OL12624784M","2844273815","9782844273819","First interactive","OL3965930A","Jean Nashe"],"type":"work","seed":["/books/OL12624784M","/works/OL10000832W","/authors/OL3965930A"],"title":"Fonctions et graphiques Excel 2000/2002","title_suggest":["Fonctions et graphiques Excel 2000/2002"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624784M"],"publish_date":["November 30, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2844273815","9782844273819"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624784M","cover_i":3141802,"publisher":["First interactive"],"language":["fre"],"author_key":["OL3965930A"],"author_name":["Jean Nashe"],"id_goodreads":["5345080"],"publisher_facet":["First interactive"],"_version_":1697074596515152000,"author_facet":["OL3965930A Jean Nashe"]}
{"key":"/works/OL10000833W","text":["/works/OL10000833W","Windows 98","OL12624670M","468104404","9782844271471","2844271472","Editions First Interactive","OL3965930A","Jean Nashe"],"type":"work","seed":["/books/OL12624670M","/works/OL10000833W","/authors/OL3965930A"],"title":"Windows 98","title_suggest":["Windows 98"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624670M"],"publish_date":["April 26, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["468104404"],"isbn":["9782844271471","2844271472"],"last_modified_i":1304156990,"ebook_count_i":0,"cover_edition_key":"OL12624670M","cover_i":3141692,"publisher":["Editions First Interactive"],"author_key":["OL3965930A"],"author_name":["Jean Nashe"],"id_goodreads":["5345077"],"publisher_facet":["Editions First Interactive"],"_version_":1697074596205822000,"author_facet":["OL3965930A Jean Nashe"]}
{"key":"/works/OL10000834W","text":["/works/OL10000834W","Windows 98, niveau 2","OL12624680M","9782844271761","2844271766","windows98niveau20000nash","Editions First Interactive","OL3965930A","Jean Nashe","Microsoft Windows 98 (système d'exploitation des ordinateurs)","Guides, manuels","Accessible book","Protected DAISY"],"type":"work","seed":["/books/OL12624680M","/works/OL10000834W","/subjects/microsoft_windows_98_(système_d'exploitation_des_ordinateurs)","/subjects/guides_manuels","/authors/OL3965930A"],"title":"Windows 98, niveau 2","title_suggest":["Windows 98, niveau 2"],"has_fulltext":true,"edition_count":1,"edition_key":["OL12624680M"],"publish_date":["July 19, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782844271761","2844271766"],"last_modified_i":1598417757,"ebook_count_i":1,"ia":["windows98niveau20000nash"],"public_scan_b":false,"ia_collection_s":"inlibrary;printdisabled;internetarchivebooks","lending_edition_s":"OL12624680M","lending_identifier_s":"windows98niveau20000nash","printdisabled_s":"OL12624680M","cover_edition_key":"OL12624680M","cover_i":3141702,"publisher":["Editions First Interactive"],"author_key":["OL3965930A"],"author_name":["Jean Nashe"],"subject":["Microsoft Windows 98 (système d'exploitation des ordinateurs)","Guides, manuels","Accessible book","Protected DAISY"],"id_goodreads":["5345078"],"ia_box_id":["IA1914802"],"publisher_facet":["Editions First Interactive"],"subject_facet":["Accessible book","Guides, manuels","Microsoft Windows 98 (système d'exploitation des ordinateurs)","Protected DAISY"],"_version_":1697074596607426600,"author_facet":["OL3965930A Jean Nashe"],"subject_key":["accessible_book","guides_manuels","microsoft_windows_98_(système_d'exploitation_des_ordinateurs)","protected_daisy"]}
{"key":"/works/OL10000835W","text":["/works/OL10000835W","Works 2002","OL12624783M","401683898","2844273807","9782844273802","First interactive","OL3965930A","Jean Nashe"],"type":"work","seed":["/books/OL12624783M","/works/OL10000835W","/authors/OL3965930A"],"title":"Works 2002","title_suggest":["Works 2002"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624783M"],"publish_date":["December 2, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["401683898"],"isbn":["2844273807","9782844273802"],"last_modified_i":1307514875,"ebook_count_i":0,"cover_edition_key":"OL12624783M","cover_i":3141801,"publisher":["First interactive"],"language":["fre"],"author_key":["OL3965930A"],"author_name":["Jean Nashe"],"id_goodreads":["5345074"],"publisher_facet":["First interactive"],"_version_":1697074596460626000,"author_facet":["OL3965930A Jean Nashe"]}
{"key":"/works/OL10000836W","text":["/works/OL10000836W","PowerPoint 2000","OL12624669M","9782844271464","2844271464","Editions First Interactive","OL3965931A","Sandrine Méron"],"type":"work","seed":["/books/OL12624669M","/works/OL10000836W","/authors/OL3965931A"],"title":"PowerPoint 2000","title_suggest":["PowerPoint 2000"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624669M"],"publish_date":["April 26, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782844271464","2844271464"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624669M","cover_i":3141691,"publisher":["Editions First Interactive"],"author_key":["OL3965931A"],"author_name":["Sandrine Méron"],"publisher_facet":["Editions First Interactive"],"_version_":1697074595442458600,"author_facet":["OL3965931A Sandrine Méron"]}
{"key":"/works/OL10000837W","text":["/works/OL10000837W","Apprendre le clavier","OL12624799M","9782844274106","2844274102","First interactive","OL3965932A","Servane Heudiard"],"type":"work","seed":["/books/OL12624799M","/works/OL10000837W","/authors/OL3965932A"],"title":"Apprendre le clavier","title_suggest":["Apprendre le clavier"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624799M"],"publish_date":["February 19, 2003"],"publish_year":[2003],"first_publish_year":2003,"isbn":["9782844274106","2844274102"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624799M","cover_i":3141811,"publisher":["First interactive"],"author_key":["OL3965932A"],"author_name":["Servane Heudiard"],"id_goodreads":["4430868"],"publisher_facet":["First interactive"],"_version_":1697074596496277500,"author_facet":["OL3965932A Servane Heudiard"]}
{"key":"/works/OL10000838W","text":["/works/OL10000838W","Illustrator 9","OL12624854M","9782844279132","2844279139","First interactive","OL3965932A","Servane Heudiard"],"type":"work","seed":["/books/OL12624854M","/works/OL10000838W","/authors/OL3965932A"],"title":"Illustrator 9","title_suggest":["Illustrator 9"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624854M"],"publish_date":["April 18, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782844279132","2844279139"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624854M","cover_i":3141864,"publisher":["First interactive"],"author_key":["OL3965932A"],"author_name":["Servane Heudiard"],"id_goodreads":["4430867"],"publisher_facet":["First interactive"],"_version_":1697074596401905700,"author_facet":["OL3965932A Servane Heudiard"]}
{"key":"/works/OL10000839W","text":["/works/OL10000839W","L'Assistant visuel PowerPoint 2002","OL12624884M","2844279805","9782844279804","First interactive","OL3965932A","Servane Heudiard"],"type":"work","seed":["/books/OL12624884M","/works/OL10000839W","/authors/OL3965932A"],"title":"L'Assistant visuel PowerPoint 2002","title_suggest":["L'Assistant visuel PowerPoint 2002"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624884M"],"publish_date":["November 14, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2844279805","9782844279804"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624884M","cover_i":3141893,"publisher":["First interactive"],"author_key":["OL3965932A"],"author_name":["Servane Heudiard"],"id_goodreads":["4430871"],"publisher_facet":["First interactive"],"_version_":1697074595817848800,"author_facet":["OL3965932A Servane Heudiard"]}
{"key":"/works/OL1000083W","text":["/works/OL1000083W","Magic, The","OL7829504M","9780553568622","0553568620","Fanfare","OL92937A","Juliana Garnett"],"type":"work","seed":["/books/OL7829504M","/works/OL1000083W","/authors/OL92937A"],"title":"Magic, The","title_suggest":["Magic, The"],"has_fulltext":false,"edition_count":1,"edition_key":["OL7829504M"],"publish_date":["June 1, 1996"],"publish_year":[1996],"first_publish_year":1996,"isbn":["9780553568622","0553568620"],"last_modified_i":1281078569,"ebook_count_i":0,"cover_edition_key":"OL7829504M","cover_i":372182,"publisher":["Fanfare"],"language":["eng"],"author_key":["OL92937A"],"author_name":["Juliana Garnett"],"id_goodreads":["3009762"],"id_librarything":["187952"],"publisher_facet":["Fanfare"],"_version_":1697074596129276000,"author_facet":["OL92937A Juliana Garnett"]}
{"key":"/works/OL10000840W","text":["/works/OL10000840W","Photoshop Elements","OL12624752M","401295549","9782844273253","2844273254","First","OL3965932A","Servane Heudiard"],"type":"work","seed":["/books/OL12624752M","/works/OL10000840W","/authors/OL3965932A"],"title":"Photoshop Elements","title_suggest":["Photoshop Elements"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624752M"],"publish_date":["June 12, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["401295549"],"isbn":["9782844273253","2844273254"],"last_modified_i":1304074940,"ebook_count_i":0,"cover_edition_key":"OL12624752M","cover_i":3141772,"publisher":["First"],"author_key":["OL3965932A"],"author_name":["Servane Heudiard"],"id_goodreads":["4430870"],"publisher_facet":["First"],"_version_":1697074596210016300,"author_facet":["OL3965932A Servane Heudiard"]}
{"key":"/works/OL10000841W","text":["/works/OL10000841W","Photoshop Elements 2","OL12624795M","181338414","2844274005","9782844274007","First interactive","OL3965932A","Servane Heudiard"],"type":"work","seed":["/books/OL12624795M","/works/OL10000841W","/authors/OL3965932A"],"title":"Photoshop Elements 2","title_suggest":["Photoshop Elements 2"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624795M"],"publish_date":["January 15, 2003"],"publish_year":[2003],"first_publish_year":2003,"oclc":["181338414"],"isbn":["2844274005","9782844274007"],"last_modified_i":1304015994,"ebook_count_i":0,"cover_edition_key":"OL12624795M","cover_i":3141808,"publisher":["First interactive"],"language":["fre"],"author_key":["OL3965932A"],"author_name":["Servane Heudiard"],"id_goodreads":["4430869"],"publisher_facet":["First interactive"],"_version_":1697074596549755000,"author_facet":["OL3965932A Servane Heudiard"]}
{"key":"/works/OL10000842W","text":["/works/OL10000842W","Word 2000","OL12624671M","2844271480","9782844271488","Editions First Interactive","OL3965932A","Servane Heudiard"],"type":"work","seed":["/books/OL12624671M","/works/OL10000842W","/authors/OL3965932A"],"title":"Word 2000","title_suggest":["Word 2000"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624671M"],"publish_date":["April 26, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2844271480","9782844271488"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624671M","cover_i":3141693,"publisher":["Editions First Interactive"],"author_key":["OL3965932A"],"author_name":["Servane Heudiard"],"id_goodreads":["4430866"],"publisher_facet":["Editions First Interactive"],"_version_":1697074596316971000,"author_facet":["OL3965932A Servane Heudiard"]}
{"key":"/works/OL10000843W","text":["/works/OL10000843W","Mac OS 9","OL12624673M","45276101","9782844271587","2844271588","Editions First Interactive","OL3965933A","Madjid Benhemam"],"type":"work","seed":["/books/OL12624673M","/works/OL10000843W","/authors/OL3965933A"],"title":"Mac OS 9","title_suggest":["Mac OS 9"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624673M"],"publish_date":["April 26, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["45276101"],"isbn":["9782844271587","2844271588"],"last_modified_i":1304043306,"ebook_count_i":0,"cover_edition_key":"OL12624673M","cover_i":3141695,"publisher":["Editions First Interactive"],"language":["fre"],"author_key":["OL3965933A"],"author_name":["Madjid Benhemam"],"id_goodreads":["1658096"],"publisher_facet":["Editions First Interactive"],"_version_":1697074596276076500,"author_facet":["OL3965933A Madjid Benhemam"]}
{"key":"/works/OL10000844W","text":["/works/OL10000844W","Excel 2000, niveau 2","OL12624683M","2844271847","9782844271846","First","OL3965934A","J. Nashe"],"type":"work","seed":["/books/OL12624683M","/works/OL10000844W","/authors/OL3965934A"],"title":"Excel 2000, niveau 2","title_suggest":["Excel 2000, niveau 2"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624683M"],"publish_date":["August 23, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["2844271847","9782844271846"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12624683M","cover_i":3141705,"publisher":["First"],"author_key":["OL3965934A"],"author_name":["J. Nashe"],"id_librarything":["5521510"],"publisher_facet":["First"],"_version_":1697074595479158800,"author_facet":["OL3965934A J. Nashe"]}
{"key":"/works/OL10000845W","text":["/works/OL10000845W","L'Assistant visuel Access 2002","OL12624888M","52142555","9782844279866","2844279864","First Editions","OL3965934A","J. Nashe"],"type":"work","seed":["/books/OL12624888M","/works/OL10000845W","/authors/OL3965934A"],"title":"L'Assistant visuel Access 2002","title_suggest":["L'Assistant visuel Access 2002"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624888M"],"publish_date":["December 12, 2001"],"publish_year":[2001],"first_publish_year":2001,"oclc":["52142555"],"isbn":["9782844279866","2844279864"],"last_modified_i":1307528732,"ebook_count_i":0,"cover_edition_key":"OL12624888M","cover_i":3141897,"publisher":["First Editions"],"author_key":["OL3965934A"],"author_name":["J. Nashe"],"publisher_facet":["First Editions"],"_version_":1697074596639932400,"author_facet":["OL3965934A J. Nashe"]}
{"key":"/works/OL10000846W","text":["/works/OL10000846W","L'Assistant visuel Excel 2002","OL12624872M","2844279635","9782844279637","First Editions","OL3965934A","J. Nashe"],"type":"work","seed":["/books/OL12624872M","/works/OL10000846W","/authors/OL3965934A"],"title":"L'Assistant visuel Excel 2002","title_suggest":["L'Assistant visuel Excel 2002"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624872M"],"publish_date":["September 5, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["2844279635","9782844279637"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624872M","cover_i":3141882,"publisher":["First Editions"],"author_key":["OL3965934A"],"author_name":["J. Nashe"],"publisher_facet":["First Editions"],"_version_":1697074595949969400,"author_facet":["OL3965934A J. Nashe"]}
{"key":"/works/OL10000847W","text":["/works/OL10000847W","L'Assistant visuel FrontPage 2002","OL12624870M","9782844279590","2844279597","First Editions","OL3965934A","J. Nashe"],"type":"work","seed":["/books/OL12624870M","/works/OL10000847W","/authors/OL3965934A"],"title":"L'Assistant visuel FrontPage 2002","title_suggest":["L'Assistant visuel FrontPage 2002"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624870M"],"publish_date":["August 22, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782844279590","2844279597"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624870M","cover_i":3141880,"publisher":["First Editions"],"author_key":["OL3965934A"],"author_name":["J. Nashe"],"publisher_facet":["First Editions"],"_version_":1697074595959406600,"author_facet":["OL3965934A J. Nashe"]}
{"key":"/works/OL10000848W","text":["/works/OL10000848W","L'assistant visuel Windows XP","OL12624882M","9782844279750","2844279759","First Editions","OL3965934A","J. Nashe"],"type":"work","seed":["/books/OL12624882M","/works/OL10000848W","/authors/OL3965934A"],"title":"L'assistant visuel Windows XP","title_suggest":["L'assistant visuel Windows XP"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624882M"],"publish_date":["October 24, 2001"],"publish_year":[2001],"first_publish_year":2001,"isbn":["9782844279750","2844279759"],"last_modified_i":1260840403,"ebook_count_i":0,"publisher":["First Editions"],"author_key":["OL3965934A"],"author_name":["J. Nashe"],"publisher_facet":["First Editions"],"_version_":1697074596650418200,"author_facet":["OL3965934A J. Nashe"]}
{"key":"/works/OL10000849W","text":["/works/OL10000849W","Outlook 2002","OL12624674M","2844271634","9782844271631","First interactive","OL3965934A","J. Nashe"],"type":"work","seed":["/books/OL12624674M","/works/OL10000849W","/authors/OL3965934A"],"title":"Outlook 2002","title_suggest":["Outlook 2002"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624674M"],"publish_date":["February 13, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2844271634","9782844271631"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624674M","cover_i":3141696,"publisher":["First interactive"],"author_key":["OL3965934A"],"author_name":["J. Nashe"],"publisher_facet":["First interactive"],"_version_":1697074595902783500,"author_facet":["OL3965934A J. Nashe"]}
{"key":"/works/OL1000084W","text":["/works/OL1000084W","Quest, The","OL7829503M","2011658426","33272404","0553568612","9780553568615","Crimeline","OL92937A","Juliana Garnett","Fiction","Love stories","Historical fiction","History"],"type":"work","seed":["/books/OL7829503M","/works/OL1000084W","/subjects/fiction","/subjects/love_stories","/subjects/historical_fiction","/subjects/history","/authors/OL92937A"],"title":"Quest, The","title_suggest":["Quest, The"],"has_fulltext":false,"edition_count":1,"edition_key":["OL7829503M"],"publish_date":["October 1, 1995"],"publish_year":[1995],"first_publish_year":1995,"lccn":["2011658426"],"oclc":["33272404"],"lcc":["CPB0000.00000000.Box no. 511 vol. 5"],"isbn":["0553568612","9780553568615"],"last_modified_i":1602956364,"ebook_count_i":0,"publisher":["Crimeline"],"language":["eng"],"author_key":["OL92937A"],"author_name":["Juliana Garnett"],"subject":["Fiction","Love stories","Historical fiction","History"],"id_goodreads":["3009764"],"id_librarything":["1869882"],"publisher_facet":["Crimeline"],"subject_facet":["Fiction","Historical fiction","History","Love stories"],"_version_":1697074595796877300,"lcc_sort":"CPB0000.00000000.Box no. 511 vol. 5","author_facet":["OL92937A Juliana Garnett"],"subject_key":["fiction","historical_fiction","history","love_stories"]}
{"key":"/works/OL10000850W","text":["/works/OL10000850W","Formation Visuelle Publisher 2000","OL12624679M","410528561","2844271715","9782844271716","Editions First Interactive","OL3965935A","L-Musick & E-Willet"],"type":"work","seed":["/books/OL12624679M","/works/OL10000850W","/authors/OL3965935A"],"title":"Formation Visuelle Publisher 2000","title_suggest":["Formation Visuelle Publisher 2000"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624679M"],"publish_date":["July 19, 2000"],"publish_year":[2000],"first_publish_year":2000,"oclc":["410528561"],"isbn":["2844271715","9782844271716"],"last_modified_i":1307511609,"ebook_count_i":0,"cover_edition_key":"OL12624679M","cover_i":3141701,"publisher":["Editions First Interactive"],"author_key":["OL3965935A"],"author_name":["L-Musick & E-Willet"],"publisher_facet":["Editions First Interactive"],"_version_":1697074596344234000,"author_facet":["OL3965935A L-Musick & E-Willet"]}
{"key":"/works/OL10000851W","text":["/works/OL10000851W","Clic&zap Word 2000 niveau 2","OL12624682M","9782844271839","2844271839","Editions First Interactive","OL3965936A","Servanne Heudiard"],"type":"work","seed":["/books/OL12624682M","/works/OL10000851W","/authors/OL3965936A"],"title":"Clic&zap Word 2000 niveau 2","title_suggest":["Clic&zap Word 2000 niveau 2"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624682M"],"publish_date":["July 19, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["9782844271839","2844271839"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624682M","cover_i":3141704,"publisher":["Editions First Interactive"],"author_key":["OL3965936A"],"author_name":["Servanne Heudiard"],"publisher_facet":["Editions First Interactive"],"_version_":1697074596347379700,"author_facet":["OL3965936A Servanne Heudiard"]}
{"key":"/works/OL10000852W","text":["/works/OL10000852W","HTML 4","OL12624694M","284427210X","9782844272102","First interactive","OL3965939A","Servane Heudriard"],"type":"work","seed":["/books/OL12624694M","/works/OL10000852W","/authors/OL3965939A"],"title":"HTML 4","title_suggest":["HTML 4"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624694M"],"publish_date":["October 2, 2000"],"publish_year":[2000],"first_publish_year":2000,"isbn":["284427210X","9782844272102"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12624694M","cover_i":3141716,"publisher":["First interactive"],"author_key":["OL3965939A"],"author_name":["Servane Heudriard"],"id_librarything":["9265710"],"publisher_facet":["First interactive"],"_version_":1697074596584358000,"author_facet":["OL3965939A Servane Heudriard"]}
{"key":"/works/OL10000853W","text":["/works/OL10000853W","Windows xp poche pour les nuls","OL12624709M","2844272525","9782844272522","First","OL3965941A","Rathbone-a"],"type":"work","seed":["/books/OL12624709M","/works/OL10000853W","/authors/OL3965941A"],"title":"Windows xp poche pour les nuls","title_suggest":["Windows xp poche pour les nuls"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624709M"],"publish_date":["January 9, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2844272525","9782844272522"],"last_modified_i":1260840403,"ebook_count_i":0,"publisher":["First"],"language":["fre"],"author_key":["OL3965941A"],"author_name":["Rathbone-a"],"publisher_facet":["First"],"_version_":1697074596275028000,"author_facet":["OL3965941A Rathbone-a"]}
{"key":"/works/OL10000854W","text":["/works/OL10000854W","Photoshop 6 poche pour les nuls","OL12624711M","9782844272546","2844272541","First","OL3965942A","Mcclelland-d"],"type":"work","seed":["/books/OL12624711M","/works/OL10000854W","/authors/OL3965942A"],"title":"Photoshop 6 poche pour les nuls","title_suggest":["Photoshop 6 poche pour les nuls"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624711M"],"publish_date":["January 16, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782844272546","2844272541"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624711M","cover_i":3141732,"publisher":["First"],"author_key":["OL3965942A"],"author_name":["Mcclelland-d"],"publisher_facet":["First"],"_version_":1697074595866083300,"author_facet":["OL3965942A Mcclelland-d"]}
{"key":"/works/OL10000855W","text":["/works/OL10000855W","Excel 2002 poche pour les nuls","OL12624712M","284427255X","9782844272553","First","OL3965943A","Harvey-G"],"type":"work","seed":["/books/OL12624712M","/works/OL10000855W","/authors/OL3965943A"],"title":"Excel 2002 poche pour les nuls","title_suggest":["Excel 2002 poche pour les nuls"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624712M"],"publish_date":["January 9, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["284427255X","9782844272553"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624712M","cover_i":3141733,"publisher":["First"],"author_key":["OL3965943A"],"author_name":["Harvey-G"],"publisher_facet":["First"],"_version_":1697074596542414800,"author_facet":["OL3965943A Harvey-G"]}
{"key":"/works/OL10000856W","text":["/works/OL10000856W","Office xp poche pour les nuls","OL12624721M","2844272665","9782844272669","First","OL3965944A","Wang-W"],"type":"work","seed":["/books/OL12624721M","/works/OL10000856W","/authors/OL3965944A"],"title":"Office xp poche pour les nuls","title_suggest":["Office xp poche pour les nuls"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624721M"],"publish_date":["March 6, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2844272665","9782844272669"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624721M","cover_i":3141742,"publisher":["First"],"language":["fre"],"author_key":["OL3965944A"],"author_name":["Wang-W"],"publisher_facet":["First"],"_version_":1697074596238327800,"author_facet":["OL3965944A Wang-W"]}
{"key":"/works/OL10000857W","text":["/works/OL10000857W","Visual basic 6 poche pour les nuls","OL12624713M","9782844272560","2844272568","First","OL3965944A","Wang-W"],"type":"work","seed":["/books/OL12624713M","/works/OL10000857W","/authors/OL3965944A"],"title":"Visual basic 6 poche pour les nuls","title_suggest":["Visual basic 6 poche pour les nuls"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624713M"],"publish_date":["January 16, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782844272560","2844272568"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624713M","cover_i":3141734,"publisher":["First"],"author_key":["OL3965944A"],"author_name":["Wang-W"],"publisher_facet":["First"],"_version_":1697074595802120200,"author_facet":["OL3965944A Wang-W"]}
{"key":"/works/OL10000858W","text":["/works/OL10000858W","Les reseaux poche pour les nuls","OL12624720M","9782844272652","2844272657","First","OL3965945A","Lowe-d"],"type":"work","seed":["/books/OL12624720M","/works/OL10000858W","/authors/OL3965945A"],"title":"Les reseaux poche pour les nuls","title_suggest":["Les reseaux poche pour les nuls"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624720M"],"publish_date":["January 16, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782844272652","2844272657"],"last_modified_i":1282054217,"ebook_count_i":0,"cover_edition_key":"OL12624720M","cover_i":3141741,"publisher":["First"],"author_key":["OL3965945A"],"author_name":["Lowe-d"],"id_goodreads":["3568994"],"id_librarything":["82507"],"publisher_facet":["First"],"_version_":1697074596390371300,"author_facet":["OL3965945A Lowe-d"]}
{"key":"/works/OL10000859W","text":["/works/OL10000859W","Windows XP et Office XP, c'est simple, édition gold","OL12624754M","9782844273277","2844273270","First","OL2849639A","MaranGraphics","maranGraphics","MaranGraphics Development Group.","Marangraphics","Maran Graphics","MaranGraphics Inc","maranGraphics Development Group"],"type":"work","seed":["/books/OL12624754M","/works/OL10000859W","/authors/OL2849639A"],"title":"Windows XP et Office XP, c'est simple, édition gold","title_suggest":["Windows XP et Office XP, c'est simple, édition gold"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624754M"],"publish_date":["May 27, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782844273277","2844273270"],"last_modified_i":1297554401,"ebook_count_i":0,"cover_edition_key":"OL12624754M","cover_i":3141774,"publisher":["First"],"author_key":["OL2849639A"],"author_name":["MaranGraphics"],"author_alternative_name":["maranGraphics","MaranGraphics Development Group.","Marangraphics","Maran Graphics","MaranGraphics Inc","maranGraphics Development Group"],"publisher_facet":["First"],"_version_":1697074595937386500,"author_facet":["OL2849639A MaranGraphics"]}
{"key":"/works/OL1000085W","text":["/works/OL1000085W","The Scotsman","OL141052M","Juliana Garnett.","99611049","40325475","Copyright Paperback Collection (Library of Congress)","9780553576276","0553576275","Bantam Books","OL92937A","Juliana Garnett","Scotland","Fiction","Kidnapping","Hostages","History","Robert I, 1306-1329"],"type":"work","seed":["/books/OL141052M","/works/OL1000085W","/subjects/fiction","/subjects/kidnapping","/subjects/hostages","/subjects/history","/subjects/place:scotland","/subjects/time:robert_i_1306-1329","/authors/OL92937A"],"title":"The Scotsman","title_suggest":["The Scotsman"],"has_fulltext":false,"edition_count":1,"edition_key":["OL141052M"],"publish_date":["1998"],"publish_year":[1998],"first_publish_year":1998,"lccn":["99611049"],"publish_place":["New York"],"oclc":["40325475"],"contributor":["Copyright Paperback Collection (Library of Congress)"],"lcc":["CPB0000.00000000.Box no. 1456 vol. 10"],"isbn":["9780553576276","0553576275"],"last_modified_i":1606979407,"ebook_count_i":0,"cover_edition_key":"OL141052M","cover_i":372629,"publisher":["Bantam Books"],"language":["eng"],"author_key":["OL92937A"],"author_name":["Juliana Garnett"],"place":["Scotland"],"subject":["Fiction","Kidnapping","Hostages","History"],"time":["Robert I, 1306-1329"],"id_goodreads":["2943742"],"id_librarything":["1721935"],"publisher_facet":["Bantam Books"],"place_key":["scotland"],"time_facet":["Robert I, 1306-1329"],"subject_facet":["Fiction","History","Hostages","Kidnapping"],"_version_":1697074596519346200,"place_facet":["Scotland"],"lcc_sort":"CPB0000.00000000.Box no. 1456 vol. 10","author_facet":["OL92937A Juliana Garnett"],"subject_key":["fiction","history","hostages","kidnapping"],"time_key":["robert_i_1306-1329"]}
{"key":"/works/OL10000860W","text":["/works/OL10000860W","Je maîtrise Internet, édition 2002","OL12624723M","2844272789","9782844272782","First interactive","OL3965947A","Thierrry Crouzet"],"type":"work","seed":["/books/OL12624723M","/works/OL10000860W","/authors/OL3965947A"],"title":"Je maîtrise Internet, édition 2002","title_suggest":["Je maîtrise Internet, édition 2002"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624723M"],"publish_date":["January 13, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["2844272789","9782844272782"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624723M","cover_i":3141744,"publisher":["First interactive"],"author_key":["OL3965947A"],"author_name":["Thierrry Crouzet"],"publisher_facet":["First interactive"],"_version_":1697074596387225600,"author_facet":["OL3965947A Thierrry Crouzet"]}
{"key":"/works/OL10000861W","text":["/works/OL10000861W","Internet","Internet ","Comment ça marche ?","OL12624744M","9782844273161","2844273165","First interactive","OL3965952A","P. Gralla"],"type":"work","seed":["/books/OL12624744M","/works/OL10000861W","/authors/OL3965952A"],"title":"Internet","title_suggest":["Internet"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624744M"],"publish_date":["March 13, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782844273161","2844273165"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624744M","cover_i":3141764,"publisher":["First interactive"],"author_key":["OL3965952A"],"author_name":["P. Gralla"],"publisher_facet":["First interactive"],"_version_":1697074595567239200,"author_facet":["OL3965952A P. Gralla"]}
{"key":"/works/OL10000862W","text":["/works/OL10000862W","Asp net guide du developpeur","OL12624749M","284427322X","9782844273222","First","OL3965953A","Greg Buckzek"],"type":"work","seed":["/books/OL12624749M","/works/OL10000862W","/authors/OL3965953A"],"title":"Asp net guide du developpeur","title_suggest":["Asp net guide du developpeur"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624749M"],"publish_date":["May 23, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["284427322X","9782844273222"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624749M","cover_i":3141769,"publisher":["First"],"author_key":["OL3965953A"],"author_name":["Greg Buckzek"],"publisher_facet":["First"],"_version_":1697074595543122000,"author_facet":["OL3965953A Greg Buckzek"]}
{"key":"/works/OL10000863W","text":["/works/OL10000863W","Je maîtrise Windows XP","OL12624753M","319896085","2844273262","9782844273260","First","OL3965954A","Véronique Campillo"],"type":"work","seed":["/books/OL12624753M","/works/OL10000863W","/authors/OL3965954A"],"title":"Je maîtrise Windows XP","title_suggest":["Je maîtrise Windows XP"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624753M"],"publish_date":["May 15, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["319896085"],"isbn":["2844273262","9782844273260"],"last_modified_i":1303959159,"ebook_count_i":0,"cover_edition_key":"OL12624753M","cover_i":3141773,"publisher":["First"],"author_key":["OL3965954A"],"author_name":["Véronique Campillo"],"publisher_facet":["First"],"_version_":1697074596037001200,"author_facet":["OL3965954A Véronique Campillo"]}
{"key":"/works/OL10000864W","text":["/works/OL10000864W","Configurer et dépanner Windows XP Professionnel","OL12624755M","469897437","2844273289","9782844273284","First","OL3965955A","B. (Brian) Barber"],"type":"work","seed":["/books/OL12624755M","/works/OL10000864W","/authors/OL3965955A"],"title":"Configurer et dépanner Windows XP Professionnel","title_suggest":["Configurer et dépanner Windows XP Professionnel"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624755M"],"publish_date":["June 19, 2002"],"publish_year":[2002],"first_publish_year":2002,"oclc":["469897437"],"isbn":["2844273289","9782844273284"],"last_modified_i":1304146991,"ebook_count_i":0,"cover_edition_key":"OL12624755M","cover_i":3141775,"publisher":["First"],"author_key":["OL3965955A"],"author_name":["B. (Brian) Barber"],"publisher_facet":["First"],"_version_":1697074595787440000,"author_facet":["OL3965955A B. (Brian) Barber"]}
{"key":"/works/OL10000865W","text":["/works/OL10000865W","Windows XP, le master","OL12624761M","9782844273383","2844273386","First","OL3965956A","Terry W. (Terry William) Ogletree"],"type":"work","seed":["/books/OL12624761M","/works/OL10000865W","/authors/OL3965956A"],"title":"Windows XP, le master","title_suggest":["Windows XP, le master"],"has_fulltext":false,"edition_count":1,"edition_key":["OL12624761M"],"publish_date":["May 27, 2002"],"publish_year":[2002],"first_publish_year":2002,"isbn":["9782844273383","2844273386"],"last_modified_i":1272437659,"ebook_count_i":0,"cover_edition_key":"OL12624761M","cover_i":3141781,"publisher":["First"],"author_key":["OL3965956A"],"author_name":["Terry W. (Terry William) Ogletree"],"id_goodreads":["5402158"],"publisher_facet":["First"],"_version_":1697074596263493600,"author_facet":["OL3965956A Terry W. (Terry William) Ogletree"]}