-
Notifications
You must be signed in to change notification settings - Fork 0
/
Different_w_lookups.conllu
4021 lines (3760 loc) · 177 KB
/
Different_w_lookups.conllu
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
1 Different different ADJ _ Degree=Pos _ _ _ _
3 Smith_11 smith_11 X _ _ _ _ _ _
5 Summary summary NOUN _ Number=Sing _ _ _ _
6 : : PUNCT _ _ _ _ _ _
8 An an DET _ Definite=Ind|PronType=Art _ _ _ _
9 alternate alternate ADJ _ Degree=Pos _ _ _ _
10 series series NOUN _ Number=Sing _ _ _ _
11 of of ADP _ _ _ _ _ _
12 events event NOUN _ Number=Plur _ _ _ _
13 that that SCONJ _ Number=Sing|PronType=Dem _ _ _ _
14 lead lead VERB _ Tense=Pres|VerbForm=Fin _ _ _ _
15 up up ADP _ Number=Sing _ _ _ _
16 to to ADP _ _ _ _ _ _
17 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
18 being be VERB _ Aspect=Prog|Tense=Pres|VerbForm=Part _ _ _ _
19 kicked kick VERB _ Aspect=Perf|Tense=Past|VerbForm=Part _ _ _ _
20 out out ADP _ _ _ _ _ _
21 of of ADP _ _ _ _ _ _
22 the the DET _ Definite=Def|PronType=Art _ _ _ _
23 club club NOUN _ Number=Sing _ _ _ _
24 and and CCONJ _ ConjType=Cmp _ _ _ _
25 Dawn Dawn PROPN _ NounType=Prop|Number=Sing _ _ _ _
26 being be VERB _ Aspect=Prog|Tense=Pres|VerbForm=Part _ _ _ _
27 the the DET _ Definite=Def|PronType=Art _ _ _ _
28 new new ADJ _ Degree=Pos _ _ _ _
29 President President PROPN _ NounType=Prop|Number=Sing _ _ _ _
30 . . PUNCT _ PunctType=Peri _ _ _ _
31 ( ( PUNCT _ PunctSide=Ini|PunctType=Brck _ _ _ _
33 A a DET _ Definite=Ind|PronType=Art _ _ _ _
34 lot lot NOUN _ Number=Sing _ _ _ _
35 of of ADP _ _ _ _ _ _
36 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
37 bashing bashing NOUN _ Number=Sing _ _ _ _
38 in in ADP _ _ _ _ _ _
39 this this DET _ Number=Sing|PronType=Dem _ _ _ _
40 fic fic NOUN _ Number=Sing _ _ _ _
41 . . PUNCT _ PunctType=Peri _ _ _ _
42 ) ) PUNCT _ PunctType=Peri _ _ _ _
43 ( ( PUNCT _ PunctSide=Ini|PunctType=Brck _ _ _ _
45 An an DET _ Definite=Ind|PronType=Art _ _ _ _
46 AU au NOUN _ Number=Sing _ _ _ _
47 of of ADP _ _ _ _ _ _
48 the the DET _ Definite=Def|PronType=Art _ _ _ _
49 Netflix Netflix PROPN _ NounType=Prop|Number=Sing _ _ _ _
50 series series NOUN _ Number=Sing _ _ _ _
51 ) ) PUNCT _ PunctType=Peri _ _ _ _
53 Source source NOUN _ Number=Sing _ _ _ _
54 : : PUNCT _ _ _ _ _ _
55 https://archiveofourown.org/works/27945293 https://archiveofourown.org/works/27945293 X _ _ _ _ _ _
57 Notes note NOUN _ Number=Plur _ _ _ _
58 : : PUNCT _ _ _ _ _ _
60 ( ( PUNCT _ PunctSide=Ini|PunctType=Brck _ _ _ _
61 See see VERB _ VerbForm=Inf _ _ _ _
62 the the DET _ Definite=Def|PronType=Art _ _ _ _
63 end end NOUN _ Number=Sing _ _ _ _
64 of of ADP _ _ _ _ _ _
65 the the DET _ Definite=Def|PronType=Art _ _ _ _
66 work work NOUN _ Number=Sing _ _ _ _
67 for for ADP _ _ _ _ _ _
68 notes note NOUN _ Number=Plur _ _ _ _
69 . . PUNCT _ PunctType=Peri _ _ _ _
70 ) ) PUNCT _ PunctType=Peri _ _ _ _
72 Chapter chapter NOUN _ Number=Sing _ _ _ _
73 1 1 NUM _ NumType=Card _ _ _ _
74 : : PUNCT _ _ _ _ _ _
75 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
76 's be AUX _ _ _ _ _ _
77 Great great ADJ _ Degree=Pos _ _ _ _
78 Mistake mistake NOUN _ Number=Sing _ _ _ _
80 Chapter chapter NOUN _ Number=Sing _ _ _ _
81 Text text NOUN _ Number=Sing _ _ _ _
83 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
84 felt feel VERB _ Tense=Past|VerbForm=Fin _ _ _ _
85 the the DET _ Definite=Def|PronType=Art _ _ _ _
86 entire entire ADJ _ Degree=Pos _ _ _ _
87 club club NOUN _ Number=Sing _ _ _ _
88 spinning spin VERB _ Aspect=Prog|Tense=Pres|VerbForm=Part _ _ _ _
89 out out ADP _ _ _ _ _ _
90 of of ADP _ _ _ _ _ _
91 control control NOUN _ Number=Sing _ _ _ _
92 , , PUNCT _ PunctType=Comm _ _ _ _
93 Stacey Stacey PROPN _ NounType=Prop|Number=Sing _ _ _ _
94 lied lie VERB _ Tense=Past|VerbForm=Fin _ _ _ _
95 , , PUNCT _ PunctType=Comm _ _ _ _
96 Mary Mary PROPN _ NounType=Prop|Number=Sing _ _ _ _
97 Anne Anne PROPN _ NounType=Prop|Number=Sing _ _ _ _
98 spotted spot VERB _ Aspect=Perf|Tense=Past|VerbForm=Part _ _ _ _
99 her she PRON _ Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
100 spying spying NOUN _ Number=Sing _ _ _ _
101 , , PUNCT _ PunctType=Comm _ _ _ _
102 Claudia Claudia PROPN _ NounType=Prop|Number=Sing _ _ _ _
103 will will AUX _ VerbForm=Fin _ _ _ _
104 stop stop VERB _ VerbForm=Inf _ _ _ _
105 being be VERB _ Aspect=Prog|Tense=Pres|VerbForm=Part _ _ _ _
106 her she PRON _ Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
107 friend friend NOUN _ Number=Sing _ _ _ _
108 again again ADV _ _ _ _ _ _
109 , , PUNCT _ PunctType=Comm _ _ _ _
110 and and CCONJ _ ConjType=Cmp _ _ _ _
111 Louie Louie PROPN _ NounType=Prop|Number=Sing _ _ _ _
112 ran run VERB _ Tense=Past|VerbForm=Fin _ _ _ _
113 away away ADV _ _ _ _ _ _
114 . . PUNCT _ PunctType=Peri _ _ _ _
116 She she PRON _ Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
117 has have VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin _ _ _ _
118 to to ADP _ _ _ _ _ _
119 do do VERB _ VerbForm=Inf _ _ _ _
120 something something PRON _ Number=Sing _ _ _ _
121 . . PUNCT _ PunctType=Peri _ _ _ _
123 She she PRON _ Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
124 runs run VERB _ Number=Sing|Person=Three|Tense=Pres|VerbForm=Fin _ _ _ _
125 home home ADV _ _ _ _ _ _
126 and and CCONJ _ ConjType=Cmp _ _ _ _
127 when when ADV _ _ _ _ _ _
128 she she PRON _ Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
129 gets get VERB _ Number=Sing|Person=Three|Tense=Pres|VerbForm=Fin _ _ _ _
130 there there ADV _ PronType=Dem _ _ _ _
131 , , PUNCT _ PunctType=Comm _ _ _ _
132 Louie Louie PROPN _ NounType=Prop|Number=Sing _ _ _ _
133 is be AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin _ _ _ _
134 at at ADP _ _ _ _ _ _
135 the the DET _ Definite=Def|PronType=Art _ _ _ _
136 doorstep doorstep NOUN _ Number=Sing _ _ _ _
137 . . PUNCT _ PunctType=Peri _ _ _ _
139 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
140 felt feel VERB _ Tense=Past|VerbForm=Fin _ _ _ _
141 relief relief NOUN _ Number=Sing _ _ _ _
142 , , PUNCT _ PunctType=Comm _ _ _ _
143 but but CCONJ _ ConjType=Cmp _ _ _ _
144 she she PRON _ Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
145 couldn't _ _ _ _ _ _ _ _
146 relax relax VERB _ VerbForm=Inf _ _ _ _
147 yet yet ADV _ _ _ _ _ _
148 , , PUNCT _ PunctType=Comm _ _ _ _
149 she she PRON _ Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
150 has have VERB _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin _ _ _ _
151 something something PRON _ Number=Sing _ _ _ _
152 important important ADJ _ Degree=Pos _ _ _ _
153 to to ADP _ _ _ _ _ _
154 say say VERB _ VerbForm=Inf _ _ _ _
155 to to ADP _ _ _ _ _ _
156 her she PRON _ Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
157 club club NOUN _ Number=Sing _ _ _ _
158 members member NOUN _ Number=Plur _ _ _ _
159 . . PUNCT _ PunctType=Peri _ _ _ _
161 At at ADP _ _ _ _ _ _
162 the the DET _ Definite=Def|PronType=Art _ _ _ _
163 next next ADJ _ Degree=Pos _ _ _ _
164 meeting meeting NOUN _ Number=Sing _ _ _ _
165 , , PUNCT _ PunctType=Comm _ _ _ _
166 the the DET _ Definite=Def|PronType=Art _ _ _ _
167 other other ADJ _ Degree=Pos _ _ _ _
168 girls girl NOUN _ Number=Plur _ _ _ _
169 look look NOUN _ Number=Sing _ _ _ _
170 at at ADP _ _ _ _ _ _
171 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
172 uneasily uneasily ADV _ _ _ _ _ _
173 . . PUNCT _ PunctType=Peri _ _ _ _
175 Stacey Stacey PROPN _ NounType=Prop|Number=Sing _ _ _ _
176 felt feel VERB _ Tense=Past|VerbForm=Fin _ _ _ _
177 a a DET _ Definite=Ind|PronType=Art _ _ _ _
178 pit pit NOUN _ Number=Sing _ _ _ _
179 grow grow VERB _ VerbForm=Inf _ _ _ _
180 in in ADP _ _ _ _ _ _
181 her she PRON _ Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
182 chest chest NOUN _ Number=Sing _ _ _ _
183 , , PUNCT _ PunctType=Comm _ _ _ _
184 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
185 glared glare VERB _ Tense=Past|VerbForm=Fin _ _ _ _
186 at at ADP _ _ _ _ _ _
187 her she PRON _ Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
188 and and CCONJ _ ConjType=Cmp _ _ _ _
189 took take VERB _ Tense=Past|VerbForm=Fin _ _ _ _
190 a a DET _ Definite=Ind|PronType=Art _ _ _ _
191 deep deep ADJ _ Degree=Pos _ _ _ _
192 breath breath NOUN _ Number=Sing _ _ _ _
193 , , PUNCT _ PunctType=Comm _ _ _ _
194 and and CCONJ _ ConjType=Cmp _ _ _ _
195 began begin VERB _ Tense=Past|VerbForm=Fin _ _ _ _
196 to to ADP _ _ _ _ _ _
197 speak speak VERB _ VerbForm=Inf _ _ _ _
198 . . PUNCT _ PunctType=Peri _ _ _ _
200 " " PUNCT _ PunctType=Peri _ _ _ _
201 After after ADP _ _ _ _ _ _
202 some some DET _ _ _ _ _ _
203 recent recent ADJ _ Degree=Pos _ _ _ _
204 events event NOUN _ Number=Plur _ _ _ _
205 , , PUNCT _ PunctType=Comm _ _ _ _
206 I've _ _ _ _ _ _ _ _
207 decided decide VERB _ Tense=Past|VerbForm=Fin _ _ _ _
208 to to ADP _ _ _ _ _ _
209 place place VERB _ VerbForm=Inf _ _ _ _
210 some some DET _ _ _ _ _ _
211 new new ADJ _ Degree=Pos _ _ _ _
212 rules rule NOUN _ Number=Plur _ _ _ _
213 into into ADP _ _ _ _ _ _
214 place place VERB _ VerbForm=Inf _ _ _ _
215 , , PUNCT _ PunctType=Comm _ _ _ _
216 " " PUNCT _ PunctType=Peri _ _ _ _
217 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
218 stated state VERB _ Tense=Past|VerbForm=Fin _ _ _ _
219 . . PUNCT _ PunctType=Peri _ _ _ _
221 Claudia Claudia PROPN _ NounType=Prop|Number=Sing _ _ _ _
222 rolls roll VERB _ Number=Sing|Person=Three|Tense=Pres|VerbForm=Fin _ _ _ _
223 her she PRON _ Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
224 eyes eye NOUN _ Number=Plur _ _ _ _
225 , , PUNCT _ PunctType=Comm _ _ _ _
226 Mary Mary PROPN _ NounType=Prop|Number=Sing _ _ _ _
227 Anne Anne PROPN _ NounType=Prop|Number=Sing _ _ _ _
228 gulps gulp VERB _ Number=Sing|Person=Three|Tense=Pres|VerbForm=Fin _ _ _ _
229 , , PUNCT _ PunctType=Comm _ _ _ _
230 and and CCONJ _ ConjType=Cmp _ _ _ _
231 Stacey Stacey PROPN _ NounType=Prop|Number=Sing _ _ _ _
232 looks look VERB _ Number=Sing|Person=Three|Tense=Pres|VerbForm=Fin _ _ _ _
233 at at ADP _ _ _ _ _ _
234 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
235 uneasily uneasily ADV _ _ _ _ _ _
236 . . PUNCT _ PunctType=Peri _ _ _ _
238 " " PUNCT _ PunctType=Peri _ _ _ _
239 One one NUM _ NumType=Card _ _ _ _
240 , , PUNCT _ PunctType=Comm _ _ _ _
241 we we PRON _ Case=Nom|Number=Plur|Person=1|PronType=Prs _ _ _ _
242 are be AUX _ Mood=Ind|Tense=Pres|VerbForm=Fin _ _ _ _
243 no no DET _ _ _ _ _ _
244 longer long ADV _ Degree=Cmp _ _ _ _
245 taking take VERB _ Aspect=Prog|Tense=Pres|VerbForm=Part _ _ _ _
246 babysitting babysitte VERB _ Aspect=Prog|Tense=Pres|VerbForm=Part _ _ _ _
247 jobs job NOUN _ Number=Plur _ _ _ _
248 from from ADP _ _ _ _ _ _
249 Watson Watson PROPN _ NounType=Prop|Number=Sing _ _ _ _
250 , , PUNCT _ PunctType=Comm _ _ _ _
251 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs _ _ _ _
252 don't _ _ _ _ _ _ _ _
253 care care VERB _ VerbForm=Inf _ _ _ _
254 if if SCONJ _ _ _ _ _ _
255 we we PRON _ Case=Nom|Number=Plur|Person=1|PronType=Prs _ _ _ _
256 have have AUX _ Mood=Ind|Tense=Pres|VerbForm=Fin _ _ _ _
257 to to ADP _ _ _ _ _ _
258 place place VERB _ VerbForm=Inf _ _ _ _
259 fliers flier NOUN _ Number=Plur _ _ _ _
260 for for ADP _ _ _ _ _ _
261 it it PRON _ Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs _ _ _ _
262 , , PUNCT _ PunctType=Comm _ _ _ _
263 we we PRON _ Case=Nom|Number=Plur|Person=1|PronType=Prs _ _ _ _
264 aren't _ _ _ _ _ _ _ _
265 babysitting babysitte VERB _ Aspect=Prog|Tense=Pres|VerbForm=Part _ _ _ _
266 his his PRON _ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs _ _ _ _
267 kids kid NOUN _ Number=Plur _ _ _ _
268 , , PUNCT _ PunctType=Comm _ _ _ _
269 " " PUNCT _ PunctType=Peri _ _ _ _
270 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
271 stated state VERB _ Tense=Past|VerbForm=Fin _ _ _ _
272 . . PUNCT _ PunctType=Peri _ _ _ _
274 Mary Mary PROPN _ NounType=Prop|Number=Sing _ _ _ _
275 Anne Anne PROPN _ NounType=Prop|Number=Sing _ _ _ _
276 looks look VERB _ Number=Sing|Person=Three|Tense=Pres|VerbForm=Fin _ _ _ _
277 at at ADP _ _ _ _ _ _
278 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
279 in in ADP _ _ _ _ _ _
280 disbelief disbelief NOUN _ Number=Sing _ _ _ _
281 . . PUNCT _ PunctType=Peri _ _ _ _
283 She she PRON _ Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
284 really really ADV _ _ _ _ _ _
285 liked like VERB _ Tense=Past|VerbForm=Fin _ _ _ _
286 Karen Karen PROPN _ NounType=Prop|Number=Sing _ _ _ _
287 and and CCONJ _ ConjType=Cmp _ _ _ _
288 Andrew Andrew PROPN _ NounType=Prop|Number=Sing _ _ _ _
289 , , PUNCT _ PunctType=Comm _ _ _ _
290 and and CCONJ _ ConjType=Cmp _ _ _ _
291 she she PRON _ Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
292 couldn't _ _ _ _ _ _ _ _
293 believe believe VERB _ VerbForm=Inf _ _ _ _
294 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
295 is be AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin _ _ _ _
296 doing do VERB _ Aspect=Prog|Tense=Pres|VerbForm=Part _ _ _ _
297 this this DET _ Number=Sing|PronType=Dem _ _ _ _
298 . . PUNCT _ PunctType=Peri _ _ _ _
300 Claudia Claudia PROPN _ NounType=Prop|Number=Sing _ _ _ _
301 looks look VERB _ Number=Sing|Person=Three|Tense=Pres|VerbForm=Fin _ _ _ _
302 at at ADP _ _ _ _ _ _
303 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
304 emotionless emotionless ADJ _ Degree=Pos _ _ _ _
305 , , PUNCT _ PunctType=Comm _ _ _ _
306 knowing know VERB _ Aspect=Prog|Tense=Pres|VerbForm=Part _ _ _ _
307 what what PRON _ _ _ _ _ _
308 is be AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin _ _ _ _
309 happening happen VERB _ Aspect=Prog|Tense=Pres|VerbForm=Part _ _ _ _
310 like like VERB _ Tense=Pres|VerbForm=Fin _ _ _ _
311 before before ADV _ _ _ _ _ _
312 . . PUNCT _ PunctType=Peri _ _ _ _
314 " " PUNCT _ PunctType=Peri _ _ _ _
315 Two two NUM _ NumType=Card _ _ _ _
316 , , PUNCT _ PunctType=Comm _ _ _ _
317 Stacey Stacey PROPN _ NounType=Prop|Number=Sing _ _ _ _
318 lied lie VERB _ Tense=Past|VerbForm=Fin _ _ _ _
319 , , PUNCT _ PunctType=Comm _ _ _ _
320 she she PRON _ Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
321 wasn't _ _ _ _ _ _ _ _
322 in in ADP _ _ _ _ _ _
323 New New PROPN _ NounType=Prop|Number=Sing _ _ _ _
324 York York PROPN _ NounType=Prop|Number=Sing _ _ _ _
325 , , PUNCT _ PunctType=Comm _ _ _ _
326 She she PRON _ Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
327 was be AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin _ _ _ _
328 in in ADP _ _ _ _ _ _
329 her she PRON _ Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
330 car car NOUN _ Number=Sing _ _ _ _
331 with with ADP _ _ _ _ _ _
332 her she PRON _ Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
333 parents parent NOUN _ Number=Plur _ _ _ _
334 , , PUNCT _ PunctType=Comm _ _ _ _
335 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs _ _ _ _
336 saw see VERB _ Tense=Past|VerbForm=Fin _ _ _ _
337 her she PRON _ Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
338 yesterday yesterday NOUN _ Number=Sing _ _ _ _
339 , , PUNCT _ PunctType=Comm _ _ _ _
340 so so CCONJ _ ConjType=Cmp _ _ _ _
341 Stacey Stacey PROPN _ NounType=Prop|Number=Sing _ _ _ _
342 , , PUNCT _ PunctType=Comm _ _ _ _
343 " " PUNCT _ PunctType=Peri _ _ _ _
344 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
345 turned turn VERB _ Tense=Past|VerbForm=Fin _ _ _ _
346 to to ADP _ _ _ _ _ _
347 Stacey Stacey PROPN _ NounType=Prop|Number=Sing _ _ _ _
348 , , PUNCT _ PunctType=Comm _ _ _ _
349 " " PUNCT _ PunctType=Peri _ _ _ _
350 where where ADV _ _ _ _ _ _
351 were be VERB _ Tense=Past|VerbForm=Fin _ _ _ _
352 you you PRON _ Case=Nom|Person=2|PronType=Prs _ _ _ _
353 ? ? PUNCT _ PunctType=Peri _ _ _ _
354 " " PUNCT _ PunctType=Peri _ _ _ _
356 Stacey Stacey PROPN _ NounType=Prop|Number=Sing _ _ _ _
357 became become VERB _ Tense=Past|VerbForm=Fin _ _ _ _
358 silent silent ADJ _ Degree=Pos _ _ _ _
359 , , PUNCT _ PunctType=Comm _ _ _ _
360 she she PRON _ Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
361 couldn't _ _ _ _ _ _ _ _
362 get get VERB _ VerbForm=Inf _ _ _ _
363 her she PRON _ Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
364 words word NOUN _ Number=Plur _ _ _ _
365 out out ADP _ _ _ _ _ _
366 . . PUNCT _ PunctType=Peri _ _ _ _
368 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
369 pressed press VERB _ Tense=Past|VerbForm=Fin _ _ _ _
370 on on ADP _ _ _ _ _ _
371 . . PUNCT _ PunctType=Peri _ _ _ _
373 " " PUNCT _ PunctType=Peri _ _ _ _
374 Where where ADV _ _ _ _ _ _
375 were be VERB _ Tense=Past|VerbForm=Fin _ _ _ _
376 you you PRON _ Case=Nom|Person=2|PronType=Prs _ _ _ _
377 ? ? PUNCT _ PunctType=Peri _ _ _ _
378 " " PUNCT _ PunctType=Peri _ _ _ _
380 Stacey Stacey PROPN _ NounType=Prop|Number=Sing _ _ _ _
381 gulped gulp VERB _ Tense=Past|VerbForm=Fin _ _ _ _
382 and and CCONJ _ ConjType=Cmp _ _ _ _
383 sighs sigh VERB _ Number=Sing|Person=Three|Tense=Pres|VerbForm=Fin _ _ _ _
384 , , PUNCT _ PunctType=Comm _ _ _ _
385 " " PUNCT _ PunctType=Peri _ _ _ _
386 The the DET _ Definite=Def|PronType=Art _ _ _ _
387 doctors doctor NOUN _ Number=Plur _ _ _ _
388 … … PUNCT _ PunctSide=Ini|PunctType=Quot _ _ _ _
389 " " PUNCT _ PunctType=Peri _ _ _ _
391 " " PUNCT _ PunctType=Peri _ _ _ _
392 For for ADP _ _ _ _ _ _
393 what what PRON _ _ _ _ _ _
394 ? ? PUNCT _ PunctType=Peri _ _ _ _
395 " " PUNCT _ PunctType=Peri _ _ _ _
397 " " PUNCT _ PunctType=Peri _ _ _ _
398 Jesus Jesus PROPN _ NounType=Prop|Number=Sing _ _ _ _
399 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
400 , , PUNCT _ PunctType=Comm _ _ _ _
401 she she PRON _ Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
402 said say VERB _ Tense=Past|VerbForm=Fin _ _ _ _
403 she she PRON _ Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
404 was be AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin _ _ _ _
405 at at ADP _ _ _ _ _ _
406 the the DET _ Definite=Def|PronType=Art _ _ _ _
407 doctor doctor NOUN _ Number=Sing _ _ _ _
408 's be AUX _ _ _ _ _ _
409 so so CCONJ _ ConjType=Cmp _ _ _ _
410 she she PRON _ Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
411 was be AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin _ _ _ _
412 at at ADP _ _ _ _ _ _
413 the the DET _ Definite=Def|PronType=Art _ _ _ _
414 doctor doctor NOUN _ Number=Sing _ _ _ _
415 's be AUX _ _ _ _ _ _
416 , , PUNCT _ PunctType=Comm _ _ _ _
417 " " PUNCT _ PunctType=Peri _ _ _ _
418 Claudia Claudia PROPN _ NounType=Prop|Number=Sing _ _ _ _
419 defended defend VERB _ Tense=Past|VerbForm=Fin _ _ _ _
420 . . PUNCT _ PunctType=Peri _ _ _ _
422 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
423 backed back VERB _ Tense=Past|VerbForm=Fin _ _ _ _
424 down down ADP _ _ _ _ _ _
425 , , PUNCT _ PunctType=Comm _ _ _ _
426 she she PRON _ Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
427 sighs sigh VERB _ Number=Sing|Person=Three|Tense=Pres|VerbForm=Fin _ _ _ _
428 and and CCONJ _ ConjType=Cmp _ _ _ _
429 sits sit VERB _ Number=Sing|Person=Three|Tense=Pres|VerbForm=Fin _ _ _ _
430 in in ADP _ _ _ _ _ _
431 her she PRON _ Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
432 chair chair NOUN _ Number=Sing _ _ _ _
433 . . PUNCT _ PunctType=Peri _ _ _ _
435 " " PUNCT _ PunctType=Peri _ _ _ _
436 Well well INTJ _ _ _ _ _ _
437 , , PUNCT _ PunctType=Comm _ _ _ _
438 that that SCONJ _ Number=Sing|PronType=Dem _ _ _ _
439 's be AUX _ _ _ _ _ _
440 pretty pretty ADV _ _ _ _ _ _
441 much much ADJ _ Degree=Pos _ _ _ _
442 what what PRON _ _ _ _ _ _
443 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs _ _ _ _
444 have have AUX _ Mood=Ind|Tense=Pres|VerbForm=Fin _ _ _ _
445 to to ADP _ _ _ _ _ _
446 say say VERB _ VerbForm=Inf _ _ _ _
447 , , PUNCT _ PunctType=Comm _ _ _ _
448 anyone anyone PRON _ Number=Sing _ _ _ _
449 else else ADV _ _ _ _ _ _
450 objects object VERB _ Number=Sing|Person=Three|Tense=Pres|VerbForm=Fin _ _ _ _
451 ? ? PUNCT _ PunctType=Peri _ _ _ _
452 " " PUNCT _ PunctType=Peri _ _ _ _
454 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
455 says say VERB _ Number=Sing|Person=Three|Tense=Pres|VerbForm=Fin _ _ _ _
456 . . PUNCT _ PunctType=Peri _ _ _ _
458 The the DET _ Definite=Def|PronType=Art _ _ _ _
459 rest rest NOUN _ Number=Sing _ _ _ _
460 of of ADP _ _ _ _ _ _
461 the the DET _ Definite=Def|PronType=Art _ _ _ _
462 club club NOUN _ Number=Sing _ _ _ _
463 members member NOUN _ Number=Plur _ _ _ _
464 stay stay VERB _ Tense=Pres|VerbForm=Fin _ _ _ _
465 quiet quiet ADJ _ Degree=Pos _ _ _ _
466 , , PUNCT _ PunctType=Comm _ _ _ _
467 they they PRON _ Case=Nom|Number=Plur|Person=3|PronType=Prs _ _ _ _
468 don't _ _ _ _ _ _ _ _
469 know know VERB _ VerbForm=Inf _ _ _ _
470 what what PRON _ _ _ _ _ _
471 to to ADP _ _ _ _ _ _
472 say say VERB _ VerbForm=Inf _ _ _ _
473 . . PUNCT _ PunctType=Peri _ _ _ _
475 Claudia Claudia PROPN _ NounType=Prop|Number=Sing _ _ _ _
476 's be AUX _ _ _ _ _ _
477 room room NOUN _ Number=Sing _ _ _ _
478 is be AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin _ _ _ _
479 filled fill VERB _ Aspect=Perf|Tense=Past|VerbForm=Part _ _ _ _
480 with with ADP _ _ _ _ _ _
481 silence silence NOUN _ Number=Sing _ _ _ _
482 but but CCONJ _ ConjType=Cmp _ _ _ _
483 was be AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin _ _ _ _
484 suddenly suddenly ADV _ _ _ _ _ _
485 filled fill VERB _ Aspect=Perf|Tense=Past|VerbForm=Part _ _ _ _
486 with with ADP _ _ _ _ _ _
487 sound sound NOUN _ Number=Sing _ _ _ _
488 after after ADP _ _ _ _ _ _
489 the the DET _ Definite=Def|PronType=Art _ _ _ _
490 phone phone NOUN _ Number=Sing _ _ _ _
491 rings ring VERB _ Number=Sing|Person=Three|Tense=Pres|VerbForm=Fin _ _ _ _
492 . . PUNCT _ PunctType=Peri _ _ _ _
494 Mary Mary PROPN _ NounType=Prop|Number=Sing _ _ _ _
495 Anne Anne PROPN _ NounType=Prop|Number=Sing _ _ _ _
496 picks pick VERB _ Number=Sing|Person=Three|Tense=Pres|VerbForm=Fin _ _ _ _
497 it it PRON _ Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs _ _ _ _
498 up up ADP _ Number=Sing _ _ _ _
499 . . PUNCT _ PunctType=Peri _ _ _ _
501 " " PUNCT _ PunctType=Peri _ _ _ _
502 H h INTJ _ _ _ _ _ _
503 - - PUNCT _ PunctType=Dash _ _ _ _
504 hello hello INTJ _ _ _ _ _ _
505 ... ... PUNCT _ _ _ _ _ _
506 Babysitters Babysitters PROPN _ NounType=Prop|Number=Plur _ _ _ _
507 Club Club PROPN _ NounType=Prop|Number=Sing _ _ _ _
508 , , PUNCT _ PunctType=Comm _ _ _ _
509 " " PUNCT _ PunctType=Peri _ _ _ _
510 Mary Mary PROPN _ NounType=Prop|Number=Sing _ _ _ _
511 Anne Anne PROPN _ NounType=Prop|Number=Sing _ _ _ _
512 says say VERB _ Number=Sing|Person=Three|Tense=Pres|VerbForm=Fin _ _ _ _
513 , , PUNCT _ PunctType=Comm _ _ _ _
514 she she PRON _ Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
515 listens listen VERB _ Number=Sing|Person=Three|Tense=Pres|VerbForm=Fin _ _ _ _
516 to to ADP _ _ _ _ _ _
517 the the DET _ Definite=Def|PronType=Art _ _ _ _
518 woman woman NOUN _ Number=Sing _ _ _ _
519 on on ADP _ _ _ _ _ _
520 the the DET _ Definite=Def|PronType=Art _ _ _ _
521 phone phone NOUN _ Number=Sing _ _ _ _
522 and and CCONJ _ ConjType=Cmp _ _ _ _
523 sighs sigh VERB _ Number=Sing|Person=Three|Tense=Pres|VerbForm=Fin _ _ _ _
524 . . PUNCT _ PunctType=Peri _ _ _ _
525 " " PUNCT _ PunctType=Peri _ _ _ _
527 Mrs _ _ _ NounType=Prop|Number=Sing _ _ _ _
528 . . PUNCT _ PunctType=Peri _ _ _ _
530 Keene Keene PROPN _ NounType=Prop|Number=Sing _ _ _ _
531 needs need VERB _ Number=Sing|Person=Three|Tense=Pres|VerbForm=Fin _ _ _ _
532 a a DET _ Definite=Ind|PronType=Art _ _ _ _
533 Babysitter Babysitter PROPN _ NounType=Prop|Number=Sing _ _ _ _
534 this this DET _ Number=Sing|PronType=Dem _ _ _ _
535 Wednesday Wednesday PROPN _ NounType=Prop|Number=Sing _ _ _ _
536 , , PUNCT _ PunctType=Comm _ _ _ _
537 anyone anyone PRON _ Number=Sing _ _ _ _
538 free free ADJ _ Degree=Pos _ _ _ _
539 ? ? PUNCT _ PunctType=Peri _ _ _ _
540 " " PUNCT _ PunctType=Peri _ _ _ _
542 " " PUNCT _ PunctType=Peri _ _ _ _
543 Art art NOUN _ Number=Sing _ _ _ _
544 class class NOUN _ Number=Sing _ _ _ _
545 , , PUNCT _ PunctType=Comm _ _ _ _
546 " " PUNCT _ PunctType=Peri _ _ _ _
547 Claudia Claudia PROPN _ NounType=Prop|Number=Sing _ _ _ _
548 instantly instantly ADV _ _ _ _ _ _
549 says say VERB _ Number=Sing|Person=Three|Tense=Pres|VerbForm=Fin _ _ _ _
550 . . PUNCT _ PunctType=Peri _ _ _ _
552 " " PUNCT _ PunctType=Peri _ _ _ _
553 Doctor doctor NOUN _ Number=Sing _ _ _ _
554 appointment appointment NOUN _ Number=Sing _ _ _ _
555 again again ADV _ _ _ _ _ _
556 , , PUNCT _ PunctType=Comm _ _ _ _
557 " " PUNCT _ PunctType=Peri _ _ _ _
558 Stacey Stacey PROPN _ NounType=Prop|Number=Sing _ _ _ _
559 says say VERB _ Number=Sing|Person=Three|Tense=Pres|VerbForm=Fin _ _ _ _
560 . . PUNCT _ PunctType=Peri _ _ _ _
562 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
563 glared glare VERB _ Tense=Past|VerbForm=Fin _ _ _ _
564 at at ADP _ _ _ _ _ _
565 her she PRON _ Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
566 again again ADV _ _ _ _ _ _
567 . . PUNCT _ PunctType=Peri _ _ _ _
569 " " PUNCT _ PunctType=Peri _ _ _ _
570 I'll _ _ _ _ _ _ _ _
571 take take VERB _ VerbForm=Inf _ _ _ _
572 the the DET _ Definite=Def|PronType=Art _ _ _ _
573 job job NOUN _ Number=Sing _ _ _ _
574 , , PUNCT _ PunctType=Comm _ _ _ _
575 " " PUNCT _ PunctType=Peri _ _ _ _
576 Mary Mary PROPN _ NounType=Prop|Number=Sing _ _ _ _
577 Anne Anne PROPN _ NounType=Prop|Number=Sing _ _ _ _
578 writes write VERB _ Number=Sing|Person=Three|Tense=Pres|VerbForm=Fin _ _ _ _
579 in in ADP _ _ _ _ _ _
580 the the DET _ Definite=Def|PronType=Art _ _ _ _
581 notebook notebook NOUN _ Number=Sing _ _ _ _
582 . . PUNCT _ PunctType=Peri _ _ _ _
584 As as ADP _ _ _ _ _ _
585 everyone everyone PRON _ Number=Sing _ _ _ _
586 began begin VERB _ Tense=Past|VerbForm=Fin _ _ _ _
587 doing do VERB _ Aspect=Prog|Tense=Pres|VerbForm=Part _ _ _ _
588 their their PRON _ Number=Plur|Person=3|Poss=Yes|PronType=Prs _ _ _ _
589 own own ADJ _ Degree=Pos _ _ _ _
590 thing thing NOUN _ Number=Sing _ _ _ _
591 , , PUNCT _ PunctType=Comm _ _ _ _
592 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
593 began begin VERB _ Tense=Past|VerbForm=Fin _ _ _ _
594 to to ADP _ _ _ _ _ _
595 smirk smirk VERB _ VerbForm=Inf _ _ _ _
596 , , PUNCT _ PunctType=Comm _ _ _ _
597 she she PRON _ Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
598 showed show VERB _ Tense=Past|VerbForm=Fin _ _ _ _
599 her she PRON _ Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
600 control control NOUN _ Number=Sing _ _ _ _
601 over over ADV _ _ _ _ _ _
602 the the DET _ Definite=Def|PronType=Art _ _ _ _
603 club club NOUN _ Number=Sing _ _ _ _
604 , , PUNCT _ PunctType=Comm _ _ _ _
605 she she PRON _ Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
606 was be AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin _ _ _ _
607 complete complete ADJ _ Degree=Pos _ _ _ _
608 , , PUNCT _ PunctType=Comm _ _ _ _
609 but but CCONJ _ ConjType=Cmp _ _ _ _
610 unknown unknown ADJ _ Degree=Pos _ _ _ _
611 to to ADP _ _ _ _ _ _
612 her she PRON _ Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
613 , , PUNCT _ PunctType=Comm _ _ _ _
614 this this DET _ Number=Sing|PronType=Dem _ _ _ _
615 change change VERB _ VerbForm=Inf _ _ _ _
616 of of ADP _ _ _ _ _ _
617 events event NOUN _ Number=Plur _ _ _ _
618 will will AUX _ VerbForm=Fin _ _ _ _
619 change change VERB _ VerbForm=Inf _ _ _ _
620 the the DET _ Definite=Def|PronType=Art _ _ _ _
621 lives life NOUN _ Number=Plur _ _ _ _
622 of of ADP _ _ _ _ _ _
623 the the DET _ Definite=Def|PronType=Art _ _ _ _
624 Babysitters Babysitters PROPN _ NounType=Prop|Number=Plur _ _ _ _
625 club club NOUN _ Number=Sing _ _ _ _
626 forever forever ADV _ _ _ _ _ _
627 . . PUNCT _ PunctType=Peri _ _ _ _
629 Chapter chapter NOUN _ Number=Sing _ _ _ _
630 2 2 NUM _ NumType=Card _ _ _ _
631 : : PUNCT _ _ _ _ _ _
632 Claudia Claudia PROPN _ NounType=Prop|Number=Sing _ _ _ _
633 and and CCONJ _ ConjType=Cmp _ _ _ _
634 the the DET _ Definite=Def|PronType=Art _ _ _ _
635 Big big ADJ _ Degree=Pos _ _ _ _
636 Change change NOUN _ Number=Sing _ _ _ _
638 Summary summary NOUN _ Number=Sing _ _ _ _
639 : : PUNCT _ _ _ _ _ _
641 Claudia Claudia PROPN _ NounType=Prop|Number=Sing _ _ _ _
642 and and CCONJ _ ConjType=Cmp _ _ _ _
643 the the DET _ Definite=Def|PronType=Art _ _ _ _
644 other other ADJ _ Degree=Pos _ _ _ _
645 girls girl NOUN _ Number=Plur _ _ _ _
646 kick kick VERB _ VerbForm=Inf _ _ _ _
647 out out ADP _ _ _ _ _ _
648 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
649 and and CCONJ _ ConjType=Cmp _ _ _ _
650 change change VERB _ VerbForm=Inf _ _ _ _
651 the the DET _ Definite=Def|PronType=Art _ _ _ _
652 leadership leadership NOUN _ Number=Sing _ _ _ _
653 in in ADP _ _ _ _ _ _
654 the the DET _ Definite=Def|PronType=Art _ _ _ _
655 Club Club PROPN _ NounType=Prop|Number=Sing _ _ _ _
656 . . PUNCT _ PunctType=Peri _ _ _ _
658 Chapter chapter NOUN _ Number=Sing _ _ _ _
659 Text text NOUN _ Number=Sing _ _ _ _
661 The the DET _ Definite=Def|PronType=Art _ _ _ _
662 club club NOUN _ Number=Sing _ _ _ _
663 was be AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin _ _ _ _
664 still still ADV _ _ _ _ _ _
665 on on ADP _ _ _ _ _ _
666 edge edge NOUN _ Number=Sing _ _ _ _
667 after after ADP _ _ _ _ _ _
668 what what PRON _ _ _ _ _ _
669 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
670 did do AUX _ Tense=Past|VerbForm=Fin _ _ _ _
671 , , PUNCT _ PunctType=Comm _ _ _ _
672 but but CCONJ _ ConjType=Cmp _ _ _ _
673 of of ADP _ _ _ _ _ _
674 course course NOUN _ Number=Sing _ _ _ _
675 , , PUNCT _ PunctType=Comm _ _ _ _
676 no no DET _ _ _ _ _ _
677 one one NUM _ NumType=Card _ _ _ _
678 outside outside ADV _ _ _ _ _ _
679 of of ADP _ _ _ _ _ _
680 the the DET _ Definite=Def|PronType=Art _ _ _ _
681 club club NOUN _ Number=Sing _ _ _ _
682 knows know VERB _ Number=Sing|Person=Three|Tense=Pres|VerbForm=Fin _ _ _ _
683 what what PRON _ _ _ _ _ _
684 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
685 did do AUX _ Tense=Past|VerbForm=Fin _ _ _ _
686 . . PUNCT _ PunctType=Peri _ _ _ _
688 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
689 of of ADP _ _ _ _ _ _
690 course course NOUN _ Number=Sing _ _ _ _
691 still still ADV _ _ _ _ _ _
692 wanted want VERB _ Tense=Past|VerbForm=Fin _ _ _ _
693 to to ADP _ _ _ _ _ _
694 know know VERB _ VerbForm=Inf _ _ _ _
695 what what PRON _ _ _ _ _ _
696 secret secret NOUN _ Number=Sing _ _ _ _
697 that that SCONJ _ Number=Sing|PronType=Dem _ _ _ _
698 Stacey Stacey PROPN _ NounType=Prop|Number=Sing _ _ _ _
699 is be AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin _ _ _ _
700 trying try VERB _ Aspect=Prog|Tense=Pres|VerbForm=Part _ _ _ _
701 to to ADP _ _ _ _ _ _
702 keep keep VERB _ VerbForm=Inf _ _ _ _
703 , , PUNCT _ PunctType=Comm _ _ _ _
704 she she PRON _ Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
705 couldn’t _ _ _ _ _ _ _ _
706 really really ADV _ _ _ _ _ _
707 take take VERB _ VerbForm=Inf _ _ _ _
708 any any DET _ _ _ _ _ _
709 lying lying NOUN _ Number=Sing _ _ _ _
710 or or CCONJ _ ConjType=Cmp _ _ _ _
711 secrets secret NOUN _ Number=Plur _ _ _ _
712 in in ADP _ _ _ _ _ _
713 the the DET _ Definite=Def|PronType=Art _ _ _ _
714 club club NOUN _ Number=Sing _ _ _ _
715 . . PUNCT _ PunctType=Peri _ _ _ _
717 She she PRON _ Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
718 still still ADV _ _ _ _ _ _
719 saw see VERB _ Tense=Past|VerbForm=Fin _ _ _ _
720 Stacey Stacey PROPN _ NounType=Prop|Number=Sing _ _ _ _
721 being be VERB _ Aspect=Prog|Tense=Pres|VerbForm=Part _ _ _ _
722 secretive secretive ADJ _ Degree=Pos _ _ _ _
723 more more ADV _ Degree=Cmp _ _ _ _
724 than than SCONJ _ _ _ _ _ _
725 ever ever ADV _ _ _ _ _ _
726 since since SCONJ _ _ _ _ _ _
727 the the DET _ Definite=Def|PronType=Art _ _ _ _
728 confrontation confrontation NOUN _ Number=Sing _ _ _ _
729 , , PUNCT _ PunctType=Comm _ _ _ _
730 so so CCONJ _ ConjType=Cmp _ _ _ _
731 she she PRON _ Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
732 did do AUX _ Tense=Past|VerbForm=Fin _ _ _ _
733 something something PRON _ Number=Sing _ _ _ _
734 that that SCONJ _ Number=Sing|PronType=Dem _ _ _ _
735 would would AUX _ VerbForm=Fin _ _ _ _
736 change change VERB _ VerbForm=Inf _ _ _ _
737 the the DET _ Definite=Def|PronType=Art _ _ _ _
738 course course NOUN _ Number=Sing _ _ _ _
739 of of ADP _ _ _ _ _ _
740 the the DET _ Definite=Def|PronType=Art _ _ _ _
741 whole whole ADJ _ Degree=Pos _ _ _ _
742 history history NOUN _ Number=Sing _ _ _ _
743 and and CCONJ _ ConjType=Cmp _ _ _ _
744 relationship relationship NOUN _ Number=Sing _ _ _ _
745 of of ADP _ _ _ _ _ _
746 the the DET _ Definite=Def|PronType=Art _ _ _ _
747 club club NOUN _ Number=Sing _ _ _ _
748 . . PUNCT _ PunctType=Peri _ _ _ _
750 Claudia Claudia PROPN _ NounType=Prop|Number=Sing _ _ _ _
751 got get VERB _ Tense=Past|VerbForm=Fin _ _ _ _
752 a a DET _ Definite=Ind|PronType=Art _ _ _ _
753 phone phone NOUN _ Number=Sing _ _ _ _
754 call call NOUN _ Number=Sing _ _ _ _
755 in in ADP _ _ _ _ _ _
756 the the DET _ Definite=Def|PronType=Art _ _ _ _
757 middle middle NOUN _ Number=Sing _ _ _ _
758 of of ADP _ _ _ _ _ _
759 the the DET _ Definite=Def|PronType=Art _ _ _ _
760 morning morning NOUN _ Number=Sing _ _ _ _
761 , , PUNCT _ PunctType=Comm _ _ _ _
762 it it PRON _ Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs _ _ _ _
763 was be AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin _ _ _ _
764 still still ADV _ _ _ _ _ _
765 night night NOUN _ Number=Sing _ _ _ _
766 , , PUNCT _ PunctType=Comm _ _ _ _
767 she she PRON _ Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
768 woke wake VERB _ Tense=Past|VerbForm=Fin _ _ _ _
769 up up ADP _ Number=Sing _ _ _ _
770 and and CCONJ _ ConjType=Cmp _ _ _ _
771 saw see VERB _ Tense=Past|VerbForm=Fin _ _ _ _
772 it it PRON _ Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs _ _ _ _
773 was be AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin _ _ _ _
774 Stacey Stacey PROPN _ NounType=Prop|Number=Sing _ _ _ _
775 , , PUNCT _ PunctType=Comm _ _ _ _
776 Claudia Claudia PROPN _ NounType=Prop|Number=Sing _ _ _ _
777 answered answer VERB _ Tense=Past|VerbForm=Fin _ _ _ _
778 it it PRON _ Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs _ _ _ _
779 . . PUNCT _ PunctType=Peri _ _ _ _
781 “ " PUNCT _ PunctSide=Ini|PunctType=Quot _ _ _ _
782 Stacey Stacey PROPN _ NounType=Prop|Number=Sing _ _ _ _
783 ? ? PUNCT _ PunctType=Peri _ _ _ _
785 What what PRON _ _ _ _ _ _
786 ’s ’s PART _ _ _ _ _ _
787 wrong wrong ADJ _ Degree=Pos _ _ _ _
788 ? ? PUNCT _ PunctType=Peri _ _ _ _
789 ” " PUNCT _ PunctSide=Ini|PunctType=Quot _ _ _ _
791 Claudia Claudia PROPN _ NounType=Prop|Number=Sing _ _ _ _
792 asks ask VERB _ Number=Sing|Person=Three|Tense=Pres|VerbForm=Fin _ _ _ _
793 . . PUNCT _ PunctType=Peri _ _ _ _
795 “ " PUNCT _ PunctSide=Ini|PunctType=Quot _ _ _ _
796 Have have AUX _ Mood=Ind|Tense=Pres|VerbForm=Fin _ _ _ _
797 you you PRON _ Case=Nom|Person=2|PronType=Prs _ _ _ _
798 seen see VERB _ Aspect=Perf|Tense=Past|VerbForm=Part _ _ _ _
799 what what PRON _ _ _ _ _ _
800 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
801 did do AUX _ Tense=Past|VerbForm=Fin _ _ _ _
802 to to ADP _ _ _ _ _ _
803 me I PRON _ Case=Acc|Number=Sing|Person=1|PronType=Prs _ _ _ _
804 ? ? PUNCT _ PunctType=Peri _ _ _ _
805 ! ! PUNCT _ PunctType=Peri _ _ _ _
806 ’ ' PUNCT _ PunctSide=Ini|PunctType=Quot _ _ _ _
808 Stacey Stacey PROPN _ NounType=Prop|Number=Sing _ _ _ _
809 yelled yell VERB _ Tense=Past|VerbForm=Fin _ _ _ _
810 through through ADP _ _ _ _ _ _
811 the the DET _ Definite=Def|PronType=Art _ _ _ _
812 phone phone NOUN _ Number=Sing _ _ _ _
813 . . PUNCT _ PunctType=Peri _ _ _ _
815 “ " PUNCT _ PunctSide=Ini|PunctType=Quot _ _ _ _
816 You you PRON _ Case=Nom|Person=2|PronType=Prs _ _ _ _
817 mean mean VERB _ VerbForm=Inf _ _ _ _
818 about about ADP _ _ _ _ _ _
819 before before ADV _ _ _ _ _ _
820 ? ? PUNCT _ PunctType=Peri _ _ _ _
822 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs _ _ _ _
823 get get VERB _ VerbForm=Inf _ _ _ _
824 you you PRON _ Case=Nom|Person=2|PronType=Prs _ _ _ _
825 to to ADP _ _ _ _ _ _
826 have have AUX _ Mood=Ind|Tense=Pres|VerbForm=Fin _ _ _ _
827 a a DET _ Definite=Ind|PronType=Art _ _ _ _
828 private private ADJ _ Degree=Pos _ _ _ _
829 life life NOUN _ Number=Sing _ _ _ _
830 , , PUNCT _ PunctType=Comm _ _ _ _
831 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs _ _ _ _
832 won’t _ _ _ _ _ _ _ _
833 get get VERB _ VerbForm=Inf _ _ _ _
834 into into ADP _ _ _ _ _ _
835 it it PRON _ Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs _ _ _ _
836 , , PUNCT _ PunctType=Comm _ _ _ _
837 but but CCONJ _ ConjType=Cmp _ _ _ _
838 what what PRON _ _ _ _ _ _
839 else else ADV _ _ _ _ _ _
840 did do AUX _ Tense=Past|VerbForm=Fin _ _ _ _
841 she she PRON _ Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
842 do do VERB _ VerbForm=Inf _ _ _ _
843 to to ADP _ _ _ _ _ _
844 you you PRON _ Case=Nom|Person=2|PronType=Prs _ _ _ _
845 ? ? PUNCT _ PunctType=Peri _ _ _ _
846 ” " PUNCT _ PunctSide=Ini|PunctType=Quot _ _ _ _
848 Claudia Claudia PROPN _ NounType=Prop|Number=Sing _ _ _ _
849 asked ask VERB _ Tense=Past|VerbForm=Fin _ _ _ _
850 . . PUNCT _ PunctType=Peri _ _ _ _
852 Being be VERB _ Aspect=Prog|Tense=Pres|VerbForm=Part _ _ _ _
853 a a DET _ Definite=Ind|PronType=Art _ _ _ _
854 former former ADJ _ Degree=Pos _ _ _ _
855 friend friend NOUN _ Number=Sing _ _ _ _
856 of of ADP _ _ _ _ _ _
857 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
858 , , PUNCT _ PunctType=Comm _ _ _ _
859 Claudia Claudia PROPN _ NounType=Prop|Number=Sing _ _ _ _
860 knew know VERB _ Tense=Past|VerbForm=Fin _ _ _ _
861 what what PRON _ _ _ _ _ _
862 she she PRON _ Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
863 can can AUX _ VerbForm=Fin _ _ _ _
864 do do VERB _ VerbForm=Inf _ _ _ _
865 , , PUNCT _ PunctType=Comm _ _ _ _
866 what what PRON _ _ _ _ _ _
867 did do AUX _ Tense=Past|VerbForm=Fin _ _ _ _
868 she she PRON _ Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
869 do do VERB _ VerbForm=Inf _ _ _ _
870 to to ADP _ _ _ _ _ _
871 Stacey Stacey PROPN _ NounType=Prop|Number=Sing _ _ _ _
872 ? ? PUNCT _ PunctType=Peri _ _ _ _
874 She she PRON _ Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
875 got get VERB _ Tense=Past|VerbForm=Fin _ _ _ _
876 a a DET _ Definite=Ind|PronType=Art _ _ _ _
877 link link NOUN _ Number=Sing _ _ _ _
878 to to ADP _ _ _ _ _ _
879 google google NOUN _ Number=Sing _ _ _ _
880 docs doc NOUN _ Number=Plur _ _ _ _
881 , , PUNCT _ PunctType=Comm _ _ _ _
882 she she PRON _ Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
883 read read VERB _ Tense=Past|VerbForm=Fin _ _ _ _
884 it it PRON _ Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs _ _ _ _
885 , , PUNCT _ PunctType=Comm _ _ _ _
886 and and CCONJ _ ConjType=Cmp _ _ _ _
887 her she PRON _ Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
888 blood blood NOUN _ Number=Sing _ _ _ _
889 boiled boil VERB _ Tense=Past|VerbForm=Fin _ _ _ _
890 from from ADP _ _ _ _ _ _
891 what what PRON _ _ _ _ _ _
892 she she PRON _ Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
893 read read VERB _ Tense=Past|VerbForm=Fin _ _ _ _
894 . . PUNCT _ PunctType=Peri _ _ _ _
895 “ " PUNCT _ PunctSide=Ini|PunctType=Quot _ _ _ _
897 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
898 is be AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin _ _ _ _
899 kicking kick VERB _ Aspect=Prog|Tense=Pres|VerbForm=Part _ _ _ _
900 you you PRON _ Case=Nom|Person=2|PronType=Prs _ _ _ _
901 out out ADP _ _ _ _ _ _
902 of of ADP _ _ _ _ _ _
903 the the DET _ Definite=Def|PronType=Art _ _ _ _
904 club club NOUN _ Number=Sing _ _ _ _
905 ? ? PUNCT _ PunctType=Peri _ _ _ _
906 ! ! PUNCT _ PunctType=Peri _ _ _ _
907 ” " PUNCT _ PunctSide=Ini|PunctType=Quot _ _ _ _
909 “ " PUNCT _ PunctSide=Ini|PunctType=Quot _ _ _ _
910 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs _ _ _ _
911 was be AUX _ Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin _ _ _ _
912 surprised surprised ADJ _ Degree=Pos _ _ _ _
913 just just ADV _ _ _ _ _ _
914 as as ADP _ _ _ _ _ _
915 you you PRON _ Case=Nom|Person=2|PronType=Prs _ _ _ _
916 are be AUX _ Mood=Ind|Tense=Pres|VerbForm=Fin _ _ _ _
917 , , PUNCT _ PunctType=Comm _ _ _ _
918 what what PRON _ _ _ _ _ _
919 can can AUX _ VerbForm=Fin _ _ _ _
920 we we PRON _ Case=Nom|Number=Plur|Person=1|PronType=Prs _ _ _ _
921 do do VERB _ VerbForm=Inf _ _ _ _
922 ? ? PUNCT _ PunctType=Peri _ _ _ _
923 ” " PUNCT _ PunctSide=Ini|PunctType=Quot _ _ _ _
925 “ " PUNCT _ PunctSide=Ini|PunctType=Quot _ _ _ _
926 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs _ _ _ _
927 know know VERB _ VerbForm=Inf _ _ _ _
928 what what PRON _ _ _ _ _ _
929 we we PRON _ Case=Nom|Number=Plur|Person=1|PronType=Prs _ _ _ _
930 can can AUX _ VerbForm=Fin _ _ _ _
931 do do VERB _ VerbForm=Inf _ _ _ _
932 . . PUNCT _ PunctType=Peri _ _ _ _
933 ” " PUNCT _ PunctSide=Ini|PunctType=Quot _ _ _ _
935 The the DET _ Definite=Def|PronType=Art _ _ _ _
936 next next ADJ _ Degree=Pos _ _ _ _
937 day day NOUN _ Number=Sing _ _ _ _
938 , , PUNCT _ PunctType=Comm _ _ _ _
939 Claudia Claudia PROPN _ NounType=Prop|Number=Sing _ _ _ _
940 showed show VERB _ Tense=Past|VerbForm=Fin _ _ _ _
941 Mary Mary PROPN _ NounType=Prop|Number=Sing _ _ _ _
942 Anne Anne PROPN _ NounType=Prop|Number=Sing _ _ _ _
943 the the DET _ Definite=Def|PronType=Art _ _ _ _
944 document document NOUN _ Number=Sing _ _ _ _
945 that that SCONJ _ Number=Sing|PronType=Dem _ _ _ _
946 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
947 made make VERB _ Tense=Past|VerbForm=Fin _ _ _ _
948 of of ADP _ _ _ _ _ _
949 kicking kick VERB _ Aspect=Prog|Tense=Pres|VerbForm=Part _ _ _ _
950 Stacey Stacey PROPN _ NounType=Prop|Number=Sing _ _ _ _
951 out out ADP _ _ _ _ _ _
952 of of ADP _ _ _ _ _ _
953 the the DET _ Definite=Def|PronType=Art _ _ _ _
954 club club NOUN _ Number=Sing _ _ _ _
955 , , PUNCT _ PunctType=Comm _ _ _ _
956 Mary Mary PROPN _ NounType=Prop|Number=Sing _ _ _ _
957 Anne Anne PROPN _ NounType=Prop|Number=Sing _ _ _ _
958 couldn’t _ _ _ _ _ _ _ _
959 believe believe VERB _ VerbForm=Inf _ _ _ _
960 her she PRON _ Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
961 eyes eye NOUN _ Number=Plur _ _ _ _
962 , , PUNCT _ PunctType=Comm _ _ _ _
963 she she PRON _ Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs _ _ _ _
964 didn’t _ _ _ _ _ _ _ _
965 know know VERB _ VerbForm=Inf _ _ _ _
966 what what PRON _ _ _ _ _ _
967 to to ADP _ _ _ _ _ _
968 do do VERB _ VerbForm=Inf _ _ _ _
969 , , PUNCT _ PunctType=Comm _ _ _ _
970 but but CCONJ _ ConjType=Cmp _ _ _ _
971 Claudia Claudia PROPN _ NounType=Prop|Number=Sing _ _ _ _
972 did do AUX _ Tense=Past|VerbForm=Fin _ _ _ _
973 . . PUNCT _ PunctType=Peri _ _ _ _
975 They they PRON _ Case=Nom|Number=Plur|Person=3|PronType=Prs _ _ _ _
976 encountered encounter VERB _ Aspect=Perf|Tense=Past|VerbForm=Part _ _ _ _
977 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
978 privately privately ADV _ _ _ _ _ _
979 to to ADP _ _ _ _ _ _
980 begin begin VERB _ VerbForm=Inf _ _ _ _
981 a a DET _ Definite=Ind|PronType=Art _ _ _ _
982 very very ADV _ _ _ _ _ _
983 harsh harsh ADJ _ Degree=Pos _ _ _ _
984 conversation conversation NOUN _ Number=Sing _ _ _ _
985 . . PUNCT _ PunctType=Peri _ _ _ _
987 “ " PUNCT _ PunctSide=Ini|PunctType=Quot _ _ _ _
988 Hey hey INTJ _ _ _ _ _ _
989 girls girl NOUN _ Number=Plur _ _ _ _
990 , , PUNCT _ PunctType=Comm _ _ _ _
991 and and CCONJ _ ConjType=Cmp _ _ _ _
992 Stacey Stacey PROPN _ NounType=Prop|Number=Sing _ _ _ _
993 … … PUNCT _ PunctSide=Ini|PunctType=Quot _ _ _ _
994 ” " PUNCT _ PunctSide=Ini|PunctType=Quot _ _ _ _
995 Kristy Kristy PROPN _ NounType=Prop|Number=Sing _ _ _ _
996 says say VERB _ Number=Sing|Person=Three|Tense=Pres|VerbForm=Fin _ _ _ _
997 looking look VERB _ Aspect=Prog|Tense=Pres|VerbForm=Part _ _ _ _
998 at at ADP _ _ _ _ _ _
999 Stacey Stacey PROPN _ NounType=Prop|Number=Sing _ _ _ _
1000 with with ADP _ _ _ _ _ _