summaryrefslogtreecommitdiff
path: root/example_free917/grammar/grammar.3
blob: 0002b7526aecd2246d43f52ef9292046d342fccf (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
[X] ||| [X,1] was ||| [X,1] so ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.14653852199 MaxLexEgivenF=2.21309368267 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] was ||| [X,1] was ||| EgivenFCoherent=1.30102999566 SampleCountF=2.47856649559 CountEF=1.20411998266 MaxLexFgivenE=1.44123471373 MaxLexEgivenF=0.919415134017 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] was ||| [X,1] in ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.27564908671 MaxLexEgivenF=1.42080109061 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] was ||| [X,1] which ||| EgivenFCoherent=1.33099321904 SampleCountF=2.47856649559 CountEF=1.17609125906 MaxLexFgivenE=1.65008628458 MaxLexEgivenF=1.18218692016 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] was ||| [X,1] which is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.65008628458 MaxLexEgivenF=2.65252116967 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] was ||| [X,1] that ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.23733990076 MaxLexEgivenF=1.41553313152 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] was ||| [X,1] that which ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.65008628458 MaxLexEgivenF=2.59772005168 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] was ||| [X,1] what ||| EgivenFCoherent=1.30102999566 SampleCountF=2.47856649559 CountEF=1.20411998266 MaxLexFgivenE=0.49901891226 MaxLexEgivenF=0.654317048904 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] was ||| [X,1] how ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.86683226932 MaxLexEgivenF=2.06418779031 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] was ||| [X,1] making ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.03365421157 MaxLexEgivenF=2.64353439764 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] was ||| [X,1] whatever ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.956891623923 MaxLexEgivenF=2.18237819719 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] was ||| what [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.49901891226 MaxLexEgivenF=0.654317048904 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] was [X,2] ||| [X,1] so [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.14653852199 MaxLexEgivenF=2.21309368267 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] was [X,2] ||| [X,1] so [X,2] was ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.44123471373 MaxLexEgivenF=3.13250881669 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-3
[X] ||| [X,1] was [X,2] ||| [X,1] was [X,2] ||| EgivenFCoherent=1.33099321904 SampleCountF=2.47856649559 CountEF=1.17609125906 MaxLexFgivenE=1.44123471373 MaxLexEgivenF=0.919415134017 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] was [X,2] ||| [X,1] which [X,2] ||| EgivenFCoherent=1.47712125472 SampleCountF=2.47856649559 CountEF=1.04139268516 MaxLexFgivenE=1.65008628458 MaxLexEgivenF=1.18218692016 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] was [X,2] ||| [X,1] which is [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.65008628458 MaxLexEgivenF=2.65252116967 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] was [X,2] ||| [X,1] that [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.23733990076 MaxLexEgivenF=1.41553313152 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] was [X,2] ||| [X,1] that which [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.65008628458 MaxLexEgivenF=2.59772005168 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] was [X,2] ||| [X,1] what [X,2] ||| EgivenFCoherent=1.36317790241 SampleCountF=2.47856649559 CountEF=1.14612803568 MaxLexFgivenE=0.49901891226 MaxLexEgivenF=0.654317048904 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] was [X,2] ||| [X,1] how [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.86683226932 MaxLexEgivenF=2.06418779031 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] was [X,2] ||| [X,1] making [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.03365421157 MaxLexEgivenF=2.64353439764 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] was [X,2] ||| what [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.49901891226 MaxLexEgivenF=0.654317048904 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| was ||| so ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.14653852199 MaxLexEgivenF=2.21309368267 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| was ||| was ||| EgivenFCoherent=1.09691001301 SampleCountF=2.47856649559 CountEF=1.39794000867 MaxLexFgivenE=1.44123471373 MaxLexEgivenF=0.919415134017 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| was ||| and ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.67873730977 MaxLexEgivenF=0.94620073587 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| was ||| in ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.27564908671 MaxLexEgivenF=1.42080109061 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| was ||| from ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.27958425143 MaxLexEgivenF=2.19254552352 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| was ||| as ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.51972795331 MaxLexEgivenF=1.83511267626 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| was ||| which ||| EgivenFCoherent=1.30102999566 SampleCountF=2.47856649559 CountEF=1.20411998266 MaxLexFgivenE=1.65008628458 MaxLexEgivenF=1.18218692016 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| was ||| which is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.65008628458 MaxLexEgivenF=2.65252116967 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| was ||| which are ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.65008628458 MaxLexEgivenF=3.20042721407 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| was ||| that ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.23733990076 MaxLexEgivenF=1.41553313152 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| was ||| that which ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.65008628458 MaxLexEgivenF=2.59772005168 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| was ||| what ||| EgivenFCoherent=0.805023396784 SampleCountF=2.47856649559 CountEF=1.68124123738 MaxLexFgivenE=0.49901891226 MaxLexEgivenF=0.654317048904 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| was ||| where ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.67885718117 MaxLexEgivenF=2.70271348289 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| was ||| how ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.86683226932 MaxLexEgivenF=2.06418779031 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| was ||| is ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.58944548628 MaxLexEgivenF=1.47033424951 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| was ||| you ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.30578471613 MaxLexEgivenF=2.45741700747 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| was ||| are ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11058424497 MaxLexEgivenF=2.0182402939 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| was ||| some ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.95817595327 MaxLexEgivenF=3.00058495931 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| was ||| instance ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.78639646137 MaxLexEgivenF=4.06128279966 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| was ||| can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.26710187869 MaxLexEgivenF=2.75664867973 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| was ||| thing ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.23282177995 MaxLexEgivenF=2.22877388696 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| was ||| something ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.45496028711 MaxLexEgivenF=2.24173886412 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| was ||| making ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.03365421157 MaxLexEgivenF=2.64353439764 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| was ||| plus ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.61514517178 MaxLexEgivenF=3.60898512867 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| was ||| whatever ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.956891623923 MaxLexEgivenF=2.18237819719 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| was ||| they ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.61692211764 MaxLexEgivenF=2.48149920305 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| was ||| but ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.23144374644 MaxLexEgivenF=2.08203802125 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| was [X,1] ||| [X,1] are ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11058424497 MaxLexEgivenF=2.0182402939 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| was [X,1] ||| so [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.14653852199 MaxLexEgivenF=2.21309368267 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| was [X,1] ||| so [X,1] was ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.44123471373 MaxLexEgivenF=3.13250881669 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-2
[X] ||| was [X,1] ||| was [X,1] ||| EgivenFCoherent=1.27300127206 SampleCountF=2.47856649559 CountEF=1.23044892138 MaxLexFgivenE=1.44123471373 MaxLexEgivenF=0.919415134017 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| was [X,1] ||| as [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.51972795331 MaxLexEgivenF=1.83511267626 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| was [X,1] ||| as for [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.51972795331 MaxLexEgivenF=3.48264874023 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| was [X,1] ||| which [X,1] ||| EgivenFCoherent=1.43572856956 SampleCountF=2.47856649559 CountEF=1.07918124605 MaxLexFgivenE=1.65008628458 MaxLexEgivenF=1.18218692016 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| was [X,1] ||| which is [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.65008628458 MaxLexEgivenF=2.65252116967 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| was [X,1] ||| which are [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.65008628458 MaxLexEgivenF=3.20042721407 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| was [X,1] ||| that [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.23733990076 MaxLexEgivenF=1.41553313152 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| was [X,1] ||| that which [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.65008628458 MaxLexEgivenF=2.59772005168 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| was [X,1] ||| what [X,1] ||| EgivenFCoherent=0.920818753952 SampleCountF=2.47856649559 CountEF=1.56820172407 MaxLexFgivenE=0.49901891226 MaxLexEgivenF=0.654317048904 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| was [X,1] ||| what to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.49901891226 MaxLexEgivenF=1.66662231996 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| was [X,1] ||| how [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.86683226932 MaxLexEgivenF=2.06418779031 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| was [X,1] ||| thing [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.23282177995 MaxLexEgivenF=2.22877388696 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| was [X,1] ||| thing to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.23282177995 MaxLexEgivenF=3.24107915802 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| was [X,1] ||| making [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.03365421157 MaxLexEgivenF=2.64353439764 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] war ||| [X,1] ' ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.07656628194 MaxLexEgivenF=3.15940564503 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] war ||| [X,1] man ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.64035179038 MaxLexEgivenF=3.53007156884 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] war ||| [X,1] was ||| EgivenFCoherent=0.933053210369 SampleCountF=2.47856649559 CountEF=1.55630250077 MaxLexFgivenE=0.903205310588 MaxLexEgivenF=0.433751085681 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] war ||| [X,1] , ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.67714096866 MaxLexEgivenF=0.610623614007 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] war ||| [X,1] , is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.67714096866 MaxLexEgivenF=2.08095786351 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] war ||| [X,1] war ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.15403079975 MaxLexEgivenF=1.88192377114 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] war ||| [X,1] had ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.29601021242 MaxLexEgivenF=1.49734772403 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] war ||| [X,1] were ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.56670304801 MaxLexEgivenF=1.58387570124 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] war ||| [X,1] is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.20881953562 MaxLexEgivenF=1.47033424951 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] war ||| [X,1] invention ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.93751789202 MaxLexEgivenF=4.89179940485 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] war ||| [X,1] used ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.90065278239 MaxLexEgivenF=3.07888604821 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] war ||| [X,1] rather ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.37811825221 MaxLexEgivenF=3.30073479783 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] war ||| [X,1] 's ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.92852189913 MaxLexEgivenF=2.49385337874 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] war ||| [X,1] after ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.62140633095 MaxLexEgivenF=2.71861313644 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] war ||| was [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=0.903205310588 MaxLexEgivenF=0.433751085681 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| [X,1] war ||| had [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.29601021242 MaxLexEgivenF=1.49734772403 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| [X,1] war [X,2] ||| [X,1] [X,2] was ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=0.903205310588 MaxLexEgivenF=0.433751085681 IsSingletonF=0 IsSingletonFE=0 ||| 1-2
[X] ||| [X,1] war [X,2] ||| [X,1] was [X,2] ||| EgivenFCoherent=1.01472325682 SampleCountF=2.47856649559 CountEF=1.47712125472 MaxLexFgivenE=0.903205310588 MaxLexEgivenF=0.433751085681 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] war [X,2] ||| [X,1] was the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.903205310588 MaxLexEgivenF=1.77841492176 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] war [X,2] ||| [X,1] , [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.67714096866 MaxLexEgivenF=0.610623614007 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] war [X,2] ||| [X,1] , [X,2] was ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.903205310588 MaxLexEgivenF=1.04437469969 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] war [X,2] ||| [X,1] , is [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.67714096866 MaxLexEgivenF=2.08095786351 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] war [X,2] ||| [X,1] war [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.15403079975 MaxLexEgivenF=1.88192377114 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] war [X,2] ||| [X,1] had [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.29601021242 MaxLexEgivenF=1.49734772403 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] war [X,2] ||| [X,1] were up to [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.56670304801 MaxLexEgivenF=6.88592038583 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] war [X,2] ||| [X,1] is [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.20881953562 MaxLexEgivenF=1.47033424951 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] war [X,2] ||| [X,1] used [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.90065278239 MaxLexEgivenF=3.07888604821 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] war [X,2] ||| [X,1] after [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.62140633095 MaxLexEgivenF=2.71861313644 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] war [X,2] ||| was [X,2] [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.903205310588 MaxLexEgivenF=0.433751085681 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] war [X,2] ||| was [X,1] [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.903205310588 MaxLexEgivenF=0.433751085681 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| [X,1] war [X,2] ||| had [X,1] [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.29601021242 MaxLexEgivenF=1.49734772403 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| war ||| ' ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.07656628194 MaxLexEgivenF=3.15940564503 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war ||| man ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.64035179038 MaxLexEgivenF=3.53007156884 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war ||| . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.98544443832 MaxLexEgivenF=2.5152224478 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war ||| was ||| EgivenFCoherent=0.590630529547 SampleCountF=2.47856649559 CountEF=1.89209460269 MaxLexFgivenE=0.903205310588 MaxLexEgivenF=0.433751085681 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| war ||| , ||| EgivenFCoherent=1.47712125472 SampleCountF=2.47856649559 CountEF=1.04139268516 MaxLexFgivenE=2.67714096866 MaxLexEgivenF=0.610623614007 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| war ||| , is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.67714096866 MaxLexEgivenF=2.08095786351 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| war ||| ) ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.92348895934 MaxLexEgivenF=1.89163706954 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war ||| war ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=1.15403079975 MaxLexEgivenF=1.88192377114 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| war ||| as ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.87568931612 MaxLexEgivenF=2.16942275345 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war ||| it ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.25297808933 MaxLexEgivenF=1.61281728799 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war ||| that ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11101246623 MaxLexEgivenF=2.32129714838 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war ||| more ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.16719069982 MaxLexEgivenF=3.04670136484 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| war ||| had ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.29601021242 MaxLexEgivenF=1.49734772403 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| war ||| were ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.56670304801 MaxLexEgivenF=1.58387570124 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| war ||| not ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.64725813734 MaxLexEgivenF=2.30746818049 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war ||| my ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.7523081998 MaxLexEgivenF=3.04054105614 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war ||| photography , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.56540503752 MaxLexEgivenF=4.59933303187 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| war ||| is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.20881953562 MaxLexEgivenF=1.47033424951 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war ||| invention ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.93751789202 MaxLexEgivenF=4.89179940485 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war ||| could ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.97650976486 MaxLexEgivenF=2.47019547799 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war ||| environmental ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.28780172993 MaxLexEgivenF=4.41467815014 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war ||| used ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.90065278239 MaxLexEgivenF=3.07888604821 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war ||| his ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.64832869618 MaxLexEgivenF=2.61995779832 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war ||| right before ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.80242402117 MaxLexEgivenF=7.01644294363 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| war ||| made ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.37149249636 MaxLexEgivenF=2.65125015657 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war ||| rather ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.37811825221 MaxLexEgivenF=3.30073479783 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war ||| 's ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.92852189913 MaxLexEgivenF=2.49385337874 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war ||| after ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.62140633095 MaxLexEgivenF=2.71861313644 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war ||| having ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.93014438454 MaxLexEgivenF=3.6130458039 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war ||| even ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.99775592527 MaxLexEgivenF=3.30073479783 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war ||| former ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.42127479121 MaxLexEgivenF=3.49385939618 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war [X,1] ||| [X,1] was ||| EgivenFCoherent=1.52287874528 SampleCountF=2.47856649559 CountEF=1 MaxLexFgivenE=0.903205310588 MaxLexEgivenF=0.433751085681 IsSingletonF=0 IsSingletonFE=0 ||| 0-1
[X] ||| war [X,1] ||| was [X,1] ||| EgivenFCoherent=0.897337658103 SampleCountF=2.47856649559 CountEF=1.59106460703 MaxLexFgivenE=0.903205310588 MaxLexEgivenF=0.433751085681 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| war [X,1] ||| was the [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.903205310588 MaxLexEgivenF=1.77841492176 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war [X,1] ||| , [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.67714096866 MaxLexEgivenF=0.610623614007 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| war [X,1] ||| , is [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.67714096866 MaxLexEgivenF=2.08095786351 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| war [X,1] ||| war [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.15403079975 MaxLexEgivenF=1.88192377114 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| war [X,1] ||| had [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.29601021242 MaxLexEgivenF=1.49734772403 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war [X,1] ||| were up to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.56670304801 MaxLexEgivenF=6.88592038583 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war [X,1] ||| photography , [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.56540503752 MaxLexEgivenF=4.59933303187 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| war [X,1] ||| is [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.20881953562 MaxLexEgivenF=1.47033424951 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war [X,1] ||| used [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.90065278239 MaxLexEgivenF=3.07888604821 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war [X,1] ||| after [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.62140633095 MaxLexEgivenF=2.71861313644 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] der ||| [X,1] der ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.252252814394 MaxLexEgivenF=2.26126578378 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] der ||| [X,1] of ||| EgivenFCoherent=1.02996322338 SampleCountF=2.47856649559 CountEF=1.4623979979 MaxLexFgivenE=0.700729552934 MaxLexEgivenF=0.655308395223 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] der ||| [X,1] of the ||| EgivenFCoherent=1.36317790241 SampleCountF=2.47856649559 CountEF=1.14612803568 MaxLexFgivenE=0.659416044457 MaxLexEgivenF=0.943246233425 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2
[X] ||| [X,1] der ||| [X,1] of its ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.700729552934 MaxLexEgivenF=2.89774028726 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] der ||| [X,1] of your ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.700729552934 MaxLexEgivenF=3.11154433394 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] der ||| [X,1] the ||| EgivenFCoherent=0.778151250384 SampleCountF=2.47856649559 CountEF=1.7075701761 MaxLexFgivenE=0.659416044457 MaxLexEgivenF=0.287937838202 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] der ||| [X,1] to the ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.659416044457 MaxLexEgivenF=1.30024310926 IsSingletonF=0 IsSingletonFE=0 ||| 1-2
[X] ||| [X,1] der [X,2] ||| [X,1] der [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.252252814394 MaxLexEgivenF=2.26126578378 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] der [X,2] ||| [X,1] of [X,2] ||| EgivenFCoherent=1.1153934187 SampleCountF=2.47856649559 CountEF=1.38021124171 MaxLexFgivenE=0.700729552934 MaxLexEgivenF=0.655308395223 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] der [X,2] ||| [X,1] of the [X,2] ||| EgivenFCoherent=1.39794000867 SampleCountF=2.47856649559 CountEF=1.11394335231 MaxLexFgivenE=0.659416044457 MaxLexEgivenF=0.943246233425 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2
[X] ||| [X,1] der [X,2] ||| [X,1] of its [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.700729552934 MaxLexEgivenF=2.89774028726 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] der [X,2] ||| [X,1] of your [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.700729552934 MaxLexEgivenF=3.11154433394 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] der [X,2] ||| [X,1] the [X,2] ||| EgivenFCoherent=0.853871964322 SampleCountF=2.47856649559 CountEF=1.63346845558 MaxLexFgivenE=0.659416044457 MaxLexEgivenF=0.287937838202 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] der [X,2] ||| [X,1] to the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.659416044457 MaxLexEgivenF=1.30024310926 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| der ||| der ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.252252814394 MaxLexEgivenF=2.26126578378 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| der ||| der ( sumer ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.252252814394 MaxLexEgivenF=9.74601791977 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-2
[X] ||| der ||| of ||| EgivenFCoherent=0.886056647693 SampleCountF=2.47856649559 CountEF=1.60205999133 MaxLexFgivenE=0.700729552934 MaxLexEgivenF=0.655308395223 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| der ||| of the ||| EgivenFCoherent=1.19836765377 SampleCountF=2.47856649559 CountEF=1.30102999566 MaxLexFgivenE=0.659416044457 MaxLexEgivenF=0.943246233425 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| der ||| of its ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.700729552934 MaxLexEgivenF=2.89774028726 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| der ||| of your ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.700729552934 MaxLexEgivenF=3.11154433394 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| der ||| the ||| EgivenFCoherent=0.431798275933 SampleCountF=2.47856649559 CountEF=2.04921802267 MaxLexFgivenE=0.659416044457 MaxLexEgivenF=0.287937838202 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| der ||| to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.13417321227 MaxLexEgivenF=1.01230527106 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| der ||| a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.13417321227 MaxLexEgivenF=1.21684778324 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| der ||| this ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.13417321227 MaxLexEgivenF=2.15562285973 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| der ||| those ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.13417321227 MaxLexEgivenF=4.3949981849 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| der [X,1] ||| der [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.252252814394 MaxLexEgivenF=2.26126578378 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| der [X,1] ||| of [X,1] ||| EgivenFCoherent=1.04575749056 SampleCountF=2.47856649559 CountEF=1.44715803134 MaxLexFgivenE=0.700729552934 MaxLexEgivenF=0.655308395223 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| der [X,1] ||| of the [X,1] ||| EgivenFCoherent=1.36317790241 SampleCountF=2.47856649559 CountEF=1.14612803568 MaxLexFgivenE=0.659416044457 MaxLexEgivenF=0.943246233425 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| der [X,1] ||| of its [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.700729552934 MaxLexEgivenF=2.89774028726 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| der [X,1] ||| of your [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.700729552934 MaxLexEgivenF=3.11154433394 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| der [X,1] ||| the [X,1] ||| EgivenFCoherent=0.651046452019 SampleCountF=2.47856649559 CountEF=1.83250891271 MaxLexFgivenE=0.659416044457 MaxLexEgivenF=0.287937838202 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| der [X,1] ||| this [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.13417321227 MaxLexEgivenF=2.15562285973 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] preis ||| [X,1] prices ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.56209560731 MaxLexEgivenF=1.58088718794 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] preis ||| [X,1] price ||| EgivenFCoherent=0.677780705266 SampleCountF=2.47856649559 CountEF=1.80617997398 MaxLexFgivenE=0.765696470389 MaxLexEgivenF=0.531497812145 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] preis ||| [X,1] price tag ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.765696470389 MaxLexEgivenF=3.89294232023 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2
[X] ||| [X,1] preis ||| [X,1] prize ||| EgivenFCoherent=1.36317790241 SampleCountF=2.47856649559 CountEF=1.14612803568 MaxLexFgivenE=0.896964692257 MaxLexEgivenF=1.36289457448 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] preis ||| [X,1] award ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.59809827085 MaxLexEgivenF=1.79129089542 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] preis ||| [X,1] amount ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.36872717222 MaxLexEgivenF=2.55981216185 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] preis ||| [X,1] purchase price ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.765696470389 MaxLexEgivenF=3.71685106118 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] preis ||| [X,1] cost ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.68790002005 MaxLexEgivenF=1.81944947236 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] preis ||| [X,1] room rate ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.40892783996 MaxLexEgivenF=3.6175207809 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] preis ||| [X,1] rate ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.40892783996 MaxLexEgivenF=1.6017766634 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] preis ||| [X,1] costs ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.36640657154 MaxLexEgivenF=2.3837209028 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] preis ||| [X,1] prizes ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.35847873496 MaxLexEgivenF=3.29449771846 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] preis ||| [X,1] lift ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.80186086215 MaxLexEgivenF=3.36144450809 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] preis ||| price [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.765696470389 MaxLexEgivenF=0.531497812145 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] preis ||| price that [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.765696470389 MaxLexEgivenF=2.85279496052 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] preis [X,2] ||| [X,2] [X,1] price ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.765696470389 MaxLexEgivenF=0.531497812145 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] preis [X,2] ||| [X,2] [X,1] room rate ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.40892783996 MaxLexEgivenF=3.6175207809 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 1-3
[X] ||| [X,1] preis [X,2] ||| [X,1] prices [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.56209560731 MaxLexEgivenF=1.58088718794 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] preis [X,2] ||| [X,1] price [X,2] ||| EgivenFCoherent=0.805023396784 SampleCountF=2.47856649559 CountEF=1.68124123738 MaxLexFgivenE=0.765696470389 MaxLexEgivenF=0.531497812145 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] preis [X,2] ||| [X,1] price of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.765696470389 MaxLexEgivenF=1.22833307735 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] preis [X,2] ||| [X,1] price for the apartment [X,2] all ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.765696470389 MaxLexEgivenF=10.0247379787 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 1-3 1-4 1-6
[X] ||| [X,1] preis [X,2] ||| [X,1] price tag [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.765696470389 MaxLexEgivenF=3.89294232023 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2
[X] ||| [X,1] preis [X,2] ||| [X,1] prize [X,2] ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=0.896964692257 MaxLexEgivenF=1.36289457448 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] preis [X,2] ||| [X,1] prize , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.896964692257 MaxLexEgivenF=1.97351818849 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] preis [X,2] ||| [X,1] award [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.59809827085 MaxLexEgivenF=1.79129089542 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] preis [X,2] ||| [X,1] amount [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.36872717222 MaxLexEgivenF=2.55981216185 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] preis [X,2] ||| [X,1] purchase price [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.765696470389 MaxLexEgivenF=3.71685106118 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] preis [X,2] ||| [X,1] cost [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.68790002005 MaxLexEgivenF=1.81944947236 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] preis [X,2] ||| [X,1] rate [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.40892783996 MaxLexEgivenF=1.6017766634 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] preis [X,2] ||| [X,1] costs [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.36640657154 MaxLexEgivenF=2.3837209028 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] preis [X,2] ||| price [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.765696470389 MaxLexEgivenF=0.531497812145 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] preis [X,2] ||| price that [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.765696470389 MaxLexEgivenF=2.85279496052 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| preis ||| hotel ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.34122342661 MaxLexEgivenF=2.26453449508 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| preis ||| / ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.47099816966 MaxLexEgivenF=2.50612730289 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| preis ||| an ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=4.38599730013 MaxLexEgivenF=2.75040633255 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| preis ||| at ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.32579758531 MaxLexEgivenF=2.02232446281 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| preis ||| my ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.60356654852 MaxLexEgivenF=3.13959575847 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| preis ||| right ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.30666465918 MaxLexEgivenF=2.90914683709 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| preis ||| prices ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=1.56209560731 MaxLexEgivenF=1.58088718794 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| preis ||| price ||| EgivenFCoherent=0.613798394599 SampleCountF=2.47856649559 CountEF=1.86923171973 MaxLexFgivenE=0.765696470389 MaxLexEgivenF=0.531497812145 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| preis ||| price for ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.765696470389 MaxLexEgivenF=2.17903387611 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| preis ||| price tag ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.765696470389 MaxLexEgivenF=3.89294232023 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| preis ||| prize ||| EgivenFCoherent=1.30102999566 SampleCountF=2.47856649559 CountEF=1.20411998266 MaxLexFgivenE=0.896964692257 MaxLexEgivenF=1.36289457448 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| preis ||| award ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.59809827085 MaxLexEgivenF=1.79129089542 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| preis ||| amount ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.36872717222 MaxLexEgivenF=2.55981216185 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| preis ||| purchase price ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.765696470389 MaxLexEgivenF=3.71685106118 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| preis ||| cost ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.68790002005 MaxLexEgivenF=1.81944947236 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| preis ||| room ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.76919958239 MaxLexEgivenF=2.0157441175 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| preis ||| room rate ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.40892783996 MaxLexEgivenF=3.6175207809 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| preis ||| rate ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=1.40892783996 MaxLexEgivenF=1.6017766634 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| preis ||| costs ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.36640657154 MaxLexEgivenF=2.3837209028 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| preis ||| prizes ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.35847873496 MaxLexEgivenF=3.29449771846 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| preis ||| suatu ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.698970004336 MaxLexEgivenF=4.13959575847 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| preis ||| lift ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.80186086215 MaxLexEgivenF=3.36144450809 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| preis ||| night ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.1017225313 MaxLexEgivenF=2.99346772279 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| preis ||| per ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.08697767045 MaxLexEgivenF=2.86084215752 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| preis [X,1] ||| an [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.38599730013 MaxLexEgivenF=2.75040633255 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| preis [X,1] ||| prices [X,1] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.56209560731 MaxLexEgivenF=1.58088718794 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| preis [X,1] ||| price [X,1] ||| EgivenFCoherent=0.778151250384 SampleCountF=2.47856649559 CountEF=1.7075701761 MaxLexFgivenE=0.765696470389 MaxLexEgivenF=0.531497812145 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| preis [X,1] ||| price of [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.765696470389 MaxLexEgivenF=1.22833307735 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| preis [X,1] ||| price for the apartment [X,1] all ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.765696470389 MaxLexEgivenF=10.0247379787 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2 0-3 0-5
[X] ||| preis [X,1] ||| price as [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.765696470389 MaxLexEgivenF=2.7009205656 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| preis [X,1] ||| price tag [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.765696470389 MaxLexEgivenF=3.89294232023 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| preis [X,1] ||| prize [X,1] ||| EgivenFCoherent=1.47712125472 SampleCountF=2.47856649559 CountEF=1.04139268516 MaxLexFgivenE=0.896964692257 MaxLexEgivenF=1.36289457448 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| preis [X,1] ||| prize , [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.896964692257 MaxLexEgivenF=1.97351818849 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| preis [X,1] ||| award [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.59809827085 MaxLexEgivenF=1.79129089542 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| preis [X,1] ||| amount [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.36872717222 MaxLexEgivenF=2.55981216185 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| preis [X,1] ||| purchase price [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.765696470389 MaxLexEgivenF=3.71685106118 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| preis [X,1] ||| cost [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.68790002005 MaxLexEgivenF=1.81944947236 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| preis [X,1] ||| rate [X,1] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.40892783996 MaxLexEgivenF=1.6017766634 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| preis [X,1] ||| costs [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.36640657154 MaxLexEgivenF=2.3837209028 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] ersten ||| [X,1] early ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.85995022788 MaxLexEgivenF=2.13934190265 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ersten ||| [X,1] leading ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.94097597482 MaxLexEgivenF=3.25584747172 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ersten ||| [X,1] first ||| EgivenFCoherent=0.380211241712 SampleCountF=2.47856649559 CountEF=2.10037054512 MaxLexFgivenE=0.68505892925 MaxLexEgivenF=0.26247907854 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ersten ||| [X,1] first one ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.68505892925 MaxLexEgivenF=2.52846618161 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] ersten ||| [X,1] upcoming ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.68237074252 MaxLexEgivenF=3.7677308327 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ersten ||| [X,1] 1st ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.51040104916 MaxLexEgivenF=2.19660455562 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ersten ||| [X,1] initial ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.05262221753 MaxLexEgivenF=1.89996880805 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ersten ||| [X,1] opening ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.29582075196 MaxLexEgivenF=2.95481747606 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ersten ||| [X,1] second ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.22046595123 MaxLexEgivenF=2.39206721874 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ersten [X,2] ||| [X,1] [X,2] first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.68505892925 MaxLexEgivenF=0.26247907854 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] ersten [X,2] ||| [X,1] [X,2] initial ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.05262221753 MaxLexEgivenF=1.89996880805 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] ersten [X,2] ||| [X,1] early [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.85995022788 MaxLexEgivenF=2.13934190265 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ersten [X,2] ||| [X,1] leading [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.94097597482 MaxLexEgivenF=3.25584747172 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ersten [X,2] ||| [X,1] first [X,2] ||| EgivenFCoherent=0.464284030014 SampleCountF=2.47856649559 CountEF=2.0170333393 MaxLexFgivenE=0.68505892925 MaxLexEgivenF=0.26247907854 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ersten [X,2] ||| [X,1] first and [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.68505892925 MaxLexEgivenF=1.20867981441 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ersten [X,2] ||| [X,1] first one [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.68505892925 MaxLexEgivenF=2.52846618161 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] ersten [X,2] ||| [X,1] 1st [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.51040104916 MaxLexEgivenF=2.19660455562 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ersten [X,2] ||| [X,1] initial [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.05262221753 MaxLexEgivenF=1.89996880805 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| ersten ||| one ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.98623201227 MaxLexEgivenF=2.26598710307 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ersten ||| early ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.85995022788 MaxLexEgivenF=2.13934190265 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ersten ||| main ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.99400740228 MaxLexEgivenF=2.93842705987 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ersten ||| leading ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.94097597482 MaxLexEgivenF=3.25584747172 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ersten ||| first ||| EgivenFCoherent=0.301029995664 SampleCountF=2.47856649559 CountEF=2.17897694729 MaxLexFgivenE=0.68505892925 MaxLexEgivenF=0.26247907854 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ersten ||| first one ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.68505892925 MaxLexEgivenF=2.52846618161 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| ersten ||| upcoming ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.68237074252 MaxLexEgivenF=3.7677308327 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ersten ||| 1st ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.51040104916 MaxLexEgivenF=2.19660455562 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ersten ||| initial ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=1.05262221753 MaxLexEgivenF=1.89996880805 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ersten ||| last ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.01355160032 MaxLexEgivenF=3.00806298801 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ersten ||| opening ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.29582075196 MaxLexEgivenF=2.95481747606 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ersten ||| very first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.68505892925 MaxLexEgivenF=2.42008229817 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| ersten ||| neighborhood ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.85278486868 MaxLexEgivenF=4.06876082837 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ersten ||| second ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.22046595123 MaxLexEgivenF=2.39206721874 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ersten ||| same ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.30028485196 MaxLexEgivenF=3.22366278835 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ersten [X,1] ||| [X,1] first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.68505892925 MaxLexEgivenF=0.26247907854 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| ersten [X,1] ||| [X,1] initial ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.05262221753 MaxLexEgivenF=1.89996880805 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| ersten [X,1] ||| one [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.98623201227 MaxLexEgivenF=2.26598710307 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ersten [X,1] ||| early [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.85995022788 MaxLexEgivenF=2.13934190265 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ersten [X,1] ||| leading [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.94097597482 MaxLexEgivenF=3.25584747172 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ersten [X,1] ||| first [X,1] ||| EgivenFCoherent=0.405239247414 SampleCountF=2.47856649559 CountEF=2.07554696139 MaxLexFgivenE=0.68505892925 MaxLexEgivenF=0.26247907854 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ersten [X,1] ||| first and [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.68505892925 MaxLexEgivenF=1.20867981441 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ersten [X,1] ||| first one [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.68505892925 MaxLexEgivenF=2.52846618161 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| ersten [X,1] ||| 1st [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.51040104916 MaxLexEgivenF=2.19660455562 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ersten [X,1] ||| initial [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.05262221753 MaxLexEgivenF=1.89996880805 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ersten [X,1] ||| very first [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.68505892925 MaxLexEgivenF=2.42008229817 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| [X,1] x-men ||| [X,1] x-men ||| EgivenFCoherent=0.860338006571 SampleCountF=1.47712125472 CountEF=0.698970004336 MaxLexFgivenE=0.451185520625 MaxLexEgivenF=0.444452137966 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] x-men [X,2] ||| [X,1] x-men [X,2] ||| EgivenFCoherent=1.4623979979 SampleCountF=1.47712125472 CountEF=0.301029995664 MaxLexFgivenE=0.451185520625 MaxLexEgivenF=0.444452137966 IsSingletonF=1 IsSingletonFE=1 ||| 1-1
[X] ||| x-men ||| x-men ||| EgivenFCoherent=0.231949076521 SampleCountF=1.47712125472 CountEF=1.2552725051 MaxLexFgivenE=0.451185520625 MaxLexEgivenF=0.444452137966 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| x-men ||| guy ||| EgivenFCoherent=1.4623979979 SampleCountF=1.47712125472 CountEF=0.301029995664 MaxLexFgivenE=3.16465021593 MaxLexEgivenF=1.80617997398 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| x-men [X,1] ||| x-men [X,1] ||| EgivenFCoherent=0.383216751851 SampleCountF=1.47712125472 CountEF=1.11394335231 MaxLexFgivenE=0.451185520625 MaxLexEgivenF=0.444452137966 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| x-men [X,1] ||| guy [X,1] ||| EgivenFCoherent=1.4623979979 SampleCountF=1.47712125472 CountEF=0.301029995664 MaxLexFgivenE=3.16465021593 MaxLexEgivenF=1.80617997398 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] ausgabe ||| [X,1] output ||| EgivenFCoherent=1.04575749056 SampleCountF=2.47856649559 CountEF=1.44715803134 MaxLexFgivenE=0.953860123782 MaxLexEgivenF=0.827931996414 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ausgabe ||| [X,1] release ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.65005176994 MaxLexEgivenF=2.25246977358 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ausgabe ||| [X,1] issue ||| EgivenFCoherent=0.744727494897 SampleCountF=2.47856649559 CountEF=1.74036268949 MaxLexFgivenE=0.874014479115 MaxLexEgivenF=0.673890878102 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ausgabe ||| [X,1] edition ||| EgivenFCoherent=0.875061263392 SampleCountF=2.47856649559 CountEF=1.61278385672 MaxLexFgivenE=0.958745652111 MaxLexEgivenF=0.779174926714 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ausgabe ||| [X,1] copy ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.48369988141 MaxLexEgivenF=2.25246977358 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ausgabe ||| [X,1] returns ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.45606222445 MaxLexEgivenF=3.53122337453 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ausgabe ||| [X,1] version ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=2.7758459366 MaxLexEgivenF=1.99974445749 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ausgabe ||| [X,1] magazine ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.47031246717 MaxLexEgivenF=2.35513211548 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ausgabe ||| [X,1] issuance ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1 MaxLexEgivenF=2.25246977358 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ausgabe ||| [X,1] issuing ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.33550150674 MaxLexEgivenF=2.16949553852 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ausgabe [X,2] ||| [X,2] [X,1] output ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.953860123782 MaxLexEgivenF=0.827931996414 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] ausgabe [X,2] ||| [X,2] [X,1] issue ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=0.874014479115 MaxLexEgivenF=0.673890878102 IsSingletonF=0 IsSingletonFE=0 ||| 1-2
[X] ||| [X,1] ausgabe [X,2] ||| [X,2] [X,1] edition ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.958745652111 MaxLexEgivenF=0.779174926714 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] ausgabe [X,2] ||| [X,2] [X,1] magazine ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.47031246717 MaxLexEgivenF=2.35513211548 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] ausgabe [X,2] ||| [X,1] [X,2] issue ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.874014479115 MaxLexEgivenF=0.673890878102 IsSingletonF=0 IsSingletonFE=0 ||| 1-2
[X] ||| [X,1] ausgabe [X,2] ||| [X,1] output [X,2] ||| EgivenFCoherent=1.22184874962 SampleCountF=2.47856649559 CountEF=1.27875360095 MaxLexFgivenE=0.953860123782 MaxLexEgivenF=0.827931996414 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ausgabe [X,2] ||| [X,1] release [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.65005176994 MaxLexEgivenF=2.25246977358 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ausgabe [X,2] ||| [X,1] issue [X,2] ||| EgivenFCoherent=0.84365279914 SampleCountF=2.47856649559 CountEF=1.64345267649 MaxLexFgivenE=0.874014479115 MaxLexEgivenF=0.673890878102 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ausgabe [X,2] ||| [X,1] issue of [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.874014479115 MaxLexEgivenF=1.37072614331 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ausgabe [X,2] ||| [X,1] edition [X,2] ||| EgivenFCoherent=1 SampleCountF=2.47856649559 CountEF=1.49136169383 MaxLexFgivenE=0.958745652111 MaxLexEgivenF=0.779174926714 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ausgabe [X,2] ||| [X,1] edition of [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.958745652111 MaxLexEgivenF=1.47601019192 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ausgabe [X,2] ||| [X,1] copy [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.48369988141 MaxLexEgivenF=2.25246977358 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ausgabe [X,2] ||| [X,1] returns [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.45606222445 MaxLexEgivenF=3.53122337453 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ausgabe [X,2] ||| [X,1] version [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.7758459366 MaxLexEgivenF=1.99974445749 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ausgabe [X,2] ||| [X,1] version of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.7758459366 MaxLexEgivenF=2.6965797227 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ausgabe [X,2] ||| [X,1] issuance [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1 MaxLexEgivenF=2.25246977358 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ausgabe [X,2] ||| [X,1] issuing [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.33550150674 MaxLexEgivenF=2.16949553852 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| ausgabe ||| of ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=4.51177525115 MaxLexEgivenF=0.69683526521 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ausgabe ||| set ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.48422863769 MaxLexEgivenF=2.53122337453 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ausgabe ||| output ||| EgivenFCoherent=0.945642337677 SampleCountF=2.47856649559 CountEF=1.54406804435 MaxLexFgivenE=0.953860123782 MaxLexEgivenF=0.827931996414 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ausgabe ||| release ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.65005176994 MaxLexEgivenF=2.25246977358 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ausgabe ||| issue ||| EgivenFCoherent=0.664207898077 SampleCountF=2.47856649559 CountEF=1.81954393554 MaxLexFgivenE=0.874014479115 MaxLexEgivenF=0.673890878102 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ausgabe ||| title ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.24830029535 MaxLexEgivenF=3.05410211981 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ausgabe ||| edition ||| EgivenFCoherent=0.778151250384 SampleCountF=2.47856649559 CountEF=1.7075701761 MaxLexFgivenE=0.958745652111 MaxLexEgivenF=0.779174926714 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ausgabe ||| edition , " expenditure " ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.958745652111 MaxLexEgivenF=9.2215408259 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-2 0-3 0-4
[X] ||| ausgabe ||| future ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.12535112051 MaxLexEgivenF=3.53122337453 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ausgabe ||| copy ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.48369988141 MaxLexEgivenF=2.25246977358 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ausgabe ||| returns ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.45606222445 MaxLexEgivenF=3.53122337453 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ausgabe ||| current ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.37168344633 MaxLexEgivenF=2.75307212415 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ausgabe ||| version ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=2.7758459366 MaxLexEgivenF=1.99974445749 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ausgabe ||| magazine ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.47031246717 MaxLexEgivenF=2.35513211548 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ausgabe ||| next ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73305675895 MaxLexEgivenF=2.92916338321 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ausgabe ||| issuance ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1 MaxLexEgivenF=2.25246977358 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ausgabe ||| issuing ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.33550150674 MaxLexEgivenF=2.16949553852 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ausgabe ||| says ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.56185997682 MaxLexEgivenF=2.48983068937 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ausgabe [X,1] ||| [X,1] issue ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.874014479115 MaxLexEgivenF=0.673890878102 IsSingletonF=0 IsSingletonFE=0 ||| 0-1
[X] ||| ausgabe [X,1] ||| of [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.51177525115 MaxLexEgivenF=0.69683526521 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ausgabe [X,1] ||| output [X,1] ||| EgivenFCoherent=1.17609125906 SampleCountF=2.47856649559 CountEF=1.32221929473 MaxLexFgivenE=0.953860123782 MaxLexEgivenF=0.827931996414 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ausgabe [X,1] ||| output , [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.953860123782 MaxLexEgivenF=1.43855561042 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ausgabe [X,1] ||| release [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.65005176994 MaxLexEgivenF=2.25246977358 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ausgabe [X,1] ||| issue [X,1] ||| EgivenFCoherent=0.778151250384 SampleCountF=2.47856649559 CountEF=1.7075701761 MaxLexFgivenE=0.874014479115 MaxLexEgivenF=0.673890878102 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ausgabe [X,1] ||| issue of [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.874014479115 MaxLexEgivenF=1.37072614331 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ausgabe [X,1] ||| title [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.24830029535 MaxLexEgivenF=3.05410211981 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ausgabe [X,1] ||| edition [X,1] ||| EgivenFCoherent=0.945642337677 SampleCountF=2.47856649559 CountEF=1.54406804435 MaxLexFgivenE=0.958745652111 MaxLexEgivenF=0.779174926714 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ausgabe [X,1] ||| edition of [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.958745652111 MaxLexEgivenF=1.47601019192 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ausgabe [X,1] ||| copy [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.48369988141 MaxLexEgivenF=2.25246977358 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ausgabe [X,1] ||| returns [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.45606222445 MaxLexEgivenF=3.53122337453 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ausgabe [X,1] ||| version [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.7758459366 MaxLexEgivenF=1.99974445749 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ausgabe [X,1] ||| version of [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.7758459366 MaxLexEgivenF=2.6965797227 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ausgabe [X,1] ||| next [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73305675895 MaxLexEgivenF=2.92916338321 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ausgabe [X,1] ||| issuance [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1 MaxLexEgivenF=2.25246977358 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ausgabe [X,1] ||| issuing [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.33550150674 MaxLexEgivenF=2.16949553852 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] was war ||| [X,1] which was ||| EgivenFCoherent=1.6857417386 SampleCountF=1.99122607569 CountEF=0.47712125472 MaxLexFgivenE=2.34444002432 MaxLexEgivenF=1.61593800584 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] was war ||| [X,1] what was ||| EgivenFCoherent=0.625043898249 SampleCountF=1.99122607569 CountEF=1.38021124171 MaxLexFgivenE=1.40222422285 MaxLexEgivenF=1.08806813458 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] was war ||| [X,1] what were ||| EgivenFCoherent=1.98677173427 SampleCountF=1.99122607569 CountEF=0.301029995664 MaxLexFgivenE=2.06572196027 MaxLexEgivenF=2.23819275015 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] was war ||| [X,1] what happened ||| EgivenFCoherent=1.98677173427 SampleCountF=1.99122607569 CountEF=0.301029995664 MaxLexFgivenE=1.98978825163 MaxLexEgivenF=3.69485810504 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] was war ||| [X,1] what exactly ||| EgivenFCoherent=1.98677173427 SampleCountF=1.99122607569 CountEF=0.301029995664 MaxLexFgivenE=3.39782499065 MaxLexEgivenF=4.13202326293 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 2-2
[X] ||| [X,1] was war ||| [X,1] how was ||| EgivenFCoherent=1.98677173427 SampleCountF=1.99122607569 CountEF=0.301029995664 MaxLexFgivenE=2.34444002432 MaxLexEgivenF=2.49793887599 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] was war [X,2] ||| [X,1] which was [X,2] ||| EgivenFCoherent=1.6857417386 SampleCountF=1.99122607569 CountEF=0.47712125472 MaxLexFgivenE=2.34444002432 MaxLexEgivenF=1.61593800584 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] was war [X,2] ||| [X,1] that [X,2] was ||| EgivenFCoherent=1.98677173427 SampleCountF=1.99122607569 CountEF=0.301029995664 MaxLexFgivenE=2.34444002432 MaxLexEgivenF=1.8492842172 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-3
[X] ||| [X,1] was war [X,2] ||| [X,1] what was [X,2] ||| EgivenFCoherent=0.685741738602 SampleCountF=1.99122607569 CountEF=1.32221929473 MaxLexFgivenE=1.40222422285 MaxLexEgivenF=1.08806813458 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] was war [X,2] ||| [X,1] what were [X,2] ||| EgivenFCoherent=1.98677173427 SampleCountF=1.99122607569 CountEF=0.301029995664 MaxLexFgivenE=2.06572196027 MaxLexEgivenF=2.23819275015 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] was war [X,2] ||| [X,1] what happened [X,2] ||| EgivenFCoherent=1.98677173427 SampleCountF=1.99122607569 CountEF=0.301029995664 MaxLexFgivenE=1.98978825163 MaxLexEgivenF=3.69485810504 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] was war [X,2] ||| [X,1] what exactly [X,2] ||| EgivenFCoherent=1.98677173427 SampleCountF=1.99122607569 CountEF=0.301029995664 MaxLexFgivenE=3.39782499065 MaxLexEgivenF=4.13202326293 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 2-2
[X] ||| [X,1] was war [X,2] ||| [X,1] how was [X,2] ||| EgivenFCoherent=1.98677173427 SampleCountF=1.99122607569 CountEF=0.301029995664 MaxLexFgivenE=2.34444002432 MaxLexEgivenF=2.49793887599 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| was war ||| which was ||| EgivenFCoherent=1.6857417386 SampleCountF=1.99122607569 CountEF=0.47712125472 MaxLexFgivenE=2.34444002432 MaxLexEgivenF=1.61593800584 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| was war ||| that called ||| EgivenFCoherent=1.98677173427 SampleCountF=1.99122607569 CountEF=0.301029995664 MaxLexFgivenE=5.34835236699 MaxLexEgivenF=5.19338918407 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| was war ||| that they had ||| EgivenFCoherent=1.98677173427 SampleCountF=1.99122607569 CountEF=0.301029995664 MaxLexFgivenE=3.53335011318 MaxLexEgivenF=5.39438005859 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2
[X] ||| was war ||| what was ||| EgivenFCoherent=0.246409044772 SampleCountF=1.99122607569 CountEF=1.74818802701 MaxLexFgivenE=1.40222422285 MaxLexEgivenF=1.08806813458 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| was war ||| what were ||| EgivenFCoherent=1.98677173427 SampleCountF=1.99122607569 CountEF=0.301029995664 MaxLexFgivenE=2.06572196027 MaxLexEgivenF=2.23819275015 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| was war ||| what is ||| EgivenFCoherent=1.6857417386 SampleCountF=1.99122607569 CountEF=0.47712125472 MaxLexFgivenE=3.39782499065 MaxLexEgivenF=2.12465129841 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 1-1
[X] ||| was war ||| what happened ||| EgivenFCoherent=1.6857417386 SampleCountF=1.99122607569 CountEF=0.47712125472 MaxLexFgivenE=1.98978825163 MaxLexEgivenF=3.69485810504 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| was war ||| what exactly ||| EgivenFCoherent=1.98677173427 SampleCountF=1.99122607569 CountEF=0.301029995664 MaxLexFgivenE=3.39782499065 MaxLexEgivenF=4.13202326293 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-1
[X] ||| was war ||| how was ||| EgivenFCoherent=1.98677173427 SampleCountF=1.99122607569 CountEF=0.301029995664 MaxLexFgivenE=2.34444002432 MaxLexEgivenF=2.49793887599 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| was war ||| you what was ||| EgivenFCoherent=1.98677173427 SampleCountF=1.99122607569 CountEF=0.301029995664 MaxLexFgivenE=1.40222422285 MaxLexEgivenF=3.54548514206 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2
[X] ||| was war ||| something about ||| EgivenFCoherent=1.98677173427 SampleCountF=1.99122607569 CountEF=0.301029995664 MaxLexFgivenE=4.52425277319 MaxLexEgivenF=4.61727992518 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| was war ||| during that time were ||| EgivenFCoherent=1.98677173427 SampleCountF=1.99122607569 CountEF=0.301029995664 MaxLexFgivenE=3.79886527938 MaxLexEgivenF=8.83069963281 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-1 1-2 0-3 1-3
[X] ||| was war [X,1] ||| which was [X,1] ||| EgivenFCoherent=1.6857417386 SampleCountF=1.99122607569 CountEF=0.47712125472 MaxLexFgivenE=2.34444002432 MaxLexEgivenF=1.61593800584 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| was war [X,1] ||| that [X,1] was ||| EgivenFCoherent=1.98677173427 SampleCountF=1.99122607569 CountEF=0.301029995664 MaxLexFgivenE=2.34444002432 MaxLexEgivenF=1.8492842172 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-2
[X] ||| was war [X,1] ||| what was [X,1] ||| EgivenFCoherent=0.305530496891 SampleCountF=1.99122607569 CountEF=1.69019608003 MaxLexFgivenE=1.40222422285 MaxLexEgivenF=1.08806813458 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| was war [X,1] ||| what were [X,1] ||| EgivenFCoherent=1.98677173427 SampleCountF=1.99122607569 CountEF=0.301029995664 MaxLexFgivenE=2.06572196027 MaxLexEgivenF=2.23819275015 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| was war [X,1] ||| what is [X,1] ||| EgivenFCoherent=1.6857417386 SampleCountF=1.99122607569 CountEF=0.47712125472 MaxLexFgivenE=3.39782499065 MaxLexEgivenF=2.12465129841 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 1-1
[X] ||| was war [X,1] ||| what happened [X,1] ||| EgivenFCoherent=1.98677173427 SampleCountF=1.99122607569 CountEF=0.301029995664 MaxLexFgivenE=1.98978825163 MaxLexEgivenF=3.69485810504 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| was war [X,1] ||| what exactly [X,1] ||| EgivenFCoherent=1.98677173427 SampleCountF=1.99122607569 CountEF=0.301029995664 MaxLexFgivenE=3.39782499065 MaxLexEgivenF=4.13202326293 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-1
[X] ||| was war [X,1] ||| how was [X,1] ||| EgivenFCoherent=1.98677173427 SampleCountF=1.99122607569 CountEF=0.301029995664 MaxLexFgivenE=2.34444002432 MaxLexEgivenF=2.49793887599 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| was war [X,1] ||| you what was [X,1] ||| EgivenFCoherent=1.98677173427 SampleCountF=1.99122607569 CountEF=0.301029995664 MaxLexFgivenE=1.40222422285 MaxLexEgivenF=3.54548514206 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2
[X] ||| was war [X,1] ||| something about [X,1] ||| EgivenFCoherent=1.98677173427 SampleCountF=1.99122607569 CountEF=0.301029995664 MaxLexFgivenE=4.52425277319 MaxLexEgivenF=4.61727992518 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| was war [X,1] ||| during that time were [X,1] ||| EgivenFCoherent=1.98677173427 SampleCountF=1.99122607569 CountEF=0.301029995664 MaxLexFgivenE=3.79886527938 MaxLexEgivenF=8.83069963281 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-1 1-2 0-3 1-3
[X] ||| [X,1] was [X,2] der ||| [X,1] which [X,2] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.30950232903 MaxLexEgivenF=1.47012475836 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] was [X,2] der ||| [X,1] what [X,2] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.19974846519 MaxLexEgivenF=1.30962544413 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] was [X,2] der ||| [X,1] what [X,2] of the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.15843495672 MaxLexEgivenF=1.59756328233 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4
[X] ||| [X,1] was [X,2] der ||| [X,1] what [X,2] the ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.15843495672 MaxLexEgivenF=0.942254887106 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] was [X,2] der ||| [X,1] what to [X,2] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.15843495672 MaxLexEgivenF=1.95456015816 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-4
[X] ||| was [X,1] der ||| was [X,1] der ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.69348752813 MaxLexEgivenF=3.18068091779 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| was [X,1] der ||| for [X,1] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.75550670894 MaxLexEgivenF=2.30284445919 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| was [X,1] der ||| which [X,1] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.30950232903 MaxLexEgivenF=1.47012475836 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| was [X,1] der ||| what [X,1] of ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.19974846519 MaxLexEgivenF=1.30962544413 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| was [X,1] der ||| what [X,1] of the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.15843495672 MaxLexEgivenF=1.59756328233 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| was [X,1] der ||| what [X,1] the ||| EgivenFCoherent=1.15490195999 SampleCountF=2.47856649559 CountEF=1.34242268082 MaxLexFgivenE=1.15843495672 MaxLexEgivenF=0.942254887106 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| was [X,1] der ||| what [X,1] who ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.63319212453 MaxLexEgivenF=3.03164964155 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| was [X,1] der ||| what to [X,1] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.15843495672 MaxLexEgivenF=1.95456015816 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| was [X,1] der ||| what kind [X,1] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.15843495672 MaxLexEgivenF=3.94283984641 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| was [X,1] der ||| thing which [X,1] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89223782441 MaxLexEgivenF=3.69889864532 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| was [X,1] der ||| regarding [X,1] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.85283053968 MaxLexEgivenF=3.44613065087 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| was [X,1] der [X,2] ||| was [X,1] der [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.69348752813 MaxLexEgivenF=3.18068091779 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| was [X,1] der [X,2] ||| for [X,1] of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.75550670894 MaxLexEgivenF=2.30284445919 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| was [X,1] der [X,2] ||| which [X,1] the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.30950232903 MaxLexEgivenF=1.47012475836 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| was [X,1] der [X,2] ||| what [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.63319212453 MaxLexEgivenF=0.654317048904 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| was [X,1] der [X,2] ||| what [X,1] of [X,2] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.19974846519 MaxLexEgivenF=1.30962544413 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| was [X,1] der [X,2] ||| what [X,1] of the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.15843495672 MaxLexEgivenF=1.59756328233 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| was [X,1] der [X,2] ||| what [X,1] the [X,2] ||| EgivenFCoherent=1.19836765377 SampleCountF=2.47856649559 CountEF=1.30102999566 MaxLexFgivenE=1.15843495672 MaxLexEgivenF=0.942254887106 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| was [X,1] der [X,2] ||| what [X,1] who [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.63319212453 MaxLexEgivenF=3.03164964155 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| was [X,1] der [X,2] ||| thing which [X,1] the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89223782441 MaxLexEgivenF=3.69889864532 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| was [X,1] der [X,2] ||| regarding [X,1] the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.85283053968 MaxLexEgivenF=3.44613065087 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] was [X,2] preis ||| [X,1] what [X,2] price ||| EgivenFCoherent=1.89209460269 SampleCountF=1.89762709129 CountEF=0.301029995664 MaxLexFgivenE=1.26471538265 MaxLexEgivenF=1.18581486105 IsSingletonF=1 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| was [X,1] preis ||| it comes [X,1] price ||| EgivenFCoherent=1.89209460269 SampleCountF=1.89762709129 CountEF=0.301029995664 MaxLexFgivenE=3.22384532409 MaxLexEgivenF=5.93616186389 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| was [X,1] preis ||| what [X,1] price ||| EgivenFCoherent=1.11394335231 SampleCountF=1.89762709129 CountEF=0.845098040014 MaxLexFgivenE=1.26471538265 MaxLexEgivenF=1.18581486105 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| was [X,1] preis ||| what [X,1] prize ||| EgivenFCoherent=1.89209460269 SampleCountF=1.89762709129 CountEF=0.301029995664 MaxLexFgivenE=1.39598360452 MaxLexEgivenF=2.01721162339 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| was [X,1] preis ||| thing [X,1] price ||| EgivenFCoherent=1.89209460269 SampleCountF=1.89762709129 CountEF=0.301029995664 MaxLexFgivenE=1.99851825034 MaxLexEgivenF=2.7602716991 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| was [X,1] preis [X,2] ||| it comes [X,1] price [X,2] ||| EgivenFCoherent=1.89209460269 SampleCountF=1.89762709129 CountEF=0.301029995664 MaxLexFgivenE=3.22384532409 MaxLexEgivenF=5.93616186389 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| was [X,1] preis [X,2] ||| what [X,2] [X,1] price ||| EgivenFCoherent=1.89209460269 SampleCountF=1.89762709129 CountEF=0.301029995664 MaxLexFgivenE=1.26471538265 MaxLexEgivenF=1.18581486105 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| was [X,1] preis [X,2] ||| what [X,1] price [X,2] ||| EgivenFCoherent=1.29003461136 SampleCountF=1.89762709129 CountEF=0.698970004336 MaxLexFgivenE=1.26471538265 MaxLexEgivenF=1.18581486105 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| was [X,1] preis [X,2] ||| what [X,1] price of [X,2] ||| EgivenFCoherent=1.89209460269 SampleCountF=1.89762709129 CountEF=0.301029995664 MaxLexFgivenE=1.26471538265 MaxLexEgivenF=1.88265012626 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| was [X,1] preis [X,2] ||| what [X,1] prize [X,2] ||| EgivenFCoherent=1.89209460269 SampleCountF=1.89762709129 CountEF=0.301029995664 MaxLexFgivenE=1.39598360452 MaxLexEgivenF=2.01721162339 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| was [X,1] preis [X,2] ||| thing [X,1] price [X,2] ||| EgivenFCoherent=1.89209460269 SampleCountF=1.89762709129 CountEF=0.301029995664 MaxLexFgivenE=1.99851825034 MaxLexEgivenF=2.7602716991 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] was [X,2] ersten ||| [X,1] . what [X,2] first ||| EgivenFCoherent=2.14921911266 SampleCountF=2.15228834438 CountEF=0.301029995664 MaxLexFgivenE=1.18407784151 MaxLexEgivenF=3.45407803877 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 3-4
[X] ||| [X,1] was [X,2] ersten ||| [X,1] was [X,2] ersten ||| EgivenFCoherent=2.14921911266 SampleCountF=2.15228834438 CountEF=0.301029995664 MaxLexFgivenE=1.89771606159 MaxLexEgivenF=3.39157886676 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] was [X,2] ersten ||| [X,1] which [X,2] first ||| EgivenFCoherent=1.84818911699 SampleCountF=2.15228834438 CountEF=0.47712125472 MaxLexFgivenE=2.33514521383 MaxLexEgivenF=1.4446659987 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] was [X,2] ersten ||| [X,1] what [X,2] first ||| EgivenFCoherent=2.14921911266 SampleCountF=2.15228834438 CountEF=0.301029995664 MaxLexFgivenE=1.18407784151 MaxLexEgivenF=0.916796127444 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] was [X,2] ersten ||| [X,1] what [X,2] initial ||| EgivenFCoherent=2.14921911266 SampleCountF=2.15228834438 CountEF=0.301029995664 MaxLexFgivenE=1.55164112979 MaxLexEgivenF=2.55428585696 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] was [X,2] ersten ||| [X,1] making [X,2] first ||| EgivenFCoherent=2.14921911266 SampleCountF=2.15228834438 CountEF=0.301029995664 MaxLexFgivenE=2.71871314082 MaxLexEgivenF=2.90601347618 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] was [X,2] ersten ||| [X,1] meaning [X,2] first ||| EgivenFCoherent=2.14921911266 SampleCountF=2.15228834438 CountEF=0.301029995664 MaxLexFgivenE=2.14492117853 MaxLexEgivenF=2.91439240775 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| was [X,1] ersten ||| was [X,1] ersten ||| EgivenFCoherent=2.14921911266 SampleCountF=2.15228834438 CountEF=0.301029995664 MaxLexFgivenE=1.89771606159 MaxLexEgivenF=3.39157886676 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| was [X,1] ersten ||| which [X,1] first ||| EgivenFCoherent=1.84818911699 SampleCountF=2.15228834438 CountEF=0.47712125472 MaxLexFgivenE=2.33514521383 MaxLexEgivenF=1.4446659987 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| was [X,1] ersten ||| what [X,1] first ||| EgivenFCoherent=1.37106786227 SampleCountF=2.15228834438 CountEF=0.845098040014 MaxLexFgivenE=1.18407784151 MaxLexEgivenF=0.916796127444 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| was [X,1] ersten ||| what [X,1] initial ||| EgivenFCoherent=1.84818911699 SampleCountF=2.15228834438 CountEF=0.47712125472 MaxLexFgivenE=1.55164112979 MaxLexEgivenF=2.55428585696 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| was [X,1] ersten ||| making [X,1] first ||| EgivenFCoherent=2.14921911266 SampleCountF=2.15228834438 CountEF=0.301029995664 MaxLexFgivenE=2.71871314082 MaxLexEgivenF=2.90601347618 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| was [X,1] ersten ||| why [X,1] first ||| EgivenFCoherent=2.14921911266 SampleCountF=2.15228834438 CountEF=0.301029995664 MaxLexFgivenE=2.63937510411 MaxLexEgivenF=2.98464183293 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| was [X,1] ersten ||| meaning [X,1] first ||| EgivenFCoherent=2.14921911266 SampleCountF=2.15228834438 CountEF=0.301029995664 MaxLexFgivenE=2.14492117853 MaxLexEgivenF=2.91439240775 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| was [X,1] ersten ||| cause [X,1] first ||| EgivenFCoherent=2.14921911266 SampleCountF=2.15228834438 CountEF=0.301029995664 MaxLexFgivenE=3.52060858754 MaxLexEgivenF=4.14767061915 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| was [X,1] ersten [X,2] ||| was [X,1] ersten [X,2] ||| EgivenFCoherent=2.14921911266 SampleCountF=2.15228834438 CountEF=0.301029995664 MaxLexFgivenE=1.89771606159 MaxLexEgivenF=3.39157886676 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| was [X,1] ersten [X,2] ||| which [X,1] first [X,2] ||| EgivenFCoherent=2.14921911266 SampleCountF=2.15228834438 CountEF=0.301029995664 MaxLexFgivenE=2.33514521383 MaxLexEgivenF=1.4446659987 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| was [X,1] ersten [X,2] ||| what [X,1] first [X,2] ||| EgivenFCoherent=1.37106786227 SampleCountF=2.15228834438 CountEF=0.845098040014 MaxLexFgivenE=1.18407784151 MaxLexEgivenF=0.916796127444 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| was [X,1] ersten [X,2] ||| what [X,1] initial [X,2] ||| EgivenFCoherent=1.84818911699 SampleCountF=2.15228834438 CountEF=0.47712125472 MaxLexFgivenE=1.55164112979 MaxLexEgivenF=2.55428585696 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| was [X,1] ersten [X,2] ||| making [X,1] first [X,2] ||| EgivenFCoherent=2.14921911266 SampleCountF=2.15228834438 CountEF=0.301029995664 MaxLexFgivenE=2.71871314082 MaxLexEgivenF=2.90601347618 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| was [X,1] ersten [X,2] ||| why [X,1] first [X,2] ||| EgivenFCoherent=2.14921911266 SampleCountF=2.15228834438 CountEF=0.301029995664 MaxLexFgivenE=2.63937510411 MaxLexEgivenF=2.98464183293 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| was [X,1] ersten [X,2] ||| meaning [X,1] first [X,2] ||| EgivenFCoherent=2.14921911266 SampleCountF=2.15228834438 CountEF=0.301029995664 MaxLexFgivenE=2.14492117853 MaxLexEgivenF=2.91439240775 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] was [X,2] ausgabe ||| [X,1] what [X,2] output ||| EgivenFCoherent=1.20411998266 SampleCountF=1.23044892138 CountEF=0.301029995664 MaxLexFgivenE=1.45287903604 MaxLexEgivenF=1.48224904532 IsSingletonF=1 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| was [X,1] ausgabe ||| what [X,1] output ||| EgivenFCoherent=1.20411998266 SampleCountF=1.23044892138 CountEF=0.301029995664 MaxLexFgivenE=1.45287903604 MaxLexEgivenF=1.48224904532 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| was [X,1] ausgabe [X,2] ||| what [X,1] output [X,2] ||| EgivenFCoherent=1.20411998266 SampleCountF=1.23044892138 CountEF=0.301029995664 MaxLexFgivenE=1.45287903604 MaxLexEgivenF=1.48224904532 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] war der ||| [X,1] was of the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.56262135505 MaxLexEgivenF=1.37699731911 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] war der ||| [X,1] was the ||| EgivenFCoherent=0.864337398 SampleCountF=2.47856649559 CountEF=1.6232492904 MaxLexFgivenE=1.56262135505 MaxLexEgivenF=0.721688923883 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] war der ||| [X,1] was a ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.03737852286 MaxLexEgivenF=1.65059886892 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] war der ||| [X,1] , the ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.33655701312 MaxLexEgivenF=0.898561452209 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] war der ||| [X,1] thought , that this ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.13295242585 MaxLexEgivenF=8.22346817129 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-4
[X] ||| [X,1] war der ||| the [X,1] had ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.95542625688 MaxLexEgivenF=1.78528556223 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 1-2
[X] ||| [X,1] war der [X,2] ||| [X,1] [X,2] was ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.03737852286 MaxLexEgivenF=0.433751085681 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] war der [X,2] ||| [X,1] was [X,2] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=2.03737852286 MaxLexEgivenF=0.433751085681 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] war der [X,2] ||| [X,1] was of the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.56262135505 MaxLexEgivenF=1.37699731911 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] war der [X,2] ||| [X,1] was the [X,2] ||| EgivenFCoherent=0.875061263392 SampleCountF=2.47856649559 CountEF=1.61278385672 MaxLexFgivenE=1.56262135505 MaxLexEgivenF=0.721688923883 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] war der [X,2] ||| [X,1] was to [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.03737852286 MaxLexEgivenF=1.44605635674 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] war der [X,2] ||| [X,1] was a [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.03737852286 MaxLexEgivenF=1.65059886892 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] war der [X,2] ||| [X,1] , the [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.33655701312 MaxLexEgivenF=0.898561452209 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] war der [X,2] ||| [X,1] , the [X,2] was ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.56262135505 MaxLexEgivenF=1.33231253789 IsSingletonF=0 IsSingletonFE=0 ||| 2-2 1-4
[X] ||| [X,1] war der [X,2] ||| [X,1] and [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.11961765059 MaxLexEgivenF=0.94620073587 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] war der [X,2] ||| [X,1] the [X,2] was ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.56262135505 MaxLexEgivenF=0.721688923883 IsSingletonF=0 IsSingletonFE=0 ||| 2-1 1-3
[X] ||| [X,1] war der [X,2] ||| [X,1] the [X,2] was made ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.56262135505 MaxLexEgivenF=3.37293908046 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 1-3 1-4
[X] ||| [X,1] war der [X,2] ||| [X,1] thought , that this [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.13295242585 MaxLexEgivenF=8.22346817129 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-4
[X] ||| war der ||| was of the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.56262135505 MaxLexEgivenF=1.37699731911 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| war der ||| was the ||| EgivenFCoherent=0.728933227713 SampleCountF=2.47856649559 CountEF=1.75587485567 MaxLexFgivenE=1.56262135505 MaxLexEgivenF=0.721688923883 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| war der ||| was a ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.03737852286 MaxLexEgivenF=1.65059886892 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| war der ||| , the ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=3.33655701312 MaxLexEgivenF=0.898561452209 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| war der ||| - of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.89525514485 MaxLexEgivenF=3.67787608035 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| war der ||| is a ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=4.3429927479 MaxLexEgivenF=2.68718203275 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| war der ||| thought , that this ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.13295242585 MaxLexEgivenF=8.22346817129 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-3
[X] ||| war der ||| during the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.68567344643 MaxLexEgivenF=3.57767725173 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| war der [X,1] ||| [X,1] was ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.03737852286 MaxLexEgivenF=0.433751085681 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| war der [X,1] ||| was [X,1] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=2.03737852286 MaxLexEgivenF=0.433751085681 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| war der [X,1] ||| was of the [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.56262135505 MaxLexEgivenF=1.37699731911 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| war der [X,1] ||| was the [X,1] ||| EgivenFCoherent=0.752845385119 SampleCountF=2.47856649559 CountEF=1.73239375982 MaxLexFgivenE=1.56262135505 MaxLexEgivenF=0.721688923883 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| war der [X,1] ||| was to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.03737852286 MaxLexEgivenF=1.44605635674 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war der [X,1] ||| was a [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.03737852286 MaxLexEgivenF=1.65059886892 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| war der [X,1] ||| , the [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.33655701312 MaxLexEgivenF=0.898561452209 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| war der [X,1] ||| , the [X,1] was ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.56262135505 MaxLexEgivenF=1.33231253789 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 0-3
[X] ||| war der [X,1] ||| and [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.11961765059 MaxLexEgivenF=0.94620073587 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war der [X,1] ||| the [X,1] was ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=1.56262135505 MaxLexEgivenF=0.721688923883 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 0-2
[X] ||| war der [X,1] ||| the [X,1] was made ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.56262135505 MaxLexEgivenF=3.37293908046 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-2 0-3
[X] ||| war der [X,1] ||| our [X,1] were ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.70087626028 MaxLexEgivenF=4.01159544219 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-2
[X] ||| war der [X,1] ||| thought , that this [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.13295242585 MaxLexEgivenF=8.22346817129 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-3
[X] ||| [X,1] war [X,2] preis ||| [X,1] [X,2] price was ||| EgivenFCoherent=2.05499586153 SampleCountF=2.357934847 CountEF=0.47712125472 MaxLexFgivenE=1.66890178098 MaxLexEgivenF=0.965248897825 IsSingletonF=0 IsSingletonFE=0 ||| 3-2 1-3
[X] ||| [X,1] war [X,2] preis ||| [X,1] was [X,2] price ||| EgivenFCoherent=1.87890460247 SampleCountF=2.357934847 CountEF=0.602059991328 MaxLexFgivenE=1.66890178098 MaxLexEgivenF=0.965248897825 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] war [X,2] preis ||| [X,1] was [X,2] prize ||| EgivenFCoherent=2.05499586153 SampleCountF=2.357934847 CountEF=0.47712125472 MaxLexFgivenE=1.80017000285 MaxLexEgivenF=1.79664566016 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] war [X,2] preis ||| was [X,1] [X,2] cost ||| EgivenFCoherent=2.35602585719 SampleCountF=2.357934847 CountEF=0.301029995664 MaxLexFgivenE=2.59110533064 MaxLexEgivenF=2.25320055804 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 3-3
[X] ||| war [X,1] preis ||| [X,1] price was ||| EgivenFCoherent=2.05499586153 SampleCountF=2.357934847 CountEF=0.47712125472 MaxLexFgivenE=1.66890178098 MaxLexEgivenF=0.965248897825 IsSingletonF=0 IsSingletonFE=0 ||| 2-1 0-2
[X] ||| war [X,1] preis ||| was [X,1] price ||| EgivenFCoherent=1.87890460247 SampleCountF=2.357934847 CountEF=0.602059991328 MaxLexFgivenE=1.66890178098 MaxLexEgivenF=0.965248897825 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| war [X,1] preis ||| was [X,1] prize ||| EgivenFCoherent=2.05499586153 SampleCountF=2.357934847 CountEF=0.47712125472 MaxLexFgivenE=1.80017000285 MaxLexEgivenF=1.79664566016 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| war [X,1] preis [X,2] ||| [X,1] price [X,2] was ||| EgivenFCoherent=2.35602585719 SampleCountF=2.357934847 CountEF=0.301029995664 MaxLexFgivenE=1.66890178098 MaxLexEgivenF=0.965248897825 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 0-3
[X] ||| war [X,1] preis [X,2] ||| [X,1] price was [X,2] ||| EgivenFCoherent=2.35602585719 SampleCountF=2.357934847 CountEF=0.301029995664 MaxLexFgivenE=1.66890178098 MaxLexEgivenF=0.965248897825 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 0-2
[X] ||| war [X,1] preis [X,2] ||| was [X,1] price [X,2] ||| EgivenFCoherent=2.05499586153 SampleCountF=2.357934847 CountEF=0.47712125472 MaxLexFgivenE=1.66890178098 MaxLexEgivenF=0.965248897825 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| war [X,1] preis [X,2] ||| was [X,1] prize [X,2] ||| EgivenFCoherent=2.05499586153 SampleCountF=2.357934847 CountEF=0.47712125472 MaxLexFgivenE=1.80017000285 MaxLexEgivenF=1.79664566016 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| [X,1] war [X,2] der ||| [X,1] [X,2] was the ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.56262135505 MaxLexEgivenF=0.721688923883 IsSingletonF=0 IsSingletonFE=0 ||| 1-2 3-3
[X] ||| [X,1] war [X,2] der ||| [X,1] was [X,2] of ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.60393486352 MaxLexEgivenF=1.0890594809 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] war [X,2] der ||| [X,1] was [X,2] of the ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.56262135505 MaxLexEgivenF=1.37699731911 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3 3-4
[X] ||| [X,1] war [X,2] der ||| [X,1] was [X,2] the ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.56262135505 MaxLexEgivenF=0.721688923883 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] war [X,2] der ||| [X,1] , [X,2] was the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.56262135505 MaxLexEgivenF=1.33231253789 IsSingletonF=0 IsSingletonFE=1 ||| 1-3 3-4
[X] ||| [X,1] war [X,2] der ||| [X,1] , [X,2] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.33655701312 MaxLexEgivenF=0.898561452209 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] war [X,2] der ||| [X,1] , was [X,2] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.56262135505 MaxLexEgivenF=1.33231253789 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4
[X] ||| [X,1] war [X,2] der ||| [X,1] has been [X,2] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.38499563016 MaxLexEgivenF=3.87174637757 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4
[X] ||| [X,1] war [X,2] der ||| [X,1] i [X,2] in the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.94347584434 MaxLexEgivenF=3.74441388942 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-4
[X] ||| war [X,1] der ||| [X,1] was the ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.56262135505 MaxLexEgivenF=0.721688923883 IsSingletonF=0 IsSingletonFE=0 ||| 0-1 2-2
[X] ||| war [X,1] der ||| was [X,1] of ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.60393486352 MaxLexEgivenF=1.0890594809 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| war [X,1] der ||| was [X,1] of the ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.56262135505 MaxLexEgivenF=1.37699731911 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 2-3
[X] ||| war [X,1] der ||| was [X,1] the ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.56262135505 MaxLexEgivenF=0.721688923883 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| war [X,1] der ||| , [X,1] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.33655701312 MaxLexEgivenF=0.898561452209 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| war [X,1] der ||| , was [X,1] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.56262135505 MaxLexEgivenF=1.33231253789 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| war [X,1] der ||| has been [X,1] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.38499563016 MaxLexEgivenF=3.87174637757 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| war [X,1] der ||| i [X,1] in the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.94347584434 MaxLexEgivenF=3.74441388942 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| war [X,1] der ||| represented [X,1] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.31726832974 MaxLexEgivenF=4.40158599267 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| war [X,1] der [X,2] ||| [X,1] was the [X,2] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.56262135505 MaxLexEgivenF=0.721688923883 IsSingletonF=0 IsSingletonFE=0 ||| 0-1 2-2
[X] ||| war [X,1] der [X,2] ||| was [X,1] of [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.60393486352 MaxLexEgivenF=1.0890594809 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| war [X,1] der [X,2] ||| was [X,1] of the [X,2] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.56262135505 MaxLexEgivenF=1.37699731911 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 2-3
[X] ||| war [X,1] der [X,2] ||| was [X,1] the [X,2] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.56262135505 MaxLexEgivenF=0.721688923883 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| war [X,1] der [X,2] ||| , [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.81131418093 MaxLexEgivenF=0.610623614007 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| war [X,1] der [X,2] ||| , was [X,1] the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.56262135505 MaxLexEgivenF=1.33231253789 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| war [X,1] der [X,2] ||| has been [X,1] the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.38499563016 MaxLexEgivenF=3.87174637757 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| war [X,1] der [X,2] ||| i [X,1] in the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.94347584434 MaxLexEgivenF=3.74441388942 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| war [X,1] der [X,2] ||| represented [X,1] the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.31726832974 MaxLexEgivenF=4.40158599267 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] war [X,2] ersten ||| [X,1] was [X,2] first ||| EgivenFCoherent=1.1346985739 SampleCountF=2.47856649559 CountEF=1.36172783602 MaxLexFgivenE=1.58826423984 MaxLexEgivenF=0.696230164221 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] war [X,2] ersten ||| [X,1] was [X,2] premier ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.9682868383 MaxLexEgivenF=3.54826940461 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] war [X,2] ersten ||| [X,1] was and is [X,2] first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.58826423984 MaxLexEgivenF=3.1127651496 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-5
[X] ||| [X,1] war [X,2] ersten ||| [X,1] , [X,2] first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.20327175473 MaxLexEgivenF=0.873102692547 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] war [X,2] ersten ||| [X,1] he was [X,2] first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.58826423984 MaxLexEgivenF=2.46548604501 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4
[X] ||| [X,1] war [X,2] ersten ||| [X,1] being [X,2] first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.07973098334 MaxLexEgivenF=2.99894244593 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| war [X,1] ersten ||| was [X,1] first ||| EgivenFCoherent=0.945642337677 SampleCountF=2.47856649559 CountEF=1.54406804435 MaxLexFgivenE=1.58826423984 MaxLexEgivenF=0.696230164221 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| war [X,1] ersten ||| was [X,1] premier ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.9682868383 MaxLexEgivenF=3.54826940461 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| war [X,1] ersten ||| was and is [X,1] first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.58826423984 MaxLexEgivenF=3.1127651496 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-4
[X] ||| war [X,1] ersten ||| , [X,1] first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.20327175473 MaxLexEgivenF=0.873102692547 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| war [X,1] ersten ||| , was [X,1] first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.58826423984 MaxLexEgivenF=1.30685377823 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| war [X,1] ersten ||| he was [X,1] first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.58826423984 MaxLexEgivenF=2.46548604501 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| war [X,1] ersten ||| being [X,1] first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.07973098334 MaxLexEgivenF=2.99894244593 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| war [X,1] ersten [X,2] ||| was [X,1] first [X,2] ||| EgivenFCoherent=1.09691001301 SampleCountF=2.47856649559 CountEF=1.39794000867 MaxLexFgivenE=1.58826423984 MaxLexEgivenF=0.696230164221 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| war [X,1] ersten [X,2] ||| was and is [X,1] first [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.58826423984 MaxLexEgivenF=3.1127651496 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-4
[X] ||| war [X,1] ersten [X,2] ||| , [X,2] the [X,1] first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.20327175473 MaxLexEgivenF=2.21776652863 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-4
[X] ||| war [X,1] ersten [X,2] ||| , [X,1] first [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.20327175473 MaxLexEgivenF=0.873102692547 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| war [X,1] ersten [X,2] ||| , was [X,1] first [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.58826423984 MaxLexEgivenF=1.30685377823 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| war [X,1] ersten [X,2] ||| being [X,1] first [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.07973098334 MaxLexEgivenF=2.99894244593 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] war [X,2] ausgabe ||| [X,1] was [X,2] edition ||| EgivenFCoherent=1.07918124605 SampleCountF=1.39794000867 CountEF=0.47712125472 MaxLexFgivenE=1.8619509627 MaxLexEgivenF=1.21292601239 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| war [X,1] ausgabe ||| was [X,1] edition ||| EgivenFCoherent=1.07918124605 SampleCountF=1.39794000867 CountEF=0.47712125472 MaxLexFgivenE=1.8619509627 MaxLexEgivenF=1.21292601239 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| war [X,1] ausgabe [X,2] ||| was [X,1] edition [X,2] ||| EgivenFCoherent=1.07918124605 SampleCountF=1.39794000867 CountEF=0.47712125472 MaxLexFgivenE=1.8619509627 MaxLexEgivenF=1.21292601239 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| [X,1] der preis ||| [X,1] der preis ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.740369453416 MaxLexEgivenF=4.50876693956 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] der preis ||| [X,1] of price ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46642602332 MaxLexEgivenF=1.18680620737 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] der preis ||| [X,1] the price ||| EgivenFCoherent=0.958607314842 SampleCountF=2.47856649559 CountEF=1.53147891704 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=0.819435650347 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] der preis ||| [X,1] the price for ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=2.46697171431 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] der preis ||| [X,1] the prize ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.55638073671 MaxLexEgivenF=1.65083241268 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] der preis ||| [X,1] the award ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.25751431531 MaxLexEgivenF=2.07922873362 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] der preis ||| [X,1] the purchase price ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=4.00478889938 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] der preis ||| [X,1] the cost ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.3473160645 MaxLexEgivenF=2.10738731056 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] der preis ||| [X,1] the retail price ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=4.4819101541 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] der preis ||| [X,1] on the price ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=2.91568268673 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 2-3
[X] ||| [X,1] der preis ||| [X,1] is the honouring ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.18661616352 MaxLexEgivenF=5.42074659146 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 2-3
[X] ||| [X,1] der preis ||| [X,1] a price ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89986968266 MaxLexEgivenF=1.74834559538 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] der preis ||| [X,1] its price ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89986968266 MaxLexEgivenF=2.77392970419 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] der preis ||| [X,1] award ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.73227148312 MaxLexEgivenF=1.79129089542 IsSingletonF=0 IsSingletonFE=1 ||| 2-1
[X] ||| [X,1] der preis ||| the price [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=0.819435650347 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 2-1
[X] ||| [X,1] der preis ||| price [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89986968266 MaxLexEgivenF=0.531497812145 IsSingletonF=0 IsSingletonFE=1 ||| 2-0
[X] ||| [X,1] der preis [X,2] ||| [X,1] [X,2] the price ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=0.819435650347 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 2-3
[X] ||| [X,1] der preis [X,2] ||| [X,1] der preis [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.740369453416 MaxLexEgivenF=4.50876693956 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] der preis [X,2] ||| [X,1] of price [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46642602332 MaxLexEgivenF=1.18680620737 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] der preis [X,2] ||| [X,1] the price [X,2] ||| EgivenFCoherent=1.04575749056 SampleCountF=2.47856649559 CountEF=1.44715803134 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=0.819435650347 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] der preis [X,2] ||| [X,1] the price of [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=1.47474404557 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] der preis [X,2] ||| [X,1] the price for [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=2.46697171431 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] der preis [X,2] ||| [X,1] the price shown [X,2] available ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=6.74341781729 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3 2-5
[X] ||| [X,1] der preis [X,2] ||| [X,1] the prize [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.55638073671 MaxLexEgivenF=1.65083241268 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] der preis [X,2] ||| [X,1] the award [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.25751431531 MaxLexEgivenF=2.07922873362 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] der preis [X,2] ||| [X,1] the purchase price [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=4.00478889938 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] der preis [X,2] ||| [X,1] the retail price [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=4.4819101541 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] der preis [X,2] ||| [X,1] on the price [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=2.91568268673 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 2-3
[X] ||| [X,1] der preis [X,2] ||| [X,1] is the honouring [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.18661616352 MaxLexEgivenF=5.42074659146 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 2-3
[X] ||| [X,1] der preis [X,2] ||| [X,1] a price [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89986968266 MaxLexEgivenF=1.74834559538 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] der preis [X,2] ||| [X,1] its price [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89986968266 MaxLexEgivenF=2.77392970419 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] der preis [X,2] ||| [X,1] award [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.73227148312 MaxLexEgivenF=1.79129089542 IsSingletonF=0 IsSingletonFE=1 ||| 2-1
[X] ||| [X,1] der preis [X,2] ||| the price [X,1] [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=0.819435650347 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 2-1
[X] ||| der preis ||| der preis ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.740369453416 MaxLexEgivenF=4.50876693956 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der preis ||| of accommodation ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.6444163865 MaxLexEgivenF=3.53963164859 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der preis ||| of prices ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.26282516024 MaxLexEgivenF=2.23619558316 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der preis ||| of price ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.46642602332 MaxLexEgivenF=1.18680620737 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| der preis ||| the prices ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.22151165176 MaxLexEgivenF=1.86882502614 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der preis ||| the price ||| EgivenFCoherent=0.568636235841 SampleCountF=2.47856649559 CountEF=1.91381385238 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=0.819435650347 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| der preis ||| the price for ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=2.46697171431 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| der preis ||| the prize ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.55638073671 MaxLexEgivenF=1.65083241268 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| der preis ||| the award ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=2.25751431531 MaxLexEgivenF=2.07922873362 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| der preis ||| the purchase price ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=4.00478889938 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 1-2
[X] ||| der preis ||| the cost ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=2.3473160645 MaxLexEgivenF=2.10738731056 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| der preis ||| the good ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.62581235073 MaxLexEgivenF=2.65668158503 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der preis ||| the glofiish ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.65941604446 MaxLexEgivenF=4.42753359667 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der preis ||| the best ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.24303416932 MaxLexEgivenF=3.42753359667 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der preis ||| the retail price ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=4.4819101541 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| der preis ||| the bed ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.90818601298 MaxLexEgivenF=3.52444360968 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der preis ||| the honouring ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.18661616352 MaxLexEgivenF=3.95041234195 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der preis ||| the press ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.63860007813 MaxLexEgivenF=4.42753359667 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der preis ||| the ticket price ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=3.91763872366 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| der preis ||| the awards ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.10476073504 MaxLexEgivenF=3.17226109157 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der preis ||| an award ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.73227148312 MaxLexEgivenF=4.26028981387 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der preis ||| at the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.98521362977 MaxLexEgivenF=2.31026230102 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-1
[X] ||| der preis ||| a price ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.89986968266 MaxLexEgivenF=1.74834559538 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| der preis ||| this price ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.89986968266 MaxLexEgivenF=2.68712067187 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| der preis ||| its price ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89986968266 MaxLexEgivenF=2.77392970419 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der preis ||| prices ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.69626881958 MaxLexEgivenF=1.58088718794 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-0
[X] ||| der preis ||| price ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89986968266 MaxLexEgivenF=0.531497812145 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0
[X] ||| der preis ||| prix ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.84710337531 MaxLexEgivenF=1.18535324903 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0
[X] ||| der preis [X,1] ||| [X,1] the price ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=0.819435650347 IsSingletonF=0 IsSingletonFE=0 ||| 0-1 1-2
[X] ||| der preis [X,1] ||| der preis [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.740369453416 MaxLexEgivenF=4.50876693956 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der preis [X,1] ||| of price [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.46642602332 MaxLexEgivenF=1.18680620737 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| der preis [X,1] ||| the prices [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.22151165176 MaxLexEgivenF=1.86882502614 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der preis [X,1] ||| the price [X,1] ||| EgivenFCoherent=0.706269243078 SampleCountF=2.47856649559 CountEF=1.77815125038 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=0.819435650347 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| der preis [X,1] ||| the price of [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=1.47474404557 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| der preis [X,1] ||| the price for [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=2.46697171431 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| der preis [X,1] ||| the price shown [X,1] available ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=6.74341781729 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2 1-4
[X] ||| der preis [X,1] ||| the prize [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.55638073671 MaxLexEgivenF=1.65083241268 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| der preis [X,1] ||| the award [X,1] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=2.25751431531 MaxLexEgivenF=2.07922873362 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| der preis [X,1] ||| the purchase price [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=4.00478889938 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 1-2
[X] ||| der preis [X,1] ||| the cost [X,1] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=2.3473160645 MaxLexEgivenF=2.10738731056 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| der preis [X,1] ||| the good [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.62581235073 MaxLexEgivenF=2.65668158503 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der preis [X,1] ||| the glofiish [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.65941604446 MaxLexEgivenF=4.42753359667 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der preis [X,1] ||| the retail price [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=4.4819101541 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| der preis [X,1] ||| the bed [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.90818601298 MaxLexEgivenF=3.52444360968 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der preis [X,1] ||| the honouring [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.18661616352 MaxLexEgivenF=3.95041234195 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der preis [X,1] ||| the ticket price [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=3.91763872366 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| der preis [X,1] ||| a price [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.89986968266 MaxLexEgivenF=1.74834559538 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| der preis [X,1] ||| this price [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89986968266 MaxLexEgivenF=2.68712067187 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der preis [X,1] ||| its price [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89986968266 MaxLexEgivenF=2.77392970419 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der preis [X,1] ||| prices [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.69626881958 MaxLexEgivenF=1.58088718794 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0
[X] ||| der preis [X,1] ||| prix [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.84710337531 MaxLexEgivenF=1.18535324903 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0
[X] ||| [X,1] der [X,2] der ||| [X,1] [X,2] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.40145910587 MaxLexEgivenF=0.655308395223 IsSingletonF=0 IsSingletonFE=1 ||| 3-2
[X] ||| [X,1] der [X,2] der ||| [X,1] der [X,2] der ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.504505628789 MaxLexEgivenF=4.52253156756 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] der [X,2] der ||| [X,1] of [X,2] of ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.40145910587 MaxLexEgivenF=1.31061679045 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] der [X,2] der ||| [X,1] of [X,2] of the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.31883208891 MaxLexEgivenF=1.59855462865 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4
[X] ||| [X,1] der [X,2] der ||| [X,1] of [X,2] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.31883208891 MaxLexEgivenF=0.943246233425 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] der [X,2] der ||| [X,1] of the [X,2] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.31883208891 MaxLexEgivenF=1.59855462865 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4
[X] ||| [X,1] der [X,2] der ||| [X,1] of the [X,2] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.31883208891 MaxLexEgivenF=1.23118407163 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4
[X] ||| [X,1] der [X,2] der ||| [X,1] the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.31883208891 MaxLexEgivenF=0.287937838202 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-1
[X] ||| [X,1] der [X,2] der ||| [X,1] the [X,2] of ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=1.31883208891 MaxLexEgivenF=0.943246233425 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] der [X,2] der ||| [X,1] the [X,2] of the ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.31883208891 MaxLexEgivenF=1.23118407163 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3 3-4
[X] ||| [X,1] der [X,2] der ||| [X,1] the [X,2] in ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.31883208891 MaxLexEgivenF=1.70873892881 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] der [X,2] der ||| [X,1] the [X,2] the ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=1.31883208891 MaxLexEgivenF=0.575875676404 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| der [X,1] der ||| der [X,1] der ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.504505628789 MaxLexEgivenF=4.52253156756 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] der ||| of [X,1] of ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.40145910587 MaxLexEgivenF=1.31061679045 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| der [X,1] der ||| of [X,1] of the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.31883208891 MaxLexEgivenF=1.59855462865 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| der [X,1] der ||| of [X,1] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.31883208891 MaxLexEgivenF=0.943246233425 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] der ||| of the [X,1] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.31883208891 MaxLexEgivenF=1.59855462865 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| der [X,1] der ||| of the [X,1] the ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.31883208891 MaxLexEgivenF=1.23118407163 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-3
[X] ||| der [X,1] der ||| the [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.31883208891 MaxLexEgivenF=0.287937838202 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-0
[X] ||| der [X,1] der ||| the [X,1] of ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=1.31883208891 MaxLexEgivenF=0.943246233425 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| der [X,1] der ||| the [X,1] of the ||| EgivenFCoherent=1.52287874528 SampleCountF=2.47856649559 CountEF=1 MaxLexFgivenE=1.31883208891 MaxLexEgivenF=1.23118407163 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 2-3
[X] ||| der [X,1] der ||| the [X,1] of this ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.31883208891 MaxLexEgivenF=3.09886909315 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| der [X,1] der ||| the [X,1] in ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.31883208891 MaxLexEgivenF=1.70873892881 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] der ||| the [X,1] the ||| EgivenFCoherent=1.47712125472 SampleCountF=2.47856649559 CountEF=1.04139268516 MaxLexFgivenE=1.31883208891 MaxLexEgivenF=0.575875676404 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| der [X,1] der [X,2] ||| der [X,1] der [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.504505628789 MaxLexEgivenF=4.52253156756 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] der [X,2] ||| of [X,1] [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.40145910587 MaxLexEgivenF=0.655308395223 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| der [X,1] der [X,2] ||| of [X,1] of [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.40145910587 MaxLexEgivenF=1.31061679045 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| der [X,1] der [X,2] ||| of [X,1] of the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.31883208891 MaxLexEgivenF=1.59855462865 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| der [X,1] der [X,2] ||| of [X,1] the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.31883208891 MaxLexEgivenF=0.943246233425 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] der [X,2] ||| of the [X,1] the [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.31883208891 MaxLexEgivenF=1.23118407163 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-3
[X] ||| der [X,1] der [X,2] ||| the [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.31883208891 MaxLexEgivenF=0.287937838202 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| der [X,1] der [X,2] ||| the [X,1] of [X,2] ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=1.31883208891 MaxLexEgivenF=0.943246233425 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| der [X,1] der [X,2] ||| the [X,1] of the [X,2] ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=1.31883208891 MaxLexEgivenF=1.23118407163 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 2-3
[X] ||| der [X,1] der [X,2] ||| the [X,1] of this [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.31883208891 MaxLexEgivenF=3.09886909315 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| der [X,1] der [X,2] ||| the [X,1] in [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.31883208891 MaxLexEgivenF=1.70873892881 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] der [X,2] ||| the [X,1] the [X,2] ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=1.31883208891 MaxLexEgivenF=0.575875676404 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| [X,1] der [X,2] ersten ||| [X,1] [X,2] first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81923214152 MaxLexEgivenF=0.26247907854 IsSingletonF=0 IsSingletonFE=1 ||| 3-2
[X] ||| [X,1] der [X,2] ersten ||| [X,1] , the [X,2] first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34447497371 MaxLexEgivenF=1.16104053075 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 3-4
[X] ||| [X,1] der [X,2] ersten ||| [X,1] der [X,2] ersten ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.708734162251 MaxLexEgivenF=4.73342951652 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] der [X,2] ersten ||| [X,1] of [X,2] first ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=1.38578848218 MaxLexEgivenF=0.917787473763 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] der [X,2] ersten ||| [X,1] of the [X,2] first ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.34447497371 MaxLexEgivenF=1.20572531197 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2 3-4
[X] ||| [X,1] der [X,2] ersten ||| [X,1] the [X,2] first ||| EgivenFCoherent=1.52287874528 SampleCountF=2.47856649559 CountEF=1 MaxLexFgivenE=1.34447497371 MaxLexEgivenF=0.550416916742 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] der [X,2] ersten ||| [X,1] the [X,2] first one ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34447497371 MaxLexEgivenF=2.81640401982 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4
[X] ||| [X,1] der [X,2] ersten ||| [X,1] the [X,2] 1st ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.16981709362 MaxLexEgivenF=2.48454239382 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| der [X,1] ersten ||| der [X,1] ersten ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.708734162251 MaxLexEgivenF=4.73342951652 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| der [X,1] ersten ||| of [X,1] first ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=1.38578848218 MaxLexEgivenF=0.917787473763 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| der [X,1] ersten ||| of the [X,1] first ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.34447497371 MaxLexEgivenF=1.20572531197 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-3
[X] ||| der [X,1] ersten ||| the [X,1] first ||| EgivenFCoherent=1.30102999566 SampleCountF=2.47856649559 CountEF=1.20411998266 MaxLexFgivenE=1.34447497371 MaxLexEgivenF=0.550416916742 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| der [X,1] ersten ||| the [X,1] first one ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34447497371 MaxLexEgivenF=2.81640401982 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| der [X,1] ersten ||| the [X,1] 1st ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.16981709362 MaxLexEgivenF=2.48454239382 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] ersten ||| the [X,1] initial ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.71203826199 MaxLexEgivenF=2.18790664625 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] ersten [X,2] ||| der [X,1] ersten [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.708734162251 MaxLexEgivenF=4.73342951652 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| der [X,1] ersten [X,2] ||| of [X,1] first [X,2] ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=1.38578848218 MaxLexEgivenF=0.917787473763 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| der [X,1] ersten [X,2] ||| of the [X,1] first [X,2] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.34447497371 MaxLexEgivenF=1.20572531197 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-3
[X] ||| der [X,1] ersten [X,2] ||| the [X,1] first [X,2] ||| EgivenFCoherent=1.39794000867 SampleCountF=2.47856649559 CountEF=1.11394335231 MaxLexFgivenE=1.34447497371 MaxLexEgivenF=0.550416916742 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| der [X,1] ersten [X,2] ||| the [X,1] 1st [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.16981709362 MaxLexEgivenF=2.48454239382 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] ersten [X,2] ||| the [X,1] initial [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.71203826199 MaxLexEgivenF=2.18790664625 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] der [X,2] ausgabe ||| [X,1] [X,2] output ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.08803333605 MaxLexEgivenF=0.827931996414 IsSingletonF=0 IsSingletonFE=1 ||| 3-2
[X] ||| [X,1] der [X,2] ausgabe ||| [X,1] [X,2] issue ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00818769139 MaxLexEgivenF=0.673890878102 IsSingletonF=0 IsSingletonFE=1 ||| 3-2
[X] ||| [X,1] der [X,2] ausgabe ||| [X,1] [X,2] delivery ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.15003572037 MaxLexEgivenF=2.53122337453 IsSingletonF=0 IsSingletonFE=1 ||| 3-2
[X] ||| [X,1] der [X,2] ausgabe ||| [X,1] of [X,2] issue ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.57474403205 MaxLexEgivenF=1.32919927332 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] der [X,2] ausgabe ||| [X,1] of [X,2] edition ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.65947520505 MaxLexEgivenF=1.43448332194 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] der [X,2] ausgabe ||| [X,1] of the [X,2] time of issue ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.53343052357 MaxLexEgivenF=4.68972552898 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4 3-6
[X] ||| [X,1] der [X,2] ausgabe ||| [X,1] of the [X,2] output ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.61327616824 MaxLexEgivenF=1.77117822984 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4
[X] ||| [X,1] der [X,2] ausgabe ||| [X,1] of the [X,2] issue ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.53343052357 MaxLexEgivenF=1.61713711153 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2 3-4
[X] ||| [X,1] der [X,2] ausgabe ||| [X,1] of the [X,2] edition ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=1.61816169657 MaxLexEgivenF=1.72242116014 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2 3-4
[X] ||| [X,1] der [X,2] ausgabe ||| [X,1] the [X,2] output ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.61327616824 MaxLexEgivenF=1.11586983462 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] der [X,2] ausgabe ||| [X,1] the [X,2] issue ||| EgivenFCoherent=1.24667233334 SampleCountF=2.47856649559 CountEF=1.2552725051 MaxLexFgivenE=1.53343052357 MaxLexEgivenF=0.961828716304 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] der [X,2] ausgabe ||| [X,1] the [X,2] edition ||| EgivenFCoherent=1.24667233334 SampleCountF=2.47856649559 CountEF=1.2552725051 MaxLexFgivenE=1.61816169657 MaxLexEgivenF=1.06711276492 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] der [X,2] ausgabe ||| [X,1] the [X,2] expense ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.26972124677 MaxLexEgivenF=3.34203995802 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] der [X,2] ausgabe ||| [X,1] the [X,2] delivery ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.67527855255 MaxLexEgivenF=2.81916121274 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] der [X,2] ausgabe ||| [X,1] to [X,2] issue ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00818769139 MaxLexEgivenF=1.68619614916 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] der [X,2] ausgabe ||| [X,1] from the [X,2] issues ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.89984047754 MaxLexEgivenF=5.40964674492 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 3-4
[X] ||| [X,1] der [X,2] ausgabe ||| [X,1] that [X,2] edition ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.09291886438 MaxLexEgivenF=3.10047207509 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] der [X,2] ausgabe ||| [X,1] a [X,2] issue ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00818769139 MaxLexEgivenF=1.89073866134 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] der [X,2] ausgabe ||| [X,1] this [X,2] issue ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00818769139 MaxLexEgivenF=2.82951373783 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] der [X,2] ausgabe ||| [X,1] this [X,2] edition ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.09291886438 MaxLexEgivenF=2.93479778644 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] der [X,2] ausgabe ||| [X,1] its [X,2] edition ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.09291886438 MaxLexEgivenF=3.02160681876 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| der [X,1] ausgabe ||| of [X,1] issue ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.57474403205 MaxLexEgivenF=1.32919927332 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe ||| of [X,1] edition ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.65947520505 MaxLexEgivenF=1.43448332194 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe ||| of the [X,1] time of issue ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.53343052357 MaxLexEgivenF=4.68972552898 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3 2-5
[X] ||| der [X,1] ausgabe ||| of the [X,1] output ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.61327616824 MaxLexEgivenF=1.77117822984 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| der [X,1] ausgabe ||| of the [X,1] issue ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.53343052357 MaxLexEgivenF=1.61713711153 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-3
[X] ||| der [X,1] ausgabe ||| of the [X,1] edition ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=1.61816169657 MaxLexEgivenF=1.72242116014 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-3
[X] ||| der [X,1] ausgabe ||| of the [X,1] issuance ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.65941604446 MaxLexEgivenF=3.19571600701 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| der [X,1] ausgabe ||| the [X,1] output ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.61327616824 MaxLexEgivenF=1.11586983462 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe ||| the [X,1] issue ||| EgivenFCoherent=1.15490195999 SampleCountF=2.47856649559 CountEF=1.34242268082 MaxLexFgivenE=1.53343052357 MaxLexEgivenF=0.961828716304 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe ||| the [X,1] edition ||| EgivenFCoherent=1.1346985739 SampleCountF=2.47856649559 CountEF=1.36172783602 MaxLexFgivenE=1.61816169657 MaxLexEgivenF=1.06711276492 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe ||| the [X,1] expense ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.26972124677 MaxLexEgivenF=3.34203995802 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe ||| the [X,1] delivery ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.67527855255 MaxLexEgivenF=2.81916121274 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe ||| the [X,1] issues ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.89984047754 MaxLexEgivenF=3.21710122141 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe ||| to [X,1] issue ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00818769139 MaxLexEgivenF=1.68619614916 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe ||| that [X,1] edition ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.09291886438 MaxLexEgivenF=3.10047207509 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe ||| a [X,1] issue ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00818769139 MaxLexEgivenF=1.89073866134 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe ||| this [X,1] issue ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00818769139 MaxLexEgivenF=2.82951373783 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe ||| this [X,1] edition ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.09291886438 MaxLexEgivenF=2.93479778644 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe ||| its [X,1] edition ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.09291886438 MaxLexEgivenF=3.02160681876 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe [X,2] ||| of [X,1] issue [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.57474403205 MaxLexEgivenF=1.32919927332 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe [X,2] ||| of [X,1] edition [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.65947520505 MaxLexEgivenF=1.43448332194 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe [X,2] ||| of [X,1] edition of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.65947520505 MaxLexEgivenF=2.08979171716 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe [X,2] ||| of the [X,1] time of issue [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.53343052357 MaxLexEgivenF=4.68972552898 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3 2-5
[X] ||| der [X,1] ausgabe [X,2] ||| of the [X,1] output [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.61327616824 MaxLexEgivenF=1.77117822984 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| der [X,1] ausgabe [X,2] ||| of the [X,1] issue [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.53343052357 MaxLexEgivenF=1.61713711153 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-3
[X] ||| der [X,1] ausgabe [X,2] ||| of the [X,1] edition [X,2] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.61816169657 MaxLexEgivenF=1.72242116014 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-3
[X] ||| der [X,1] ausgabe [X,2] ||| of the [X,1] edition of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.61816169657 MaxLexEgivenF=2.37772955536 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| der [X,1] ausgabe [X,2] ||| the [X,1] output [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.61327616824 MaxLexEgivenF=1.11586983462 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe [X,2] ||| the [X,1] issue [X,2] ||| EgivenFCoherent=1.27300127206 SampleCountF=2.47856649559 CountEF=1.23044892138 MaxLexFgivenE=1.53343052357 MaxLexEgivenF=0.961828716304 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe [X,2] ||| the [X,1] issue , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.53343052357 MaxLexEgivenF=1.57245233031 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe [X,2] ||| the [X,1] issue for [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.53343052357 MaxLexEgivenF=2.60936478027 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe [X,2] ||| the [X,1] edition [X,2] ||| EgivenFCoherent=1.24667233334 SampleCountF=2.47856649559 CountEF=1.2552725051 MaxLexFgivenE=1.61816169657 MaxLexEgivenF=1.06711276492 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe [X,2] ||| the [X,1] edition of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.61816169657 MaxLexEgivenF=1.72242116014 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe [X,2] ||| the [X,1] expense [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.26972124677 MaxLexEgivenF=3.34203995802 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe [X,2] ||| the [X,1] delivery [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.67527855255 MaxLexEgivenF=2.81916121274 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe [X,2] ||| the [X,1] issues [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.89984047754 MaxLexEgivenF=3.21710122141 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe [X,2] ||| to [X,1] issue [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00818769139 MaxLexEgivenF=1.68619614916 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe [X,2] ||| this [X,1] issue [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00818769139 MaxLexEgivenF=2.82951373783 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe [X,2] ||| this [X,1] edition [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.09291886438 MaxLexEgivenF=2.93479778644 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe [X,2] ||| its [X,1] edition [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.09291886438 MaxLexEgivenF=3.02160681876 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| der [X,1] ausgabe [X,2] ||| our [X,1] [X,2] edition ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.09291886438 MaxLexEgivenF=3.20689466766 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| [X,1] preis der ||| [X,1] right in the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.96608070364 MaxLexEgivenF=4.6178857659 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-3
[X] ||| [X,1] preis der ||| [X,1] prices of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.26282516024 MaxLexEgivenF=2.23619558316 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] preis der ||| [X,1] prices of the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.22151165176 MaxLexEgivenF=2.52413342136 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] preis der ||| [X,1] preis der ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=0.740369453416 MaxLexEgivenF=4.50876693956 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] preis der ||| [X,1] price of ||| EgivenFCoherent=1.30102999566 SampleCountF=2.47856649559 CountEF=1.20411998266 MaxLexFgivenE=1.46642602332 MaxLexEgivenF=1.18680620737 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] preis der ||| [X,1] price of the ||| EgivenFCoherent=1.17609125906 SampleCountF=2.47856649559 CountEF=1.32221929473 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=1.47474404557 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 2-3
[X] ||| [X,1] preis der ||| [X,1] price of an ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46642602332 MaxLexEgivenF=3.65580512581 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] preis der ||| [X,1] price of a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46642602332 MaxLexEgivenF=2.40365399061 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] preis der ||| [X,1] price of tosca ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46642602332 MaxLexEgivenF=6.19722834516 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] preis der ||| [X,1] price for ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89986968266 MaxLexEgivenF=2.17903387611 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] preis der ||| [X,1] prize of ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.59769424519 MaxLexEgivenF=2.0182029697 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] preis der ||| [X,1] prize of the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.55638073671 MaxLexEgivenF=2.30614080791 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] preis der ||| [X,1] prize in ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.03113790453 MaxLexEgivenF=2.78369566509 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] preis der ||| [X,1] prize in the ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.55638073671 MaxLexEgivenF=3.07163350329 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-3
[X] ||| [X,1] preis der ||| [X,1] prize for ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.03113790453 MaxLexEgivenF=3.01043063845 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] preis der ||| [X,1] award from the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.25751431531 MaxLexEgivenF=4.27177425714 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-3
[X] ||| [X,1] preis der ||| [X,1] amount of the ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=3.02814321668 MaxLexEgivenF=3.50305839528 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 2-3
[X] ||| [X,1] preis der ||| [X,1] purchase price of the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=4.6600972946 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 2-3 2-4
[X] ||| [X,1] preis der ||| [X,1] cost of ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.38862957298 MaxLexEgivenF=2.47475786758 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] preis der ||| [X,1] cost of the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.3473160645 MaxLexEgivenF=2.76269570578 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] preis der ||| [X,1] cost of a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.38862957298 MaxLexEgivenF=3.69160565082 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] preis der ||| [X,1] cost of your ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.38862957298 MaxLexEgivenF=4.9309938063 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] preis der ||| [X,1] cleaning of the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.83550730351 MaxLexEgivenF=4.60572073718 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] preis der [X,2] ||| [X,1] [X,2] price of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46642602332 MaxLexEgivenF=1.18680620737 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 2-3
[X] ||| [X,1] preis der [X,2] ||| [X,1] [X,2] prize ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.03113790453 MaxLexEgivenF=1.36289457448 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] preis der [X,2] ||| [X,1] the [X,2] price ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=0.819435650347 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 1-3
[X] ||| [X,1] preis der [X,2] ||| [X,1] prices of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.26282516024 MaxLexEgivenF=2.23619558316 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] preis der [X,2] ||| [X,1] prices of the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.22151165176 MaxLexEgivenF=2.52413342136 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] preis der [X,2] ||| [X,1] preis der [X,2] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=0.740369453416 MaxLexEgivenF=4.50876693956 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] preis der [X,2] ||| [X,1] price [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.89986968266 MaxLexEgivenF=0.531497812145 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] preis der [X,2] ||| [X,1] price of [X,2] ||| EgivenFCoherent=1.43572856956 SampleCountF=2.47856649559 CountEF=1.07918124605 MaxLexFgivenE=1.46642602332 MaxLexEgivenF=1.18680620737 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] preis der [X,2] ||| [X,1] price of the [X,2] ||| EgivenFCoherent=1.36317790241 SampleCountF=2.47856649559 CountEF=1.14612803568 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=1.47474404557 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 2-3
[X] ||| [X,1] preis der [X,2] ||| [X,1] price of an [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46642602332 MaxLexEgivenF=3.65580512581 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] preis der [X,2] ||| [X,1] price of a [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46642602332 MaxLexEgivenF=2.40365399061 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] preis der [X,2] ||| [X,1] price of tosca [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46642602332 MaxLexEgivenF=6.19722834516 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] preis der [X,2] ||| [X,1] price for [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89986968266 MaxLexEgivenF=2.17903387611 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] preis der [X,2] ||| [X,1] prize [X,2] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.59769424519 MaxLexEgivenF=2.0182029697 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-3
[X] ||| [X,1] preis der [X,2] ||| [X,1] prize of [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.59769424519 MaxLexEgivenF=2.0182029697 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] preis der [X,2] ||| [X,1] prize of the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.55638073671 MaxLexEgivenF=2.30614080791 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] preis der [X,2] ||| [X,1] prize in the [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.55638073671 MaxLexEgivenF=3.07163350329 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-3
[X] ||| [X,1] preis der [X,2] ||| [X,1] prize for [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.03113790453 MaxLexEgivenF=3.01043063845 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] preis der [X,2] ||| [X,1] award from the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.25751431531 MaxLexEgivenF=4.27177425714 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-3
[X] ||| [X,1] preis der [X,2] ||| [X,1] amount of the [X,2] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=3.02814321668 MaxLexEgivenF=3.50305839528 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 2-3
[X] ||| [X,1] preis der [X,2] ||| [X,1] purchase price of the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=4.6600972946 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 2-3 2-4
[X] ||| [X,1] preis der [X,2] ||| [X,1] cost of [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.38862957298 MaxLexEgivenF=2.47475786758 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] preis der [X,2] ||| [X,1] cost of the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.3473160645 MaxLexEgivenF=2.76269570578 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] preis der [X,2] ||| [X,1] cost of a [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.38862957298 MaxLexEgivenF=3.69160565082 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] preis der [X,2] ||| [X,1] cost of your [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.38862957298 MaxLexEgivenF=4.9309938063 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] preis der [X,2] ||| [X,1] cleaning of the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.83550730351 MaxLexEgivenF=4.60572073718 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| preis der ||| the price for ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=2.46697171431 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2
[X] ||| preis der ||| right in the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.96608070364 MaxLexEgivenF=4.6178857659 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-2
[X] ||| preis der ||| prices of ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.26282516024 MaxLexEgivenF=2.23619558316 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| preis der ||| prices of the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.22151165176 MaxLexEgivenF=2.52413342136 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| preis der ||| preis der ||| EgivenFCoherent=1.52287874528 SampleCountF=2.47856649559 CountEF=1 MaxLexFgivenE=0.740369453416 MaxLexEgivenF=4.50876693956 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| preis der ||| price of ||| EgivenFCoherent=1.22184874962 SampleCountF=2.47856649559 CountEF=1.27875360095 MaxLexFgivenE=1.46642602332 MaxLexEgivenF=1.18680620737 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| preis der ||| price of the ||| EgivenFCoherent=1.17609125906 SampleCountF=2.47856649559 CountEF=1.32221929473 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=1.47474404557 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 1-2
[X] ||| preis der ||| price of an ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46642602332 MaxLexEgivenF=3.65580512581 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| preis der ||| price of a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46642602332 MaxLexEgivenF=2.40365399061 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| preis der ||| price of tosca ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46642602332 MaxLexEgivenF=6.19722834516 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| preis der ||| price for ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89986968266 MaxLexEgivenF=2.17903387611 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| preis der ||| prize of ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.59769424519 MaxLexEgivenF=2.0182029697 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| preis der ||| prize of the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.55638073671 MaxLexEgivenF=2.30614080791 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| preis der ||| prize in ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.03113790453 MaxLexEgivenF=2.78369566509 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| preis der ||| prize in the ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.55638073671 MaxLexEgivenF=3.07163350329 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-2
[X] ||| preis der ||| prize for ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.03113790453 MaxLexEgivenF=3.01043063845 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| preis der ||| award from the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.25751431531 MaxLexEgivenF=4.27177425714 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-2
[X] ||| preis der ||| amount of the ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=3.02814321668 MaxLexEgivenF=3.50305839528 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 1-2
[X] ||| preis der ||| purchase price of the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=4.6600972946 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2 1-3
[X] ||| preis der ||| cost of ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.38862957298 MaxLexEgivenF=2.47475786758 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| preis der ||| cost of the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.3473160645 MaxLexEgivenF=2.76269570578 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| preis der ||| cost of a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.38862957298 MaxLexEgivenF=3.69160565082 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| preis der ||| cost of your ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.38862957298 MaxLexEgivenF=4.9309938063 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| preis der ||| cleaning of the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.83550730351 MaxLexEgivenF=4.60572073718 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| preis der [X,1] ||| [X,1] price ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89986968266 MaxLexEgivenF=0.531497812145 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| preis der [X,1] ||| [X,1] price of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46642602332 MaxLexEgivenF=1.18680620737 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 1-2
[X] ||| preis der [X,1] ||| [X,1] prize ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.03113790453 MaxLexEgivenF=1.36289457448 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| preis der [X,1] ||| the [X,1] price ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=0.819435650347 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 0-2
[X] ||| preis der [X,1] ||| prices of [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.26282516024 MaxLexEgivenF=2.23619558316 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| preis der [X,1] ||| prices of the [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.22151165176 MaxLexEgivenF=2.52413342136 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| preis der [X,1] ||| preis der [X,1] ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=0.740369453416 MaxLexEgivenF=4.50876693956 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| preis der [X,1] ||| price [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.89986968266 MaxLexEgivenF=0.531497812145 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| preis der [X,1] ||| price of [X,1] ||| EgivenFCoherent=1.39794000867 SampleCountF=2.47856649559 CountEF=1.11394335231 MaxLexFgivenE=1.46642602332 MaxLexEgivenF=1.18680620737 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| preis der [X,1] ||| price of the [X,1] ||| EgivenFCoherent=1.36317790241 SampleCountF=2.47856649559 CountEF=1.14612803568 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=1.47474404557 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 1-2
[X] ||| preis der [X,1] ||| price of an [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46642602332 MaxLexEgivenF=3.65580512581 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| preis der [X,1] ||| price of a [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46642602332 MaxLexEgivenF=2.40365399061 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| preis der [X,1] ||| price of tosca [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46642602332 MaxLexEgivenF=6.19722834516 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| preis der [X,1] ||| price for [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89986968266 MaxLexEgivenF=2.17903387611 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| preis der [X,1] ||| prize [X,1] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.59769424519 MaxLexEgivenF=2.0182029697 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-2
[X] ||| preis der [X,1] ||| prize of [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.59769424519 MaxLexEgivenF=2.0182029697 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| preis der [X,1] ||| prize of the [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.55638073671 MaxLexEgivenF=2.30614080791 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| preis der [X,1] ||| prize in the [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.55638073671 MaxLexEgivenF=3.07163350329 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-2
[X] ||| preis der [X,1] ||| prize for [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.03113790453 MaxLexEgivenF=3.01043063845 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| preis der [X,1] ||| award from the [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.25751431531 MaxLexEgivenF=4.27177425714 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-2
[X] ||| preis der [X,1] ||| amount of the [X,1] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=3.02814321668 MaxLexEgivenF=3.50305839528 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 1-2
[X] ||| preis der [X,1] ||| purchase price of the [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42511251485 MaxLexEgivenF=4.6600972946 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2 1-3
[X] ||| preis der [X,1] ||| cost of [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.38862957298 MaxLexEgivenF=2.47475786758 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| preis der [X,1] ||| cost of the [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.3473160645 MaxLexEgivenF=2.76269570578 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| preis der [X,1] ||| cost of a [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.38862957298 MaxLexEgivenF=3.69160565082 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| preis der [X,1] ||| cost of your [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.38862957298 MaxLexEgivenF=4.9309938063 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| preis der [X,1] ||| cleaning of the [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.83550730351 MaxLexEgivenF=4.60572073718 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| [X,1] preis [X,2] ersten ||| [X,1] price [X,2] first ||| EgivenFCoherent=1.47348697006 SampleCountF=2.07918124605 CountEF=0.698970004336 MaxLexFgivenE=1.45075539964 MaxLexEgivenF=0.793976890685 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] preis [X,2] ersten ||| [X,1] amount [X,2] first ||| EgivenFCoherent=1.23044892138 SampleCountF=2.07918124605 CountEF=0.903089986992 MaxLexFgivenE=3.05378610147 MaxLexEgivenF=2.82229124039 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| preis [X,1] ersten ||| price [X,1] first ||| EgivenFCoherent=1.47348697006 SampleCountF=2.07918124605 CountEF=0.698970004336 MaxLexFgivenE=1.45075539964 MaxLexEgivenF=0.793976890685 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| preis [X,1] ersten ||| amount [X,1] first ||| EgivenFCoherent=1.23044892138 SampleCountF=2.07918124605 CountEF=0.903089986992 MaxLexFgivenE=3.05378610147 MaxLexEgivenF=2.82229124039 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| preis [X,1] ersten ||| fee [X,1] 1 ||| EgivenFCoherent=2.07554696139 SampleCountF=2.07918124605 CountEF=0.301029995664 MaxLexFgivenE=5.72367495891 MaxLexEgivenF=5.95671836639 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| preis [X,1] ersten [X,2] ||| price [X,1] first [X,2] ||| EgivenFCoherent=1.47348697006 SampleCountF=2.07918124605 CountEF=0.698970004336 MaxLexFgivenE=1.45075539964 MaxLexEgivenF=0.793976890685 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| preis [X,1] ersten [X,2] ||| amount [X,1] first [X,2] ||| EgivenFCoherent=1.23044892138 SampleCountF=2.07918124605 CountEF=0.903089986992 MaxLexFgivenE=3.05378610147 MaxLexEgivenF=2.82229124039 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| preis [X,1] ersten [X,2] ||| fee [X,1] 1 [X,2] ||| EgivenFCoherent=2.07554696139 SampleCountF=2.07918124605 CountEF=0.301029995664 MaxLexFgivenE=5.72367495891 MaxLexEgivenF=5.95671836639 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] der ersten ||| [X,1] der ersten ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=0.708734162251 MaxLexEgivenF=4.73342951652 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] der ersten ||| [X,1] of the first ||| EgivenFCoherent=0.985759560885 SampleCountF=2.47856649559 CountEF=1.50514997832 MaxLexFgivenE=1.34447497371 MaxLexEgivenF=1.20572531197 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2 2-3
[X] ||| [X,1] der ersten ||| [X,1] of the best ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.84509416064 MaxLexEgivenF=3.91509704878 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 2-3
[X] ||| [X,1] der ersten ||| [X,1] of first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.38578848218 MaxLexEgivenF=0.917787473763 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] der ersten ||| [X,1] in the first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34447497371 MaxLexEgivenF=1.97121800735 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 2-3
[X] ||| [X,1] der ersten ||| [X,1] the first ||| EgivenFCoherent=0.50399340112 SampleCountF=2.47856649559 CountEF=1.97772360529 MaxLexFgivenE=1.34447497371 MaxLexEgivenF=0.550416916742 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] der ersten ||| [X,1] the initial ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.71203826199 MaxLexEgivenF=2.18790664625 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] der ersten ||| [X,1] the very first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34447497371 MaxLexEgivenF=2.70802013637 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] der ersten ||| [X,1] the next ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.38174893802 MaxLexEgivenF=3.04494480551 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] der ersten ||| [X,1] the pioneers of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.62789899301 MaxLexEgivenF=4.61406705312 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 1-3
[X] ||| [X,1] der ersten ||| [X,1] the front ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.40944205063 MaxLexEgivenF=3.27751742052 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] der ersten ||| [X,1] their first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81923214152 MaxLexEgivenF=2.893709047 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] der ersten ||| [X,1] my first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81923214152 MaxLexEgivenF=4.01312821 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] der ersten ||| [X,1] its first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81923214152 MaxLexEgivenF=2.50491097058 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] der ersten ||| [X,1] first ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.81923214152 MaxLexEgivenF=0.26247907854 IsSingletonF=0 IsSingletonFE=0 ||| 2-1
[X] ||| [X,1] der ersten ||| [X,1] miles ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.80395482748 MaxLexEgivenF=4.36979082403 IsSingletonF=0 IsSingletonFE=1 ||| 2-1
[X] ||| [X,1] der ersten [X,2] ||| [X,2] [X,1] the first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34447497371 MaxLexEgivenF=0.550416916742 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 2-3
[X] ||| [X,1] der ersten [X,2] ||| [X,2] [X,1] first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81923214152 MaxLexEgivenF=0.26247907854 IsSingletonF=0 IsSingletonFE=1 ||| 2-2
[X] ||| [X,1] der ersten [X,2] ||| [X,1] der ersten [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=0.708734162251 MaxLexEgivenF=4.73342951652 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] der ersten [X,2] ||| [X,1] of the first [X,2] ||| EgivenFCoherent=1.02996322338 SampleCountF=2.47856649559 CountEF=1.4623979979 MaxLexFgivenE=1.34447497371 MaxLexEgivenF=1.20572531197 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2 2-3
[X] ||| [X,1] der ersten [X,2] ||| [X,1] of the best [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.84509416064 MaxLexEgivenF=3.91509704878 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 2-3
[X] ||| [X,1] der ersten [X,2] ||| [X,1] the first [X,2] ||| EgivenFCoherent=0.602059991328 SampleCountF=2.47856649559 CountEF=1.88081359228 MaxLexFgivenE=1.34447497371 MaxLexEgivenF=0.550416916742 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] der ersten [X,2] ||| [X,1] the initial [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.71203826199 MaxLexEgivenF=2.18790664625 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] der ersten [X,2] ||| [X,1] the pioneers of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.62789899301 MaxLexEgivenF=4.61406705312 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 1-3
[X] ||| [X,1] der ersten [X,2] ||| [X,1] the front [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.40944205063 MaxLexEgivenF=3.27751742052 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] der ersten [X,2] ||| [X,1] their first [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81923214152 MaxLexEgivenF=2.893709047 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] der ersten [X,2] ||| [X,1] my first [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81923214152 MaxLexEgivenF=4.01312821 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] der ersten [X,2] ||| [X,1] its first [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81923214152 MaxLexEgivenF=2.50491097058 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] der ersten [X,2] ||| [X,1] first [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81923214152 MaxLexEgivenF=0.26247907854 IsSingletonF=0 IsSingletonFE=1 ||| 2-1
[X] ||| [X,1] der ersten [X,2] ||| [X,1] miles [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.80395482748 MaxLexEgivenF=4.36979082403 IsSingletonF=0 IsSingletonFE=1 ||| 2-1
[X] ||| [X,1] der ersten [X,2] ||| the first [X,2] [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34447497371 MaxLexEgivenF=0.550416916742 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-1
[X] ||| [X,1] der ersten [X,2] ||| first [X,2] [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81923214152 MaxLexEgivenF=0.26247907854 IsSingletonF=0 IsSingletonFE=1 ||| 2-0
[X] ||| der ersten ||| der ersten ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=0.708734162251 MaxLexEgivenF=4.73342951652 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| der ersten ||| of the first ||| EgivenFCoherent=0.958607314842 SampleCountF=2.47856649559 CountEF=1.53147891704 MaxLexFgivenE=1.34447497371 MaxLexEgivenF=1.20572531197 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 1-2
[X] ||| der ersten ||| of the best ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.84509416064 MaxLexEgivenF=3.91509704878 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2
[X] ||| der ersten ||| of first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.38578848218 MaxLexEgivenF=0.917787473763 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der ersten ||| the first ||| EgivenFCoherent=0.408935392974 SampleCountF=2.47856649559 CountEF=2.07188200731 MaxLexFgivenE=1.34447497371 MaxLexEgivenF=0.550416916742 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| der ersten ||| the initial ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.71203826199 MaxLexEgivenF=2.18790664625 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| der ersten ||| the very first ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.34447497371 MaxLexEgivenF=2.70802013637 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 1-2
[X] ||| der ersten ||| the next ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.38174893802 MaxLexEgivenF=3.04494480551 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der ersten ||| the pioneers of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.62789899301 MaxLexEgivenF=4.61406705312 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 0-2
[X] ||| der ersten ||| the front ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.40944205063 MaxLexEgivenF=3.27751742052 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der ersten ||| their first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81923214152 MaxLexEgivenF=2.893709047 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der ersten ||| my first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81923214152 MaxLexEgivenF=4.01312821 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der ersten ||| its first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81923214152 MaxLexEgivenF=2.50491097058 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der ersten [X,1] ||| der ersten [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=0.708734162251 MaxLexEgivenF=4.73342951652 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| der ersten [X,1] ||| of the first [X,1] ||| EgivenFCoherent=1 SampleCountF=2.47856649559 CountEF=1.49136169383 MaxLexFgivenE=1.34447497371 MaxLexEgivenF=1.20572531197 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 1-2
[X] ||| der ersten [X,1] ||| of the best [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.84509416064 MaxLexEgivenF=3.91509704878 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2
[X] ||| der ersten [X,1] ||| the first [X,1] ||| EgivenFCoherent=0.527731248075 SampleCountF=2.47856649559 CountEF=1.95424250944 MaxLexFgivenE=1.34447497371 MaxLexEgivenF=0.550416916742 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| der ersten [X,1] ||| the initial [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.71203826199 MaxLexEgivenF=2.18790664625 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| der ersten [X,1] ||| the very first [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34447497371 MaxLexEgivenF=2.70802013637 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| der ersten [X,1] ||| the pioneers of [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.62789899301 MaxLexEgivenF=4.61406705312 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 0-2
[X] ||| der ersten [X,1] ||| the front [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.40944205063 MaxLexEgivenF=3.27751742052 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der ersten [X,1] ||| their first [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81923214152 MaxLexEgivenF=2.893709047 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der ersten [X,1] ||| my first [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81923214152 MaxLexEgivenF=4.01312821 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| der ersten [X,1] ||| its first [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81923214152 MaxLexEgivenF=2.50491097058 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| [X,1] ersten [X,2] ausgabe ||| [X,1] first [X,2] edition ||| EgivenFCoherent=1.11394335231 SampleCountF=1.14612803568 CountEF=0.301029995664 MaxLexFgivenE=1.64380458136 MaxLexEgivenF=1.04165400525 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] ersten [X,2] ausgabe ||| [X,1] first [X,2] issues ||| EgivenFCoherent=1.11394335231 SampleCountF=1.14612803568 CountEF=0.301029995664 MaxLexFgivenE=3.92548336233 MaxLexEgivenF=3.19164246175 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| ersten [X,1] ausgabe ||| first [X,1] edition ||| EgivenFCoherent=1.11394335231 SampleCountF=1.14612803568 CountEF=0.301029995664 MaxLexFgivenE=1.64380458136 MaxLexEgivenF=1.04165400525 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ersten [X,1] ausgabe ||| first [X,1] issues ||| EgivenFCoherent=1.11394335231 SampleCountF=1.14612803568 CountEF=0.301029995664 MaxLexFgivenE=3.92548336233 MaxLexEgivenF=3.19164246175 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ersten [X,1] ausgabe [X,2] ||| first [X,1] edition [X,2] ||| EgivenFCoherent=1.11394335231 SampleCountF=1.14612803568 CountEF=0.301029995664 MaxLexFgivenE=1.64380458136 MaxLexEgivenF=1.04165400525 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ersten [X,1] ausgabe [X,2] ||| first [X,1] issues [X,2] ||| EgivenFCoherent=1.11394335231 SampleCountF=1.14612803568 CountEF=0.301029995664 MaxLexFgivenE=3.92548336233 MaxLexEgivenF=3.19164246175 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] was war der ||| [X,1] what was the ||| EgivenFCoherent=0.602059991328 SampleCountF=1.11394335231 CountEF=0.602059991328 MaxLexFgivenE=2.06164026731 MaxLexEgivenF=1.37600597279 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 3-3
[X] ||| [X,1] was war der [X,2] ||| [X,1] what was the [X,2] ||| EgivenFCoherent=0.778151250384 SampleCountF=1.11394335231 CountEF=0.47712125472 MaxLexFgivenE=2.06164026731 MaxLexEgivenF=1.37600597279 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 3-3
[X] ||| was war der ||| what was the ||| EgivenFCoherent=0.47712125472 SampleCountF=1.11394335231 CountEF=0.698970004336 MaxLexFgivenE=2.06164026731 MaxLexEgivenF=1.37600597279 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 2-2
[X] ||| was war der ||| what is the ||| EgivenFCoherent=0.778151250384 SampleCountF=1.11394335231 CountEF=0.47712125472 MaxLexFgivenE=4.05724103511 MaxLexEgivenF=2.41258913661 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 1-1 2-2
[X] ||| was war der [X,1] ||| what was the [X,1] ||| EgivenFCoherent=0.602059991328 SampleCountF=1.11394335231 CountEF=0.602059991328 MaxLexFgivenE=2.06164026731 MaxLexEgivenF=1.37600597279 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 2-2
[X] ||| was war der [X,1] ||| what is the [X,1] ||| EgivenFCoherent=0.778151250384 SampleCountF=1.11394335231 CountEF=0.47712125472 MaxLexFgivenE=4.05724103511 MaxLexEgivenF=2.41258913661 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 1-1 2-2
[X] ||| [X,1] was war [X,2] der ||| [X,1] what was [X,2] the ||| EgivenFCoherent=1.36172783602 SampleCountF=1.38021124171 CountEF=0.301029995664 MaxLexFgivenE=2.06164026731 MaxLexEgivenF=1.37600597279 IsSingletonF=1 IsSingletonFE=1 ||| 1-1 2-2 4-4
[X] ||| was war [X,1] der ||| what was [X,1] of ||| EgivenFCoherent=1.36172783602 SampleCountF=1.38021124171 CountEF=0.301029995664 MaxLexFgivenE=2.10295377578 MaxLexEgivenF=1.74337652981 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| was war [X,1] der ||| what was [X,1] the ||| EgivenFCoherent=0.884606581298 SampleCountF=1.38021124171 CountEF=0.602059991328 MaxLexFgivenE=2.06164026731 MaxLexEgivenF=1.37600597279 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3
[X] ||| was war [X,1] der ||| what was [X,1] which ||| EgivenFCoherent=1.36172783602 SampleCountF=1.38021124171 CountEF=0.301029995664 MaxLexFgivenE=2.53639743512 MaxLexEgivenF=2.27025505475 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| was war [X,1] der [X,2] ||| what was [X,1] [X,2] ||| EgivenFCoherent=0.884606581298 SampleCountF=1.38021124171 CountEF=0.602059991328 MaxLexFgivenE=2.53639743512 MaxLexEgivenF=1.08806813458 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| was war [X,1] der [X,2] ||| what was [X,1] of [X,2] ||| EgivenFCoherent=1.36172783602 SampleCountF=1.38021124171 CountEF=0.301029995664 MaxLexFgivenE=2.10295377578 MaxLexEgivenF=1.74337652981 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| was war [X,1] der [X,2] ||| what was [X,1] the [X,2] ||| EgivenFCoherent=0.884606581298 SampleCountF=1.38021124171 CountEF=0.602059991328 MaxLexFgivenE=2.06164026731 MaxLexEgivenF=1.37600597279 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3
[X] ||| [X,1] was [X,2] der preis ||| [X,1] what [X,2] the price ||| EgivenFCoherent=1.07918124605 SampleCountF=1.11394335231 CountEF=0.301029995664 MaxLexFgivenE=1.92413142711 MaxLexEgivenF=1.47375269925 IsSingletonF=1 IsSingletonFE=1 ||| 1-1 3-3 4-4
[X] ||| was [X,1] der preis ||| what [X,1] the price ||| EgivenFCoherent=0.47712125472 SampleCountF=1.11394335231 CountEF=0.698970004336 MaxLexFgivenE=1.92413142711 MaxLexEgivenF=1.47375269925 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| was [X,1] der preis [X,2] ||| what [X,1] the price [X,2] ||| EgivenFCoherent=0.778151250384 SampleCountF=1.11394335231 CountEF=0.47712125472 MaxLexFgivenE=1.92413142711 MaxLexEgivenF=1.47375269925 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| was [X,1] der preis [X,2] ||| what [X,1] the price of [X,2] ||| EgivenFCoherent=1.07918124605 SampleCountF=1.11394335231 CountEF=0.301029995664 MaxLexFgivenE=1.92413142711 MaxLexEgivenF=2.12906109447 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| was [X,1] der [X,2] der ||| was [X,1] der [X,2] der ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.94574034252 MaxLexEgivenF=5.44194670157 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| was [X,1] der [X,2] der ||| which [X,1] the [X,2] of the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.96891837349 MaxLexEgivenF=2.41337099179 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4 4-5
[X] ||| was [X,1] der [X,2] der ||| which is [X,1] the [X,2] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.96891837349 MaxLexEgivenF=3.22839684607 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3 4-5
[X] ||| was [X,1] der [X,2] der ||| what [X,1] of the [X,2] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81785100117 MaxLexEgivenF=2.25287167755 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3 4-5
[X] ||| was [X,1] der [X,2] der ||| what [X,1] the [X,2] of ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.81785100117 MaxLexEgivenF=1.59756328233 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 4-4
[X] ||| was [X,1] der [X,2] der ||| what [X,1] the [X,2] of the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81785100117 MaxLexEgivenF=1.88550112053 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4 4-5
[X] ||| was [X,1] der [X,2] der ||| what [X,1] the [X,2] the ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.81785100117 MaxLexEgivenF=1.23019272531 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 4-4
[X] ||| was [X,1] der [X,2] der ||| what is [X,1] of [X,2] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81785100117 MaxLexEgivenF=3.06789753184 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3 4-5
[X] ||| was [X,1] der [X,2] der ||| what is [X,1] the [X,2] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81785100117 MaxLexEgivenF=3.06789753184 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3 4-5
[X] ||| was [X,1] der [X,2] der ||| what is [X,1] the [X,2] of the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81785100117 MaxLexEgivenF=3.35583537004 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3 4-5 4-6
[X] ||| was [X,1] der [X,2] ersten ||| meaning [X,1] the [X,2] first ||| EgivenFCoherent=1.04139268516 SampleCountF=1.07918124605 CountEF=0.301029995664 MaxLexFgivenE=2.80433722299 MaxLexEgivenF=3.20233024595 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| [X,1] was [X,2] der ersten ||| [X,1] what [X,2] the first ||| EgivenFCoherent=1.4623979979 SampleCountF=1.47712125472 CountEF=0.301029995664 MaxLexFgivenE=1.84349388597 MaxLexEgivenF=1.20473396565 IsSingletonF=1 IsSingletonFE=1 ||| 1-1 3-3 4-4
[X] ||| was [X,1] der ersten ||| what [X,1] the first ||| EgivenFCoherent=1.16136800223 SampleCountF=1.47712125472 CountEF=0.47712125472 MaxLexFgivenE=1.84349388597 MaxLexEgivenF=1.20473396565 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| was [X,1] der ersten [X,2] ||| what [X,1] the first [X,2] ||| EgivenFCoherent=1.16136800223 SampleCountF=1.47712125472 CountEF=0.47712125472 MaxLexFgivenE=1.84349388597 MaxLexEgivenF=1.20473396565 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| [X,1] war der preis ||| [X,1] was the price ||| EgivenFCoherent=1.17609125906 SampleCountF=1.20411998266 CountEF=0.301029995664 MaxLexFgivenE=2.32831782543 MaxLexEgivenF=1.25318673603 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 3-3
[X] ||| [X,1] war der preis ||| [X,1] was the prize ||| EgivenFCoherent=1.17609125906 SampleCountF=1.20411998266 CountEF=0.301029995664 MaxLexFgivenE=2.4595860473 MaxLexEgivenF=2.08458349836 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 3-3
[X] ||| [X,1] war der preis ||| [X,1] the price was ||| EgivenFCoherent=0.875061263392 SampleCountF=1.20411998266 CountEF=0.47712125472 MaxLexFgivenE=2.32831782543 MaxLexEgivenF=1.25318673603 IsSingletonF=0 IsSingletonFE=0 ||| 2-1 3-2 1-3
[X] ||| [X,1] war der preis [X,2] ||| [X,1] was the prize [X,2] ||| EgivenFCoherent=1.17609125906 SampleCountF=1.20411998266 CountEF=0.301029995664 MaxLexFgivenE=2.4595860473 MaxLexEgivenF=2.08458349836 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 3-3
[X] ||| [X,1] war der preis [X,2] ||| [X,1] the price was [X,2] ||| EgivenFCoherent=1.17609125906 SampleCountF=1.20411998266 CountEF=0.301029995664 MaxLexFgivenE=2.32831782543 MaxLexEgivenF=1.25318673603 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 3-2 1-3
[X] ||| war der preis ||| was the price ||| EgivenFCoherent=1.17609125906 SampleCountF=1.20411998266 CountEF=0.301029995664 MaxLexFgivenE=2.32831782543 MaxLexEgivenF=1.25318673603 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2
[X] ||| war der preis ||| was the prize ||| EgivenFCoherent=1.17609125906 SampleCountF=1.20411998266 CountEF=0.301029995664 MaxLexFgivenE=2.4595860473 MaxLexEgivenF=2.08458349836 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2
[X] ||| war der preis ||| the price was ||| EgivenFCoherent=0.875061263392 SampleCountF=1.20411998266 CountEF=0.47712125472 MaxLexFgivenE=2.32831782543 MaxLexEgivenF=1.25318673603 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 2-1 0-2
[X] ||| war der preis [X,1] ||| was the prize [X,1] ||| EgivenFCoherent=1.17609125906 SampleCountF=1.20411998266 CountEF=0.301029995664 MaxLexFgivenE=2.4595860473 MaxLexEgivenF=2.08458349836 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2
[X] ||| war der preis [X,1] ||| the price [X,1] was ||| EgivenFCoherent=1.17609125906 SampleCountF=1.20411998266 CountEF=0.301029995664 MaxLexFgivenE=2.32831782543 MaxLexEgivenF=1.25318673603 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-1 0-3
[X] ||| war der preis [X,1] ||| the price was [X,1] ||| EgivenFCoherent=1.17609125906 SampleCountF=1.20411998266 CountEF=0.301029995664 MaxLexFgivenE=2.32831782543 MaxLexEgivenF=1.25318673603 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-1 0-2
[X] ||| [X,1] war der [X,2] der ||| [X,1] was the [X,2] ) of the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.2220373995 MaxLexEgivenF=3.55657222685 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 4-5 4-6
[X] ||| [X,1] war der [X,2] der ||| [X,1] was the [X,2] of ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=2.2220373995 MaxLexEgivenF=1.37699731911 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 4-4
[X] ||| [X,1] war der [X,2] der ||| [X,1] was the [X,2] of the ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=2.2220373995 MaxLexEgivenF=1.66493515731 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 4-4 4-5
[X] ||| [X,1] war der [X,2] der ||| [X,1] was the [X,2] the ||| EgivenFCoherent=1.52287874528 SampleCountF=2.47856649559 CountEF=1 MaxLexFgivenE=2.2220373995 MaxLexEgivenF=1.00962676208 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 4-4
[X] ||| [X,1] war der [X,2] der ||| [X,1] was the [X,2] with the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.2220373995 MaxLexEgivenF=2.7272323703 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 4-5
[X] ||| [X,1] war der [X,2] der ||| [X,1] was the [X,2] her ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.2220373995 MaxLexEgivenF=3.69441023636 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 4-4
[X] ||| [X,1] war der [X,2] der ||| [X,1] , the [X,2] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.99597305758 MaxLexEgivenF=1.55386984743 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 4-4
[X] ||| [X,1] war der [X,2] der ||| [X,1] , the [X,2] of the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.99597305758 MaxLexEgivenF=1.84180768563 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 4-4 4-5
[X] ||| [X,1] war der [X,2] der ||| [X,1] , the [X,2] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.99597305758 MaxLexEgivenF=1.18649929041 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 4-4
[X] ||| [X,1] war der [X,2] der ||| [X,1] been the [X,2] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.04441167462 MaxLexEgivenF=2.6718842633 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 4-4
[X] ||| [X,1] war der [X,2] der ||| [X,1] saw the [X,2] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.01951303892 MaxLexEgivenF=3.58686148898 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 4-4
[X] ||| [X,1] war der [X,2] der ||| [X,1] marked the [X,2] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.83762794667 MaxLexEgivenF=4.32154704558 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 4-4
[X] ||| [X,1] war der [X,2] der ||| was [X,1] of [X,2] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.2220373995 MaxLexEgivenF=1.37699731911 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-2 4-4
[X] ||| war der [X,1] der ||| was the [X,1] ) of the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.2220373995 MaxLexEgivenF=3.55657222685 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-4 3-5
[X] ||| war der [X,1] der ||| was the [X,1] of ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=2.2220373995 MaxLexEgivenF=1.37699731911 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3
[X] ||| war der [X,1] der ||| was the [X,1] of the ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=2.2220373995 MaxLexEgivenF=1.66493515731 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3 3-4
[X] ||| war der [X,1] der ||| was the [X,1] the ||| EgivenFCoherent=1.43572856956 SampleCountF=2.47856649559 CountEF=1.07918124605 MaxLexFgivenE=2.2220373995 MaxLexEgivenF=1.00962676208 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3
[X] ||| war der [X,1] der ||| was the [X,1] with the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.2220373995 MaxLexEgivenF=2.7272323703 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-4
[X] ||| war der [X,1] der ||| was the [X,1] her ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.2220373995 MaxLexEgivenF=3.69441023636 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| war der [X,1] der ||| , the [X,1] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.99597305758 MaxLexEgivenF=1.55386984743 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| war der [X,1] der ||| , the [X,1] of the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.99597305758 MaxLexEgivenF=1.84180768563 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3 3-4
[X] ||| war der [X,1] der ||| , the [X,1] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.99597305758 MaxLexEgivenF=1.18649929041 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| war der [X,1] der ||| the [X,1] was the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.2220373995 MaxLexEgivenF=1.00962676208 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-2 3-3
[X] ||| war der [X,1] der ||| been the [X,1] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.04441167462 MaxLexEgivenF=2.6718842633 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| war der [X,1] der ||| then the [X,1] of the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.19894429235 MaxLexEgivenF=4.39870760688 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3 3-4
[X] ||| war der [X,1] der ||| saw the [X,1] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.01951303892 MaxLexEgivenF=3.58686148898 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| war der [X,1] der ||| marked the [X,1] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.83762794667 MaxLexEgivenF=4.32154704558 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| war der [X,1] der [X,2] ||| was the [X,1] [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.2220373995 MaxLexEgivenF=0.721688923883 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| war der [X,1] der [X,2] ||| was the [X,1] ) of the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.2220373995 MaxLexEgivenF=3.55657222685 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-4 3-5
[X] ||| war der [X,1] der [X,2] ||| was the [X,1] of [X,2] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=2.2220373995 MaxLexEgivenF=1.37699731911 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3
[X] ||| war der [X,1] der [X,2] ||| was the [X,1] of the [X,2] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=2.2220373995 MaxLexEgivenF=1.66493515731 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3 3-4
[X] ||| war der [X,1] der [X,2] ||| was the [X,1] the [X,2] ||| EgivenFCoherent=1.47712125472 SampleCountF=2.47856649559 CountEF=1.04139268516 MaxLexFgivenE=2.2220373995 MaxLexEgivenF=1.00962676208 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3
[X] ||| war der [X,1] der [X,2] ||| was the [X,1] with the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.2220373995 MaxLexEgivenF=2.7272323703 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-4
[X] ||| war der [X,1] der [X,2] ||| was the [X,1] be [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.2220373995 MaxLexEgivenF=3.06600297737 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| war der [X,1] der [X,2] ||| was the [X,1] her [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.2220373995 MaxLexEgivenF=3.69441023636 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| war der [X,1] der [X,2] ||| , the [X,2] [X,1] was ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.2220373995 MaxLexEgivenF=1.33231253789 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 3-1 0-4
[X] ||| war der [X,1] der [X,2] ||| , the [X,1] of the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.99597305758 MaxLexEgivenF=1.84180768563 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3 3-4
[X] ||| war der [X,1] der [X,2] ||| , the [X,1] the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.99597305758 MaxLexEgivenF=1.18649929041 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| war der [X,1] der [X,2] ||| the [X,1] was the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.2220373995 MaxLexEgivenF=1.00962676208 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-2 3-3
[X] ||| war der [X,1] der [X,2] ||| the [X,1] of [X,2] was made ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.2220373995 MaxLexEgivenF=4.02824747568 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 3-2 0-4 0-5
[X] ||| war der [X,1] der [X,2] ||| been the [X,1] of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.04441167462 MaxLexEgivenF=2.6718842633 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| war der [X,1] der [X,2] ||| then the [X,1] of the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.19894429235 MaxLexEgivenF=4.39870760688 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3 3-4
[X] ||| war der [X,1] der [X,2] ||| saw the [X,1] the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.01951303892 MaxLexEgivenF=3.58686148898 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| war der [X,1] der [X,2] ||| marked the [X,1] the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.83762794667 MaxLexEgivenF=4.32154704558 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| [X,1] war der [X,2] ersten ||| [X,1] was [X,2] first ||| EgivenFCoherent=1.59106460703 SampleCountF=1.60205999133 CountEF=0.301029995664 MaxLexFgivenE=2.72243745211 MaxLexEgivenF=0.696230164221 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 4-3
[X] ||| [X,1] war der [X,2] ersten ||| [X,1] was the [X,2] first ||| EgivenFCoherent=1.11394335231 SampleCountF=1.60205999133 CountEF=0.602059991328 MaxLexFgivenE=2.2476802843 MaxLexEgivenF=0.984168002423 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 4-4
[X] ||| war der [X,1] ersten ||| was [X,1] first ||| EgivenFCoherent=1.59106460703 SampleCountF=1.60205999133 CountEF=0.301029995664 MaxLexFgivenE=2.72243745211 MaxLexEgivenF=0.696230164221 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 3-2
[X] ||| war der [X,1] ersten ||| was the [X,1] first ||| EgivenFCoherent=0.989004615699 SampleCountF=1.60205999133 CountEF=0.698970004336 MaxLexFgivenE=2.2476802843 MaxLexEgivenF=0.984168002423 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3
[X] ||| war der [X,1] ersten [X,2] ||| was [X,1] first [X,2] ||| EgivenFCoherent=1.59106460703 SampleCountF=1.60205999133 CountEF=0.301029995664 MaxLexFgivenE=2.72243745211 MaxLexEgivenF=0.696230164221 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 3-2
[X] ||| war der [X,1] ersten [X,2] ||| was the [X,1] first [X,2] ||| EgivenFCoherent=1.11394335231 SampleCountF=1.60205999133 CountEF=0.602059991328 MaxLexFgivenE=2.2476802843 MaxLexEgivenF=0.984168002423 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3
[X] ||| [X,1] war [X,2] der ersten ||| [X,1] was [X,2] of the first ||| EgivenFCoherent=1.08543019532 SampleCountF=2.44870631991 CountEF=1.38021124171 MaxLexFgivenE=2.2476802843 MaxLexEgivenF=1.63947639765 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3 3-4 4-5
[X] ||| [X,1] war [X,2] der ersten ||| [X,1] was [X,2] of the premier ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=3.62770288276 MaxLexEgivenF=4.49151563803 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4 4-5
[X] ||| [X,1] war [X,2] der ersten ||| [X,1] was [X,2] of the first ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=2.43768261844 MaxLexEgivenF=4.74678814314 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4 4-5
[X] ||| [X,1] war [X,2] der ersten ||| [X,1] was [X,2] the first ||| EgivenFCoherent=1.10473535052 SampleCountF=2.44870631991 CountEF=1.36172783602 MaxLexFgivenE=2.2476802843 MaxLexEgivenF=0.984168002423 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3 4-4
[X] ||| [X,1] war [X,2] der ersten ||| [X,1] was [X,2] the earliest ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=2.92434919106 MaxLexEgivenF=3.52327802385 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 4-4
[X] ||| [X,1] war [X,2] der ersten ||| [X,1] was and is [X,2] of the first ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=2.2476802843 MaxLexEgivenF=4.05601138302 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-5 3-6 4-7
[X] ||| [X,1] war [X,2] der ersten ||| [X,1] , [X,2] the first ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=3.86268779918 MaxLexEgivenF=1.16104053075 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 4-4
[X] ||| [X,1] war [X,2] der ersten ||| [X,1] he was [X,2] of the first ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=2.2476802843 MaxLexEgivenF=3.40873227843 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4 3-5 4-6
[X] ||| [X,1] war [X,2] der ersten ||| [X,1] being [X,2] of the first ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=3.7391470278 MaxLexEgivenF=3.94218867935 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4 4-5
[X] ||| [X,1] war [X,2] der ersten ||| [X,1] became [X,2] of the first ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=2.93743584829 MaxLexEgivenF=3.57377825001 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4 4-5
[X] ||| war [X,1] der ersten ||| was [X,1] of the first ||| EgivenFCoherent=0.942008053022 SampleCountF=2.44870631991 CountEF=1.51851393988 MaxLexFgivenE=2.2476802843 MaxLexEgivenF=1.63947639765 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 2-3 3-4
[X] ||| war [X,1] der ersten ||| was [X,1] of the premier ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=3.62770288276 MaxLexEgivenF=4.49151563803 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3 3-4
[X] ||| war [X,1] der ersten ||| was [X,1] of the first ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=2.43768261844 MaxLexEgivenF=4.74678814314 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3 3-4
[X] ||| war [X,1] der ersten ||| was [X,1] the first ||| EgivenFCoherent=0.970036776623 SampleCountF=2.44870631991 CountEF=1.49136169383 MaxLexFgivenE=2.2476802843 MaxLexEgivenF=0.984168002423 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| war [X,1] der ersten ||| was [X,1] the earliest ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=2.92434919106 MaxLexEgivenF=3.52327802385 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| war [X,1] der ersten ||| was and is [X,1] of the first ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=2.2476802843 MaxLexEgivenF=4.05601138302 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-4 2-5 3-6
[X] ||| war [X,1] der ersten ||| was a [X,1] the first ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=2.2476802843 MaxLexEgivenF=2.20101578566 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3 3-4
[X] ||| war [X,1] der ersten ||| , [X,1] the first ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=3.86268779918 MaxLexEgivenF=1.16104053075 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| war [X,1] der ersten ||| , was [X,1] of the first ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=2.2476802843 MaxLexEgivenF=2.25010001165 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3 2-4 3-5
[X] ||| war [X,1] der ersten ||| were [X,1] of the ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=5.4379880124 MaxLexEgivenF=2.52712193467 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3 3-3
[X] ||| war [X,1] der ersten ||| he was [X,1] of the first ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=2.2476802843 MaxLexEgivenF=3.40873227843 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3 2-4 3-5
[X] ||| war [X,1] der ersten ||| being [X,1] of the first ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=3.7391470278 MaxLexEgivenF=3.94218867935 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3 3-4
[X] ||| war [X,1] der ersten ||| been [X,1] the first ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=3.07005455941 MaxLexEgivenF=2.27905494662 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| war [X,1] der ersten ||| became [X,1] of the first ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=2.93743584829 MaxLexEgivenF=3.57377825001 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3 3-4
[X] ||| war [X,1] der ersten [X,2] ||| [X,1] the first [X,2] was ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=2.2476802843 MaxLexEgivenF=0.984168002423 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 3-2 0-4
[X] ||| war [X,1] der ersten [X,2] ||| was [X,1] of the first [X,2] ||| EgivenFCoherent=1.08543019532 SampleCountF=2.44870631991 CountEF=1.38021124171 MaxLexFgivenE=2.2476802843 MaxLexEgivenF=1.63947639765 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 2-3 3-4
[X] ||| war [X,1] der ersten [X,2] ||| was [X,1] of the first to [X,2] ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=2.2476802843 MaxLexEgivenF=2.6517816687 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3 3-4
[X] ||| war [X,1] der ersten [X,2] ||| was [X,1] of the first [X,2] ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=2.43768261844 MaxLexEgivenF=4.74678814314 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3 3-4
[X] ||| war [X,1] der ersten [X,2] ||| was [X,1] the first [X,2] ||| EgivenFCoherent=1.06694678963 SampleCountF=2.44870631991 CountEF=1.39794000867 MaxLexFgivenE=2.2476802843 MaxLexEgivenF=0.984168002423 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| war [X,1] der ersten [X,2] ||| was [X,1] the earliest [X,2] ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=2.92434919106 MaxLexEgivenF=3.52327802385 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| war [X,1] der ersten [X,2] ||| was and is [X,1] of the first [X,2] ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=2.2476802843 MaxLexEgivenF=4.05601138302 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-4 2-5 3-6
[X] ||| war [X,1] der ersten [X,2] ||| was a [X,1] the first [X,2] ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=2.2476802843 MaxLexEgivenF=2.20101578566 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3 3-4
[X] ||| war [X,1] der ersten [X,2] ||| , [X,2] the [X,1] of the first ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=3.86268779918 MaxLexEgivenF=2.10428676417 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-4 2-5 3-6
[X] ||| war [X,1] der ersten [X,2] ||| , was [X,1] of the first [X,2] ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=2.2476802843 MaxLexEgivenF=2.25010001165 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3 2-4 3-5
[X] ||| war [X,1] der ersten [X,2] ||| were [X,1] of the [X,2] ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=5.4379880124 MaxLexEgivenF=2.52712193467 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3 3-3
[X] ||| war [X,1] der ersten [X,2] ||| being [X,1] of the first [X,2] ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=3.7391470278 MaxLexEgivenF=3.94218867935 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3 3-4
[X] ||| war [X,1] der ersten [X,2] ||| been [X,1] the first [X,2] ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=3.07005455941 MaxLexEgivenF=2.27905494662 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| war [X,1] der ersten [X,2] ||| became [X,1] of the first [X,2] ||| EgivenFCoherent=2.44715803134 SampleCountF=2.44870631991 CountEF=0.301029995664 MaxLexFgivenE=2.93743584829 MaxLexEgivenF=3.57377825001 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3 3-4
[X] ||| [X,1] der preis der ||| [X,1] der preis der ||| EgivenFCoherent=1.81291335664 SampleCountF=2.11727129566 CountEF=0.47712125472 MaxLexFgivenE=0.99262226781 MaxLexEgivenF=6.77003272333 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 3-3
[X] ||| [X,1] der preis der ||| [X,1] the price of ||| EgivenFCoherent=1.51188336098 SampleCountF=2.11727129566 CountEF=0.698970004336 MaxLexFgivenE=2.0845285593 MaxLexEgivenF=1.47474404557 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 3-3
[X] ||| [X,1] der preis der ||| [X,1] the price of the ||| EgivenFCoherent=1.15970084287 SampleCountF=2.11727129566 CountEF=1 MaxLexFgivenE=2.0845285593 MaxLexEgivenF=1.76268188377 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 3-3 3-4
[X] ||| [X,1] der preis der ||| [X,1] the price for ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=2.0845285593 MaxLexEgivenF=2.46697171431 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 3-3
[X] ||| [X,1] der preis der ||| [X,1] the price for the ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=2.0845285593 MaxLexEgivenF=2.75490955251 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3 3-4
[X] ||| [X,1] der preis der ||| [X,1] the cost of ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=3.00673210896 MaxLexEgivenF=2.76269570578 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 3-3
[X] ||| [X,1] der preis der ||| [X,1] the sum for ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=3.63330124213 MaxLexEgivenF=5.22997162062 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 3-3
[X] ||| [X,1] der preis der ||| [X,1] the value of the ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=3.65618340402 MaxLexEgivenF=3.50154811037 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 3-3 3-4
[X] ||| [X,1] der preis der [X,2] ||| [X,1] [X,2] prices ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=3.83044203185 MaxLexEgivenF=1.58088718794 IsSingletonF=0 IsSingletonFE=1 ||| 2-2
[X] ||| [X,1] der preis der [X,2] ||| [X,1] der preis der [X,2] ||| EgivenFCoherent=1.81291335664 SampleCountF=2.11727129566 CountEF=0.47712125472 MaxLexFgivenE=0.99262226781 MaxLexEgivenF=6.77003272333 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 3-3
[X] ||| [X,1] der preis der [X,2] ||| [X,1] the price [X,2] ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=2.0845285593 MaxLexEgivenF=0.819435650347 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] der preis der [X,2] ||| [X,1] the price of [X,2] ||| EgivenFCoherent=1.51188336098 SampleCountF=2.11727129566 CountEF=0.698970004336 MaxLexFgivenE=2.0845285593 MaxLexEgivenF=1.47474404557 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 3-3
[X] ||| [X,1] der preis der [X,2] ||| [X,1] the price of the [X,2] ||| EgivenFCoherent=1.33579210192 SampleCountF=2.11727129566 CountEF=0.845098040014 MaxLexFgivenE=2.0845285593 MaxLexEgivenF=1.76268188377 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 3-3 3-4
[X] ||| [X,1] der preis der [X,2] ||| [X,1] the cost of [X,2] ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=3.00673210896 MaxLexEgivenF=2.76269570578 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 3-3
[X] ||| [X,1] der preis der [X,2] ||| [X,1] the sum for [X,2] ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=3.63330124213 MaxLexEgivenF=5.22997162062 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 3-3
[X] ||| [X,1] der preis der [X,2] ||| [X,1] the value of the [X,2] ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=3.65618340402 MaxLexEgivenF=3.50154811037 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 3-3 3-4
[X] ||| [X,1] der preis der [X,2] ||| the price of [X,2] [X,1] ||| EgivenFCoherent=1.81291335664 SampleCountF=2.11727129566 CountEF=0.47712125472 MaxLexFgivenE=2.0845285593 MaxLexEgivenF=1.47474404557 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 2-1 3-2
[X] ||| der preis der ||| der preis der ||| EgivenFCoherent=1.81291335664 SampleCountF=2.11727129566 CountEF=0.47712125472 MaxLexFgivenE=0.99262226781 MaxLexEgivenF=6.77003272333 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 2-2
[X] ||| der preis der ||| the right in the ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=4.62549674809 MaxLexEgivenF=4.9058236041 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-3
[X] ||| der preis der ||| the prices of ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=2.88092769622 MaxLexEgivenF=2.52413342136 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2
[X] ||| der preis der ||| the prices of the ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=2.88092769622 MaxLexEgivenF=2.81207125956 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2 2-3
[X] ||| der preis der ||| the price of ||| EgivenFCoherent=1.03476210626 SampleCountF=2.11727129566 CountEF=1.11394335231 MaxLexFgivenE=2.0845285593 MaxLexEgivenF=1.47474404557 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 2-2
[X] ||| der preis der ||| the price of the ||| EgivenFCoherent=0.883494430929 SampleCountF=2.11727129566 CountEF=1.2552725051 MaxLexFgivenE=2.0845285593 MaxLexEgivenF=1.76268188377 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 2-2 2-3
[X] ||| der preis der ||| the price of an ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=2.0845285593 MaxLexEgivenF=3.94374296402 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2 2-3
[X] ||| der preis der ||| the price of a ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=2.0845285593 MaxLexEgivenF=2.69159182881 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2 2-3
[X] ||| der preis der ||| the price of this ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=2.0845285593 MaxLexEgivenF=3.6303669053 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2 2-3
[X] ||| der preis der ||| the price of tosca ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=2.0845285593 MaxLexEgivenF=6.48516618336 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2 2-3
[X] ||| der preis der ||| the price for ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=2.0845285593 MaxLexEgivenF=2.46697171431 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2
[X] ||| der preis der ||| the price for the ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=2.0845285593 MaxLexEgivenF=2.75490955251 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2 2-3
[X] ||| der preis der ||| the cost of ||| EgivenFCoherent=1.81291335664 SampleCountF=2.11727129566 CountEF=0.47712125472 MaxLexFgivenE=3.00673210896 MaxLexEgivenF=2.76269570578 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 2-2
[X] ||| der preis der ||| the cost of the ||| EgivenFCoherent=1.81291335664 SampleCountF=2.11727129566 CountEF=0.47712125472 MaxLexFgivenE=3.00673210896 MaxLexEgivenF=3.05063354399 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 2-2 2-3
[X] ||| der preis der ||| the cost of your ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=3.00673210896 MaxLexEgivenF=5.2189316445 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2 2-3
[X] ||| der preis der ||| the sum for ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=3.63330124213 MaxLexEgivenF=5.22997162062 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2
[X] ||| der preis der ||| the value of the ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=3.65618340402 MaxLexEgivenF=3.50154811037 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2 2-3
[X] ||| der preis der ||| as the price of ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=2.0845285593 MaxLexEgivenF=3.64416679902 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2 2-3
[X] ||| der preis der ||| translation of a ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=4.80794251207 MaxLexEgivenF=5.53463068221 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-1 2-1 2-2
[X] ||| der preis der ||| rates for the ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=3.33416694045 MaxLexEgivenF=4.07074828685 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-1 0-2 2-2
[X] ||| der preis der [X,1] ||| der preis der [X,1] ||| EgivenFCoherent=1.81291335664 SampleCountF=2.11727129566 CountEF=0.47712125472 MaxLexFgivenE=0.99262226781 MaxLexEgivenF=6.77003272333 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 2-2
[X] ||| der preis der [X,1] ||| the [X,1] price ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=2.0845285593 MaxLexEgivenF=0.819435650347 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-0 1-2
[X] ||| der preis der [X,1] ||| the prices of [X,1] ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=2.88092769622 MaxLexEgivenF=2.52413342136 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2
[X] ||| der preis der [X,1] ||| the prices of the [X,1] ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=2.88092769622 MaxLexEgivenF=2.81207125956 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2 2-3
[X] ||| der preis der [X,1] ||| the price [X,1] ||| EgivenFCoherent=1.81291335664 SampleCountF=2.11727129566 CountEF=0.47712125472 MaxLexFgivenE=2.0845285593 MaxLexEgivenF=0.819435650347 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| der preis der [X,1] ||| the price of [X,1] ||| EgivenFCoherent=1.11394335231 SampleCountF=2.11727129566 CountEF=1.04139268516 MaxLexFgivenE=2.0845285593 MaxLexEgivenF=1.47474404557 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 2-2
[X] ||| der preis der [X,1] ||| the price of the [X,1] ||| EgivenFCoherent=1.03476210626 SampleCountF=2.11727129566 CountEF=1.11394335231 MaxLexFgivenE=2.0845285593 MaxLexEgivenF=1.76268188377 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 2-2 2-3
[X] ||| der preis der [X,1] ||| the price of an [X,1] ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=2.0845285593 MaxLexEgivenF=3.94374296402 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2 2-3
[X] ||| der preis der [X,1] ||| the price of a [X,1] ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=2.0845285593 MaxLexEgivenF=2.69159182881 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2 2-3
[X] ||| der preis der [X,1] ||| the price of this [X,1] ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=2.0845285593 MaxLexEgivenF=3.6303669053 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2 2-3
[X] ||| der preis der [X,1] ||| the price of tosca [X,1] ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=2.0845285593 MaxLexEgivenF=6.48516618336 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2 2-3
[X] ||| der preis der [X,1] ||| the price for [X,1] ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=2.0845285593 MaxLexEgivenF=2.46697171431 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2
[X] ||| der preis der [X,1] ||| the cost of [X,1] ||| EgivenFCoherent=1.81291335664 SampleCountF=2.11727129566 CountEF=0.47712125472 MaxLexFgivenE=3.00673210896 MaxLexEgivenF=2.76269570578 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 2-2
[X] ||| der preis der [X,1] ||| the cost of the [X,1] ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=3.00673210896 MaxLexEgivenF=3.05063354399 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2 2-3
[X] ||| der preis der [X,1] ||| the cost of your [X,1] ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=3.00673210896 MaxLexEgivenF=5.2189316445 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2 2-3
[X] ||| der preis der [X,1] ||| the sum for [X,1] ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=3.63330124213 MaxLexEgivenF=5.22997162062 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2
[X] ||| der preis der [X,1] ||| the value of the [X,1] ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=3.65618340402 MaxLexEgivenF=3.50154811037 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2 2-3
[X] ||| der preis der [X,1] ||| translation of a [X,1] ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=4.80794251207 MaxLexEgivenF=5.53463068221 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-1 2-1 2-2
[X] ||| der preis der [X,1] ||| rates for the [X,1] ||| EgivenFCoherent=2.11394335231 SampleCountF=2.11727129566 CountEF=0.301029995664 MaxLexFgivenE=3.33416694045 MaxLexEgivenF=4.07074828685 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-1 0-2 2-2
[X] ||| der preis [X,1] ersten ||| the price [X,1] first ||| EgivenFCoherent=0.301029995664 SampleCountF=0.698970004336 CountEF=0.47712125472 MaxLexFgivenE=2.1101714441 MaxLexEgivenF=1.08191472889 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3
[X] ||| der preis [X,1] ersten [X,2] ||| the price [X,1] first [X,2] ||| EgivenFCoherent=0.301029995664 SampleCountF=0.698970004336 CountEF=0.47712125472 MaxLexFgivenE=2.1101714441 MaxLexEgivenF=1.08191472889 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3
[X] ||| [X,1] der [X,2] der ersten ||| [X,1] [X,2] the first ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=0.550416916742 IsSingletonF=0 IsSingletonFE=0 ||| 3-2 4-3
[X] ||| [X,1] der [X,2] der ersten ||| [X,1] der [X,2] der ersten ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.960986976646 MaxLexEgivenF=6.9946953003 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3 4-4
[X] ||| [X,1] der [X,2] der ersten ||| [X,1] of [X,2] of the first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=1.86103370719 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4 4-5
[X] ||| [X,1] der [X,2] der ersten ||| [X,1] of [X,2] of first ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.08651803512 MaxLexEgivenF=1.57309586899 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3 4-4
[X] ||| [X,1] der [X,2] der ersten ||| [X,1] of [X,2] the first ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=1.20572531197 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3 4-4
[X] ||| [X,1] der [X,2] der ersten ||| [X,1] of the [X,2] of the first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=2.14897154539 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4 3-5 4-6
[X] ||| [X,1] der [X,2] der ersten ||| [X,1] of the [X,2] of first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=1.86103370719 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4 4-5
[X] ||| [X,1] der [X,2] der ersten ||| [X,1] of the [X,2] in the first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=2.91446424077 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-5 4-6
[X] ||| [X,1] der [X,2] der ersten ||| [X,1] of the [X,2] the first ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=1.49366315017 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2 3-4 4-5
[X] ||| [X,1] der [X,2] der ersten ||| [X,1] of the [X,2] his first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=3.81964128032 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4 4-5
[X] ||| [X,1] der [X,2] der ersten ||| [X,1] the [X,2] of the first ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=1.49366315017 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3 3-4 4-5
[X] ||| [X,1] der [X,2] der ersten ||| [X,1] the [X,2] of the 1st ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.82923313807 MaxLexEgivenF=3.42778862725 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4 4-5
[X] ||| [X,1] der [X,2] der ersten ||| [X,1] the [X,2] the first ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=0.838354754944 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3 4-4
[X] ||| der [X,1] der ersten ||| der [X,1] der ersten ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.960986976646 MaxLexEgivenF=6.9946953003 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| der [X,1] der ersten ||| of [X,1] of the first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=1.86103370719 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3 3-4
[X] ||| der [X,1] der ersten ||| of [X,1] of first ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.08651803512 MaxLexEgivenF=1.57309586899 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| der [X,1] der ersten ||| of [X,1] the first ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=1.20572531197 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| der [X,1] der ersten ||| of the [X,1] of the first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=2.14897154539 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3 2-4 3-5
[X] ||| der [X,1] der ersten ||| of the [X,1] of first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=1.86103370719 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3 3-4
[X] ||| der [X,1] der ersten ||| of the [X,1] in the first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=2.91446424077 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-4 3-5
[X] ||| der [X,1] der ersten ||| of the [X,1] the first ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=1.49366315017 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-3 3-4
[X] ||| der [X,1] der ersten ||| of the [X,1] his first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=3.81964128032 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3 3-4
[X] ||| der [X,1] der ersten ||| the [X,1] of the first ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=1.49366315017 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 2-3 3-4
[X] ||| der [X,1] der ersten ||| the [X,1] of the 1st ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.82923313807 MaxLexEgivenF=3.42778862725 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3 3-4
[X] ||| der [X,1] der ersten ||| the [X,1] of this first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=3.36134817169 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3 3-4
[X] ||| der [X,1] der ersten ||| the [X,1] the first ||| EgivenFCoherent=1.33099321904 SampleCountF=2.47856649559 CountEF=1.17609125906 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=0.838354754944 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| der [X,1] der ersten ||| the [X,1] the initial ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.37145430644 MaxLexEgivenF=2.47584448446 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| der [X,1] der ersten ||| the [X,1] 's first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=2.92920506967 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| der [X,1] der ersten [X,2] ||| der [X,1] der ersten [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.960986976646 MaxLexEgivenF=6.9946953003 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| der [X,1] der ersten [X,2] ||| of [X,1] of first [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.08651803512 MaxLexEgivenF=1.57309586899 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| der [X,1] der ersten [X,2] ||| of [X,1] the first [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=1.20572531197 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| der [X,1] der ersten [X,2] ||| of the [X,1] of first [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=1.86103370719 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3 3-4
[X] ||| der [X,1] der ersten [X,2] ||| of the [X,1] in the first [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=2.91446424077 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-4 3-5
[X] ||| der [X,1] der ersten [X,2] ||| of the [X,1] the first [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=1.49366315017 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-3 3-4
[X] ||| der [X,1] der ersten [X,2] ||| of the [X,1] his first [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=3.81964128032 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3 3-4
[X] ||| der [X,1] der ersten [X,2] ||| of the first [X,2] of [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=1.86103370719 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 2-1 3-2 0-4
[X] ||| der [X,1] der ersten [X,2] ||| the [X,1] [X,2] the first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=0.838354754944 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3 3-4
[X] ||| der [X,1] der ersten [X,2] ||| the [X,1] of the first [X,2] ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=1.49366315017 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 2-3 3-4
[X] ||| der [X,1] der ersten [X,2] ||| the [X,1] of the 1st [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.82923313807 MaxLexEgivenF=3.42778862725 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3 3-4
[X] ||| der [X,1] der ersten [X,2] ||| the [X,1] of this first [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=3.36134817169 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3 3-4
[X] ||| der [X,1] der ersten [X,2] ||| the [X,1] the first [X,2] ||| EgivenFCoherent=1.39794000867 SampleCountF=2.47856649559 CountEF=1.11394335231 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=0.838354754944 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| der [X,1] der ersten [X,2] ||| the [X,1] the initial [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.37145430644 MaxLexEgivenF=2.47584448446 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| der [X,1] der ersten [X,2] ||| the [X,1] 's first [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00389101816 MaxLexEgivenF=2.92920506967 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| der [X,1] der [X,2] ausgabe ||| of [X,1] the [X,2] issue ||| EgivenFCoherent=2.10380372096 SampleCountF=2.10720996965 CountEF=0.301029995664 MaxLexFgivenE=2.19284656803 MaxLexEgivenF=1.61713711153 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| der [X,1] der [X,2] ausgabe ||| of [X,1] the [X,2] issuance ||| EgivenFCoherent=2.10380372096 SampleCountF=2.10720996965 CountEF=0.301029995664 MaxLexFgivenE=2.31883208891 MaxLexEgivenF=3.19571600701 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| der [X,1] der [X,2] ausgabe ||| of the [X,1] of the [X,2] edition ||| EgivenFCoherent=2.10380372096 SampleCountF=2.10720996965 CountEF=0.301029995664 MaxLexFgivenE=2.27757774102 MaxLexEgivenF=2.66566739356 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3 2-4 4-6
[X] ||| der [X,1] der [X,2] ausgabe ||| of the [X,1] the [X,2] edition ||| EgivenFCoherent=1.80277372529 SampleCountF=2.10720996965 CountEF=0.47712125472 MaxLexFgivenE=2.27757774102 MaxLexEgivenF=2.01035899834 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-3 4-5
[X] ||| der [X,1] der [X,2] ausgabe ||| the [X,1] of [X,2] issue ||| EgivenFCoherent=2.10380372096 SampleCountF=2.10720996965 CountEF=0.301029995664 MaxLexFgivenE=2.19284656803 MaxLexEgivenF=1.61713711153 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| der [X,1] der [X,2] ausgabe ||| the [X,1] of the [X,2] output ||| EgivenFCoherent=2.10380372096 SampleCountF=2.10720996965 CountEF=0.301029995664 MaxLexFgivenE=2.2726922127 MaxLexEgivenF=2.05911606804 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3 4-5
[X] ||| der [X,1] der [X,2] ausgabe ||| the [X,1] of the [X,2] issue ||| EgivenFCoherent=2.10380372096 SampleCountF=2.10720996965 CountEF=0.301029995664 MaxLexFgivenE=2.19284656803 MaxLexEgivenF=1.90507494973 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3 4-5
[X] ||| der [X,1] der [X,2] ausgabe ||| the [X,1] of the [X,2] edition ||| EgivenFCoherent=1.62668246624 SampleCountF=2.10720996965 CountEF=0.602059991328 MaxLexFgivenE=2.27757774102 MaxLexEgivenF=2.01035899834 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 2-3 4-5
[X] ||| der [X,1] der [X,2] ausgabe ||| the [X,1] the [X,2] issue ||| EgivenFCoherent=2.10380372096 SampleCountF=2.10720996965 CountEF=0.301029995664 MaxLexFgivenE=2.19284656803 MaxLexEgivenF=1.24976655451 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| der [X,1] der [X,2] ausgabe ||| the [X,1] to [X,2] issue ||| EgivenFCoherent=2.10380372096 SampleCountF=2.10720996965 CountEF=0.301029995664 MaxLexFgivenE=2.19284656803 MaxLexEgivenF=1.97413398736 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| [X,1] preis der ersten ||| [X,1] price of the first ||| EgivenFCoherent=1.97772360529 SampleCountF=1.98227123304 CountEF=0.301029995664 MaxLexFgivenE=2.1101714441 MaxLexEgivenF=1.73722312411 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3 3-4
[X] ||| [X,1] preis der ersten ||| [X,1] price of this first ||| EgivenFCoherent=1.97772360529 SampleCountF=1.98227123304 CountEF=0.301029995664 MaxLexFgivenE=2.15148495257 MaxLexEgivenF=3.60490814563 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3 3-4
[X] ||| [X,1] preis der ersten ||| [X,1] amount of the first ||| EgivenFCoherent=1.13262556527 SampleCountF=1.98227123304 CountEF=0.903089986992 MaxLexFgivenE=3.71320214593 MaxLexEgivenF=3.76553747382 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 2-3 3-4
[X] ||| [X,1] preis der ersten [X,2] ||| [X,1] price of the first [X,2] ||| EgivenFCoherent=1.97772360529 SampleCountF=1.98227123304 CountEF=0.301029995664 MaxLexFgivenE=2.1101714441 MaxLexEgivenF=1.73722312411 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3 3-4
[X] ||| [X,1] preis der ersten [X,2] ||| [X,1] price of this first [X,2] ||| EgivenFCoherent=1.97772360529 SampleCountF=1.98227123304 CountEF=0.301029995664 MaxLexFgivenE=2.15148495257 MaxLexEgivenF=3.60490814563 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3 3-4
[X] ||| [X,1] preis der ersten [X,2] ||| [X,1] amount of the first [X,2] ||| EgivenFCoherent=1.13262556527 SampleCountF=1.98227123304 CountEF=0.903089986992 MaxLexFgivenE=3.71320214593 MaxLexEgivenF=3.76553747382 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 2-3 3-4
[X] ||| preis der ersten ||| price of the first ||| EgivenFCoherent=1.97772360529 SampleCountF=1.98227123304 CountEF=0.301029995664 MaxLexFgivenE=2.1101714441 MaxLexEgivenF=1.73722312411 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2 2-3
[X] ||| preis der ersten ||| price of this first ||| EgivenFCoherent=1.97772360529 SampleCountF=1.98227123304 CountEF=0.301029995664 MaxLexFgivenE=2.15148495257 MaxLexEgivenF=3.60490814563 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2 2-3
[X] ||| preis der ersten ||| amount of the first ||| EgivenFCoherent=1.13262556527 SampleCountF=1.98227123304 CountEF=0.903089986992 MaxLexFgivenE=3.71320214593 MaxLexEgivenF=3.76553747382 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 1-2 2-3
[X] ||| preis der ersten ||| fee of 1 ||| EgivenFCoherent=1.97772360529 SampleCountF=1.98227123304 CountEF=0.301029995664 MaxLexFgivenE=6.42440451185 MaxLexEgivenF=6.61202676161 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2
[X] ||| preis der ersten [X,1] ||| price of the first [X,1] ||| EgivenFCoherent=1.97772360529 SampleCountF=1.98227123304 CountEF=0.301029995664 MaxLexFgivenE=2.1101714441 MaxLexEgivenF=1.73722312411 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2 2-3
[X] ||| preis der ersten [X,1] ||| price of this first [X,1] ||| EgivenFCoherent=1.97772360529 SampleCountF=1.98227123304 CountEF=0.301029995664 MaxLexFgivenE=2.15148495257 MaxLexEgivenF=3.60490814563 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2 2-3
[X] ||| preis der ersten [X,1] ||| amount of the first [X,1] ||| EgivenFCoherent=1.13262556527 SampleCountF=1.98227123304 CountEF=0.903089986992 MaxLexFgivenE=3.71320214593 MaxLexEgivenF=3.76553747382 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 1-2 2-3
[X] ||| preis der ersten [X,1] ||| fee of 1 [X,1] ||| EgivenFCoherent=1.97772360529 SampleCountF=1.98227123304 CountEF=0.301029995664 MaxLexFgivenE=6.42440451185 MaxLexEgivenF=6.61202676161 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2
[X] ||| [X,1] der ersten [X,2] ausgabe ||| [X,1] of the first [X,2] edition ||| EgivenFCoherent=0.778151250384 SampleCountF=0.845098040014 CountEF=0.301029995664 MaxLexFgivenE=2.30322062582 MaxLexEgivenF=1.98490023868 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 2-3 4-5
[X] ||| [X,1] der ersten [X,2] ausgabe ||| [X,1] from the first [X,2] issues ||| EgivenFCoherent=0.778151250384 SampleCountF=0.845098040014 CountEF=0.301029995664 MaxLexFgivenE=4.58489940679 MaxLexEgivenF=5.67212582346 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 2-3 4-5
[X] ||| der ersten [X,1] ausgabe ||| of the first [X,1] edition ||| EgivenFCoherent=0.778151250384 SampleCountF=0.845098040014 CountEF=0.301029995664 MaxLexFgivenE=2.30322062582 MaxLexEgivenF=1.98490023868 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2 3-4
[X] ||| der ersten [X,1] ausgabe ||| the first [X,1] issues ||| EgivenFCoherent=0.778151250384 SampleCountF=0.845098040014 CountEF=0.301029995664 MaxLexFgivenE=4.58489940679 MaxLexEgivenF=3.47958029995 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| der ersten [X,1] ausgabe [X,2] ||| of the first [X,1] edition [X,2] ||| EgivenFCoherent=0.778151250384 SampleCountF=0.845098040014 CountEF=0.301029995664 MaxLexFgivenE=2.30322062582 MaxLexEgivenF=1.98490023868 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2 3-4
[X] ||| der ersten [X,1] ausgabe [X,2] ||| the first [X,1] issues [X,2] ||| EgivenFCoherent=0.778151250384 SampleCountF=0.845098040014 CountEF=0.301029995664 MaxLexFgivenE=4.58489940679 MaxLexEgivenF=3.47958029995 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| war der [X,1] der ersten ||| was the [X,1] of the first ||| EgivenFCoherent=0.778151250384 SampleCountF=1.11394335231 CountEF=0.47712125472 MaxLexFgivenE=2.90709632875 MaxLexEgivenF=1.92741423585 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3 3-4 4-5
[X] ||| war der [X,1] der ersten ||| was the [X,1] the first ||| EgivenFCoherent=1.07918124605 SampleCountF=1.11394335231 CountEF=0.301029995664 MaxLexFgivenE=2.90709632875 MaxLexEgivenF=1.27210584063 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3 4-4
[X] ||| der preis der ersten ||| the price of the first ||| EgivenFCoherent=0.301029995664 SampleCountF=0.47712125472 CountEF=0.301029995664 MaxLexFgivenE=2.76958748855 MaxLexEgivenF=2.02516096231 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2 2-3 3-4
[X] ||| der preis der ersten ||| the price of this first ||| EgivenFCoherent=0.301029995664 SampleCountF=0.47712125472 CountEF=0.301029995664 MaxLexFgivenE=2.76958748855 MaxLexEgivenF=3.89284598384 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2 2-3 3-4
[X] ||| der preis der ersten [X,1] ||| the price of the first [X,1] ||| EgivenFCoherent=0.301029995664 SampleCountF=0.47712125472 CountEF=0.301029995664 MaxLexFgivenE=2.76958748855 MaxLexEgivenF=2.02516096231 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2 2-3 3-4
[X] ||| der preis der ersten [X,1] ||| the price of this first [X,1] ||| EgivenFCoherent=0.301029995664 SampleCountF=0.47712125472 CountEF=0.301029995664 MaxLexFgivenE=2.76958748855 MaxLexEgivenF=3.89284598384 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2 2-3 3-4