-
Notifications
You must be signed in to change notification settings - Fork 0
/
newTranscript.json
4741 lines (4741 loc) · 215 KB
/
newTranscript.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
[{
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:01:20.000Z",
"text": "Good evening from the Health Education Campus of Case Western Reserve University and the Cleveland Clinic. I'm Chris Wallace of Fox News and I welcome you to the first of the 2020 Presidential Debates between President Donald J. Trump and former Vice President Joe Biden. This debate is sponsored by the Commission on Presidential debates. The Commission has designed the format, six roughly 15 minute segments with two minute answers from each candidate to the first question, then open discussion for the rest of each segment. Both campaigns have agreed to these rules. For the record, I decided the topics and the questions in each topic. I can assure you none of the questions has been shared with the Commission or the two candidates.",
"word_count": 124
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:02:10.000Z",
"text": "This debate is being conducted under health and safety protocols designed by the Cleveland Clinic, which is serving as the Health Security advisor to the Commission for all four debates. As a precaution, both campaigns have agreed the candidates will not shake hands at the beginning of tonight's debate. The audience here in the hall has promised to remain silent. No cheers, no boos, or other interruptions so we, and more importantly you, can focus on what the candidates have to say. No noise except right now, as we welcome the Republican nominee, President Trump, and the Democratic nominee Vice President Biden.",
"word_count": 102
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:02:49.000Z",
"text": "How you doing, man?",
"word_count": 4
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:02:51.000Z",
"text": "How are you doing?",
"word_count": 4
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:02:51.000Z",
"text": "I'm well.",
"word_count": 2
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:03:11.000Z",
"text": "Gentlemen, a lot of people been waiting for this night, so let's get going. Our first subject is the Supreme Court. President Trump, you nominated Amy Coney Barrett over the weekend to succeed the late Ruth Bader Ginsburg on the Court. You say the Constitution is clear about your obligation and the Senate's to consider a nominee to the Court. Vice President Biden, you say that this is an effort by the President and Republicans to jam through on an appointment in what you call an abuse of power. My first question to both of you tonight, why are you right in the argument you make and your opponent wrong? And where do you think a Justice Barrett would take the court? President Trump, in this first segment, you go first. Two minutes.",
"word_count": 133
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:04:01.000Z",
"text": "Thank you very much, Chris. I will tell you very simply. We won the election. Elections have consequences. We have the Senate, we have the White House, and we have a phenomenal nominee respected by all. Top, top academic, good in every way. Good in every way. In fact, some of her biggest endorsers are very liberal people from Notre Dame and other places. So I think she's going to be fantastic. We have plenty of time. Even if we did it after the election itself. I have a lot of time after the election, as you know. So I think that she will be outstanding. She's going to be as good as anybody that has served on that court. We really feel that. We have a professor at Notre Dame, highly respected by all, said she's the single greatest student he's ever had. He's been a professor for a long time at a great school.",
"word_count": 156
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:04:53.000Z",
"text": "And we won the election and therefore we have the right to choose her, and very few people knowingly would say otherwise. And by the way, the Democrats, they wouldn't even think about not doing it. The only difference is they'd try and do it faster. There's no way they would give it up. They had Merrick Garland, but the problem is they didn't have the election so they were stopped. And probably that would happen in reverse, also. Definitely would happen in reverse. So we won the election and we have the right to do it, Chris.",
"word_count": 98
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:05:22.000Z",
"text": "President Trump, thank you. Same question to you, Vice President Biden. You have two minutes.",
"word_count": 15
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:05:29.000Z",
"text": "Well, first of all, thank you for doing this and looking forward to this, Mr. President.",
"word_count": 16
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:05:34.000Z",
"text": "Thank you, Joe.",
"word_count": 3
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:05:36.000Z",
"text": "The American people have a right to have a say in who the Supreme Court nominee is and that say occurs when they vote for United States Senators and when they vote for the President of United States. They're not going to get that chance now because we're in the middle of an election already. The election has already started. Tens of thousands of people already voted and so the thing that should happen is we should wait. We should wait and see what the outcome of this election is because that's the only way the American people get to express their view is by who they elect as President and who they elect as Vice President.",
"word_count": 117
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:06:12.000Z",
"text": "Now, what's at stake here is the President's made it clear, he wants to get rid of the Affordable Care Act. He's been running on that, he ran on that and he's been governing on that. He's in the Supreme Court right now trying to get rid of the Affordable Care Act, which will strip 20 million people from having health insurance now, if it goes into court. And the justice, I'm not opposed to the justice, she seems like a very fine person. But she's written, before she went in the bench, which is her right, that she thinks that the Affordable Care Act is not Constitutional. The other thing that's on the court, and if it's struck down, what happens? Women's rights are fundamentally changed. Once again, a woman could pay more money because she has a pre-existing condition of pregnancy. They're able to charge women more for the same exact procedure a man gets.",
"word_count": 157
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:07:08.000Z",
"text": "And that ended when we, in fact, passed the Affordable Care Act, and there's a hundred million people who have pre-existing conditions and they'll be taken away as well. Those pre-existing conditions, insurance companies are going to love this. And so it's just not appropriate to do this before this election. If he wins the election and the Senate is Republican, then he goes forward. If not, we should wait until February.",
"word_count": 72
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:07:34.000Z",
"text": "There aren't a hundred million people with pre-existing conditions. As far as a say is concerned, the people already had their say. Okay, Justice Ginsburg said very powerfully, very strongly, at some point 10 years ago or so, she said a President and the Senate is elected for a period of time, but a President is elected for four years. We're not elected for three years. I'm not elected for three years. So we have the Senate, we have a President-",
"word_count": 81
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:08:01.000Z",
"text": "He's elected to the next election.",
"word_count": 6
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:08:02.000Z",
"text": "During that period of time, during that period of time, we have an opening. I'm not elected for three years. I'm elected for four years. Joe, the hundred million people is totally wrong. I don't know where you got that number. The bigger problem that you have is that you're going to extinguish 180 million people with their private health care, that they're very happy this.",
"word_count": 66
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:08:24.000Z",
"text": "That's simply not true.",
"word_count": 4
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:08:25.000Z",
"text": "Well, you're certainly going to socialist. You're going to socialist-",
"word_count": 10
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:08:29.000Z",
"text": "Gentlemen, we're now into open discussion.",
"word_count": 6
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:08:31.000Z",
"text": "Open discussion.",
"word_count": 2
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:08:32.000Z",
"text": "Open discussion, yes, I agree. Go ahead, Vice President.",
"word_count": 9
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:08:33.000Z",
"text": "Number one, he knows what I proposed. What I proposed is that we expand Obamacare and we increase it. We do not wipe any. And one of the big debates we had with 23 of my colleagues trying to win the nomination that I won, were saying that Biden wanted to allow people to have private insurance still. They can. They do. They will under my proposal.",
"word_count": 67
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:08:58.000Z",
"text": "That's not what you've said and it's not what your party is saying.",
"word_count": 13
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:09:00.000Z",
"text": "That is simply a lie.",
"word_count": 5
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:09:02.000Z",
"text": "Your party doesn't say it. Your party wants to go socialist medicine and socialist healthcare.",
"word_count": 15
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:09:05.000Z",
"text": "The party is me. Right now, I am the Democratic Party.",
"word_count": 11
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:09:08.000Z",
"text": "And they're going to dominate you, Joe. You know that.",
"word_count": 10
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:09:09.000Z",
"text": "I am the Democratic Party right now.",
"word_count": 7
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:09:11.000Z",
"text": "Not according to Harris.",
"word_count": 4
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:09:12.000Z",
"text": "The platform of the Democratic Party is what I, in fact, approved of, what I approved of. Now, here's the deal. The deal is that it's going to wipe out pre-existing conditions. And, by the way, the 200,000 people that have died on his watch, how many of those have survived? Well, there's seven million people that contracted COVID. What does it mean for them going forward if you strike down the Affordable Care Act?",
"word_count": 75
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:09:39.000Z",
"text": "Joe, you've had 308,000 military people dying because you couldn't provide them proper healthcare in the military. So don't tell me about this.",
"word_count": 23
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:09:47.000Z",
"text": "I'm happy to talk about this.",
"word_count": 6
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:09:48.000Z",
"text": "And if you were here, it wouldn't be 200, it would be two million people because you were very late on the draw. You didn't want me to ban China, which was heavily infected. You didn't want me to ban Europe.",
"word_count": 41
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:09:58.000Z",
"text": "All right, gentlemen, Mr. President.",
"word_count": 5
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:10:00.000Z",
"text": "You would have been much later, Joe, much later.",
"word_count": 9
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:10:04.000Z",
"text": "Mr. President.",
"word_count": 2
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:10:04.000Z",
"text": "We're talking about two million people.",
"word_count": 6
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:10:05.000Z",
"text": "You're not going to be able to shut him up.",
"word_count": 10
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:10:06.000Z",
"text": "Mr. President, as the moderator, we are going to talk about COVID in the next segment. But go ahead.",
"word_count": 19
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:10:11.000Z",
"text": "Let me finish. The point is that the President also is opposed to Roe V. Wade. That's on the ballot as well and the court, in the court, and so that's also at stake right now. And so the election is all-",
"word_count": 42
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:10:25.000Z",
"text": "You don't know what's on the ballot. Why is it on the ballot? Why is it on the ballot? It's not on the ballot.",
"word_count": 24
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:10:31.000Z",
"text": "It's on the ballot in the court.",
"word_count": 7
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:10:32.000Z",
"text": "I don't think so.",
"word_count": 4
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:10:33.000Z",
"text": "In the court.",
"word_count": 3
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:10:34.000Z",
"text": "There's nothing happening there.",
"word_count": 4
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:10:35.000Z",
"text": "Donald would you just be quiet for a minute.",
"word_count": 9
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:10:36.000Z",
"text": "You don't know her view on Roe V. Wade? You don't know here view.",
"word_count": 14
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:10:40.000Z",
"text": "Well, all right. All right. Let's talk. We've got a lot to unpack here, gentlemen. We've got a lot of time. On healthcare, and then we'll come back to Roe V. Wade.",
"word_count": 32
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:10:51.000Z",
"text": "All right.",
"word_count": 2
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:10:51.000Z",
"text": "Mr. President, the Supreme Court will hear a case a week after the election in which the Trump Administration, along with 18 state Attorney Generals are seeking to overturn Obamacare, to end Obamacare.",
"word_count": 33
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:11:05.000Z",
"text": "That's right.",
"word_count": 2
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:11:05.000Z",
"text": "You have spent the last week-",
"word_count": 6
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:11:07.000Z",
"text": "Because they want to give good healthcare.",
"word_count": 7
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:11:08.000Z",
"text": "If I may ask my question, sir.",
"word_count": 7
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:11:11.000Z",
"text": "Good healthcare.",
"word_count": 2
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:11:11.000Z",
"text": "Over the last four years, you have promised to repeal and replace Obamacare, but you have never in these four years come up with a plan, a comprehensive plan, to replace Obamacare.",
"word_count": 32
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:11:25.000Z",
"text": "Yes, I have. Of course, I have. The individual mandate.",
"word_count": 10
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:11:26.000Z",
"text": "[crosstalk 00:11:26] when I finish I'm going to give an opportunity-",
"word_count": 11
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:11:28.000Z",
"text": "Excuse me. I got rid of the individual mandate, which was a big chunk of Obamacare.",
"word_count": 16
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:11:31.000Z",
"text": "That's not a comprehensive place.",
"word_count": 5
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:11:32.000Z",
"text": "That is absolutely a big thing. That was the worst part of Obamacare.",
"word_count": 13
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:11:35.000Z",
"text": "I didn't ask, sir.",
"word_count": 4
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:11:36.000Z",
"text": "Chris, that was the worst part of Obamacare.",
"word_count": 8
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:11:38.000Z",
"text": "You're debating him not me. Let me ask my question.",
"word_count": 10
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:11:38.000Z",
"text": "Well, I'll ask Joe. The individual mandate was the most unpopular aspect of Obamacare.",
"word_count": 14
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:11:44.000Z",
"text": "Mr. President.",
"word_count": 2
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:11:44.000Z",
"text": "I got rid of it. And we will protect people.",
"word_count": 10
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:11:46.000Z",
"text": "Mr. President, I'm the moderator of this debate and I would like you to let me ask my question and then you can answer.",
"word_count": 24
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:11:52.000Z",
"text": "Go ahead.",
"word_count": 2
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:11:53.000Z",
"text": "You, in the course of these four years, have never come up with a comprehensive plan to replace Obamacare, and just this last Thursday you signed a largely symbolic Executive Order to protect people with pre-existing conditions five days before this debate. So my question, sir, is what is the Trump healthcare plan?",
"word_count": 53
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:12:16.000Z",
"text": "Well, first of all, I guess I'm debating you, not him, but that's okay. I'm not surprised. Let me just tell you something. There's nothing symbolic. I'm cutting drug prices. I'm going with Favored Nations, which no President has the courage to do because you're going against big pharma. Drug prices will be coming down 80 or 90%. You could have done it during your 47 year period in government, but you didn't do it. Nobody's done it. So we're cutting healthcare.",
"word_count": 82
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:12:40.000Z",
"text": "What about pre-existing conditions?",
"word_count": 4
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:12:40.000Z",
"text": "All of the things that we've done.",
"word_count": 7
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:12:41.000Z",
"text": "He has not done healthcare.",
"word_count": 5
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:12:42.000Z",
"text": "I'll give you an example. Insulin, it was destroying families, destroying people, the cost. I'm getting it for so cheap it's like water, you want to know the truth. So cheap. Take a look at all of the drugs that what we're doing. Prescription drug prices, we're going to allow our Governors now to go to other countries to buy drugs because when they paid just a tiny fraction of what we do.",
"word_count": 73
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:13:03.000Z",
"text": "Okay, like I say, this is open discussion.",
"word_count": 8
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:13:04.000Z",
"text": "This is big stuff.",
"word_count": 4
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:13:06.000Z",
"text": "Sir, you'll be happy. I'm about to pick up on one of your points to ask the Vice President, which is, he points out that you would like to add a public option to Obamacare.",
"word_count": 35
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:13:17.000Z",
"text": "Yes.",
"word_count": 1
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:13:17.000Z",
"text": "And the argument that he makes and other Republicans make is that that is going to end private insurance.",
"word_count": 19
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:13:23.000Z",
"text": "It is not.",
"word_count": 3
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:13:25.000Z",
"text": "If I start asking the question.",
"word_count": 6
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:13:26.000Z",
"text": "That's not what your party says, by the way.",
"word_count": 9
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:13:29.000Z",
"text": "And it will end private insurance and create a government takeover of health.",
"word_count": 13
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:13:32.000Z",
"text": "It does not. It's only for those people who are so poor they qualify for Medicaid they can get that free in most States, except Governors who want to deny people who are poor Medicaid. Anyone who qualifies for Medicaid would automatically be enrolled in the public option. The vast majority of the American people would still not be in that option. Number one. Number two.",
"word_count": 66
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:13:57.000Z",
"text": "Joe, you agreed with Bernie Sanders, who's far left, on the manifesto, we call it. And that gives you socialized medicine.",
"word_count": 21
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:14:04.000Z",
"text": "Look, hey.",
"word_count": 2
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:14:05.000Z",
"text": "Are you saying you didn't agree?",
"word_count": 6
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:14:06.000Z",
"text": "I'm not going to listen to him. The fact of the matter is I beat Bernie Sanders.",
"word_count": 17
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:14:10.000Z",
"text": "Not by much.",
"word_count": 3
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:14:10.000Z",
"text": "I beat him by a whole hell of a lot.",
"word_count": 10
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:14:12.000Z",
"text": "Not by much.",
"word_count": 3
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:14:12.000Z",
"text": "I'm here standing facing you, old buddy.",
"word_count": 7
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:14:14.000Z",
"text": "If Pocahontas would have left two days early you would have lost every primary.",
"word_count": 14
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:14:17.000Z",
"text": "All he knows how to do-",
"word_count": 6
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:14:18.000Z",
"text": "On Super Tuesday, you got very lucky.",
"word_count": 7
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:14:21.000Z",
"text": "Look he's the deal. I got very lucky. I'm going to get very lucky tonight as well.",
"word_count": 17
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:14:23.000Z",
"text": "With what?",
"word_count": 2
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:14:23.000Z",
"text": "And tonight I'm going to make sure.",
"word_count": 7
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:14:25.000Z",
"text": "With what?",
"word_count": 2
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:14:25.000Z",
"text": "Because here's the deal, here's the deal. The fact is that everything he's saying so far is simply a lie. I'm not here to call out his lies. Everybody knows he's a liar.",
"word_count": 33
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:14:34.000Z",
"text": "But you agree. Joe, you're the liar. You graduated last in your class not first in your class.",
"word_count": 18
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:14:41.000Z",
"text": "God, I want to make sure-",
"word_count": 6
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:14:43.000Z",
"text": "Mr. President, can you let him finish, sir?",
"word_count": 8
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:14:44.000Z",
"text": "No, he doesn't know how to do that.",
"word_count": 8
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:14:46.000Z",
"text": "You'd be surprised. You'd be surprised. Go ahead, Joe.",
"word_count": 9
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:14:47.000Z",
"text": "The wrong guy, the wrong night, at the wrong time.",
"word_count": 10
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:14:51.000Z",
"text": "Listen, you agreed with Bernie Sanders and the manifesto.",
"word_count": 9
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:14:55.000Z",
"text": "There is no manifesto, number one.",
"word_count": 6
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:14:57.000Z",
"text": "Please let him speak, Mr. President.",
"word_count": 6
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:14:58.000Z",
"text": "Number two.",
"word_count": 2
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:14:58.000Z",
"text": "He just lost the left.",
"word_count": 5
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:14:59.000Z",
"text": "Number two.",
"word_count": 2
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:15:01.000Z",
"text": "You just lost the left. You agreed with Bernie Sanders on a plan that you absolutely agreed to and under that plan [crosstalk 00:15:10], they call it socialized medicine.",
"word_count": 29
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:15:13.000Z",
"text": "Mr. President.",
"word_count": 2
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:15:14.000Z",
"text": "I'll tell you what, he is not for any help for people needing healthcare.",
"word_count": 14
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:15:20.000Z",
"text": "Who is, Bernie?",
"word_count": 3
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:15:21.000Z",
"text": "Because he, in fact, already has costs 10 million people their healthcare that they had from their employers because of his recession. Number one. Number two, there are 20 million people getting healthcare through Obamacare now that he wants to take it away. He won't ever look you in the eye and say that's what he wants to do. Take it away.",
"word_count": 62
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:15:41.000Z",
"text": "No, I want to give them better healthcare at a much lower price, because Obamacare is no good.",
"word_count": 18
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:15:45.000Z",
"text": "He doesn't know how. He doesn't know how to do that.",
"word_count": 11
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:15:46.000Z",
"text": "I've already fixed it.",
"word_count": 4
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:15:47.000Z",
"text": "He has never offered a plan.",
"word_count": 6
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:15:49.000Z",
"text": "We've already fixed it to an extent. Obamacare, as you might know but probably don't, Obamacare is no good.",
"word_count": 19
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:15:54.000Z",
"text": "Gentlemen, you realize if you're both speaking at the same time. Let the President. Go ahead, sir.",
"word_count": 17
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:15:59.000Z",
"text": "Obamacare is no good. We made it better and I had a choice to make very early on. We took away the individual mandate. We guaranteed pre-existing conditions, but took away the individual mandate. Listen, this is the way it is. And that destroyed ... They shouldn't even call it Obamacare, then I had a choice to make, do I let my people run it really well or badly? If I run it badly, they'll probably blame him, but they'll blame me. But more importantly, I want to help people. Okay. I said, \"You've got to run it so well.\" And I just had a meeting with them. They said the problem is, no matter how well you run Obamacare, it's a disaster. It's too expensive. Premiums are too high, that it doesn't work. So we do want to get rid of it. Chris, we want to get rid of that and give something that's cheaper and better.",
"word_count": 158
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:16:42.000Z",
"text": "I understand that, sir. But I have to give you roughly equal time.",
"word_count": 13
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:16:45.000Z",
"text": "Go ahead.",
"word_count": 2
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:16:45.000Z",
"text": "Please let the Vice President talk, sir.",
"word_count": 7
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:16:47.000Z",
"text": "Good.",
"word_count": 1
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:16:48.000Z",
"text": "He has no plan for healthcare.",
"word_count": 6
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:16:50.000Z",
"text": "Of course, we do.",
"word_count": 4
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:16:52.000Z",
"text": "Please.",
"word_count": 1
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:16:52.000Z",
"text": "He sends out wishful thinking. He has Executive Orders that have no power. He hasn't lowered drug costs for anybody. He's been promising a healthcare plan since he got elected. He has none, like almost everything else he talks about. He does not have a plan. He doesn't have a plan. And the fact is this man doesn't know what he's talking about. [crosstalk 00:17:14].",
"word_count": 65
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:17:13.000Z",
"text": "All right, I have one final question for you.",
"word_count": 9
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:17:15.000Z",
"text": "Sure.",
"word_count": 1
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:17:16.000Z",
"text": "Mr. Vice President, if Senate Republicans, we were talking originally about the Supreme Court here, if Senate Republicans go ahead and confirm Justice Barrett there has been talk about ending the filibuster or even packing the court, adding to the nine justices there. You call this a distraction by the President. But, in fact, it wasn't brought up by the President. It was brought up by some of your Democratic colleagues in the Congress. So my question to you is, you have refused in the past to talk about it, are you willing to tell the American tonight whether or not you will support either ending the filibuster or packing the court?",
"word_count": 112
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:17:55.000Z",
"text": "Whatever position I take on that, that'll become the issue. The issue is the American people should speak. You should go out and vote. You're voting now. Vote and let your Senators know strongly how you feel.",
"word_count": 37
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:18:05.000Z",
"text": "Are you going to pack the court?",
"word_count": 7
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:18:07.000Z",
"text": "Vote now.",
"word_count": 2
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:18:08.000Z",
"text": "Are you going to pack the court?",
"word_count": 7
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:18:09.000Z",
"text": "Make sure you, in fact, let people know, your Senators.",
"word_count": 10
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:18:12.000Z",
"text": "He doesn't want to answer the question.",
"word_count": 7
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:18:17.000Z",
"text": "I'm not going to answer the question.",
"word_count": 7
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:18:18.000Z",
"text": "Why wouldn't you answer that question? You want to put a lot of new Supreme Court Justices. Radical left.",
"word_count": 19
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:18:18.000Z",
"text": "Will you shut up, man?",
"word_count": 5
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:18:20.000Z",
"text": "Listen, who is on your list, Joe? Who's on your list?",
"word_count": 11
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:18:23.000Z",
"text": "Gentlemen, I think we've ended this-",
"word_count": 6
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:18:25.000Z",
"text": "This is so un-Presidential.",
"word_count": 4
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:18:25.000Z",
"text": "He's going to pack the court. He is not going to give a list.",
"word_count": 14
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:18:27.000Z",
"text": "We have ended the segment. We're going to move on to the second segment.",
"word_count": 14
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:18:30.000Z",
"text": "That was really a productive segment, wasn't it? Keep yapping, man.",
"word_count": 11
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:18:35.000Z",
"text": "The people understand, Joe.",
"word_count": 4
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:18:37.000Z",
"text": "They sure do.",
"word_count": 3
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:18:37.000Z",
"text": "47 years, you've done nothing. They're understand.",
"word_count": 7
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:18:40.000Z",
"text": "All right, the second subject is COVID-19, which is an awfully serious subject. So let's try to be serious about it. We have had more than seven million cases of coronavirus in the United States and more than 200,000 people have died. Even after we produce a vaccine, experts say that it could be months or even years before we come back to anything approaching normal. My question for both of you is, based on what you have said and done so far, and what you have said you would do starting in 2021, why should the American people trust you more than your opponent to deal with this public health crisis going forward? In this case, the question goes to you first, sir. Two minutes, uninterrupted.",
"word_count": 127
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:19:33.000Z",
"text": "Good luck. 200,000 dead. As you said, over seven million infected in the United States. We, in fact, have 4% of the world's population, 20% of the deaths. 40,000 people a day are contracting COVID. In addition to that, about between 750 and 1000 people a day are dying. When he was presented with that number, he said, \"It is what it is.\" Well, it is what it is because you are who you are. That's why it is. The President has no plan. He hasn't laid out anything. He knew all the way back in February how serious this crisis was. He knew it was a deadly disease. What did he do? He's on tape as acknowledging he knew it. He said he didn't tell us or give people a warning of it because he didn't want to panic the American people. You don't panic. He panicked. In addition to that, what did he do?",
"word_count": 156
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:20:30.000Z",
"text": "He went in and we were insisting that the people we had in the ground in China should be able to go to Wuhan and determine for themselves how dangerous this was. He did not even ask Xi to do that.",
"word_count": 41
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:20:43.000Z",
"text": "Wrong.",
"word_count": 1
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:20:43.000Z",
"text": "He told us what a great job Xi was doing. He said we owe him debt of gratitude for being so transparent with us. And what did he do then? He then did nothing. He waited and waited and waited. He still doesn't have a plan.",
"word_count": 46
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:20:57.000Z",
"text": "Wrong.",
"word_count": 1
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:20:57.000Z",
"text": "Sir, it's his two minutes.",
"word_count": 5
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:20:57.000Z",
"text": "It's so wrong.",
"word_count": 3
}, {
"full_name": "Vice President Joe Biden",
"name": "Biden",
"time_stamp": "2020-09-30T01:20:57.000Z",
"text": "I laid out back in March, exactly what we should be doing. And I laid out again in July, what we should be doing. We should be providing all the protective gear possible. We should be providing the money the House has passed in order to be able to go out and get people the help they need to keep their businesses open. Open schools cost a lot of money. You should get out of your bunker and get out of the sand trap in your golf course and go in the Oval Office and bring together the Democrats and Republicans and fund what needs to be done now to save lives.",
"word_count": 112
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:21:30.000Z",
"text": "So, if we would have listened to you.",
"word_count": 8
}, {
"full_name": "Chris Wallace",
"name": "Wallace",
"time_stamp": "2020-09-30T01:21:31.000Z",
"text": "Wait, wait. You have two minutes, sir.",
"word_count": 7
}, {
"full_name": "President Donald J. Trump",
"name": "Trump",
"time_stamp": "2020-09-30T01:21:31.000Z",