-
Notifications
You must be signed in to change notification settings - Fork 2
/
train_corpus.json
2703 lines (2703 loc) · 539 KB
/
train_corpus.json
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": "LibriSpeech/dev-clean/1272\\128104\\1272-128104-0000.wav", "duration": 5.855, "text": "mister quilter is the apostle of the middle classes and we are glad to welcome his gospel"}
{"key": "LibriSpeech/dev-clean/1272\\128104\\1272-128104-0001.wav", "duration": 4.815, "text": "nor is mister quilter's manner less interesting than his matter"}
{"key": "LibriSpeech/dev-clean/1272\\128104\\1272-128104-0002.wav", "duration": 12.485, "text": "he tells us that at this festive season of the year with christmas and roast beef looming before us similes drawn from eating and its results occur most readily to the mind"}
{"key": "LibriSpeech/dev-clean/1272\\128104\\1272-128104-0003.wav", "duration": 9.9, "text": "he has grave doubts whether sir frederick leighton's work is really greek after all and can discover in it but little of rocky ithaca"}
{"key": "LibriSpeech/dev-clean/1272\\128104\\1272-128104-0004.wav", "duration": 29.4, "text": "linnell's pictures are a sort of up guards and at em paintings and mason's exquisite idylls are as national as a jingo poem mister birket foster's landscapes smile at one much in the same way that mister carker used to flash his teeth and mister john collier gives his sitter a cheerful slap on the back before he says like a shampooer in a turkish bath next man"}
{"key": "LibriSpeech/dev-clean/1272\\128104\\1272-128104-0005.wav", "duration": 9.01, "text": "it is obviously unnecessary for us to point out how luminous these criticisms are how delicate in expression"}
{"key": "LibriSpeech/dev-clean/1272\\128104\\1272-128104-0006.wav", "duration": 5.64, "text": "on the general principles of art mister quilter writes with equal lucidity"}
{"key": "LibriSpeech/dev-clean/1272\\128104\\1272-128104-0007.wav", "duration": 9.24, "text": "painting he tells us is of a different quality to mathematics and finish in art is adding more fact"}
{"key": "LibriSpeech/dev-clean/1272\\128104\\1272-128104-0008.wav", "duration": 5.12, "text": "as for etchings they are of two kinds british and foreign"}
{"key": "LibriSpeech/dev-clean/1272\\128104\\1272-128104-0009.wav", "duration": 18.29, "text": "he laments most bitterly the divorce that has been made between decorative art and what we usually call pictures makes the customary appeal to the last judgment and reminds us that in the great days of art michael angelo was the furnishing upholsterer"}
{"key": "LibriSpeech/dev-clean/1272\\128104\\1272-128104-0010.wav", "duration": 5.6, "text": "near the fire and the ornaments fred brought home from india on the mantel board"}
{"key": "LibriSpeech/dev-clean/1272\\128104\\1272-128104-0011.wav", "duration": 15.115, "text": "in fact he is quite severe on mister ruskin for not recognising that a picture should denote the frailty of man and remarks with pleasing courtesy and felicitous grace that many phases of feeling"}
{"key": "LibriSpeech/dev-clean/1272\\128104\\1272-128104-0012.wav", "duration": 5.38, "text": "only unfortunately his own work never does get good"}
{"key": "LibriSpeech/dev-clean/1272\\128104\\1272-128104-0013.wav", "duration": 7.1, "text": "mister quilter has missed his chance for he has failed even to make himself the tupper of painting"}
{"key": "LibriSpeech/dev-clean/1272\\128104\\1272-128104-0014.wav", "duration": 20.205, "text": "by harry quilter m a"}
{"key": "LibriSpeech/dev-clean/1272\\135031\\1272-135031-0000.wav", "duration": 10.885, "text": "because you were sleeping instead of conquering the lovely rose princess has become a fiddle without a bow while poor shaggy sits there a cooing dove"}
{"key": "LibriSpeech/dev-clean/1272\\135031\\1272-135031-0001.wav", "duration": 11.13, "text": "he has gone and gone for good answered polychrome who had managed to squeeze into the room beside the dragon and had witnessed the occurrences with much interest"}
{"key": "LibriSpeech/dev-clean/1272\\135031\\1272-135031-0002.wav", "duration": 11.475, "text": "i have remained a prisoner only because i wished to be one and with this he stepped forward and burst the stout chains as easily as if they had been threads"}
{"key": "LibriSpeech/dev-clean/1272\\135031\\1272-135031-0003.wav", "duration": 4.755, "text": "the little girl had been asleep but she heard the raps and opened the door"}
{"key": "LibriSpeech/dev-clean/1272\\135031\\1272-135031-0004.wav", "duration": 4.225, "text": "the king has fled in disgrace and your friends are asking for you"}
{"key": "LibriSpeech/dev-clean/1272\\135031\\1272-135031-0005.wav", "duration": 4.625, "text": "i begged ruggedo long ago to send him away but he would not do so"}
{"key": "LibriSpeech/dev-clean/1272\\135031\\1272-135031-0006.wav", "duration": 4.09, "text": "i also offered to help your brother to escape but he would not go"}
{"key": "LibriSpeech/dev-clean/1272\\135031\\1272-135031-0007.wav", "duration": 4.055, "text": "he eats and sleeps very steadily replied the new king"}
{"key": "LibriSpeech/dev-clean/1272\\135031\\1272-135031-0008.wav", "duration": 3.67, "text": "i hope he doesn't work too hard said shaggy"}
{"key": "LibriSpeech/dev-clean/1272\\135031\\1272-135031-0009.wav", "duration": 15.28, "text": "he doesn't work at all"}
{"key": "LibriSpeech/dev-clean/1272\\135031\\1272-135031-0010.wav", "duration": 8.995, "text": "in fact there is nothing he can do in these dominions as well as our nomes whose numbers are so great that it worries us to keep them all busy"}
{"key": "LibriSpeech/dev-clean/1272\\135031\\1272-135031-0011.wav", "duration": 3.18, "text": "not exactly returned kaliko"}
{"key": "LibriSpeech/dev-clean/1272\\135031\\1272-135031-0012.wav", "duration": 16.32, "text": "where is my brother now"}
{"key": "LibriSpeech/dev-clean/1272\\135031\\1272-135031-0013.wav", "duration": 3.7, "text": "inquired shaggy in the metal forest"}
{"key": "LibriSpeech/dev-clean/1272\\135031\\1272-135031-0014.wav", "duration": 12.18, "text": "where is that"}
{"key": "LibriSpeech/dev-clean/1272\\135031\\1272-135031-0015.wav", "duration": 7.375, "text": "the metal forest is in the great domed cavern the largest in all our dominions replied kaliko"}
{"key": "LibriSpeech/dev-clean/1272\\135031\\1272-135031-0016.wav", "duration": 20.52, "text": "kaliko hesitated"}
{"key": "LibriSpeech/dev-clean/1272\\135031\\1272-135031-0017.wav", "duration": 6.86, "text": "however if we look sharp we may be able to discover one of these secret ways"}
{"key": "LibriSpeech/dev-clean/1272\\135031\\1272-135031-0018.wav", "duration": 2.4449375, "text": "oh no i'm quite sure he didn't"}
{"key": "LibriSpeech/dev-clean/1272\\135031\\1272-135031-0019.wav", "duration": 3.525, "text": "that's funny remarked betsy thoughtfully"}
{"key": "LibriSpeech/dev-clean/1272\\135031\\1272-135031-0020.wav", "duration": 4.65, "text": "i don't believe ann knew any magic or she'd have worked it before"}
{"key": "LibriSpeech/dev-clean/1272\\135031\\1272-135031-0021.wav", "duration": 2.595, "text": "i do not know confessed shaggy"}
{"key": "LibriSpeech/dev-clean/1272\\135031\\1272-135031-0022.wav", "duration": 2.695, "text": "true agreed kaliko"}
{"key": "LibriSpeech/dev-clean/1272\\135031\\1272-135031-0023.wav", "duration": 7.52, "text": "kaliko went to the big gong and pounded on it just as ruggedo used to do but no one answered the summons"}
{"key": "LibriSpeech/dev-clean/1272\\135031\\1272-135031-0024.wav", "duration": 14.47, "text": "having returned to the royal cavern kaliko first pounded the gong and then sat in the throne wearing ruggedo's discarded ruby crown and holding in his hand the sceptre which ruggedo had so often thrown at his head"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0000.wav", "duration": 4.65, "text": "a man said to the universe sir i exist"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0001.wav", "duration": 6.535, "text": "sweat covered brion's body trickling into the tight loincloth that was the only garment he wore"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0002.wav", "duration": 13.335, "text": "the cut on his chest still dripping blood the ache of his overstrained eyes even the soaring arena around him with the thousands of spectators were trivialities not worth thinking about"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0003.wav", "duration": 5.42, "text": "his instant of panic was followed by a small sharp blow high on his chest"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0004.wav", "duration": 5.09, "text": "one minute a voice said and the time buzzer sounded"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0005.wav", "duration": 5.81, "text": "a minute is not a very large measure of time and his body needed every fraction of it"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0006.wav", "duration": 4.93, "text": "the buzzer's whirr triggered his muscles into complete relaxation"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0007.wav", "duration": 4.735, "text": "only his heart and lungs worked on at a strong measured rate"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0008.wav", "duration": 4.595, "text": "he was in reverie sliding along the borders of consciousness"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0009.wav", "duration": 8.62, "text": "the contestants in the twenties needed undisturbed rest therefore nights in the dormitories were as quiet as death"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0010.wav", "duration": 10.76, "text": "particularly so on this last night when only two of the little cubicles were occupied the thousands of others standing with dark empty doors"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0011.wav", "duration": 5.015, "text": "the other voice snapped with a harsh urgency clearly used to command"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0012.wav", "duration": 7.74, "text": "i'm here because the matter is of utmost importance and brandd is the one i must see now stand aside"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0013.wav", "duration": 11.4795625, "text": "the twenties"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0014.wav", "duration": 7.305, "text": "he must have drawn his gun because the intruder said quickly put that away you're being a fool out"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0015.wav", "duration": 5.68, "text": "there was silence then and still wondering brion was once more asleep"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0016.wav", "duration": 14.8, "text": "ten seconds"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0017.wav", "duration": 3.735, "text": "he asked the handler who was kneading his aching muscles"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0018.wav", "duration": 6.0, "text": "a red haired mountain of a man with an apparently inexhaustible store of energy"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0019.wav", "duration": 4.7, "text": "there could be little art in this last and final round of fencing"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0020.wav", "duration": 4.32, "text": "just thrust and parry and victory to the stronger"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0021.wav", "duration": 4.65, "text": "every man who entered the twenties had his own training tricks"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0022.wav", "duration": 8.35, "text": "there appeared to be an immediate association with the death trauma as if the two were inextricably linked into one"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0023.wav", "duration": 8.66, "text": "the strength that enables someone in a trance to hold his body stiff and unsupported except at two points the head and heels"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0024.wav", "duration": 3.64, "text": "this is physically impossible when conscious"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0025.wav", "duration": 8.725, "text": "others had died before during the twenties and death during the last round was in some ways easier than defeat"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0026.wav", "duration": 6.635, "text": "breathing deeply brion softly spoke the auto hypnotic phrases that triggered the process"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0027.wav", "duration": 6.57, "text": "when the buzzer sounded he pulled his foil from his second's startled grasp and ran forward"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0028.wav", "duration": 5.65, "text": "irolg looked amazed at the sudden fury of the attack then smiled"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0029.wav", "duration": 6.88, "text": "he thought it was a last burst of energy he knew how close they both were to exhaustion"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0030.wav", "duration": 7.13, "text": "brion saw something close to panic on his opponent's face when the man finally recognized his error"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0031.wav", "duration": 7.115, "text": "a wave of despair rolled out from irolg brion sensed it and knew the fifth point was his"}
{"key": "LibriSpeech/dev-clean/1272\\141231\\1272-141231-0032.wav", "duration": 4.48, "text": "then the powerful twist that thrust it aside in and under the guard"}
{"key": "LibriSpeech/dev-clean/1462\\170138\\1462-170138-0000.wav", "duration": 14.55, "text": "he had written a number of books himself among them a history of dancing a history of costume a key to shakespeare's sonnets a study of the poetry of ernest dowson et cetera"}
{"key": "LibriSpeech/dev-clean/1462\\170138\\1462-170138-0001.wav", "duration": 3.985, "text": "hugh's written a delightful part for her and she's quite inexpressible"}
{"key": "LibriSpeech/dev-clean/1462\\170138\\1462-170138-0002.wav", "duration": 4.645, "text": "i happen to have mac connell's box for tonight or there'd be no chance of our getting places"}
{"key": "LibriSpeech/dev-clean/1462\\170138\\1462-170138-0003.wav", "duration": 2.32, "text": "alexander exclaimed mildly"}
{"key": "LibriSpeech/dev-clean/1462\\170138\\1462-170138-0004.wav", "duration": 2.51, "text": "myself i always knew she had it in her"}
{"key": "LibriSpeech/dev-clean/1462\\170138\\1462-170138-0005.wav", "duration": 13.165, "text": "do you know alexander mainhall looked with perplexity up into the top of the hansom and rubbed his pink cheek with his gloved finger do you know i sometimes think of taking to criticism seriously myself"}
{"key": "LibriSpeech/dev-clean/1462\\170138\\1462-170138-0006.wav", "duration": 8.58, "text": "when they entered the stage box on the left the first act was well under way the scene being the interior of a cabin in the south of ireland"}
{"key": "LibriSpeech/dev-clean/1462\\170138\\1462-170138-0007.wav", "duration": 5.255, "text": "as they sat down a burst of applause drew alexander's attention to the stage"}
{"key": "LibriSpeech/dev-clean/1462\\170138\\1462-170138-0008.wav", "duration": 6.32, "text": "of course hilda is irish the burgoynes have been stage people for generations and she has the irish voice"}
{"key": "LibriSpeech/dev-clean/1462\\170138\\1462-170138-0009.wav", "duration": 2.505, "text": "it's delightful to hear it in a london theatre"}
{"key": "LibriSpeech/dev-clean/1462\\170138\\1462-170138-0010.wav", "duration": 8.615, "text": "when she began to dance by way of showing the gossoons what she had seen in the fairy rings at night the house broke into a prolonged uproar"}
{"key": "LibriSpeech/dev-clean/1462\\170138\\1462-170138-0011.wav", "duration": 11.42, "text": "after her dance she withdrew from the dialogue and retreated to the ditch wall back of philly's burrow where she sat singing the rising of the moon and making a wreath of primroses for her donkey"}
{"key": "LibriSpeech/dev-clean/1462\\170138\\1462-170138-0012.wav", "duration": 3.86, "text": "mac connell let me introduce mister bartley alexander"}
{"key": "LibriSpeech/dev-clean/1462\\170138\\1462-170138-0013.wav", "duration": 7.02, "text": "the playwright gave mainhall a curious look out of his deep set faded eyes and made a wry face"}
{"key": "LibriSpeech/dev-clean/1462\\170138\\1462-170138-0014.wav", "duration": 4.92, "text": "he nodded curtly and made for the door dodging acquaintances as he went"}
{"key": "LibriSpeech/dev-clean/1462\\170138\\1462-170138-0015.wav", "duration": 3.38, "text": "i dare say it's quite true that there's never been any one else"}
{"key": "LibriSpeech/dev-clean/1462\\170138\\1462-170138-0016.wav", "duration": 3.43, "text": "he's another who's awfully keen about her let me introduce you"}
{"key": "LibriSpeech/dev-clean/1462\\170138\\1462-170138-0017.wav", "duration": 6.21, "text": "sir harry towne bowed and said that he had met mister alexander and his wife in tokyo"}
{"key": "LibriSpeech/dev-clean/1462\\170138\\1462-170138-0018.wav", "duration": 4.4049375, "text": "i say sir harry the little girl's going famously to night isn't she"}
{"key": "LibriSpeech/dev-clean/1462\\170138\\1462-170138-0019.wav", "duration": 3.555, "text": "the fact is she's feeling rather seedy poor child"}
{"key": "LibriSpeech/dev-clean/1462\\170138\\1462-170138-0020.wav", "duration": 2.35, "text": "a little attack of nerves possibly"}
{"key": "LibriSpeech/dev-clean/1462\\170138\\1462-170138-0021.wav", "duration": 9.645, "text": "he bowed as the warning bell rang and mainhall whispered you know lord westmere of course the stooped man with the long gray mustache talking to lady dowle"}
{"key": "LibriSpeech/dev-clean/1462\\170138\\1462-170138-0022.wav", "duration": 6.185, "text": "in a moment peggy was on the stage again and alexander applauded vigorously with the rest"}
{"key": "LibriSpeech/dev-clean/1462\\170138\\1462-170138-0023.wav", "duration": 9.5, "text": "in the half light he looked about at the stalls and boxes and smiled a little consciously recalling with amusement sir harry's judicial frown"}
{"key": "LibriSpeech/dev-clean/1462\\170138\\1462-170138-0024.wav", "duration": 16.35, "text": "he leaned forward and beamed felicitations as warmly as mainhall himself when at the end of the play she came again and again before the curtain panting a little and flushed her eyes dancing and her eager nervous little mouth tremulous with excitement"}
{"key": "LibriSpeech/dev-clean/1462\\170138\\1462-170138-0025.wav", "duration": 4.44, "text": "all the same he lifted his glass here's to you little hilda"}
{"key": "LibriSpeech/dev-clean/1462\\170138\\1462-170138-0026.wav", "duration": 2.385, "text": "i'm glad she's held her own since"}
{"key": "LibriSpeech/dev-clean/1462\\170138\\1462-170138-0027.wav", "duration": 5.005, "text": "it was youth and poverty and proximity and everything was young and kindly"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0000.wav", "duration": 4.715, "text": "the last two days of the voyage bartley found almost intolerable"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0001.wav", "duration": 9.585, "text": "emerging at euston at half past three o'clock in the afternoon alexander had his luggage sent to the savoy and drove at once to bedford square"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0002.wav", "duration": 6.45, "text": "she blushed and smiled and fumbled his card in her confusion before she ran upstairs"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0003.wav", "duration": 2.37, "text": "the room was empty when he entered"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0004.wav", "duration": 7.255, "text": "a coal fire was crackling in the grate and the lamps were lit for it was already beginning to grow dark outside"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0005.wav", "duration": 11.08, "text": "she called his name on the threshold but in her swift flight across the room she felt a change in him and caught herself up so deftly that he could not tell just when she did it"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0006.wav", "duration": 6.195, "text": "she merely brushed his cheek with her lips and put a hand lightly and joyously on either shoulder"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0007.wav", "duration": 2.44, "text": "i never dreamed it would be you bartley"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0008.wav", "duration": 4.81, "text": "when did you come bartley and how did it happen you haven't spoken a word"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0009.wav", "duration": 6.335, "text": "she looked at his heavy shoulders and big determined head thrust forward like a catapult in leash"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0010.wav", "duration": 4.58, "text": "i'll do anything you wish me to bartley she said tremulously"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0011.wav", "duration": 3.26, "text": "he pulled up a window as if the air were heavy"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0012.wav", "duration": 6.67, "text": "hilda watched him from her corner trembling and scarcely breathing dark shadows growing about her eyes"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0013.wav", "duration": 3.9, "text": "it it hasn't always made you miserable has it"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0014.wav", "duration": 2.55, "text": "always but it's worse now"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0015.wav", "duration": 3.01, "text": "it's unbearable it tortures me every minute"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0016.wav", "duration": 6.24, "text": "i am not a man who can live two lives he went on feverishly each life spoils the other"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0017.wav", "duration": 2.315, "text": "i get nothing but misery out of either"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0018.wav", "duration": 3.265, "text": "there is this deception between me and everything"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0019.wav", "duration": 10.245, "text": "at that word deception spoken with such self contempt the color flashed back into hilda's face as suddenly as if she had been struck by a whiplash"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0020.wav", "duration": 4.945, "text": "she bit her lip and looked down at her hands which were clasped tightly in front of her"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0021.wav", "duration": 8.17, "text": "could you could you sit down and talk about it quietly bartley as if i were a friend and not some one who had to be defied"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0022.wav", "duration": 3.76, "text": "he dropped back heavily into his chair by the fire"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0023.wav", "duration": 2.81, "text": "i have thought about it until i am worn out"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0024.wav", "duration": 19.395, "text": "after the very first"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0025.wav", "duration": 5.55, "text": "hilda's face quivered but she whispered yes i think it must have been"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0026.wav", "duration": 4.835, "text": "she pressed his hand gently in gratitude weren't you happy then at all"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0027.wav", "duration": 4.19, "text": "something of their troubling sweetness came back to alexander too"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0028.wav", "duration": 3.005, "text": "presently it stole back to his coat sleeve"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0029.wav", "duration": 3.975, "text": "yes hilda i know that he said simply"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0030.wav", "duration": 2.705, "text": "i understand bartley i was wrong"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0031.wav", "duration": 4.825, "text": "she listened intently but she heard nothing but the creaking of his chair"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0032.wav", "duration": 2.77, "text": "you want me to say it she whispered"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0033.wav", "duration": 4.18, "text": "bartley leaned his head in his hands and spoke through his teeth"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0034.wav", "duration": 2.52, "text": "it's got to be a clean break hilda"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0035.wav", "duration": 2.67, "text": "oh bartley what am i to do"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0036.wav", "duration": 3.07, "text": "you ask me to stay away from you because you want me"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0037.wav", "duration": 4.325, "text": "i will ask the least imaginable but i must have something"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0038.wav", "duration": 4.86, "text": "hilda sat on the arm of it and put her hands lightly on his shoulders"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0039.wav", "duration": 4.715, "text": "you see loving some one as i love you makes the whole world different"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0040.wav", "duration": 4.6, "text": "and then you came back not caring very much but it made no difference"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0041.wav", "duration": 5.575, "text": "she slid to the floor beside him as if she were too tired to sit up any longer"}
{"key": "LibriSpeech/dev-clean/1462\\170142\\1462-170142-0042.wav", "duration": 3.24, "text": "don't cry don't cry he whispered"}
{"key": "LibriSpeech/dev-clean/1462\\170145\\1462-170145-0000.wav", "duration": 15.405, "text": "on the last saturday in april the new york times published an account of the strike complications which were delaying alexander's new jersey bridge and stated that the engineer himself was in town and at his office on west tenth street"}
{"key": "LibriSpeech/dev-clean/1462\\170145\\1462-170145-0001.wav", "duration": 4.8250625, "text": "over the fireplace there was a large old fashioned gilt mirror"}
{"key": "LibriSpeech/dev-clean/1462\\170145\\1462-170145-0002.wav", "duration": 2.845, "text": "he rose and crossed the room quickly"}
{"key": "LibriSpeech/dev-clean/1462\\170145\\1462-170145-0003.wav", "duration": 8.735, "text": "of course i know bartley she said at last that after this you won't owe me the least consideration but we sail on tuesday"}
{"key": "LibriSpeech/dev-clean/1462\\170145\\1462-170145-0004.wav", "duration": 8.275, "text": "i saw that interview in the paper yesterday telling where you were and i thought i had to see you that's all good night i'm going now"}
{"key": "LibriSpeech/dev-clean/1462\\170145\\1462-170145-0005.wav", "duration": 3.72, "text": "let me take off your coat and your boots they're oozing water"}
{"key": "LibriSpeech/dev-clean/1462\\170145\\1462-170145-0006.wav", "duration": 3.46, "text": "if you'd sent me a note or telephoned me or anything"}
{"key": "LibriSpeech/dev-clean/1462\\170145\\1462-170145-0007.wav", "duration": 6.32, "text": "i told myself that if i were really thinking of you and not of myself a letter would be better than nothing"}
{"key": "LibriSpeech/dev-clean/1462\\170145\\1462-170145-0008.wav", "duration": 3.15, "text": "he paused they never did to me"}
{"key": "LibriSpeech/dev-clean/1462\\170145\\1462-170145-0009.wav", "duration": 2.925, "text": "oh bartley did you write to me"}
{"key": "LibriSpeech/dev-clean/1462\\170145\\1462-170145-0010.wav", "duration": 2.945, "text": "alexander slipped his arm about her"}
{"key": "LibriSpeech/dev-clean/1462\\170145\\1462-170145-0011.wav", "duration": 2.465, "text": "i think i have felt that you were coming"}
{"key": "LibriSpeech/dev-clean/1462\\170145\\1462-170145-0012.wav", "duration": 2.7, "text": "he bent his face over her hair"}
{"key": "LibriSpeech/dev-clean/1462\\170145\\1462-170145-0013.wav", "duration": 4.8, "text": "and i she whispered i felt that you were feeling that"}
{"key": "LibriSpeech/dev-clean/1462\\170145\\1462-170145-0014.wav", "duration": 2.97, "text": "but when i came i thought i had been mistaken"}
{"key": "LibriSpeech/dev-clean/1462\\170145\\1462-170145-0015.wav", "duration": 6.055, "text": "i've been up in canada with my bridge and i arranged not to come to new york until after you had gone"}
{"key": "LibriSpeech/dev-clean/1462\\170145\\1462-170145-0016.wav", "duration": 4.175, "text": "then when your manager added two more weeks i was already committed"}
{"key": "LibriSpeech/dev-clean/1462\\170145\\1462-170145-0017.wav", "duration": 3.255, "text": "i'm going to do what you asked me to do when you were in london"}
{"key": "LibriSpeech/dev-clean/1462\\170145\\1462-170145-0018.wav", "duration": 16.2, "text": "only i'll do it more completely"}
{"key": "LibriSpeech/dev-clean/1462\\170145\\1462-170145-0019.wav", "duration": 2.69, "text": "then you don't know what you're talking about"}
{"key": "LibriSpeech/dev-clean/1462\\170145\\1462-170145-0020.wav", "duration": 19.35, "text": "yes i know very well"}
{"key": "LibriSpeech/dev-clean/1462\\170145\\1462-170145-0021.wav", "duration": 2.555, "text": "alexander flushed angrily"}
{"key": "LibriSpeech/dev-clean/1462\\170145\\1462-170145-0022.wav", "duration": 6.51, "text": "i don't know what i ought to say but i don't believe you'd be happy truly i don't aren't you trying to frighten me"}
{"key": "LibriSpeech/dev-clean/1673\\143396\\1673-143396-0000.wav", "duration": 14.675, "text": "a laudable regard for the honor of the first proselyte has countenanced the belief the hope the wish that the ebionites or at least the nazarenes were distinguished only by their obstinate perseverance in the practice of the mosaic rites"}
{"key": "LibriSpeech/dev-clean/1673\\143396\\1673-143396-0001.wav", "duration": 14.05, "text": "their churches have disappeared their books are obliterated their obscure freedom might allow a latitude of faith and the softness of their infant creed would be variously moulded by the zeal or prudence of three hundred years"}
{"key": "LibriSpeech/dev-clean/1673\\143396\\1673-143396-0002.wav", "duration": 7.85, "text": "yet the most charitable criticism must refuse these sectaries any knowledge of the pure and proper divinity of christ"}
{"key": "LibriSpeech/dev-clean/1673\\143396\\1673-143396-0003.wav", "duration": 11.355, "text": "his progress from infancy to youth and manhood was marked by a regular increase in stature and wisdom and after a painful agony of mind and body he expired on the cross"}
{"key": "LibriSpeech/dev-clean/1673\\143396\\1673-143396-0004.wav", "duration": 19.915, "text": "he lived and died for the service of mankind but the life and death of socrates had likewise been devoted to the cause of religion and justice and although the stoic or the hero may disdain the humble virtues of jesus the tears which he shed over his friend and country may be esteemed the purest evidence of his humanity"}
{"key": "LibriSpeech/dev-clean/1673\\143396\\1673-143396-0005.wav", "duration": 11.7400625, "text": "the son of a virgin generated by the ineffable operation of the holy spirit was a creature without example or resemblance superior in every attribute of mind and body to the children of adam"}
{"key": "LibriSpeech/dev-clean/1673\\143396\\1673-143396-0006.wav", "duration": 15.92, "text": "nor could it seem strange or incredible that the first of these aeons the logos or word of god of the same substance with the father should descend upon earth to deliver the human race from vice and error and to conduct them in the paths of life and immortality"}
{"key": "LibriSpeech/dev-clean/1673\\143396\\1673-143396-0007.wav", "duration": 7.095, "text": "but the prevailing doctrine of the eternity and inherent pravity of matter infected the primitive churches of the east"}
{"key": "LibriSpeech/dev-clean/1673\\143396\\1673-143396-0008.wav", "duration": 17.65, "text": "many among the gentile proselytes refused to believe that a celestial spirit an undivided portion of the first essence had been personally united with a mass of impure and contaminated flesh and in their zeal for the divinity they piously abjured the humanity of christ"}
{"key": "LibriSpeech/dev-clean/1673\\143396\\1673-143396-0009.wav", "duration": 16.46, "text": "he first appeared on the banks of the jordan in the form of perfect manhood but it was a form only and not a substance a human figure created by the hand of omnipotence to imitate the faculties and actions of a man and to impose a perpetual illusion on the senses of his friends and enemies"}
{"key": "LibriSpeech/dev-clean/1673\\143396\\1673-143396-0010.wav", "duration": 11.995, "text": "but the rashness of these concessions has encouraged a milder sentiment of those of the docetes who taught not that christ was a phantom but that he was clothed with an impassible and incorruptible body"}
{"key": "LibriSpeech/dev-clean/1673\\143396\\1673-143396-0011.wav", "duration": 16.415, "text": "a foetus that could increase from an invisible point to its full maturity a child that could attain the stature of perfect manhood without deriving any nourishment from the ordinary sources might continue to exist without repairing a daily waste by a daily supply of external matter"}
{"key": "LibriSpeech/dev-clean/1673\\143396\\1673-143396-0012.wav", "duration": 14.47, "text": "in their eyes jesus of nazareth was a mere mortal the legitimate son of joseph and mary but he was the best and wisest of the human race selected as the worthy instrument to restore upon earth the worship of the true and supreme deity"}
{"key": "LibriSpeech/dev-clean/1673\\143396\\1673-143396-0013.wav", "duration": 15.52, "text": "when the messiah was delivered into the hands of the jews the christ an immortal and impassible being forsook his earthly tabernacle flew back to the pleroma or world of spirits and left the solitary jesus to suffer to complain and to expire"}
{"key": "LibriSpeech/dev-clean/1673\\143396\\1673-143396-0014.wav", "duration": 13.985, "text": "but the justice and generosity of such a desertion are strongly questionable and the fate of an innocent martyr at first impelled and at length abandoned by his divine companion might provoke the pity and indignation of the profane"}
{"key": "LibriSpeech/dev-clean/1673\\143396\\1673-143396-0015.wav", "duration": 6.305, "text": "their murmurs were variously silenced by the sectaries who espoused and modified the double system of cerinthus"}
{"key": "LibriSpeech/dev-clean/1673\\143396\\1673-143396-0016.wav", "duration": 14.455, "text": "the worthy friend of athanasius the worthy antagonist of julian he bravely wrestled with the arians and polytheists and though he affected the rigor of geometrical demonstration his commentaries revealed the literal and allegorical sense of the scriptures"}
{"key": "LibriSpeech/dev-clean/1673\\143396\\1673-143396-0017.wav", "duration": 8.43, "text": "yet as the profound doctor had been terrified at his own rashness apollinaris was heard to mutter some faint accents of excuse and explanation"}
{"key": "LibriSpeech/dev-clean/1673\\143396\\1673-143396-0018.wav", "duration": 12.655, "text": "he acquiesced in the old distinction of the greek philosophers between the rational and sensitive soul of man that he might reserve the logos for intellectual functions and employ the subordinate human principle in the meaner actions of animal life"}
{"key": "LibriSpeech/dev-clean/1673\\143396\\1673-143396-0019.wav", "duration": 15.485, "text": "but instead of a temporary and occasional alliance they established and we still embrace the substantial indissoluble and everlasting union of a perfect god with a perfect man of the second person of the trinity with a reasonable soul and human flesh"}
{"key": "LibriSpeech/dev-clean/1673\\143396\\1673-143396-0020.wav", "duration": 15.02, "text": "under the tuition of the abbot serapion he applied himself to ecclesiastical studies with such indefatigable ardor that in the course of one sleepless night he has perused the four gospels the catholic epistles and the epistle to the romans"}
{"key": "LibriSpeech/dev-clean/1673\\143397\\1673-143397-0000.wav", "duration": 9.35, "text": "ardent in the prosecution of heresy cyril auspiciously opened his reign by oppressing the novatians the most innocent and harmless of the sectaries"}
{"key": "LibriSpeech/dev-clean/1673\\143397\\1673-143397-0001.wav", "duration": 8.895, "text": "without any legal sentence without any royal mandate the patriarch at the dawn of day led a seditious multitude to the attack of the synagogues"}
{"key": "LibriSpeech/dev-clean/1673\\143397\\1673-143397-0002.wav", "duration": 13.03, "text": "such crimes would have deserved the animadversion of the magistrate but in this promiscuous outrage the innocent were confounded with the guilty and alexandria was impoverished by the loss of a wealthy and industrious colony"}
{"key": "LibriSpeech/dev-clean/1673\\143397\\1673-143397-0003.wav", "duration": 11.18, "text": "the zeal of cyril exposed him to the penalties of the julian law but in a feeble government and a superstitious age he was secure of impunity and even of praise"}
{"key": "LibriSpeech/dev-clean/1673\\143397\\1673-143397-0004.wav", "duration": 12.07, "text": "orestes complained but his just complaints were too quickly forgotten by the ministers of theodosius and too deeply remembered by a priest who affected to pardon and continued to hate the praefect of egypt"}
{"key": "LibriSpeech/dev-clean/1673\\143397\\1673-143397-0005.wav", "duration": 9.895, "text": "a rumor was spread among the christians that the daughter of theon was the only obstacle to the reconciliation of the praefect and the archbishop and that obstacle was speedily removed"}
{"key": "LibriSpeech/dev-clean/1673\\143397\\1673-143397-0006.wav", "duration": 8.535, "text": "which oppressed the metropolitans of europe and asia invaded the provinces of antioch and alexandria and measured their diocese by the limits of the empire"}
{"key": "LibriSpeech/dev-clean/1673\\143397\\1673-143397-0007.wav", "duration": 5.16, "text": "exterminate with me the heretics and with you i will exterminate the persians"}
{"key": "LibriSpeech/dev-clean/1673\\143397\\1673-143397-0008.wav", "duration": 4.275, "text": "at these blasphemous sounds the pillars of the sanctuary were shaken"}
{"key": "LibriSpeech/dev-clean/1673\\143397\\1673-143397-0009.wav", "duration": 3.6, "text": "but the vatican received with open arms the messengers of egypt"}
{"key": "LibriSpeech/dev-clean/1673\\143397\\1673-143397-0010.wav", "duration": 12.0, "text": "the vanity of celestine was flattered by the appeal and the partial version of a monk decided the faith of the pope who with his latin clergy was ignorant of the language the arts and the theology of the greeks"}
{"key": "LibriSpeech/dev-clean/1673\\143397\\1673-143397-0011.wav", "duration": 14.195, "text": "nestorius who depended on the near approach of his eastern friends persisted like his predecessor chrysostom to disclaim the jurisdiction and to disobey the summons of his enemies they hastened his trial and his accuser presided in the seat of judgment"}
{"key": "LibriSpeech/dev-clean/1673\\143397\\1673-143397-0012.wav", "duration": 9.33, "text": "sixty eight bishops twenty two of metropolitan rank defended his cause by a modest and temperate protest they were excluded from the councils of their brethren"}
{"key": "LibriSpeech/dev-clean/1673\\143397\\1673-143397-0013.wav", "duration": 6.675, "text": "by the vigilance of memnon the churches were shut against them and a strong garrison was thrown into the cathedral"}
{"key": "LibriSpeech/dev-clean/1673\\143397\\1673-143397-0014.wav", "duration": 9.395, "text": "during a busy period of three months the emperor tried every method except the most effectual means of indifference and contempt to reconcile this theological quarrel"}
{"key": "LibriSpeech/dev-clean/1673\\143397\\1673-143397-0015.wav", "duration": 6.345, "text": "return to your provinces and may your private virtues repair the mischief and scandal of your meeting"}
{"key": "LibriSpeech/dev-clean/1673\\143397\\1673-143397-0016.wav", "duration": 15.285, "text": "the feeble son of arcadius was alternately swayed by his wife and sister by the eunuchs and women of the palace superstition and avarice were their ruling passions and the orthodox chiefs were assiduous in their endeavors to alarm the former and to gratify the latter"}
{"key": "LibriSpeech/dev-clean/1673\\143397\\1673-143397-0017.wav", "duration": 7.055, "text": "but in this awful moment of the danger of the church their vow was superseded by a more sublime and indispensable duty"}
{"key": "LibriSpeech/dev-clean/1673\\143397\\1673-143397-0018.wav", "duration": 4.265, "text": "at the same time every avenue of the throne was assaulted with gold"}
{"key": "LibriSpeech/dev-clean/1673\\143397\\1673-143397-0019.wav", "duration": 15.695, "text": "the past he regretted he was discontented with the present and the future he had reason to dread the oriental bishops successively disengaged their cause from his unpopular name and each day decreased the number of the schismatics who revered nestorius as the confessor of the faith"}
{"key": "LibriSpeech/dev-clean/1673\\143397\\1673-143397-0020.wav", "duration": 16.32, "text": "a wandering tribe of the blemmyes or nubians invaded his solitary prison in their retreat they dismissed a crowd of useless captives but no sooner had nestorius reached the banks of the nile than he would gladly have escaped from a roman and orthodox city to the milder servitude of the savages"}
{"key": "LibriSpeech/dev-clean/174\\168635\\174-168635-0000.wav", "duration": 4.53, "text": "he had never been father lover husband friend"}
{"key": "LibriSpeech/dev-clean/174\\168635\\174-168635-0001.wav", "duration": 4.65, "text": "the heart of that ex convict was full of virginity"}
{"key": "LibriSpeech/dev-clean/174\\168635\\174-168635-0002.wav", "duration": 15.86, "text": "his sister and his sister's children had left him only a vague and far off memory which had finally almost completely vanished he had made every effort to find them and not having been able to find them he had forgotten them"}
{"key": "LibriSpeech/dev-clean/174\\168635\\174-168635-0003.wav", "duration": 13.18, "text": "he suffered all the pangs of a mother and he knew not what it meant for that great and singular movement of a heart which begins to love is a very obscure and a very sweet thing"}
{"key": "LibriSpeech/dev-clean/174\\168635\\174-168635-0004.wav", "duration": 12.77, "text": "only as he was five and fifty and cosette eight years of age all that might have been love in the whole course of his life flowed together into a sort of ineffable light"}
{"key": "LibriSpeech/dev-clean/174\\168635\\174-168635-0005.wav", "duration": 7.93, "text": "cosette on her side had also unknown to herself become another being poor little thing"}
{"key": "LibriSpeech/dev-clean/174\\168635\\174-168635-0006.wav", "duration": 6.57, "text": "she felt that which she had never felt before a sensation of expansion"}
{"key": "LibriSpeech/dev-clean/174\\168635\\174-168635-0007.wav", "duration": 10.21, "text": "the man no longer produced on her the effect of being old or poor she thought jean valjean handsome just as she thought the hovel pretty"}
{"key": "LibriSpeech/dev-clean/174\\168635\\174-168635-0008.wav", "duration": 10.235, "text": "nature a difference of fifty years had set a profound gulf between jean valjean and cosette destiny filled in this gulf"}
{"key": "LibriSpeech/dev-clean/174\\168635\\174-168635-0009.wav", "duration": 3.28, "text": "to meet was to find each other"}
{"key": "LibriSpeech/dev-clean/174\\168635\\174-168635-0010.wav", "duration": 10.06, "text": "when these two souls perceived each other they recognized each other as necessary to each other and embraced each other closely"}
{"key": "LibriSpeech/dev-clean/174\\168635\\174-168635-0011.wav", "duration": 4.645, "text": "moreover jean valjean had chosen his refuge well"}
{"key": "LibriSpeech/dev-clean/174\\168635\\174-168635-0012.wav", "duration": 8.36, "text": "he had paid her six months in advance and had commissioned the old woman to furnish the chamber and dressing room as we have seen"}
{"key": "LibriSpeech/dev-clean/174\\168635\\174-168635-0013.wav", "duration": 5.87, "text": "week followed week these two beings led a happy life in that hovel"}
{"key": "LibriSpeech/dev-clean/174\\168635\\174-168635-0014.wav", "duration": 4.8250625, "text": "cosette was no longer in rags she was in mourning"}
{"key": "LibriSpeech/dev-clean/174\\168635\\174-168635-0015.wav", "duration": 4.19, "text": "and then he talked of her mother and he made her pray"}
{"key": "LibriSpeech/dev-clean/174\\168635\\174-168635-0016.wav", "duration": 7.06, "text": "he passed hours in watching her dressing and undressing her doll and in listening to her prattle"}
{"key": "LibriSpeech/dev-clean/174\\168635\\174-168635-0017.wav", "duration": 4.57, "text": "the best of us are not exempt from egotistical thoughts"}
{"key": "LibriSpeech/dev-clean/174\\168635\\174-168635-0018.wav", "duration": 27.11, "text": "he had returned to prison this time for having done right he had quaffed fresh bitterness disgust and lassitude were overpowering him even the memory of the bishop probably suffered a temporary eclipse though sure to reappear later on luminous and triumphant but after all that sacred memory was growing dim"}
{"key": "LibriSpeech/dev-clean/174\\168635\\174-168635-0019.wav", "duration": 8.0, "text": "who knows whether jean valjean had not been on the eve of growing discouraged and of falling once more"}
{"key": "LibriSpeech/dev-clean/174\\168635\\174-168635-0020.wav", "duration": 4.62, "text": "alas he walked with no less indecision than cosette"}
{"key": "LibriSpeech/dev-clean/174\\168635\\174-168635-0021.wav", "duration": 4.17, "text": "he protected her and she strengthened him"}
{"key": "LibriSpeech/dev-clean/174\\168635\\174-168635-0022.wav", "duration": 4.335, "text": "he was that child's stay and she was his prop"}
{"key": "LibriSpeech/dev-clean/174\\50561\\174-50561-0000.wav", "duration": 4.02, "text": "forgotten too the name of gillian the lovely captive"}
{"key": "LibriSpeech/dev-clean/174\\50561\\174-50561-0001.wav", "duration": 15.86, "text": "worse and worse he is even presumed to be the captive's sweetheart who wheedles the flower the ring and the prison key out of the strict virgins for his own purposes and flies with her at last in his shallop across the sea to live with her happily ever after"}
{"key": "LibriSpeech/dev-clean/174\\50561\\174-50561-0002.wav", "duration": 19.305, "text": "but this is a fallacy"}
{"key": "LibriSpeech/dev-clean/174\\50561\\174-50561-0003.wav", "duration": 3.34, "text": "the wandering singer approaches them with his lute"}
{"key": "LibriSpeech/dev-clean/174\\50561\\174-50561-0004.wav", "duration": 18.54, "text": "the emperor's daughter"}
{"key": "LibriSpeech/dev-clean/174\\50561\\174-50561-0005.wav", "duration": 5.705, "text": "lady lady my rose white lady but will you not hear a roundel lady"}
{"key": "LibriSpeech/dev-clean/174\\50561\\174-50561-0006.wav", "duration": 5.215, "text": "o if you play us a roundel singer how can that harm the emperor's daughter"}
{"key": "LibriSpeech/dev-clean/174\\50561\\174-50561-0007.wav", "duration": 10.855, "text": "she would not speak though we danced a week with her thoughts a thousand leagues over the water singer singer wandering singer o my honey sweet singer"}
{"key": "LibriSpeech/dev-clean/174\\50561\\174-50561-0008.wav", "duration": 16.31, "text": "but if i play you a roundel lady get me a gift from the emperor's daughter her finger ring for my finger bring though she's pledged a thousand leagues over the water lady lady my fair lady o my rose white lady"}
{"key": "LibriSpeech/dev-clean/174\\50561\\174-50561-0009.wav", "duration": 16.32, "text": "the wandering singer"}
{"key": "LibriSpeech/dev-clean/174\\50561\\174-50561-0010.wav", "duration": 14.91, "text": "but i did once have the luck to hear and see the lady played in entirety the children had been granted leave to play just one more game before bed time and of course they chose the longest and played it without missing a syllable"}
{"key": "LibriSpeech/dev-clean/174\\50561\\174-50561-0011.wav", "duration": 9.52, "text": "the ladies in yellow dresses stand again in a ring about the emperor's daughter and are for the last time accosted by the singer with his lute"}
{"key": "LibriSpeech/dev-clean/174\\50561\\174-50561-0012.wav", "duration": 18.63, "text": "the wandering singer"}
{"key": "LibriSpeech/dev-clean/174\\50561\\174-50561-0013.wav", "duration": 10.615, "text": "i'll play for you now neath the apple bough and you shall dream on the lawn so shady lady lady my fair lady o my apple gold lady"}
{"key": "LibriSpeech/dev-clean/174\\50561\\174-50561-0014.wav", "duration": 14.4, "text": "the ladies"}
{"key": "LibriSpeech/dev-clean/174\\50561\\174-50561-0015.wav", "duration": 16.76, "text": "now you may play a serena singer a dream of night for an apple gold lady for the fruit is now on the apple bough and the moon is up and the lawn is shady singer singer wandering singer o my honey sweet singer"}
{"key": "LibriSpeech/dev-clean/174\\50561\\174-50561-0016.wav", "duration": 13.455, "text": "once more the singer plays and the ladies dance but one by one they fall asleep to the drowsy music and then the singer steps into the ring and unlocks the tower and kisses the emperor's daughter"}
{"key": "LibriSpeech/dev-clean/174\\50561\\174-50561-0017.wav", "duration": 2.825, "text": "i don't know what becomes of the ladies"}
{"key": "LibriSpeech/dev-clean/174\\50561\\174-50561-0018.wav", "duration": 19.08, "text": "bed time children"}
{"key": "LibriSpeech/dev-clean/174\\50561\\174-50561-0019.wav", "duration": 4.26, "text": "you see the treatment is a trifle fanciful"}
{"key": "LibriSpeech/dev-clean/174\\84280\\174-84280-0000.wav", "duration": 2.4, "text": "how we must simplify"}
{"key": "LibriSpeech/dev-clean/174\\84280\\174-84280-0001.wav", "duration": 18.33, "text": "it seems to me more and more as i live longer that most poetry and most literature and particularly the literature of the past is discordant with the vastness and variety the reserves and resources and recuperations of life as we live it to day"}
{"key": "LibriSpeech/dev-clean/174\\84280\\174-84280-0002.wav", "duration": 12.2, "text": "it is the expression of life under cruder and more rigid conditions than ours lived by people who loved and hated more naively aged sooner and died younger than we do"}
{"key": "LibriSpeech/dev-clean/174\\84280\\174-84280-0003.wav", "duration": 7.445, "text": "we range wider last longer and escape more and more from intensity towards understanding"}
{"key": "LibriSpeech/dev-clean/174\\84280\\174-84280-0004.wav", "duration": 20.53, "text": "and already this astounding blow begins to take its place among other events as a thing strange and terrible indeed but related to all the strangeness and mystery of life part of the universal mysteries of despair and futility and death that have troubled my consciousness since childhood"}
{"key": "LibriSpeech/dev-clean/174\\84280\\174-84280-0005.wav", "duration": 8.61, "text": "for a time the death of mary obscured her life for me but now her living presence is more in my mind again"}
{"key": "LibriSpeech/dev-clean/174\\84280\\174-84280-0006.wav", "duration": 7.03, "text": "it was that idea of waste that dominated my mind in a strange interview i had with justin"}
{"key": "LibriSpeech/dev-clean/174\\84280\\174-84280-0007.wav", "duration": 9.73, "text": "i became grotesquely anxious to assure him that indeed she and i had been as they say innocent throughout our last day together"}
{"key": "LibriSpeech/dev-clean/174\\84280\\174-84280-0008.wav", "duration": 4.52, "text": "you were wrong in all that i said she kept her faith with you"}
{"key": "LibriSpeech/dev-clean/174\\84280\\174-84280-0009.wav", "duration": 3.1, "text": "we never planned to meet and when we met"}
{"key": "LibriSpeech/dev-clean/174\\84280\\174-84280-0010.wav", "duration": 4.36, "text": "if we had been brother and sister indeed there was nothing"}
{"key": "LibriSpeech/dev-clean/174\\84280\\174-84280-0011.wav", "duration": 3.355, "text": "but now it doesn't seem to matter very much"}
{"key": "LibriSpeech/dev-clean/174\\84280\\174-84280-0012.wav", "duration": 14.43, "text": "and it is upon this effect of sweet and beautiful possibilities caught in the net of animal jealousies and thoughtless motives and ancient rigid institutions that i would end this writing"}
{"key": "LibriSpeech/dev-clean/174\\84280\\174-84280-0013.wav", "duration": 16.86, "text": "in mary it seems to me i found both womanhood and fellowship i found what many have dreamt of love and friendship freely given and i could do nothing but clutch at her to make her my possession"}
{"key": "LibriSpeech/dev-clean/174\\84280\\174-84280-0014.wav", "duration": 3.0100625, "text": "what alternative was there for her"}
{"key": "LibriSpeech/dev-clean/174\\84280\\174-84280-0015.wav", "duration": 13.73, "text": "she was destroyed not merely by the unconsidered undisciplined passions of her husband and her lover but by the vast tradition that sustains and enforces the subjugation of her sex"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0000.wav", "duration": 2.66, "text": "illustration long pepper"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0001.wav", "duration": 11.05, "text": "long pepper this is the produce of a different plant from that which produces the black it consisting of the half ripe flower heads of what naturalists call piper longum and chaba"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0002.wav", "duration": 10.26, "text": "originally the most valuable of these were found in the spice islands or moluccas of the indian ocean and were highly prized by the nations of antiquity"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0003.wav", "duration": 5.405, "text": "the long pepper is less aromatic than the black but its oil is more pungent"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0004.wav", "duration": 8.17, "text": "then add the yolks of the eggs well beaten stir them to the sauce but do not allow it to boil and serve very hot"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0005.wav", "duration": 18.86, "text": "mode pare and slice the cucumbers as for the table sprinkle well with salt and let them remain for twenty four hours strain off the liquor pack in jars a thick layer of cucumbers and salt alternately tie down closely and when wanted for use take out the quantity required"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0006.wav", "duration": 2.8, "text": "illustration the cucumber"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0007.wav", "duration": 26.625, "text": "mode choose the greenest cucumbers and those that are most free from seeds put them in strong salt and water with a cabbage leaf to keep them down tie a paper over them and put them in a warm place till they are yellow then wash them and set them over the fire in fresh water with a very little salt and another cabbage leaf over them cover very closely but take care they do not boil"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0008.wav", "duration": 20.285, "text": "put the sugar with one quarter pint of water in a saucepan over the fire remove the scum as it rises and add the lemon peel and ginger with the outside scraped off when the syrup is tolerably thick take it off the fire and when cold wipe the cucumbers dry and put them in"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0009.wav", "duration": 5.84, "text": "seasonable this recipe should be used in june july or august"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0010.wav", "duration": 11.505, "text": "solid rocks of salt are also found in various parts of the world and the county of chester contains many of these mines and it is from there that much of our salt comes"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0011.wav", "duration": 14.0, "text": "some springs are so highly impregnated with salt as to have received the name of brine springs and are supposed to have become so by passing through the salt rocks below ground and thus dissolving a portion of this mineral substance"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0012.wav", "duration": 5.405, "text": "mode put the milk in a very clean saucepan and let it boil"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0013.wav", "duration": 6.01, "text": "beat the eggs stir to them the milk and pounded sugar and put the mixture into a jug"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0014.wav", "duration": 8.13, "text": "place the jug in a saucepan of boiling water keep stirring well until it thickens but do not allow it to boil or it will curdle"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0015.wav", "duration": 4.29, "text": "when it is sufficiently thick take it off as it should not boil"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0016.wav", "duration": 2.78, "text": "illustration the lemon"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0017.wav", "duration": 7.105, "text": "the lemon this fruit is a native of asia and is mentioned by virgil as an antidote to poison"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0018.wav", "duration": 7.06, "text": "it is hardier than the orange and as one of the citron tribe was brought into europe by the arabians"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0019.wav", "duration": 8.38, "text": "the lemon was first cultivated in england in the beginning of the seventeenth century and is now often to be found in our green houses"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0020.wav", "duration": 9.34, "text": "this juice which is called citric acid may be preserved in bottles for a considerable time by covering it with a thin stratum of oil"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0021.wav", "duration": 11.83, "text": "to pickle eggs"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0022.wav", "duration": 6.77, "text": "seasonable this should be made about easter as at this time eggs are plentiful and cheap"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0023.wav", "duration": 7.24, "text": "a store of pickled eggs will be found very useful and ornamental in serving with many first and second course dishes"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0024.wav", "duration": 2.86, "text": "illustration ginger"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0025.wav", "duration": 8.005, "text": "the ginger plant known to naturalists as zingiber officinale is a native of the east and west indies"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0026.wav", "duration": 5.655, "text": "in jamaica it flowers about august or september fading about the end of the year"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0027.wav", "duration": 9.535, "text": "beat the yolks of the other two eggs add them with a little flour and salt to those pounded mix all well together and roll into balls"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0028.wav", "duration": 5.16, "text": "boil them before they are put into the soup or other dish they may be intended for"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0029.wav", "duration": 2.625, "text": "lemon juice may be added at pleasure"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0030.wav", "duration": 9.37, "text": "mode put the whole of the ingredients into a bottle and let it remain for a fortnight in a warm place occasionally shaking up the contents"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0031.wav", "duration": 5.155, "text": "they ought to be taken up in the autumn and when dried in the house will keep till spring"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0032.wav", "duration": 5.92, "text": "add the wine and if necessary a seasoning of cayenne when it will be ready to serve"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0033.wav", "duration": 7.71, "text": "note the wine in this sauce may be omitted and an onion sliced and fried of a nice brown substituted for it"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0034.wav", "duration": 3.68, "text": "simmer for a minute or two and serve in a tureen"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0035.wav", "duration": 3.61, "text": "sufficient to serve with five or six mackerel"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0036.wav", "duration": 13.875, "text": "various dishes are frequently ornamented and garnished with its graceful leaves and these are sometimes boiled in soups although it is more usually confined in english cookery to the mackerel sauce as here given"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0037.wav", "duration": 2.97, "text": "forcemeat for cold savoury pies"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0038.wav", "duration": 5.905, "text": "pound well and bind with one or two eggs which have been previously beaten and strained"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0039.wav", "duration": 2.88, "text": "illustration marjoram"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0040.wav", "duration": 7.92, "text": "it is a native of portugal and when its leaves are used as a seasoning herb they have an agreeable aromatic flavour"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0041.wav", "duration": 12.15, "text": "mode mix all the ingredients well together carefully mincing them very finely beat up the egg moisten with it and work the whole very smoothly together"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0042.wav", "duration": 3.87, "text": "sufficient for a moderate sized haddock or pike"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0043.wav", "duration": 7.085, "text": "now beat and strain the eggs work these up with the other ingredients and the forcemeat will be ready for use"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0044.wav", "duration": 5.77, "text": "boil for five minutes mince it very small and mix it with the other ingredients"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0045.wav", "duration": 6.11, "text": "if it should be in an unsound state it must be on no account made use of"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0046.wav", "duration": 2.635, "text": "illustration basil"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0047.wav", "duration": 17.665, "text": "other sweet herbs are cultivated for purposes of medicine and perfumery they are most grateful both to the organs of taste and smelling and to the aroma derived from them is due in a great measure the sweet and exhilarating fragrance of our flowery meads"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0048.wav", "duration": 14.72, "text": "french forcemeat"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0049.wav", "duration": 15.835, "text": "it will be well to state in the beginning of this recipe that french forcemeat or quenelles consist of the blending of three separate processes namely panada udder and whatever meat you intend using panada"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0050.wav", "duration": 8.79, "text": "place it over the fire keep constantly stirring to prevent its burning and when quite dry put in a small piece of butter"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0051.wav", "duration": 9.29, "text": "put the udder into a stewpan with sufficient water to cover it let it stew gently till quite done when take it out to cool"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0052.wav", "duration": 3.1, "text": "illustration pestle and mortar"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0053.wav", "duration": 11.06, "text": "when the three ingredients are properly prepared pound them altogether in a mortar for some time for the more quenelles are pounded the more delicate they are"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0054.wav", "duration": 7.725, "text": "if the quenelles are not firm enough add the yolk of another egg but omit the white which only makes them hollow and puffy inside"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0055.wav", "duration": 9.51, "text": "any one with the slightest pretensions to refined cookery must in this particular implicitly follow the example of our friends across the channel"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0056.wav", "duration": 18.9, "text": "fried bread crumbs"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0057.wav", "duration": 8.31, "text": "the fat they are fried in should be clear and the crumbs should not have the slightest appearance or taste of having been in the least degree burnt"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0058.wav", "duration": 2.36, "text": "fried bread for borders"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0059.wav", "duration": 8.745, "text": "when quite crisp dip one side of the sippet into the beaten white of an egg mixed with a little flour and place it on the edge of the dish"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0060.wav", "duration": 7.405, "text": "continue in this manner till the border is completed arranging the sippets a pale and a dark one alternately"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0061.wav", "duration": 17.43, "text": "mode cut up the onion and carrot into small rings and put them into a stewpan with the herbs mushrooms bay leaf cloves and mace add the butter and simmer the whole very gently over a slow fire until the onion is quite tender"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0062.wav", "duration": 4.14, "text": "sufficient half this quantity for two slices of salmon"}
{"key": "LibriSpeech/dev-clean/1919\\142785\\1919-142785-0063.wav", "duration": 2.8, "text": "illustration sage"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0000.wav", "duration": 14.95, "text": "fuchs brought up a sack of potatoes and a piece of cured pork from the cellar and grandmother packed some loaves of saturday's bread a jar of butter and several pumpkin pies in the straw of the wagon box"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0001.wav", "duration": 14.21, "text": "occasionally one of the horses would tear off with his teeth a plant full of blossoms and walk along munching it the flowers nodding in time to his bites as he ate down toward them"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0002.wav", "duration": 4.395, "text": "it's no better than a badger hole no proper dugout at all"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0003.wav", "duration": 2.495, "text": "now why is that otto"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0004.wav", "duration": 9.025, "text": "presently against one of those banks i saw a sort of shed thatched with the same wine colored grass that grew everywhere"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0005.wav", "duration": 3.47, "text": "very glad very glad she ejaculated"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0006.wav", "duration": 5.38, "text": "you'll get fixed up comfortable after while missus shimerda make good house"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0007.wav", "duration": 5.865, "text": "my grandmother always spoke in a very loud tone to foreigners as if they were deaf"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0008.wav", "duration": 14.92, "text": "she made missus shimerda understand the friendly intention of our visit and the bohemian woman handled the loaves of bread and even smelled them and examined the pies with lively curiosity exclaiming much good much thank"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0009.wav", "duration": 5.16, "text": "the family had been living on corncakes and sorghum molasses for three days"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0010.wav", "duration": 3.855, "text": "i remembered what the conductor had said about her eyes"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0011.wav", "duration": 5.23, "text": "her skin was brown too and in her cheeks she had a glow of rich dark color"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0012.wav", "duration": 4.57, "text": "even from a distance one could see that there was something strange about this boy"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0013.wav", "duration": 2.89, "text": "he was born like that the others are smart"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0014.wav", "duration": 19.665, "text": "ambrosch he make good farmer"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0015.wav", "duration": 4.175, "text": "he struck ambrosch on the back and the boy smiled knowingly"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0016.wav", "duration": 3.17, "text": "at that moment the father came out of the hole in the bank"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0017.wav", "duration": 6.3, "text": "it was so long that it bushed out behind his ears and made him look like the old portraits i remembered in virginia"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0018.wav", "duration": 3.535, "text": "i noticed how white and well shaped his own hands were"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0019.wav", "duration": 6.135, "text": "we stood panting on the edge of the ravine looking down at the trees and bushes that grew below us"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0020.wav", "duration": 6.78, "text": "the wind was so strong that i had to hold my hat on and the girls skirts were blown out before them"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0021.wav", "duration": 4.935, "text": "she looked at me her eyes fairly blazing with things she could not say"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0022.wav", "duration": 7.54, "text": "she pointed into the gold cottonwood tree behind whose top we stood and said again what name"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0023.wav", "duration": 4.14, "text": "antonia pointed up to the sky and questioned me with her glance"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0024.wav", "duration": 3.085, "text": "she got up on her knees and wrung her hands"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0025.wav", "duration": 2.41, "text": "she was quick and very eager"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0026.wav", "duration": 6.915, "text": "we were so deep in the grass that we could see nothing but the blue sky over us and the gold tree in front of us"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0027.wav", "duration": 7.73, "text": "after antonia had said the new words over and over she wanted to give me a little chased silver ring she wore on her middle finger"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0028.wav", "duration": 5.88, "text": "when i came up he touched my shoulder and looked searchingly down into my face for several seconds"}
{"key": "LibriSpeech/dev-clean/1988\\147956\\1988-147956-0029.wav", "duration": 5.65, "text": "i became somewhat embarrassed for i was used to being taken for granted by my elders"}
{"key": "LibriSpeech/dev-clean/1988\\148538\\1988-148538-0000.wav", "duration": 16.825, "text": "in aristocratic communities the people readily give themselves up to bursts of tumultuous and boisterous gayety which shake off at once the recollection of their privations the natives of democracies are not fond of being thus violently broken in upon and they never lose sight of their own selves without regret"}
{"key": "LibriSpeech/dev-clean/1988\\148538\\1988-148538-0001.wav", "duration": 11.02, "text": "an american instead of going in a leisure hour to dance merrily at some place of public resort as the fellows of his calling continue to do throughout the greater part of europe shuts himself up at home to drink"}
{"key": "LibriSpeech/dev-clean/1988\\148538\\1988-148538-0002.wav", "duration": 4.45, "text": "i believe the seriousness of the americans arises partly from their pride"}
{"key": "LibriSpeech/dev-clean/1988\\148538\\1988-148538-0003.wav", "duration": 5.58, "text": "this is more especially the case amongst those free nations which form democratic communities"}
{"key": "LibriSpeech/dev-clean/1988\\148538\\1988-148538-0004.wav", "duration": 13.7, "text": "then there are in all classes a very large number of men constantly occupied with the serious affairs of the government and those whose thoughts are not engaged in the direction of the commonwealth are wholly engrossed by the acquisition of a private fortune"}
{"key": "LibriSpeech/dev-clean/1988\\148538\\1988-148538-0005.wav", "duration": 16.35, "text": "i do not believe in such republics any more than in that of plato or if the things we read of really happened i do not hesitate to affirm that these supposed democracies were composed of very different elements from ours and that they had nothing in common with the latter except their name"}
{"key": "LibriSpeech/dev-clean/1988\\148538\\1988-148538-0006.wav", "duration": 22.865, "text": "in aristocracies every man has one sole object which he unceasingly pursues but amongst democratic nations the existence of man is more complex the same mind will almost always embrace several objects at the same time and these objects are frequently wholly foreign to each other as it cannot know them all well the mind is readily satisfied with imperfect notions of each"}
{"key": "LibriSpeech/dev-clean/1988\\148538\\1988-148538-0007.wav", "duration": 7.44, "text": "chapter sixteen why the national vanity of the americans is more restless and captious than that of the english"}
{"key": "LibriSpeech/dev-clean/1988\\148538\\1988-148538-0008.wav", "duration": 6.815, "text": "the americans in their intercourse with strangers appear impatient of the smallest censure and insatiable of praise"}
{"key": "LibriSpeech/dev-clean/1988\\148538\\1988-148538-0009.wav", "duration": 7.4, "text": "if i say to an american that the country he lives in is a fine one ay he replies there is not its fellow in the world"}
{"key": "LibriSpeech/dev-clean/1988\\148538\\1988-148538-0010.wav", "duration": 8.685, "text": "if i applaud the freedom which its inhabitants enjoy he answers freedom is a fine thing but few nations are worthy to enjoy it"}
{"key": "LibriSpeech/dev-clean/1988\\148538\\1988-148538-0011.wav", "duration": 9.55, "text": "in aristocratic countries the great possess immense privileges upon which their pride rests without seeking to rely upon the lesser advantages which accrue to them"}
{"key": "LibriSpeech/dev-clean/1988\\148538\\1988-148538-0012.wav", "duration": 13.655, "text": "they therefore entertain a calm sense of their superiority they do not dream of vaunting privileges which everyone perceives and no one contests and these things are not sufficiently new to them to be made topics of conversation"}
{"key": "LibriSpeech/dev-clean/1988\\148538\\1988-148538-0013.wav", "duration": 10.405, "text": "they stand unmoved in their solitary greatness well assured that they are seen of all the world without any effort to show themselves off and that no one will attempt to drive them from that position"}
{"key": "LibriSpeech/dev-clean/1988\\148538\\1988-148538-0014.wav", "duration": 10.615, "text": "when an aristocracy carries on the public affairs its national pride naturally assumes this reserved indifferent and haughty form which is imitated by all the other classes of the nation"}
{"key": "LibriSpeech/dev-clean/1988\\148538\\1988-148538-0015.wav", "duration": 17.335, "text": "these persons then displayed towards each other precisely the same puerile jealousies which animate the men of democracies the same eagerness to snatch the smallest advantages which their equals contested and the same desire to parade ostentatiously those of which they were in possession"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0000.wav", "duration": 3.32, "text": "the two stray kittens gradually make themselves at home"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0001.wav", "duration": 7.895, "text": "somehow or other cat has taught them that he's in charge here and he just chases them for fun now and again when he's not busy sleeping"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0002.wav", "duration": 4.555, "text": "she doesn't pick them up but just having them in the room sure doesn't give her asthma"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0003.wav", "duration": 5.16, "text": "when are you getting rid of these cats i'm not fixing to start an annex to kate's cat home"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0004.wav", "duration": 5.5, "text": "right away when i bring home my new program he says how come you're taking one less course this half"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0005.wav", "duration": 6.455, "text": "i explain that i'm taking music and also biology algebra english and french music he snorts"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0006.wav", "duration": 15.84, "text": "pop it's a course"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0007.wav", "duration": 5.28, "text": "he does and for once i win a round i keep music for this semester"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0008.wav", "duration": 2.47, "text": "i'll be lucky if i have time to breathe"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0009.wav", "duration": 6.52, "text": "sometimes schools do let kids take a lot of soft courses and then they're out on a limb later huh"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0010.wav", "duration": 3.03, "text": "so he cares huh"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0011.wav", "duration": 9.69, "text": "besides says tom half the reason you and your father are always bickering is that you're so much alike me like him sure"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0012.wav", "duration": 3.64, "text": "as long as there's a bone on the floor the two of you worry it"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0013.wav", "duration": 5.535, "text": "i get the pillows comfortably arranged on the floor with a big bottle of soda and a bag of popcorn within easy reach"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0014.wav", "duration": 2.53, "text": "pop goes right on tuning his channel"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0015.wav", "duration": 4.745, "text": "you're getting altogether too upset about these programs stop it and behave yourself"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0016.wav", "duration": 2.455, "text": "it's your fault mop it up yourself"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0017.wav", "duration": 6.12, "text": "i hear the t v going for a few minutes then pop turns it off and goes in the kitchen to talk to mom"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0018.wav", "duration": 5.35, "text": "well i don't think you should turn a guy's t v program off in the middle without even finding out about it"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0019.wav", "duration": 2.715, "text": "i look at my watch it's a quarter to eleven"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0020.wav", "duration": 6.4, "text": "i turn off the television set i've lost track of what's happening and it doesn't seem to be the grandfather who's the spook after all"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0021.wav", "duration": 4.28, "text": "it's the first time hilda has been to our house and tom introduces her around"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0022.wav", "duration": 2.765, "text": "i told tom we shouldn't come so late says hilda"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0023.wav", "duration": 4.32, "text": "tom says thanks and looks at hilda and she blushes really"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0024.wav", "duration": 6.005, "text": "tom drinks a little more coffee and then he goes on the trouble is i can't get married on this flower shop job"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0025.wav", "duration": 2.91, "text": "you know i'd get drafted in a year or two anyway"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0026.wav", "duration": 2.595, "text": "i've decided to enlist in the army"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0027.wav", "duration": 2.545, "text": "i'll have to check some more says tom"}
{"key": "LibriSpeech/dev-clean/1988\\24833\\1988-24833-0028.wav", "duration": 2.95, "text": "here's to you a long happy life"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0000.wav", "duration": 6.715, "text": "how infinite the wealth of love and hope garnered in these same tiny treasure houses and oh"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0001.wav", "duration": 9.535, "text": "what bankrupts in the world we feel when death like some remorseless creditor seizes on all we fondly thought our own the twins"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0002.wav", "duration": 5.76, "text": "the ghoul like fever was not to be braved with impunity and baulked of its prey"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0003.wav", "duration": 14.3, "text": "the board not so formidable as she had imagined had inquired into her case and instead of sending her to stoke claypole her husband's buckinghamshire parish as she had dreaded had agreed to pay her rent"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0004.wav", "duration": 7.4, "text": "margaret met jem wilson several days after his brothers were seriously ill and heard from him the state of things at his home"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0005.wav", "duration": 7.98, "text": "she stopped with her hand on the latch of the wilsons door to still her beating heart and listened to the hushed quiet within"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0006.wav", "duration": 27.88, "text": "she opened the door softly there sat missus wilson in the old rocking chair with one sick death like boy lying on her knee crying without let or pause but softly gently as fearing to disturb the troubled gasping child while behind her old alice let her fast dropping tears fall down on the dead body of the other twin which she was laying out on a board placed on a sort of sofa settee in a corner of the room"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0007.wav", "duration": 7.91, "text": "over the child which yet breathed the father bent watching anxiously for some ground of hope where hope there was none"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0008.wav", "duration": 3.39, "text": "is there any chance for the other one think you"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0009.wav", "duration": 17.28, "text": "but earnest as the father was in watching the yet living he had eyes and ears for all that concerned the dead and sprang gently up and took his dead son on his hard couch in his arms with tender strength and carried him upstairs as if afraid of wakening him"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0010.wav", "duration": 3.28, "text": "wishing him said mary in a tone of inquiry"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0011.wav", "duration": 3.12, "text": "then the mother lifted up her voice and wept"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0012.wav", "duration": 5.28, "text": "her cries brought her husband down to try with his aching heart to comfort hers"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0013.wav", "duration": 5.075, "text": "mary and alice drew near the fire and stood in quiet sorrow for some time"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0014.wav", "duration": 3.055, "text": "then alice broke the silence by saying"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0015.wav", "duration": 8.2600625, "text": "afore christmas time i was as full as full could be of going home for good and all yo han heard how i've wished it this terrible long time"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0016.wav", "duration": 5.845, "text": "but he stayed long there and at last his sturdy frame shook with his strong agony"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0017.wav", "duration": 3.78, "text": "oh jem don't give way so i cannot bear to see you"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0018.wav", "duration": 13.29, "text": "he did not speak as though fearing to destroy by sound or motion the happiness of that moment when her soft hand's touch thrilled through his frame and her silvery voice was whispering tenderness in his ear"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0019.wav", "duration": 6.96, "text": "don't jem please don't whispered she again believing that his silence was only another form of grief"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0020.wav", "duration": 16.98, "text": "mary i almost loathe myself when i feel i would not give up this minute when my brothers lie dead and father and mother are in such trouble for all my life that's past and gone and mary as she tried to release her hand you know what makes me feel so blessed"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0021.wav", "duration": 10.49, "text": "he remained up stairs until after the early dawn showed mary that she need have no fear of going home through the deserted and quiet streets to try and get a little sleep before work hour"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0022.wav", "duration": 16.54, "text": "so leaving kind messages to george and jane wilson and hesitating whether she might dare to send a few kind words to jem and deciding that she had better not she stepped out into the bright morning light so fresh a contrast to the darkened room where death had been"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0023.wav", "duration": 10.7, "text": "her thoughts ran on jem's manner and words not but what she had known the tale they told for many a day but still she wished he had not put it so plainly"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0024.wav", "duration": 11.69, "text": "i cannot think what possesses me that i must always be wanting to comfort him when he's downcast and that i must go meddling wi him to night when sure enough it was his aunt's place to speak to him"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0025.wav", "duration": 9.645, "text": "i think i cannot go right for i either check myself till i'm downright cross to him or else i speak just natural and that's too kind and tender by half"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0026.wav", "duration": 20.295, "text": "but will he thank me for it"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0027.wav", "duration": 16.9, "text": "there was something of keen practical shrewdness about her which contrasted very bewitchingly with the simple foolish unworldly ideas she had picked up from the romances which miss simmonds young ladies were in the habit of recommending to each other yes"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0028.wav", "duration": 10.17, "text": "the old leaven infused years ago by her aunt esther fermented in her little bosom and perhaps all the more for her father's aversion to the rich and the gentle"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0029.wav", "duration": 11.665, "text": "it was a comfort to her when scolded by miss simmonds to think of the day when she would drive up to the door in her own carriage to order her gowns from the hasty tempered yet kind dressmaker"}
{"key": "LibriSpeech/dev-clean/1993\\147149\\1993-147149-0030.wav", "duration": 15.52, "text": "but the best of her plans the holiest that which in some measure redeemed the vanity of the rest were those relating to her father her dear father now oppressed with care and always a disheartened gloomy person"}
{"key": "LibriSpeech/dev-clean/1993\\147964\\1993-147964-0000.wav", "duration": 8.42, "text": "they sat about the house most of the day as if it were sunday greasing their boots mending their suspenders plaiting whiplashes"}
{"key": "LibriSpeech/dev-clean/1993\\147964\\1993-147964-0001.wav", "duration": 4.75, "text": "anyway he would never allow one of his horses to be put to such a strain"}
{"key": "LibriSpeech/dev-clean/1993\\147964\\1993-147964-0002.wav", "duration": 6.33, "text": "i had wanted to get some picture books for yulka and antonia even yulka was able to read a little now"}
{"key": "LibriSpeech/dev-clean/1993\\147964\\1993-147964-0003.wav", "duration": 4.685, "text": "she cut squares of cotton cloth and we sewed them together into a book"}
{"key": "LibriSpeech/dev-clean/1993\\147964\\1993-147964-0004.wav", "duration": 7.3, "text": "on the white pages i grouped sunday school cards and advertising cards which i had brought from my old country"}
{"key": "LibriSpeech/dev-clean/1993\\147964\\1993-147964-0005.wav", "duration": 10.515, "text": "when he mounted his horse at the door i saw that he had a hatchet slung to his belt and he gave grandmother a meaning look which told me he was planning a surprise for me"}
{"key": "LibriSpeech/dev-clean/1993\\147964\\1993-147964-0006.wav", "duration": 3.47, "text": "i put on my cap and ran out to meet jake"}
{"key": "LibriSpeech/dev-clean/1993\\147964\\1993-147964-0007.wav", "duration": 6.865, "text": "he used to help my father cut christmas trees for me in virginia and he had not forgotten how much i liked them"}
{"key": "LibriSpeech/dev-clean/1993\\147964\\1993-147964-0008.wav", "duration": 7.04, "text": "by the time we had placed the cold fresh smelling little tree in a corner of the sitting room it was already christmas eve"}
{"key": "LibriSpeech/dev-clean/1993\\147964\\1993-147964-0009.wav", "duration": 8.97, "text": "from under the lining he now produced a collection of brilliantly colored paper figures several inches high and stiff enough to stand alone"}
{"key": "LibriSpeech/dev-clean/1993\\147964\\1993-147964-0010.wav", "duration": 20.565, "text": "i can see them now exactly as they looked working about the table in the lamplight jake with his heavy features so rudely moulded that his face seemed somehow unfinished otto with his half ear and the savage scar that made his upper lip curl so ferociously under his twisted mustache"}
{"key": "LibriSpeech/dev-clean/1993\\147965\\1993-147965-0000.wav", "duration": 4.37, "text": "grandfather came down wearing a white shirt and his sunday coat"}
{"key": "LibriSpeech/dev-clean/1993\\147965\\1993-147965-0001.wav", "duration": 2.685, "text": "morning prayers were longer than usual"}
{"key": "LibriSpeech/dev-clean/1993\\147965\\1993-147965-0002.wav", "duration": 9.36, "text": "he gave thanks for our food and comfort and prayed for the poor and destitute in great cities where the struggle for life was harder than it was here with us"}
{"key": "LibriSpeech/dev-clean/1993\\147965\\1993-147965-0003.wav", "duration": 7.375, "text": "because he talked so little his words had a peculiar force they were not worn dull from constant use"}
{"key": "LibriSpeech/dev-clean/1993\\147965\\1993-147965-0004.wav", "duration": 2.915, "text": "all afternoon he sat in the dining room"}
{"key": "LibriSpeech/dev-clean/1993\\147965\\1993-147965-0005.wav", "duration": 8.66, "text": "at about four o'clock a visitor appeared mister shimerda wearing his rabbit skin cap and collar and new mittens his wife had knitted"}
{"key": "LibriSpeech/dev-clean/1993\\147965\\1993-147965-0006.wav", "duration": 8.83, "text": "he sat still and passive his head resting against the back of the wooden rocking chair his hands relaxed upon the arms"}
{"key": "LibriSpeech/dev-clean/1993\\147965\\1993-147965-0007.wav", "duration": 7.57, "text": "his face had a look of weariness and pleasure like that of sick people when they feel relief from pain"}
{"key": "LibriSpeech/dev-clean/1993\\147965\\1993-147965-0008.wav", "duration": 5.5, "text": "he made the sign of the cross over me put on his cap and went off in the dark"}
{"key": "LibriSpeech/dev-clean/1993\\147966\\1993-147966-0000.wav", "duration": 11.135, "text": "the week following christmas brought in a thaw and by new year's day all the world about us was a broth of gray slush and the guttered slope between the windmill and the barn was running black water"}
{"key": "LibriSpeech/dev-clean/1993\\147966\\1993-147966-0001.wav", "duration": 12.565, "text": "it was the first time missus shimerda had been to our house and she ran about examining our carpets and curtains and furniture all the while commenting upon them to her daughter in an envious complaining tone"}
{"key": "LibriSpeech/dev-clean/1993\\147966\\1993-147966-0002.wav", "duration": 4.185, "text": "your mama i said angrily wants other people's things"}
{"key": "LibriSpeech/dev-clean/1993\\147966\\1993-147966-0003.wav", "duration": 2.595, "text": "for ambrosch my mama come here"}
{"key": "LibriSpeech/dev-clean/1993\\147966\\1993-147966-0004.wav", "duration": 4.865, "text": "but you see a body never knows what traits poverty might bring out in em"}
{"key": "LibriSpeech/dev-clean/1993\\147966\\1993-147966-0005.wav", "duration": 3.345, "text": "they began to laugh boisterously when they saw me calling"}
{"key": "LibriSpeech/dev-clean/1993\\147966\\1993-147966-0006.wav", "duration": 3.29, "text": "you've got a birthday present this time jim and no mistake"}
{"key": "LibriSpeech/dev-clean/2035\\147960\\2035-147960-0000.wav", "duration": 9.02, "text": "she was four years older than i to be sure and had seen more of the world but i was a boy and she was a girl and i resented her protecting manner"}
{"key": "LibriSpeech/dev-clean/2035\\147960\\2035-147960-0001.wav", "duration": 3.925, "text": "this change came about from an adventure we had together"}
{"key": "LibriSpeech/dev-clean/2035\\147960\\2035-147960-0002.wav", "duration": 8.84, "text": "one day when i rode over to the shimerdas i found antonia starting off on foot for russian peter's house to borrow a spade ambrosch needed"}
{"key": "LibriSpeech/dev-clean/2035\\147960\\2035-147960-0003.wav", "duration": 5.84, "text": "there had been another black frost the night before and the air was clear and heady as wine"}
{"key": "LibriSpeech/dev-clean/2035\\147960\\2035-147960-0004.wav", "duration": 4.17, "text": "it was on one of these gravel beds that i met my adventure"}
{"key": "LibriSpeech/dev-clean/2035\\147960\\2035-147960-0005.wav", "duration": 6.585, "text": "i whirled round and there on one of those dry gravel beds was the biggest snake i had ever seen"}
{"key": "LibriSpeech/dev-clean/2035\\147960\\2035-147960-0006.wav", "duration": 3.315, "text": "i know i am just awful jim i was so scared"}
{"key": "LibriSpeech/dev-clean/2035\\147960\\2035-147960-0007.wav", "duration": 4.6, "text": "i never know you was so brave jim she went on comfortingly"}
{"key": "LibriSpeech/dev-clean/2035\\147960\\2035-147960-0008.wav", "duration": 6.21, "text": "a faint fetid smell came from him and a thread of green liquid oozed from his crushed head"}
{"key": "LibriSpeech/dev-clean/2035\\147960\\2035-147960-0009.wav", "duration": 3.5, "text": "look tony that's his poison i said"}
{"key": "LibriSpeech/dev-clean/2035\\147960\\2035-147960-0010.wav", "duration": 9.585, "text": "i explained to antonia how this meant that he was twenty four years old that he must have been there when white men first came left on from buffalo and indian times"}
{"key": "LibriSpeech/dev-clean/2035\\147960\\2035-147960-0011.wav", "duration": 4.38, "text": "we decided that antonia should ride dude home and i would walk"}
{"key": "LibriSpeech/dev-clean/2035\\147960\\2035-147960-0012.wav", "duration": 4.255, "text": "i followed with the spade over my shoulder dragging my snake"}
{"key": "LibriSpeech/dev-clean/2035\\147960\\2035-147960-0013.wav", "duration": 2.675, "text": "otto fuchs was the first one we met"}
{"key": "LibriSpeech/dev-clean/2035\\147960\\2035-147960-0014.wav", "duration": 4.4650625, "text": "he could stand right up and talk to you he could did he fight hard"}
{"key": "LibriSpeech/dev-clean/2035\\147960\\2035-147960-0015.wav", "duration": 10.92, "text": "otto winked at me"}
{"key": "LibriSpeech/dev-clean/2035\\147960\\2035-147960-0016.wav", "duration": 4.895, "text": "a snake of his size in fighting trim would be more than any boy could handle"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0000.wav", "duration": 15.07, "text": "peter told his troubles to mister shimerda he was unable to meet a note which fell due on the first of november had to pay an exorbitant bonus on renewing it and to give a mortgage on his pigs and horses and even his milk cow"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0001.wav", "duration": 4.415, "text": "peter could give no very clear account of his transactions with cutter"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0002.wav", "duration": 6.995, "text": "she asked peter to wait a moment and when she came back from the kitchen she brought a bag of sandwiches and doughnuts for us"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0003.wav", "duration": 2.695, "text": "we lay still and did not talk"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0004.wav", "duration": 5.965, "text": "the little house on the hillside was so much the color of the night that we could not see it as we came up the draw"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0005.wav", "duration": 9.42, "text": "they made me think of defeated armies retreating or of ghosts who were trying desperately to get in for shelter and then went moaning on"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0006.wav", "duration": 2.795, "text": "i could not take my eyes off the man in the bed"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0007.wav", "duration": 3.1, "text": "the sharp smell of spirits went through the room"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0008.wav", "duration": 4.25, "text": "it seemed to me that he despised him for being so simple and docile"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0009.wav", "duration": 2.875, "text": "the sick man raged and shook his fist"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0010.wav", "duration": 2.91, "text": "he seemed to be cursing people who had wronged him"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0011.wav", "duration": 5.72, "text": "quickly it was covered with bright red spots i thought i had never seen any blood so bright"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0012.wav", "duration": 4.025, "text": "he lay patiently fighting for breath like a child with croup"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0013.wav", "duration": 4.98, "text": "antonia's father uncovered one of his long bony legs and rubbed it rhythmically"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0014.wav", "duration": 3.92, "text": "from our bench we could see what a hollow case his body was"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0015.wav", "duration": 2.785, "text": "gradually relief came to all of us"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0016.wav", "duration": 3.265, "text": "without a word peter got up and lit his lantern"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0017.wav", "duration": 16.08, "text": "mister shimerda went with him"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0018.wav", "duration": 5.59, "text": "after the ceremony at the church the party went to a dinner given by the parents of the bride"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0019.wav", "duration": 4.77, "text": "the first howls were taken up and echoed and with quickening repetitions"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0020.wav", "duration": 3.63, "text": "a black drove came up over the hill behind the wedding party"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0021.wav", "duration": 10.895, "text": "something happened to the hindmost sledge the driver lost control he was probably very drunk the horses left the road the sledge was caught in a clump of trees and overturned"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0022.wav", "duration": 3.415, "text": "the shrieks that followed made everybody sober"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0023.wav", "duration": 4.31, "text": "the road was clear and white and the groom's three blacks went like the wind"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0024.wav", "duration": 3.81, "text": "there are only three sledges left he whispered"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0025.wav", "duration": 5.525, "text": "and the wolves pavel asked enough enough for all of us"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0026.wav", "duration": 2.875, "text": "they were within a few miles of their village now"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0027.wav", "duration": 2.875, "text": "yes how many"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0028.wav", "duration": 2.705, "text": "twenty thirty enough"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0029.wav", "duration": 3.73, "text": "now his middle horse was being almost dragged by the other two"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0030.wav", "duration": 3.85, "text": "pavel knocked him over the side of the sledge and threw the girl after him"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0031.wav", "duration": 3.55, "text": "peter crouching in the front seat saw nothing"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0032.wav", "duration": 13.86, "text": "the first thing either of them noticed was a new sound that broke into the clear air louder than they had ever heard it before the bell of the monastery of their own village ringing for early prayers"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0033.wav", "duration": 15.56, "text": "they were run out of their village"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0034.wav", "duration": 2.805, "text": "wherever they went the story followed them"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0035.wav", "duration": 5.445, "text": "they worked in chicago des moines fort wayne but they were always unfortunate"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0036.wav", "duration": 4.48, "text": "during the auction he went about with his head down and never lifted his eyes"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0037.wav", "duration": 4.835, "text": "every one said peter kissed the cow before she was led away by her new owner"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0038.wav", "duration": 4.715, "text": "the loss of his two friends had a depressing effect upon old mister shimerda"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0039.wav", "duration": 5.35, "text": "when he was out hunting he used to go into the empty log house and sit there brooding"}
{"key": "LibriSpeech/dev-clean/2035\\147961\\2035-147961-0040.wav", "duration": 4.94, "text": "this cabin was his hermitage until the winter snows penned him in his cave"}
{"key": "LibriSpeech/dev-clean/2035\\152373\\2035-152373-0000.wav", "duration": 7.875, "text": "throughout this century the power of the church was constantly on the increase and is visible in many important changes"}
{"key": "LibriSpeech/dev-clean/2035\\152373\\2035-152373-0001.wav", "duration": 16.67, "text": "the ancestors of the present pretender congal surnamed the squint eyed had twice received and cherished the licentious bards when under the ban of tara and his popularity with that still powerful order was one prop of his ambition"}
{"key": "LibriSpeech/dev-clean/2035\\152373\\2035-152373-0002.wav", "duration": 9.34, "text": "it is pretty clear also that the last rally of druidism against christianity took place behind his banner on the plain of moira"}
{"key": "LibriSpeech/dev-clean/2035\\152373\\2035-152373-0003.wav", "duration": 6.415, "text": "the poets of succeeding ages have dwelt much in detail on the occurrences of this memorable day"}
{"key": "LibriSpeech/dev-clean/2035\\152373\\2035-152373-0004.wav", "duration": 7.34, "text": "like the two kings of sparta they reigned jointly dividing between them the labours and cares of state"}
{"key": "LibriSpeech/dev-clean/2035\\152373\\2035-152373-0005.wav", "duration": 24.03, "text": "it was the season when the ancient sun god had been accustomed to receive his annual oblations and we can well believe that those whose hearts still trembled at the name of bel must have connected the eclipse and the plague with the revolution in the national worship and the overthrow of the ancient gods on that plain of prostration where they had so long received the homage of an entire people"}
{"key": "LibriSpeech/dev-clean/2035\\152373\\2035-152373-0006.wav", "duration": 7.71, "text": "lastly the royal brothers fell themselves victims to the epidemic which so sadly signalizes their reign"}
{"key": "LibriSpeech/dev-clean/2035\\152373\\2035-152373-0007.wav", "duration": 12.94, "text": "the only conflicts that occurred on irish soil with a pictish or an anglo saxon force if we except those who formed a contingent of congal's army at moira occurred in the time of the hospitable finnacta"}
{"key": "LibriSpeech/dev-clean/2035\\152373\\2035-152373-0008.wav", "duration": 6.665, "text": "as leading to the mention of other interesting events we must set this inroad clearly before the reader"}
{"key": "LibriSpeech/dev-clean/2035\\152373\\2035-152373-0009.wav", "duration": 17.32, "text": "the saxons of kent and the southern kingdoms generally were converted by missionaries from france or rome or native preachers of the first or second christian generation those of northumbria recognise as their apostles saint aidan and saint cuthbert two fathers from iona"}
{"key": "LibriSpeech/dev-clean/2035\\152373\\2035-152373-0010.wav", "duration": 7.6, "text": "the kingdom of northumbria as the name implies embraced nearly all the country from the humber to the pictish border"}
{"key": "LibriSpeech/dev-clean/2035\\152373\\2035-152373-0011.wav", "duration": 10.465, "text": "the barren rock about three miles in length was covered with monastic buildings and its cemetery was already adorned with the tombs of saints and kings"}
{"key": "LibriSpeech/dev-clean/2035\\152373\\2035-152373-0012.wav", "duration": 10.23, "text": "now every missionary that ever went out from iona had taught that to reduce christians to slavery was wholly inconsistent with a belief in the doctrines of the gospel"}
{"key": "LibriSpeech/dev-clean/2035\\152373\\2035-152373-0013.wav", "duration": 20.47, "text": "while the liberated exiles rejoiced on the plain of meath the tent of the abbot of iona was pitched on the rath of tara a fact which would seem to indicate that already in little more than a century since the interdict had fallen on it the edifices which made so fine a show in the days of patrick were ruined and uninhabitable"}
{"key": "LibriSpeech/dev-clean/2035\\152373\\2035-152373-0014.wav", "duration": 7.35, "text": "so slow and patient is the process by which christianity infuses itself into the social life of a converted people"}
{"key": "LibriSpeech/dev-clean/2035\\152373\\2035-152373-0015.wav", "duration": 8.51, "text": "here the holy prelate of ferns met him and related a vision in which he had been instructed to demand the abolition of the impost"}
{"key": "LibriSpeech/dev-clean/2035\\152373\\2035-152373-0016.wav", "duration": 6.59, "text": "the tribute was at this period enormous fifteen thousand head of cattle annually"}
{"key": "LibriSpeech/dev-clean/2035\\152373\\2035-152373-0017.wav", "duration": 7.855, "text": "saint moling survived him three years and saint adamnan so intimately connected with his reign ten years"}
{"key": "LibriSpeech/dev-clean/2035\\152373\\2035-152373-0018.wav", "duration": 6.015, "text": "nothing could be more natural than such an assembly in such a place at such a period"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0000.wav", "duration": 19.755, "text": "kirkleatham yeast"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0001.wav", "duration": 19.215, "text": "seventeen seventeen"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0002.wav", "duration": 2.915, "text": "to make good home made bread"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0003.wav", "duration": 18.675, "text": "seventeen eighteen"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0004.wav", "duration": 23.175, "text": "mode put the flour into a large earthenware bowl or deep pan then with a strong metal or wooden spoon hollow out the middle but do not clear it entirely away from the bottom of the pan as in that case the sponge or leaven as it was formerly termed would stick to it which it ought not to do"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0005.wav", "duration": 31.375, "text": "next take either a large tablespoonful of brewer's yeast which has been rendered solid by mixing it with plenty of cold water and letting it afterwards stand to settle for a day and night or nearly an ounce of german yeast put it into a large basin and proceed to mix it so that it shall be as smooth as cream with three quarters pint of warm milk and water or with water only though even a very little milk will much improve the bread"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0006.wav", "duration": 14.645, "text": "look at it from time to time when it has been laid for nearly an hour and when the yeast has risen and broken through the flour so that bubbles appear in it you will know that it is ready to be made up into dough"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0007.wav", "duration": 20.74, "text": "then place the pan on a strong chair or dresser or table of convenient height pour into the sponge the remainder of the warm milk and water stir into it as much of the flour as you can with the spoon then wipe it out clean with your fingers and lay it aside"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0008.wav", "duration": 19.38, "text": "turn it then on to a paste board or very clean dresser and with a large sharp knife divide it in two make it up quickly into loaves and dispatch it to the oven make one or two incisions across the tops of the loaves as they will rise more easily if this be done"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0009.wav", "duration": 3.435, "text": "illustration italian millet"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0010.wav", "duration": 14.41, "text": "italian millet or great indian millet is cultivated in egypt and nubia where it is called dhourra and is used as human food as well as for the fermentation of beer"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0011.wav", "duration": 4.53, "text": "it will grow on poor soils and is extremely productive"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0012.wav", "duration": 13.24, "text": "it has been introduced into italy where they make a coarse bread from it and it is also employed in pastry and puddings they also use it for feeding horses and domestic fowls"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0013.wav", "duration": 9.855, "text": "a yellow variety called golden millet is sold in the grocers shops for making puddings and is very delicate and wholesome"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0014.wav", "duration": 8.2, "text": "another advantage the red wheats possess is their comparative immunity from the attacks of mildew and fly"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0015.wav", "duration": 9.84, "text": "mode boil the rice in water until it is quite tender pour off the water and put the rice before it is cold to the flour"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0016.wav", "duration": 3.53, "text": "illustration maize plant"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0017.wav", "duration": 6.485, "text": "maize next to wheat and rice maize is the grain most used in the nourishment of man"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0018.wav", "duration": 5.33, "text": "if carried any distance it should be stored away in air tight vessels"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0019.wav", "duration": 9.405, "text": "some of the preparations of maize flour are very good and when partaken in moderation suitable food for almost everybody"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0020.wav", "duration": 9.42, "text": "mode let the tartaric acid and salt be reduced to the finest possible powder then mix them well with the flour"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0021.wav", "duration": 6.14, "text": "sour milk or buttermilk may be used but then a little less acid will be needed"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0022.wav", "duration": 20.7, "text": "excellent rolls"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0023.wav", "duration": 12.25, "text": "hot rolls"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0024.wav", "duration": 19.89, "text": "seventeen twenty four"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0025.wav", "duration": 29.06, "text": "when they are quite hot divide them lengthwise into three put some thin flakes of good butter between the slices press the rolls together and put them in the oven for a minute or two but not longer or the butter would oil take them out of the oven spread the butter equally over divide the rolls in half and put them on to a very hot clean dish and send them instantly to table"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0026.wav", "duration": 2.475, "text": "to make dry toast"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0027.wav", "duration": 8.73, "text": "never use new bread for making any kind of toast as it eats heavy and besides is very extravagant"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0028.wav", "duration": 11.425, "text": "move it backwards and forwards until the bread is nicely coloured then turn it and toast the other side and do not place it so near the fire that it blackens"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0029.wav", "duration": 4.87, "text": "to make hot buttered toast seventeen twenty six"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0030.wav", "duration": 12.04, "text": "a loaf of household bread about two days old answers for making toast better than cottage bread the latter not being a good shape and too crusty for the purpose"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0031.wav", "duration": 16.74, "text": "cut as many nice even slices as may be required rather more than one quarter inch in thickness and toast them before a very bright fire without allowing the bread to blacken which spoils the appearance and flavour of all toast"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0032.wav", "duration": 12.94, "text": "soyer recommends that each slice should be cut into pieces as soon as it is buttered and when all are ready that they should be piled lightly on the dish they are intended to be served on"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0033.wav", "duration": 11.385, "text": "he says that by cutting through four or five slices at a time all the butter is squeezed out of the upper ones while the bottom one is swimming in fat liquid"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0034.wav", "duration": 9.755, "text": "muffins and crumpets should always be served on separate dishes and both toasted and served as expeditiously as possible"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0035.wav", "duration": 4.22, "text": "sufficient allow two crumpets to each person"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0036.wav", "duration": 3.72, "text": "plain buns seventeen twenty nine"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0037.wav", "duration": 15.87, "text": "mode put the flour into a basin mix the sugar well with it make a hole in the centre and stir in the yeast and milk which should be lukewarm with enough of the flour to make it the thickness of cream"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0038.wav", "duration": 4.52, "text": "from fifteen to twenty minutes will be required to bake them nicely"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0039.wav", "duration": 20.95, "text": "these buns may be varied by adding a few currants candied peel or caraway seeds to the other ingredients and the above mixture answers for hot cross buns by putting in a little ground allspice and by pressing a tin mould in the form of a cross in the centre of the bun"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0040.wav", "duration": 7.015, "text": "sufficient to make twelve buns seasonable at any time light buns"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0041.wav", "duration": 2.66, "text": "illustration buns"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0042.wav", "duration": 4.23, "text": "victoria buns seventeen thirty two"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0043.wav", "duration": 21.0049375, "text": "mode whisk the egg stir in the sugar and beat these ingredients well together beat the butter to a cream stir in the ground rice currants and candied peel and as much flour as will make it of such a consistency that it may be rolled into seven or eight balls"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0044.wav", "duration": 2.325, "text": "italian rusks"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0045.wav", "duration": 7.135, "text": "they should be kept in a closed tin canister in a dry place to preserve their crispness"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0046.wav", "duration": 5.355, "text": "it is not cultivated in england being principally confined to the east"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0047.wav", "duration": 11.46, "text": "when we take into account that the arabians are fond of lizards and locusts as articles of food their cuisine altogether is scarcely a tempting one"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0048.wav", "duration": 19.8, "text": "seventeen thirty four"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0049.wav", "duration": 2.87, "text": "illustration rusks"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0050.wav", "duration": 7.725, "text": "mode put the milk and butter into a saucepan and keep shaking it round until the latter is melted"}
{"key": "LibriSpeech/dev-clean/2078\\142845\\2078-142845-0051.wav", "duration": 10.36, "text": "when cold they should be put into tin canisters to keep them dry and if intended for the cheese course the sifted sugar should be omitted"}
{"key": "LibriSpeech/dev-clean/2086\\149214\\2086-149214-0000.wav", "duration": 9.81, "text": "the narrative it may be is woven of so humble a texture as to require this advantage and at the same time to render it the more difficult of attainment"}
{"key": "LibriSpeech/dev-clean/2086\\149214\\2086-149214-0001.wav", "duration": 6.97, "text": "in good faith however he is not sufficiently imaginative to flatter himself with the slightest hope of this kind"}
{"key": "LibriSpeech/dev-clean/2086\\149214\\2086-149214-0002.wav", "duration": 16.745, "text": "the author has considered it hardly worth his while therefore relentlessly to impale the story with its moral as with an iron rod or rather as by sticking a pin through a butterfly thus at once depriving it of life and causing it to stiffen in an ungainly and unnatural attitude"}
{"key": "LibriSpeech/dev-clean/2086\\149214\\2086-149214-0003.wav", "duration": 8.9949375, "text": "if permitted by the historical connection which though slight was essential to his plan the author would very willingly have avoided anything of this nature"}
{"key": "LibriSpeech/dev-clean/2086\\149214\\2086-149214-0004.wav", "duration": 15.22, "text": "he trusts not to be considered as unpardonably offending by laying out a street that infringes upon nobody's private rights and appropriating a lot of land which had no visible owner and building a house of materials long in use for constructing castles in the air"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0000.wav", "duration": 12.095, "text": "the enclosure had formerly been very extensive but was now contracted within small compass and hemmed about partly by high wooden fences and partly by the outbuildings of houses that stood on another street"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0001.wav", "duration": 19.78, "text": "the white double rosebush had evidently been propped up anew against the house since the commencement of the season and a pear tree and three damson trees which except a row of currant bushes constituted the only varieties of fruit bore marks of the recent amputation of several superfluous or defective limbs"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0002.wav", "duration": 16.01, "text": "there were also a few species of antique and hereditary flowers in no very flourishing condition but scrupulously weeded as if some person either out of love or curiosity had been anxious to bring them to such perfection as they were capable of attaining"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0003.wav", "duration": 22.81, "text": "summer squashes almost in their golden blossom cucumbers now evincing a tendency to spread away from the main stock and ramble far and wide two or three rows of string beans and as many more that were about to festoon themselves on poles tomatoes occupying a site so sheltered and sunny that the plants were already gigantic and promised an early and abundant harvest"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0004.wav", "duration": 7.22, "text": "phoebe wondered whose care and toil it could have been that had planted these vegetables and kept the soil so clean and orderly"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0005.wav", "duration": 9.09, "text": "bees too strange to say had thought it worth their while to come hither possibly from the range of hives beside some farm house miles away"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0006.wav", "duration": 10.35, "text": "this was a fountain set round with a rim of old mossy stones and paved in its bed with what appeared to be a sort of mosaic work of variously colored pebbles"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0007.wav", "duration": 5.24, "text": "it now contained only chanticleer his two wives and a solitary chicken"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0008.wav", "duration": 8.89, "text": "it was evident that the race had degenerated like many a noble race besides in consequence of too strict a watchfulness to keep it pure"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0009.wav", "duration": 10.6, "text": "these feathered people had existed too long in their distinct variety a fact of which the present representatives judging by their lugubrious deportment seemed to be aware"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0010.wav", "duration": 13.95, "text": "they kept themselves alive unquestionably and laid now and then an egg and hatched a chicken not for any pleasure of their own but that the world might not absolutely lose what had once been so admirable a breed of fowls"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0011.wav", "duration": 19.43, "text": "the distinguishing mark of the hens was a crest of lamentably scanty growth in these latter days but so oddly and wickedly analogous to hepzibah's turban that phoebe to the poignant distress of her conscience but inevitably was led to fancy a general resemblance betwixt these forlorn bipeds and her respectable relative"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0012.wav", "duration": 14.995, "text": "the chicken crept through the pales of the coop and ran with some show of liveliness to her feet while chanticleer and the ladies of his household regarded her with queer sidelong glances and then croaked one to another as if communicating their sage opinions of her character"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0013.wav", "duration": 17.57, "text": "so wise as well as antique was their aspect as to give color to the idea not merely that they were the descendants of a time honored race but that they had existed in their individual capacity ever since the house of the seven gables was founded and were somehow mixed up with its destiny"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0014.wav", "duration": 9.58, "text": "he held a hoe in his hand and while phoebe was gone in quest of the crumbs had begun to busy himself with drawing up fresh earth about the roots of the tomatoes"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0015.wav", "duration": 8.19, "text": "they have known me much longer but never honor me with any familiarity though hardly a day passes without my bringing them food"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0016.wav", "duration": 7.52, "text": "miss hepzibah i suppose will interweave the fact with her other traditions and set it down that the fowls know you to be a pyncheon"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0017.wav", "duration": 8.7, "text": "ah but these hens answered the young man these hens of aristocratic lineage would scorn to understand the vulgar language of a barn yard fowl"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0018.wav", "duration": 6.83, "text": "i prefer to think and so would miss hepzibah that they recognize the family tone for you are a pyncheon"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0019.wav", "duration": 13.18, "text": "my name is phoebe pyncheon said the girl with a manner of some reserve for she was aware that her new acquaintance could be no other than the daguerreotypist of whose lawless propensities the old maid had given her a disagreeable idea"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0020.wav", "duration": 2.93, "text": "i turn up the earth by way of pastime"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0021.wav", "duration": 3.335, "text": "it is like a bandage over one's eyes to come into it"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0022.wav", "duration": 9.265, "text": "if you would permit me said the artist looking at phoebe i should like to try whether the daguerreotype can bring out disagreeable traits on a perfectly amiable face"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0023.wav", "duration": 7.365, "text": "most of my likenesses do look unamiable but the very sufficient reason i fancy is because the originals are so"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0024.wav", "duration": 3.805, "text": "there is a wonderful insight in heaven's broad and simple sunshine"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0025.wav", "duration": 10.255, "text": "while we give it credit only for depicting the merest surface it actually brings out the secret character with a truth that no painter would ever venture upon even could he detect it"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0026.wav", "duration": 4.81, "text": "yet the original wears to common eyes a very different expression"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0027.wav", "duration": 4.245, "text": "he exhibited a daguerreotype miniature in a morocco case"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0028.wav", "duration": 2.855, "text": "phoebe merely glanced at it and gave it back"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0029.wav", "duration": 5.58, "text": "i can assure you that this is a modern face and one which you will very probably meet"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0030.wav", "duration": 8.1, "text": "the sun as you see tells quite another story and will not be coaxed out of it after half a dozen patient attempts on my part"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0031.wav", "duration": 8.58, "text": "here we have the man sly subtle hard imperious and withal cold as ice look at that eye"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0032.wav", "duration": 3.76, "text": "and yet if you could only see the benign smile of the original"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0033.wav", "duration": 7.435, "text": "well i don't wish to see it any more observed phoebe turning away her eyes it is certainly very like the old portrait"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0034.wav", "duration": 5.91, "text": "if the original is still in the world i think he might defy the sun to make him look stern and hard"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0035.wav", "duration": 10.5499375, "text": "is there nothing wild in the eye continued holgrave so earnestly that it embarrassed phoebe as did also the quiet freedom with which he presumed on their so recent acquaintance"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0036.wav", "duration": 6.32, "text": "it is nonsense said phoebe a little impatiently for us to talk about a picture which you have never seen"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0037.wav", "duration": 4.835, "text": "since you are a friend of my cousin hepzibah's you should ask her to show you the picture"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0038.wav", "duration": 4.35, "text": "so we will be fellow laborers somewhat on the community system"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0039.wav", "duration": 2.48, "text": "she did not altogether like him"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0040.wav", "duration": 6.7, "text": "oh rejoined the daguerreotypist because like an old lady's cup of tea it is water bewitched"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0041.wav", "duration": 14.805, "text": "she was indistinctly aware however that the gaunt figure of the old gentlewoman was sitting in one of the straight backed chairs a little withdrawn from the window the faint gleam of which showed the blanched paleness of her cheek turned sideways towards a corner"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0042.wav", "duration": 2.84, "text": "but put it on the table in the corner of the passage"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0043.wav", "duration": 2.77, "text": "what an instrument is the human voice"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0044.wav", "duration": 3.95, "text": "how wonderfully responsive to every emotion of the human soul"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0045.wav", "duration": 4.545, "text": "fewer words than before but with the same mysterious music in them"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0046.wav", "duration": 3.415, "text": "pray go to bed for i am sure you must need rest"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0047.wav", "duration": 3.92, "text": "i will sit in the parlor awhile and collect my thoughts"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0048.wav", "duration": 11.31, "text": "while thus dismissing her the maiden lady stept forward kissed phoebe and pressed her to her heart which beat against the girl's bosom with a strong high and tumultuous swell"}
{"key": "LibriSpeech/dev-clean/2086\\149220\\2086-149220-0049.wav", "duration": 11.605, "text": "at some uncertain period in the depths of night and as it were through the thin veil of a dream she was conscious of a footstep mounting the stairs heavily but not with force and decision"}
{"key": "LibriSpeech/dev-clean/2277\\149874\\2277-149874-0000.wav", "duration": 15.505, "text": "minnie's flat as the one floor resident apartments were then being called was in a part of west van buren street inhabited by families of labourers and clerks men who had come and were still coming with the rush of population pouring in at the rate of fifty thousand a year"}
{"key": "LibriSpeech/dev-clean/2277\\149874\\2277-149874-0001.wav", "duration": 7.04, "text": "to carrie the sound of the little bells upon the horse cars as they tinkled in and out of hearing was as pleasing as it was novel"}
{"key": "LibriSpeech/dev-clean/2277\\149874\\2277-149874-0002.wav", "duration": 5.095, "text": "to him the presence or absence of his wife's sister was a matter of indifference"}
{"key": "LibriSpeech/dev-clean/2277\\149874\\2277-149874-0003.wav", "duration": 7.7, "text": "he was of a clean saving disposition and had already paid a number of monthly instalments on two lots far out on the west side"}
{"key": "LibriSpeech/dev-clean/2277\\149874\\2277-149874-0004.wav", "duration": 3.215, "text": "his ambition was some day to build a house on them"}
{"key": "LibriSpeech/dev-clean/2277\\149874\\2277-149874-0005.wav", "duration": 6.37, "text": "she had some slight gift of observation and that sense so rich in every woman intuition"}
{"key": "LibriSpeech/dev-clean/2277\\149874\\2277-149874-0006.wav", "duration": 2.745, "text": "the walls of the rooms were discordantly papered"}
{"key": "LibriSpeech/dev-clean/2277\\149874\\2277-149874-0007.wav", "duration": 4.4, "text": "the floors were covered with matting and the hall laid with a thin rag carpet"}
{"key": "LibriSpeech/dev-clean/2277\\149874\\2277-149874-0008.wav", "duration": 5.385, "text": "then she walked and sang to it until hanson disturbed in his reading came and took it"}
{"key": "LibriSpeech/dev-clean/2277\\149874\\2277-149874-0009.wav", "duration": 3.35, "text": "one could see that he was very much wrapped up in his offspring"}
{"key": "LibriSpeech/dev-clean/2277\\149874\\2277-149874-0010.wav", "duration": 7.42, "text": "now now he said walking there there and there was a certain swedish accent noticeable in his voice"}
{"key": "LibriSpeech/dev-clean/2277\\149874\\2277-149874-0011.wav", "duration": 2.465, "text": "he seemed to be thinking of something else"}
{"key": "LibriSpeech/dev-clean/2277\\149874\\2277-149874-0012.wav", "duration": 5.08, "text": "minnie began to explain but her husband took this part of the conversation to himself"}
{"key": "LibriSpeech/dev-clean/2277\\149874\\2277-149874-0013.wav", "duration": 3.16, "text": "you could get home easy too it isn't very far"}
{"key": "LibriSpeech/dev-clean/2277\\149874\\2277-149874-0014.wav", "duration": 8.6, "text": "she asked minnie for ink and paper which were upon the mantel in the dining room and when the latter had gone to bed at ten got out drouet's card and wrote him"}
{"key": "LibriSpeech/dev-clean/2277\\149874\\2277-149874-0015.wav", "duration": 4.73, "text": "she wanted to make some reference to their relations upon the train but was too timid"}
{"key": "LibriSpeech/dev-clean/2277\\149874\\2277-149874-0016.wav", "duration": 5.325, "text": "anything was good enough so long as it paid say five dollars a week to begin with"}
{"key": "LibriSpeech/dev-clean/2277\\149874\\2277-149874-0017.wav", "duration": 3.36, "text": "a shop girl was the destiny prefigured for the newcomer"}
{"key": "LibriSpeech/dev-clean/2277\\149874\\2277-149874-0018.wav", "duration": 5.02, "text": "it was under such auspicious circumstances that she started out this morning to look for work"}
{"key": "LibriSpeech/dev-clean/2277\\149874\\2277-149874-0019.wav", "duration": 8.45, "text": "narrow board walks extended out passing here a house and there a store at far intervals eventually ending on the open prairie"}
{"key": "LibriSpeech/dev-clean/2277\\149874\\2277-149874-0020.wav", "duration": 7.38, "text": "it gave an imposing appearance to most of the wholesale houses whose offices were upon the ground floor and in plain view of the street"}
{"key": "LibriSpeech/dev-clean/2277\\149874\\2277-149874-0021.wav", "duration": 2.985, "text": "these vast buildings what were they"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0000.wav", "duration": 6.59, "text": "he was in a fevered state of mind owing to the blight his wife's action threatened to cast upon his entire future"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0001.wav", "duration": 7.145, "text": "he would have to pay her the money which she would now regularly demand or there would be trouble it did not matter what he did"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0002.wav", "duration": 4.835, "text": "hurstwood walked the floor mentally arranging the chief points of his situation"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0003.wav", "duration": 2.84, "text": "he also thought of his managerial position"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0004.wav", "duration": 15.64, "text": "how would the papers talk about it"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0005.wav", "duration": 5.6, "text": "many little wrinkles gathered between his eyes as he contemplated this and his brow moistened"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0006.wav", "duration": 4.97, "text": "he could arrange that satisfactorily for carrie would be glad to wait if necessary"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0007.wav", "duration": 5.375, "text": "he would see how things turned out to morrow and then he would talk to her they were going to meet as usual"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0008.wav", "duration": 6.94, "text": "for some reason he felt as if something might come that way and was relieved when all the envelopes had been scanned and nothing suspicious noticed"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0009.wav", "duration": 5.815, "text": "while the danger had not lessened it had not as yet materialised and with him no news was good news"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0010.wav", "duration": 5.275, "text": "so little did he consider drouet that it never once occurred to him to worry about his finding out"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0011.wav", "duration": 4.465, "text": "he grew restless as he ruminated and then decided that perhaps it was nothing"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0012.wav", "duration": 2.495, "text": "she had not been able to get away this morning"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0013.wav", "duration": 6.09, "text": "he would get one to day it would probably be on his desk when he got back he would look for it at once"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0014.wav", "duration": 4.07, "text": "after a time he gave up waiting and drearily headed for the madison car"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0015.wav", "duration": 3.675, "text": "he went in and examined his letters but there was nothing from carrie"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0016.wav", "duration": 2.785, "text": "fortunately there was nothing from his wife either"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0017.wav", "duration": 4.985, "text": "at one thirty he went to rector's for lunch and when he returned a messenger was waiting for him"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0018.wav", "duration": 4.545, "text": "his first impulse was to write but four words in reply go to the devil"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0019.wav", "duration": 3.56, "text": "but he compromised by telling the boy that there would be no reply"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0020.wav", "duration": 5.285, "text": "then he sat down in his chair and gazed without seeing contemplating the result of his work"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0021.wav", "duration": 3.37, "text": "what would she do about that the confounded wretch"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0022.wav", "duration": 3.38, "text": "later however his old discretion asserted itself"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0023.wav", "duration": 3.89, "text": "something had to be done a climax was near and she would not sit idle"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0024.wav", "duration": 4.5, "text": "he knew her well enough to know that when she had decided upon a plan she would follow it up"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0025.wav", "duration": 3.4, "text": "he arose from his chair and went and looked out into the street"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0026.wav", "duration": 4.92, "text": "the long drizzle had begun pedestrians had turned up collars and trousers at the bottom"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0027.wav", "duration": 3.595, "text": "hurstwood almost exclaimed out loud at the insistency of this thing"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0028.wav", "duration": 2.9, "text": "he put on his hat and looked around for his umbrella"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0029.wav", "duration": 2.6, "text": "he would have some arrangement of this thing"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0030.wav", "duration": 6.3, "text": "he began to wish that he had compromised in some way or other that he had sent the money perhaps he could do it up here"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0031.wav", "duration": 3.61, "text": "he would go in and see anyhow he would have no row"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0032.wav", "duration": 10.77, "text": "by the time he reached his own street he was keenly alive to the difficulties of his situation and wished over and over that some solution would offer itself that he could see his way out"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0033.wav", "duration": 2.845, "text": "then he rang the bell no answer"}
{"key": "LibriSpeech/dev-clean/2277\\149896\\2277-149896-0034.wav", "duration": 4.005, "text": "he rang again this time harder still no answer"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0000.wav", "duration": 4.395, "text": "when hurstwood got back to his office again he was in a greater quandary than ever"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0001.wav", "duration": 2.755, "text": "he could hardly realise how it had all come about"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0002.wav", "duration": 6.54, "text": "no letter had come no word of any kind and yet here it was late in the evening and she had agreed to meet him that morning"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0003.wav", "duration": 4.84, "text": "he saw that in the excitement of recent events he had not formulated a plan upon that score"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0004.wav", "duration": 5.735, "text": "he was getting some vague comfort out of a good cigar but it was no panacea for the ill which affected him"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0005.wav", "duration": 11.465, "text": "it was with great opposition after two or three hours of the most urgent mental affirmation and denial that at last he got an envelope placed in it the requested amount and slowly sealed it up"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0006.wav", "duration": 3.385, "text": "then he called harry the boy of all work around the place"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0007.wav", "duration": 7.855, "text": "you take this to this address he said handing him the envelope and give it to missus hurstwood yes sir said the boy"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0008.wav", "duration": 2.88, "text": "any answer i guess not"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0009.wav", "duration": 3.725, "text": "the boy hastened away and the manager fell to his musings"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0010.wav", "duration": 3.625, "text": "he was beaten for to night and he might just as well make the best of it"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0011.wav", "duration": 3.3, "text": "she would take the envelope and know that she had triumphed"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0012.wav", "duration": 3.09, "text": "if he only had that letter back he wouldn't send it"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0013.wav", "duration": 4.415, "text": "for relief he arose and joined in conversation with a few friends who were drinking"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0014.wav", "duration": 4.62, "text": "all the time his thoughts would run out to his home and see the scene being therein enacted"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0015.wav", "duration": 3.04, "text": "in about an hour and three quarters the boy returned"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0016.wav", "duration": 6.5400625, "text": "he fancied as he sat at his desk that nothing would be done for a week or two meanwhile he would have time to think"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0017.wav", "duration": 7.3, "text": "how about that now his pain at her failure to meet or write him rapidly increased as he devoted himself to this subject"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0018.wav", "duration": 6.745, "text": "he decided to write her care of the west side post office and ask for an explanation as well as to have her meet him"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0019.wav", "duration": 4.85, "text": "three o'clock came four five six and no letter"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0020.wav", "duration": 4.62, "text": "the helpless manager paced the floor and grimly endured the gloom of defeat"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0021.wav", "duration": 4.685, "text": "he saw a busy saturday ushered out the sabbath in and nothing done"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0022.wav", "duration": 10.05, "text": "all day the bar being closed he brooded alone shut out from home from the excitement of his resort from carrie and without the ability to alter his condition one iota"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0023.wav", "duration": 3.31, "text": "it was the worst sunday he had spent in his life"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0024.wav", "duration": 2.935, "text": "it seemed as if his family troubles were just beginning"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0025.wav", "duration": 4.285, "text": "he was quite certain now that she knew he was married and was angered at his perfidy"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0026.wav", "duration": 6.815, "text": "he had loved her earnestly enough but now that the possibility of losing her stared him in the face she seemed much more attractive"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0027.wav", "duration": 3.515, "text": "he would go to her and tell her all his family complications"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0028.wav", "duration": 3.625, "text": "he would explain to her just where he stood and how much he needed her"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0029.wav", "duration": 7.645, "text": "he did manage to bring himself into the mood to go out to carrie but when he got in ogden place he thought he saw a man watching him and went away"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0030.wav", "duration": 2.55, "text": "he did not go within a block of the house"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0031.wav", "duration": 4.405, "text": "he troubled over many little details and talked perfunctorily to everybody"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0032.wav", "duration": 8.69, "text": "he stayed at his desk long after all others had gone and only quitted it when the night watchman on his round pulled at the front door to see if it was safely locked"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0033.wav", "duration": 5.065, "text": "on wednesday he received another polite note from mc gregor james and hay it read"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0034.wav", "duration": 12.16, "text": "dear sir we beg to inform you that we are instructed to wait until to morrow thursday at one o'clock before filing suit against you on behalf of missus julia hurstwood for divorce and alimony"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0035.wav", "duration": 3.45, "text": "very truly yours et cetera compromise"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0036.wav", "duration": 4.42, "text": "so here it was spread out clear before him and now he knew what to expect"}
{"key": "LibriSpeech/dev-clean/2277\\149897\\2277-149897-0037.wav", "duration": 3.01, "text": "if he didn't go and see them they would sue him promptly"}
{"key": "LibriSpeech/dev-clean/2412\\153947\\2412-153947-0000.wav", "duration": 2.55, "text": "preface to second edition"}
{"key": "LibriSpeech/dev-clean/2412\\153947\\2412-153947-0001.wav", "duration": 3.225, "text": "this is a mistake though a perfectly natural one"}
{"key": "LibriSpeech/dev-clean/2412\\153947\\2412-153947-0002.wav", "duration": 6.595, "text": "on my return i purposely avoided looking into it until i had sent back my last revises to the printer"}
{"key": "LibriSpeech/dev-clean/2412\\153947\\2412-153947-0003.wav", "duration": 9.515, "text": "then i had much pleasure in reading it but was indeed surprised at the many little points of similarity between the two books in spite of their entire independence to one another"}
{"key": "LibriSpeech/dev-clean/2412\\153947\\2412-153947-0004.wav", "duration": 8.72, "text": "i regret that reviewers have in some cases been inclined to treat the chapters on machines as an attempt to reduce mister darwin's theory to an absurdity"}
{"key": "LibriSpeech/dev-clean/2412\\153947\\2412-153947-0005.wav", "duration": 13.68, "text": "i am surprised however that the book at which such an example of the specious misuse of analogy would seem most naturally levelled should have occurred to no reviewer neither shall i mention the name of the book here though i should fancy that the hint given will suffice"}
{"key": "LibriSpeech/dev-clean/2412\\153947\\2412-153947-0006.wav", "duration": 11.68, "text": "but this had an effect of which i have little reason to complain for i was allowed almost to call them life long self deceivers to their faces and they said it was quite true but that it did not matter"}
{"key": "LibriSpeech/dev-clean/2412\\153947\\2412-153947-0007.wav", "duration": 8.735, "text": "i must not conclude without expressing my most sincere thanks to my critics and to the public for the leniency and consideration with which they have treated my adventures"}
{"key": "LibriSpeech/dev-clean/2412\\153947\\2412-153947-0008.wav", "duration": 10.84, "text": "it was written in the upper rangitata district of the canterbury province as it then was of new zealand and appeared at christchurch in the press newspaper june thirteenth eighteen sixty three"}
{"key": "LibriSpeech/dev-clean/2412\\153947\\2412-153947-0009.wav", "duration": 8.72, "text": "i also wrote about this time the substance of what ultimately became the musical banks and the trial of a man for being in a consumption"}
{"key": "LibriSpeech/dev-clean/2412\\153947\\2412-153947-0010.wav", "duration": 17.1950625, "text": "i see from my second preface that i took the book to messrs chapman and hall may first eighteen seventy one and on their rejection of it under the advice of one who has attained the highest rank among living writers i let it sleep till i took it to mister trubner early in eighteen seventy two"}
{"key": "LibriSpeech/dev-clean/2412\\153947\\2412-153947-0011.wav", "duration": 10.13, "text": "i attribute its unlooked for success mainly to two early favourable reviews the first in the pall mall gazette of april twelfth and the second in the spectator of april twentieth"}
{"key": "LibriSpeech/dev-clean/2412\\153947\\2412-153947-0012.wav", "duration": 15.84, "text": "there was also another cause"}
{"key": "LibriSpeech/dev-clean/2412\\153947\\2412-153947-0013.wav", "duration": 8.42, "text": "the first edition of erewhon sold in about three weeks i had not taken moulds and as the demand was strong it was set up again immediately"}
{"key": "LibriSpeech/dev-clean/2412\\153947\\2412-153947-0014.wav", "duration": 12.795, "text": "i made a few further very trifling alterations before moulds were taken but since the summer of eighteen seventy two as new editions were from time to time wanted they have been printed from stereos then made"}
{"key": "LibriSpeech/dev-clean/2412\\153947\\2412-153947-0015.wav", "duration": 11.03, "text": "i am still fairly well satisfied with those parts of erewhon that were repeatedly rewritten but from those that had only a single writing i would gladly cut out some forty or fifty pages if i could"}
{"key": "LibriSpeech/dev-clean/2412\\153947\\2412-153947-0016.wav", "duration": 5.185, "text": "this however may not be for the copyright will probably expire in a little over twelve years"}
{"key": "LibriSpeech/dev-clean/2412\\153948\\2412-153948-0000.wav", "duration": 11.66, "text": "if the reader will excuse me i will say nothing of my antecedents nor of the circumstances which led me to leave my native country the narrative would be tedious to him and painful to myself"}
{"key": "LibriSpeech/dev-clean/2412\\153948\\2412-153948-0001.wav", "duration": 10.51, "text": "it will be seen that i did not succeed in my design and that however much i may have met with that was new and strange i have been unable to reap any pecuniary advantage"}
{"key": "LibriSpeech/dev-clean/2412\\153948\\2412-153948-0002.wav", "duration": 3.72, "text": "no one who is himself honest will doubt my being so"}
{"key": "LibriSpeech/dev-clean/2412\\153948\\2412-153948-0003.wav", "duration": 8.515, "text": "i reached my destination in one of the last months of eighteen sixty eight but i dare not mention the season lest the reader should gather in which hemisphere i was"}
{"key": "LibriSpeech/dev-clean/2412\\153948\\2412-153948-0004.wav", "duration": 22.68, "text": "sheep and cattle were introduced and bred with extreme rapidity men took up their fifty thousand or one hundred thousand acres of country going inland one behind the other till in a few years there was not an acre between the sea and the front ranges which was not taken up and stations either for sheep or cattle were spotted about at intervals of some twenty or thirty miles over the whole country"}
{"key": "LibriSpeech/dev-clean/2412\\153948\\2412-153948-0005.wav", "duration": 3.14, "text": "i was delighted with the country and the manner of life"}
{"key": "LibriSpeech/dev-clean/2412\\153948\\2412-153948-0006.wav", "duration": 16.615, "text": "i was to see the sheep not necessarily close at hand nor to get them in a single mob but to see enough of them here and there to feel easy that nothing had gone wrong this was no difficult matter for there were not above eight hundred of them and being all breeding ewes they were pretty quiet"}
{"key": "LibriSpeech/dev-clean/2412\\153948\\2412-153948-0007.wav", "duration": 9.37, "text": "there were a good many sheep which i knew as two or three black ewes and a black lamb or two and several others which had some distinguishing mark whereby i could tell them"}
{"key": "LibriSpeech/dev-clean/2412\\153948\\2412-153948-0008.wav", "duration": 5.815, "text": "it is surprising how soon the eye becomes accustomed to missing twenty sheep out of two or three hundred"}
{"key": "LibriSpeech/dev-clean/2412\\153948\\2412-153948-0009.wav", "duration": 5.995, "text": "it was a monotonous life but it was very healthy and one does not much mind anything when one is well"}
{"key": "LibriSpeech/dev-clean/2412\\153948\\2412-153948-0010.wav", "duration": 2.915, "text": "the country was the grandest that can be imagined"}
{"key": "LibriSpeech/dev-clean/2412\\153948\\2412-153948-0011.wav", "duration": 9.7450625, "text": "so lonely and so solemn with the sad grey clouds above and no sound save a lost lamb bleating upon the mountain side as though its little heart were breaking"}
{"key": "LibriSpeech/dev-clean/2412\\153948\\2412-153948-0012.wav", "duration": 6.17, "text": "each must cry louder and wander farther yet may luck be with them both that they may find their own at nightfall"}
{"key": "LibriSpeech/dev-clean/2412\\153948\\2412-153948-0013.wav", "duration": 8.54, "text": "i had no money but if i could only find workable country i might stock it with borrowed capital and consider myself a made man"}
{"key": "LibriSpeech/dev-clean/2412\\153948\\2412-153948-0014.wav", "duration": 9.705, "text": "there was no one in the whole world who had the smallest idea save those who were themselves on the other side of it if indeed there was any one at all could i hope to cross it"}
{"key": "LibriSpeech/dev-clean/2412\\153948\\2412-153948-0015.wav", "duration": 3.465, "text": "i would try the nearer range and see how far i could go"}
{"key": "LibriSpeech/dev-clean/2412\\153954\\2412-153954-0000.wav", "duration": 9.915, "text": "shortly after passing one of these chapels we came suddenly upon a village which started up out of the mist and i was alarmed lest i should be made an object of curiosity or dislike"}
{"key": "LibriSpeech/dev-clean/2412\\153954\\2412-153954-0001.wav", "duration": 9.75, "text": "my guides however were well known and the natural politeness of the people prevented them from putting me to any inconvenience but they could not help eyeing me nor i them"}
{"key": "LibriSpeech/dev-clean/2412\\153954\\2412-153954-0002.wav", "duration": 4.055, "text": "the streets were narrow and unpaved but very fairly clean"}
{"key": "LibriSpeech/dev-clean/2412\\153954\\2412-153954-0003.wav", "duration": 8.15, "text": "the vine grew outside many of the houses and there were some with sign boards on which was painted a bottle and a glass that made me feel much at home"}
{"key": "LibriSpeech/dev-clean/2412\\153954\\2412-153954-0004.wav", "duration": 10.41, "text": "even on this ledge of human society there was a stunted growth of shoplets which had taken root and vegetated somehow though as in an air mercantile of the bleakest"}
{"key": "LibriSpeech/dev-clean/2412\\153954\\2412-153954-0005.wav", "duration": 5.845, "text": "each feature was finished eyelids eyelashes and ears being almost invariably perfect"}
{"key": "LibriSpeech/dev-clean/2412\\153954\\2412-153954-0006.wav", "duration": 10.22, "text": "their expression was divine and as they glanced at me timidly but with parted lips in great bewilderment i forgot all thoughts of their conversion in feelings that were far more earthly"}
{"key": "LibriSpeech/dev-clean/2412\\153954\\2412-153954-0007.wav", "duration": 8.43, "text": "even in middle age they were still comely and the old grey haired women at their cottage doors had a dignity not to say majesty of their own"}
{"key": "LibriSpeech/dev-clean/2412\\153954\\2412-153954-0008.wav", "duration": 2.735, "text": "the men were as handsome as the women beautiful"}
{"key": "LibriSpeech/dev-clean/2412\\153954\\2412-153954-0009.wav", "duration": 10.42, "text": "i have always delighted in and reverenced beauty but i felt simply abashed in the presence of such a splendid type a compound of all that is best in egyptian greek and italian"}
{"key": "LibriSpeech/dev-clean/2412\\153954\\2412-153954-0010.wav", "duration": 7.94, "text": "the children were infinite in number and exceedingly merry i need hardly say that they came in for their full share of the prevailing beauty"}
{"key": "LibriSpeech/dev-clean/2412\\153954\\2412-153954-0011.wav", "duration": 5.935, "text": "i expressed by signs my admiration and pleasure to my guides and they were greatly pleased"}
{"key": "LibriSpeech/dev-clean/2412\\153954\\2412-153954-0012.wav", "duration": 8.12, "text": "the country was highly cultivated every ledge being planted with chestnuts walnuts and apple trees from which the apples were now gathering"}
{"key": "LibriSpeech/dev-clean/2412\\153954\\2412-153954-0013.wav", "duration": 3.915, "text": "i saw a few sheep with rounded noses and enormous tails"}
{"key": "LibriSpeech/dev-clean/2412\\153954\\2412-153954-0014.wav", "duration": 17.615, "text": "in about four hours of walking from the time we started and after passing two or three more villages we came upon a considerable town and my guides made many attempts to make me understand something but i gathered no inkling of their meaning except that i need be under no apprehension of danger"}
{"key": "LibriSpeech/dev-clean/2412\\153954\\2412-153954-0015.wav", "duration": 11.39, "text": "suffice it that i found myself taken before the chief magistrate and by his orders was placed in an apartment with two other people who were the first i had seen looking anything but well and handsome"}
{"key": "LibriSpeech/dev-clean/2412\\153954\\2412-153954-0016.wav", "duration": 8.44, "text": "in fact one of them was plainly very much out of health and coughed violently from time to time in spite of manifest efforts to suppress it"}
{"key": "LibriSpeech/dev-clean/2412\\153954\\2412-153954-0017.wav", "duration": 6.99, "text": "the other looked pale and ill but he was marvellously self contained and it was impossible to say what was the matter with him"}
{"key": "LibriSpeech/dev-clean/2412\\153954\\2412-153954-0018.wav", "duration": 12.105, "text": "they felt my pulse they looked at my tongue they listened at my chest they felt all my muscles and at the end of each operation they looked at the chief and nodded and said something in a tone quite pleasant as though i were all right"}
{"key": "LibriSpeech/dev-clean/2412\\153954\\2412-153954-0019.wav", "duration": 7.485, "text": "but by and by they came to my watch which i had hidden away in the inmost pocket that i had and had forgotten when they began their search"}
{"key": "LibriSpeech/dev-clean/2412\\153954\\2412-153954-0020.wav", "duration": 7.975, "text": "again there was a very old carriage whose wheels in spite of rust and decay i could see had been designed originally for iron rails"}
{"key": "LibriSpeech/dev-clean/2412\\153954\\2412-153954-0021.wav", "duration": 6.11, "text": "we passed many cases and at last came to one in which there were several clocks and two or three old watches"}
{"key": "LibriSpeech/dev-clean/2412\\153954\\2412-153954-0022.wav", "duration": 3.54, "text": "the design was different but the thing was clearly the same"}
{"key": "LibriSpeech/dev-clean/2412\\153954\\2412-153954-0023.wav", "duration": 2.65, "text": "this had some effect in calming him"}
{"key": "LibriSpeech/dev-clean/2412\\153954\\2412-153954-0024.wav", "duration": 4.19, "text": "he began presently to relent and spoke to me in a kinder manner"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0000.wav", "duration": 13.305, "text": "i imagine there were several kinds of old fashioned christmases but it could hardly be worse than a chop in my chambers or horror of horrors at the club or my cousin lucy's notion of what she calls the festive season"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0001.wav", "duration": 18.63, "text": "festive yes"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0002.wav", "duration": 4.26, "text": "the reply was written in a sprawling feminine hand it was a little vague"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0003.wav", "duration": 6.265, "text": "it appeared that the terms would be five guineas but there was no mention of the length of time which that fee would cover"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0004.wav", "duration": 15.04, "text": "the whole thing was a trifle odd"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0005.wav", "duration": 9.09, "text": "there was nothing said about the sort of accommodation which would be provided nothing about the kind of establishment which was maintained or the table which was kept"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0006.wav", "duration": 6.825, "text": "now it is a remarkable thing that i have always had an extraordinary predilection for the name madge i do not know why"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0007.wav", "duration": 5.71, "text": "i have never known a madge and yet from my boyhood upward i have desired to meet one"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0008.wav", "duration": 10.38, "text": "under such circumstances she was hardly likely to be lively herself but her name was madge and it was the accident of her christian name which decided me to go"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0009.wav", "duration": 14.8, "text": "i had no illusions"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0010.wav", "duration": 3.12, "text": "i did not expect a princely entertainment"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0011.wav", "duration": 2.575, "text": "all night it had been blowing and raining"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0012.wav", "duration": 8.125, "text": "i felt quite lively myself as i mingled with the christmas crowd looking for things which might not turn out to be absolutely preposterous"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0013.wav", "duration": 3.29, "text": "i even bought something for madge i mean missus wilson"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0014.wav", "duration": 19.935, "text": "it was a horrible journey"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0015.wav", "duration": 19.755, "text": "he was impervious to reason"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0016.wav", "duration": 8.515, "text": "it is some satisfaction for me to be able to reflect that i made it warm for the officials however cold i might have been myself"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0017.wav", "duration": 13.285, "text": "when at last i reached crofton my journey's end it turned out that the station staff consisted of a half witted individual who was stationmaster porter and clerk combined and a hulking lad who did whatever else there was to do"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0018.wav", "duration": 14.345, "text": "no one had come to meet me the village was about half a mile and hangar dene the house for which my steps were bent about four miles by the road how far it was across ploughed fields my informant did not mention"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0019.wav", "duration": 4.91, "text": "there was a trap at the boy and blunderbuss but that required fetching"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0020.wav", "duration": 4.89, "text": "when the trap did appear it looked to me uncommonly like an open spring cart"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0021.wav", "duration": 2.815, "text": "in it i was deposited with my luggage"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0022.wav", "duration": 15.8, "text": "i did not know what he meant"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0023.wav", "duration": 2.6, "text": "i did not ask i was beyond it"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0024.wav", "duration": 4.25, "text": "i was chilled to the bone wet tired hungry"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0025.wav", "duration": 8.005, "text": "i had long been wishing that an old fashioned christmas had been completely extinct before i had thought of adventuring in quest of one"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0026.wav", "duration": 3.14, "text": "here we be that might be so"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0027.wav", "duration": 4.965, "text": "there be the door in front of you you go up three steps if you can find em"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0028.wav", "duration": 4.0, "text": "there's a knocker if none of em haven't twisted it off"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0029.wav", "duration": 6.295, "text": "there appeared to be no knocker though whether it had been twisted off was more than i could say"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0030.wav", "duration": 3.625, "text": "no answer though i allowed a more than decent interval"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0031.wav", "duration": 3.31, "text": "better ring again suggested the driver hard"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0032.wav", "duration": 3.175, "text": "maybe they're up to some of their games and wants rousing"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0033.wav", "duration": 3.92, "text": "the bell reverberated through what seemed like an empty house"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0034.wav", "duration": 8.12, "text": "presently feet were heard advancing along the passage several pairs it seemed and a light gleamed through the window over the door"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0035.wav", "duration": 2.725, "text": "a voice inquired who's there"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0036.wav", "duration": 4.6, "text": "the information was greeted with what sounded uncommonly like a chorus of laughter"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0037.wav", "duration": 6.395, "text": "there was a rush of retreating feet an expostulating voice then darkness again and silence"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0038.wav", "duration": 2.67, "text": "who lives here are the people mad"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0039.wav", "duration": 15.84, "text": "i tolled the bell again"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0040.wav", "duration": 7.825, "text": "after a vast amount of unfastening the door was opened and on the threshold there stood a girl with a lighted candle in her hand"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0041.wav", "duration": 18.63, "text": "i'm mister christopher from london"}
{"key": "LibriSpeech/dev-clean/2428\\83699\\2428-83699-0042.wav", "duration": 6.43, "text": "we've lost the key of the cellar and there's nothing out except water and i don't think you'd care for that"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0000.wav", "duration": 3.82, "text": "her father is a most remarkable person to say the least"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0001.wav", "duration": 6.845, "text": "but it is quite plain to me that all the arrangements for my wedding are going to be made by the snellings"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0002.wav", "duration": 16.45, "text": "i do not know when it is going to be but it will be either next week or the week after certainly at the earliest possible moment and i shouldn't be at all surprised to learn that all mary ann's things had been already bought and perhaps some of them marked"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0003.wav", "duration": 19.305, "text": "it is most delightful"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0004.wav", "duration": 7.47, "text": "it might just as well be some one else's wedding so unimportant is the part which i am set to play in it"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0005.wav", "duration": 4.265, "text": "for instance look at their behaviour in the matter of the ring"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0006.wav", "duration": 3.665, "text": "the accident in question occurred upon the sunday evening"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0007.wav", "duration": 3.33, "text": "the girl is fretting but you don't seem to notice it"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0008.wav", "duration": 3.615, "text": "i gasped positively gasped"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0009.wav", "duration": 19.08, "text": "that's it on your account"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0010.wav", "duration": 2.63, "text": "from a cousin of ours who's in that line"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0011.wav", "duration": 6.115, "text": "i never saw people like the snellings for possessing relatives in all sorts of lines"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0012.wav", "duration": 8.89, "text": "i was persuaded that somebody besides that cousin got a profit out of mary ann's engagement ring but i handed over the amount"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0013.wav", "duration": 4.84, "text": "it is from her action in that matter that my suspicion springs"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0014.wav", "duration": 4.17, "text": "there she owns a cottage or it may be a pigstye for all i know"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0015.wav", "duration": 10.985, "text": "when she heard of my engagement with mary ann she wrote and suggested that we should spend our honeymoon in her cottage or pigstye and that i should pay her rent for it"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0016.wav", "duration": 3.64, "text": "there were no signs of faltering about her flow of language"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0017.wav", "duration": 4.99, "text": "i found that as a woman of business she was beyond all my expectations"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0018.wav", "duration": 5.885, "text": "it turned out that she had a little money of her own about a hundred and thirty pounds a year"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0019.wav", "duration": 5.075, "text": "and of course i had my expectations and she had hers"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0020.wav", "duration": 5.525, "text": "it was plain that together we should manage most comfortably delightfully in fact"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0021.wav", "duration": 3.875, "text": "i shall make papa give me five hundred pounds at least"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0022.wav", "duration": 5.525, "text": "a bird in the hand is worth two in a bush' and it will be something to have by us"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0023.wav", "duration": 3.845, "text": "i know what mamma can afford to give and i will see she gives it"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0024.wav", "duration": 4.94, "text": "and i will see that there is no shirking about the boys or about the girls either"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0025.wav", "duration": 9.845, "text": "i have drawn up a list of all the people who ought to give us a present and i shall tell them what they ought to give it won't be my fault if i don't get it"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0026.wav", "duration": 10.205, "text": "of course there are some people with whom you can't be perfectly plain but i shall be as plain as i can there's a way and a manner of doing that kind of thing"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0027.wav", "duration": 2.32, "text": "hers has been prodigious"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0028.wav", "duration": 9.25, "text": "she has a knack of getting people to do what she wishes and to give her what she wants which is a little short of miraculous"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0029.wav", "duration": 5.83, "text": "i notice that they are generally persons who have already tendered their offerings"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0030.wav", "duration": 9.21, "text": "the fact of having given mary ann a wedding present seems to fill them with a feeling of rancorous acidity which to me is inexplicable"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0031.wav", "duration": 2.705, "text": "such is the selfishness of human nature"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0032.wav", "duration": 6.5, "text": "but why on that account they should pity me i altogether fail to understand"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0033.wav", "duration": 7.82, "text": "we have all been giving mary ann presents and i suppose you mister whiting have been giving her something too"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0034.wav", "duration": 5.45, "text": "that was what missus macpherson said to me only the other day"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0035.wav", "duration": 5.865, "text": "and what inquired missus macpherson has mary ann given you her love"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0036.wav", "duration": 15.68, "text": "someone sniggered"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0037.wav", "duration": 9.365, "text": "i cannot pretend to explain why except on the supposition that romance is dead at least in that circle of society in which the snellings move"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0038.wav", "duration": 7.305, "text": "as it is unless i am mistaken some of the rending will be on our side and they know it"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0039.wav", "duration": 3.2, "text": "p s the cards are out for the wedding"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0040.wav", "duration": 4.365, "text": "we are going for our honeymoon to italy and the south of france"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0041.wav", "duration": 3.96, "text": "a second cousin of mary ann's is in the cook's tours line"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0042.wav", "duration": 11.175, "text": "he has given us free passes all the way to the end of our journey and all the way back again and coupons for free board and lodging at the hotel it's a wedding present"}
{"key": "LibriSpeech/dev-clean/2428\\83705\\2428-83705-0043.wav", "duration": 6.01, "text": "besides which we can always sell the coupons and railway passes which we don't use"}
{"key": "LibriSpeech/dev-clean/251\\118436\\251-118436-0000.wav", "duration": 6.26, "text": "he was young no spear had touched him no poison lurked in his wine"}
{"key": "LibriSpeech/dev-clean/251\\118436\\251-118436-0001.wav", "duration": 3.725, "text": "i tell you it is not poison she cried"}
{"key": "LibriSpeech/dev-clean/251\\118436\\251-118436-0002.wav", "duration": 6.965, "text": "since his birth he has been guarded so closely that the cleverest poisoners of the east could not reach him"}
{"key": "LibriSpeech/dev-clean/251\\118436\\251-118436-0003.wav", "duration": 11.02, "text": "as you well know there are ten men and ten women whose sole duty is to taste his food and wine and fifty armed warriors guard his chamber as they guard it now"}
{"key": "LibriSpeech/dev-clean/251\\118436\\251-118436-0004.wav", "duration": 3.325, "text": "a low confused moan waned from his mouth"}
{"key": "LibriSpeech/dev-clean/251\\118436\\251-118436-0005.wav", "duration": 5.31, "text": "the man shrugged his broad shoulders and turned back into the arabesque chamber"}
{"key": "LibriSpeech/dev-clean/251\\118436\\251-118436-0006.wav", "duration": 6.965, "text": "this man was clad in a brown camel hair robe and sandals and a green turban was on his head"}
{"key": "LibriSpeech/dev-clean/251\\118436\\251-118436-0007.wav", "duration": 5.45, "text": "not until the heavens were in the proper order could they perform this necromancy"}
{"key": "LibriSpeech/dev-clean/251\\118436\\251-118436-0008.wav", "duration": 6.23, "text": "with a long stained fingernail he mapped the constellations on the marble tiled floor"}
{"key": "LibriSpeech/dev-clean/251\\118436\\251-118436-0009.wav", "duration": 8.955, "text": "the slant of the moon presaged evil for the king of vendhya the stars are in turmoil the serpent in the house of the elephant"}
{"key": "LibriSpeech/dev-clean/251\\118436\\251-118436-0010.wav", "duration": 3.25, "text": "point of contact inquired the other"}
{"key": "LibriSpeech/dev-clean/251\\118436\\251-118436-0011.wav", "duration": 7.47, "text": "all discarded portions of the human body still remain part of it attached to it by intangible connections"}
{"key": "LibriSpeech/dev-clean/251\\118436\\251-118436-0012.wav", "duration": 11.105, "text": "but at the urgent entreaty of the princess of khosala who loved bhunda chand vainly he gave her a lock of his long black hair as a token of remembrance"}
{"key": "LibriSpeech/dev-clean/251\\118436\\251-118436-0013.wav", "duration": 8.225, "text": "by which a soul is drawn from its body and across gulfs of echoing space returned the man on the mat"}
{"key": "LibriSpeech/dev-clean/251\\118436\\251-118436-0014.wav", "duration": 6.685, "text": "on the dais under the golden dome the king cried out again racked by awful paroxysms"}
{"key": "LibriSpeech/dev-clean/251\\118436\\251-118436-0015.wav", "duration": 5.38, "text": "they seek to snap the silver cord that binds me to my dying body"}
{"key": "LibriSpeech/dev-clean/251\\118436\\251-118436-0016.wav", "duration": 8.97, "text": "they cluster around me their hands are taloned their eyes are red like flame burning in darkness"}
{"key": "LibriSpeech/dev-clean/251\\118436\\251-118436-0017.wav", "duration": 2.885, "text": "their fingers sear me like fire"}
{"key": "LibriSpeech/dev-clean/251\\118436\\251-118436-0018.wav", "duration": 2.83, "text": "i know now what brings me to the pyre"}
{"key": "LibriSpeech/dev-clean/251\\118436\\251-118436-0019.wav", "duration": 11.475, "text": "there they strove to break the silver cord of life and thrust my soul into the body of a foul night weird their sorcery summoned up from hell ah"}
{"key": "LibriSpeech/dev-clean/251\\118436\\251-118436-0020.wav", "duration": 5.555, "text": "your cry and the grip of your fingers brought me back but i am going fast"}
{"key": "LibriSpeech/dev-clean/251\\118436\\251-118436-0021.wav", "duration": 3.98, "text": "there was the old imperious note in his failing whisper"}
{"key": "LibriSpeech/dev-clean/251\\118436\\251-118436-0022.wav", "duration": 4.54, "text": "you have never disobeyed me obey my last command"}
{"key": "LibriSpeech/dev-clean/251\\118436\\251-118436-0023.wav", "duration": 2.77, "text": "send my soul clean to asura"}
{"key": "LibriSpeech/dev-clean/251\\136532\\251-136532-0000.wav", "duration": 9.81, "text": "they also found a martian calendar the year had been divided into ten more or less equal months and one of them had been doma"}
{"key": "LibriSpeech/dev-clean/251\\136532\\251-136532-0001.wav", "duration": 6.855, "text": "bill chandler the zoologist had been going deeper and deeper into the old sea bottom of syrtis"}
{"key": "LibriSpeech/dev-clean/251\\136532\\251-136532-0002.wav", "duration": 6.55, "text": "that took the center of interest away from archaeology and started a new burst of activity"}
{"key": "LibriSpeech/dev-clean/251\\136532\\251-136532-0003.wav", "duration": 16.36, "text": "the civilian specialists in other fields and the space force people who had been holding tape lines and making sketches and snapping cameras were all flying to lower syrtis to find out how much oxygen there was and what kind of life it supported"}
{"key": "LibriSpeech/dev-clean/251\\136532\\251-136532-0004.wav", "duration": 24.8, "text": "they had four or five species of what might loosely be called birds and something that could easily be classed as a reptile and a carnivorous mammal the size of a cat with birdlike claws and a herbivore almost identical with the piglike thing in the big darfhulva mural and another like a gazelle with a single horn in the middle of its forehead"}
{"key": "LibriSpeech/dev-clean/251\\136532\\251-136532-0005.wav", "duration": 5.755, "text": "the daily newscasts from terra showed a corresponding shift in interest at home"}
{"key": "LibriSpeech/dev-clean/251\\136532\\251-136532-0006.wav", "duration": 2.565, "text": "tony's found the martians"}
{"key": "LibriSpeech/dev-clean/251\\136532\\251-136532-0007.wav", "duration": 5.605, "text": "it was locked from the inside and we had to burn it down with a torch that's where they are"}
{"key": "LibriSpeech/dev-clean/251\\136532\\251-136532-0008.wav", "duration": 9.79, "text": "gloria standish who had dropped in for lunch was on the mezzanine fairly screaming into a radiophone extension dozen and a half of them"}
{"key": "LibriSpeech/dev-clean/251\\136532\\251-136532-0009.wav", "duration": 3.625, "text": "well of course they're dead what a question"}
{"key": "LibriSpeech/dev-clean/251\\136532\\251-136532-0010.wav", "duration": 6.56, "text": "martha remembered the closed door on the first survey they hadn't attempted opening it"}
{"key": "LibriSpeech/dev-clean/251\\136532\\251-136532-0011.wav", "duration": 8.445, "text": "now it was burned away at both sides and lay still hot along the edges on the floor of the big office room in front"}
{"key": "LibriSpeech/dev-clean/251\\136532\\251-136532-0012.wav", "duration": 8.79, "text": "a floodlight was on in the room inside and lattimer was going around looking at things while a space force officer stood by the door"}
{"key": "LibriSpeech/dev-clean/251\\136532\\251-136532-0013.wav", "duration": 4.68, "text": "mass suicide that's what it was notice what's in the corners"}
{"key": "LibriSpeech/dev-clean/251\\136532\\251-136532-0014.wav", "duration": 20.385, "text": "yes charcoal"}
{"key": "LibriSpeech/dev-clean/251\\136532\\251-136532-0015.wav", "duration": 7.63, "text": "so they just came in here and lit the charcoal and sat drinking together till they all fell asleep"}
{"key": "LibriSpeech/dev-clean/251\\136532\\251-136532-0016.wav", "duration": 9.255, "text": "the terran public wanted to hear about martians and if live martians couldn't be found a room full of dead ones was the next best thing"}
{"key": "LibriSpeech/dev-clean/251\\136532\\251-136532-0017.wav", "duration": 15.365, "text": "tony lattimer the discoverer was beginning to cash in on his attentions to gloria and his ingratiation with sid he was always either making voice and image talks for telecast or listening to the news from the home planet"}
{"key": "LibriSpeech/dev-clean/251\\136532\\251-136532-0018.wav", "duration": 6.875, "text": "without question he had become overnight the most widely known archaeologist in history"}
{"key": "LibriSpeech/dev-clean/251\\136532\\251-136532-0019.wav", "duration": 9.345, "text": "not that i'm interested in all this for myself he disclaimed after listening to the telecast from terra two days after his discovery"}
{"key": "LibriSpeech/dev-clean/251\\136532\\251-136532-0020.wav", "duration": 2.975, "text": "bring it to the public attention dramatize it"}
{"key": "LibriSpeech/dev-clean/251\\136532\\251-136532-0021.wav", "duration": 6.55, "text": "so i believe i shall go back at least for a while and see what i can do"}
{"key": "LibriSpeech/dev-clean/251\\136532\\251-136532-0022.wav", "duration": 9.21, "text": "lectures"}
{"key": "LibriSpeech/dev-clean/251\\136532\\251-136532-0023.wav", "duration": 8.395, "text": "the organization of a society of martian archaeology with anthony lattimer ph d the logical candidate for the chair"}
{"key": "LibriSpeech/dev-clean/251\\137823\\251-137823-0000.wav", "duration": 3.435, "text": "i'll be glad to try sir he replied"}
{"key": "LibriSpeech/dev-clean/251\\137823\\251-137823-0001.wav", "duration": 5.48, "text": "inside a secret rocket telemetering device was mounted on its test stand"}
{"key": "LibriSpeech/dev-clean/251\\137823\\251-137823-0002.wav", "duration": 3.13, "text": "this isn't part of your testing routine is it"}
{"key": "LibriSpeech/dev-clean/251\\137823\\251-137823-0003.wav", "duration": 4.4, "text": "another engineer rushed toward the door to see what was happening outside"}
{"key": "LibriSpeech/dev-clean/251\\137823\\251-137823-0004.wav", "duration": 10.9850625, "text": "electronic equipment cascaded from the wall shelves and a heavy duty chain hoist came loose from its overhead track plunging to the floor with a terrifying crash"}
{"key": "LibriSpeech/dev-clean/251\\137823\\251-137823-0005.wav", "duration": 5.445, "text": "an instant later it crashed over pinning mark faber beneath it"}
{"key": "LibriSpeech/dev-clean/251\\137823\\251-137823-0006.wav", "duration": 3.975, "text": "bud threw up his arms to protect himself but too late"}
{"key": "LibriSpeech/dev-clean/251\\137823\\251-137823-0007.wav", "duration": 3.54, "text": "for minutes no one stirred among the wreckage"}
{"key": "LibriSpeech/dev-clean/251\\137823\\251-137823-0008.wav", "duration": 6.525, "text": "then tom who had been stunned by some falling debris raised himself to a sitting position"}
{"key": "LibriSpeech/dev-clean/251\\137823\\251-137823-0009.wav", "duration": 5.835, "text": "tom's eyes focused in horror on the wreckage enveloped by still billowing dust"}
{"key": "LibriSpeech/dev-clean/251\\137823\\251-137823-0010.wav", "duration": 7.955, "text": "the sky was visible through several gaping holes in the roof which was sagging dangerously on its supporting trusses"}
{"key": "LibriSpeech/dev-clean/251\\137823\\251-137823-0011.wav", "duration": 5.655, "text": "the young inventor had just noticed his friend lying pinned beneath a heavy beam nearby"}
{"key": "LibriSpeech/dev-clean/251\\137823\\251-137823-0012.wav", "duration": 2.485, "text": "his friend's eyelids flickered"}
{"key": "LibriSpeech/dev-clean/251\\137823\\251-137823-0013.wav", "duration": 4.96, "text": "we'd better not try to move him tom decided we'll get an ambulance"}
{"key": "LibriSpeech/dev-clean/251\\137823\\251-137823-0014.wav", "duration": 4.98, "text": "they picked their way through the wreckage and emerged on a scene of frightful destruction"}
{"key": "LibriSpeech/dev-clean/251\\137823\\251-137823-0015.wav", "duration": 2.615, "text": "let's see about getting help for mister faber"}
{"key": "LibriSpeech/dev-clean/251\\137823\\251-137823-0016.wav", "duration": 6.77, "text": "and the only truck we had available was in that burning shed the superintendent added bitterly"}
{"key": "LibriSpeech/dev-clean/251\\137823\\251-137823-0017.wav", "duration": 3.855, "text": "anyhow we want to help got a job for us"}
{"key": "LibriSpeech/dev-clean/251\\137823\\251-137823-0018.wav", "duration": 7.505, "text": "within minutes tom was in charge of clearing away rubble and extricating anyone who might be trapped inside the buildings"}
{"key": "LibriSpeech/dev-clean/251\\137823\\251-137823-0019.wav", "duration": 12.29, "text": "the telephone line was soon repaired and a steady stream of rescue vehicles began arriving from harkness fire trucks three ambulances and private cars driven by volunteers"}
{"key": "LibriSpeech/dev-clean/251\\137823\\251-137823-0020.wav", "duration": 5.425, "text": "the two girls were as much upset as tom's mother tom laughed"}
{"key": "LibriSpeech/dev-clean/251\\137823\\251-137823-0021.wav", "duration": 6.82, "text": "mister swift came into the living room just then and told tom how worried missus swift and sandy had been"}
{"key": "LibriSpeech/dev-clean/251\\137823\\251-137823-0022.wav", "duration": 7.175, "text": "he smiled guiltily as he added but i must admit i was more than a little concerned myself"}
{"key": "LibriSpeech/dev-clean/251\\137823\\251-137823-0023.wav", "duration": 2.335, "text": "he's a great scientist"}
{"key": "LibriSpeech/dev-clean/251\\137823\\251-137823-0024.wav", "duration": 2.46, "text": "tom nodded unhappily"}
{"key": "LibriSpeech/dev-clean/251\\137823\\251-137823-0025.wav", "duration": 3.66, "text": "male or female human or animal"}
{"key": "LibriSpeech/dev-clean/251\\137823\\251-137823-0026.wav", "duration": 2.785, "text": "mister swift's eyes twinkled"}
{"key": "LibriSpeech/dev-clean/2803\\154320\\2803-154320-0000.wav", "duration": 11.48, "text": "fortunately will halley was not a man in a hurry and did not use a press of canvas or his masts would inevitably have come down"}
{"key": "LibriSpeech/dev-clean/2803\\154320\\2803-154320-0001.wav", "duration": 15.56, "text": "john mangles therefore hoped that the wretched hull would reach port without accident but it grieved him that his companions should have to suffer so much discomfort from the defective arrangements of the brig"}
{"key": "LibriSpeech/dev-clean/2803\\154320\\2803-154320-0002.wav", "duration": 3.53, "text": "their friends did their best to amuse them"}
{"key": "LibriSpeech/dev-clean/2803\\154320\\2803-154320-0003.wav", "duration": 6.475, "text": "their minds were so distracted at this change of route as to be quite unhinged"}
{"key": "LibriSpeech/dev-clean/2803\\154320\\2803-154320-0004.wav", "duration": 12.005, "text": "much as they had been interested in his dissertation on the pampas or australia his lectures on new zealand fell on cold and indifferent ears"}
{"key": "LibriSpeech/dev-clean/2803\\154320\\2803-154320-0005.wav", "duration": 4.77, "text": "his eyes wandered ceaselessly over the blank horizon"}
{"key": "LibriSpeech/dev-clean/2803\\154320\\2803-154320-0006.wav", "duration": 19.62, "text": "what then my lord"}
{"key": "LibriSpeech/dev-clean/2803\\154320\\2803-154320-0007.wav", "duration": 4.51, "text": "god keep us from such a meeting why john"}
{"key": "LibriSpeech/dev-clean/2803\\154320\\2803-154320-0008.wav", "duration": 3.59, "text": "we could not even fly fly john"}
{"key": "LibriSpeech/dev-clean/2803\\154320\\2803-154320-0009.wav", "duration": 2.765, "text": "yes my lord we should try in vain"}
{"key": "LibriSpeech/dev-clean/2803\\154320\\2803-154320-0010.wav", "duration": 4.01, "text": "we would fight to the death of course but after that"}
{"key": "LibriSpeech/dev-clean/2803\\154320\\2803-154320-0011.wav", "duration": 4.28, "text": "think of lady glenarvan think of mary grant"}
{"key": "LibriSpeech/dev-clean/2803\\154320\\2803-154320-0012.wav", "duration": 9.81, "text": "will halley is a brute but i am keeping my eyes open and if the coast looks dangerous i will put the ship's head to sea again"}
{"key": "LibriSpeech/dev-clean/2803\\154320\\2803-154320-0013.wav", "duration": 4.365, "text": "so that on that score there is little or no danger"}
{"key": "LibriSpeech/dev-clean/2803\\154320\\2803-154320-0014.wav", "duration": 5.29, "text": "but as to getting alongside the duncan god forbid"}
{"key": "LibriSpeech/dev-clean/2803\\154328\\2803-154328-0000.wav", "duration": 7.93, "text": "they were not to leave it again till the tops of the wahiti ranges were lit with the first fires of day"}
{"key": "LibriSpeech/dev-clean/2803\\154328\\2803-154328-0001.wav", "duration": 3.825, "text": "they had one night in which to prepare for death"}
{"key": "LibriSpeech/dev-clean/2803\\154328\\2803-154328-0002.wav", "duration": 18.54, "text": "the meal ended"}
{"key": "LibriSpeech/dev-clean/2803\\154328\\2803-154328-0003.wav", "duration": 12.8, "text": "sleep which keeps all sorrow in abeyance soon weighed down their eyelids they slept in each other's arms overcome by exhaustion and prolonged watching"}
{"key": "LibriSpeech/dev-clean/2803\\154328\\2803-154328-0004.wav", "duration": 11.19, "text": "if it is decreed that we die to morrow let us die bravely like christian men ready to appear without terror before the supreme judge"}
{"key": "LibriSpeech/dev-clean/2803\\154328\\2803-154328-0005.wav", "duration": 6.1, "text": "god who reads our hearts knows that we had a noble end in view"}
{"key": "LibriSpeech/dev-clean/2803\\154328\\2803-154328-0006.wav", "duration": 4.005, "text": "glenarvan's voice firm till now faltered"}
{"key": "LibriSpeech/dev-clean/2803\\154328\\2803-154328-0007.wav", "duration": 6.77, "text": "john you have promised mary what i promised lady helena what is your plan"}
{"key": "LibriSpeech/dev-clean/2803\\154328\\2803-154328-0008.wav", "duration": 7.37, "text": "i believe said john that in the sight of god i have a right to fulfill that promise"}
{"key": "LibriSpeech/dev-clean/2803\\154328\\2803-154328-0009.wav", "duration": 8.3, "text": "my lord whichever of us survives the other will fulfill the wish of lady helena and mary grant"}
{"key": "LibriSpeech/dev-clean/2803\\154328\\2803-154328-0010.wav", "duration": 6.34, "text": "at last the major said my friends keep that to the last moment"}
{"key": "LibriSpeech/dev-clean/2803\\154328\\2803-154328-0011.wav", "duration": 6.595, "text": "the jailer may forget that he is on guard the prisoner never forgets that he is guarded"}
{"key": "LibriSpeech/dev-clean/2803\\154328\\2803-154328-0012.wav", "duration": 9.57, "text": "on that side descent was impossible and had it been possible the bottom was shut in by the enormous rock"}
{"key": "LibriSpeech/dev-clean/2803\\154328\\2803-154328-0013.wav", "duration": 3.975, "text": "listen said he motioning them to stoop"}
{"key": "LibriSpeech/dev-clean/2803\\154328\\2803-154328-0014.wav", "duration": 4.925, "text": "animal or man answered the major i will soon find out"}
{"key": "LibriSpeech/dev-clean/2803\\154328\\2803-154328-0015.wav", "duration": 20.5499375, "text": "wilson and olbinett joined their companions and all united to dig through the wall john with his dagger the others with stones taken from the ground or with their nails while mulrady stretched along the ground watched the native guard through a crevice of the matting"}
{"key": "LibriSpeech/dev-clean/2803\\154328\\2803-154328-0016.wav", "duration": 19.62, "text": "what could be the object"}
{"key": "LibriSpeech/dev-clean/2803\\154328\\2803-154328-0017.wav", "duration": 7.435, "text": "did they know of the existence of the prisoners or was it some private enterprise that led to the undertaking"}
{"key": "LibriSpeech/dev-clean/2803\\154328\\2803-154328-0018.wav", "duration": 15.38, "text": "their fingers bled but still they worked on after half an hour they had gone three feet deep they perceived by the increased sharpness of the sounds that only a thin layer of earth prevented immediate communication"}
{"key": "LibriSpeech/dev-clean/2803\\154328\\2803-154328-0019.wav", "duration": 10.18, "text": "john mangles inserting the blade of his poniard avoided the knife which now protruded above the soil but seized the hand that wielded it"}
{"key": "LibriSpeech/dev-clean/2803\\154328\\2803-154328-0020.wav", "duration": 13.92, "text": "but softly as the name was breathed mary grant already awakened by the sounds in the hut slipped over toward glenarvan and seizing the hand all stained with earth she covered it with kisses"}