-
Notifications
You must be signed in to change notification settings - Fork 30
/
onlytc_result.txt
3122 lines (3122 loc) · 423 KB
/
onlytc_result.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
('<s> thats true . uncle <person> <unk> really an uncle . he was a business partner of my <unk> ? and my mama never knew nothin about me and him - thats for damn sure . his real name was somethin kind of european , like <person> . but everyone just called him <person> . he came around the house sometimes when <person> was away . i always figured he was sweet on mama , so when he cornered me one afternoon , i was surprised <unk> a little . </s>', 0) | <s> no , no , no , no , no , no , no , no , no , no ,
("<s> they ' re boxing us in with these rules of engagement . if you agree to ' em , and one of our planes gets knocked down or one of the ships won ' t stop for inspection , the <unk> will have us by the balls and will force us to start shooting . they want a war , and they ' re <unk> things to get one . if you don ' t want one , we have to do something about it . </s>", 0) | <s> i ' m not going to tell you , <person> . i don ' t know what you ' re
("<s> that this was a random drug seizure . i ' m not using names and i ' m number <unk> everything . a load of interesting stuff too . i got <unk> <unk> , more dope than i ' ve ever seen , and some mail from business associates that seems <unk> . we should follow <unk> <unk> , this one , <unk> <unk> ' <person> had some real estate <unk> </s>", 0) | <s> i don ' t know . i don ' t know . i ' m just . i ' m
("<s> no , not quite . we didn ' t give you this . you ' re creating it yourself -- remember the option we offered you ? intelligence agent ? something inside you liked that idea , <unk> on it . what you ' re experiencing now is a <unk> delusion that you yourself are <unk> . </s>", 0) | <s> i ' ll tell you what i ' m going to do . i ' m going to have to
("<s> i know what i said but not now . you won it . <person> . you won it . when they give you the money , that means that you won . we don ' t want to go to court -- is this getting to you . ? </s>", 0) | <s> i don ' t know what you ' re talking about . i ' m not going to tell you
("<s> i became incompetent . is there anything more unbecoming than an <unk> <unk> ? i cared about your father . i lived and <unk> for him . but these guys , the board , they think you ' re stupid . a corporate hazard , a rogue . </s>", 0) | <s> <person> , i ' m not a <unk> . i don ' t know what you ' re doing .
("<s> i ' m sorry . i am happy . i ' m very happy for you . i ' m glad you had a good time . it ' s about time . where is he now ? </s>", 0) | <s> i don ' t know . i ' m sorry . i ' m sorry . i ' m just
("<s> i ' ve seen enough . turn it off . <continued_utterance> they ' re <unk> . there ' s not a man in there that would give a damn if the chinese took over . </s>", 0) | <s> i ' m not going to tell you , <person> . i don ' t know what you ' re
("<s> i almost didn ' t recognize you without . you know . that <unk> between . your . uh . legs . <continued_utterance> that sounded so much better in my head . </s>", 0) | <s> <person> , i don ' t know what you ' re talking about . i ' m just gon na
("<s> <person> . it ' s because you ain ' t got the baby <unk> in your brain any more . that ' ll fuck with your head , that stuff will . </s>", 0) | <s> <person> , i ' ll tell you what i ' m going to do . i ' m going to
("<s> now that he ' s in the real world , there are no longer limitations on his behavior like there were in <unk> reality . <person> is going to <unk> . </s>", 0) | <s> <person> , i ' m sorry . i ' m sorry . i ' m sorry . i ' m
("<s> not a whole helluva lot . his final transmission was <unk> . about something or someone called `` <unk> '' . whatever it is , it cost him his life . </s>", 0) | <s> <person> , i ' m sorry . i ' m sorry . i ' m sorry . i ' m
("<s> so why don ' t you tell me something about who you gather information for . they obviously have very deep pockets . are you from a rival clan ? </s>", 0) | <s> <person> , i ' m sorry . i ' m sorry . i ' m sorry . i ' m
("<s> oh , c ' mon -- i love him ! only , i ' d like to see you alone for once , that ' s all . </s>", 0) | <s> no , no , no , no , no , no , no , no , no , no ,
("<s> <person> , i don ' t know . you tell me . you ' re the indian . <continued_utterance> get a tail on her , <person> . </s>", 0) | <s> i don ' t know . i just don ' t know what to do . </s>
("<s> ' home improvement commission . <unk> begin today . `` is this <unk> ? what are they gon na see ? if there are any communists ? </s>", 0) | <s> i ' m sorry , <person> . i don ' t know what you ' re doing . </s>
("<s> what a <unk> ! and that other idiot isn ' t back yet ! <continued_utterance> so you love to be held by strangers , do you ? </s>", 0) | <s> <person> , i ' m sorry . i ' m sorry . i ' m sorry . </s>
("<s> and with my magic i ' ll send her into the . into the . he <unk> for a word . <unk> laughs at him . </s>", 0) | <s> i don ' t know . i ' m sorry . i ' m sorry . </s>
('<s> it aint . its part of the lessons of life . i picked me up a pack of <unk> before we left the cape ? </s>', 0) | <s> <person> , i don ' t know . i don ' t think so . </s>
('<s> and i kicked ass . my best stuff . then i stood in the hallway and listened to her audition . and i cried . </s>', 0) | <s> <person> , i don ' t know what you ' re talking about . </s>
("<s> telephone ? the <unk> across the valley . they ' re <unk> . they have cars and <unk> and <unk> in the houses even . </s>", 0) | <s> <person> ' t worry . i ' ll be back in the morning . </s>
("<s> <person> , the trunk . it ' s locked . throw the keys up to me . i ' ll get the rope . </s>", 0) | <s> <person> , i don ' t know what you ' re doing . </s>
("<s> you bought her some time , <person> . <person> ' t never gon na be over . but you bought her some time . </s>", 0) | <s> i don ' t know what you ' re talking about . </s>
("<s> i don ' t care what they ' re doing as long as they ' re doing it way over there . </s>", 0) | <s> i don ' t know what you ' re talking about . </s>
("<s> no , i ' d miss them -- i ' m sure . i hardly got to use them yet . </s>", 0) | <s> <person> , i don ' t know what you ' re talking about . </s>
("<s> no , sir , we did not . <continued_utterance> i ' m sam <person> , if you ever need me . </s>", 0) | <s> <person> , i don ' t know what you ' re doing . </s>
("<s> <unk> of your <unk> ' bullshit . i ' ll <unk> with an admission of guilt to <person> himself . </s>", 0) | <s> i don ' t know what you ' re talking about . </s>
("<s> all right . ' cause you get armed <unk> climbing into soviet ships , shots being fired across bows . </s>", 0) | <s> i don ' t think it ' s a good idea . </s>
('<s> i think you must have an idea . they <unk> a history of problems <unk> back to <number> . </s>', 0) | <s> i don ' t know . i don ' t know . </s>
('<s> yes , you found him ! i heard you found a horse in the wire between the armies - </s>', 0) | <s> i don ' t know . i don ' t know . </s>
("<s> i didn ' t know they gave them for best lip <unk> <unk> during a blow job . </s>", 0) | <s> <person> , you don ' t have to do that . </s>
("<s> i ' ll show <person> . he ' ll be sorry when i get this thing open . </s>", 0) | <s> i ' m not going to tell you , <person> . </s>
("<s> <person> ' s claws and a bear ' s balls that ' s what her profile says . </s>", 0) | <s> <person> , i ' m not going to tell you . </s>
("<s> what are you talking ? ! he ' s had two months training in those <unk> ! </s>", 0) | <s> <person> , i ' m not gon na do it . </s>
('<s> that was in my office . in my home you will call me dr . <person> . </s>', 0) | <s> <person> , i ' ll see you in the morning . </s>
('<s> hopefully the exchange of training methods and information between our countries will help with this problem . </s>', 0) | <s> i ' m not going to be a <unk> . </s>
("<s> sick . you ever had a bee buzz your face that wouldn ' t go away ? </s>", 0) | <s> i ' m not going to be a <unk> . </s>
("<s> she ' s protecting the doctors she ' d be up there on the stand . </s>", 0) | <s> i ' d like to see you again . </s>
("<s> i don ' t understand what ' s happening . what man in the house ? </s>", 0) | <s> i ' ll see you in the morning . </s>
("<s> why the fuck would i do that ? i ' d be screwing myself . </s>", 0) | <s> i don ' t know . i ' m sorry . </s>
('<s> really . our lives have been out of control for the past six months . </s>', 0) | <s> <person> , i ' m not a good man . </s>
('<s> no . ! <continued_utterance> great . what are we supposed to do now ? </s>', 0) | <s> i ' m not going to tell you . </s>
('<s> how fascinating ! i bet you meet all the most fabulous people . </s>', 0) | <s> i ' m not going to tell you . </s>
('<s> oh shit , thelma ! ! <person> ! <person> ! <person> ! </s>', 0) | <s> i ' m sorry . i ' m not . </s>
('<s> oh , poor <person> . we may never see her again . </s>', 0) | <s> <person> , i ' ll be right back . </s>
("<s> <person> , this is <person> . he ' s just leaving . </s>", 0) | <s> <person> , i ' m not sure . </s>
('<s> a <unk> of hot coffee . a blanket . socks . </s>', 0) | <s> i ' m not going to tell you . </s>
('<s> i wanted to talk to you . the other guys - </s>', 0) | <s> i ' m not going to tell you . </s>
("<s> be careful with that , it ' s extremely dangerous . </s>", 0) | <s> i ' d like to see you . </s>
('<s> i had the most incredible dream last night , i -- </s>', 0) | <s> i don ' t think so . </s>
('<s> <person> law around here . just met the sheriff . </s>', 0) | <s> i ' m not going anywhere . </s>
("<s> it ' s for <person> . our dead <unk> . </s>", 0) | <s> <person> , i ' m sorry . </s>
('<s> did you send in all of the deposit checks ? </s>', 0) | <s> <person> , i don ' t know . </s>
('<s> where am i ? and how can i leave ? </s>', 0) | <s> i don ' t think so . </s>
('<s> i have to get <person> . what if he -- </s>', 0) | <s> i don ' t think so . </s>
("<s> he ' s not going to leave us . </s>", 0) | <s> i don ' t think so . </s>
('<s> <unk> <unk> , maybe some other truth agent . </s>', 0) | <s> i don ' t know . </s>
('<s> business , business . meeting a fellow here . </s>', 0) | <s> i don ' t know . </s>
('<s> elementary school ? i thought you were <person> ? </s>', 0) | <s> i don ' t know . </s>
("<s> you ' re going to port into me ? </s>", 0) | <s> i don ' t know . </s>
("<s> i know it ' s not practical -- </s>", 0) | <s> i ' m not sure . </s>
('<s> first tell us why you did it . </s>', 0) | <s> <person> , i ' m sorry . </s>
("<s> i don ' t remember seeing that . </s>", 0) | <s> i don ' t know . </s>
('<s> are we going to do this again ? </s>', 0) | <s> <person> , i ' m sorry . </s>
('<s> it was <unk> . and what teeth . </s>', 0) | <s> i don ' t know . </s>
('<s> not if we do it my way . </s>', 0) | <s> i don ' t know . </s>
('<s> do you want to issue an <unk> ? </s>', 0) | <s> i don ' t know . </s>
('<s> what if i told you not to ? </s>', 0) | <s> i don ' t know . </s>
('<s> police -- god -- get a life . </s>', 0) | <s> i don ' t know . </s>
('<s> -- do it . i <unk> you . </s>', 0) | <s> i don ' t know . </s>
('<s> oh , a couple of weeks ago . </s>', 0) | <s> i don ' t know . </s>
("<s> because we ' re gon na cheat . </s>", 0) | <s> i don ' t know . </s>
("<s> bitch . <person> ' s band . </s>", 0) | <s> i ' m not sure . </s>
("<s> <person> - i ' m <person> . </s>", 0) | <s> i ' m not sure . </s>
('<s> i did . at blue balls . </s>', 0) | <s> i ' m not sure . </s>
("<s> no , i ' m not . </s>", 0) | <s> i ' m not . </s>
('<s> i want you to trust me . </s>', 0) | <s> i ' m sorry . </s>
('<s> testing one two three four . </s>', 0) | <s> i ' m not sure . </s>
('<s> you afraid of the dark ? </s>', 0) | <s> i ' m not . </s>
('<s> nine ? are you sure ? </s>', 0) | <s> i ' m sorry . </s>
('<s> . what difference would . </s>', 0) | <s> <person> , <person> . </s>
('<s> you and me both . </s>', 0) | <s> i ' m sorry . </s>
("<s> that ' s awful . </s>", 0) | <s> <person> , <person> . </s>
('<s> <person> . <unk> <person> . </s>', 0) | <s> <person> , <person> . </s>
('<s> here she is now . </s>', 0) | <s> <person> , <person> . </s>
("<s> it ' s nice . </s>", 0) | <s> <person> , <person> . </s>
('<s> i hate you . </s>', 0) | <s> <person> , <person> . </s>
('<s> something like that . </s>', 0) | <s> <person> , <person> . </s>
('<s> oh , yeah . </s>', 0) | <s> <person> , <person> . </s>
('<s> <unk> voice <unk> ! </s>', 0) | <s> <person> , <person> . </s>
('<s> ask her . </s>', 0) | <s> <person> . </s>
('<s> come on ! </s>', 0) | <s> <person> . </s>
('<s> <person> -- </s>', 0) | <s> <person> . </s>
('<s> go ? </s>', 0) | <s> <person> . </s>
('<s> <person> . </s>', 0) | <s> <person> . </s>
('<s> <person> ? </s>', 0) | <s> <person> . </s>
('<s> no . </s>', 0) | <s> <person> . </s>
('<s> <person> . </s>', 0) | <s> <person> . </s>
('<s> yes . </s>', 0) | <s> <person> . </s>
('<s> what ? </s>', 0) | <s> <person> . </s>
("<s> i wish it weren ' t true . i swore i ' d never let this happen . i hate you . i hate your beauty , i hate your innocence , i hate the feelings you ' ve <unk> in me . <continued_utterance> i ' m in love with you , <unk> . i don ' t want to be , but a power has <unk> me and i stand helpless against it . it ' s torture . <unk> field or prison cell was never half as cruel . <continued_utterance> i want you and i can ' t have you so i want you all the more . if this were another time and another place i ' d -- </s>", 0) | <s> <person> , i don ' t know what to do . i don ' t know what you ' re
("<s> afraid of it ? boy , i live in the dark . all cause of a woman who made me this way . people are afraid of what they can ' t see . i can ' t see nuthin ' , so it ' s all the same to me . kiss from a beautiful woman , <unk> <unk> kiss , a lick from a dog , <unk> , <unk> , the kiss of death . it ' s all the same to me . </s>", 0) | <s> <person> , i ' m sorry . i ' m sorry . i ' m sorry . i ' m
("<s> <person> , mr . <person> . you have a drug problem , all right ? on top of that , you have a bite on your ankle that is severely infected . we pumped you with <unk> so you ' ll be fine , but another day or two and you might have lost the foot . as for your spells . i ' m guessing they ' re a result of the anxiety you ' ve been experiencing lately . </s>", 0) | <s> <person> , i ' ll tell you what i ' m going to do . i ' m going to
("<s> you ' re not civil , you ' re <unk> . we got the world by the tail with a <unk> pull and all of a sudden you go <unk> on me . <person> freezes as a bell goes off in his head . earl oh my god . she got to you . you <continued_utterance> she just practically asked you for a date . what the hell is wrong ? ! </s>", 0) | <s> <person> , i ' ll tell you what i ' m gon na do . i ' m gon na
("<s> you don ' t want to be at <unk> without one . it ' s a charm that old people teach you how to make . i had one for a long time that belonged to my grandmother who had it ever since she was a child . in my travels i misplaced it . i have been looking over my shoulder ever since . </s>", 0) | <s> <person> , i ' ll tell you what i ' m gon na do . i ' ll tell you
("<s> hi , baby ! how are you ? has grandmother spoiled you silly by now ? she has ? good . yes , i got your letter with the picture of your new boyfriend . he ' s very good looking . but he ' s a bit old , isn ' t he ? no ? just how old is he ? . </s>", 0) | <s> <person> , i don ' t know what to do . i don ' t know what you ' re
("<s> <person> , she ' s just had her bottle . she ' s sleeping like a log . <person> ' s just leave her in the apartment . what can possibly happen to her ? she ' s as regular as <unk> . she won ' t wake up till <number> : <number> and we ' ll easily be back by then . </s>", 0) | <s> i don ' t know . i don ' t know . i don ' t know . i '
("<s> that guy in green . sometimes people carry weapons in here . then they drink too much . they ' re team isn ' t doing so well , bad things happen . we do random pat downs of the crowd to <unk> people from carrying . if he ' s carrying , he ' ll step out of line . </s>", 0) | <s> i don ' t know . i don ' t know . i don ' t know . i '
("<s> i don ' t let him , he just does . nails on a <unk> too . he rushed the stage last week when we had <person> drop in for a set . <person> looked at this <unk> <unk> kid trying to play <unk> midnight , ' said that fool couldn ' t find them keys with a flashlight . ' </s>", 0) | <s> no , no , no , no , no , no , no , no , no , no ,
("<s> there are so many to choose from . is it the one about my <unk> alliance with <person> ? let ' s see if i remember it correctly . while the english attack from without , i ' ll <unk> the throne from within -- <unk> you -- and become <unk> of france myself . that rumor , <person> ? </s>", 0) | <s> <person> . <person> . <person> . <person> . <person> . <person> . <person> . <person> . <person> . <person> .
("<s> small town -- word gets out . it probably won ' t amount to more than a <unk> puff piece but it might give us some free publicity for the inn . <continued_utterance> all right , i know the gentleman . i ' m doing him a favor . you know , i used to be a journalist . </s>", 0) | <s> <person> , <person> , i don ' t know what you ' re talking about . i ' m just
("<s> you know - raise baby trout from eggs and then stock the rivers with them . <continued_utterance> entire place used to be a trout farm . seems like most everything used to be something else , doesn ' t it ? <continued_utterance> i you might be new but you seem to know what you ' re doing . </s>", 0) | <s> <person> , i ' m sorry . i ' m sorry . i ' m sorry . i ' m
("<s> i see . how exactly ? <continued_utterance> well , i thought i ' d break your neck , then use you as a human shield , then kill the guard with that knife there on your table and take his gun . <continued_utterance> and what makes you think you can do all that ? </s>", 0) | <s> i ' ll tell you . i ' ll tell you what i ' m gon na do . i
("<s> . i just , you know , after all that religious conversation , i just realized it ' s probably not so good for him to be spending so much time with someone like me who doesn ' t believe his life is important in the scheme of things -- </s>", 0) | <s> <person> , i don ' t know . i don ' t know what to do . i ' m
("<s> because i ' m the mother , and i get to tell you what to do every minute of your life ' til you ' re eighteen . seriously , we ' ve got no money . i can ' t buy you the <unk> . </s>", 0) | <s> <person> , i ' m sorry . i ' m sorry . i ' m sorry . i ' m
("<s> i know god help me , i know that , <unk> . but i tell you that if he ' s found here , the people who did this to him will come for <person> . <continued_utterance> what else can we do ? </s>", 0) | <s> <person> , i don ' t know . i don ' t know what you ' re talking about .
("<s> this is a very delicate matter , <person> . it ' s very important they don ' t tell anybody about this package . it could be very . uh , embarrassing for me , you know what i ' m saying ? </s>", 0) | <s> <person> , i ' m sorry . i ' m sorry . i ' m sorry . i ' m
("<s> that ' s where i live . and i want to get back there so badly i ' m going all the way to <person> to get the wizard of oz to help me . </s>", 0) | <s> <person> , i ' m not going to be a good friend of this . </s>
("<s> <person> ' t you see what this means ? you really think <person> and <person> are gon na give you a third of the money ? you , the <unk> with the rap sheet ? </s>", 0) | <s> i don ' t know . i just don ' t know what to do . </s>
('<s> at pee <unk> , all you think about is the future , you know ? gettin out ? and what youll do and what youll think about when youre on the outside again . </s>', 0) | <s> <person> , i ' m sorry . i ' ve got to go . </s>
("<s> my guess is there isn ' t enough detail in the photo to get an idea of the design on the ring , but we should do a <unk> of this anyway . </s>", 0) | <s> i ' ll be right back . i ' ll be back . </s>
("<s> what the hell are we doing ? we ' re doing all this together , trusting each other , making plans , and we haven ' t even slept together yet . </s>", 0) | <s> <person> , i don ' t know what you ' re talking about . </s>
("<s> thanks for the advice -- now why don ' t you just shove it ? i know you let her scream for hours but i can ' t . </s>", 0) | <s> <person> , i don ' t know what you ' re talking about . </s>
("<s> i think i might ' ve said i was in love with you . <person> ' s face remains . <unk> . <unk> he told you . </s>", 0) | <s> <person> , i don ' t know what you ' re doing . </s>
("<s> <person> , but we made that deal while <person> was still alive . he ' s gone . time for a new deal . </s>", 0) | <s> i ' ll be right back . i ' ll be right back . </s>
('<s> tell me , <person> -- when does it all end ? how many <unk> can you <unk> behind ? how much is enough ? </s>', 0) | <s> i ' ll be right back . i ' ll be right back . </s>
("<s> ok . <person> . could you just take a look at my radiator hose . it ' s busted . <continued_utterance> so ? </s>", 0) | <s> i ' m not sure . i ' m just a little <unk> . </s>
("<s> a couple weeks . that ' s why . that ' s why i had the gun . for protection . </s>", 0) | <s> i don ' t know . i ' ve got to go . </s>
("<s> <person> , this is insane . you ' re picking horses because you think you ' re <unk> or something . </s>", 0) | <s> i don ' t know what you ' re talking about . </s>
("<s> i don ' t know how i can bail now , he ' s going to be here any minute . </s>", 0) | <s> <person> , i ' m sorry . i ' m sorry . </s>
("<s> <person> ' t lie to me . <person> . <continued_utterance> i got it on spring break . <person> like hell . </s>", 0) | <s> i don ' t know . i don ' t think so . </s>
('<s> i must see for myself ! just as the <unk> <unk> ! <continued_utterance> so . you were the one . </s>', 0) | <s> <person> , i ' m not going to be a <unk> . </s>
("<s> that ' s because you never had the guts to go out into the world and stake your claim . </s>", 0) | <s> i don ' t know . i ' ve got to go . </s>
('<s> no , mama , im in mexico , and were about to get on an airplane to <unk> ! </s>', 0) | <s> i don ' t know what you ' re talking about . </s>
('<s> we have <unk> . <continued_utterance> <person> , cotton fields , <person> , <unk> , the mississippi river . </s>', 0) | <s> i don ' t know what to do with it . </s>
('<s> <unk> bien , <unk> . in that case -- i am your caddy once again . </s>', 0) | <s> i ' m not going to be a <unk> . </s>
("<s> you said you ' d cut that up with the man who did her in . </s>", 0) | <s> i don ' t know . i don ' t know . </s>
("<s> they didn ' t want me when i was born . why should i care . </s>", 0) | <s> i ' m not going to be a good friend . </s>
('<s> i ruin so many moments by <unk> them when i should just be living them . </s>', 0) | <s> i ' m not going to tell you , <person> . </s>
('<s> your behavior is not funny and is wasting the time of the federal government . </s>', 0) | <s> i don ' t know . i ' m just . </s>
("<s> you ' re really good friends with the <unk> , aren ' t you ? </s>", 0) | <s> i ' m not going to be a <unk> . </s>
("<s> <unk> ' re the only man i know who doesn ' t call women . </s>", 0) | <s> i don ' t know . i ' m sorry . </s>
("<s> i feel like i ' m never gon na see you again . ! </s>", 0) | <s> <person> , you ' re a good man . </s>
("<s> mr . <person> , please . i ' m sorry about this . </s>", 0) | <s> i don ' t know what to say . </s>
("<s> no . he slept at <person> ' s . how about you ? </s>", 0) | <s> i ' d like to see you again . </s>
("<s> ah . i don ' t believe in writer ' s block . </s>", 0) | <s> <person> , i ' m not going anywhere . </s>
('<s> i know that voice . <continued_utterance> how can we just sit here ? </s>', 0) | <s> i ' m not going to do that . </s>
("<s> -- wow , she ' s really staring at you . </s>", 0) | <s> i ' m not going to tell you . </s>
('<s> by all means . would you do us the honor ? </s>', 0) | <s> <person> , i ' m not going anywhere . </s>
('<s> that guy really came there tonight just to kill you . </s>', 0) | <s> i ' m not going to tell you . </s>
('<s> what do you want ? why are you following me ? </s>', 0) | <s> i ' ll see you in the morning . </s>
('<s> oh , right , the tower . <person> <unk> . </s>', 0) | <s> i ' ll be back in the morning . </s>
("<s> i ' m well aware of your stake in <unk> </s>", 0) | <s> i ' m not going anywhere . </s>
("<s> well i guess i don ' t have to go </s>", 0) | <s> i ' m not going anywhere . </s>
('<s> <person> ! <person> , where are you going ? </s>', 0) | <s> i don ' t think so . </s>
("<s> it won ' t change anything for me . </s>", 0) | <s> <person> , i don ' t know . </s>
('<s> <unk> why did i choose you for this ? </s>', 0) | <s> i ' m not a <unk> . </s>
("<s> well , i ' m glad you did . </s>", 0) | <s> i don ' t think so . </s>
('<s> i will kill you with my bare hands . </s>', 0) | <s> i ' m not going anywhere . </s>
("<s> i fucked her ' til her nose bled . </s>", 0) | <s> i ' m sorry , <person> . </s>
("<s> <person> ' t get funny with me again . </s>", 0) | <s> i don ' t think so . </s>
("<s> that ' s right . i do . </s>", 0) | <s> i don ' t know . </s>
('<s> what is happiness to you , <person> ? </s>', 0) | <s> i don ' t know . </s>
("<s> i ' ll send you picture <unk> . </s>", 0) | <s> i don ' t know . </s>
('<s> <person> , why not , <person> boy . </s>', 0) | <s> i ' m not sure . </s>
("<s> you ' re not capable of it . </s>", 0) | <s> i ' m not sure . </s>
('<s> i said , knock it off . </s>', 0) | <s> i ' m sorry . </s>
("<s> they ' re driving me nuts ! </s>", 0) | <s> i ' m not sure . </s>
("<s> no , it ' s fine . </s>", 0) | <s> i don ' t know . </s>
('<s> it was an accident ! right ? </s>', 0) | <s> i don ' t know . </s>
('<s> not for the last two <unk> . </s>', 0) | <s> i don ' t know . </s>
("<s> you ' re breaking my heart . </s>", 0) | <s> i ' m not sure . </s>
('<s> here . whenever you want them . </s>', 0) | <s> i ' m not sure . </s>
('<s> <person> , just go to hell ! </s>', 0) | <s> i don ' t know . </s>
("<s> it wasn ' t a lie . </s>", 0) | <s> i ' m sorry . </s>
('<s> did you see the paper ? </s>', 0) | <s> i ' m sorry . </s>
('<s> is the house locked up ? </s>', 0) | <s> i ' m not sure . </s>
("<s> i don ' t know . </s>", 0) | <s> i ' m sorry . </s>
('<s> maybe i should read it . </s>', 0) | <s> <person> , <person> . </s>
("<s> they ' re too big . </s>", 0) | <s> i ' m sorry . </s>
('<s> this is one big mother ! </s>', 0) | <s> <person> , <person> . </s>
('<s> have you had sex ? </s>', 0) | <s> <person> , <person> . </s>
('<s> we were together before . </s>', 0) | <s> <person> , <person> . </s>
('<s> be a prize winner . </s>', 0) | <s> <person> , <person> . </s>
('<s> people live up here ? </s>', 0) | <s> <person> , <person> . </s>
('<s> you stone cold tease . </s>', 0) | <s> <person> , <person> . </s>
('<s> lower me down . </s>', 0) | <s> <person> , <person> . </s>
('<s> <unk> <unk> <unk> . </s>', 0) | <s> what ? </s>
('<s> take it easy . </s>', 0) | <s> <person> , <person> . </s>
('<s> <person> . </s>', 0) | <s> <person> . </s>
('<s> uh-huh . </s>', 0) | <s> <person> . </s>
('<s> but . </s>', 0) | <s> <person> . </s>
('<s> what ? </s>', 0) | <s> <person> . </s>
('<s> <person> . </s>', 0) | <s> <person> . </s>
('<s> no . </s>', 0) | <s> <person> . </s>
('<s> <person> . </s>', 0) | <s> <person> . </s>
('<s> yes . </s>', 0) | <s> <person> . </s>
('<s> god ! </s>', 0) | <s> <person> . </s>
('<s> no . </s>', 0) | <s> <person> . </s>
('<s> exactly . </s>', 0) | <s> <person> . </s>
("<s> . ' course the beauty of it is the <unk> pension fund . <person> gets the <number> million in there . fifty million buys him the minimum <unk> for <number> , <number> employees and he walks away with the rest . all in , he ' ll net <number> to <number> million . not bad for a month ' s work . your man did his homework , <person> , you ' re gon na have the <unk> executive career since the pope who got poisoned . now he ' ll really start believing he ' s `` <person> the great . `` </s>", 0) | <s> <person> , i don ' t know what to do . i don ' t know what you ' re
("<s> well , i ' ll leave you to it . last thing you need is me <unk> ' round you , taking you from your private time . <continued_utterance> i ' m just gon na say it and go , but if you two were to marry . i bet the lord would bless you with a happy , healthy and handsome child . <person> luck and god bless you both . </s>", 0) | <s> <person> , i ' ll tell you what i ' m gon na do . i ' m gon na
("<s> you already have . now go on . do it . <continued_utterance> what the hell is wrong with you ? ! <continued_utterance> come on . you got so much fight in you ; you wan na kill something ? take your best shot . the first one ' s free . <continued_utterance> that ' s what i thought . you ' re done . you ' re going home . </s>", 0) | <s> no , no , no , no , no , no , no , no , no , no ,
("<s> my father used to hunt in a forest like this . he promised to take me on my tenth birthday . i don ' t know why he picked that year . something about a boy becoming a man . i ' d lay in bed at night and imagine it , just the two of us . but he died before i could go with him . </s>", 0) | <s> no , no , no , no , no , no , no , no , no , no ,
("<s> i ' m sorry , he ' s not in . may i take a mess . tomorrow when , two o ' clock . i ' ll check my book . <continued_utterance> yes . mr . <person> ' s clear at that time . the bishop ' s office , tomorrow , the fifth at two p . m . thank you . </s>", 0) | <s> i ' m not going to tell you . i ' m not going to tell you . i '
("<s> well , i was thinkin about <unk> actually . my mama smokes <person> now , used to be she smoked <person> ? i stole em from her <unk> in about sixth grade . when i got old enough to buy my own , i bought those . <person> just about settled on <unk> , as you probably noticed ? they're longer . </s>", 0) | <s> i don ' t know . i don ' t know what i ' m talking about . i '
("<s> <person> , whoa , you ' re getting crazy now . why would i cross the line -- what do you think i got no pride ? <unk> grabs <person> by the neck . <unk> i swear ! i didn ' t tell her nothing ! you probably did it yourself , you piece of shit . </s>", 0) | <s> <person> , i ' m not gon na do it . i ' m not gon na do it .
("<s> i was downtown with <person> a few minutes ago , and i met a guy who recognized him . said he ' d seen my dog this very morning . told me an interesting story of how he and the dog happened to meet . what d ' you think about that ? </s>", 0) | <s> i ' ll tell you what i ' m going to do . i ' m going to have to
("<s> we ' ve got <person> ' s attention with the <unk> . if we want a political solution . i think it ' s time to turn up the diplomatic heat . <person> if we let this go on too long , we ' re going to find ourselves in a war . </s>", 0) | <s> <person> ' t worry about it . i ' ll tell you what i ' m going to do .
("<s> you want to lose this leg ? cause that ' s what you ' re risking . soon as we ' re done , i ' ll call . <person> ? <continued_utterance> bite down on this . i ain ' t gon na lie . <person> pain about to hit you sweetheart . </s>", 0) | <s> i don ' t know . i don ' t know . i don ' t know . i '
("<s> that ' s what i thought until you came riding in . i saw your car over at the gas station . it ' s a cool car . want to take me for a ride ? <person> ' s kind of lonely this time of day . </s>", 0) | <s> <person> , i ' m not a <unk> . i don ' t know what to do . i '
("<s> a man of faith . how delightful . whatever you ' re paying him , double it . i want the king ' s birthday to be a memorable event . and <unk> this painting in my chamber . just as it is . </s>", 0) | <s> <person> , i ' m not gon na tell you what i ' m doing . i ' m gon
("<s> ha ! you didn ' t just jump a train boy . you jumped the flying <unk> of the <unk> brothers most <unk> show on earth . you done landed your ass on a circus , kid ! </s>", 0) | <s> i ' m sorry , <person> . i ' m sorry . i ' m sorry . i ' m
("<s> i tried everything . a spoon . i poured milk into her mouth , she just <unk> it out . i don ' t know what to do , i ' m not a mother . </s>", 0) | <s> <person> , i ' m sorry . i ' m sorry . i ' m sorry . i ' m
("<s> i told the <unk> to bring them when they are dry . <person> then , i ' m afraid you are my prisoner . would the prisoner care for a drink ? </s>", 0) | <s> <person> , i don ' t know what to do . i don ' t know what to do .
("<s> you ' re lucky somebody got to you first , <unk> ! i ' d ' ve killed you myself after that stunt at land ' s end ! </s>", 0) | <s> <person> , i ' ll tell you what i ' m gon na do . i ' m gon na
("<s> believe it or not , it ' s chinese food . there ' s a great chinese restaurant on the other side of the <unk> road . </s>", 0) | <s> <person> , i ' m sorry . i ' m sorry . i ' m sorry . i ' m
("<s> what ' s with you people ? why do ya have to fuck with my head all the time ? i came through , man . </s>", 0) | <s> i don ' t know . i ' m sorry . i don ' t know what you ' re
("<s> on the deck of the yankee , the night you asked me to marry you . we weren ' t much older than they are . </s>", 0) | <s> <person> , i don ' t know . i don ' t know . i don ' t know .
("<s> the <unk> . they ' re laughing because i am a witch . i ' m <person> , the witch of the north . </s>", 0) | <s> i ' m not going to tell you . i don ' t want to be alone . i '
("<s> for you ! i don ' t even know why -- <continued_utterance> whoever i was , i must have been a helluva guy . </s>", 0) | <s> i don ' t know . i don ' t know what i ' m talking about . i '
("<s> <unk> <unk> , and <unk> . uh , turf . <continued_utterance> c ' mon , c ' mon , that ' s it . </s>", 0) | <s> <person> , i ' ll tell you what i ' m going to do . i ' m going to
('<s> that bomb in dallas was allowed to go off , to hide something : bodies infected with a virus you <unk> yourself . </s>', 0) | <s> <person> . <person> . <person> . <person> . <person> . <person> . <person> . <person> . <person> . <person> .
("<s> <person> , i couldn ' t resist . but you know . i do feel the urge to kill someone here . </s>", 0) | <s> <person> , i ' m sorry . i ' m sorry . i ' m sorry . i ' m
("<s> then you got no problem telling the doctor lady you can ' t teach her no more till after the open . </s>", 0) | <s> i ' ll be right back . i ' ll be back . </s>
('<s> there are no other cases . this is the case . now you decide . are you in or out . ? </s>', 0) | <s> i don ' t know . i don ' t know what you ' re talking about . </s>
("<s> i ' m -- i ' m not yelling . i ' m just gettin ' a little frustrated here . </s>", 0) | <s> <person> , i don ' t know . i don ' t know what to do . </s>
('<s> you never knew my father . you get out of here , who the hell do you think you are . </s>', 0) | <s> i don ' t know . i don ' t know what to do . </s>
('<s> . leave me alone willya . only thing makes me feel good anymore . <person> . she makes lousy spaghetti . </s>', 0) | <s> <person> , i don ' t know what you ' re talking about . </s>
("<s> he ' s a crook ! burned a hole in a rug and is trying to hold up two kids . </s>", 0) | <s> <person> , i don ' t think it ' s a good idea . </s>
("<s> <person> ' s <unk> over to the post office , i ' m expecting a letter any day . </s>", 0) | <s> i don ' t know . i ' m not going to do it . </s>
("<s> no . it ' s not possible . she turns , looks around , but spies nothing . </s>", 0) | <s> <person> , i don ' t know what you ' re doing . </s>
('<s> sure ! just when i want to talk - not that i would have believed you - </s>', 0) | <s> <person> , i ' ll see you in the morning . </s>
("<s> you ready for your big coming out party ? everybody ' s dying to meet you . </s>", 0) | <s> <person> ' t you think it ' s a good idea ? </s>
("<s> for a man that don ' t go <unk> you run your mouth kinda reckless . </s>", 0) | <s> <person> ' t you think it ' s a <unk> ? </s>
("<s> there ' s probably not too much you aren ' t great at . </s>", 0) | <s> i don ' t know . it ' s just that . </s>
("<s> you almost got yourself shot , that ' s what you did . </s>", 0) | <s> <person> , i ' ll see you in the morning . </s>
("<s> you didn ' t say what it was for , did you ? </s>", 0) | <s> <person> , i ' d like to see you again . </s>
('<s> i find it highly unlikely that anyone could accomplish such a thing . </s>', 0) | <s> <person> , i ' ll see you in the morning . </s>
("<s> well . why do you think you ' re in this situation ? </s>", 0) | <s> i ' m not going to tell you that . </s>
("<s> well , i ' m glad you found it , darling . </s>", 0) | <s> <person> , i ' m not going to tell you . </s>
("<s> i ' m saying it wasn ' t the <unk> virus . </s>", 0) | <s> <person> , i don ' t know what to do . </s>
("<s> because you have hope that you ' ll get better ? </s>", 0) | <s> <person> , i don ' t know what to do . </s>
("<s> <person> ? <person> ' t inspire a lot of confidence . </s>", 0) | <s> i ' m sorry . i ' m sorry . </s>
("<s> i don ' t know . i have no idea . </s>", 0) | <s> i ' m not gon na do it . </s>
('<s> <person> , <person> ? can you get me the police ? </s>', 0) | <s> <person> , you ' re not going anywhere . </s>
("<s> i don ' t know . probably ignore her . </s>", 0) | <s> <person> , i ' ll have to go . </s>
('<s> i hope you do . we need the money . </s>', 0) | <s> i ' m not going to tell you . </s>
('<s> uh huh . <person> here in river city . </s>', 0) | <s> <person> . i ' ll be right back . </s>
("<s> i ' ve got him . <person> up . </s>", 0) | <s> i ' m not going to tell you . </s>
('<s> hey , what are you , my nanny ? </s>', 0) | <s> i ' m not going to be here . </s>
("<s> <person> ' t you start it , too ! </s>", 0) | <s> <person> , i ' ll be right back . </s>
("<s> i ' m going to deal with him . </s>", 0) | <s> i ' m sorry . i ' m sorry . </s>
('<s> i think that about does it , spooky . </s>', 0) | <s> i ' m not going to tell you . </s>
("<s> i don ' t have his number . </s>", 0) | <s> i ' m not going anywhere . </s>
('<s> i will always be at his side . </s>', 0) | <s> i ' m not going anywhere . </s>
('<s> a bridge ? like an <unk> bridge ? </s>', 0) | <s> i ' m not going to tell you . </s>
('<s> why is this kid staring at me ? </s>', 0) | <s> i ' m sorry . i ' m sorry . </s>
("<s> they ' re going to kill us ! </s>", 0) | <s> <person> , i don ' t know . </s>
('<s> i will be the judge of that . </s>', 0) | <s> <person> , i don ' t know . </s>
('<s> <person> , <person> ! throw it ! </s>', 0) | <s> <person> , i don ' t know . </s>
('<s> yeah . russian minister of transportation . </s>', 0) | <s> i don ' t think so . </s>
('<s> morning sheriff . got my drapes . </s>', 0) | <s> i don ' t think so . </s>
('<s> did he try to kiss you ? </s>', 0) | <s> i ' ll take it . </s>
('<s> just a few words , <person> . </s>', 0) | <s> i don ' t know . </s>
('<s> yeah . still <unk> , too . </s>', 0) | <s> i ' m not sure . </s>
("<s> ok , i ' m sorry ! </s>", 0) | <s> i ' m not sure . </s>
('<s> <person> , i like him . </s>', 0) | <s> i don ' t know . </s>
('<s> ever been to a show ? </s>', 0) | <s> i ' m not sure . </s>
('<s> <person> , <person> , run ! </s>', 0) | <s> i don ' t know . </s>
('<s> the one with the horses . </s>', 0) | <s> i ' m sorry . </s>
('<s> i know , i know . </s>', 0) | <s> i ' m sorry . </s>
("<s> i ' m leaving <person> . </s>", 0) | <s> i ' m sorry . </s>
("<s> <person> ' t he lucky . </s>", 0) | <s> i ' m not . </s>
('<s> they ruined me tonight . </s>', 0) | <s> i ' m not sure . </s>
("<s> you ' re serious ? </s>", 0) | <s> i ' m not . </s>
('<s> <person> down , <person> . </s>', 0) | <s> i ' m not . </s>
('<s> where is <person> today ? </s>', 0) | <s> <person> , <person> . </s>
('<s> you folks experienced <unk> ? </s>', 0) | <s> <person> , <person> . </s>
('<s> <person> . <person> specialist . </s>', 0) | <s> i ' m sorry . </s>
('<s> <unk> my chain <person> . </s>', 0) | <s> <person> , <person> . </s>
("<s> <person> ' er up . </s>", 0) | <s> <person> , <person> . </s>
('<s> i know but -- </s>', 0) | <s> <person> , <person> . </s>
('<s> <person> or dutch ? </s>', 0) | <s> <person> , <person> . </s>
('<s> i mean <unk> . </s>', 0) | <s> what ? </s>
('<s> just do it ! </s>', 0) | <s> <person> , <person> . </s>
('<s> why is that ? </s>', 0) | <s> <person> , <person> . </s>
('<s> about <person> ? </s>', 0) | <s> <person> , <person> . </s>
('<s> no charge . </s>', 0) | <s> <person> . </s>
('<s> not personally . </s>', 0) | <s> <person> . </s>
('<s> you sick ? </s>', 0) | <s> <person> . </s>
('<s> kill him ! </s>', 0) | <s> <person> . </s>
('<s> always ? </s>', 0) | <s> <person> . </s>
('<s> what ? </s>', 0) | <s> <person> . </s>
('<s> <person> . </s>', 0) | <s> <person> . </s>
('<s> sure . </s>', 0) | <s> <person> . </s>
('<s> sure . </s>', 0) | <s> <person> . </s>
('<s> friday ? </s>', 0) | <s> <person> . </s>
('<s> yes . </s>', 0) | <s> <person> . </s>
('<s> right . </s>', 0) | <s> <person> . </s>
("<s> oh . <person> . well . just a couple things . one -- there ' s only two kinds of beer available -- <person> and <person> . <person> ' s better . and two -- if you see <person> hanging around the hotel bar -- hot , hot , hot -- but don ' t touch . she belongs to <unk> , and if anybody gets caught with her then el <unk> has promised to personally cut off the guy ' s . </s>", 0) | <s> <person> , i ' ll tell you what i ' m gon na do . i ' m gon na
("<s> we ' re lost , you understand that ? we ' ve got no <unk> , and no means to find a way back . so right now i don ' t give a damn about the gold because if we don ' t get off this desert , and out of <unk> all it ' s going to be good for is buying us <unk> . </s>", 0) | <s> i don ' t know what you ' re talking about . i ' m not going to tell you
("<s> because if you ' re such a baby you got ta tell your mommy about us playin ' pool when i totally asked you not to , and i got ta listen to her shit all day , then you ' re goin ' to the baby-sitter ' s so you can stay at the baby house . </s>", 0) | <s> <person> , i ' ll tell you what i ' m gon na do . i ' m gon na
("<s> oh yeah ? i left the country because of him . . and i came back because of him . and now the <unk> couple in town has me looking up a horse ' s ass on a midnight tour of <unk> . what are we doing here ? </s>", 0) | <s> i ' m sorry , <person> . i ' m sorry . i ' m sorry . i ' m
("<s> tax man ! fucking i . r . s . how low can you get ? how low can you get ? <continued_utterance> they ' re <unk> . how can people come and take a man ' s car ? . his cadillac ? </s>", 0) | <s> i don ' t know . i don ' t know what you ' re talking about . i '
("<s> <person> , i suppose . but you know somethin baby , hair does make a difference . <continued_utterance> i sure am glad they didn't give you no prison haircut . gives me somethin to grab hold of while were makin love ? </s>", 0) | <s> <person> , i don ' t know what you ' re talking about . i ' m not going to
("<s> i ' m sorry . i ' m probably wrong . i assumed that night after the raid was the first time you two fucked , but obviously it ' s been going on longer than that . </s>", 0) | <s> <person> , i ' m sorry . i ' m sorry . i ' m sorry . i ' m
("<s> well , we can ask her . that won ' t hurt . <continued_utterance> <person> , this young man is on his way back to school and needs a ride , and i thought since . </s>", 0) | <s> <person> , i ' m sorry . i don ' t know what you ' re doing . i '
("<s> well , you are his grandfather . he is supposed to spend some time with you . you ' re supposed to show him those <unk> things and this and that . </s>", 0) | <s> i ' m sorry . i ' m sorry . i ' m sorry . i ' m sorry .
("<s> then why aren ' t you <unk> for their side ? <continued_utterance> i can subpoena you , you know . i can get you up there on the stand . </s>", 0) | <s> <person> , i ' m not going to tell you . i don ' t know what you ' re
("<s> make us an offer . i ' m afraid we won ' t be able to use you . we ' ll pay you the half salary for <unk> . </s>", 0) | <s> i ' ll tell you what i ' m going to do . i ' m going to have to
("<s> <person> ! <person> ! he gets on my nerves . he eats too much . here ' s to some pretty good times , huh ? </s>", 0) | <s> <person> , i ' m sorry . i ' m sorry . i ' m sorry . i ' m
('<s> we need those flights . we have to know when those missiles become operational , because when they do , we need to destroy them . </s>', 0) | <s> <person> , i don ' t know . i ' m sorry . i ' m sorry . i '
("<s> get in . <continued_utterance> seen you popping up a little bit of everywhere today . you ' re not planning on staying are you ? </s>", 0) | <s> <person> , i don ' t know what you ' re talking about . i ' m just gon na
("<s> there ' s a responsibility that you ' ve got to have . it ' s a long way from high school , <person> . </s>", 0) | <s> i ' m not going to tell you . i don ' t know what to do . i '
("<s> is it possible to have a drug czar in mexico who isn ' t connected in some war to one of the <unk> ? </s>", 0) | <s> <person> , i don ' t know . i ' ve got to go . </s>
("<s> you don ' t either . take a look at yourself . maybe you ' re scared that someone might actually like you -- </s>", 0) | <s> <person> , i ' m sorry . i don ' t know what you ' re doing . </s>
("<s> nobody , <person> . nothing to get excited about . a work related problem just went away . it ' s fine . </s>", 0) | <s> i ' m sorry . i don ' t know what you ' re talking about . </s>
('<s> . and that you invited him to strike you ? to fight it out on the deck of your ship ? ! </s>', 0) | <s> i don ' t know . i don ' t know what to do . </s>
("<s> no we ' re not . the bodies are all mixed up . we can ' t do this to them . </s>", 0) | <s> i don ' t know . i ' m not going to be here . </s>
("<s> no . it ' s the training . it shapes you into a lethal instrument . you react without thinking . </s>", 0) | <s> i don ' t know . i don ' t know what to do . </s>
('<s> <person> carefully . you will be lying to the man you love . the person who trusts you the most . </s>', 0) | <s> i ' m not sure . i don ' t know what to do . </s>
('<s> they wanted to talk to someone . i asked them to wait until you got here . come on in . </s>', 0) | <s> <person> , i ' m not going to be a good worker . </s>
("<s> not bad . had a little rub and a scrub , now i ' m up for some <unk> . </s>", 0) | <s> i don ' t know . i ' m just a little <unk> . </s>
("<s> it can ' t be that bad ? <continued_utterance> why don ' t we meet somewhere for a drink ? </s>", 0) | <s> <person> , you ' re a <unk> . you ' re a <unk> . </s>
("<s> well then , it ' s a good thing you ' re not regional manager and i am . </s>", 0) | <s> <person> , i don ' t know what you ' re doing . </s>
("<s> believe me , i ' m really sorry i can ' t recall the details of that encounter . </s>", 0) | <s> <person> ' t you think it ' s a good idea ? </s>
("<s> i don ' t know . i thought you were keeping the sun out of your eyes . </s>", 0) | <s> i don ' t think you ' re a good man . </s>
('<s> are you fucking crazy ? you just gave them forty-two hundred dollars in <unk> <unk> free ? ! </s>', 0) | <s> i don ' t know what you ' re talking about . </s>
("<s> i thought . i wasn ' t thinking . what do you want me to do ? </s>", 0) | <s> i ' ll tell you what i ' m going to do . </s>
('<s> did you ever play her game <unk> ? one word , capital a , capital g ? </s>', 0) | <s> i don ' t know what you ' re talking about . </s>
('<s> you <unk> me away and ran out to the <unk> . i took you home . </s>', 0) | <s> i don ' t think it ' s a good idea . </s>
("<s> all right . i ' m gon na wander over and look at some shoes . </s>", 0) | <s> i don ' t know . i don ' t know . </s>
("<s> he ' s very bold . do you really think my hair is beautiful ? </s>", 0) | <s> i don ' t know . i ' m sorry . </s>
('<s> we must start with feathers , <unk> , and a lock of your hair . </s>', 0) | <s> i don ' t know . i ' m sorry . </s>
("<s> a new found dedication these days ? what ' s <unk> such odd hours ? </s>", 0) | <s> i ' m not going to tell you that . </s>
('<s> what about <person> ? will you come back to take him to trial ? </s>', 0) | <s> i ' m not going to tell you . </s>
("<s> counselor , you ' re <unk> . shall i push for <unk> two ? </s>", 0) | <s> i ' ll see you in the morning . </s>
("<s> i don ' t think i can take any more of these surprises . </s>", 0) | <s> i ' m sorry . i ' m sorry . </s>
("<s> i can ' t know things if you don ' t tell me . </s>", 0) | <s> i ' ll be back in the morning . </s>
("<s> you know good and damn well what i ' m talkin ' about . </s>", 0) | <s> <person> , i don ' t think so . </s>
("<s> almost . <person> to sit up ? what ' s the matter ? </s>", 0) | <s> i ' ll see you in the morning . </s>
("<s> he ' s right here in the . <continued_utterance> . car . </s>", 0) | <s> i ' m not going to tell you . </s>
("<s> it pushes on my neck . it ' s uncomfortable . </s>", 0) | <s> i ' m not going anywhere . </s>
("<s> you ' re the guardian , aren ' t you ? </s>", 0) | <s> <person> , you ' re a good man . </s>
("<s> you mean because his career ' s ruined and all ? </s>", 0) | <s> <person> , i ' m going home . </s>
('<s> or maybe we could do us a little trade . </s>', 0) | <s> i ' m not going anywhere . </s>
('<s> what are they doing in the middle of nowhere ? </s>', 0) | <s> <person> , i don ' t know . </s>
("<s> you got it . i ' m going below . </s>", 0) | <s> i don ' t think so . </s>
('<s> right . well , thanks . for the lift . </s>', 0) | <s> <person> , i don ' t know . </s>
('<s> this should more than <unk> you for your trouble . </s>', 0) | <s> i don ' t think so . </s>
("<s> i ' m sorry . you ' re right . </s>", 0) | <s> <person> , i ' m sorry . </s>
("<s> somehow , i don ' t see that happening . </s>", 0) | <s> i ' m not going anywhere . </s>
("<s> frank <person> . we ' ve met before . </s>", 0) | <s> i don ' t think so . </s>
('<s> where is she ? did he hurt her ? </s>', 0) | <s> <person> , i don ' t know . </s>
('<s> no . i dont think so , man . </s>', 0) | <s> i don ' t know . </s>
('<s> were goin to , <person> , real soon . </s>', 0) | <s> i don ' t know . </s>
('<s> i just wanted the kid to see you -- </s>', 0) | <s> i ' m sorry , <person> . </s>
('<s> well , what are we gon na do ? </s>', 0) | <s> i don ' t know . </s>
('<s> after she ran off with that dallas banker ? </s>', 0) | <s> i don ' t know . </s>
("<s> well , then let ' s climb <unk> . </s>", 0) | <s> i don ' t know . </s>
("<s> i ' ve heard that one before . </s>", 0) | <s> i ' m not sure . </s>
("<s> go back to your dna <unk> ' . </s>", 0) | <s> i don ' t know . </s>
('<s> you always hurt the ones you love . </s>', 0) | <s> i ' m not sure . </s>
('<s> i thought i was driving you home . </s>', 0) | <s> i don ' t know . </s>
("<s> he ' s having a problem here . </s>", 0) | <s> i don ' t know . </s>
('<s> he had no right to do that . </s>', 0) | <s> i ' m sorry . </s>
('<s> it was good of you to meet . </s>', 0) | <s> i ' m not sure . </s>
('<s> forget it , just the coffee . </s>', 0) | <s> i ' m not . </s>
('<s> you have changed since second grade . </s>', 0) | <s> i ' m sorry . </s>
("<s> i can ' t watch this . </s>", 0) | <s> i don ' t know . </s>
("<s> who ' s your friend ? </s>", 0) | <s> i ' m sorry . </s>
('<s> eh , sure , <person> . </s>', 0) | <s> i ' m sorry . </s>
('<s> then i will teach you . </s>', 0) | <s> <person> , <person> . </s>
('<s> i am <unk> years old . </s>', 0) | <s> i ' m not . </s>
("<s> that ' s our plan . </s>", 0) | <s> i ' m sorry . </s>
("<s> it ' s not personal -- </s>", 0) | <s> i ' m sorry . </s>
('<s> looking for something -- someone . </s>', 0) | <s> <person> , <person> . </s>
('<s> how much is enough <person> ? </s>', 0) | <s> i ' m sorry . </s>
('<s> you can trust me completely . </s>', 0) | <s> <person> , <person> . </s>
("<s> <person> ' s go . </s>", 0) | <s> i ' m sorry . </s>
('<s> no , of course . </s>', 0) | <s> <person> , <person> . </s>
('<s> what are you suggesting ? </s>', 0) | <s> <person> , <person> . </s>
('<s> everyone else was picked . </s>', 0) | <s> <person> , <person> . </s>
("<s> i ' m sorry . </s>", 0) | <s> <person> , <person> . </s>
('<s> i love my coach ! </s>', 0) | <s> <person> , <person> . </s>
('<s> the good doctor herself . </s>', 0) | <s> <person> , <person> . </s>
('<s> call the police . </s>', 0) | <s> <person> , <person> . </s>
('<s> that sounds nice . </s>', 0) | <s> <person> , <person> . </s>
('<s> <unk> corn ? </s>', 0) | <s> <person> , <person> . </s>
('<s> where else . </s>', 0) | <s> <person> , <person> . </s>
('<s> thank you . </s>', 0) | <s> <person> . </s>
('<s> i know . </s>', 0) | <s> <person> . </s>
('<s> <person> on . </s>', 0) | <s> <person> . </s>
('<s> you . </s>', 0) | <s> <person> . </s>
('<s> impossible . </s>', 0) | <s> <person> . </s>
('<s> really . </s>', 0) | <s> <person> . </s>
('<s> oh . </s>', 0) | <s> <person> . </s>
('<s> laser . </s>', 0) | <s> <person> . </s>
('<s> <unk> . </s>', 0) | <s> <person> . </s>
("<s> <person> to me . <person> to me . listen to me , frank , ' cause i ' m done fuckin ' with you . i can ' t do it any more . <person> around you : you think that you ' re going to change ? what ' s going to change it ? you think it ' s going to be different next month ? it ' s going to be the same . and i have to stop . this is it . i got you a good case , it ' s a <unk> . you do it right and it will take care of you . but i ' m through . i ' m sorry , frank , this is the end . <person> is too short , and i ' m too old . <person> walks out of the office . slams the door . <person> . </s>", 0) | <s> no , no , no , no , no , no , no , no , no , no ,
('<s> this is how my father explained it to me . <continued_utterance> your world is one of the <person> of the <unk> , linked to each other by the branches of <unk> , the worlds tree . now , you see it every day , without realizing . <person> <unk> through -- what did you call it ? . . this <unk> <unk> . so , <person> . </s>', 0) | <s> <person> . i ' ll tell you what i ' m going to do . i ' m going to
("<s> let me ask you something ? how come you ' ll forgive him for standing you up and you won ' t forgive me for a little tiny thing like putting you out of business ? <unk> looks at him . shakes her head . <continued_utterance> oh how i wish you would . it ' s all <unk> can do not to forgive him . </s>", 0) | <s> <person> , i don ' t know what to do . i don ' t know what you ' re
("<s> be happy ! <continued_utterance> staff meeting , everybody . <person> , <person> -- <unk> duty . <continued_utterance> hey <unk> ! <person> ! <continued_utterance> oh ! ! you got me again , <unk> ! you ' ve been working on that draw . <person> <unk> in the west . </s>", 0) | <s> <person> , i ' m not sure . i don ' t know what you ' re doing . i
('<s> <person> . yes , she will always be <unk> first conquest , but all <unk> time you sought <unk> was <unk> end , <unk> one and only , when in fact it is only <unk> beginning . <person> lifts his eyebrows with <unk> <unk> . </s>', 0) | <s> <person> , i don ' t know what you ' re doing . i ' m just gon na have
("<s> you ' re taking this bull of an empire by the horns , but you ' re still keeping your small town values . you ' re not letting all this `` stuff '' spoil you . </s>", 0) | <s> <person> , i don ' t know what you ' re doing . i ' m not going to tell
("<s> it ' s bullshit . <person> ' s got no intention of <unk> it . they want <unk> files though . i think <person> ' s been working <unk> for awhile , doing his own <unk> . </s>", 0) | <s> <person> , i ' m sorry . i ' m sorry . i ' m sorry . i ' m
('<s> no one must know ! especially him . you must appear to live your life normally , <unk> nothing . the security of this nation depends on it . can you do that ? </s>', 0) | <s> no , no , no , no , no , no , no , no , no , no ,
("<s> well , the next time he shows up . bring him over . until then , i ' m not saying a word about this to <person> and neither are you . </s>", 0) | <s> <person> , i don ' t know what you ' re doing . i don ' t know what you
("<s> it ' s good to know you ' re sorry , <person> . goes a long way . <continued_utterance> i think i liked you better when you were a drunk . </s>", 0) | <s> no , no , no , no , no , no , no , no , no , no ,
("<s> to jump all over you when i ' m the one who ' s really . oh , <person> , i don ' t know how to say this -- </s>", 0) | <s> i ' ll tell you what i ' m going to do . i ' m going to have to
("<s> i ' ve known <person> since the academy . he was a top pupil . a peculiar little pain in the ass , but very good with details . </s>", 0) | <s> <person> . <person> . <person> . <person> . <person> . <person> . <person> . <person> . <person> . <person> .
("<s> it ' s an observation and repair rig . travels along the pipe , checks for broken <unk> . but it ' s not supposed to be there . </s>", 0) | <s> <person> , i ' m sorry . i ' m sorry . i ' m sorry . i ' m
("<s> . apartment . no , no . <person> . you don ' t know who we ' re dealing with , i , please believe me , they . </s>", 0) | <s> <person> , i ' m not going to tell you . i don ' t know what you ' re
("<s> i ' m the villain . i thought it could be a little cleaner this time -- me in central america , him in new york . </s>", 0) | <s> <person> ' t worry . i ' ll tell you what i ' m going to do . i '
('<s> now , now , now , lad . what - are you <unk> as well ? ! <person> - i got you down in my book ! </s>', 0) | <s> i ' m sorry . i don ' t know what you ' re talking about . i ' m
("<s> <person> , send <person> for ice . you go and find that <person> bull before we ' re run out town . and take the hook ! </s>", 0) | <s> i don ' t know . i ' m sorry . i don ' t know . i ' m
("<s> there ' s blood all over his house , seems to belong to him . there ' s just no body . not yet . </s>", 0) | <s> i ' m sorry . i ' m sorry . i ' m sorry . i ' m sorry .
("<s> knock it off , <person> , just ' cause you ' re in love doesn ' t mean everyone else has to be . </s>", 0) | <s> <person> , i don ' t know what to do . i don ' t know what to do .
("<s> i ' m sure a lot of you already know . <continued_utterance> palmer , you and copper tie everyone down . <person> tight . </s>", 0) | <s> i ' m not going to tell you . i don ' t know what you ' re talking about
("<s> why i did it ? i don ' t know . <person> ? i thought i was doing the guy a favor . </s>", 0) | <s> i ' m sorry . i don ' t know what you ' re doing . </s>
("<s> a little fucking thin ? ! i still got the <unk> ! everybody ' s watching ! <person> , <person> is here . </s>", 0) | <s> <person> , i don ' t know what you ' re talking about . </s>
("<s> what is this , <person> ? <continued_utterance> i ' m gon na get some sleep . i suggest you do the same . </s>", 0) | <s> <person> , you ' re a <unk> . you ' re a <unk> . </s>
('<s> mr . <person> , wow , you had quite a day . eh ? we got chasing , we got shooting . </s>', 0) | <s> i don ' t know . i ' ve got to go . </s>
("<s> you don ' t ? listen to this woman in a man ' s world , a very violent world . </s>", 0) | <s> i don ' t know . i ' m just a little <unk> . </s>
("<s> start by repeating your last line . <person> his name so he knows you ' re talking . to him . </s>", 0) | <s> <person> , i don ' t know what you ' re doing . </s>
('<s> no travel insurance . no <unk> on the tickets . so . here i am . on my honeymoon . </s>', 0) | <s> <person> , i ' m not going to be a <unk> . </s>
("<s> i ' m in a mess today , too . i ' m thinking about doing it with <person> . </s>", 0) | <s> i don ' t know what you ' re talking about . </s>
("<s> <person> up . <person> ' t fall apart . the only people who can blow this is us . </s>", 0) | <s> i ' m sorry , <person> . i ' m sorry . </s>
("<s> just ' cause i ain ' t got eyes doesn ' t mean i can ' t see . </s>", 0) | <s> i don ' t know . i don ' t know . </s>
('<s> all i have to do is take one small step at a time and i can do anything ! </s>', 0) | <s> <person> , you ' ve got to get out of here . </s>
('<s> <person> ? ! what are you doing ? ! <person> <unk> from the tool shed . <person> freezes . </s>', 0) | <s> i don ' t know what you ' re talking about . </s>
("<s> <person> and <person> said it ' s yours . they seem to think you ' re coming home . </s>", 0) | <s> i don ' t know . i don ' t know . </s>
("<s> how do i know that ? how about it , <unk> ? what ' s your story ? </s>", 0) | <s> <person> , i don ' t know what to do . </s>
('<s> will you gentlemen excuse us for a few minutes ? <continued_utterance> what the hell do you want ? </s>', 0) | <s> i ' m sorry . i ' m sorry . </s>
("<s> come see , i said . <continued_utterance> the poor thing , she ' s really wiped out . </s>", 0) | <s> <person> , i don ' t know what to do . </s>
("<s> i told you what i ' m seein ' <person> about . that ' s all . </s>", 0) | <s> i don ' t know . i ' m not . </s>
("<s> because it ' s <unk> . i took another look and i changed my mind . </s>", 0) | <s> i ' m sorry . i ' m sorry . </s>
("<s> it ' s real . i ' m telling you , it ' s real . </s>", 0) | <s> i ' m not going to be a <unk> . </s>
('<s> no matter . come with me . we can always use a good carpenter . </s>', 0) | <s> i ' m not going to be a <unk> . </s>
('<s> i had no idea you had knowledge of the employment opportunities of trade magazines . </s>', 0) | <s> <person> , i ' m not going to tell you . </s>
('<s> you were waiting for a <unk> then , too . what happened with that ? </s>', 0) | <s> i ' m not going to tell you , <person> . </s>
("<s> <person> ' s coming , everybody ! back to your places . <person> ! </s>", 0) | <s> i don ' t know what to do . </s>
("<s> i can ' t quite picture you in the back woods of georgia . </s>", 0) | <s> i don ' t know . i ' m sorry . </s>
("<s> it ' s not my concern . i want to be left alone ! </s>", 0) | <s> i ' m not going to do that . </s>
("<s> i ' ll wear it until you <unk> your senses . <continued_utterance> what ? </s>", 0) | <s> <person> , i ' m not going anywhere . </s>
('<s> well -- i mean -- i love you too -- <continued_utterance> oh shit . </s>', 0) | <s> <person> , you ' re a good man . </s>
("<s> i can ' t . <continued_utterance> i can ' t go any farther . </s>", 0) | <s> i ' m not going to tell you . </s>
("<s> he ' s wishing he ' d never heard of the <unk> . </s>", 0) | <s> i ' ll be back in a minute . </s>
("<s> it ' s too late for that . that won ' t satisfy </s>", 0) | <s> i ' m not going to tell you . </s>
("<s> he ' s my friend . he ' s not a moron . </s>", 0) | <s> <person> , i ' m not going anywhere . </s>
('<s> the wife and daughter were in santa <unk> . <person> got back . </s>', 0) | <s> <person> , you ' re a good man . </s>
('<s> give me a chance to explain . you owe me that much . </s>', 0) | <s> i ' ll be back in the morning . </s>
("<s> thank you . you ' re all ready to sail then ? </s>", 0) | <s> <person> , i ' m not a <unk> . </s>
("<s> i ' ll drink some more of <person> ' tea . </s>", 0) | <s> <person> , i ' m not sure . </s>
("<s> when ' s the next business trip , big fella ? </s>", 0) | <s> <person> , i don ' t know . </s>
("<s> you will believe me , because it ' s true . </s>", 0) | <s> i ' m not going anywhere . </s>
("<s> i ' m not going to let you kill him . </s>", 0) | <s> i ' m not going anywhere . </s>
("<s> then why ' d he go on a trip ? </s>", 0) | <s> i ' ll be right back . </s>
('<s> <person> . <person> ? one -- two -- three ! </s>', 0) | <s> i ' m not a <unk> . </s>
('<s> you what ? a wire transfer of this size ? </s>', 0) | <s> i ' m not going anywhere . </s>
('<s> how well do you know your bible , <person> ? </s>', 0) | <s> i don ' t think so . </s>
("<s> <unk> ? why ? what ' s wrong ? </s>", 0) | <s> i ' m not sure . </s>
("<s> you ' re discussing me with your psychic ? </s>", 0) | <s> i don ' t know . </s>
('<s> is that why you got into this business ? </s>', 0) | <s> i ' m not sure . </s>
('<s> what the hell are you doing here ? </s>', 0) | <s> i don ' t know . </s>
('<s> you know why . you already said . </s>', 0) | <s> i don ' t know . </s>
('<s> god damn , you people are confusing . </s>', 0) | <s> i don ' t know . </s>
('<s> and that means he murdered his wife ? </s>', 0) | <s> i ' m not sure . </s>
("<s> what good ' ll it do us ? </s>", 0) | <s> i ' m not sure . </s>
("<s> i ' m fine . nice tv . </s>", 0) | <s> i don ' t know . </s>
('<s> telling when people have done something wrong ? </s>', 0) | <s> i don ' t know . </s>
("<s> but who ' ll work the machine ? </s>", 0) | <s> i don ' t know . </s>
("<s> you ' re seeing a therapist ? ! </s>", 0) | <s> i ' m not sure . </s>
("<s> i wouldn ' t do that -- </s>", 0) | <s> i ' m sorry . </s>
('<s> new york . ever been there ? </s>', 0) | <s> i ' m sorry . </s>
('<s> you and <person> are training together ? </s>', 0) | <s> i ' m sorry . </s>
('<s> <person> , but you did promise . </s>', 0) | <s> i ' m sorry . </s>
('<s> and what would that be ? </s>', 0) | <s> i ' m not . </s>
('<s> yeah , i love it . </s>', 0) | <s> i ' m fine . </s>
('<s> i thought he was cute . </s>', 0) | <s> <person> , <person> . </s>
('<s> and where might that be ? </s>', 0) | <s> i ' m not . </s>
("<s> i <unk> ' the towel . </s>", 0) | <s> <person> , <person> . </s>
('<s> <unk> , are you alright ? </s>', 0) | <s> i ' m sorry . </s>
("<s> i don ' t know . </s>", 0) | <s> <person> , <person> . </s>
("<s> you ' re pathetic . </s>", 0) | <s> <person> , <person> . </s>
('<s> six rounds . <number> . </s>', 0) | <s> <person> , <person> . </s>
('<s> some guy named <person> . </s>', 0) | <s> <person> . </s>
('<s> we would never . </s>', 0) | <s> what ? </s>
('<s> telling you . </s>', 0) | <s> <person> . </s>
('<s> you are ? </s>', 0) | <s> <person> . </s>
('<s> <person> . ? </s>', 0) | <s> <person> . </s>
('<s> how long ? </s>', 0) | <s> <person> . </s>
('<s> what ? </s>', 0) | <s> <person> . </s>
('<s> things ? </s>', 0) | <s> <person> . </s>
('<s> myself ? </s>', 0) | <s> <person> . </s>
('<s> no -- </s>', 0) | <s> <person> . </s>
('<s> yes . </s>', 0) | <s> <person> . </s>
('<s> <person> ? </s>', 0) | <s> <person> . </s>
('<s> definitely . </s>', 0) | <s> <person> . </s>
("<s> <person> let ' s be honest here . we ' re just at the beginning . i don ' t expect you or i to change the course of where our lives were headed because of two dates . if you do go to new york , we can still develop this . we ' ll just be forced to take it slow . and in the end , that ' s definitely better . this is our second time around <person> . i don ' t expect us to get carried away . i guess congratulations is the right thing to say . </s>", 0) | <s> no , no , no , no , no , no , no , no , no , no ,
('<s> do not make light of it , <person> . they can do it . quick ! like that ! and then . then i can not sit at table with you . i can not take a thing from your hand . i . i can not go with you to meeting ! <person> , good <person> , you must not go too far ! dear child ! </s>', 0) | <s> i don ' t know what you ' re talking about . i don ' t know what you '
("<s> says here you ' ve listened to it <number> times . <continued_utterance> is this true ? have you always wanted to be a cowboy ? <continued_utterance> you also got `` men without hats '' greatest hits ? i didn ' t know they qualified for a greatest hits album . can you break me off a little `` <person> '' ? </s>", 0) | <s> <person> ' t worry about it . i ' ll tell you what i ' m gon na do .
("<s> that ' s the problem . we need results . the press is driving us crazy over this p <number> p thing . calling us the ' speed capitol of the country ' . you know the sort of thing . it ' s getting political . the commissioner ' s getting very uneasy . </s>", 0) | <s> i don ' t know what you ' re doing . i don ' t know what you ' re
('<s> <person> to be a dog in the service of a great master , than a <unk> <unk> moron so <unk> by the throne that he does not see the true nature of the foolish boy who <unk> <unk> it . which is to say , that most <unk> of all men . a musketeer . </s>', 0) | <s> <person> , i don ' t know . i don ' t know . i don ' t know .
("<s> i ' ll tell you who you are . you ' re the glue . you ' re the thing that holds everybody around you together . you ' re strong , you listen and you see things in people the rest of us can ' t . it ' s a gift . </s>", 0) | <s> i don ' t know . i don ' t know . i ' m sorry . i ' m
("<s> i don ' t think that ' s possible , <person> . i will be asking the networks for air time monday night . i have not yet made my final decision . we will announce our course of action then . i want to thank you all for your advice , gentlemen . </s>", 0) | <s> no , no , no , no , no , no , no , no , no , no ,
("<s> and to working things out with this tough new son of a bitch boss of yours . and whatever might have passed between us after hours doesn ' t mean you just walk away from that commitment -- yeah , even when you have a legitimate family emergency . </s>", 0) | <s> <person> , i ' m sorry . i ' m sorry . i ' m sorry . i ' m
('<s> <person> ! then i trust , sir , you are aware that in doing so you have entered into an oral contract to perform in <unk> <unk> , i . e . to provide for the safety and well- being of <unk> minor female . </s>', 0) | <s> <person> , i don ' t know . i don ' t know . i don ' t know .
('<s> i just had a <unk> , and i have to thank you for it . for the first time in my life , when <unk> with a horrible , insensitive person i actually knew what i wanted to say and i said it . </s>', 0) | <s> i don ' t know . i ' m sorry . i ' m sorry . i ' m not
("<s> i ' m not going left of those trees . i ' m going over those trees . with a little draw . that way i get home in two . that way i ' m putting for eagle . </s>", 0) | <s> i ' m not going to tell you . i don ' t know what to do . i '
('<s> i wonder if <person> could ever write a poem ? both of them drift off . <unk> do you think that if you were falling in space you would slow down after a while or go faster and faster ? </s>', 0) | <s> <person> ' t worry , i ' ll be right back . i ' ll be right back . i
("<s> i don ' t know , sir . maybe the number was just recently <unk> . maybe there ' s a temporary <unk> in the wiring . why don ' t you try it again in the morning ? </s>", 0) | <s> <person> , i ' m sorry . i ' m sorry . i ' m sorry . i ' m
("<s> i suppose that ' s a possibility . that ' s what i tell my <unk> class anyway ; life is a game of chance . endless possibilities and <unk> . you just have to <unk> the odds . </s>", 0) | <s> i don ' t know . i ' ve got to go . </s>
("<s> that ' s great , <person> . and i ' m learning how to listen to the <unk> fork , throw caution to the wind , and take crazy risks i never thought were possible . </s>", 0) | <s> <person> , i ' m sorry . i ' m not going to tell you . </s>
("<s> you ' d be better off startin ' at the top of the hill and goin ' down ! <person> ' s the only friend you ' re gon na have today , young lad . </s>", 0) | <s> <person> , i ' m sorry . i don ' t know what to do . </s>
("<s> cause i don ' t take <person> . i don ' t know what you ' re up to , lady , but i ' m gon na nail you for the <unk> murder . </s>", 0) | <s> i don ' t know . i ' m not sure i ' m not . </s>
("<s> that ' s crazy . i don ' t need new jersey ' s help . i got <person> now . and there ' s no funny business between us so you know . </s>", 0) | <s> <person> , i don ' t know what you ' re talking about . </s>
('<s> you think my dad would have been like that if i knew him ? you think he would have bought me a stadium , instead of teaching me how to play ball ? </s>', 0) | <s> i ' m sorry , <person> . i don ' t know what to do . </s>
("<s> <person> ' t you see ? ! from being a pile of red dirt with <unk> , <person> is going to change into a <unk> of priceless real estate . </s>", 0) | <s> i ' m not sure . i don ' t know what to do . </s>
("<s> -- i know you don ' t suck at acting . <continued_utterance> but you have to make it a big joke because only <unk> and <unk> like doing theater -- </s>", 0) | <s> i ' m not sure . i don ' t know what to do . </s>
('<s> our home city , of course . but i should start with you . would you like some <unk> ? <continued_utterance> then what would you like ? </s>', 0) | <s> i ' ll be right back . i ' ll be right back . </s>
("<s> at wounded knee . i mean , that ' s where i was , and that ' s where the dream was . why ? </s>", 0) | <s> <person> , i don ' t know what you ' re talking about . </s>
("<s> he ' s vulnerable . you ' re still a fresh face , boss . we ' ll use that to our advantage . </s>", 0) | <s> i don ' t know what you ' re talking about . </s>
("<s> that ' s none of your goddamn business ! so keep your goddamn <unk> thou mouth shut ! <person> , they like <person> . </s>", 0) | <s> i don ' t know what you ' re talking about . </s>
("<s> excellent . but what i can do -- and only i can do this because you trust me don ' t you <person> ? </s>", 0) | <s> <person> , i ' m sorry . i ' m sorry . </s>
('<s> no , count . you were too proud to listen to the truth . i learned the value of lies soon after . </s>', 0) | <s> i don ' t know . i don ' t know . </s>
("<s> nothing . i ' m not going to be around for a while . i ' ll call you when i can . </s>", 0) | <s> <person> , i don ' t know what you ' re doing . </s>
("<s> it ' s to the boy who owned <person> . i want to show him how wonderful he ' s looking . </s>", 0) | <s> i don ' t know what you ' re talking about . </s>
("<s> it ' s alright , boy . it ' s alright . it ' s alright . it ' s alright . </s>", 0) | <s> i don ' t know . i don ' t know . </s>
("<s> well , i ' m glad . <person> my <unk> , but we do have to stick together you know . </s>", 0) | <s> <person> ' t you think i ' m a <unk> ? </s>
('<s> i think she has to find out for herself , on her own . we have to allow her space -- </s>', 0) | <s> <person> , i ' m not gon na do it . </s>
('<s> this child must be taken beyond the boundaries of our village . all the way to the <unk> <unk> . </s>', 0) | <s> <person> , i don ' t know what to do . </s>
("<s> yeah : you <unk> ' t used to give a shit before , but <unk> it docks you out . </s>", 0) | <s> i ' m not going to tell you , <person> . </s>
('<s> `` local boy <unk> more money than god . `` call me crazy , but i smell human interest . </s>', 0) | <s> i ' m not going to tell you , <person> . </s>
("<s> that ' s right , <person> . and you know i ' ll always be true to you . </s>", 0) | <s> i ' m not going to be a <unk> . </s>
("<s> <person> ' t you like to know . that last passage would be of particular interest to you . </s>", 0) | <s> <person> , i ' m not gon na do it . </s>
("<s> ok . so i have to ask , those <unk> ' s must have hurt , right ? </s>", 0) | <s> i ' m not going to tell you . </s>
('<s> <person> at me . theres no turning back on this . im gon na kill <person> . </s>', 0) | <s> i ' d like to see you again . </s>
("<s> it ' s really going to be strange going home in a couple of days . </s>", 0) | <s> <person> , i ' m just a little <unk> . </s>
("<s> <person> ' s got your wife and <unk> . he took them to the <unk> <unk> </s>", 0) | <s> i ' m not gon na do it . </s>
('<s> a <unk> brass pipe from a drain line . <continued_utterance> you know about this stuff ? </s>', 0) | <s> i ' ll see you in the morning . </s>
("<s> no , i ' m holding for <person> . in chairs . <person> . <person> . </s>", 0) | <s> i ' m not going anywhere . </s>
("<s> yeah , we <unk> him a few times . it ' s fairly standard . </s>", 0) | <s> <person> , i don ' t know . </s>
('<s> <person> be crazy , mama . <person> care of yourself . <person> hangs up . </s>', 0) | <s> i ' m not going anywhere . </s>
('<s> <person> . you wan na eat through a tube , be my guest . </s>', 0) | <s> <person> , i don ' t know . </s>
("<s> and that there ' s a time in life to play it safe . </s>", 0) | <s> i don ' t know , <person> . </s>
("<s> it ' s been there forever ? i ' ve never seen it . </s>", 0) | <s> i don ' t think so . </s>
('<s> <person> , every time i try to put her back to bed . </s>', 0) | <s> i ' ll be right back . </s>
("<s> . and her heart stopped and she wasn ' t getting oxygen . </s>", 0) | <s> <person> , i don ' t know . </s>
('<s> if i remember my <unk> that says <number> st <unk> division . </s>', 0) | <s> <person> , you ' re a good man . </s>
("<s> so far you ' re great . you got a cigarette ? </s>", 0) | <s> i don ' t think so . </s>
("<s> we ' ll find our way ! we ' ll . </s>", 0) | <s> i ' ll be right back . </s>
("<s> just tell me what the hell ' s going on ? </s>", 0) | <s> i don ' t think so . </s>
("<s> i see . what ' s your name , lad ? </s>", 0) | <s> i don ' t think so . </s>
('<s> just a bit of fun . <person> , my friend ? </s>', 0) | <s> i ' m not going anywhere . </s>
("<s> i ' ve heard some foolish things in my life . </s>", 0) | <s> <person> , i ' m sorry . </s>
('<s> what ? having spring break ruined by will readings ? </s>', 0) | <s> i don ' t think so . </s>
("<s> guard dogs are dead . <person> ' s missing . </s>", 0) | <s> i ' m sorry , <person> . </s>
('<s> he has a lot of hurt inside him . </s>', 0) | <s> i don ' t know . </s>
('<s> what do you mean ? some noises where ? </s>', 0) | <s> i don ' t know . </s>
('<s> we better start closing off the outside <unk> . </s>', 0) | <s> i don ' t know . </s>
("<s> it ' s really not a good idea . </s>", 0) | <s> i don ' t know . </s>
('<s> yes or no , mr . <person> ? </s>', 0) | <s> i don ' t know . </s>
('<s> i said i never heard of him . </s>', 0) | <s> i don ' t know . </s>
('<s> something with an engine ? not <unk> ? </s>', 0) | <s> i don ' t know . </s>
('<s> is that any way to say hello ? </s>', 0) | <s> i don ' t know . </s>
('<s> we were told the building was clear . </s>', 0) | <s> i don ' t know . </s>
("<s> somebody ' s poisoned the water hole . </s>", 0) | <s> i ' m not sure . </s>
("<s> because he ' s an <unk> asshole . </s>", 0) | <s> i ' m sorry . </s>
('<s> you came with a skeleton crew ? </s>', 0) | <s> i ' m not . </s>
('<s> yes . it was , actually . </s>', 0) | <s> i ' m sorry . </s>
("<s> how ' d i do that ? </s>", 0) | <s> i ' m not . </s>
('<s> i been here almost a week . </s>', 0) | <s> i ' m not . </s>
('<s> we can live in a <unk> . </s>', 0) | <s> i ' m not . </s>
("<s> and you ' re <person> . </s>", 0) | <s> i ' m sorry . </s>
('<s> i was protecting my home . </s>', 0) | <s> i ' m sorry . </s>
('<s> taking the long way home . </s>', 0) | <s> i ' m sorry . </s>
('<s> <person> is a <unk> word . </s>', 0) | <s> i ' m not . </s>
("<s> is morally , <unk> ' ly </s>", 0) | <s> i ' m sorry . </s>
('<s> <person> ran off with someone ? </s>', 0) | <s> <person> , <person> . </s>
('<s> i need your help . </s>', 0) | <s> <person> , <person> . </s>
('<s> put your shoulders back . </s>', 0) | <s> <person> , <person> . </s>
('<s> but . but why ? </s>', 0) | <s> <person> , <person> . </s>
('<s> oh nothing , <person> . </s>', 0) | <s> <person> , <person> . </s>
("<s> i don ' t . </s>", 0) | <s> <person> , <person> . </s>
('<s> do you love me ? </s>', 0) | <s> <person> , <person> . </s>
('<s> <person>o you know him ? </s>', 0) | <s> <person> , <person> . </s>
('<s> do you love me ? </s>', 0) | <s> <person> , <person> . </s>
('<s> oh , my ! </s>', 0) | <s> <person> , <person> . </s>
('<s> <person> , please . </s>', 0) | <s> <person> . </s>
('<s> what was that ? </s>', 0) | <s> <person> . </s>
('<s> you came here . </s>', 0) | <s> <person> . </s>
('<s> god help me . </s>', 0) | <s> <person> . </s>
('<s> about what ? </s>', 0) | <s> <person> . </s>
('<s> the dogs ? </s>', 0) | <s> <person> . </s>
('<s> thank you . </s>', 0) | <s> <person> . </s>
('<s> <person> shit . </s>', 0) | <s> <person> . </s>
('<s> up . </s>', 0) | <s> <person> . </s>
('<s> no . </s>', 0) | <s> <person> . </s>
("<s> you couldn ' t sit on your <unk> under my daddy ' s roof . no sir . if you couldn ' t <unk> his mule , you wasn ' t worth the salt you put in <unk> . you had to wake up looking for something to do . i was raised as a mule and now i ' m a rolling stone . <continued_utterance> i didn ' t mean for you to pay me for that . </s>", 0) | <s> i ' m not . i ' m not . i ' m not a <unk> . i ' m
("<s> the freezing cold of <unk> . it will kill you all in time , even <unk> . <continued_utterance> you think you can <unk> me ? i , who watch all ? i , who can sense the flapping of a butterfly ' s wings a thousand worlds away ? <continued_utterance> or can hear a cricket passing gas in <unk> ? <unk> looks <unk> . </s>", 0) | <s> <person> , i ' m not a <unk> . i don ' t know what you ' re doing .
("<s> well he ' s handsome and he ' s charming . he ' s all right . for now . <person> ' t say it , i know , i ' m <person> . i can ' t help it . i ' ve <person> to be good but it ' s too boring . </s>", 0) | <s> i ' m not a <unk> . i don ' t know what i ' m talking about . i
('<s> well , i never heard of him either . but this was one brave <unk> bitch . <person> for the <unk> and lost his left arm in one battle and his left foot in another . then after the war he ran and won the <unk> of louisiana -- twice ! </s>', 0) | <s> no , no , no , no , no , no , no , no , no , no ,
("<s> i don ' t want to wear out welcome , but you can stay in someone ' s heart longer than you can stay in their house . come with us , boy . we are going to have a good time . </s>", 0) | <s> i ' m not going to tell you . i don ' t know what i ' m doing .
('<s> i wish ! he just kept <unk> everything . my dolls were alter egos . boys who wanted to kiss me were <unk> <unk> <unk> looking to <unk> their mothers on their <unk> family <unk> . </s>', 0) | <s> <person> , i ' m not going to be here . i don ' t know what you ' re
("<s> you want to <unk> things up , <person> ? that ' s a hell of an idea . say everyone puts in twenty bucks and the pot goes to whoever <unk> the <unk> . </s>", 0) | <s> <person> ' t worry , <person> . i don ' t know what you ' re doing . i '
("<s> you say you get a million , you get the million . some cop gives us shit , he ' s dead . <person> , man , you ' re <unk> ! </s>", 0) | <s> <person> , i ' ll tell you what i ' m going to do . i ' ll tell you
("<s> that crazy guy that banged into my car and smashed my windows in . i don ' t fucking believe it ! i ' m gon na get him . </s>", 0) | <s> i ' m not going to tell you . i don ' t know what you ' re talking about
("<s> if i discount i have to fire someone because i can ' t discount with this overhead but whom could i fire ? i couldn ' t fire anyone . </s>", 0) | <s> no , no , no , no , no , no , no , no , no , no ,
('<s> i remember that deal . you were involved ? <unk> shuts off the computer and slides it back into the housing , his eyes taking in the <unk> news . </s>', 0) | <s> i don ' t know . i ' m sorry . i ' m sorry . i ' m sorry
("<s> you ' re leaving it out . finish your swing . you ' re going to like this one -- she ' s half asian , half american . </s>", 0) | <s> i don ' t know . i don ' t know what you ' re talking about . i '
("<s> you know you can always talk to me . right ? whatever is going on in your life , your mom and i ' ll understand . </s>", 0) | <s> <person> , i don ' t know . i ' m sorry . i ' m sorry . i '
('<s> bout fifty thousand times . i got us a room at the cape fear , and guess what ? . i hear <unk> at the hurricane . </s>', 0) | <s> <person> , i don ' t know what you ' re doing . i don ' t know what you
("<s> you guys must know something nobody else knows . if those are my plans , it ' s the first i ' ve heard of it . </s>", 0) | <s> no , no , no , no , no , no , no , no , no , no ,
("<s> i have the navy reception this evening . i ' ll be home quite late . unless you ' ve changed your mind about coming ? </s>", 0) | <s> <person> , i ' m not . i don ' t know what you ' re doing . i '
('<s> poor <person> . the cold war is over . what have you got left ? economic <unk> . <person> in the <unk> . so dull . </s>', 0) | <s> <person> , i ' m sorry . i don ' t know what you ' re doing . i '
("<s> i think maybe i should , because i think you ' re being <unk> . i think you ' re confused . i think . </s>", 0) | <s> i ' ll tell you what i ' m going to do . i ' ll be right back .
("<s> that ' s alright . i was having a bad dream . i was <unk> ' about a joke with no <unk> . </s>", 0) | <s> i ' m sorry . i ' m sorry . i ' m sorry . </s>
("<s> the same interest as yours <person> . <person> . i thought it ' d be a good investment for my kid . </s>", 0) | <s> i ' ll be right back . i ' ll be back . </s>
('<s> the reason you insisted on testing my system with prisoners is because of the increased risks involved with increased <unk> . </s>', 0) | <s> i ' m not sure . i don ' t know what to do . </s>
('<s> then my father was wrong . <continued_utterance> i have to check the upper lines . <person> will drive you back . </s>', 0) | <s> i don ' t know . i ' m not going to tell you . </s>
('<s> i saw you <unk> with that <unk> , <person> . now , you and hunk get back to that wagon ! </s>', 0) | <s> i don ' t know . maybe i ' d like to see you . </s>
("<s> that ' s why she hates me . that ' s why she makes me sleep in the basement . </s>", 0) | <s> i ' m sorry . i don ' t know what to do . </s>
('<s> i think something happened , something terrible and unexpected that made it impossible for him -- <person> walks in . </s>', 0) | <s> <person> , i ' m not going to be a little <unk> . </s>
("<s> the fire ' s got the temperature way up all over camp . won ' t last long though . </s>", 0) | <s> i don ' t know . i don ' t know what to do . </s>
("<s> <person> . <continued_utterance> mom . <continued_utterance> i have ' ta go . <continued_utterance> i ' ll call you . </s>", 0) | <s> i ' ll be right back . i ' ll be right back . </s>
('<s> but he never stays on that long ! sometimes he hangs up after just a couple of seconds . </s>', 0) | <s> i don ' t know what you ' re talking about . </s>
("<s> no . <person> put you in there for a reason . i ' ll wait for somebody else . </s>", 0) | <s> i don ' t know what you ' re talking about . </s>
('<s> i see my date is here . and i think mr . <person> is ready to leave . </s>', 0) | <s> <person> , i ' m sorry . i ' m sorry . </s>
('<s> really ? you want me to slap your face ? get you psyched up for the call ? </s>', 0) | <s> i ' m sorry . i ' m not going anywhere . </s>
("<s> she ' s late ? she ' s probably at the store buying some crap or something . </s>", 0) | <s> i don ' t know what you ' re talking about . </s>
("<s> what if he wasn ' t <unk> to kick and you were really mad at him ? </s>", 0) | <s> i ' m not going to be a good friend . </s>
("<s> what do you mean it doesn ' t change anything ? have a heart , <unk> . </s>", 0) | <s> i ' m sorry . i ' m sorry . </s>
('<s> i take that as a sign that we were destined by fate to be together . </s>', 0) | <s> i don ' t know . i ' m sorry . </s>
("<s> you idiot ! you don ' t even know what you ' re fighting over ! </s>", 0) | <s> i ' m not going to be a <unk> . </s>
("<s> i have to swing by a client ' s house and shut off the water . </s>", 0) | <s> <person> , i ' m not going anywhere . </s>
('<s> you guess ? my parole was broke two hundred miles back when we burnt <person> . </s>', 0) | <s> <person> , i don ' t know what to do . </s>
('<s> no . it is the beginning . the world will never be the same . </s>', 0) | <s> i don ' t know . i ' m sorry . </s>
('<s> say anything you want . i know you love me and i love you . </s>', 0) | <s> i ' ll see you in the morning . </s>
("<s> i ' ll be with you the whole month . try your baby steps . </s>", 0) | <s> <person> , i don ' t know what to do . </s>
("<s> come on , d ' <person> . we haven ' t got all night . </s>", 0) | <s> <person> , i ' m not going anywhere . </s>
("<s> hey . if you want to talk later . i ' ll be up . </s>", 0) | <s> i ' m not going to tell you . </s>
("<s> you got ta be kiddin ' me . they picked up a murderer ? ! </s>", 0) | <s> i ' ll be back in the morning . </s>
('<s> get them out of here . if he says one word , shoot him . </s>', 0) | <s> i don ' t know what to do . </s>
('<s> <person> ? okay , i got work to do , see you guys downstairs . </s>', 0) | <s> i ' ll be in the <unk> . </s>
('<s> i want to be here . with you . what do you want . </s>', 0) | <s> <person> , i ' m not a <unk> . </s>
("<s> one thing for sure , <person> ain ' t lookin that good naked . </s>", 0) | <s> i don ' t know , <person> . </s>
("<s> i . given the limits of your question , that ' s correct . </s>", 0) | <s> i don ' t think so . </s>
('<s> wow . i feel bad . you said to draw a <unk> . </s>', 0) | <s> <person> , i don ' t know . </s>
("<s> clearing everyone out ! it ' s been <unk> for months . </s>", 0) | <s> <person> , i don ' t know . </s>
("<s> i don ' t want you to feel bad for me . </s>", 0) | <s> i don ' t think so . </s>
('<s> take a minute to <unk> up , fine with me -- </s>', 0) | <s> i ' ll be right back . </s>
("<s> i ' m <person> wallace -- this is <person> <unk> -- </s>", 0) | <s> <person> , i don ' t know . </s>
("<s> he can go make his father ' s life miserable ! </s>", 0) | <s> <person> , i ' m sorry . </s>
('<s> i mean , who runs <unk> on the mexico side ? </s>', 0) | <s> i ' ll be right back . </s>
("<s> <person> ? i don ' t know anybody in <person> . </s>", 0) | <s> i ' m sorry , <person> . </s>
('<s> well , how long is it going to take ? </s>', 0) | <s> <person> ' t worry about it . </s>
('<s> that looks <unk> . <continued_utterance> did i do something ? </s>', 0) | <s> i don ' t know . </s>
('<s> sure . just <unk> some off your heart . </s>', 0) | <s> i don ' t know . </s>
('<s> and he asked you to live with him ? </s>', 0) | <s> i don ' t know . </s>
('<s> meaning these <unk> might <unk> something bigger . </s>', 0) | <s> i don ' t know . </s>
("<s> well -- i don ' t know . </s>", 0) | <s> i don ' t know . </s>
("<s> it ' s <unk> in there . - </s>", 0) | <s> i ' m not sure . </s>
('<s> and what do you call this ? </s>', 0) | <s> i ' m not sure . </s>
('<s> was this all about the oil ? </s>', 0) | <s> i don ' t know . </s>
('<s> she only eats milk and cereal . </s>', 0) | <s> i ' m not sure . </s>
('<s> and no one found the ring ? </s>', 0) | <s> i don ' t know . </s>
('<s> do you know these life forms ? </s>', 0) | <s> i ' m not . </s>
("<s> what ' s to tell ? </s>", 0) | <s> <person> , <person> . </s>
('<s> where are you , <person> ? </s>', 0) | <s> i ' m sorry . </s>
("<s> i wasn ' t cheating ! </s>", 0) | <s> i ' m sorry . </s>
('<s> nobody calls me an idiot . </s>', 0) | <s> i ' m not . </s>
('<s> how are you this evening ? </s>', 0) | <s> <person> , <person> . </s>
('<s> well what did she say ? </s>', 0) | <s> <person> ' s go . </s>
('<s> do you like my music ? </s>', 0) | <s> i ' m not . </s>
('<s> jody he was lying . </s>', 0) | <s> i ' m not . </s>
('<s> i can hardly wait . </s>', 0) | <s> <person> , <person> . </s>
('<s> and then shoot them . </s>', 0) | <s> <person> ' t . </s>
('<s> what do you mean ? </s>', 0) | <s> <person> , <person> . </s>
("<s> that ' s right . </s>", 0) | <s> i ' m sorry . </s>
('<s> give us a kiss . </s>', 0) | <s> <person> , <person> . </s>
("<s> a teacher ' s . </s>", 0) | <s> <person> , <person> . </s>
('<s> where are you going ? </s>', 0) | <s> <person> , <person> . </s>
('<s> i mean it . </s>', 0) | <s> <person> , <person> . </s>
('<s> <person> con <person> ! </s>', 0) | <s> <person> , <person> . </s>
('<s> promises , promises . </s>', 0) | <s> <person> , <person> . </s>
('<s> i sure would . </s>', 0) | <s> <person> , <person> . </s>
('<s> sort of . </s>', 0) | <s> <person> . </s>
('<s> <unk> <unk> . </s>', 0) | <s> <person> . </s>
('<s> <person> likely . </s>', 0) | <s> <person> . </s>
('<s> no . </s>', 0) | <s> <person> . </s>
('<s> what ? </s>', 0) | <s> <person> . </s>
('<s> so ? </s>', 0) | <s> <person> . </s>
('<s> who ? </s>', 0) | <s> <person> . </s>
('<s> <person> . </s>', 0) | <s> <person> . </s>
('<s> possibly . </s>', 0) | <s> <person> . </s>
('<s> why ? </s>', 0) | <s> <person> . </s>
('<s> <person> ? </s>', 0) | <s> <person> . </s>
('<s> <person> . </s>', 0) | <s> <person> . </s>
("<s> why would <person> want you ? ! <person> at you ! you ' re a <person> light year . any other toy would give up his moving parts just to be you . you ' ve got wings , you glow in the dark , you talk , your helmet does that -- that <unk> thing -- you are a cool toy . <continued_utterance> as a matter of fact you ' re too cool . i mean -- i mean what chance does a toy like me have against a <person> light year action figure ? all i can do is . <continued_utterance> there ' s a snake in my boots ! <continued_utterance> why would <person> ever want to play with me , when he ' s got you ? i ' m the one that should be strapped to that rocket . </s>", 0) | <s> <person> , i ' m not a <unk> . i don ' t know what to do . i '
("<s> most of what i find in here is <unk> a <unk> picture of an organization with an <unk> motive . i realize you ' re very lucky to be alive <person> . the <unk> you ' ve <unk> has clearly affected you -- though the holes in your account leave this panel with little choice but to <unk> these references from our final report to the justice department . <person> which time hard evidence becomes available that would give us cause to pursue such an investigation . <unk> has her hand in her coat pocket now . moving around the table and approaching <person> . <unk> </s>", 0) | <s> no , no , no , no , no , no , no , no , no , no ,
("<s> only children are frightened by the dark . - but then you are a child , aren ' t you ? i ' ll build a fire . <unk> let us go from here . time <unk> i can ' t , child . my <person> is inside there , i intend to wait here ' til morning , then find some way of getting inside . <unk> no , you must not . time <unk> help me gather some wood . </s>", 0) | <s> no , no , no , no , no , no , no , no , no , no ,
("<s> i love you so much it hurts . me and your mother <unk> at what you have become . you ' re going to have a wonderful journey with this girl . i feel it deep inside . a wonderful , magical journey . and i ' m , like i said , just so proud of how you turned out . you go out and knock ' em dead <person> . <person> ' em dead ! </s>", 0) | <s> <person> , i don ' t know what you ' re talking about . i don ' t know what
("<s> how many deaths is he responsible for ? how many innocent people ? you may only get one shot at a man like <person> . same circumstances , i ' d do the same again . <continued_utterance> we sent <number> down to kill him . before he could , <person> escaped . a week later our man caught up with the target . put a bullet in his head . that bullet is still there . </s>", 0) | <s> <person> , i ' ll tell you what i ' m gon na do . i ' m going to
("<s> she was small . most people don ' t know that . the shoulders are small . it looks so perfect . i bet it ' s the only time she wore it . that day . she must ' ve felt so . happy . <continued_utterance> it ' s feels <unk> , like butterfly wings or . something . it must ' ve cost dr . <person> a lot . </s>", 0) | <s> <person> , i ' ll tell you what i ' m gon na do . i ' m gon na
("<s> you don ' t know what the hell you ' re talking about . you ' re a cocky seventeen year-old and you don ' t have a clue what the stakes are . you don ' t know the value of the life you ' ve yet to throw away . and neither does she . </s>", 0) | <s> <person> , i ' m sorry . i ' m sorry . i ' m sorry . i ' m
("<s> i don ' t care what the damn <unk> ate . you just keep that shit away from me , now i mean it . <continued_utterance> and i don ' t want any more <person> , either . it ' s burning a hole in my stomach . </s>", 0) | <s> <person> , i ' m sorry . i ' m sorry . i ' m sorry . i ' m
("<s> his <unk> can get him killed , <person> . he ' s got nothing more to prove . he ' s already lasted two rounds against <unk> , which is more than anyone else can say . you wonder what ' s keeping this guy up . </s>", 0) | <s> <person> , i ' m sorry . i don ' t know what you ' re talking about . i
("<s> nothing to do with me ? i ' m your <person> for <person> ' s sake . god , i <person> ' t believe this . <person> to him , will you ? or hit him . oh no , don ' t tell me . </s>", 0) | <s> i ' m not going to tell you . i don ' t know what you ' re talking about
('<s> sir <person> . like all <unk> he thinks he was born with a better pot to piss in . <unk> an old secretary of mine to open bar mouth and stole <unk> <unk> right out from under me . <person> the white knight . </s>', 0) | <s> i don ' t know . i don ' t know . i don ' t know . i '
("<s> no doubt . i don ' t think anyone got a <unk> last night with all that racket . <continued_utterance> i thought there were laws in this city against <unk> <unk> . or are they just another big policeman ' s joke ? </s>", 0) | <s> i don ' t know what you ' re doing . i don ' t know what you ' re
("<s> <person> , i ' ve known this day was coming for a long time . i ' ve got your father and the garden and the new house . you really don ' t have to worry . <continued_utterance> really . </s>", 0) | <s> <person> , i ' m sorry . i ' m sorry . i ' m sorry . i ' m
("<s> i don ' t know . he doesn ' t talk much . he ' s kind of a weird kid . why can ' t i have one kid like that on my team ? just one . </s>", 0) | <s> <person> , i ' m sorry . i ' m not going to tell you . i ' m not
("<s> wait a minute , i don ' t get it ! we take the basket and the milk , that ' s all . we ain ' t gon na take the . what ' s inside . </s>", 0) | <s> <person> . <person> . <person> . <person> . <person> . <person> . <person> . <person> . <person> . <person> .
("<s> i ' m sitting on a two shot lead with three to go , and my partner ' s in his pocket . suddenly , <unk> ' s a good number . gim me the seven iron . </s>", 0) | <s> i ' m not going to tell you , <person> . i don ' t know what you ' re
("<s> <person> ? well , it ' s the law , mr . <person> . has been since <number> they tell me . <person> - ya carry ya gun or ya get reported . </s>", 0) | <s> <person> , i ' m sorry . i ' m just . i ' m sorry . i ' m
("<s> one other thing . about this kid , this student of <unk> <unk> -- <person> . you wouldn ' t know how i could get in touch with him , would you ? </s>", 0) | <s> <person> , i ' ll tell you what i ' m gon na do . i ' m gon na
("<s> anonymous . <continued_utterance> i ' ve been getting <unk> my whole life . it ' s what they expect . after all this , i still haven ' t figured it out . </s>", 0) | <s> i don ' t know . i don ' t know . i don ' t know . </s>
("<s> august ! <person> ! she was good ! she came back on her own ! besides , you can ' t do anything now ! the show is still going on . </s>", 0) | <s> <person> , i ' ll be right back . i ' ll be right back . </s>
('<s> not exactly , sugar . one reason were in all the trouble were in right now is cause of what i was doin . i tried to tell you this before . </s>', 0) | <s> i don ' t know . i ' m not going to tell you . </s>
("<s> that ' s how they work . <person> ? you ' re <unk> ' along already . <continued_utterance> all right . <unk> . only from <unk> . here we go . </s>", 0) | <s> i don ' t know . i ' m just a little <unk> . </s>
("<s> <person> ' s right . there ' s not enough time to finish <unk> . we ' ll lose everything and i ' ll end up working in the mines . </s>", 0) | <s> i ' ll be right back . i ' ll be right back . </s>
("<s> i don ' t see <person> winning . fuck it , i ' m not gon na even place the bet . i just made a hundred bucks . </s>", 0) | <s> <person> , i don ' t know what you ' re talking about . </s>
("<s> oh , yes , sure . that ' s why we ' re so spaced out . <continued_utterance> we were right into it , weren ' t we ? </s>", 0) | <s> i ' m sorry . i don ' t know what to do . </s>
("<s> we ' re just characters in here . <person> ' t mix your <unk> <unk> into it or you ' ll lose for sure . </s>", 0) | <s> i don ' t know what you ' re talking about . </s>
("<s> of course . she ' s my father ' s ex- girlfriend . i think that might make you my <unk> . </s>", 0) | <s> <person> , i don ' t know what you ' re talking about . </s>
("<s> <person> ' t no one cares about the <unk> pig . he just <unk> damage to the <unk> at the mall . </s>", 0) | <s> i ' ll tell you what i ' m going to do . </s>
("<s> you ' re smarter than you look , frank . <continued_utterance> and you ' re right . here , take it . </s>", 0) | <s> <person> , i ' m not going to tell you . </s>
("<s> . and there ' s no truth that <number> % of that money will go into your swiss bank account ? </s>", 0) | <s> i ' ll tell you what i ' m going to do . </s>
("<s> you did it again . <continued_utterance> i put you out of business . you ' re entitled to hate me . </s>", 0) | <s> i don ' t know what you ' re talking about . </s>
("<s> i can ' t just pick up <unk> from <unk> ! i made most of that equipment myself ! </s>", 0) | <s> i ' m not going to be a good man . </s>
("<s> well . i ' ve got a little more news about your friend <person> . <person> seems relieved . </s>", 0) | <s> <person> , i ' m not going to tell you . </s>
('<s> id got to the far end of the world for you , baby . you know i would . </s>', 0) | <s> <person> , i ' m not gon na do it . </s>
("<s> <person> and i were friends from childhood . he was loyal , that ' s not a mistake . </s>", 0) | <s> i don ' t know . i ' m sorry . </s>
('<s> you guys going to let him give orders ? i mean he could be one of those things . </s>', 0) | <s> i ' m sorry . i ' m sorry . </s>
("<s> i bet if you ' d promised <person> some <unk> he ' d of got ' em . </s>", 0) | <s> i ' m sorry . i ' m sorry . </s>
("<s> why ? he ' s not gon na do anything different than what i ' m doing . </s>", 0) | <s> i ' m not going to do that . </s>
("<s> got me . but unless the will shows up by friday midnight , it ' s theirs . </s>", 0) | <s> i ' m not going to be a <unk> . </s>
('<s> i came to work in the garden and i saw you with her . in my house . </s>', 0) | <s> i ' m not going to tell you that . </s>
("<s> <person> , thank you . thanks for everything . but i ' ve got to go . </s>", 0) | <s> i ' m not going to do that . </s>
("<s> he said a few things that lead me to believe the car ' s his . </s>", 0) | <s> i don ' t know what to do . </s>
("<s> c ' mon , <person> , when did you ever take a crazy risk ? </s>", 0) | <s> i ' ll see you in the morning . </s>
('<s> come on , <person> , we could have a great week up in vermont . </s>', 0) | <s> i ' m not going anywhere . </s>
("<s> you didn ' t happen to talk to <person> today , did you ? </s>", 0) | <s> <person> , i don ' t know . </s>
('<s> well you look great . are you married , do you have kids ? </s>', 0) | <s> i ' m going to the <unk> . </s>
("<s> <person> . i didn ' t realize it ' d been so long . </s>", 0) | <s> i ' m not going to tell you . </s>
("<s> that ' s why i ' ll be there at <number> : <number> . </s>", 0) | <s> i ' m not going to die . </s>
("<s> <unk> . he ' s just gotten on a plane in <unk> . </s>", 0) | <s> i ' ll see you in the morning . </s>
('<s> so where do you think <unk> ; s planning this larger demonstration ? </s>', 0) | <s> i ' ll take care of you . </s>
("<s> it ' s a family <unk> , <person> . think clean thoughts . </s>", 0) | <s> <person> , i ' m sorry . </s>
('<s> <person> ? do you want to come to the beach with me ? </s>', 0) | <s> <person> , i don ' t know . </s>
('<s> <person> , <person> . <person> let me . i can do it . </s>', 0) | <s> <person> , i don ' t know . </s>
("<s> i ain ' t got no eyes . you want to see ? </s>", 0) | <s> i ' m sorry , <person> . </s>
("<s> that ' s okay . you don ' t have to . </s>", 0) | <s> i don ' t think so . </s>
('<s> new york has the best doctors and hospitals in the country . </s>', 0) | <s> i don ' t know . </s>
('<s> indian time . <continued_utterance> where ya gon na go , <person> ? </s>', 0) | <s> i ' m sorry , <person> . </s>
('<s> the <unk> were not supposed to seat you until <unk> . </s>', 0) | <s> i don ' t know . </s>
("<s> oh . we ' re picking her up . <person> . </s>", 0) | <s> i ' m not a <unk> . </s>
("<s> <person> ' t she want to take her ? </s>", 0) | <s> i don ' t know . </s>
("<s> i ' m not gon na take it . </s>", 0) | <s> i don ' t know . </s>
("<s> <person> ' t that a cry for help ? </s>", 0) | <s> i don ' t know . </s>
('<s> you want to stick around here , <person> ? </s>', 0) | <s> i don ' t know . </s>
("<s> i don ' t know what you -- </s>", 0) | <s> i ' m not sure . </s>
('<s> where am i ? ! answer me ! </s>', 0) | <s> i don ' t know . </s>
('<s> this is miles from the battle lines . </s>', 0) | <s> i don ' t know . </s>
("<s> i ' m picking everybody up . </s>", 0) | <s> i ' m not sure . </s>
("<s> i know you ' re not . </s>", 0) | <s> i don ' t know . </s>
("<s> where ' s the new squeeze ? </s>", 0) | <s> i don ' t know . </s>
('<s> thanks for your help , <person> . </s>', 0) | <s> <person> , i know . </s>
("<s> because she ' s sick . </s>", 0) | <s> i ' m not . </s>
('<s> <unk> . you met her . </s>', 0) | <s> <person> , <person> . </s>
('<s> bastards put him on notice . </s>', 0) | <s> i ' m sorry . </s>
('<s> how long will that take ? </s>', 0) | <s> i ' m sorry . </s>
('<s> yeah , give it here . </s>', 0) | <s> <person> , <person> . </s>
('<s> where are you taking me ? </s>', 0) | <s> i ' m sorry . </s>
('<s> sounds like a good one . </s>', 0) | <s> <person> , <person> . </s>
('<s> what ? you change <unk> ? </s>', 0) | <s> i ' m sorry . </s>
('<s> look -- it <unk> ! </s>', 0) | <s> <person> , <person> . </s>
('<s> hello , little baby . </s>', 0) | <s> <person> , <person> . </s>
('<s> you heard from reggie ? </s>', 0) | <s> <person> , <person> . </s>
('<s> just hang a minute . </s>', 0) | <s> <person> , <person> . </s>
('<s> it was really stupid . </s>', 0) | <s> <person> , <person> . </s>
('<s> the hell i did ! </s>', 0) | <s> <person> , <person> . </s>
('<s> so we wait . </s>', 0) | <s> <person> , <person> . </s>
('<s> <person> that work ? </s>', 0) | <s> <person> , <person> . </s>
('<s> i was <unk> ! </s>', 0) | <s> <person> , <person> . </s>
('<s> that was different . </s>', 0) | <s> <person> . </s>
('<s> what was ? </s>', 0) | <s> <person> . </s>
('<s> i do . </s>', 0) | <s> <person> . </s>
('<s> not now . </s>', 0) | <s> <person> . </s>
('<s> not important . </s>', 0) | <s> <person> . </s>
('<s> why ? </s>', 0) | <s> <person> . </s>
('<s> yes . </s>', 0) | <s> <person> . </s>
('<s> blonde . </s>', 0) | <s> <person> . </s>
('<s> what ? </s>', 0) | <s> <person> . </s>
('<s> yeah . </s>', 0) | <s> <person> . </s>
('<s> what ? </s>', 0) | <s> <person> . </s>
('<s> who ? </s>', 0) | <s> <person> . </s>
('<s> yeah . </s>', 0) | <s> <person> . </s>
("<s> maybe it was better when you came in and they screamed at you for having sex with your married boss , and were really mean to you , and told you what a terrible thing it was . maybe it ' d be better if you told me how i ' m <unk> my immortal soul , and if i don ' t quit i ' m going to burn in hell . <person> ' t you ever think that ? </s>", 0) | <s> <person> , i ' m not going to tell you . i don ' t know what you ' re
("<s> we ' ll ground her , clip her wings a bit . <person> and scheduled activities and that ' s it until further notice . this has to be handled <unk> . <person> , in the district attorney ' s office , will probably help us out , quietly . <person> , this could be embarrassing . </s>", 0) | <s> <person> , i ' m not a <unk> . i don ' t know what i ' m doing .
("<s> <person> , we promised never to talk about this . <continued_utterance> what are we supposed to do ? leave town ? take the kids and lock ourselves up somewhere ? come on . <person> ' s get a good night ' s sleep , and in the morning we can <unk> this whole thing . </s>", 0) | <s> i ' m not going to tell you , <person> . i don ' t know what you ' re
("<s> i mean , how can that be ? it just happened that way ? and i ' m not even getting into the <unk> . i ' m just dealing with vegetables right now . with all those things coming out of the earth , there must be a god . </s>", 0) | <s> <person> ' t worry about it . i don ' t know what i ' m talking about . i
("<s> then what ? <continued_utterance> <unk> , it will be fine . and when all the machines break down and they call up the horses , i ' ll see you at the front . we ' ll be together again . <continued_utterance> <unk> . </s>", 0) | <s> <person> , i ' ll tell you what i ' m gon na do . i ' m gon na
("<s> so come home and live rent free , ' stead of that cockroach palace you live in . $ <number> , <number> <person> , the world is off its <unk> . i made $ <number> , <number> last year and you . </s>", 0) | <s> i ' m not going to tell you , <person> . i ' m not going to tell you .
("<s> i ' m buying milk . i just thought i ' d say hello . <continued_utterance> look , i know it ' s probably too late , but is there any way you can come out for a little while ? </s>", 0) | <s> <person> , i don ' t know what you ' re doing . i ' m not sure i '
("<s> you ' re stuck now , aren ' t you ? you want to go back to the chinese restaurant because there ' s nothing happening here . we ' re safe . it ' s boring . </s>", 0) | <s> i don ' t know . i don ' t know . i don ' t know . i '
("<s> we can ' t stop . i ' ve been noticing some new . <unk> . i ' m not sure what they mean . i ' m not sure the game is ok . </s>", 0) | <s> <person> , <person> . i don ' t know what you ' re doing . i don ' t know
('<s> well , you always did take good care of her . <person> . man of priorities . <continued_utterance> got a little something for ya . <person> always said never go anywhere empty handed . </s>', 0) | <s> i ' m sorry . i ' m sorry . i ' m sorry . i ' m sorry .
("<s> god ! you have no idea how much that turns me on . i ' ve never had the courage to say this before but . i love you , <unk> . </s>", 0) | <s> <person> , i ' ll tell you what i ' m gon na do . i ' m gon na
("<s> we ' re giving the <unk> <unk> instead . but a story ' ll just <unk> things . <continued_utterance> not today . he ' s got tight schedule . </s>", 0) | <s> <person> , i don ' t know what you ' re talking about . i don ' t know what
("<s> it ' s a mental thing . helps me focus . the one thing you don ' t want to do is miss with the <unk> finder . </s>", 0) | <s> <person> , i ' m sorry . i ' m sorry . i ' m sorry . i ' m
("<s> fast . <continued_utterance> i ' m basically a coward , russell , i hope you understand that . i hope we don ' t get shot . </s>", 0) | <s> no , no , no , no , no , no , no , no , no , no ,
("<s> oh , it ' s being published in january . are you going to be in business in january ? i ' m so worried . </s>", 0) | <s> <person> , i ' m sorry . i ' m sorry . i ' m sorry . i ' m
("<s> incredible . we should take a drive before they ' re gone . spend the night at some cozy little bed and breakfast . </s>", 0) | <s> <person> , i ' ll tell you what i ' m gon na do . i ' m gon na
('<s> well , your ears are in the right place . and the rest of it is . not too bad at all . </s>', 0) | <s> i don ' t know . i ' m sorry . i ' m sorry . i ' m not
("<s> that ' s it . <person> start that ball rolling . <continued_utterance> i ' ll be damned . this is funny . </s>", 0) | <s> <person> , i ' m not going to tell you . i don ' t know what you ' re
("<s> -- i ' ll have you back for it , <person> . maybe with evidence that could blow that meeting away . </s>", 0) | <s> i ' m not going anywhere . i don ' t know what to do . </s>
('<s> <person> been a lesson tellin ya it was the wrong time . what did you do , your mama find out ? </s>', 0) | <s> i ' m sorry , <person> . i ' m not going to tell you . </s>
("<s> <person> , i ' m already carrying you for , what is it -- twenty-three hundred ? something like that ? </s>", 0) | <s> <person> . i don ' t know what you ' re talking about . </s>
("<s> so you ' re basically lying your ass off the whole time ? i couldn ' t do it . </s>", 0) | <s> <person> , i don ' t know what you ' re talking about . </s>
('<s> . needs constant attention . <continued_utterance> enough ice for one day . <continued_utterance> you never take this off ? </s>', 0) | <s> i ' m sorry . i don ' t know what to do . </s>
('<s> you promise ? <unk> picks up the tray , heads back mumbling . <continued_utterance> <person> white scientist motherfucker . </s>', 0) | <s> <person> ' t you think it ' s a good idea ? </s>
("<s> why don ' t you take both . maybe you can choke to death on one of them . </s>", 0) | <s> <person> , i ' m not gon na be a <unk> . </s>
('<s> <person> . say hello to detectives <unk> and <person> . <person> <unk> . a fellow guidance counselor . </s>', 0) | <s> i ' m not going to be a good friend of mine . </s>
("<s> it ' s a quarter mile to the <unk> . why do you need the car ? </s>", 0) | <s> i don ' t know what you ' re talking about . </s>
("<s> addicts treat themselves . they <unk> and then there ' s one less to worry about . </s>", 0) | <s> i ' d like to see you in the morning . </s>
('<s> you know the <unk> is the deadline for the <unk> to get out of kuwait . </s>', 0) | <s> i don ' t know . i ' m sorry . </s>
("<s> i left a message . i think it ' s going to be okay . </s>", 0) | <s> <person> ' t you think i ' m a <unk> ? </s>
('<s> i do my best . <continued_utterance> <person> for the inconvenience . <person> your stay . </s>', 0) | <s> i ' d like to see you in the morning . </s>
('<s> or he might have been carrying a silver handled gun tucked in his pants . </s>', 0) | <s> i don ' t know . i don ' t know . </s>
("<s> you ' re still convinced there ' s a link to the department ? </s>", 0) | <s> i ' m sorry . i ' m sorry . </s>
('<s> what do you mean ? bond reaches forward to toss the coffee can - </s>', 0) | <s> i don ' t know what to do . </s>
("<s> i ' m leaving here now ; be home in half an hour . </s>", 0) | <s> i ' m not sure you know that . </s>
("<s> it ' ll be delivered sunday and picked up next thursday , okay ? </s>", 0) | <s> <person> , you ' re a good man . </s>
('<s> is that why you called me . just to tell me that ? </s>', 0) | <s> i ' ll see you in the morning . </s>
("<s> i don ' t know ! i just want to get married . </s>", 0) | <s> i don ' t know what to do . </s>
('<s> you got to know everything , do everything , and be everything . </s>', 0) | <s> <person> , you ' re a good man . </s>
('<s> i know . <person> , <person> . i fucked my boss . ! </s>', 0) | <s> i ' m sorry . i ' m not . </s>
("<s> the guy who ran into me . that ' s his car . </s>", 0) | <s> i ' m sorry . i ' m sorry . </s>
('<s> a little extra never hurt , <person> , would you just relax . </s>', 0) | <s> <person> , i ' m not going anywhere . </s>
('<s> <person> ! i knew you had it all under control . </s>', 0) | <s> <person> , you ' re a good man . </s>
('<s> just listen to what <person> did to <person> ! she -- </s>', 0) | <s> i ' ll see you in the morning . </s>
('<s> <unk> . and guess what else ? i have toys . </s>', 0) | <s> <person> , i don ' t know . </s>
('<s> something like that . do you live around here now ? </s>', 0) | <s> <person> , i ' m sorry . </s>
("<s> four o ' clock . <person> ' t be late . </s>", 0) | <s> i ' ll be right back . </s>
("<s> it ' s over . you can go now . </s>", 0) | <s> i ' ll be right back . </s>
('<s> help ! help ! help ! help ! help ! </s>', 0) | <s> i ' m not going anywhere . </s>
('<s> you okay ? <continued_utterance> thanks a lot , ted . </s>', 0) | <s> i ' m not going anywhere . </s>
('<s> what you call <unk> , we call our history . </s>', 0) | <s> i ' m sorry , <person> . </s>
('<s> will you please stop talking about your <unk> ? ! </s>', 0) | <s> i ' m sorry , <person> . </s>
("<s> then where ' s the goddamn <person> coming from ? </s>", 0) | <s> <person> , i ' m sorry . </s>
("<s> no , i don ' t have a blender . </s>", 0) | <s> i ' m sorry , <person> . </s>
('<s> we just try to keep the general part quiet . </s>', 0) | <s> i ' m not sure . </s>
('<s> the <unk> with <person> is <unk> upon your <unk> . </s>', 0) | <s> i don ' t know . </s>
('<s> he knows better . <person> , apologize to <person> . </s>', 0) | <s> i ' m not sure . </s>
("<s> we ' re here to sponsor you in the </s>", 0) | <s> i don ' t know . </s>
("<s> i ' m not talking about the <unk> . </s>", 0) | <s> i ' m not sure . </s>
("<s> no . no , i don ' t . </s>", 0) | <s> i ' m not sure . </s>
('<s> boys -- <continued_utterance> put it all on <person> . </s>', 0) | <s> i don ' t know . </s>
('<s> <person> , it was over a year ago . </s>', 0) | <s> i don ' t know . </s>
('<s> i just wish you could have heard her . </s>', 0) | <s> i don ' t know . </s>
('<s> you would lose . you must excuse me . </s>', 0) | <s> i ' m not sure . </s>
('<s> sometimes i feel the exact same way . </s>', 0) | <s> i ' m not sure . </s>
('<s> how was your house after the party ? </s>', 0) | <s> i ' m not . </s>
('<s> but your instinct was to lose sail ? </s>', 0) | <s> i ' m sorry . </s>
('<s> <person> on a minute . <continued_utterance> <person> ? </s>', 0) | <s> i ' m sorry . </s>
("<s> what ' the fuck is that ? </s>", 0) | <s> i ' m sorry . </s>
('<s> yeah , maybe , a little . </s>', 0) | <s> i ' m not . </s>
('<s> there is no queen of america . </s>', 0) | <s> i ' m sorry . </s>
("<s> i wouldn ' t do it . </s>", 0) | <s> i ' m sorry . </s>
("<s> i ' m on my honeymoon . </s>", 0) | <s> i ' m sorry . </s>
("<s> you ' re a <unk> graduate ? </s>", 0) | <s> <person> , <person> . </s>
('<s> they followed you from the <unk> ? </s>', 0) | <s> <person> , <person> . </s>
("<s> what ' s it about ? </s>", 0) | <s> <person> , <person> . </s>
("<s> i ' ve played it . </s>", 0) | <s> <person> , <person> . </s>
('<s> our friends . my work . </s>', 0) | <s> <person> , <person> . </s>
('<s> the same thing you do . </s>', 0) | <s> <person> , <person> . </s>
('<s> <person> after this . test ? </s>', 0) | <s> <person> , <person> . </s>
('<s> . does this do anything ? </s>', 0) | <s> <person> , <person> . </s>
("<s> i ' m so sorry . </s>", 0) | <s> <person> , <person> . </s>
("<s> what ' s up ? </s>", 0) | <s> <person> . </s>
('<s> because i never do . </s>', 0) | <s> <person> . </s>
('<s> are you on line ? </s>', 0) | <s> <person> . </s>
('<s> ouch . how many ? </s>', 0) | <s> <person> . </s>
('<s> what kind of ideas ? </s>', 0) | <s> <person> . </s>
("<s> she ' s gone . </s>", 0) | <s> <person> . </s>
('<s> and did he ? </s>', 0) | <s> <person> . </s>
('<s> lead the way . </s>', 0) | <s> <person> . </s>
('<s> you mean him . </s>', 0) | <s> <person> . </s>
('<s> he wants information . </s>', 0) | <s> <person> . </s>
('<s> nobody has . </s>', 0) | <s> <person> . </s>
('<s> how much ? </s>', 0) | <s> <person> . </s>
('<s> never . </s>', 0) | <s> <person> . </s>
('<s> okay . </s>', 0) | <s> <person> . </s>
('<s> <person> . </s>', 0) | <s> <person> . </s>
('<s> how ? </s>', 0) | <s> <person> . </s>
('<s> <person> ? </s>', 0) | <s> <person> . </s>
('<s> <person> ? </s>', 0) | <s> <person> . </s>
("<s> <unk> only makes the <unk> more aggressive . confidence in our security <unk> around the world will <unk> , allies will become unsure in the face of soviet pressure , and the <unk> will be <unk> to push us even harder . we must remove the missiles one way or another . it seems to me the options are either to build up the crisis ' til they give in , or we hit them . an air strike . </s>", 0) | <s> <person> , i ' m not a <unk> . i don ' t know what i ' m doing .
("<s> it wasn ' t easy , but i <unk> the money . no doubt <person> will be pleased to see it again . <continued_utterance> in the current exchange rate , minus the fees , of course , and certain <unk> expenses . here is the receipt . </s>", 0) | <s> no , no , no , no , no , no , no , no , no , no ,
("<s> <person> as well hear him out . <person>s , what choice we got ? but no matter what happens , see it through to the end . if you don ' t i ' ll curse the day i ever laid eyes on you . </s>", 0) | <s> i don ' t know . i don ' t know . i don ' t know . i '
("<s> that ' s right and this is my dad ' s car . you ' re lucky that you ' re in it . i ' m not normally allowed to drive it `cause it ' s so - </s>", 0) | <s> i ' ll tell you what i ' m going to do . i ' m going to have to
("<s> no . <continued_utterance> i ' m going to kill him , <person> . <continued_utterance> the closer i get to this guy , the more i . it gets to me . i don ' t know . </s>", 0) | <s> <person> , i ' ll tell you what i ' m gon na do . i ' m gon na
("<s> that ' s a great sign . it means your nervous system is fully <unk> with the game <unk> . the game is a lot more fun when it starts to feel <unk> than real . </s>", 0) | <s> <person> ' t worry . i ' ll tell you what i ' m gon na do . i '
("<s> i don ' t know what you did to him , or said to him , or what . but he ' s really pissed off at you ! what did you do ? </s>", 0) | <s> i don ' t know . i ' m sorry . i ' m sorry . i ' m sorry
('<s> i think they are too serious , these american <unk> . in <unk> , we are not so concerned with the method . reggie orders <unk> for the three of them . </s>', 0) | <s> <person> , i ' m sorry . i ' m sorry . i ' m sorry . i ' m
("<s> <person> ! <person> ! we know what they are ! they ' re big things under the ground ! much bigger than we thought ! they ' re coming after you ! </s>", 0) | <s> <person> , i don ' t know . i ' m sorry . i ' m sorry . i '
("<s> i took him out before he got the chance . he didn ' t say nothin ' about <person> . and now his spirit is in the dirt . forever . </s>", 0) | <s> <person> ' t worry about it . i don ' t know what you ' re talking about . i
("<s> <person> ? huh ! i ' m not afraid of a witch ! i ' m not afraid of anything -- - except a <unk> match . </s>", 0) | <s> i ' m sorry , <person> . i don ' t know what to do . i ' m not
("<s> you wonder why i want to go back to georgia . it ' s to avoid people who look at me the way you just did . </s>", 0) | <s> i ' m not going to tell you , <person> . i ' m not going to tell you .
("<s> sheriff cable ' s already asked me a few questions about <person> . she worked nights for a month . that ' s it . </s>", 0) | <s> <person> , i ' m not going to tell you . i don ' t know what you ' re
('<s> please . getting past him should be simple enough now , since he seems to be letting <person> sneak by under his nose . </s>', 0) | <s> <person> ' t worry about it . i ' ll tell you what i ' m going to do .
('<s> this <unk> goes to you . i <unk> ; t want to hurt anyone . but you leave me no choice . </s>', 0) | <s> <person> , i don ' t know . i don ' t know what to do . i ' m
("<s> when will you wake up ? you <person> ' t know a normal life if it bit you in the ass . </s>", 0) | <s> <person> , i ' m sorry . i ' m sorry . i ' m sorry . i ' m
('<s> yes , i know . you are a good woman . <continued_utterance> then again , you may be the <unk> . </s>', 0) | <s> no , no , no , no , no , no , no , no , no , no ,
("<s> amen . <continued_utterance> you can ' t judge all of <unk> by the people in that bank , believe me . </s>", 0) | <s> i don ' t know . i don ' t know . i don ' t know . i '
("<s> i ' m sure he could give you some courage . <unk> -- lion -- camera shooting past <person> -- </s>", 0) | <s> <person> , i don ' t know . i ' m sorry . i ' m sorry . i '
('<s> so . my way . no <unk> <number> , no interpol . just you , me and my people . </s>', 0) | <s> <person> . <person> . <person> . <person> . <person> . <person> . <person> . <person> . <person> . <person> .
("<s> <person> ' s boy , <person> , to start with . the <person> ' s <person> was another one . </s>", 0) | <s> <person> . i ' m sorry . i don ' t know what you ' re doing . </s>
('<s> oh , that ! yeah ! i did eat the fruit . i was just kidding about <unk> <unk> . </s>', 0) | <s> i don ' t know . i don ' t know what you ' re doing . </s>
('<s> delightful . we read , we <unk> sweaters , and we train our rats to perform circus tricks . </s>', 0) | <s> <person> , i don ' t know . i don ' t know what to do . </s>
('<s> was he carrying anything ? <continued_utterance> search him . <continued_utterance> do i have to do everything around here ? </s>', 0) | <s> i ' m sorry . i ' m not gon na do it . </s>
("<s> we go , we get rich , we go home . it ' s that easy . </s>", 0) | <s> <person> , i don ' t know . i ' ve got to go . </s>
('<s> when a superior officer tells you to leave the room , you leave the fucking room . </s>', 0) | <s> i ' ll be right back . i ' ll take care of you . </s>
("<s> well , you know , he ' s going to say about <unk> . and <person> . </s>", 0) | <s> i don ' t know . i ' ve got to go . </s>
('<s> <person> , this is sweet . we are going to be home in no time . </s>', 0) | <s> <person> , i don ' t know . i ' m just a <unk> . </s>
("<s> if you ' re going to gamble , might as well play for high stakes . </s>", 0) | <s> <person> , i don ' t know what you ' re talking about . </s>
("<s> and nobody knows you ' re a virgin ! aw , who are we kidding . </s>", 0) | <s> i don ' t know . i ' ve got to go . </s>
('<s> are you sure we should be driving like this ? in broad daylight and everything ? </s>', 0) | <s> i ' m sorry . i ' ve got to go . </s>
("<s> well , that ' s why <person> never got down off that tower . </s>", 0) | <s> i don ' t know . i ' ll be right back . </s>
("<s> i ' m not going to just sit here and watch you die ! </s>", 0) | <s> i ' m not going to tell you what i ' m saying . </s>
('<s> the <unk> expressed in confidence how much the celebration would mean to you . </s>', 0) | <s> i don ' t know what you ' re talking about . </s>
("<s> you know what your problem is ? you ' re just too adorable . </s>", 0) | <s> <person> , i don ' t know what you ' re doing . </s>
("<s> i ' m going to fix you up with my new assistant . </s>", 0) | <s> <person> , i don ' t know what you ' re talking about . </s>
("<s> that ' s more like it . two more <unk> please . </s>", 0) | <s> <person> , i ' m sorry . i ' m sorry . </s>
('<s> what do you mean no ? they can fly us home . </s>', 0) | <s> <person> , i ' m not gon na do it . </s>
('<s> i genuinely think she wants me . i feel a vibe . </s>', 0) | <s> <person> , i ' ll see you in the morning . </s>
('<s> my names <person> , and this <unk> <person> . whats yours ? </s>', 0) | <s> i don ' t know . i ' m sorry . </s>
('<s> no . your dad specifically said <person> and <person> were evil . </s>', 0) | <s> <person> , i don ' t know what to do . </s>
("<s> that ' s considerate ! how ' d you arrange that ? </s>", 0) | <s> i ' m not going to tell you that . </s>
('<s> here we go . wan na give me a hand ? </s>', 0) | <s> i ' d like to see you , <person> . </s>
("<s> <person> ' t you wan na know how it ends ? </s>", 0) | <s> i don ' t know . i ' m sorry . </s>
("<s> i ' m sorry i left you hanging up there . </s>", 0) | <s> i ' m not going to tell you that . </s>
("<s> well , of course , it ' s always dangerous . </s>", 0) | <s> i don ' t know . i ' m not . </s>
('<s> i know ! and his wife is six months pregnant . </s>', 0) | <s> <person> , i ' m not going anywhere . </s>
('<s> how the hell should i know ? <continued_utterance> australia . </s>', 0) | <s> i ' m not going to tell you . </s>
("<s> <person> . i can ' t drive a car . </s>", 0) | <s> <person> , i don ' t think so . </s>
('<s> you may share the bed of my son <person> . </s>', 0) | <s> <person> , you ' re a good man . </s>
("<s> who says that i ' m protecting anyone ? </s>", 0) | <s> i ' m not going to tell you . </s>
('<s> as a matter of fact , i do . </s>', 0) | <s> i ' m not going to tell you . </s>
("<s> <person> . we ' ll work it out . </s>", 0) | <s> i ' m not going to the police . </s>
('<s> which <unk> ? saudi ? kuwait ? <unk> ? </s>', 0) | <s> <person> , i don ' t know . </s>
("<s> yeah , you ' re coming with me . </s>", 0) | <s> <person> , i don ' t know . </s>
("<s> that ' s what i ' m thinking . </s>", 0) | <s> i ' m not going anywhere . </s>
('<s> let them out there read my mind . </s>', 0) | <s> i don ' t think so . </s>
('<s> <person> . <unk> . you killed <person> . </s>', 0) | <s> i ' m not going anywhere . </s>
("<s> give me the <unk> ' s treaty . </s>", 0) | <s> i ' m sorry , <person> . </s>
("<s> why are you <unk> ' like this ? </s>", 0) | <s> i ' m not going anywhere . </s>
('<s> i now pronounce you husband and wife . </s>', 0) | <s> i don ' t think so . </s>
("<s> <person> , you ' re being silly . </s>", 0) | <s> i don ' t think so . </s>
('<s> have a good day at work today . </s>', 0) | <s> i don ' t know . </s>
('<s> you want to smoke some pot ? </s>', 0) | <s> i don ' t know . </s>
('<s> of course ! quite a number . </s>', 0) | <s> i don ' t know . </s>
('<s> put me through to the <unk> . </s>', 0) | <s> i don ' t know . </s>
("<s> i ' m not a liar . </s>", 0) | <s> i don ' t know . </s>
('<s> would you like some iced tea ? </s>', 0) | <s> i ' m not sure . </s>
('<s> and you glad you married me ? </s>', 0) | <s> i don ' t know . </s>
('<s> would you excuse us , dear ? </s>', 0) | <s> i don ' t know . </s>
('<s> only if he can be trusted . </s>', 0) | <s> i don ' t know . </s>
("<s> it ' s the woman . </s>", 0) | <s> i ' m not sure . </s>
("<s> there ' s enough room . </s>", 0) | <s> i don ' t know . </s>
('<s> so how can i help ? </s>', 0) | <s> i don ' t know . </s>
('<s> you can wait out here . </s>', 0) | <s> i don ' t know . </s>
('<s> god damn son of a . </s>', 0) | <s> i don ' t know . </s>
("<s> i don ' t know . </s>", 0) | <s> i don ' t know . </s>
('<s> there you are - painless . </s>', 0) | <s> i ' m not sure . </s>
('<s> <unk> seems . fair . </s>', 0) | <s> i don ' t know . </s>
('<s> oh . the bullets . </s>', 0) | <s> i ' m sorry . </s>
('<s> <person> . a pleasure . </s>', 0) | <s> i ' m not sure . </s>
("<s> <person> ' s will . </s>", 0) | <s> i ' m sorry . </s>
('<s> well , sure . </s>', 0) | <s> i ' m sorry . </s>
('<s> <person> , laser . </s>', 0) | <s> i ' m sorry . </s>
('<s> this is bullshit ! </s>', 0) | <s> <person> , <person> . </s>
('<s> this is <person> . </s>', 0) | <s> <person> , <person> . </s>
('<s> . <unk> <person> . </s>', 0) | <s> <person> , <person> . </s>
('<s> <person> . what . </s>', 0) | <s> <person> , <person> . </s>
('<s> besides an apology ? </s>', 0) | <s> <person> , <person> . </s>
('<s> for the <unk> ? </s>', 0) | <s> <person> , <person> . </s>
('<s> are you <unk> ? </s>', 0) | <s> <person> . </s>
('<s> show me . </s>', 0) | <s> <person> . </s>
('<s> you too . </s>', 0) | <s> <person> . </s>
('<s> what . ? </s>', 0) | <s> <person> . </s>
('<s> like you . </s>', 0) | <s> <person> . </s>
('<s> what okay ? </s>', 0) | <s> <person> . </s>
('<s> <unk> -- </s>', 0) | <s> <person> . </s>
('<s> yes . </s>', 0) | <s> <person> . </s>
('<s> please . </s>', 0) | <s> <person> . </s>
('<s> exactly . </s>', 0) | <s> <person> . </s>