-
Notifications
You must be signed in to change notification settings - Fork 4
/
predicted_result.txt
2717 lines (2717 loc) · 68.8 KB
/
predicted_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
8001 Message-Topic(e1,e2)
8002 Product-Producer(e2,e1)
8003 Component-Whole(e2,e1)
8004 Entity-Destination(e1,e2)
8005 Cause-Effect(e2,e1)
8006 Component-Whole(e1,e2)
8007 Product-Producer(e1,e2)
8008 Other
8009 Component-Whole(e1,e2)
8010 Message-Topic(e1,e2)
8011 Entity-Destination(e1,e2)
8012 Product-Producer(e1,e2)
8013 Entity-Destination(e1,e2)
8014 Product-Producer(e1,e2)
8015 Entity-Origin(e1,e2)
8016 Entity-Origin(e1,e2)
8017 Entity-Destination(e1,e2)
8018 Other
8019 Member-Collection(e2,e1)
8020 Message-Topic(e1,e2)
8021 Message-Topic(e1,e2)
8022 Content-Container(e1,e2)
8023 Product-Producer(e1,e2)
8024 Other
8025 Entity-Origin(e2,e1)
8026 Other
8027 Other
8028 Other
8029 Content-Container(e1,e2)
8030 Entity-Origin(e1,e2)
8031 Cause-Effect(e1,e2)
8032 Other
8033 Component-Whole(e1,e2)
8034 Cause-Effect(e2,e1)
8035 Component-Whole(e1,e2)
8036 Component-Whole(e2,e1)
8037 Member-Collection(e2,e1)
8038 Instrument-Agency(e2,e1)
8039 Member-Collection(e2,e1)
8040 Cause-Effect(e2,e1)
8041 Message-Topic(e2,e1)
8042 Component-Whole(e2,e1)
8043 Product-Producer(e2,e1)
8044 Entity-Destination(e1,e2)
8045 Entity-Origin(e1,e2)
8046 Content-Container(e1,e2)
8047 Content-Container(e1,e2)
8048 Entity-Destination(e1,e2)
8049 Message-Topic(e1,e2)
8050 Other
8051 Entity-Destination(e1,e2)
8052 Content-Container(e2,e1)
8053 Member-Collection(e2,e1)
8054 Member-Collection(e2,e1)
8055 Cause-Effect(e1,e2)
8056 Entity-Origin(e1,e2)
8057 Entity-Destination(e1,e2)
8058 Cause-Effect(e1,e2)
8059 Other
8060 Component-Whole(e2,e1)
8061 Entity-Origin(e2,e1)
8062 Product-Producer(e1,e2)
8063 Instrument-Agency(e2,e1)
8064 Member-Collection(e1,e2)
8065 Entity-Destination(e1,e2)
8066 Product-Producer(e2,e1)
8067 Component-Whole(e2,e1)
8068 Product-Producer(e1,e2)
8069 Message-Topic(e1,e2)
8070 Product-Producer(e1,e2)
8071 Other
8072 Entity-Origin(e1,e2)
8073 Cause-Effect(e2,e1)
8074 Entity-Origin(e1,e2)
8075 Other
8076 Product-Producer(e1,e2)
8077 Other
8078 Instrument-Agency(e2,e1)
8079 Entity-Destination(e1,e2)
8080 Product-Producer(e2,e1)
8081 Component-Whole(e1,e2)
8082 Component-Whole(e1,e2)
8083 Cause-Effect(e1,e2)
8084 Component-Whole(e1,e2)
8085 Message-Topic(e1,e2)
8086 Instrument-Agency(e2,e1)
8087 Message-Topic(e1,e2)
8088 Product-Producer(e2,e1)
8089 Component-Whole(e2,e1)
8090 Message-Topic(e1,e2)
8091 Other
8092 Product-Producer(e2,e1)
8093 Content-Container(e1,e2)
8094 Content-Container(e1,e2)
8095 Other
8096 Entity-Destination(e1,e2)
8097 Message-Topic(e1,e2)
8098 Component-Whole(e1,e2)
8099 Entity-Destination(e1,e2)
8100 Message-Topic(e1,e2)
8101 Message-Topic(e1,e2)
8102 Cause-Effect(e1,e2)
8103 Entity-Origin(e1,e2)
8104 Message-Topic(e1,e2)
8105 Cause-Effect(e2,e1)
8106 Message-Topic(e1,e2)
8107 Cause-Effect(e2,e1)
8108 Cause-Effect(e2,e1)
8109 Component-Whole(e2,e1)
8110 Component-Whole(e1,e2)
8111 Message-Topic(e1,e2)
8112 Content-Container(e1,e2)
8113 Other
8114 Product-Producer(e2,e1)
8115 Content-Container(e2,e1)
8116 Cause-Effect(e2,e1)
8117 Product-Producer(e1,e2)
8118 Other
8119 Member-Collection(e2,e1)
8120 Component-Whole(e2,e1)
8121 Entity-Destination(e1,e2)
8122 Product-Producer(e2,e1)
8123 Entity-Origin(e1,e2)
8124 Other
8125 Message-Topic(e1,e2)
8126 Entity-Origin(e2,e1)
8127 Product-Producer(e2,e1)
8128 Cause-Effect(e1,e2)
8129 Component-Whole(e2,e1)
8130 Content-Container(e1,e2)
8131 Product-Producer(e1,e2)
8132 Other
8133 Member-Collection(e2,e1)
8134 Product-Producer(e2,e1)
8135 Content-Container(e1,e2)
8136 Product-Producer(e2,e1)
8137 Member-Collection(e2,e1)
8138 Member-Collection(e2,e1)
8139 Entity-Origin(e1,e2)
8140 Member-Collection(e2,e1)
8141 Product-Producer(e2,e1)
8142 Entity-Origin(e1,e2)
8143 Other
8144 Entity-Origin(e1,e2)
8145 Entity-Origin(e1,e2)
8146 Instrument-Agency(e2,e1)
8147 Content-Container(e1,e2)
8148 Other
8149 Other
8150 Other
8151 Product-Producer(e1,e2)
8152 Other
8153 Member-Collection(e2,e1)
8154 Message-Topic(e1,e2)
8155 Message-Topic(e1,e2)
8156 Product-Producer(e2,e1)
8157 Component-Whole(e1,e2)
8158 Component-Whole(e1,e2)
8159 Cause-Effect(e1,e2)
8160 Message-Topic(e2,e1)
8161 Message-Topic(e1,e2)
8162 Entity-Origin(e1,e2)
8163 Entity-Origin(e1,e2)
8164 Instrument-Agency(e2,e1)
8165 Entity-Destination(e1,e2)
8166 Content-Container(e1,e2)
8167 Member-Collection(e2,e1)
8168 Member-Collection(e2,e1)
8169 Entity-Origin(e1,e2)
8170 Other
8171 Entity-Destination(e1,e2)
8172 Member-Collection(e1,e2)
8173 Entity-Origin(e1,e2)
8174 Component-Whole(e1,e2)
8175 Cause-Effect(e2,e1)
8176 Product-Producer(e1,e2)
8177 Entity-Destination(e1,e2)
8178 Entity-Origin(e1,e2)
8179 Instrument-Agency(e2,e1)
8180 Message-Topic(e1,e2)
8181 Entity-Destination(e1,e2)
8182 Content-Container(e1,e2)
8183 Other
8184 Product-Producer(e2,e1)
8185 Content-Container(e1,e2)
8186 Member-Collection(e2,e1)
8187 Entity-Destination(e1,e2)
8188 Other
8189 Message-Topic(e2,e1)
8190 Instrument-Agency(e2,e1)
8191 Cause-Effect(e1,e2)
8192 Other
8193 Message-Topic(e1,e2)
8194 Component-Whole(e2,e1)
8195 Message-Topic(e2,e1)
8196 Cause-Effect(e1,e2)
8197 Other
8198 Entity-Destination(e1,e2)
8199 Entity-Destination(e1,e2)
8200 Entity-Origin(e1,e2)
8201 Component-Whole(e1,e2)
8202 Content-Container(e1,e2)
8203 Entity-Destination(e1,e2)
8204 Product-Producer(e1,e2)
8205 Entity-Destination(e1,e2)
8206 Component-Whole(e1,e2)
8207 Instrument-Agency(e2,e1)
8208 Content-Container(e2,e1)
8209 Member-Collection(e2,e1)
8210 Member-Collection(e2,e1)
8211 Component-Whole(e1,e2)
8212 Entity-Origin(e1,e2)
8213 Content-Container(e1,e2)
8214 Instrument-Agency(e2,e1)
8215 Entity-Origin(e2,e1)
8216 Content-Container(e2,e1)
8217 Content-Container(e1,e2)
8218 Component-Whole(e1,e2)
8219 Cause-Effect(e2,e1)
8220 Message-Topic(e1,e2)
8221 Content-Container(e1,e2)
8222 Other
8223 Message-Topic(e1,e2)
8224 Message-Topic(e2,e1)
8225 Other
8226 Other
8227 Content-Container(e1,e2)
8228 Member-Collection(e2,e1)
8229 Product-Producer(e1,e2)
8230 Other
8231 Entity-Origin(e1,e2)
8232 Component-Whole(e1,e2)
8233 Message-Topic(e1,e2)
8234 Cause-Effect(e2,e1)
8235 Component-Whole(e2,e1)
8236 Cause-Effect(e2,e1)
8237 Other
8238 Content-Container(e1,e2)
8239 Cause-Effect(e1,e2)
8240 Cause-Effect(e2,e1)
8241 Product-Producer(e1,e2)
8242 Content-Container(e2,e1)
8243 Component-Whole(e1,e2)
8244 Component-Whole(e2,e1)
8245 Product-Producer(e1,e2)
8246 Product-Producer(e2,e1)
8247 Entity-Destination(e1,e2)
8248 Component-Whole(e1,e2)
8249 Entity-Origin(e1,e2)
8250 Entity-Destination(e1,e2)
8251 Component-Whole(e1,e2)
8252 Entity-Origin(e1,e2)
8253 Cause-Effect(e1,e2)
8254 Component-Whole(e1,e2)
8255 Other
8256 Other
8257 Cause-Effect(e2,e1)
8258 Product-Producer(e1,e2)
8259 Component-Whole(e2,e1)
8260 Product-Producer(e2,e1)
8261 Message-Topic(e1,e2)
8262 Entity-Destination(e1,e2)
8263 Entity-Origin(e2,e1)
8264 Other
8265 Cause-Effect(e2,e1)
8266 Entity-Destination(e1,e2)
8267 Message-Topic(e1,e2)
8268 Component-Whole(e2,e1)
8269 Other
8270 Entity-Destination(e1,e2)
8271 Component-Whole(e1,e2)
8272 Entity-Destination(e1,e2)
8273 Message-Topic(e1,e2)
8274 Member-Collection(e2,e1)
8275 Product-Producer(e1,e2)
8276 Entity-Destination(e1,e2)
8277 Message-Topic(e1,e2)
8278 Instrument-Agency(e2,e1)
8279 Product-Producer(e2,e1)
8280 Product-Producer(e1,e2)
8281 Member-Collection(e1,e2)
8282 Entity-Destination(e1,e2)
8283 Component-Whole(e2,e1)
8284 Other
8285 Message-Topic(e1,e2)
8286 Content-Container(e1,e2)
8287 Member-Collection(e2,e1)
8288 Cause-Effect(e2,e1)
8289 Entity-Destination(e1,e2)
8290 Message-Topic(e1,e2)
8291 Entity-Destination(e1,e2)
8292 Message-Topic(e1,e2)
8293 Component-Whole(e1,e2)
8294 Other
8295 Entity-Origin(e1,e2)
8296 Entity-Origin(e1,e2)
8297 Entity-Destination(e1,e2)
8298 Entity-Destination(e1,e2)
8299 Entity-Destination(e1,e2)
8300 Message-Topic(e1,e2)
8301 Other
8302 Other
8303 Component-Whole(e1,e2)
8304 Entity-Origin(e2,e1)
8305 Other
8306 Message-Topic(e1,e2)
8307 Product-Producer(e1,e2)
8308 Product-Producer(e1,e2)
8309 Message-Topic(e1,e2)
8310 Product-Producer(e2,e1)
8311 Member-Collection(e2,e1)
8312 Cause-Effect(e2,e1)
8313 Message-Topic(e1,e2)
8314 Product-Producer(e1,e2)
8315 Message-Topic(e2,e1)
8316 Member-Collection(e2,e1)
8317 Content-Container(e1,e2)
8318 Content-Container(e1,e2)
8319 Entity-Destination(e1,e2)
8320 Instrument-Agency(e2,e1)
8321 Entity-Destination(e1,e2)
8322 Member-Collection(e2,e1)
8323 Member-Collection(e1,e2)
8324 Entity-Destination(e1,e2)
8325 Other
8326 Other
8327 Message-Topic(e2,e1)
8328 Message-Topic(e1,e2)
8329 Other
8330 Product-Producer(e1,e2)
8331 Member-Collection(e2,e1)
8332 Member-Collection(e1,e2)
8333 Other
8334 Cause-Effect(e2,e1)
8335 Member-Collection(e2,e1)
8336 Entity-Origin(e2,e1)
8337 Entity-Destination(e1,e2)
8338 Other
8339 Entity-Origin(e1,e2)
8340 Content-Container(e1,e2)
8341 Message-Topic(e1,e2)
8342 Other
8343 Other
8344 Entity-Destination(e1,e2)
8345 Content-Container(e1,e2)
8346 Content-Container(e2,e1)
8347 Component-Whole(e2,e1)
8348 Member-Collection(e2,e1)
8349 Other
8350 Component-Whole(e2,e1)
8351 Content-Container(e1,e2)
8352 Member-Collection(e2,e1)
8353 Message-Topic(e1,e2)
8354 Message-Topic(e2,e1)
8355 Entity-Destination(e1,e2)
8356 Component-Whole(e2,e1)
8357 Cause-Effect(e1,e2)
8358 Instrument-Agency(e2,e1)
8359 Member-Collection(e2,e1)
8360 Component-Whole(e2,e1)
8361 Cause-Effect(e2,e1)
8362 Other
8363 Entity-Origin(e1,e2)
8364 Product-Producer(e2,e1)
8365 Other
8366 Component-Whole(e2,e1)
8367 Entity-Destination(e1,e2)
8368 Entity-Destination(e1,e2)
8369 Message-Topic(e2,e1)
8370 Other
8371 Component-Whole(e1,e2)
8372 Other
8373 Cause-Effect(e2,e1)
8374 Product-Producer(e2,e1)
8375 Entity-Destination(e1,e2)
8376 Entity-Destination(e1,e2)
8377 Cause-Effect(e1,e2)
8378 Product-Producer(e2,e1)
8379 Other
8380 Other
8381 Instrument-Agency(e1,e2)
8382 Cause-Effect(e2,e1)
8383 Entity-Destination(e1,e2)
8384 Other
8385 Entity-Origin(e1,e2)
8386 Component-Whole(e2,e1)
8387 Product-Producer(e2,e1)
8388 Component-Whole(e1,e2)
8389 Message-Topic(e1,e2)
8390 Entity-Origin(e1,e2)
8391 Other
8392 Component-Whole(e2,e1)
8393 Entity-Origin(e1,e2)
8394 Entity-Origin(e1,e2)
8395 Component-Whole(e1,e2)
8396 Component-Whole(e1,e2)
8397 Instrument-Agency(e2,e1)
8398 Entity-Destination(e1,e2)
8399 Instrument-Agency(e2,e1)
8400 Entity-Origin(e1,e2)
8401 Entity-Destination(e1,e2)
8402 Cause-Effect(e2,e1)
8403 Cause-Effect(e2,e1)
8404 Cause-Effect(e2,e1)
8405 Cause-Effect(e2,e1)
8406 Component-Whole(e1,e2)
8407 Entity-Destination(e1,e2)
8408 Entity-Origin(e2,e1)
8409 Cause-Effect(e2,e1)
8410 Entity-Destination(e1,e2)
8411 Entity-Origin(e1,e2)
8412 Content-Container(e2,e1)
8413 Message-Topic(e1,e2)
8414 Entity-Destination(e1,e2)
8415 Member-Collection(e2,e1)
8416 Component-Whole(e2,e1)
8417 Cause-Effect(e1,e2)
8418 Content-Container(e1,e2)
8419 Component-Whole(e2,e1)
8420 Message-Topic(e1,e2)
8421 Component-Whole(e1,e2)
8422 Member-Collection(e2,e1)
8423 Entity-Destination(e1,e2)
8424 Instrument-Agency(e2,e1)
8425 Other
8426 Product-Producer(e1,e2)
8427 Component-Whole(e1,e2)
8428 Component-Whole(e1,e2)
8429 Component-Whole(e1,e2)
8430 Entity-Origin(e1,e2)
8431 Component-Whole(e2,e1)
8432 Other
8433 Other
8434 Other
8435 Entity-Destination(e1,e2)
8436 Component-Whole(e2,e1)
8437 Other
8438 Component-Whole(e2,e1)
8439 Cause-Effect(e2,e1)
8440 Message-Topic(e1,e2)
8441 Product-Producer(e2,e1)
8442 Component-Whole(e1,e2)
8443 Component-Whole(e1,e2)
8444 Component-Whole(e2,e1)
8445 Content-Container(e1,e2)
8446 Product-Producer(e1,e2)
8447 Message-Topic(e2,e1)
8448 Instrument-Agency(e2,e1)
8449 Entity-Origin(e1,e2)
8450 Other
8451 Product-Producer(e1,e2)
8452 Member-Collection(e2,e1)
8453 Other
8454 Other
8455 Cause-Effect(e2,e1)
8456 Entity-Destination(e1,e2)
8457 Entity-Destination(e1,e2)
8458 Product-Producer(e1,e2)
8459 Instrument-Agency(e2,e1)
8460 Other
8461 Product-Producer(e2,e1)
8462 Instrument-Agency(e2,e1)
8463 Entity-Destination(e1,e2)
8464 Content-Container(e1,e2)
8465 Content-Container(e1,e2)
8466 Other
8467 Entity-Destination(e1,e2)
8468 Entity-Destination(e1,e2)
8469 Entity-Origin(e1,e2)
8470 Component-Whole(e1,e2)
8471 Cause-Effect(e1,e2)
8472 Component-Whole(e1,e2)
8473 Cause-Effect(e2,e1)
8474 Content-Container(e1,e2)
8475 Other
8476 Cause-Effect(e1,e2)
8477 Component-Whole(e2,e1)
8478 Entity-Origin(e1,e2)
8479 Message-Topic(e1,e2)
8480 Message-Topic(e1,e2)
8481 Entity-Destination(e1,e2)
8482 Other
8483 Product-Producer(e1,e2)
8484 Component-Whole(e1,e2)
8485 Product-Producer(e1,e2)
8486 Cause-Effect(e1,e2)
8487 Other
8488 Product-Producer(e1,e2)
8489 Cause-Effect(e2,e1)
8490 Content-Container(e1,e2)
8491 Other
8492 Other
8493 Cause-Effect(e2,e1)
8494 Cause-Effect(e2,e1)
8495 Message-Topic(e2,e1)
8496 Entity-Destination(e1,e2)
8497 Entity-Destination(e1,e2)
8498 Cause-Effect(e2,e1)
8499 Component-Whole(e1,e2)
8500 Cause-Effect(e1,e2)
8501 Message-Topic(e2,e1)
8502 Content-Container(e1,e2)
8503 Cause-Effect(e2,e1)
8504 Entity-Origin(e1,e2)
8505 Content-Container(e1,e2)
8506 Entity-Destination(e1,e2)
8507 Member-Collection(e2,e1)
8508 Other
8509 Cause-Effect(e2,e1)
8510 Other
8511 Instrument-Agency(e2,e1)
8512 Cause-Effect(e1,e2)
8513 Message-Topic(e1,e2)
8514 Message-Topic(e1,e2)
8515 Other
8516 Message-Topic(e1,e2)
8517 Entity-Origin(e1,e2)
8518 Entity-Origin(e2,e1)
8519 Product-Producer(e2,e1)
8520 Cause-Effect(e2,e1)
8521 Cause-Effect(e2,e1)
8522 Member-Collection(e1,e2)
8523 Cause-Effect(e2,e1)
8524 Instrument-Agency(e2,e1)
8525 Entity-Origin(e1,e2)
8526 Entity-Destination(e1,e2)
8527 Component-Whole(e1,e2)
8528 Content-Container(e1,e2)
8529 Other
8530 Product-Producer(e2,e1)
8531 Component-Whole(e2,e1)
8532 Message-Topic(e2,e1)
8533 Other
8534 Cause-Effect(e1,e2)
8535 Cause-Effect(e2,e1)
8536 Cause-Effect(e1,e2)
8537 Other
8538 Member-Collection(e2,e1)
8539 Product-Producer(e2,e1)
8540 Cause-Effect(e2,e1)
8541 Product-Producer(e1,e2)
8542 Cause-Effect(e1,e2)
8543 Entity-Origin(e1,e2)
8544 Message-Topic(e1,e2)
8545 Instrument-Agency(e2,e1)
8546 Entity-Origin(e1,e2)
8547 Instrument-Agency(e2,e1)
8548 Other
8549 Component-Whole(e1,e2)
8550 Other
8551 Other
8552 Entity-Destination(e1,e2)
8553 Other
8554 Content-Container(e2,e1)
8555 Component-Whole(e2,e1)
8556 Cause-Effect(e1,e2)
8557 Entity-Origin(e1,e2)
8558 Entity-Destination(e1,e2)
8559 Product-Producer(e2,e1)
8560 Entity-Origin(e1,e2)
8561 Product-Producer(e2,e1)
8562 Entity-Origin(e1,e2)
8563 Message-Topic(e1,e2)
8564 Message-Topic(e1,e2)
8565 Other
8566 Entity-Destination(e1,e2)
8567 Instrument-Agency(e2,e1)
8568 Entity-Destination(e1,e2)
8569 Other
8570 Member-Collection(e2,e1)
8571 Message-Topic(e1,e2)
8572 Member-Collection(e2,e1)
8573 Other
8574 Component-Whole(e1,e2)
8575 Entity-Destination(e1,e2)
8576 Content-Container(e1,e2)
8577 Member-Collection(e2,e1)
8578 Member-Collection(e2,e1)
8579 Message-Topic(e1,e2)
8580 Message-Topic(e1,e2)
8581 Other
8582 Other
8583 Member-Collection(e2,e1)
8584 Component-Whole(e2,e1)
8585 Message-Topic(e2,e1)
8586 Component-Whole(e2,e1)
8587 Entity-Origin(e1,e2)
8588 Message-Topic(e1,e2)
8589 Product-Producer(e2,e1)
8590 Member-Collection(e2,e1)
8591 Cause-Effect(e2,e1)
8592 Other
8593 Product-Producer(e1,e2)
8594 Entity-Origin(e1,e2)
8595 Product-Producer(e1,e2)
8596 Cause-Effect(e1,e2)
8597 Message-Topic(e1,e2)
8598 Entity-Destination(e1,e2)
8599 Component-Whole(e2,e1)
8600 Member-Collection(e2,e1)
8601 Product-Producer(e1,e2)
8602 Cause-Effect(e2,e1)
8603 Cause-Effect(e2,e1)
8604 Message-Topic(e1,e2)
8605 Component-Whole(e1,e2)
8606 Entity-Destination(e1,e2)
8607 Other
8608 Cause-Effect(e2,e1)
8609 Component-Whole(e2,e1)
8610 Entity-Origin(e1,e2)
8611 Message-Topic(e1,e2)
8612 Entity-Origin(e1,e2)
8613 Content-Container(e2,e1)
8614 Message-Topic(e1,e2)
8615 Entity-Destination(e1,e2)
8616 Component-Whole(e1,e2)
8617 Entity-Origin(e1,e2)
8618 Entity-Destination(e1,e2)
8619 Entity-Destination(e1,e2)
8620 Entity-Origin(e1,e2)
8621 Cause-Effect(e2,e1)
8622 Component-Whole(e1,e2)
8623 Cause-Effect(e1,e2)
8624 Component-Whole(e1,e2)
8625 Message-Topic(e1,e2)
8626 Entity-Origin(e1,e2)
8627 Member-Collection(e2,e1)
8628 Other
8629 Other
8630 Entity-Destination(e1,e2)
8631 Entity-Destination(e1,e2)
8632 Component-Whole(e2,e1)
8633 Cause-Effect(e1,e2)
8634 Other
8635 Entity-Origin(e1,e2)
8636 Content-Container(e2,e1)
8637 Instrument-Agency(e2,e1)
8638 Member-Collection(e2,e1)
8639 Other
8640 Entity-Origin(e1,e2)
8641 Cause-Effect(e2,e1)
8642 Product-Producer(e2,e1)
8643 Entity-Destination(e1,e2)
8644 Message-Topic(e1,e2)
8645 Entity-Destination(e1,e2)
8646 Component-Whole(e2,e1)
8647 Other
8648 Cause-Effect(e2,e1)
8649 Entity-Destination(e1,e2)
8650 Message-Topic(e1,e2)
8651 Message-Topic(e1,e2)
8652 Component-Whole(e1,e2)
8653 Entity-Origin(e1,e2)
8654 Other
8655 Cause-Effect(e1,e2)
8656 Member-Collection(e2,e1)
8657 Content-Container(e1,e2)
8658 Component-Whole(e2,e1)
8659 Cause-Effect(e1,e2)
8660 Message-Topic(e1,e2)
8661 Product-Producer(e1,e2)
8662 Member-Collection(e2,e1)
8663 Entity-Destination(e1,e2)
8664 Other
8665 Component-Whole(e2,e1)
8666 Component-Whole(e2,e1)
8667 Component-Whole(e1,e2)
8668 Member-Collection(e2,e1)
8669 Member-Collection(e2,e1)
8670 Entity-Destination(e1,e2)
8671 Content-Container(e1,e2)
8672 Message-Topic(e1,e2)
8673 Product-Producer(e2,e1)
8674 Message-Topic(e2,e1)
8675 Component-Whole(e1,e2)
8676 Message-Topic(e1,e2)
8677 Component-Whole(e2,e1)
8678 Entity-Origin(e1,e2)
8679 Component-Whole(e2,e1)
8680 Product-Producer(e1,e2)
8681 Cause-Effect(e2,e1)
8682 Message-Topic(e1,e2)
8683 Component-Whole(e1,e2)
8684 Component-Whole(e2,e1)
8685 Other
8686 Other
8687 Other
8688 Entity-Origin(e1,e2)
8689 Content-Container(e1,e2)
8690 Cause-Effect(e2,e1)
8691 Message-Topic(e1,e2)
8692 Component-Whole(e1,e2)
8693 Content-Container(e1,e2)
8694 Message-Topic(e1,e2)
8695 Content-Container(e1,e2)
8696 Other
8697 Instrument-Agency(e2,e1)
8698 Entity-Destination(e1,e2)
8699 Entity-Origin(e1,e2)
8700 Product-Producer(e2,e1)
8701 Member-Collection(e2,e1)
8702 Component-Whole(e1,e2)
8703 Component-Whole(e2,e1)
8704 Product-Producer(e2,e1)
8705 Cause-Effect(e1,e2)
8706 Other
8707 Content-Container(e2,e1)
8708 Cause-Effect(e2,e1)
8709 Entity-Origin(e1,e2)
8710 Entity-Destination(e1,e2)
8711 Message-Topic(e1,e2)
8712 Other
8713 Member-Collection(e2,e1)
8714 Member-Collection(e2,e1)
8715 Content-Container(e1,e2)
8716 Cause-Effect(e1,e2)
8717 Product-Producer(e2,e1)
8718 Entity-Destination(e1,e2)
8719 Content-Container(e1,e2)
8720 Cause-Effect(e2,e1)
8721 Instrument-Agency(e2,e1)
8722 Product-Producer(e2,e1)
8723 Message-Topic(e1,e2)
8724 Component-Whole(e2,e1)
8725 Message-Topic(e1,e2)
8726 Content-Container(e1,e2)
8727 Other
8728 Entity-Destination(e1,e2)
8729 Member-Collection(e2,e1)
8730 Other
8731 Cause-Effect(e2,e1)
8732 Other
8733 Entity-Origin(e1,e2)
8734 Entity-Origin(e1,e2)
8735 Component-Whole(e1,e2)
8736 Cause-Effect(e1,e2)
8737 Other
8738 Content-Container(e1,e2)
8739 Cause-Effect(e2,e1)
8740 Cause-Effect(e1,e2)
8741 Member-Collection(e2,e1)
8742 Other
8743 Entity-Destination(e1,e2)
8744 Product-Producer(e2,e1)
8745 Entity-Origin(e1,e2)
8746 Component-Whole(e1,e2)
8747 Entity-Origin(e1,e2)
8748 Cause-Effect(e1,e2)
8749 Entity-Origin(e1,e2)
8750 Entity-Destination(e1,e2)
8751 Member-Collection(e2,e1)
8752 Cause-Effect(e1,e2)
8753 Other
8754 Cause-Effect(e2,e1)
8755 Entity-Destination(e1,e2)
8756 Product-Producer(e1,e2)
8757 Entity-Destination(e1,e2)
8758 Entity-Destination(e1,e2)
8759 Component-Whole(e1,e2)
8760 Entity-Destination(e1,e2)
8761 Entity-Origin(e1,e2)
8762 Entity-Origin(e1,e2)
8763 Other
8764 Cause-Effect(e1,e2)
8765 Other
8766 Cause-Effect(e2,e1)
8767 Message-Topic(e2,e1)
8768 Product-Producer(e1,e2)
8769 Product-Producer(e1,e2)
8770 Content-Container(e1,e2)
8771 Content-Container(e1,e2)
8772 Entity-Destination(e1,e2)
8773 Other
8774 Other
8775 Cause-Effect(e2,e1)
8776 Instrument-Agency(e2,e1)
8777 Content-Container(e1,e2)
8778 Component-Whole(e2,e1)
8779 Component-Whole(e2,e1)
8780 Content-Container(e1,e2)
8781 Cause-Effect(e1,e2)
8782 Instrument-Agency(e2,e1)
8783 Product-Producer(e2,e1)
8784 Entity-Origin(e1,e2)
8785 Other
8786 Other
8787 Entity-Origin(e2,e1)
8788 Product-Producer(e2,e1)
8789 Message-Topic(e1,e2)
8790 Instrument-Agency(e2,e1)
8791 Entity-Destination(e1,e2)
8792 Entity-Destination(e1,e2)
8793 Component-Whole(e1,e2)
8794 Entity-Origin(e1,e2)
8795 Member-Collection(e2,e1)
8796 Member-Collection(e2,e1)
8797 Product-Producer(e2,e1)
8798 Member-Collection(e2,e1)
8799 Entity-Origin(e1,e2)
8800 Entity-Destination(e1,e2)
8801 Other
8802 Component-Whole(e2,e1)
8803 Member-Collection(e2,e1)
8804 Cause-Effect(e1,e2)
8805 Entity-Destination(e1,e2)
8806 Content-Container(e1,e2)
8807 Component-Whole(e1,e2)
8808 Component-Whole(e1,e2)
8809 Component-Whole(e1,e2)
8810 Entity-Origin(e2,e1)
8811 Instrument-Agency(e1,e2)
8812 Cause-Effect(e2,e1)
8813 Instrument-Agency(e2,e1)
8814 Member-Collection(e1,e2)
8815 Entity-Destination(e1,e2)
8816 Content-Container(e1,e2)
8817 Member-Collection(e2,e1)
8818 Instrument-Agency(e2,e1)
8819 Component-Whole(e1,e2)
8820 Component-Whole(e1,e2)
8821 Product-Producer(e2,e1)
8822 Member-Collection(e2,e1)
8823 Other
8824 Other
8825 Entity-Destination(e1,e2)
8826 Message-Topic(e1,e2)
8827 Entity-Destination(e1,e2)
8828 Other
8829 Cause-Effect(e1,e2)
8830 Message-Topic(e1,e2)
8831 Component-Whole(e1,e2)
8832 Entity-Origin(e1,e2)
8833 Content-Container(e1,e2)
8834 Other
8835 Instrument-Agency(e2,e1)
8836 Entity-Origin(e1,e2)
8837 Component-Whole(e2,e1)
8838 Instrument-Agency(e2,e1)
8839 Member-Collection(e2,e1)
8840 Product-Producer(e2,e1)
8841 Cause-Effect(e1,e2)
8842 Member-Collection(e2,e1)
8843 Content-Container(e1,e2)
8844 Message-Topic(e1,e2)
8845 Message-Topic(e1,e2)
8846 Entity-Destination(e1,e2)
8847 Content-Container(e2,e1)
8848 Message-Topic(e1,e2)
8849 Entity-Destination(e1,e2)
8850 Entity-Destination(e1,e2)
8851 Component-Whole(e1,e2)
8852 Component-Whole(e1,e2)
8853 Entity-Origin(e1,e2)
8854 Member-Collection(e2,e1)
8855 Cause-Effect(e2,e1)
8856 Content-Container(e1,e2)
8857 Cause-Effect(e2,e1)
8858 Cause-Effect(e1,e2)
8859 Cause-Effect(e2,e1)
8860 Other
8861 Message-Topic(e1,e2)
8862 Entity-Destination(e1,e2)
8863 Cause-Effect(e1,e2)
8864 Component-Whole(e2,e1)
8865 Component-Whole(e1,e2)
8866 Other
8867 Entity-Destination(e1,e2)
8868 Component-Whole(e2,e1)
8869 Product-Producer(e1,e2)
8870 Entity-Destination(e1,e2)
8871 Member-Collection(e2,e1)
8872 Instrument-Agency(e1,e2)
8873 Component-Whole(e1,e2)
8874 Other
8875 Cause-Effect(e1,e2)
8876 Member-Collection(e2,e1)
8877 Content-Container(e1,e2)
8878 Other
8879 Cause-Effect(e2,e1)
8880 Entity-Origin(e1,e2)
8881 Content-Container(e1,e2)
8882 Other
8883 Product-Producer(e2,e1)
8884 Component-Whole(e2,e1)
8885 Cause-Effect(e2,e1)
8886 Entity-Origin(e1,e2)
8887 Message-Topic(e2,e1)
8888 Other
8889 Cause-Effect(e1,e2)
8890 Other
8891 Content-Container(e1,e2)
8892 Product-Producer(e1,e2)
8893 Component-Whole(e2,e1)
8894 Entity-Origin(e1,e2)
8895 Product-Producer(e1,e2)
8896 Component-Whole(e2,e1)
8897 Member-Collection(e2,e1)
8898 Entity-Destination(e1,e2)
8899 Entity-Origin(e2,e1)
8900 Message-Topic(e1,e2)
8901 Message-Topic(e1,e2)
8902 Member-Collection(e2,e1)
8903 Entity-Destination(e1,e2)
8904 Instrument-Agency(e2,e1)
8905 Entity-Origin(e1,e2)
8906 Member-Collection(e2,e1)
8907 Product-Producer(e2,e1)
8908 Message-Topic(e1,e2)
8909 Message-Topic(e1,e2)
8910 Message-Topic(e2,e1)
8911 Member-Collection(e1,e2)
8912 Message-Topic(e1,e2)
8913 Content-Container(e1,e2)
8914 Other
8915 Component-Whole(e2,e1)
8916 Product-Producer(e2,e1)
8917 Other
8918 Entity-Destination(e1,e2)
8919 Message-Topic(e2,e1)
8920 Product-Producer(e1,e2)
8921 Entity-Origin(e2,e1)
8922 Product-Producer(e1,e2)
8923 Component-Whole(e1,e2)
8924 Other
8925 Member-Collection(e1,e2)
8926 Other
8927 Member-Collection(e1,e2)
8928 Other
8929 Component-Whole(e2,e1)
8930 Entity-Destination(e1,e2)
8931 Other
8932 Component-Whole(e1,e2)
8933 Content-Container(e1,e2)
8934 Member-Collection(e2,e1)
8935 Component-Whole(e1,e2)
8936 Component-Whole(e1,e2)
8937 Cause-Effect(e2,e1)
8938 Content-Container(e1,e2)
8939 Entity-Destination(e1,e2)
8940 Cause-Effect(e2,e1)
8941 Component-Whole(e2,e1)
8942 Entity-Destination(e1,e2)
8943 Entity-Origin(e1,e2)
8944 Member-Collection(e2,e1)
8945 Member-Collection(e2,e1)
8946 Entity-Destination(e1,e2)
8947 Instrument-Agency(e1,e2)
8948 Other
8949 Cause-Effect(e1,e2)
8950 Content-Container(e1,e2)
8951 Component-Whole(e2,e1)
8952 Member-Collection(e2,e1)
8953 Cause-Effect(e2,e1)
8954 Cause-Effect(e1,e2)
8955 Other
8956 Instrument-Agency(e2,e1)
8957 Member-Collection(e2,e1)
8958 Entity-Origin(e1,e2)
8959 Other
8960 Entity-Destination(e1,e2)
8961 Other
8962 Component-Whole(e1,e2)
8963 Content-Container(e1,e2)
8964 Other
8965 Member-Collection(e2,e1)
8966 Member-Collection(e2,e1)
8967 Entity-Destination(e1,e2)
8968 Content-Container(e1,e2)
8969 Product-Producer(e1,e2)
8970 Product-Producer(e2,e1)
8971 Other
8972 Cause-Effect(e2,e1)
8973 Entity-Destination(e1,e2)
8974 Cause-Effect(e2,e1)
8975 Message-Topic(e2,e1)
8976 Product-Producer(e1,e2)
8977 Member-Collection(e1,e2)
8978 Entity-Destination(e1,e2)
8979 Message-Topic(e1,e2)
8980 Message-Topic(e2,e1)
8981 Instrument-Agency(e2,e1)
8982 Other
8983 Entity-Destination(e1,e2)
8984 Member-Collection(e1,e2)
8985 Message-Topic(e1,e2)
8986 Member-Collection(e2,e1)
8987 Cause-Effect(e2,e1)
8988 Product-Producer(e1,e2)
8989 Cause-Effect(e2,e1)
8990 Entity-Destination(e1,e2)
8991 Other
8992 Cause-Effect(e2,e1)
8993 Message-Topic(e1,e2)
8994 Component-Whole(e1,e2)
8995 Other
8996 Content-Container(e2,e1)
8997 Instrument-Agency(e2,e1)
8998 Member-Collection(e2,e1)
8999 Message-Topic(e1,e2)
9000 Content-Container(e1,e2)