forked from SoarGroup/rosie
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ep-chunks.soar
3332 lines (3231 loc) · 134 KB
/
ep-chunks.soar
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
sp {chunk*apply*finish-comprehend*t2005-1
:chunk
(state <s2> ^segment <s1> ^operator <o1>)
(<s1> -^retry <r*4> ^prior-word <w1> ^retrieved-stack <n1>)
-{ (<s1> ^retrieved-stack <r*4>)
(<r*4> ^item <i*1>)
(<i*1> ^lt <l*1>)
(<l*1> ^spelling locations)}
(<w1> ^spelling locations)
(<o1> ^name comprehend-word ^current-word <w2>)
(<w2> -^first-word true ^spelling |.|)
-{ (<s1> ^prior-word <p*1>)
(<p*1> ^spelling *)
(<w2> ^next <n*2>)
(<n*2> ^spelling |.|)}
(<n1> ^item <i1>)
(<i1> ^lt <p1>)
(<p1> ^structure-type CN)
-->
(<s1> ^comprehension-structure <c1> +)
(<c1> ^processed true + ^type word + ^retrieved-lexical-item @W23 +
^not-merged-receiver <i2> +)
(@W23 ^delay-retry true + ^structure-type T + ^spelling |.| +)
(<i2> ^semantics <s3> + ^lt @W23 + ^current-word <w2> +
^structure-type T +)
(<w2> ^processed true +)
}
sp {chunk*apply*finish-comprehend*t1992-1
:chunk
(state <s2> ^segment <s1> ^operator <o1>)
(<s1> -^retry <r*4> ^prior-word <w1> ^retrieved-stack <n1>)
-{ (<s1> ^retrieved-stack <r*4>)
(<r*4> ^item <i*1>)
(<i*1> ^lt <l*1>)
(<l*1> ^spelling matched)}
(<w1> ^spelling matched)
(<o1> ^name comprehend-word ^current-word <w2>)
(<w2> -^first-word true ^spelling locations)
-{ (<s1> ^prior-word <p*1>)
(<p*1> ^spelling *)
(<w2> ^next <n*2>)
(<n*2> ^spelling |.|)}
(<n1> ^item <i1>)
(<i1> ^lt <p1>)
(<p1> ^structure-type CN)
-->
(<s1> ^comprehension-structure <c1> +)
(<c1> ^processed true + ^type word + ^retrieved-lexical-item @L13 +
^not-merged-receiver <i2> +)
(@L13 ^syntactic-referent-type DP + ^referent @P7005 + ^structure-type N +
^spelling locations + ^number plural +)
(@P7005 ^multiple true + ^property @P7000 + ^handle location +)
(@P7000 ^item-type property + ^handle category + ^type visual +)
(<i2> ^semantics <s3> + ^lt @L13 + ^current-word <w2> +
^structure-type N + ^lt-referent <n2> +)
(<n2> ^handle location + ^property @P7000 + ^multiple true +)
(<w2> ^processed true +)
}
sp {chunk*apply*finish-comprehend*t1979-1
:chunk
(state <s2> ^segment <s1> ^operator <o1>)
(<s1> -^retry <r*4> ^prior-word <w1> ^retrieved-stack <n1>)
(<w1> ^spelling eight)
(<o1> ^name comprehend-word ^current-word <w2>)
(<w2> -^first-word true ^spelling matched)
-{ (<s1> ^prior-word <p*1>)
(<p*1> ^spelling *)
(<w2> ^next <n*2>)
(<n*2> ^spelling |.|)}
(<n1> ^item <i1>)
(<i1> -^merged-with true ^lt <p1>)
(<p1> ^structure-type CN ^spelling eight)
-->
(<s1> ^comprehension-structure <c1> +)
(<c1> ^processed true + ^type word + ^retrieved-lexical-item @M3 +
^not-merged-receiver <i2> +)
(@M3 ^attachment immediate + ^referent @M4 + ^structure-type ADJ +
^spelling matched +)
(@M4 ^property @C38 + ^handle matched +)
(@C38 ^handle property + ^type visual +)
(<i2> ^semantics <s3> + ^lt @M3 + ^current-word <w2> +
^structure-type ADJ + ^lt-referent <n2> +)
(<n2> ^handle matched + ^property @C38 +)
(<w2> ^processed true +)
}
sp {chunk*apply*finish-comprehend*t1967-1
:chunk
(state <s4> ^segment <s3> ^operator <o1>)
(<s3> -^retry <r*4> ^prior-word <w1> ^retrieved-stack <n1>)
-{ (<s3> ^retrieved-stack <r*4>)
(<r*4> ^item <i*1>)
(<i*1> ^lt <l*1>)
(<l*1> ^spelling are)}
(<w1> ^spelling are)
(<o1> ^name comprehend-word ^current-word <w2>)
-{ (<s3> ^prior-word <p*1>)
(<p*1> ^spelling *)
(<w2> ^next <n*2>)
(<n*2> ^spelling |.|)}
(<w2> -^first-word true ^spelling eight)
(<n1> ^item <i1>)
(<i1> ^lt <s1> ^lt <s2>)
(<s1> ^structure-type C)
(<s2> ^structure-type C)
-->
(<s3> ^comprehension-structure <c1> +)
(<c1> ^processed true + ^type word + ^retrieved-lexical-item @E29 +
^not-merged-receiver <i2> + ^not-merged-assigner <n2> +
^not-merged-assigner <n3> + ^not-merged-assigner <n4> +)
(@E29 ^constraint @P11208 + ^super-type @T10000 + ^spelling eight +
^number singular +)
(<n2> ^structure-type N + ^parent-receiver <i2> + ^lt @C82 +
^current-word <w2> +)
(<n3> ^structure-type PP + ^parent-receiver <i2> + ^lt @C83 +
^current-word <w2> +)
(<i2> ^semantics <s5> + ^proto-lt <p1> + ^super-type @T10000 +
^current-word <w2> + ^lt <p1> + ^constraint @P11208 +
^structure-type CN +)
(@T10000 ^specifier indefinite + ^converts-to DP + ^assigners @C83 +
^assigners @C82 + ^assigners @C81 + ^structure-type CN +)
(<p1> ^spelling eight + ^number singular + ^constraint @P11208 +
^copied yes + ^structure-type CN + ^assigners @C83 +
^assigners @C82 + ^assigners @C81 + ^converts-to DP +
^specifier indefinite +)
(@P11208 ^property @P11000 + ^item-type predicate + ^handle 8 +)
(@P11000 ^item-type property + ^handle number + ^type number +)
(@C81 ^repeatable true + ^optional true + ^relative-position after +
^before @C82 + ^syntactic-structure adjoin + ^structure-type ADJ +)
(@C82 ^optional true + ^relative-position after + ^before @C83 +
^syntactic-structure head + ^structure-type N +)
(@C83 ^optional true + ^relative-position after +
^syntactic-structure complement + ^structure-type PP +)
(<n4> ^structure-type ADJ + ^parent-receiver <i2> + ^lt @C81 +
^current-word <w2> +)
(<w2> ^processed true +)
}
sp {chunk*apply*finish-comprehend*construction*t1951-1
:chunk
(state <s2> ^operator <o1> ^segment <s1>)
(<o1> ^name comprehend-construction ^prior-item <i1> ^current-item <i2>)
-{ (<i1> ^current-word <c*2>)
(<c*2> ^first-word true)}
(<i2> ^structure-type IS-V ^structure-type <c6>)
(<i1> ^lt <t1> ^structure-type <c5> ^structure-type <c3>
^structure-type <c2> ^current-word <w1> ^lt <t2>)
(<t1> ^spelling there)
(<s1> ^not-merged-receiver <i1> ^retrieved-stack <n2>)
(<n2> ^prior <n1>)
(<n1> ^item <i1>)
(<t2> ^spelling <c4>)
(<w1> ^spelling <c1>)
-->
(<s1> ^comprehension-structure <c7> + ^construction-comprehended <c8> +)
(<c7> ^processed true + ^type construction + ^words prior-word +
^successful-query <x1> + ^retrieved-lexical-item @S81 +
^not-merged-receiver <i3> + ^not-merged-assigner <n3> +
^not-merged-assigner <n4> + ^not-merged-assigner <n5> +
^not-merged-assigner <n6> + ^not-merged-assigner <n7> +
^remove-receiver <i1> +)
(<x1> ^prior-word-first false + ^prior-word there + ^current-word IS-V +)
(<n3> ^structure-type PP + ^parent-receiver <i3> + ^lt @I104 +
^current-word @S81 +)
(<n4> ^structure-type IS-V + ^parent-receiver <i3> + ^lt @I103 +
^current-word @S81 +)
(<n5> ^structure-type DP + ^parent-receiver <i3> + ^lt @I107 +
^current-word @S81 +)
(<n6> ^structure-type ADV + ^parent-receiver <i3> + ^lt @I105 +
^current-word @S81 +)
(<i3> ^lt @S81 + ^current-word @S81 + ^structure-type C +)
(@S81 ^processed true + ^converts-to CP +
^message-type object-description + ^assigners @I107 +
^assigners @I106 + ^assigners @I105 + ^assigners @I104 +
^assigners @I103 + ^prior-word-first false +
^construction There-is-ADJ/DP/PP + ^prior-word there +
^current-word IS-V + ^structure-type C +)
(@I103 ^before @I107 + ^before @I106 + ^before @I105 + ^before @I104 +
^syntactic-structure predicate + ^required true +
^structure-type IS-V +)
(@I105 ^referent-type literal + ^syntactic-structure adverb-modifier +
^semantic-structure modifier + ^structure-type ADV +)
(@I104 ^exclusive @I107 + ^exclusive @I106 + ^optional true +
^syntactic-structure complement + ^semantic-structure arg2 +
^structure-type PP +)
(@I106 ^referent-type literal + ^exclusive @I107 + ^exclusive @I104 +
^optional true + ^syntactic-structure predicate +
^semantic-structure predicate + ^structure-type ADJ +)
(@I107 ^exclusive @I106 + ^exclusive @I104 + ^optional true +
^syntactic-structure predicate + ^semantic-structure predicate +
^structure-type DP +)
(<n7> ^structure-type ADJ + ^parent-receiver <i3> + ^lt @I106 +
^current-word @S81 +)
(<c8> ^current-item <i2> + ^prior-item <i1> +)
}
sp {chunk*apply*finish-comprehend*t1936-1
:chunk
(state <s2> ^segment <s1> ^operator <o1>)
(<s1> -^retry <r*4> ^prior-word <w1> ^retrieved-stack <n1>)
(<w1> ^spelling there)
(<o1> ^name comprehend-word ^current-word <w2>)
(<w2> -^first-word true ^spelling are)
-{ (<s1> ^prior-word <p*1>)
(<p*1> ^spelling *)
(<w2> ^next <n*2>)
(<n*2> ^spelling |.|)}
(<n1> ^item <i1>)
(<i1> -^merged-with true ^lt <t1> ^lt <t3> ^lt <t2>)
(<t1> ^structure-type DPX)
(<t3> ^structure-type DPX)
(<t2> ^spelling there)
-->
(<s1> ^comprehension-structure <c1> +)
(<c1> ^processed true + ^type word + ^retrieved-lexical-item @A10053 +
^not-merged-receiver <i2> +)
(@A10053 ^tense present + ^structure-type IS-V + ^spelling are +
^number plural +)
(<i2> ^semantics <s3> + ^lt @A10053 + ^current-word <w2> +
^structure-type IS-V +)
(<w2> ^processed true +)
}
sp {chunk*comprehend-word*apply*smem-construction-retrieval*failure-complete2*onc*t1924-1
:chunk
(state <s3> ^operator <o1> ^segment <s4>)
(<o1> ^name comprehend-construction ^prior-item <i1> ^current-item <i2>)
(<i1> ^structure-type C ^current-word <s1> ^current-word <s2>)
(<i2> ^structure-type DPX)
(<s1> ^first-word true)
(<s2> ^first-word true)
-->
(<s4> ^comprehension-structure <c1> +)
(<c1> ^processed true + ^failed true + ^type construction +)
}
sp {chunk*comprehend-word*apply*smem-construction-retrieval*failure-complete*onc*t1919-1
:chunk
(state <s1> ^operator <o1> ^segment <s2>)
(<o1> ^name comprehend-construction ^prior-item <i1> ^current-item <i2>)
-{ (<i1> ^current-word <c*1>)
(<c*1> ^first-word true)}
-{ (<i1> ^current-word <c*2>)
(<c*2> ^first-word true)}
(<i1> ^structure-type RPN)
(<i2> ^structure-type DPX)
-->
(<s2> ^comprehension-structure <c1> +)
(<c1> ^processed true + ^failed true + ^type construction +)
}
sp {chunk*apply*finish-comprehend*t1912-1
:chunk
(state <s2> ^segment <s1> ^operator <o1>)
(<s1> -^retry <r*4> ^prior-word <w1> ^retrieved-stack <n1>)
-{ (<s1> ^retrieved-stack <r*4>)
(<r*4> ^item <i*1>)
(<i*1> ^lt <l*1>)
(<l*1> ^spelling that)}
(<w1> ^spelling that)
(<o1> ^name comprehend-word ^current-word <w2>)
(<w2> -^first-word true ^spelling there)
-{ (<s1> ^prior-word <p*1>)
(<p*1> ^spelling *)
(<w2> ^next <n*2>)
(<n*2> ^spelling |.|)}
(<n1> ^item <i1>)
(<i1> -^merged-with true ^lt <t1> ^lt <t4> ^lt <t3> ^lt <t2>)
(<t1> ^spelling is-that)
(<t4> ^structure-type RPN)
(<t3> ^structure-type RPN)
(<t2> ^spelling is-that)
-->
(<s1> ^comprehension-structure <c1> +)
(<c1> ^processed true + ^type word + ^retrieved-lexical-item @T1018 +
^not-merged-receiver <i2> +)
(@T1018 ^referent @R10062 + ^structure-type DPX + ^spelling there +
^number singular +)
(@R10062 ^property @P90107 + ^handle there +)
(@P90107 ^handle handle + ^type visual +)
(<i2> ^semantics <s3> + ^lt @T1018 + ^current-word <w2> +
^structure-type DPX + ^lt-referent <n2> +)
(<n2> ^handle there + ^property @P90107 +)
(<w2> ^processed true +)
}
sp {chunk*apply*finish-comprehend*t1898-1
:chunk
(state <s2> ^segment <s1> ^operator <o1>)
-{ (<s1> ^retrieved-stack <r*4>)
(<r*4> ^item <i*1>)
(<i*1> ^lt <l*1>)
(<l*1> ^spelling is)}
(<s1> ^prior-word <w1>)
(<w1> ^spelling is)
(<o1> ^name comprehend-word ^current-word <w2>)
(<w2> ^spelling that)
-->
(<s1> ^comprehension-structure <c1> +)
(<c1> ^processed true + ^type word + ^retrieved-lexical-item @T9033 +
^not-merged-receiver <i1> + ^not-merged-assigner <n1> +)
(<i1> ^semantics <s3> + ^lt @T9033 + ^current-word <w2> +
^structure-type RPN +)
(@T9033 ^consumes-prior-word false + ^converts-to RC + ^assigners @I21 +
^prior-word is + ^current-word that + ^attachment immediate +
^structure-type RPN + ^spelling is-that +)
(@I21 ^delay-merge true + ^relative-position after +
^syntactic-structure head + ^semantic-structure *copy* +
^required true + ^structure-type CP +)
(<n1> ^structure-type CP + ^parent-receiver <i1> + ^lt @I21 +
^current-word <w2> +)
(<w2> ^processed true +)
}
sp {chunk*apply*finish-comprehend*t1883-1
:chunk
(state <s3> ^segment <s2> ^operator <o1>)
(<s2> -^retry <r*4> ^prior-word <w1> ^retrieved-stack <s1>)
-{ (<s2> ^retrieved-stack <r*4>)
(<r*4> ^item <i*1>)
(<i*1> ^lt <l*1>)
(<l*1> ^spelling goal)}
(<w1> ^spelling goal)
(<o1> ^name comprehend-word ^current-word <w2>)
(<w2> -^first-word true ^spelling is)
-{ (<s2> ^prior-word <p*1>)
(<p*1> ^spelling *)
(<w2> ^next <n*2>)
(<n*2> ^spelling |.|)}
(<s1> ^item <i1>)
(<i1> ^lt <p1>)
(<p1> ^structure-type D)
-->
(<s2> ^comprehension-structure <c1> +)
(<c1> ^processed true + ^type word + ^retrieved-lexical-item @I8 +
^not-merged-receiver <i2> +)
(@I8 ^tense present + ^structure-type IS-V + ^spelling is +
^number singular +)
(<i2> ^semantics <s4> + ^lt @I8 + ^current-word <w2> +
^structure-type IS-V +)
(<w2> ^processed true +)
}
sp {chunk*apply*finish-comprehend*t1870-1
:chunk
(state <s3> ^segment <s2> ^operator <o1>)
(<s2> -^retry <r*4> ^prior-word <w1> ^retrieved-stack <s1>)
(<w1> ^spelling the)
(<o1> ^name comprehend-word ^current-word <w2>)
(<w2> -^first-word true ^spelling goal)
-{ (<s2> ^prior-word <p*1>)
(<p*1> ^spelling *)
(<w2> ^next <n*2>)
(<n*2> ^spelling |.|)}
(<s1> ^item <i1>)
(<i1> -^merged-with true ^lt <p1>)
(<p1> ^structure-type D ^spelling the)
-->
(<s2> ^comprehension-structure <c1> +)
(<c1> ^processed true + ^type word + ^retrieved-lexical-item @G10006 +
^not-merged-receiver <i2> +)
(@G10006 ^syntactic-referent-type DP + ^object-feature handle +
^referent @G10005 + ^structure-type N + ^spelling goal +
^number singular +)
(@G10005 ^property @C62 + ^handle goal +)
(@C62 ^handle concept + ^type conceptual +)
(<i2> ^semantics <s4> + ^lt @G10006 + ^current-word <w2> +
^structure-type N + ^lt-referent <n1> +)
(<n1> ^handle goal + ^property @C62 +)
(<w2> ^processed true +)
}
sp {chunk*apply*finish-comprehend*t1720-1
:chunk
(state <s4> ^segment <s3> ^operator <o1>)
(<s3> -^retry <r*4> ^prior-word <w1> ^retrieved-stack <n1>)
-{ (<s3> ^retrieved-stack <r*4>)
(<r*4> ^item <i*1>)
(<i*1> ^lt <l*1>)
(<l*1> ^spelling is)}
(<w1> ^spelling is)
(<o1> ^name comprehend-word ^current-word <w2>)
-{ (<s3> ^prior-word <p*1>)
(<p*1> ^spelling *)
(<w2> ^next <n*2>)
(<n*2> ^spelling |.|)}
(<w2> -^first-word true ^spelling the)
(<n1> ^item <i1>)
(<i1> ^lt <s1> ^lt <s2>)
(<s1> ^structure-type C)
(<s2> ^structure-type C)
-->
(<s3> ^comprehension-structure <c1> +)
(<c1> ^processed true + ^type word + ^retrieved-lexical-item @T1004 +
^not-merged-receiver <i2> + ^not-merged-assigner <n2> +
^not-merged-assigner <n3> + ^not-merged-assigner <n4> +
^not-merged-assigner <n5> +)
(@T1004 ^super-type @D1001 + ^specifier definite + ^spelling the +
^number singular +)
(<n2> ^structure-type PP + ^parent-receiver <i2> + ^lt @D1003 +
^current-word <w2> +)
(<n3> ^structure-type N + ^parent-receiver <i2> + ^lt @D1005 +
^current-word <w2> +)
(<n4> ^structure-type RCP + ^parent-receiver <i2> + ^lt @D1004 +
^current-word <w2> +)
(<i2> ^semantics <s5> + ^proto-lt <p1> + ^super-type @D1001 +
^current-word <w2> + ^lt <p1> + ^structure-type D +)
(<p1> ^spelling the + ^number singular + ^specifier definite +
^copied yes + ^super-converts-to CP + ^converts-to DP +
^assigners @D1002 + ^assigners @D1003 + ^assigners @D1004 +
^assigners @D1005 + ^structure-type D +)
(<n5> ^structure-type ADJ + ^parent-receiver <i2> + ^lt @D1002 +
^current-word <w2> +)
(<w2> ^processed true +)
}
sp {chunk*apply*tested-referent*copy-proto-referent*no-multiple*onc*t1592-1
:chunk
(state <s1> ^top-state <s2> ^operator <o2>)
-{ (<s1> ^operator <o*1>)
(<o*1> ^name evaluate-operator)}
(<o2> ^constraint-count 2 ^name ground-referent ^constraints <i1>)
(<i1> ^lt <p4> ^constraint <n1> ^constraint <n2>)
(<p4> -^demonstrative true ^specifier { << definite universal >> <c6> })
(<n2> ^handle <c7> ^property <p2>)
(<n1> ^handle { < <c7> <c5> } ^property <p1>)
(<s2> ^world <w1>)
(<w1> ^objects <o3>)
(<p2> ^{ << name handle >> <c3> } <c4>)
(<p1> ^{ << name handle >> <c1> } <c2>)
(<o3> ^object <o1>)
(<o1> ^predicates <p3>)
(<p3> ^<c4> <c7> ^<c2> <c5>)
-->
(<i1> ^referent <o1> +)
}
sp {chunk*apply*finish-comprehend*t1583-1
:chunk
(state <s2> ^segment <s1> ^operator <o1>)
(<s1> -^retry <r*4> ^prior-word <w1> ^retrieved-stack <n1>)
-{ (<s1> ^retrieved-stack <r*4>)
(<r*4> ^item <i*1>)
(<i*1> ^lt <l*1>)
(<l*1> ^spelling block)}
(<w1> ^spelling block)
(<o1> ^name comprehend-word ^current-word <w2>)
(<w2> -^first-word true ^spelling then)
-{ (<s1> ^prior-word <p*1>)
(<p*1> ^spelling *)
(<w2> ^next <n*2>)
(<n*2> ^spelling |.|)}
(<n1> ^item <i1>)
(<i1> ^lt <p1>)
(<p1> ^structure-type D)
-->
(<s1> ^comprehension-structure <c1> +)
(<c1> ^processed true + ^type word + ^retrieved-lexical-item @T10026 +
^not-merged-receiver <i2> +)
(@T10026 ^structure-type THEN + ^spelling then +)
(<i2> ^semantics <s3> + ^lt @T10026 + ^current-word <w2> +
^structure-type THEN +)
(<w2> ^processed true +)
}
sp {chunk*apply*finish-comprehend*t1570-1
:chunk
(state <s2> ^segment <s1> ^operator <o1>)
(<s1> -^retry <r*4> ^prior-word <w1> ^retrieved-stack <n1>)
-{ (<s1> ^retrieved-stack <r*4>)
(<r*4> ^item <i*1>)
(<i*1> ^lt <l*1>)
(<l*1> ^spelling red)}
(<w1> ^spelling red)
(<o1> ^name comprehend-word ^current-word <w2>)
(<w2> -^first-word true ^spelling block)
-{ (<s1> ^prior-word <p*1>)
(<p*1> ^spelling *)
(<w2> ^next <n*2>)
(<n*2> ^spelling |.|)}
(<n1> ^item <i1>)
(<i1> ^lt <p1>)
(<p1> ^structure-type D)
-->
(<s1> ^comprehension-structure <c1> +)
(<c1> ^processed true + ^type word + ^retrieved-lexical-item @B13 +
^not-merged-receiver <i2> +)
(@B13 ^referent @P7001 + ^structure-type N + ^spelling block +
^number singular +)
(@P7001 ^property @P7000 + ^handle block +)
(<i2> ^semantics <s3> + ^lt @B13 + ^current-word <w2> +
^structure-type N + ^lt-referent <n2> +)
(<n2> ^handle block + ^property @P7000 +)
(<w2> ^processed true +)
}
sp {chunk*apply*finish-comprehend*t1557-1
:chunk
(state <s2> ^segment <s1> ^operator <o1>)
(<s1> -^retry <r*4> ^prior-word <w1> ^retrieved-stack <n1>)
(<w1> ^spelling the)
(<o1> ^name comprehend-word ^current-word <w2>)
(<w2> -^first-word true ^spelling red)
-{ (<s1> ^prior-word <p*1>)
(<p*1> ^spelling *)
(<w2> ^next <n*2>)
(<n*2> ^spelling |.|)}
(<n1> ^item <i1>)
(<i1> -^merged-with true ^lt <p1>)
(<p1> ^structure-type D ^spelling the)
-->
(<s1> ^comprehension-structure <c1> +)
(<c1> ^processed true + ^type word + ^retrieved-lexical-item @R10048 +
^not-merged-receiver <i2> +)
(@R10048 ^attachment immediate + ^referent @P1001 + ^structure-type ADJ +
^spelling red +)
(@P1001 ^property @P1000 + ^item-type predicate + ^handle red1 +)
(@P1000 ^item-type property + ^handle color + ^type visual +)
(<i2> ^semantics <s3> + ^lt @R10048 + ^current-word <w2> +
^structure-type ADJ + ^lt-referent <n2> +)
(<n2> ^handle red1 + ^item-type predicate + ^property @P1000 +)
(<w2> ^processed true +)
}
sp {chunk*apply*finish-comprehend*t1465-1
:chunk
(state <s4> ^segment <s3> ^operator <o1>)
(<s3> -^retry <r*4> ^prior-word <w1> ^retrieved-stack <n1>)
-{ (<s3> ^retrieved-stack <r*4>)
(<r*4> ^item <i*1>)
(<i*1> ^lt <l*1>)
(<l*1> ^spelling matched)}
(<w1> ^spelling matched)
(<o1> ^name comprehend-word ^current-word <w2>)
(<w2> -^first-word true ^spelling |.|)
-{ (<s3> ^prior-word <p*1>)
(<p*1> ^spelling *)
(<w2> ^next <n*2>)
(<n*2> ^spelling |.|)}
(<n1> ^item <i1>)
(<i1> ^lt <s1> ^lt <s2>)
(<s1> ^structure-type C)
(<s2> ^structure-type C)
-->
(<s3> ^comprehension-structure <c1> +)
(<c1> ^processed true + ^type word + ^retrieved-lexical-item @W23 +
^not-merged-receiver <i2> +)
(@W23 ^delay-retry true + ^structure-type T + ^spelling |.| +)
(<i2> ^semantics <s5> + ^lt @W23 + ^current-word <w2> +
^structure-type T +)
(<w2> ^processed true +)
}
sp {chunk*apply*finish-comprehend*t1451-1
:chunk
(state <s4> ^segment <s3> ^operator <o1>)
(<s3> -^retry <r*4> ^prior-word <w1> ^retrieved-stack <n1>)
-{ (<s3> ^retrieved-stack <r*4>)
(<r*4> ^item <i*1>)
(<i*1> ^lt <l*1>)
(<l*1> ^spelling is)}
(<w1> ^spelling is)
(<o1> ^name comprehend-word ^current-word <w2>)
(<w2> -^first-word true ^spelling matched)
-{ (<s3> ^prior-word <p*1>)
(<p*1> ^spelling *)
(<w2> ^next <n*2>)
(<n*2> ^spelling |.|)}
(<n1> ^item <i1>)
(<i1> ^lt <s1> ^lt <s2>)
(<s1> ^structure-type C)
(<s2> ^structure-type C)
-->
(<s3> ^comprehension-structure <c1> +)
(<c1> ^processed true + ^type word + ^retrieved-lexical-item @M3 +
^not-merged-receiver <i2> +)
(@M3 ^attachment immediate + ^referent @M4 + ^structure-type ADJ +
^spelling matched +)
(@M4 ^property @C38 + ^handle matched +)
(@C38 ^handle property + ^type visual +)
(<i2> ^semantics <s5> + ^lt @M3 + ^current-word <w2> +
^structure-type ADJ + ^lt-referent <n2> +)
(<n2> ^handle matched + ^property @C38 +)
(<w2> ^processed true +)
}
sp {chunk*apply*finish-comprehend*t1433-1
:chunk
(state <s2> ^segment <s1> ^operator <o1>)
(<s1> -^retry <r*4> ^prior-word <w1> ^retrieved-stack <n1>)
-{ (<s1> ^retrieved-stack <r*4>)
(<r*4> ^item <i*1>)
(<i*1> ^lt <l*1>)
(<l*1> ^spelling color)}
(<w1> ^spelling color)
(<o1> ^name comprehend-word ^current-word <w2>)
-{ (<s1> ^prior-word <p*1>)
(<p*1> ^spelling *)
(<w2> ^next <n*2>)
(<n*2> ^spelling |.|)}
(<w2> -^first-word true ^spelling is)
(<n1> ^item <i1>)
(<i1> ^lt <p1>)
(<p1> ^structure-type D)
-->
(<s1> ^comprehension-structure <c1> +)
(<c1> ^processed true + ^type word + ^retrieved-lexical-item @I8 +
^not-merged-receiver <i2> +)
(<i2> ^semantics <s3> + ^lt @I8 + ^current-word <w2> +
^structure-type IS-V +)
(<w2> ^processed true +)
}
sp {chunk*apply*finish-comprehend*t1413-1
:chunk
(state <s3> ^segment <s2> ^operator <o1>)
(<s2> -^retry <r*4> ^prior-word <w1> ^retrieved-stack <s1>)
-{ (<s2> ^retrieved-stack <r*4>)
(<r*4> ^item <i*1>)
(<i*1> ^lt <l*1>)
(<l*1> ^spelling then)}
(<w1> ^spelling then)
(<o1> ^name comprehend-word ^current-word <w2>)
-{ (<s2> ^prior-word <p*1>)
(<p*1> ^spelling *)
(<w2> ^next <n*2>)
(<n*2> ^spelling |.|)}
(<w2> -^first-word true ^spelling the)
(<s1> ^item <i2>)
(<i2> ^lt <i1> ^lt <i3>)
(<i1> ^structure-type C)
(<i3> ^structure-type C)
-->
(<s2> ^comprehension-structure <c1> +)
(<c1> ^processed true + ^type word + ^retrieved-lexical-item @T1004 +
^not-merged-receiver <i4> + ^not-merged-assigner <n1> +
^not-merged-assigner <n2> + ^not-merged-assigner <n3> +
^not-merged-assigner <n4> +)
(@T1004 ^super-type @D1001 + ^specifier definite + ^spelling the +
^number singular +)
(<n1> ^structure-type N + ^parent-receiver <i4> + ^lt @D1005 +
^current-word <w2> +)
(<n2> ^structure-type ADJ + ^parent-receiver <i4> + ^lt @D1002 +
^current-word <w2> +)
(<n3> ^structure-type PP + ^parent-receiver <i4> + ^lt @D1003 +
^current-word <w2> +)
(<i4> ^semantics <s4> + ^proto-lt <p1> + ^super-type @D1001 +
^current-word <w2> + ^lt <p1> + ^structure-type D +)
(<p1> ^spelling the + ^number singular + ^specifier definite +
^copied yes + ^structure-type D + ^assigners @D1005 +
^assigners @D1004 + ^assigners @D1003 + ^assigners @D1002 +
^converts-to DP + ^super-converts-to CP +)
(<n4> ^structure-type RCP + ^parent-receiver <i4> + ^lt @D1004 +
^current-word <w2> +)
(<w2> ^processed true +)
}
sp {chunk*apply*finish-comprehend*t1351-1
:chunk
(state <s2> ^segment <s1> ^operator <o1>)
(<s1> -^retry <r*4> ^prior-word <w1> ^retrieved-stack <n1>)
(<w1> ^spelling the)
(<o1> ^name comprehend-word ^current-word <w2>)
-{ (<s1> ^prior-word <p*1>)
(<p*1> ^spelling *)
(<w2> ^next <n*2>)
(<n*2> ^spelling |.|)}
(<w2> -^first-word true ^spelling location)
(<n1> ^item <i1>)
(<i1> -^merged-with true ^lt <p1>)
(<p1> ^structure-type D ^spelling the)
-->
(<s1> ^comprehension-structure <c1> +)
(<c1> ^processed true + ^type word + ^retrieved-lexical-item @L12 +
^not-merged-receiver <i2> +)
(<i2> ^semantics <s3> + ^lt @L12 + ^current-word <w2> +
^structure-type N + ^lt-referent <n2> +)
(<n2> ^property @P7000 + ^handle location +)
(<w2> ^processed true +)
}
sp {chunk*apply*finish-comprehend*t1339-1
:chunk
(state <s2> ^segment <s1> ^operator <o4>)
(<s1> -^retry <r*4> ^prior-word <w1> ^retrieved-stack <n1>)
(<w1> ^spelling on)
(<o4> ^name comprehend-word ^current-word <w2>)
-{ (<s1> ^prior-word <p*1>)
(<p*1> ^spelling *)
(<w2> ^next <n*2>)
(<n*2> ^spelling |.|)}
(<w2> -^first-word true ^spelling the)
(<n1> ^item <i1>)
(<i1> -^merged-with true ^lt <o1> ^lt <o3> ^lt <o2>)
(<o1> ^structure-type P)
(<o3> ^structure-type P)
(<o2> ^spelling on)
-->
(<s1> ^comprehension-structure <c1> +)
(<c1> ^processed true + ^type word + ^retrieved-lexical-item @T1004 +
^not-merged-receiver <i2> + ^not-merged-assigner <n2> +
^not-merged-assigner <n3> + ^not-merged-assigner <n4> +
^not-merged-assigner <n5> +)
(@T1004 ^super-type @D1001 + ^specifier definite + ^spelling the +
^number singular +)
(<n2> ^structure-type RCP + ^parent-receiver <i2> + ^lt @D1004 +
^current-word <w2> +)
(<n3> ^structure-type PP + ^parent-receiver <i2> + ^lt @D1003 +
^current-word <w2> +)
(<n4> ^structure-type ADJ + ^parent-receiver <i2> + ^lt @D1002 +
^current-word <w2> +)
(<i2> ^semantics <s3> + ^proto-lt <p1> + ^super-type @D1001 +
^current-word <w2> + ^lt <p1> + ^structure-type D +)
(<p1> ^spelling the + ^number singular + ^specifier definite +
^copied yes + ^structure-type D + ^assigners @D1005 +
^assigners @D1004 + ^assigners @D1003 + ^assigners @D1002 +
^converts-to DP + ^super-converts-to CP +)
(<n5> ^structure-type N + ^parent-receiver <i2> + ^lt @D1005 +
^current-word <w2> +)
(<w2> ^processed true +)
}
sp {chunk*apply*finish-comprehend*t1323-1
:chunk
(state <s4> ^segment <s3> ^operator <o1>)
(<s3> -^retry <r*4> ^prior-word <w1> ^retrieved-stack <n1>)
-{ (<s3> ^retrieved-stack <r*4>)
(<r*4> ^item <i*1>)
(<i*1> ^lt <l*1>)
(<l*1> ^spelling is)}
(<w1> ^spelling is)
(<o1> ^name comprehend-word ^current-word <w2>)
(<w2> -^first-word true ^spelling on)
-{ (<s3> ^prior-word <p*1>)
(<p*1> ^spelling *)
(<w2> ^next <n*2>)
(<n*2> ^spelling |.|)}
(<n1> ^item <i1>)
(<i1> ^lt <s1> ^lt <s2>)
(<s1> ^structure-type RC)
(<s2> ^structure-type RC)
-->
(<s3> ^comprehension-structure <c1> +)
(<c1> ^processed true + ^type word + ^retrieved-lexical-item @O42 +
^not-merged-receiver <i2> + ^not-merged-assigner <n2> +)
(<i2> ^semantics <s5> + ^lt @O42 + ^current-word <w2> +
^structure-type P +)
(@O42 ^relation-type binary + ^converts-to PP + ^assigners @O43 +
^structure-type P + ^spelling on + ^relation @R1000 +)
(@O43 ^relative-position after + ^syntactic-structure head +
^required true + ^structure-type DP +)
(<n2> ^structure-type DP + ^parent-receiver <i2> + ^lt @O43 +
^current-word <w2> +)
(<w2> ^processed true +)
}
sp {chunk*apply*finish-comprehend*t1306-1
:chunk
(state <s2> ^segment <s1> ^operator <o1>)
(<s1> -^retry <r*4> ^prior-word <w1> ^retrieved-stack <n1>)
-{ (<s1> ^retrieved-stack <r*4>)
(<r*4> ^item <i*1>)
(<i*1> ^lt <l*1>)
(<l*1> ^spelling block)}
(<w1> ^spelling block)
(<o1> ^name comprehend-word ^current-word <w2>)
-{ (<s1> ^prior-word <p*1>)
(<p*1> ^spelling *)
(<w2> ^next <n*2>)
(<n*2> ^spelling |.|)}
(<w2> ^spelling that)
(<n1> ^item <i1>)
(<i1> ^lt <p1>)
(<p1> ^structure-type D)
-->
(<s1> ^comprehension-structure <c1> +)
(<c1> ^processed true + ^type word + ^retrieved-lexical-item @S92 +
^not-merged-receiver <i2> + ^not-merged-assigner <n2> +
^not-merged-assigner <n3> + ^not-merged-assigner <n4> +
^not-merged-assigner <n5> + ^not-merged-assigner <n6> +
^not-merged-assigner <n7> +)
(<n2> ^structure-type PP + ^parent-receiver <i2> + ^lt @I119 +
^current-word <w2> +)
(<n3> ^structure-type ADJ + ^parent-receiver <i2> + ^lt @I117 +
^current-word <w2> +)
(<n4> ^structure-type ADV + ^parent-receiver <i2> + ^lt @I116 +
^current-word <w2> +)
(<n5> ^structure-type IS-V + ^parent-receiver <i2> + ^lt @I115 +
^current-word <w2> +)
(<n6> ^structure-type DP + ^parent-receiver <i2> + ^lt @I118 +
^current-word <w2> +)
(<i2> ^semantics <s3> + ^lt @S92 + ^current-word <w2> +
^structure-type RC +)
(@S92 ^converts-to RCP + ^assigners @I120 + ^assigners @I119 +
^assigners @I118 + ^assigners @I117 + ^assigners @I116 +
^assigners @I115 + ^prior-word-first false +
^construction that-is-ADJ/DP/PP/C-ADJP-CONJP/RP + ^prior-word D +
^current-word that + ^attachment immediate + ^structure-type RC +)
(@I116 ^referent-type literal + ^optional true +
^relative-position after + ^syntactic-structure adverb-modifier +
^semantic-structure modifier + ^structure-type ADV +)
(@I115 ^syntactic-structure predicate + ^required true +
^structure-type IS-V +)
(@I120 ^exclusive @I119 + ^exclusive @I118 + ^exclusive @I117 +
^optional true + ^relative-position after +
^syntactic-structure predicate + ^structure-type C-ADJ-P +)
(@I117 ^referent-type literal + ^exclusive @I120 + ^exclusive @I119 +
^exclusive @I118 + ^optional true + ^relative-position after +
^syntactic-structure predicate + ^structure-type ADJ +)
(@I118 ^referent-type literal + ^exclusive @I120 + ^exclusive @I119 +
^exclusive @I117 + ^optional true + ^relative-position after +
^syntactic-structure predicate + ^structure-type DP +)
(@I119 ^exclusive @I120 + ^exclusive @I118 + ^exclusive @I117 +
^optional true + ^relative-position after +
^syntactic-structure complement + ^attachment immediately-follow +
^structure-type PP +)
(<n7> ^structure-type C-ADJ-P + ^parent-receiver <i2> + ^lt @I120 +
^current-word <w2> +)
(<w2> ^processed true +)
}
sp {chunk*apply*finish-comprehend*t1275-1
:chunk
(state <s2> ^segment <s1> ^operator <o1>)
(<s1> -^retry <r*4> ^prior-word <w1> ^retrieved-stack <n3>)
-{ (<s1> ^retrieved-stack <r*4>)
(<r*4> ^item <i*1>)
(<i*1> ^lt <l*1>)
(<l*1> ^spelling to)}
(<w1> ^spelling to)
(<o1> ^name comprehend-word ^current-word <w2>)
-{ (<s1> ^prior-word <p*1>)
(<p*1> ^spelling *)
(<w2> ^next <n*2>)
(<n*2> ^spelling |.|)}
(<w2> -^first-word true ^spelling the)
(<n3> ^item <i1>)
(<i1> -^merged-with true ^lt <n1> ^lt <n5> ^lt <n4> ^lt <n2>)
(<n1> ^spelling equal-to)
(<n5> ^structure-type P)
(<n4> ^structure-type P)
(<n2> ^spelling equal-to)
-->
(<s1> ^comprehension-structure <c1> +)
(<c1> ^processed true + ^type word + ^retrieved-lexical-item @T1004 +
^not-merged-receiver <i2> + ^not-merged-assigner <n6> +
^not-merged-assigner <n7> + ^not-merged-assigner <n8> +
^not-merged-assigner <n9> +)
(@T1004 ^super-type @D1001 + ^specifier definite + ^spelling the +
^number singular +)
(<n6> ^structure-type ADJ + ^parent-receiver <i2> + ^lt @D1002 +
^current-word <w2> +)
(<n7> ^structure-type PP + ^parent-receiver <i2> + ^lt @D1003 +
^current-word <w2> +)
(<n8> ^structure-type RCP + ^parent-receiver <i2> + ^lt @D1004 +
^current-word <w2> +)
(<i2> ^semantics <s3> + ^proto-lt <p1> + ^super-type @D1001 +
^current-word <w2> + ^lt <p1> + ^structure-type D +)
(<p1> ^spelling the + ^number singular + ^specifier definite +
^copied yes + ^structure-type D + ^assigners @D1005 +
^assigners @D1004 + ^assigners @D1003 + ^assigners @D1002 +
^converts-to DP + ^super-converts-to CP +)
(<n9> ^structure-type N + ^parent-receiver <i2> + ^lt @D1005 +
^current-word <w2> +)
(<w2> ^processed true +)
}
sp {chunk*apply*finish-comprehend*t1257-1
:chunk
(state <s2> ^operator <o1> ^segment <s1>)
(<o1> ^name comprehend-word ^current-word <w1>)
(<w1> ^spelling to)
(<s1> ^not-merged-receiver <i1> ^retrieved-stack <n1>)
(<i1> -^merged-with true ^lt <a1> ^lt <a2>)
(<n1> ^item <i1>)
(<a1> ^spelling equal)
-->
(<s1> ^comprehension-structure <c1> +)
(<c1> ^processed true + ^type word + ^remove-receiver <i1> +
^retrieved-lexical-item @N10021 + ^not-merged-receiver <i2> +
^not-merged-assigner <n2> +)
(<i2> ^semantics <s3> + ^lt @N10021 + ^current-word <w1> +
^structure-type P +)
(@N10021 ^converts-to PP + ^assigners @N10022 + ^prior-word equal +
^current-word to + ^structure-type P + ^spelling equal-to +
^relation @R1019 +)
(@N10022 ^relative-position after + ^syntactic-structure head +
^required true + ^structure-type DP +)
(<n2> ^structure-type DP + ^parent-receiver <i2> + ^lt @N10022 +
^current-word <w1> +)
(<w1> ^processed true +)
}
sp {chunk*apply*finish-comprehend*t1248-1
:chunk
(state <s4> ^segment <s3> ^operator <o1>)
(<s3> -^retry <r*4> ^prior-word <w1> ^retrieved-stack <n1>)
-{ (<s3> ^retrieved-stack <r*4>)
(<r*4> ^item <i*1>)
(<i*1> ^lt <l*1>)
(<l*1> ^spelling is)}
(<w1> ^spelling is)
(<o1> ^name comprehend-word ^current-word <w2>)
(<w2> -^first-word true ^spelling equal)
-{ (<s3> ^prior-word <p*1>)
(<p*1> ^spelling *)
(<w2> ^next <n*2>)
(<n*2> ^spelling |.|)}
(<n1> ^item <i1>)
(<i1> ^lt <s1> ^lt <s2>)
(<s1> ^structure-type C)
(<s2> ^structure-type C)
-->
(<s3> ^comprehension-structure <c1> +)
(<c1> ^processed true + ^type word + ^retrieved-lexical-item @A10066 +
^not-merged-receiver <i2> +)
(@A10066 ^converts-to PP + ^structure-type P + ^spelling equal +
^relation @R1019 +)
(@R1019 ^handle equal +)
(<i2> ^semantics <s5> + ^lt @A10066 + ^current-word <w2> +
^structure-type P +)
(<w2> ^processed true +)
}
sp {chunk*apply*finish-comprehend*t1215-1
:chunk
(state <s2> ^segment <s1> ^operator <o1>)
(<s1> -^retry <r*4> ^prior-word <w1> ^retrieved-stack <n1>)
(<w1> ^spelling of)
(<o1> ^name comprehend-word ^current-word <w2>)
-{ (<s1> ^prior-word <p*1>)
(<p*1> ^spelling *)
(<w2> ^next <n*2>)
(<n*2> ^spelling |.|)}
(<w2> -^first-word true ^spelling a)
(<n1> ^item <i1>)
(<i1> -^merged-with true ^lt <p1>)
(<p1> ^structure-type P ^spelling of)
-->
(<s1> ^comprehension-structure <c1> +)
(<c1> ^processed true + ^type word + ^retrieved-lexical-item @A10049 +
^not-merged-receiver <i2> + ^not-merged-assigner <n2> +
^not-merged-assigner <n3> + ^not-merged-assigner <n4> +
^not-merged-assigner <n5> +)
(@A10049 ^super-type @D1001 + ^specifier indefinite + ^spelling a +
^number singular +)
(<n2> ^structure-type RCP + ^parent-receiver <i2> + ^lt @D1004 +
^current-word <w2> +)
(<n3> ^structure-type N + ^parent-receiver <i2> + ^lt @D1005 +
^current-word <w2> +)
(<n4> ^structure-type PP + ^parent-receiver <i2> + ^lt @D1003 +
^current-word <w2> +)
(<i2> ^semantics <s3> + ^proto-lt <p2> + ^super-type @D1001 +
^current-word <w2> + ^lt <p2> + ^structure-type D +)
(<p2> ^spelling a + ^number singular + ^specifier indefinite +
^copied yes + ^structure-type D + ^assigners @D1005 +
^assigners @D1004 + ^assigners @D1003 + ^assigners @D1002 +
^converts-to DP + ^super-converts-to CP +)
(<n5> ^structure-type ADJ + ^parent-receiver <i2> + ^lt @D1002 +
^current-word <w2> +)
(<w2> ^processed true +)
}
sp {chunk*apply*finish-comprehend*t1199-1
:chunk
(state <s2> ^segment <s1> ^operator <o1>)
(<s1> -^retry <r*4> ^prior-word <w1> ^retrieved-stack <n1>)
-{ (<s1> ^retrieved-stack <r*4>)
(<r*4> ^item <i*1>)
(<i*1> ^lt <l*1>)
(<l*1> ^spelling color)}
(<w1> ^spelling color)
(<o1> ^name comprehend-word ^current-word <w2>)
-{ (<s1> ^prior-word <p*1>)
(<p*1> ^spelling *)
(<w2> ^next <n*2>)
(<n*2> ^spelling |.|)}
(<w2> -^first-word true ^spelling of)
(<n1> ^item <i1>)
(<i1> ^lt <p1>)
(<p1> ^structure-type D)
-->
(<s1> ^comprehension-structure <c1> +)
(<c1> ^processed true + ^type word + ^retrieved-lexical-item @O40 +
^not-merged-receiver <i2> + ^not-merged-assigner <n2> +)
(@O40 ^super-type @T9000 + ^attachment immediate + ^spelling of +
^relation @O39 +)
(<i2> ^semantics <s3> + ^proto-lt <p2> + ^super-type @T9000 +
^current-word <w2> + ^lt <p2> + ^structure-type P +)
(@T9000 ^relation-type binary + ^converts-to PP + ^assigners @P90108 +
^structure-type P +)
(<p2> ^spelling of + ^relation @O39 + ^attachment immediate +
^copied yes + ^structure-type P + ^assigners @P90108 +
^converts-to PP + ^relation-type binary +)
(@O39 ^handle of1 +)
(@P90108 ^relative-position after + ^syntactic-structure head +
^required true + ^structure-type DP +)
(<n2> ^structure-type DP + ^parent-receiver <i2> + ^lt @P90108 +