-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtr05_simu.txt
5281 lines (5281 loc) · 250 KB
/
tr05_simu.txt
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
[
{
"dot": "The sale of the hotels is part of Holiday\\'s strategy to sell off assets and concentrate on property management",
"environment": "PED",
"ir_end": 487.8683125000000,
"ir_start": 481.3522500000000,
"ir_wavfile": "M01_141118_050_PED",
"noise_end": 835.1356250000000,
"noise_start": 828.5911875000000,
"noise_wavfile": "BGD_150205_030_PED",
"prompt": "The sale of the hotels is part of Holiday's strategy to sell off assets and concentrate on property management.",
"speaker": "011",
"wsj_name": "011C0201"
},
{
"dot": "The hotel operator\\'s Embassy Suites Hotels Incorporated subsidiary will continue to manage the properties",
"environment": "PED",
"ir_end": 869.2028125000001,
"ir_start": 862.2631249999999,
"ir_wavfile": "M01_141118_050_PED",
"noise_end": 1365.559187500000,
"noise_start": 1358.612937500000,
"noise_wavfile": "BGD_150205_030_PED",
"prompt": "The hotel operator's Embassy Suites Hotels Incorporated subsidiary will continue to manage the properties.",
"speaker": "011",
"wsj_name": "011C0202"
},
{
"dot": "Long term management contracts allow us to generate income on a significantly lower capital base said Michael D\\. Rose Holiday\\'s chairman and chief executive officer",
"environment": "BUS",
"ir_end": 651.2233125000000,
"ir_start": 640.5156250000000,
"ir_wavfile": "F03_141103_020_BUS",
"noise_end": 511.0907500000000,
"noise_start": 500.3765625000000,
"noise_wavfile": "BGD_150204_040_BUS",
"prompt": "\"Long-term management contracts allow us to generate income on a significantly lower capital base,\" said Michael D. Rose, Holiday's chairman and chief executive officer.",
"speaker": "011",
"wsj_name": "011C0203"
},
{
"dot": "I wanted to run my amateur theater like the big time he remembers",
"environment": "STR",
"ir_end": 231.7119375000000,
"ir_start": 227.1957500000000,
"ir_wavfile": "M01_141118_060_STR",
"noise_end": 807.6060000000000,
"noise_start": 803.0913125000000,
"noise_wavfile": "BGD_150212_050_STR",
"prompt": "\"I wanted to run my amateur theater like the big time,\" he remembers.",
"speaker": "011",
"wsj_name": "011C0204"
},
{
"dot": "It gave me the feeling I was part of a large industry",
"environment": "STR",
"ir_end": 811.0435000000000,
"ir_start": 807.2878125000000,
"ir_wavfile": "F03_141103_050_STR",
"noise_end": 1441.875812500000,
"noise_start": 1438.125687500000,
"noise_wavfile": "BGD_150211_030_STR",
"prompt": "\"It gave me the feeling I was part of a large industry.",
"speaker": "011",
"wsj_name": "011C0205"
},
{
"dot": "I never wanted to go the independent circuit and raise money from oil men and doctors",
"environment": "BUS",
"ir_end": 697.2615000000000,
"ir_start": 691.7376875000000,
"ir_wavfile": "F03_141103_020_BUS",
"noise_end": 1872.470125000000,
"noise_start": 1866.955062500000,
"noise_wavfile": "BGD_150204_030_BUS",
"prompt": "I never wanted to go the independent circuit and raise money from oil men and doctors.",
"speaker": "011",
"wsj_name": "011C0206"
},
{
"dot": "I always wanted to work on the inside in",
"environment": "PED",
"ir_end": 602.3519375000000,
"ir_start": 598.9121875000000,
"ir_wavfile": "F02_141106_050_PED",
"noise_end": 1150.329625000000,
"noise_start": 1146.872312500000,
"noise_wavfile": "BGD_150203_010_PED",
"prompt": "I always wanted to work on the inside in.\"",
"speaker": "011",
"wsj_name": "011C0207"
},
{
"dot": "A loss wasn\\'t unexpected given Continental\\'s operational difficulties that developed in the quarter",
"environment": "CAF",
"ir_end": 914.2848125000000,
"ir_start": 907.9051250000000,
"ir_wavfile": "M01_141118_020_CAF",
"noise_end": 1250.974687500000,
"noise_start": 1244.596437500000,
"noise_wavfile": "BGD_150205_040_CAF",
"prompt": "A loss wasn't unexpected, given Continental's operational difficulties that developed in the quarter.",
"speaker": "011",
"wsj_name": "011C0208"
},
{
"dot": "However the results of Texas Air\\'s subsidiaries are the reverse of what many analysts had predicted earlier in the year",
"environment": "BUS",
"ir_end": 97.53893750000000,
"ir_start": 89.92749999999999,
"ir_wavfile": "M01_141118_040_BUS",
"noise_end": 313.9535625000000,
"noise_start": 306.3667500000000,
"noise_wavfile": "BGD_150204_020_BUS",
"prompt": "However, the results of Texas Air's subsidiaries are the reverse of what many analysts had predicted earlier in the year.",
"speaker": "011",
"wsj_name": "011C0209"
},
{
"dot": "Instead of a modest profit at low cost Continental by the second quarter the newly expanded unit has struggled with losses",
"environment": "CAF",
"ir_end": 237.7625625000000,
"ir_start": 230.1158750000000,
"ir_wavfile": "M02_141128_020_CAF",
"noise_end": 1170.483687500000,
"noise_start": 1162.836812500000,
"noise_wavfile": "BGD_150205_040_CAF",
"prompt": "Instead of a modest profit at low-cost Continental by the second quarter, the newly expanded unit has struggled with losses.",
"speaker": "011",
"wsj_name": "011C020A"
},
{
"dot": "Its higher cost sister Eastern Airlines has shown signs of financial progress despite continuing confrontations with its employee unions",
"environment": "STR",
"ir_end": 184.6276875000000,
"ir_start": 175.3600625000000,
"ir_wavfile": "F03_141103_050_STR",
"noise_end": 705.9523750000000,
"noise_start": 696.6948125000000,
"noise_wavfile": "BGD_150212_050_STR",
"prompt": "Its higher-cost sister, Eastern Airlines, has shown signs of financial progress despite continuing confrontations with its employee unions.",
"speaker": "011",
"wsj_name": "011C020B"
},
{
"dot": "Despite the decline in stock prices trading volume wasn\\'t overwhelming",
"environment": "STR",
"ir_end": 678.9966875000000,
"ir_start": 674.1363750000000,
"ir_wavfile": "M01_141118_060_STR",
"noise_end": 479.2835625000000,
"noise_start": 474.4288750000000,
"noise_wavfile": "BGD_150212_040_STR",
"prompt": "Despite the decline in stock prices, trading volume wasn't overwhelming.",
"speaker": "011",
"wsj_name": "011C020C"
},
{
"dot": "More than one hundred ninety three point four million shares changed hands on the New York Stock Exchange compared with one hundred sixty five point eight million Monday",
"environment": "STR",
"ir_end": 783.7245000000000,
"ir_start": 773.8488125000000,
"ir_wavfile": "F03_141103_050_STR",
"noise_end": 1695.038375000000,
"noise_start": 1685.112437500000,
"noise_wavfile": "BGD_150203_010_STR",
"prompt": "More than one hundred ninety-three point four million shares changed hands on the New York Stock Exchange, compared with one hundred sixty-five point eight million Monday.",
"speaker": "011",
"wsj_name": "011C020D"
},
{
"dot": "But traders asserted that much of the late activity came from professionals",
"environment": "CAF",
"ir_end": 1235.699437500000,
"ir_start": 1230.559437500000,
"ir_wavfile": "M02_141128_020_CAF",
"noise_end": 678.8059374999999,
"noise_start": 673.6933749999999,
"noise_wavfile": "BGD_150203_010_CAF",
"prompt": "But traders asserted that much of the late activity came from professionals.",
"speaker": "011",
"wsj_name": "011C020E"
},
{
"dot": "Drexel\\'s Mr\\. Joseph calls Staley\\'s allegations outrageous",
"environment": "STR",
"ir_end": 50.28750000000000,
"ir_start": 45.49156250000000,
"ir_wavfile": "M01_141118_060_STR",
"noise_end": 31.16675000000000,
"noise_start": 26.37843750000000,
"noise_wavfile": "BGD_150203_010_STR",
"prompt": "Drexel's Mr. Joseph calls Staley's allegations \"outrageous.\"",
"speaker": "011",
"wsj_name": "011C020F"
},
{
"dot": "He acknowledges that some of the statements attributed to Mr\\. Dahl were made but says that others weren\\'t",
"environment": "PED",
"ir_end": 487.8683125000000,
"ir_start": 481.3522500000000,
"ir_wavfile": "M01_141118_050_PED",
"noise_end": 141.1085000000000,
"noise_start": 134.5902500000000,
"noise_wavfile": "BGD_150203_020_PED",
"prompt": "He acknowledges that some of the statements attributed to Mr. Dahl were made but says that others weren't.",
"speaker": "011",
"wsj_name": "011C020G"
},
{
"dot": "He says that he doesn\\'t believe Drexel customers\\' holdings in Staley were ever large enough to require a thirteen D\\. filing",
"environment": "STR",
"ir_end": 157.9168125000000,
"ir_start": 149.5450625000000,
"ir_wavfile": "F03_141103_050_STR",
"noise_end": 98.72087500000001,
"noise_start": 90.34375000000000,
"noise_wavfile": "BGD_150211_020_STR",
"prompt": "He says that he doesn't believe Drexel customers' holdings in Staley were ever large enough to require a thirteen D. filing.",
"speaker": "011",
"wsj_name": "011C020H"
},
{
"dot": "Following the Wilson affair the panel did conduct several staff inquiries in reaction to news stories",
"environment": "CAF",
"ir_end": 869.9189375000000,
"ir_start": 863.0270000000000,
"ir_wavfile": "F03_141103_010_CAF",
"noise_end": 1691.888812500000,
"noise_start": 1685.021812500000,
"noise_wavfile": "BGD_150204_030_CAF",
"prompt": "Following the Wilson affair, the panel did conduct several staff inquiries in reaction to news stories.",
"speaker": "011",
"wsj_name": "011C020I"
},
{
"dot": "One yielded reprimands of Representatives",
"environment": "PED",
"ir_end": 380.0888125000000,
"ir_start": 376.9330000000000,
"ir_wavfile": "M01_141118_050_PED",
"noise_end": 159.5879375000000,
"noise_start": 156.4404375000000,
"noise_wavfile": "BGD_150203_010_PED",
"prompt": "One yielded reprimands of Representatives.",
"speaker": "011",
"wsj_name": "011C020J"
},
{
"dot": "Daniel Crane R\\. Illinois and Gerry Studds D\\. Massachusetts in nineteen eighty three for sexual affairs with House pages",
"environment": "BUS",
"ir_end": 161.5920000000000,
"ir_start": 151.9962500000000,
"ir_wavfile": "M02_141128_030_BUS",
"noise_end": 1300.924875000000,
"noise_start": 1291.348937500000,
"noise_wavfile": "BGD_150204_020_BUS",
"prompt": "Daniel Crane (R., Illinois) and Gerry Studds (D., Massachusetts) in nineteen eighty-three for sexual affairs with House pages.",
"speaker": "011",
"wsj_name": "011C020K"
},
{
"dot": "Representative George Hansen R\\. Idaho drew a reprimand in nineteen eighty four after a felony conviction for falsifying his financial disclosures",
"environment": "STR",
"ir_end": 538.0460000000000,
"ir_start": 527.7143750000000,
"ir_wavfile": "F03_141103_050_STR",
"noise_end": 974.2919999999999,
"noise_start": 963.9774375000000,
"noise_wavfile": "BGD_150203_010_STR",
"prompt": "Representative George Hansen (R., Idaho) drew a reprimand in nineteen eighty-four after a felony conviction for falsifying his financial disclosures.",
"speaker": "011",
"wsj_name": "011C020L"
},
{
"dot": "With technology like this the company that invented the overnight express business fourteen years ago still dominates it",
"environment": "BUS",
"ir_end": 200.1741250000000,
"ir_start": 192.9065000000000,
"ir_wavfile": "M02_141128_030_BUS",
"noise_end": 478.0048125000000,
"noise_start": 470.7307500000000,
"noise_wavfile": "BGD_150204_040_BUS",
"prompt": "With technology like this, the company that invented the overnight-express business fourteen years ago still dominates it.",
"speaker": "011",
"wsj_name": "011C020M"
},
{
"dot": "Federal Express collects more than half the revenue in what is now more than a six billion dollar industry",
"environment": "PED",
"ir_end": 1295.157875000000,
"ir_start": 1288.969875000000,
"ir_wavfile": "F03_141103_040_PED",
"noise_end": 838.0309375000001,
"noise_start": 831.8660625000000,
"noise_wavfile": "BGD_150211_040_PED",
"prompt": "Federal Express collects more than half the revenue in what is now more than a six billion dollar industry.",
"speaker": "011",
"wsj_name": "011C020N"
},
{
"dot": "And at a time when deteriorating service is a national malady this company claims to deliver more than ninety nine percent of its letters and packages on time",
"environment": "BUS",
"ir_end": 74.76387500000000,
"ir_start": 65.47618749999999,
"ir_wavfile": "M02_141128_060_BUS",
"noise_end": 749.4413750000000,
"noise_start": 740.1232500000000,
"noise_wavfile": "BGD_150204_040_BUS",
"prompt": "And at a time when deteriorating service is a national malady, this company claims to deliver more than ninety-nine percent of its letters and packages on time.",
"speaker": "011",
"wsj_name": "011C020O"
},
{
"dot": "The next Olympic stop in September is Seoul and there is reason to doubt it will go as quietly as the Calgary Games",
"environment": "STR",
"ir_end": 1102.616375000000,
"ir_start": 1094.444500000000,
"ir_wavfile": "F03_141103_050_STR",
"noise_end": 276.5052500000000,
"noise_start": 268.3379375000000,
"noise_wavfile": "BGD_150212_040_STR",
"prompt": "The next Olympic stop, in September, is Seoul, and there is reason to doubt it will go as quietly as the Calgary Games.",
"speaker": "011",
"wsj_name": "011C020P"
},
{
"dot": "South Korea is in political turmoil its officials have said they expect trouble from their sparring partners to the north and the U\\. S\\. fleet will patrol offshore",
"environment": "PED",
"ir_end": 598.5800625000001,
"ir_start": 588.0966875000000,
"ir_wavfile": "M02_141128_040_PED",
"noise_end": 939.7117500000001,
"noise_start": 929.1903125000000,
"noise_wavfile": "BGD_150205_030_PED",
"prompt": "South Korea is in political turmoil, its officials have said they expect trouble from their sparring partners to the north, and the U. S. fleet will patrol offshore.",
"speaker": "011",
"wsj_name": "011C020Q"
},
{
"dot": "Under such circumstances I can\\'t help thinking that any and all security measures will be welcome",
"environment": "BUS",
"ir_end": 370.4958125000000,
"ir_start": 364.3805000000000,
"ir_wavfile": "M01_141118_040_BUS",
"noise_end": 1039.730312500000,
"noise_start": 1033.630000000000,
"noise_wavfile": "BGD_150204_040_BUS",
"prompt": "Under such circumstances, I can't help thinking that any and all security measures will be welcome.",
"speaker": "011",
"wsj_name": "011C020R"
},
{
"dot": "I guess it\\'ll be better to feel like a toothpaste carton than to get squeezed",
"environment": "PED",
"ir_end": 1100.702812500000,
"ir_start": 1095.827187500000,
"ir_wavfile": "M02_141128_040_PED",
"noise_end": 1381.825687500000,
"noise_start": 1376.964562500000,
"noise_wavfile": "BGD_150203_010_PED",
"prompt": "I guess it'll be better to feel like a toothpaste carton than to get squeezed.",
"speaker": "011",
"wsj_name": "011C020S"
},
{
"dot": "Steinberg has received offers for its Canadian supermarkets",
"environment": "BUS",
"ir_end": 616.9366250000000,
"ir_start": 612.6767500000000,
"ir_wavfile": "F03_141103_020_BUS",
"noise_end": 1501.999500000000,
"noise_start": 1497.733312500000,
"noise_wavfile": "BGD_150204_020_BUS",
"prompt": "Steinberg has received offers for its Canadian supermarkets.",
"speaker": "011",
"wsj_name": "011C020T"
},
{
"dot": "The union representing most of the employees has offered a five year no strike contract if the stores aren\\'t sold",
"environment": "STR",
"ir_end": 951.4675625000000,
"ir_start": 943.8006875000000,
"ir_wavfile": "M02_141128_050_STR",
"noise_end": 121.2720000000000,
"noise_start": 113.6035625000000,
"noise_wavfile": "BGD_150212_040_STR",
"prompt": "The union representing most of the employees has offered a five-year no-strike contract if the stores aren't sold.",
"speaker": "011",
"wsj_name": "011C020U"
},
{
"dot": "Steinberg didn\\'t disclose details of the bids or its proposal to the union",
"environment": "BUS",
"ir_end": 270.4599375000000,
"ir_start": 265.4640625000000,
"ir_wavfile": "M01_141118_040_BUS",
"noise_end": 367.2833750000000,
"noise_start": 362.2740000000000,
"noise_wavfile": "BGD_150204_010_BUS",
"prompt": "Steinberg didn't disclose details of the bids or its proposal to the union.",
"speaker": "011",
"wsj_name": "011C020V"
},
{
"dot": "The only new issue priced yesterday was five hundred fifty million dollars of twelve year senior subordinated debentures from U\\. S\\. G\\. Corporation",
"environment": "PED",
"ir_end": 578.7329999999999,
"ir_start": 568.4735625000000,
"ir_wavfile": "M02_141128_040_PED",
"noise_end": 381.3319375000000,
"noise_start": 371.0857500000000,
"noise_wavfile": "BGD_150205_030_PED",
"prompt": "The only new issue priced yesterday was five hundred fifty million dollars of twelve-year senior subordinated debentures from U. S. G. Corporation.",
"speaker": "011",
"wsj_name": "011C020W"
},
{
"dot": "The high risk high yield issue was priced at par to yield thirteen and one quarter percent by Salomon Brothers Incorporated and Goldman Sachs and Company",
"environment": "BUS",
"ir_end": 727.1885000000000,
"ir_start": 716.7686875000001,
"ir_wavfile": "F03_141103_020_BUS",
"noise_end": 59.50268749999999,
"noise_start": 49.14287500000000,
"noise_wavfile": "BGD_150204_010_BUS",
"prompt": "The high-risk, high-yield issue was priced at par to yield thirteen and one quarter percent by Salomon Brothers Incorporated and Goldman, Sachs and Company.",
"speaker": "011",
"wsj_name": "011C020X"
},
{
"dot": "The offering is part of U\\. S\\. G\\.\\'s recapitalization plan",
"environment": "CAF",
"ir_end": 645.1436250000000,
"ir_start": 640.1396250000000,
"ir_wavfile": "F03_141103_010_CAF",
"noise_end": 1037.121562500000,
"noise_start": 1032.114625000000,
"noise_wavfile": "BGD_150204_030_CAF",
"prompt": "The offering is part of U. S. G.'s recapitalization plan.",
"speaker": "011",
"wsj_name": "011C020Y"
},
{
"dot": "Mr\\. Randol says the sharp upward trend in refiner margins is unusual for the middle of the driving season",
"environment": "BUS",
"ir_end": 683.1933749999999,
"ir_start": 675.9976250000000,
"ir_wavfile": "M02_141128_030_BUS",
"noise_end": 690.9649375000000,
"noise_start": 683.7723125000000,
"noise_wavfile": "BGD_150204_020_BUS",
"prompt": "Mr. Randol says the sharp upward trend in refiner margins is unusual for the middle of the driving season.",
"speaker": "011",
"wsj_name": "011C020Z"
},
{
"dot": "Margins historically have peaked by mid year he says",
"environment": "STR",
"ir_end": 444.6690000000000,
"ir_start": 440.7491875000000,
"ir_wavfile": "M02_141128_050_STR",
"noise_end": 1004.140687500000,
"noise_start": 1000.208750000000,
"noise_wavfile": "BGD_150212_050_STR",
"prompt": "\"Margins historically have peaked by mid-year,\" he says.",
"speaker": "011",
"wsj_name": "011C0210"
},
{
"dot": "But U\\. S\\. gasoline stocks are close to an eight year low while demand has outstripped the industry\\'s physical ability to manufacture unleaded fuel he says",
"environment": "STR",
"ir_end": 783.7245000000000,
"ir_start": 773.8488125000000,
"ir_wavfile": "F03_141103_050_STR",
"noise_end": 1072.963000000000,
"noise_start": 1063.015437500000,
"noise_wavfile": "BGD_150211_020_STR",
"prompt": "But U. S. gasoline stocks are close to an eight-year low while demand has outstripped the industry's physical ability to manufacture unleaded fuel, he says.",
"speaker": "011",
"wsj_name": "011C0211"
},
{
"dot": "Banks that commit to the new credit by today get a fee equal to zero point three seven five percent of the amount they commit",
"environment": "CAF",
"ir_end": 821.2291875000000,
"ir_start": 813.3055000000001,
"ir_wavfile": "M02_141128_020_CAF",
"noise_end": 377.1539375000000,
"noise_start": 369.2192500000000,
"noise_wavfile": "BGD_150204_030_CAF",
"prompt": "Banks that commit to the new credit by today get a fee equal to zero point three seven five percent of the amount they commit.",
"speaker": "011",
"wsj_name": "011C0212"
},
{
"dot": "It won\\'t be clear until after the weekend how many commitments have been received",
"environment": "CAF",
"ir_end": 697.7174375000000,
"ir_start": 692.9255625000000,
"ir_wavfile": "F02_141106_030_CAF",
"noise_end": 1076.648937500000,
"noise_start": 1071.835187500000,
"noise_wavfile": "BGD_150204_020_CAF",
"prompt": "It won't be clear until after the weekend how many commitments have been received.",
"speaker": "011",
"wsj_name": "011C0213"
},
{
"dot": "But some bankers close to the transaction estimate that about eighty percent or slightly more than four billion dollars would be committed by early next week",
"environment": "BUS",
"ir_end": 548.9838750000000,
"ir_start": 539.7155000000000,
"ir_wavfile": "M02_141128_030_BUS",
"noise_end": 418.4579375000000,
"noise_start": 409.1869375000000,
"noise_wavfile": "BGD_150204_040_BUS",
"prompt": "But some bankers close to the transaction estimate that about eighty percent, or slightly more than four billion dollars, would be committed by early next week.",
"speaker": "011",
"wsj_name": "011C0214"
},
{
"dot": "Mr\\. Bethell has an eye for the fashionable and for the abominable which today are often the same thing",
"environment": "BUS",
"ir_end": 380.2386250000000,
"ir_start": 373.4190625000000,
"ir_wavfile": "M02_141128_030_BUS",
"noise_end": 701.7794375000001,
"noise_start": 694.9500000000000,
"noise_wavfile": "BGD_150204_020_BUS",
"prompt": "Mr. Bethell has an eye for the fashionable and for the abominable, which today are often the same thing.",
"speaker": "011",
"wsj_name": "011C0215"
},
{
"dot": "He obviously relishes a good fight and saying no to the cultural barbarians and the current wisdom",
"environment": "BUS",
"ir_end": 126.1217500000000,
"ir_start": 119.2380000000000,
"ir_wavfile": "M01_141118_040_BUS",
"noise_end": 758.5915000000000,
"noise_start": 751.6874375000000,
"noise_wavfile": "BGD_150204_020_BUS",
"prompt": "He obviously relishes a good fight, and saying no to the cultural barbarians and the current wisdom.",
"speaker": "011",
"wsj_name": "011C0216"
},
{
"dot": "He uses pig bladder hammer and tongs and scalpel and he is adept with them all as The Electric Windmill shows",
"environment": "STR",
"ir_end": 183.8016875000000,
"ir_start": 175.7581875000000,
"ir_wavfile": "M01_141118_060_STR",
"noise_end": 894.4204999999999,
"noise_start": 886.3703125000000,
"noise_wavfile": "BGD_150212_040_STR",
"prompt": "He uses pig bladder, hammer and tongs, and scalpel, and he is adept with them all, as \"The Electric Windmill\" shows.",
"speaker": "011",
"wsj_name": "011C0217"
},
{
"dot": "But Mr\\. McConnell in response said he believed that at least seven thousand units have been lost since nineteen eighty",
"environment": "PED",
"ir_end": 1078.055812500000,
"ir_start": 1070.375562500000,
"ir_wavfile": "M02_141128_040_PED",
"noise_end": 1351.296812500000,
"noise_start": 1343.617312500000,
"noise_wavfile": "BGD_150211_040_PED",
"prompt": "But Mr. McConnell, in response, said he believed that at least seven thousand units have been lost since nineteen eighty.",
"speaker": "011",
"wsj_name": "011C0218"
},
{
"dot": "In his experience owners do register units even if they are exempt from rent control precisely to establish that they are exempt",
"environment": "STR",
"ir_end": 844.3750625000000,
"ir_start": 836.0754375000000,
"ir_wavfile": "F02_141106_020_STR",
"noise_end": 792.3240000000000,
"noise_start": 784.0284375000000,
"noise_wavfile": "BGD_150211_020_STR",
"prompt": "In his experience, owners do register units even if they are exempt from rent control -- precisely to establish that they are exempt.",
"speaker": "011",
"wsj_name": "011C0219"
},
{
"dot": "Those who work for the Rent Board will tell you that there has not been a substantial loss of housing he said",
"environment": "STR",
"ir_end": 16.60231250000000,
"ir_start": 10.39068750000000,
"ir_wavfile": "F03_141103_050_STR",
"noise_end": 426.3066875000000,
"noise_start": 420.0963125000000,
"noise_wavfile": "BGD_150211_030_STR",
"prompt": "\"Those who work for the Rent Board will tell you that there has not been a substantial loss of housing,\" he said.",
"speaker": "011",
"wsj_name": "011C021A"
},
{
"dot": "Everybody else in town will tell you otherwise",
"environment": "PED",
"ir_end": 610.7105000000000,
"ir_start": 606.7548125000000,
"ir_wavfile": "M01_141118_050_PED",
"noise_end": 148.6661875000000,
"noise_start": 144.7215000000000,
"noise_wavfile": "BGD_150211_040_PED",
"prompt": "\"Everybody else in town will tell you otherwise.\"",
"speaker": "011",
"wsj_name": "011C021B"
},
{
"dot": "This was a temporary setback for Bank of New York",
"environment": "CAF",
"ir_end": 905.2211875000000,
"ir_start": 901.1293125000000,
"ir_wavfile": "M01_141118_020_CAF",
"noise_end": 1267.544875000000,
"noise_start": 1263.459562500000,
"noise_wavfile": "BGD_150205_040_CAF",
"prompt": "This was a temporary setback for Bank of New York.",
"speaker": "011",
"wsj_name": "011C021C"
},
{
"dot": "But last August the Federal Reserve Board told Banca Commerciale that it must file an application with the Fed as part of the Italian bank\\'s bid",
"environment": "PED",
"ir_end": 389.0211250000000,
"ir_start": 379.0336250000000,
"ir_wavfile": "M02_141128_040_PED",
"noise_end": 152.8079375000000,
"noise_start": 142.7785625000000,
"noise_wavfile": "BGD_150205_030_PED",
"prompt": "But last August the Federal Reserve Board told Banca Commerciale that it must file an application with the Fed as part of the Italian bank's bid.",
"speaker": "011",
"wsj_name": "011C021D"
},
{
"dot": "Banca Commerciale called the Fed\\'s requirements unacceptable and dropped its bid",
"environment": "BUS",
"ir_end": 257.1850625000000,
"ir_start": 250.9572500000000,
"ir_wavfile": "F03_141103_030_BUS",
"noise_end": 294.0666875000000,
"noise_start": 287.8031250000000,
"noise_wavfile": "BGD_150204_040_BUS",
"prompt": "Banca Commerciale called the Fed's requirements unacceptable and dropped its bid.",
"speaker": "011",
"wsj_name": "011C021E"
},
{
"dot": "If they are alarmed COMMA top Siemens officials don\\'t say so publiclyPERIOD",
"environment": "PED",
"ir_end": 1110.302375000000,
"ir_start": 1103.298625000000,
"ir_wavfile": "M02_141128_040_PED",
"noise_end": 480.2749375000000,
"noise_start": 473.2666875000000,
"noise_wavfile": "BGD_150203_020_PED",
"prompt": "If they are alarmed ,COMMA top Siemens officials don't say so publicly .PERIOD",
"speaker": "011",
"wsj_name": "011O0301"
},
{
"dot": "Mr\\. Baur COMMA as head of Siemens\\'s biggest telecommunications division COMMA calls the political fuss DOUBLE QUOTE exaggerated DOUBLE QUOTE and says the arguing doesn\\'t involve SiemensPERIOD",
"environment": "BUS",
"ir_end": 181.6791250000000,
"ir_start": 168.0398750000000,
"ir_wavfile": "M02_141128_060_BUS",
"noise_end": 45.44831250000000,
"noise_start": 30.03231250000000,
"noise_wavfile": "BGD_150204_010_BUS",
"prompt": "Mr. Baur ,COMMA as head of Siemens's biggest telecommunications division ,COMMA calls the political fuss \"DOUBLE-QUOTE exaggerated \"DOUBLE-QUOTE and says the arguing doesn't involve Siemens .PERIOD",
"speaker": "011",
"wsj_name": "011O0302"
},
{
"dot": "DOUBLE QUOTE We sell technology COMMA not politics COMMA DOUBLE QUOTE he saysPERIOD",
"environment": "BUS",
"ir_end": 397.3261250000000,
"ir_start": 387.8820625000000,
"ir_wavfile": "M02_141128_030_BUS",
"noise_end": 660.6226250000001,
"noise_start": 651.1983125000000,
"noise_wavfile": "BGD_150204_040_BUS",
"prompt": "\"DOUBLE-QUOTE We sell technology ,COMMA not politics ,COMMA \"DOUBLE-QUOTE he says .PERIOD",
"speaker": "011",
"wsj_name": "011O0303"
},
{
"dot": "The Treasury rules COMMA however COMMA contain modifications of the S\\. E\\. C\\. rules designed to improve protection of parties involved in repurchase agreementsPERIOD",
"environment": "CAF",
"ir_end": 947.7619999999999,
"ir_start": 934.9145625000000,
"ir_wavfile": "F02_141106_030_CAF",
"noise_end": 1488.068500000000,
"noise_start": 1475.161687500000,
"noise_wavfile": "BGD_150204_030_CAF",
"prompt": "The Treasury rules ,COMMA however ,COMMA contain modifications of the S. E. C. rules designed to improve protection of parties involved in repurchase agreements .PERIOD",
"speaker": "011",
"wsj_name": "011O0304"
},
{
"dot": "In such agreements COMMA called repos COMMA one party sells government securities to another with the understanding that the seller will repurchase them later at a specified pricePERIOD",
"environment": "CAF",
"ir_end": 1875.703812500000,
"ir_start": 1862.468312500000,
"ir_wavfile": "F03_141103_010_CAF",
"noise_end": 115.9850000000000,
"noise_start": 101.3198125000000,
"noise_wavfile": "BGD_150203_010_CAF",
"prompt": "In such agreements ,COMMA called repos ,COMMA one party sells government securities to another with the understanding that the seller will repurchase them later at a specified price .PERIOD",
"speaker": "011",
"wsj_name": "011O0305"
},
{
"dot": "The proposed modifications would apply to government securities brokers or dealers that are already registered COMMA as well as to newly registered entitiesPERIOD",
"environment": "PED",
"ir_end": 40.67212500000000,
"ir_start": 28.70525000000000,
"ir_wavfile": "M02_141128_040_PED",
"noise_end": 1166.269625000000,
"noise_start": 1154.438937500000,
"noise_wavfile": "BGD_150203_020_PED",
"prompt": "The proposed modifications would apply to government securities brokers or dealers that are already registered ,COMMA as well as to newly registered entities .PERIOD",
"speaker": "011",
"wsj_name": "011O0306"
},
{
"dot": "Mr\\. Cross is a Princeton COMMA N\\. J\\. COMMA investor and Mr\\. Slaine is president of Dealer\\'s Digest Incorporated in New YorkPERIOD",
"environment": "PED",
"ir_end": 40.67212500000000,
"ir_start": 28.70525000000000,
"ir_wavfile": "M02_141128_040_PED",
"noise_end": 1635.897937500000,
"noise_start": 1624.099250000000,
"noise_wavfile": "BGD_150205_030_PED",
"prompt": "Mr. Cross is a Princeton ,COMMA N. J. ,COMMA investor and Mr. Slaine is president of Dealer's Digest Incorporated in New York .PERIOD",
"speaker": "011",
"wsj_name": "011O0307"
},
{
"dot": "Mr\\. Cross called the purchases an investmentPERIOD",
"environment": "CAF",
"ir_end": 1513.631500000000,
"ir_start": 1508.723500000000,
"ir_wavfile": "M02_141128_020_CAF",
"noise_end": 1518.295187500000,
"noise_start": 1513.406125000000,
"noise_wavfile": "BGD_150205_040_CAF",
"prompt": "Mr. Cross called the purchases an investment .PERIOD",
"speaker": "011",
"wsj_name": "011O0308"
},
{
"dot": "Frost andAMPERSAND Sullivan couldn\\'t be reached for commentPERIOD",
"environment": "PED",
"ir_end": 787.1185625000001,
"ir_start": 781.1389375000000,
"ir_wavfile": "M01_141118_050_PED",
"noise_end": 1657.442562500000,
"noise_start": 1651.485375000000,
"noise_wavfile": "BGD_150203_020_PED",
"prompt": "Frost &ERSAND Sullivan couldn't be reached for comment .PERIOD",
"speaker": "011",
"wsj_name": "011O0309"
},
{
"dot": "DOUBLE QUOTE The Kroh brothers mismanaged COMMA but it was not for the purpose of lining their own pockets COMMA DOUBLE QUOTE he saysPERIOD",
"environment": "PED",
"ir_end": 366.8872500000000,
"ir_start": 355.3313750000000,
"ir_wavfile": "M02_141128_040_PED",
"noise_end": 854.3660000000000,
"noise_start": 842.6866874999999,
"noise_wavfile": "BGD_150205_030_PED",
"prompt": "\"DOUBLE-QUOTE The Kroh brothers mismanaged ,COMMA but it was not for the purpose of lining their own pockets ,COMMA \"DOUBLE-QUOTE he says .PERIOD",
"speaker": "011",
"wsj_name": "011O030A"
},
{
"dot": "DOUBLE QUOTE There are a lot of people in Kansas City who have turned their backs on themPERIOD",
"environment": "BUS",
"ir_end": 551.2056875000000,
"ir_start": 544.3540000000000,
"ir_wavfile": "F03_141103_030_BUS",
"noise_end": 388.5555000000001,
"noise_start": 381.6965625000000,
"noise_wavfile": "BGD_150204_030_BUS",
"prompt": "\"DOUBLE-QUOTE There are a lot of people in Kansas City who have turned their backs on them .PERIOD",
"speaker": "011",
"wsj_name": "011O030B"
},
{
"dot": "But if you\\'re a friend COMMA you\\'re a friend in bad times as well as goodPERIOD DOUBLE QUOTE",
"environment": "STR",
"ir_end": 521.1071875000000,
"ir_start": 513.7593125000000,
"ir_wavfile": "M01_141118_060_STR",
"noise_end": 1343.343437500000,
"noise_start": 1335.989250000000,
"noise_wavfile": "BGD_150211_030_STR",
"prompt": "But if you're a friend ,COMMA you're a friend in bad times as well as good .PERIOD \"DOUBLE-QUOTE",
"speaker": "011",
"wsj_name": "011O030C"
},
{
"dot": "White House chief Baker is sensitive to fears that Volcker\\'s departure would cause further market disruptionPERIOD",
"environment": "BUS",
"ir_end": 109.5944375000000,
"ir_start": 101.6805625000000,
"ir_wavfile": "M01_141118_040_BUS",
"noise_end": 9.604749999999999,
"noise_start": 1.688687500000000,
"noise_wavfile": "BGD_150204_040_BUS",
"prompt": "White House chief Baker is sensitive to fears that Volcker's departure would cause further market disruption .PERIOD",
"speaker": "011",
"wsj_name": "011O030D"
},
{
"dot": "But Volcker opponents argue for naming a G\\. O\\. P\\. loyalist who might be more accommodating during the nineteen eighty eight electionsPERIOD",
"environment": "CAF",
"ir_end": 750.0595000000000,
"ir_start": 740.7996250000000,
"ir_wavfile": "F03_141103_010_CAF",
"noise_end": 1811.552562500000,
"noise_start": 1802.292687500000,
"noise_wavfile": "BGD_150205_040_CAF",
"prompt": "But Volcker opponents argue for naming a G. O. P. loyalist who might be more accommodating during the nineteen eighty eight elections .PERIOD",
"speaker": "011",
"wsj_name": "011O030E"
},
{
"dot": "A new candidate to replace the Fed head is Treasury Undersecretary George GouldPERIOD",
"environment": "BUS",
"ir_end": 148.6724375000000,
"ir_start": 141.2686875000000,
"ir_wavfile": "M02_141128_030_BUS",
"noise_end": 110.6871250000000,
"noise_start": 103.2668125000000,
"noise_wavfile": "BGD_150204_010_BUS",
"prompt": "A new candidate to replace the Fed head is Treasury Undersecretary George Gould .PERIOD",
"speaker": "011",
"wsj_name": "011O030F"
},
{
"dot": "But economist Alan Greenspan remains a favoritePERIOD",
"environment": "STR",
"ir_end": 522.4935625000001,
"ir_start": 516.9377500000001,
"ir_wavfile": "M02_141128_050_STR",
"noise_end": 430.8718125000000,
"noise_start": 425.3149375000000,
"noise_wavfile": "BGD_150212_040_STR",
"prompt": "But economist Alan Greenspan remains a favorite .PERIOD",
"speaker": "011",
"wsj_name": "011O030G"
},
{
"dot": "Warrant dealing is DOUBLE QUOTE tricky DOUBLE QUOTE even for experienced traders COMMA adds Harry Sibley COMMA Morgan Stanley and Company\\'s equity HYPHEN warrant specialistPERIOD",
"environment": "STR",
"ir_end": 525.4865000000000,
"ir_start": 511.6510625000000,
"ir_wavfile": "F03_141103_050_STR",
"noise_end": 1032.240187500000,
"noise_start": 1017.533875000000,
"noise_wavfile": "BGD_150212_050_STR",
"prompt": "Warrant dealing is \"DOUBLE-QUOTE tricky \"DOUBLE-QUOTE even for experienced traders ,COMMA adds Harry Sibley ,COMMA Morgan Stanley and Company's equity -HYPHEN warrant specialist .PERIOD",
"speaker": "011",
"wsj_name": "011O030H"
},
{
"dot": "DOUBLE QUOTE It is common for one HYPHEN third of all issues traded to fluctuate at least five PERCENT in price every day COMMA DOUBLE QUOTE he saysPERIOD",
"environment": "CAF",
"ir_end": 1875.703812500000,
"ir_start": 1862.468312500000,
"ir_wavfile": "F03_141103_010_CAF",
"noise_end": 1847.460562500000,
"noise_start": 1832.395937500000,
"noise_wavfile": "BGD_150205_040_CAF",
"prompt": "\"DOUBLE-QUOTE It is common for one -HYPHEN third of all issues traded to fluctuate at least five %PERCENT in price every day ,COMMA \"DOUBLE-QUOTE he says .PERIOD",
"speaker": "011",
"wsj_name": "011O030I"
},
{
"dot": "That sort of volatility COMMA Mr\\. Sibley believes COMMA plus a severe shortage of experienced traders in London COMMA may restrict the number of additional players in Japanese equity warrantsPERIOD",
"environment": "STR",
"ir_end": 525.4865000000000,
"ir_start": 511.6510625000000,
"ir_wavfile": "F03_141103_050_STR",
"noise_end": 1066.185437500000,
"noise_start": 1050.466812500000,
"noise_wavfile": "BGD_150212_040_STR",
"prompt": "That sort of volatility ,COMMA Mr. Sibley believes ,COMMA plus a severe shortage of experienced traders in London ,COMMA may restrict the number of additional players in Japanese equity warrants .PERIOD",
"speaker": "011",
"wsj_name": "011O030J"
},
{
"dot": "Mr\\. Zinn said Entertainment Marketing is still weighing a proxy fightPERIOD",
"environment": "STR",
"ir_end": 977.6633125000000,
"ir_start": 971.3156875000000,
"ir_wavfile": "M01_141118_060_STR",
"noise_end": 1278.403000000000,
"noise_start": 1272.064875000000,
"noise_wavfile": "BGD_150203_010_STR",
"prompt": "Mr. Zinn said Entertainment Marketing is still weighing a proxy fight .PERIOD",
"speaker": "011",
"wsj_name": "011O030K"
},
{
"dot": "DOUBLE QUOTE It\\'s a bad feeling in your stomach when the chairman and previous bidder is selling his block COMMA DOUBLE QUOTE he saidPERIOD",
"environment": "STR",
"ir_end": 678.7123750000000,
"ir_start": 667.7150000000000,
"ir_wavfile": "F02_141106_020_STR",
"noise_end": 765.6056875000000,
"noise_start": 754.5820625000000,
"noise_wavfile": "BGD_150203_010_STR",
"prompt": "\"DOUBLE-QUOTE It's a bad feeling in your stomach when the chairman and previous bidder is selling his block ,COMMA \"DOUBLE-QUOTE he said .PERIOD",
"speaker": "011",
"wsj_name": "011O030L"
},
{
"dot": "DOUBLE QUOTE It doesn\\'t make me COMMA as a shareholder COMMA comfortable with what is happening in the companyPERIOD DOUBLE QUOTE",
"environment": "PED",
"ir_end": 1278.358125000000,
"ir_start": 1268.098500000000,
"ir_wavfile": "F03_141103_040_PED",
"noise_end": 784.3282500000000,
"noise_start": 774.0663125000000,
"noise_wavfile": "BGD_150211_040_PED",
"prompt": "\"DOUBLE-QUOTE It doesn't make me ,COMMA as a shareholder ,COMMA comfortable with what is happening in the company .PERIOD \"DOUBLE-QUOTE",
"speaker": "011",
"wsj_name": "011O030M"
},
{
"dot": "Then Secretary Haig took his plan to the White HousePERIOD",
"environment": "STR",
"ir_end": 807.6306250000000,
"ir_start": 802.1312500000000,
"ir_wavfile": "M01_141118_060_STR",
"noise_end": 1110.647187500000,
"noise_start": 1105.144187500000,
"noise_wavfile": "BGD_150212_040_STR",
"prompt": "Then Secretary Haig took his plan to the White House .PERIOD",
"speaker": "011",
"wsj_name": "011O030N"
},
{
"dot": "He insisted that the State Department must control the policy and even asked the president to order the Defense Department to supply personnel to help plan detailsPERIOD",
"environment": "STR",
"ir_end": 757.7816875000000,
"ir_start": 745.7379375000000,
"ir_wavfile": "F03_141103_050_STR",
"noise_end": 679.8181875000000,
"noise_start": 667.0833750000000,
"noise_wavfile": "BGD_150211_020_STR",
"prompt": "He insisted that the State Department must control the policy and even asked the president to order the Defense Department to supply personnel to help plan details .PERIOD",
"speaker": "011",
"wsj_name": "011O030O"
},
{
"dot": "The idea was rejectedPERIOD",
"environment": "STR",
"ir_end": 688.1478750000000,
"ir_start": 684.9120000000000,
"ir_wavfile": "M01_141118_060_STR",
"noise_end": 1203.665437500000,
"noise_start": 1200.426375000000,
"noise_wavfile": "BGD_150211_030_STR",
"prompt": "The idea was rejected .PERIOD",
"speaker": "011",
"wsj_name": "011O030P"
},
{
"dot": "American science faces a worrisome new threatPERIOD",
"environment": "PED",
"ir_end": 793.0302500000000,
"ir_start": 787.6904375000000,
"ir_wavfile": "M01_141118_050_PED",
"noise_end": 694.4758125000000,
"noise_start": 689.1395625000000,
"noise_wavfile": "BGD_150203_010_PED",
"prompt": "American science faces a worrisome new threat .PERIOD",
"speaker": "011",
"wsj_name": "011O030Q"
},
{
"dot": "It stems from a shift in the attitudes of the public at largePERIOD",
"environment": "STR",
"ir_end": 791.3238125000000,
"ir_start": 785.8957500000000,
"ir_wavfile": "M01_141118_060_STR",
"noise_end": 305.2316250000000,
"noise_start": 299.7840000000000,
"noise_wavfile": "BGD_150212_040_STR",
"prompt": "It stems from a shift in the attitudes of the public at large .PERIOD",
"speaker": "011",