summaryrefslogtreecommitdiff
path: root/example_free917/grammar/grammar.4
blob: e9d2ca20b32802444c6f1a2df51481e16bcd15b0 (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
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
[X] ||| [X,1] welche ||| [X,1] the ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=3.4808508987 MaxLexEgivenF=1.22890213674 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] welche ||| [X,1] which ||| EgivenFCoherent=1.09691001301 SampleCountF=2.47856649559 CountEF=1.39794000867 MaxLexFgivenE=1.58060620543 MaxLexEgivenF=0.607344355714 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] welche ||| [X,1] which are ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.58060620543 MaxLexEgivenF=2.4073898144 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] welche ||| [X,1] who ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.14610098161 MaxLexEgivenF=1.49648312651 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] welche ||| [X,1] that ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.381802031 MaxLexEgivenF=1.05463277645 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] welche ||| [X,1] what ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=1.27674500893 MaxLexEgivenF=0.92668066027 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] welche ||| [X,1] where ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.77815125038 MaxLexEgivenF=2.2966450668 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] welche ||| [X,1] any ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.86174733723 MaxLexEgivenF=2.27337372439 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] welche ||| [X,1] welche ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.360798200667 MaxLexEgivenF=2.54874172973 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] welche ||| [X,1] allowing ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.33208701787 MaxLexEgivenF=2.97234372872 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] welche ||| [X,1] passed ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.80071707828 MaxLexEgivenF=3.55592031436 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] welche ||| [X,1] downloading ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=0.731988066676 MaxLexEgivenF=1.65646461202 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] welche [X,2] ||| [X,2] [X,1] which ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.58060620543 MaxLexEgivenF=0.607344355714 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] welche [X,2] ||| [X,1] the [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.4808508987 MaxLexEgivenF=1.22890213674 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] welche [X,2] ||| [X,1] which [X,2] ||| EgivenFCoherent=1.39794000867 SampleCountF=2.47856649559 CountEF=1.11394335231 MaxLexFgivenE=1.58060620543 MaxLexEgivenF=0.607344355714 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] welche [X,2] ||| [X,1] what [X,2] ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=1.27674500893 MaxLexEgivenF=0.92668066027 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] welche [X,2] ||| [X,1] where [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.77815125038 MaxLexEgivenF=2.2966450668 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] welche [X,2] ||| [X,1] any [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.86174733723 MaxLexEgivenF=2.27337372439 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] welche [X,2] ||| [X,1] welche [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.360798200667 MaxLexEgivenF=2.54874172973 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] welche [X,2] ||| [X,1] downloading [X,2] ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=0.731988066676 MaxLexEgivenF=1.65646461202 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| welche ||| the ||| EgivenFCoherent=1.47712125472 SampleCountF=2.47856649559 CountEF=1.04139268516 MaxLexFgivenE=3.4808508987 MaxLexEgivenF=1.22890213674 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| welche ||| which ||| EgivenFCoherent=0.864337398 SampleCountF=2.47856649559 CountEF=1.6232492904 MaxLexFgivenE=1.58060620543 MaxLexEgivenF=0.607344355714 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| welche ||| which are ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.58060620543 MaxLexEgivenF=2.4073898144 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| welche ||| which can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.58060620543 MaxLexEgivenF=3.43626594214 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| welche ||| who ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.14610098161 MaxLexEgivenF=1.49648312651 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| welche ||| that ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=2.381802031 MaxLexEgivenF=1.05463277645 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| welche ||| what ||| EgivenFCoherent=1.04575749056 SampleCountF=2.47856649559 CountEF=1.44715803134 MaxLexFgivenE=1.27674500893 MaxLexEgivenF=0.92668066027 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| welche ||| what kind ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.27674500893 MaxLexEgivenF=3.3313332993 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| welche ||| what are ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.27674500893 MaxLexEgivenF=2.72672611895 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| welche ||| what are the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.27674500893 MaxLexEgivenF=3.9556282557 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2
[X] ||| welche ||| where ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.77815125038 MaxLexEgivenF=2.2966450668 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| welche ||| any ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.86174733723 MaxLexEgivenF=2.27337372439 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| welche ||| how ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.16351203347 MaxLexEgivenF=1.85550506915 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| welche ||| we ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.42863685927 MaxLexEgivenF=3.3798290553 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| welche ||| those ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.82555888217 MaxLexEgivenF=2.69061888825 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| welche ||| special ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.68508457646 MaxLexEgivenF=3.55592031436 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| welche ||| regarding this ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.83326304744 MaxLexEgivenF=6.54756919828 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| welche ||| welche ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.360798200667 MaxLexEgivenF=2.54874172973 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| welche ||| allowing ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.33208701787 MaxLexEgivenF=2.97234372872 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| welche ||| passed ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.80071707828 MaxLexEgivenF=3.55592031436 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| welche ||| downloading ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=0.731988066676 MaxLexEgivenF=1.65646461202 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| welche ||| based ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.16669124937 MaxLexEgivenF=3.10362264336 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| welche ||| eventually ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.8790958795 MaxLexEgivenF=3.73201157341 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| welche [X,1] ||| the [X,1] ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=3.4808508987 MaxLexEgivenF=1.22890213674 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| welche [X,1] ||| which [X,1] ||| EgivenFCoherent=1.07918124605 SampleCountF=2.47856649559 CountEF=1.41497334797 MaxLexFgivenE=1.58060620543 MaxLexEgivenF=0.607344355714 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| welche [X,1] ||| what [X,1] ||| EgivenFCoherent=1.1153934187 SampleCountF=2.47856649559 CountEF=1.38021124171 MaxLexFgivenE=1.27674500893 MaxLexEgivenF=0.92668066027 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| welche [X,1] ||| what kind of [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.27674500893 MaxLexEgivenF=4.02816856451 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| welche [X,1] ||| what are [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.27674500893 MaxLexEgivenF=2.72672611895 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| welche [X,1] ||| what are the [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.27674500893 MaxLexEgivenF=3.9556282557 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2
[X] ||| welche [X,1] ||| where [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.77815125038 MaxLexEgivenF=2.2966450668 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| welche [X,1] ||| any [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.86174733723 MaxLexEgivenF=2.27337372439 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| welche [X,1] ||| we [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.42863685927 MaxLexEgivenF=3.3798290553 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| welche [X,1] ||| special [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.68508457646 MaxLexEgivenF=3.55592031436 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| welche [X,1] ||| welche [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.360798200667 MaxLexEgivenF=2.54874172973 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| welche [X,1] ||| downloading [X,1] ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=0.731988066676 MaxLexEgivenF=1.65646461202 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| welche [X,1] ||| based [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.16669124937 MaxLexEgivenF=3.10362264336 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| welche [X,1] ||| eventually [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.8790958795 MaxLexEgivenF=3.73201157341 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] von ||| [X,1] , ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=0.610623614007 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] von ||| [X,1] von ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=0.161438803422 MaxLexEgivenF=1.88842978804 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] von ||| [X,1] of ||| EgivenFCoherent=0.619788758288 SampleCountF=2.47856649559 CountEF=1.86332286012 MaxLexFgivenE=0.809257015278 MaxLexEgivenF=0.365093888202 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] von ||| [X,1] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=1.01230527106 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] von ||| [X,1] on ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=1.95182336718 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] von ||| [X,1] from ||| EgivenFCoherent=1.36317790241 SampleCountF=2.47856649559 CountEF=1.14612803568 MaxLexFgivenE=0.582289507803 MaxLexEgivenF=0.914385424793 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] von ||| [X,1] for ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=1.64753606397 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] von ||| [X,1] by ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=0.650181813054 MaxLexEgivenF=0.988211201267 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] von ||| [X,1] between ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.18140213872 MaxLexEgivenF=2.39173562566 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] von ||| of [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.809257015278 MaxLexEgivenF=0.365093888202 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] von ||| for [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=1.64753606397 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] von [X,2] ||| [X,2] for [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=1.64753606397 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] von [X,2] ||| [X,1] , [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=0.610623614007 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] von [X,2] ||| [X,1] von [X,2] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=0.161438803422 MaxLexEgivenF=1.88842978804 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] von [X,2] ||| [X,1] of [X,2] ||| EgivenFCoherent=0.713693261157 SampleCountF=2.47856649559 CountEF=1.77085201164 MaxLexFgivenE=0.809257015278 MaxLexEgivenF=0.365093888202 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] von [X,2] ||| [X,1] of the [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.809257015278 MaxLexEgivenF=1.70975772428 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] von [X,2] ||| [X,1] to [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=1.01230527106 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] von [X,2] ||| [X,1] on [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=1.95182336718 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] von [X,2] ||| [X,1] from [X,2] ||| EgivenFCoherent=1.43572856956 SampleCountF=2.47856649559 CountEF=1.07918124605 MaxLexFgivenE=0.582289507803 MaxLexEgivenF=0.914385424793 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] von [X,2] ||| [X,1] for [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=1.64753606397 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] von [X,2] ||| [X,1] by [X,2] ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=0.650181813054 MaxLexEgivenF=0.988211201267 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] von [X,2] ||| [X,1] between [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.18140213872 MaxLexEgivenF=2.39173562566 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] von [X,2] ||| of [X,2] [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.809257015278 MaxLexEgivenF=0.365093888202 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] von [X,2] ||| from [X,2] [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.582289507803 MaxLexEgivenF=0.914385424793 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] von [X,2] ||| among [X,2] [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=3.18132288092 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| von ||| , ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=0.610623614007 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| von ||| von ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=0.161438803422 MaxLexEgivenF=1.88842978804 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| von ||| von ( disambiguation ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.161438803422 MaxLexEgivenF=9.27546995033 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2
[X] ||| von ||| of ||| EgivenFCoherent=0.447737477034 SampleCountF=2.47856649559 CountEF=2.03342375549 MaxLexFgivenE=0.809257015278 MaxLexEgivenF=0.365093888202 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| von ||| in ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=1.42080109061 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| von ||| the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=1.34466383608 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| von ||| to ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=1.01230527106 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| von ||| on ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=1.95182336718 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| von ||| from ||| EgivenFCoherent=1.02996322338 SampleCountF=2.47856649559 CountEF=1.4623979979 MaxLexFgivenE=0.582289507803 MaxLexEgivenF=0.914385424793 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| von ||| for ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=1.64753606397 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| von ||| with ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=1.71760560821 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| von ||| by ||| EgivenFCoherent=1.02996322338 SampleCountF=2.47856649559 CountEF=1.4623979979 MaxLexFgivenE=0.650181813054 MaxLexEgivenF=0.988211201267 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| von ||| predicting ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=5.81580015108 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| von ||| between ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.18140213872 MaxLexEgivenF=2.39173562566 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| von ||| among ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=3.18132288092 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| von ||| mr. ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=4.45407231506 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| von [X,1] ||| [X,1] for ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=1.64753606397 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| von [X,1] ||| , [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=0.610623614007 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| von [X,1] ||| von [X,1] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=0.161438803422 MaxLexEgivenF=1.88842978804 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| von [X,1] ||| of [X,1] ||| EgivenFCoherent=0.602059991328 SampleCountF=2.47856649559 CountEF=1.88081359228 MaxLexFgivenE=0.809257015278 MaxLexEgivenF=0.365093888202 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| von [X,1] ||| of the [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.809257015278 MaxLexEgivenF=1.70975772428 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| von [X,1] ||| in [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=1.42080109061 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| von [X,1] ||| to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=1.01230527106 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| von [X,1] ||| on [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=1.95182336718 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| von [X,1] ||| from [X,1] ||| EgivenFCoherent=1.22184874962 SampleCountF=2.47856649559 CountEF=1.27875360095 MaxLexFgivenE=0.582289507803 MaxLexEgivenF=0.914385424793 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| von [X,1] ||| for [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=1.64753606397 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| von [X,1] ||| by [X,1] ||| EgivenFCoherent=1.17609125906 SampleCountF=2.47856649559 CountEF=1.32221929473 MaxLexFgivenE=0.650181813054 MaxLexEgivenF=0.988211201267 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| von [X,1] ||| predicting [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=5.81580015108 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| von [X,1] ||| between [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.18140213872 MaxLexEgivenF=2.39173562566 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| von [X,1] ||| among [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=3.18132288092 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| von [X,1] ||| mr. [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34879292713 MaxLexEgivenF=4.45407231506 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] sandmann ||| [X,1] sandmann ||| EgivenFCoherent=0.47712125472 SampleCountF=1.20411998266 CountEF=0.778151250384 MaxLexFgivenE=0.0511525224474 MaxLexEgivenF=0.511883360979 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] sandmann [X,2] ||| [X,1] sandmann [X,2] ||| EgivenFCoherent=1.17609125906 SampleCountF=1.20411998266 CountEF=0.301029995664 MaxLexFgivenE=0.0511525224474 MaxLexEgivenF=0.511883360979 IsSingletonF=1 IsSingletonFE=1 ||| 1-1
[X] ||| sandmann ||| sandmann ||| EgivenFCoherent=0.47712125472 SampleCountF=1.20411998266 CountEF=0.778151250384 MaxLexFgivenE=0.0511525224474 MaxLexEgivenF=0.511883360979 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| sandmann ||| sandman ||| EgivenFCoherent=0.698970004336 SampleCountF=1.20411998266 CountEF=0.602059991328 MaxLexFgivenE=1.29225607136 MaxLexEgivenF=0.716003343635 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| sandmann [X,1] ||| sandmann [X,1] ||| EgivenFCoherent=1.17609125906 SampleCountF=1.20411998266 CountEF=0.301029995664 MaxLexFgivenE=0.0511525224474 MaxLexEgivenF=0.511883360979 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sandmann [X,1] ||| sandman [X,1] ||| EgivenFCoherent=1.17609125906 SampleCountF=1.20411998266 CountEF=0.301029995664 MaxLexFgivenE=1.29225607136 MaxLexEgivenF=0.716003343635 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] ist ||| [X,1] was ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.36264560045 MaxLexEgivenF=1.66561448976 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ist ||| [X,1] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.60464310956 MaxLexEgivenF=0.610623614007 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ist ||| [X,1] it 's ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34832823148 MaxLexEgivenF=3.41219008944 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] ist ||| [X,1] that it is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.479842849235 MaxLexEgivenF=4.21103790505 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 1-3
[X] ||| [X,1] ist ||| [X,1] is ||| EgivenFCoherent=0.585026652029 SampleCountF=2.47856649559 CountEF=1.89762709129 MaxLexFgivenE=0.479842849235 MaxLexEgivenF=0.271544907299 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ist ||| [X,1] 's ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.34832823148 MaxLexEgivenF=1.79399424007 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ist ||| [X,1] has ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.06222359814 MaxLexEgivenF=1.50758252066 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ist ||| [X,1] are ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.39212030278 MaxLexEgivenF=1.4572078604 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ist ||| [X,1] will ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.60464310956 MaxLexEgivenF=2.01440105585 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ist ||| [X,1] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.55672571976 MaxLexEgivenF=1.87106098983 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ist ||| [X,1] should ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.58849412524 MaxLexEgivenF=2.72520274263 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ist ||| [X,1] represents ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.05777407489 MaxLexEgivenF=3.15367750887 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ist ||| [X,1] lies ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.39502182901 MaxLexEgivenF=3.31983024539 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ist ||| [X,1] then ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.60464310956 MaxLexEgivenF=3.46010253642 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ist ||| [X,1] makes ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.1330110409 MaxLexEgivenF=2.60808025702 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ist ||| is [X,1] ||| EgivenFCoherent=1.33099321904 SampleCountF=2.47856649559 CountEF=1.17609125906 MaxLexFgivenE=0.479842849235 MaxLexEgivenF=0.271544907299 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| [X,1] ist ||| are [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.39212030278 MaxLexEgivenF=1.4572078604 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] ist [X,2] ||| [X,2] [X,1] it 's ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34832823148 MaxLexEgivenF=3.41219008944 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 1-3
[X] ||| [X,1] ist [X,2] ||| [X,1] [X,2] is ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=0.479842849235 MaxLexEgivenF=0.271544907299 IsSingletonF=0 IsSingletonFE=0 ||| 1-2
[X] ||| [X,1] ist [X,2] ||| [X,1] was [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.36264560045 MaxLexEgivenF=1.66561448976 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ist [X,2] ||| [X,1] , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.60464310956 MaxLexEgivenF=0.610623614007 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ist [X,2] ||| [X,1] , [X,2] is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.479842849235 MaxLexEgivenF=0.882168521306 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] ist [X,2] ||| [X,1] is [X,2] ||| EgivenFCoherent=0.625862906001 SampleCountF=2.47856649559 CountEF=1.85733249643 MaxLexFgivenE=0.479842849235 MaxLexEgivenF=0.271544907299 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ist [X,2] ||| [X,1] 's [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.34832823148 MaxLexEgivenF=1.79399424007 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ist [X,2] ||| [X,1] has [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.06222359814 MaxLexEgivenF=1.50758252066 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ist [X,2] ||| [X,1] will [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.60464310956 MaxLexEgivenF=2.01440105585 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ist [X,2] ||| [X,1] can [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.55672571976 MaxLexEgivenF=1.87106098983 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ist [X,2] ||| [X,1] represents [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.05777407489 MaxLexEgivenF=3.15367750887 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ist [X,2] ||| [X,1] lies [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.39502182901 MaxLexEgivenF=3.31983024539 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ist [X,2] ||| is [X,2] [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.479842849235 MaxLexEgivenF=0.271544907299 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] ist [X,2] ||| is [X,1] [X,2] ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=0.479842849235 MaxLexEgivenF=0.271544907299 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| [X,1] ist [X,2] ||| are [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.39212030278 MaxLexEgivenF=1.4572078604 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| ist ||| was ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.36264560045 MaxLexEgivenF=1.66561448976 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ist ||| , ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.60464310956 MaxLexEgivenF=0.610623614007 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ist ||| it ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.4859335365 MaxLexEgivenF=1.61819584938 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ist ||| it 's ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.34832823148 MaxLexEgivenF=3.41219008944 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| ist ||| that it is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.479842849235 MaxLexEgivenF=4.21103790505 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2
[X] ||| ist ||| is ||| EgivenFCoherent=0.273001272064 SampleCountF=2.47856649559 CountEF=2.20682587603 MaxLexFgivenE=0.479842849235 MaxLexEgivenF=0.271544907299 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ist ||| 's ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.34832823148 MaxLexEgivenF=1.79399424007 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ist ||| has ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.06222359814 MaxLexEgivenF=1.50758252066 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ist ||| has it ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.06222359814 MaxLexEgivenF=3.12577837004 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| ist ||| are ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.39212030278 MaxLexEgivenF=1.4572078604 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ist ||| will ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.60464310956 MaxLexEgivenF=2.01440105585 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ist ||| may ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.60464310956 MaxLexEgivenF=2.53711772071 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ist ||| can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.55672571976 MaxLexEgivenF=1.87106098983 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ist ||| must ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42866109745 MaxLexEgivenF=2.66552736077 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ist ||| should ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.58849412524 MaxLexEgivenF=2.72520274263 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ist ||| represents ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.05777407489 MaxLexEgivenF=3.15367750887 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ist ||| lies ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.39502182901 MaxLexEgivenF=3.31983024539 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ist ||| designed ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.60464310956 MaxLexEgivenF=3.50888648161 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ist ||| then ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.60464310956 MaxLexEgivenF=3.46010253642 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ist ||| makes ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.1330110409 MaxLexEgivenF=2.60808025702 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ist [X,1] ||| [X,1] and is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.479842849235 MaxLexEgivenF=1.21774564317 IsSingletonF=0 IsSingletonFE=1 ||| 0-2
[X] ||| ist [X,1] ||| [X,1] is ||| EgivenFCoherent=1.36317790241 SampleCountF=2.47856649559 CountEF=1.14612803568 MaxLexFgivenE=0.479842849235 MaxLexEgivenF=0.271544907299 IsSingletonF=0 IsSingletonFE=0 ||| 0-1
[X] ||| ist [X,1] ||| [X,1] may ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.60464310956 MaxLexEgivenF=2.53711772071 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| ist [X,1] ||| was [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.36264560045 MaxLexEgivenF=1.66561448976 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ist [X,1] ||| , [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.60464310956 MaxLexEgivenF=0.610623614007 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ist [X,1] ||| is [X,1] ||| EgivenFCoherent=0.52287874528 SampleCountF=2.47856649559 CountEF=1.95904139232 MaxLexFgivenE=0.479842849235 MaxLexEgivenF=0.271544907299 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ist [X,1] ||| 's [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.34832823148 MaxLexEgivenF=1.79399424007 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ist [X,1] ||| has [X,1] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.06222359814 MaxLexEgivenF=1.50758252066 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ist [X,1] ||| will [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.60464310956 MaxLexEgivenF=2.01440105585 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ist [X,1] ||| can [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.55672571976 MaxLexEgivenF=1.87106098983 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ist [X,1] ||| represents [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.05777407489 MaxLexEgivenF=3.15367750887 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ist [X,1] ||| lies [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.39502182901 MaxLexEgivenF=3.31983024539 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] ein ||| [X,1] the ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.95433375657 MaxLexEgivenF=0.994165619875 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ein ||| [X,1] ein ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.471278993984 MaxLexEgivenF=2.56014894903 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ein ||| [X,1] an ||| EgivenFCoherent=1.47712125472 SampleCountF=2.47856649559 CountEF=1.04139268516 MaxLexFgivenE=0.836517203083 MaxLexEgivenF=1.02162804357 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ein ||| [X,1] is a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.834446273079 MaxLexEgivenF=1.78209277435 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] ein ||| [X,1] a ||| EgivenFCoherent=0.744727494897 SampleCountF=2.47856649559 CountEF=1.74036268949 MaxLexFgivenE=0.834446273079 MaxLexEgivenF=0.31175852484 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ein ||| [X,1] one ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.09682001275 MaxLexEgivenF=1.53213492959 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ein ||| [X,1] one the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.09682001275 MaxLexEgivenF=2.52630054946 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] ein [X,2] ||| [X,1] the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.95433375657 MaxLexEgivenF=0.994165619875 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ein [X,2] ||| [X,1] an [X,2] ||| EgivenFCoherent=1.52287874528 SampleCountF=2.47856649559 CountEF=1 MaxLexFgivenE=0.836517203083 MaxLexEgivenF=1.02162804357 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ein [X,2] ||| [X,1] a [X,2] ||| EgivenFCoherent=0.933053210369 SampleCountF=2.47856649559 CountEF=1.55630250077 MaxLexFgivenE=0.834446273079 MaxLexEgivenF=0.31175852484 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ein [X,2] ||| [X,1] one [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.09682001275 MaxLexEgivenF=1.53213492959 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] ein [X,2] ||| [X,1] one the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.09682001275 MaxLexEgivenF=2.52630054946 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] ein [X,2] ||| an [X,2] [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.836517203083 MaxLexEgivenF=1.02162804357 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] ein [X,2] ||| a [X,2] [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.834446273079 MaxLexEgivenF=0.31175852484 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| ein ||| the ||| EgivenFCoherent=1.22184874962 SampleCountF=2.47856649559 CountEF=1.27875360095 MaxLexFgivenE=1.95433375657 MaxLexEgivenF=0.994165619875 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ein ||| ein ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.471278993984 MaxLexEgivenF=2.56014894903 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ein ||| an ||| EgivenFCoherent=1.1346985739 SampleCountF=2.47856649559 CountEF=1.36172783602 MaxLexFgivenE=0.836517203083 MaxLexEgivenF=1.02162804357 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ein ||| a ||| EgivenFCoherent=0.356547323514 SampleCountF=2.47856649559 CountEF=2.12385164097 MaxLexFgivenE=0.834446273079 MaxLexEgivenF=0.31175852484 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ein ||| one ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.09682001275 MaxLexEgivenF=1.53213492959 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ein ||| one the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.09682001275 MaxLexEgivenF=2.52630054946 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| ein ||| another ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.00423874087 MaxLexEgivenF=2.12775821602 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ein ||| you ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.95433375657 MaxLexEgivenF=2.58037474165 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ein [X,1] ||| [X,1] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.95433375657 MaxLexEgivenF=0.994165619875 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| ein [X,1] ||| [X,1] an ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.836517203083 MaxLexEgivenF=1.02162804357 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| ein [X,1] ||| [X,1] a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.834446273079 MaxLexEgivenF=0.31175852484 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| ein [X,1] ||| the [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.95433375657 MaxLexEgivenF=0.994165619875 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ein [X,1] ||| ein [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.471278993984 MaxLexEgivenF=2.56014894903 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ein [X,1] ||| an [X,1] ||| EgivenFCoherent=1.22184874962 SampleCountF=2.47856649559 CountEF=1.27875360095 MaxLexFgivenE=0.836517203083 MaxLexEgivenF=1.02162804357 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ein [X,1] ||| a [X,1] ||| EgivenFCoherent=0.602059991328 SampleCountF=2.47856649559 CountEF=1.88081359228 MaxLexFgivenE=0.834446273079 MaxLexEgivenF=0.31175852484 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ein [X,1] ||| one [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.09682001275 MaxLexEgivenF=1.53213492959 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ein [X,1] ||| one the [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.09682001275 MaxLexEgivenF=2.52630054946 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| ein [X,1] ||| another [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.00423874087 MaxLexEgivenF=2.12775821602 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] traum ||| [X,1] a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.93409504599 MaxLexEgivenF=1.21684778324 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] traum ||| [X,1] i ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.36203299374 MaxLexEgivenF=2.45535250996 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] traum ||| [X,1] traum ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=0.404570587571 MaxLexEgivenF=2.11956040803 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] traum ||| [X,1] dream ||| EgivenFCoherent=0.439694756779 SampleCountF=2.47856649559 CountEF=2.04139268516 MaxLexFgivenE=0.695310197718 MaxLexEgivenF=0.37919771854 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] traum ||| [X,1] dream came true ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.695310197718 MaxLexEgivenF=4.20275256274 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 1-3
[X] ||| [X,1] traum ||| [X,1] dream come true ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.695310197718 MaxLexEgivenF=3.39827237363 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2 1-3
[X] ||| [X,1] traum ||| [X,1] dreams ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.59483018971 MaxLexEgivenF=1.50922789074 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] traum ||| [X,1] sleep ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.23641128774 MaxLexEgivenF=2.93247376468 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] traum ||| [X,1] true ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.17164668609 MaxLexEgivenF=1.49314107085 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] traum ||| [X,1] world ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.31480086278 MaxLexEgivenF=2.75638250562 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] traum ||| [X,1] idea ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.81304696516 MaxLexEgivenF=3.23350376034 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] traum ||| [X,1] delightful ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.19865708695 MaxLexEgivenF=3.23350376034 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] traum ||| [X,1] unforgettable ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.84783696252 MaxLexEgivenF=2.38840572033 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] traum ||| [X,1] intense ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.8790958795 MaxLexEgivenF=2.93247376468 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] traum ||| [X,1] implants ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.94151143263 MaxLexEgivenF=3.23350376034 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] traum ||| ) , [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.73136209134 MaxLexEgivenF=2.50226068354 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] traum ||| dream [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=0.695310197718 MaxLexEgivenF=0.37919771854 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| [X,1] traum [X,2] ||| [X,2] [X,1] dream ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=0.695310197718 MaxLexEgivenF=0.37919771854 IsSingletonF=0 IsSingletonFE=0 ||| 1-2
[X] ||| [X,1] traum [X,2] ||| [X,1] [X,2] dream ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.695310197718 MaxLexEgivenF=0.37919771854 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] traum [X,2] ||| [X,1] a [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.93409504599 MaxLexEgivenF=1.21684778324 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] traum [X,2] ||| [X,1] traum [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.404570587571 MaxLexEgivenF=2.11956040803 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] traum [X,2] ||| [X,1] dream [X,2] ||| EgivenFCoherent=0.657577319178 SampleCountF=2.47856649559 CountEF=1.8260748027 MaxLexFgivenE=0.695310197718 MaxLexEgivenF=0.37919771854 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] traum [X,2] ||| [X,1] dream , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.695310197718 MaxLexEgivenF=0.989821332547 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] traum [X,2] ||| [X,1] dream of [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.695310197718 MaxLexEgivenF=1.07603298375 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] traum [X,2] ||| [X,1] dream a [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.695310197718 MaxLexEgivenF=1.59604550178 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] traum [X,2] ||| [X,1] dreams [X,2] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.59483018971 MaxLexEgivenF=1.50922789074 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] traum [X,2] ||| [X,1] sleep [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.23641128774 MaxLexEgivenF=2.93247376468 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] traum [X,2] ||| [X,1] true [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.17164668609 MaxLexEgivenF=1.49314107085 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] traum [X,2] ||| [X,1] world [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.31480086278 MaxLexEgivenF=2.75638250562 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] traum [X,2] ||| [X,1] idea [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.81304696516 MaxLexEgivenF=3.23350376034 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] traum [X,2] ||| dream [X,1] [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.695310197718 MaxLexEgivenF=0.37919771854 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| traum ||| ) ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=4.73136209134 MaxLexEgivenF=1.89163706954 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| traum ||| part ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.23799589277 MaxLexEgivenF=2.93247376468 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| traum ||| my ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.70047656153 MaxLexEgivenF=2.33041377335 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| traum ||| a ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=4.93409504599 MaxLexEgivenF=1.21684778324 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| traum ||| great ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.32816546182 MaxLexEgivenF=2.93247376468 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| traum ||| our ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.74950249093 MaxLexEgivenF=2.63144376901 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| traum ||| i ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.36203299374 MaxLexEgivenF=2.45535250996 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| traum ||| traum ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=0.404570587571 MaxLexEgivenF=2.11956040803 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| traum ||| dream ||| EgivenFCoherent=0.380211241712 SampleCountF=2.47856649559 CountEF=2.10037054512 MaxLexFgivenE=0.695310197718 MaxLexEgivenF=0.37919771854 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| traum ||| dream came true ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.695310197718 MaxLexEgivenF=4.20275256274 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2
[X] ||| traum ||| dream come true ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.695310197718 MaxLexEgivenF=3.39827237363 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 0-2
[X] ||| traum ||| dreams ||| EgivenFCoherent=1.52287874528 SampleCountF=2.47856649559 CountEF=1 MaxLexFgivenE=1.59483018971 MaxLexEgivenF=1.50922789074 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| traum ||| sleep ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.23641128774 MaxLexEgivenF=2.93247376468 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| traum ||| true ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.17164668609 MaxLexEgivenF=1.49314107085 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| traum ||| premium ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.47842218774 MaxLexEgivenF=3.23350376034 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| traum ||| nearly ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.12721281838 MaxLexEgivenF=2.75638250562 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| traum ||| world ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.31480086278 MaxLexEgivenF=2.75638250562 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| traum ||| travellers ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.2366631987 MaxLexEgivenF=2.93247376468 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| traum ||| glass ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.75488322825 MaxLexEgivenF=3.23350376034 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| traum ||| around ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.89457910785 MaxLexEgivenF=2.63144376901 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| traum ||| tüm ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.698970004336 MaxLexEgivenF=3.23350376034 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| traum ||| real ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.68506962939 MaxLexEgivenF=2.63144376901 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| traum ||| dolomites ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.24328614608 MaxLexEgivenF=3.23350376034 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| traum ||| idea ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.81304696516 MaxLexEgivenF=3.23350376034 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| traum ||| delightful ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.19865708695 MaxLexEgivenF=3.23350376034 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| traum ||| unforgettable ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.84783696252 MaxLexEgivenF=2.38840572033 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| traum ||| intense ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.8790958795 MaxLexEgivenF=2.93247376468 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| traum ||| implants ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.94151143263 MaxLexEgivenF=3.23350376034 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| traum [X,1] ||| [X,1] dream ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.695310197718 MaxLexEgivenF=0.37919771854 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| traum [X,1] ||| [X,1] dreams ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.59483018971 MaxLexEgivenF=1.50922789074 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| traum [X,1] ||| [X,1] dolomites ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.24328614608 MaxLexEgivenF=3.23350376034 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| traum [X,1] ||| a [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.93409504599 MaxLexEgivenF=1.21684778324 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| traum [X,1] ||| our [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.74950249093 MaxLexEgivenF=2.63144376901 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| traum [X,1] ||| traum [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.404570587571 MaxLexEgivenF=2.11956040803 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| traum [X,1] ||| dream [X,1] ||| EgivenFCoherent=0.619788758288 SampleCountF=2.47856649559 CountEF=1.86332286012 MaxLexFgivenE=0.695310197718 MaxLexEgivenF=0.37919771854 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| traum [X,1] ||| dream , [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.695310197718 MaxLexEgivenF=0.989821332547 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| traum [X,1] ||| dream of [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.695310197718 MaxLexEgivenF=1.07603298375 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| traum [X,1] ||| dream a [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.695310197718 MaxLexEgivenF=1.59604550178 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| traum [X,1] ||| dreams [X,1] ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=1.59483018971 MaxLexEgivenF=1.50922789074 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| traum [X,1] ||| sleep [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.23641128774 MaxLexEgivenF=2.93247376468 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| traum [X,1] ||| true [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.17164668609 MaxLexEgivenF=1.49314107085 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| traum [X,1] ||| world [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.31480086278 MaxLexEgivenF=2.75638250562 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| traum [X,1] ||| idea [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.81304696516 MaxLexEgivenF=3.23350376034 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] tausend ||| [X,1] of thousand ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.521804388225 MaxLexEgivenF=1.0769052959 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] tausend ||| [X,1] of thousands ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.3874828828 MaxLexEgivenF=1.77814020489 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] tausend ||| [X,1] of thousands of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.3874828828 MaxLexEgivenF=2.4749754701 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 1-3
[X] ||| [X,1] tausend ||| [X,1] the thousand ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.521804388225 MaxLexEgivenF=1.72473386678 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] tausend ||| [X,1] a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.66964049735 MaxLexEgivenF=0.887598469547 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] tausend ||| [X,1] a thousand ||| EgivenFCoherent=0.985759560885 SampleCountF=2.47856649559 CountEF=1.50514997832 MaxLexFgivenE=0.521804388225 MaxLexEgivenF=1.26766850024 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2
[X] ||| [X,1] tausend ||| [X,1] one thousand ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=0.521804388225 MaxLexEgivenF=1.97396854325 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2
[X] ||| [X,1] tausend ||| [X,1] this ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.48982774976 MaxLexEgivenF=3.2659963705 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] tausend ||| [X,1] many ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.76362263367 MaxLexEgivenF=3.2659963705 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] tausend ||| [X,1] tausend ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.412180447787 MaxLexEgivenF=2.18681512445 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] tausend ||| [X,1] thousand ||| EgivenFCoherent=0.513333427374 SampleCountF=2.47856649559 CountEF=1.96848294855 MaxLexFgivenE=0.521804388225 MaxLexEgivenF=0.380070030694 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] tausend ||| [X,1] 1000 ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.23909083416 MaxLexEgivenF=2.18681512445 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] tausend ||| [X,1] thousands ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=1.3874828828 MaxLexEgivenF=1.08130493968 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] tausend ||| [X,1] thousands of ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=1.3874828828 MaxLexEgivenF=1.77814020489 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2
[X] ||| [X,1] tausend ||| [X,1] day ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.92676418666 MaxLexEgivenF=2.56702636616 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] tausend ||| [X,1] 1.000 ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.08457627793 MaxLexEgivenF=2.96496637483 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] tausend ||| [X,1] million ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.15176372848 MaxLexEgivenF=2.42089833048 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] tausend ||| [X,1] 1,000 ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.26678029577 MaxLexEgivenF=2.48784512011 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] tausend ||| [X,1] architecture ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.57130112557 MaxLexEgivenF=2.96496637483 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] tausend ||| a [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.66964049735 MaxLexEgivenF=0.887598469547 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] tausend ||| thousands [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.3874828828 MaxLexEgivenF=1.08130493968 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] tausend [X,2] ||| [X,2] [X,1] thousand ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.521804388225 MaxLexEgivenF=0.380070030694 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] tausend [X,2] ||| [X,1] of thousands of [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.3874828828 MaxLexEgivenF=2.4749754701 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2
[X] ||| [X,1] tausend [X,2] ||| [X,1] the thousand [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.521804388225 MaxLexEgivenF=1.72473386678 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] tausend [X,2] ||| [X,1] a thousand [X,2] ||| EgivenFCoherent=1.07918124605 SampleCountF=2.47856649559 CountEF=1.41497334797 MaxLexFgivenE=0.521804388225 MaxLexEgivenF=1.26766850024 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2
[X] ||| [X,1] tausend [X,2] ||| [X,1] a thousand is [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.521804388225 MaxLexEgivenF=2.73800274975 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] tausend [X,2] ||| [X,1] one thousand [X,2] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=0.521804388225 MaxLexEgivenF=1.97396854325 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2
[X] ||| [X,1] tausend [X,2] ||| [X,1] tausend [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.412180447787 MaxLexEgivenF=2.18681512445 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] tausend [X,2] ||| [X,1] thousand [X,2] ||| EgivenFCoherent=0.585026652029 SampleCountF=2.47856649559 CountEF=1.89762709129 MaxLexFgivenE=0.521804388225 MaxLexEgivenF=0.380070030694 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] tausend [X,2] ||| [X,1] 1000 [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.23909083416 MaxLexEgivenF=2.18681512445 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] tausend [X,2] ||| [X,1] thousands [X,2] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.3874828828 MaxLexEgivenF=1.08130493968 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] tausend [X,2] ||| [X,1] thousands of [X,2] ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=1.3874828828 MaxLexEgivenF=1.77814020489 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2
[X] ||| [X,1] tausend [X,2] ||| [X,1] day [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.92676418666 MaxLexEgivenF=2.56702636616 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] tausend [X,2] ||| [X,1] 1.000 [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.08457627793 MaxLexEgivenF=2.96496637483 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] tausend [X,2] ||| [X,1] 1,000 [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.26678029577 MaxLexEgivenF=2.48784512011 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] tausend [X,2] ||| [X,1] architecture [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.57130112557 MaxLexEgivenF=2.96496637483 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] tausend [X,2] ||| a thousand [X,2] [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.521804388225 MaxLexEgivenF=1.26766850024 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 1-1
[X] ||| [X,1] tausend [X,2] ||| thousands [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.3874828828 MaxLexEgivenF=1.08130493968 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| tausend ||| ( ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.35725660976 MaxLexEgivenF=1.57124001121 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| tausend ||| of thousands ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.3874828828 MaxLexEgivenF=1.77814020489 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| tausend ||| a ||| EgivenFCoherent=1.52287874528 SampleCountF=2.47856649559 CountEF=1 MaxLexFgivenE=3.66964049735 MaxLexEgivenF=0.887598469547 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| tausend ||| a world ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.66964049735 MaxLexEgivenF=3.15359484004 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| tausend ||| a thousand ||| EgivenFCoherent=0.875061263392 SampleCountF=2.47856649559 CountEF=1.61278385672 MaxLexFgivenE=0.521804388225 MaxLexEgivenF=1.26766850024 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| tausend ||| one thousand ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=0.521804388225 MaxLexEgivenF=1.97396854325 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| tausend ||| this ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.48982774976 MaxLexEgivenF=3.2659963705 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| tausend ||| many ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.76362263367 MaxLexEgivenF=3.2659963705 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| tausend ||| tausend ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.412180447787 MaxLexEgivenF=2.18681512445 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| tausend ||| thousand ||| EgivenFCoherent=0.47712125472 SampleCountF=2.47856649559 CountEF=2.00432137378 MaxLexFgivenE=0.521804388225 MaxLexEgivenF=0.380070030694 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| tausend ||| 1000 ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.23909083416 MaxLexEgivenF=2.18681512445 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| tausend ||| 1000 ( number ) ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.23909083416 MaxLexEgivenF=8.61465858003 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2 0-3
[X] ||| tausend ||| thousands ||| EgivenFCoherent=1.47712125472 SampleCountF=2.47856649559 CountEF=1.04139268516 MaxLexFgivenE=1.3874828828 MaxLexEgivenF=1.08130493968 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| tausend ||| thousands of ||| EgivenFCoherent=1.43572856956 SampleCountF=2.47856649559 CountEF=1.07918124605 MaxLexFgivenE=1.3874828828 MaxLexEgivenF=1.77814020489 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| tausend ||| day ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.92676418666 MaxLexEgivenF=2.56702636616 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| tausend ||| old ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.09177244142 MaxLexEgivenF=2.96496637483 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| tausend ||| 1.000 ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.08457627793 MaxLexEgivenF=2.96496637483 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| tausend ||| million ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.15176372848 MaxLexEgivenF=2.42089833048 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| tausend ||| charts ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.06557971473 MaxLexEgivenF=3.2659963705 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| tausend ||| ment ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.10380372096 MaxLexEgivenF=3.2659963705 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| tausend ||| europe ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.7275819194 MaxLexEgivenF=2.66393637917 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| tausend ||| 1,000 ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.26678029577 MaxLexEgivenF=2.48784512011 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| tausend ||| architecture ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.57130112557 MaxLexEgivenF=2.96496637483 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| tausend [X,1] ||| of thousands of [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.3874828828 MaxLexEgivenF=2.4749754701 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| tausend [X,1] ||| a thousand [X,1] ||| EgivenFCoherent=0.958607314842 SampleCountF=2.47856649559 CountEF=1.53147891704 MaxLexFgivenE=0.521804388225 MaxLexEgivenF=1.26766850024 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| tausend [X,1] ||| a thousand is [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.521804388225 MaxLexEgivenF=2.73800274975 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| tausend [X,1] ||| one thousand [X,1] ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=0.521804388225 MaxLexEgivenF=1.97396854325 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| tausend [X,1] ||| tausend [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.412180447787 MaxLexEgivenF=2.18681512445 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| tausend [X,1] ||| thousand [X,1] ||| EgivenFCoherent=0.552841968658 SampleCountF=2.47856649559 CountEF=1.92941892571 MaxLexFgivenE=0.521804388225 MaxLexEgivenF=0.380070030694 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| tausend [X,1] ||| 1000 [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.23909083416 MaxLexEgivenF=2.18681512445 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| tausend [X,1] ||| thousands [X,1] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.3874828828 MaxLexEgivenF=1.08130493968 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| tausend [X,1] ||| thousands of [X,1] ||| EgivenFCoherent=1.47712125472 SampleCountF=2.47856649559 CountEF=1.04139268516 MaxLexFgivenE=1.3874828828 MaxLexEgivenF=1.77814020489 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| tausend [X,1] ||| day [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.92676418666 MaxLexEgivenF=2.56702636616 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| tausend [X,1] ||| 1.000 [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.08457627793 MaxLexEgivenF=2.96496637483 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| tausend [X,1] ||| 1,000 [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.26678029577 MaxLexEgivenF=2.48784512011 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| tausend [X,1] ||| architecture [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.57130112557 MaxLexEgivenF=2.96496637483 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] katzen ||| [X,1] of cats ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.497466636716 MaxLexEgivenF=1.01696660168 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] katzen ||| [X,1] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.68293033971 MaxLexEgivenF=1.34466383608 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] katzen ||| [X,1] are ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.90016495713 MaxLexEgivenF=2.0182402939 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] katzen ||| [X,1] felines ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.20411998266 MaxLexEgivenF=2.46314613673 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] katzen ||| [X,1] cats ||| EgivenFCoherent=0.397940008672 SampleCountF=2.47856649559 CountEF=2.08278537032 MaxLexFgivenE=0.497466636716 MaxLexEgivenF=0.320131336472 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] katzen ||| [X,1] cat ||| EgivenFCoherent=1.43572856956 SampleCountF=2.47856649559 CountEF=1.07918124605 MaxLexFgivenE=1.7524752729 MaxLexEgivenF=1.33281236823 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] katzen ||| [X,1] entries ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.40174508224 MaxLexEgivenF=2.76417613239 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] katzen ||| [X,1] italian ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.61436983955 MaxLexEgivenF=2.46314613673 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] katzen ||| cats [X,1] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=0.497466636716 MaxLexEgivenF=0.320131336472 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| [X,1] katzen ||| cats in [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.497466636716 MaxLexEgivenF=1.74093242708 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] katzen ||| cat [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.7524752729 MaxLexEgivenF=1.33281236823 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] katzen [X,2] ||| [X,2] [X,1] cats ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.497466636716 MaxLexEgivenF=0.320131336472 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] katzen [X,2] ||| [X,1] of cats [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.497466636716 MaxLexEgivenF=1.01696660168 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] katzen [X,2] ||| [X,1] are [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.90016495713 MaxLexEgivenF=2.0182402939 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] katzen [X,2] ||| [X,1] cats [X,2] ||| EgivenFCoherent=0.563307402336 SampleCountF=2.47856649559 CountEF=1.91907809238 MaxLexFgivenE=0.497466636716 MaxLexEgivenF=0.320131336472 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] katzen [X,2] ||| [X,1] cats of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.497466636716 MaxLexEgivenF=1.01696660168 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] katzen [X,2] ||| [X,1] cat [X,2] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.7524752729 MaxLexEgivenF=1.33281236823 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] katzen [X,2] ||| [X,1] entries [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.40174508224 MaxLexEgivenF=2.76417613239 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] katzen [X,2] ||| cats [X,2] [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.497466636716 MaxLexEgivenF=0.320131336472 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| [X,1] katzen [X,2] ||| cats [X,1] [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.497466636716 MaxLexEgivenF=0.320131336472 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| [X,1] katzen [X,2] ||| cat [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.7524752729 MaxLexEgivenF=1.33281236823 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| katzen ||| the ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=5.68293033971 MaxLexEgivenF=1.34466383608 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| katzen ||| more than ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.22687474253 MaxLexEgivenF=4.35226100572 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| katzen ||| are ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.90016495713 MaxLexEgivenF=2.0182402939 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| katzen ||| they have much ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.08864984756 MaxLexEgivenF=6.91231715546 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2
[X] ||| katzen ||| very ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.70625252242 MaxLexEgivenF=2.46314613673 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| katzen ||| felidae ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.740362689494 MaxLexEgivenF=2.46314613673 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| katzen ||| felines ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.20411998266 MaxLexEgivenF=2.46314613673 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| katzen ||| cats ||| EgivenFCoherent=0.295277666775 SampleCountF=2.47856649559 CountEF=2.18469143082 MaxLexFgivenE=0.497466636716 MaxLexEgivenF=0.320131336472 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| katzen ||| blalock ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.61278385672 MaxLexEgivenF=2.76417613239 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| katzen ||| cat ||| EgivenFCoherent=1.39794000867 SampleCountF=2.47856649559 CountEF=1.11394335231 MaxLexFgivenE=1.7524752729 MaxLexEgivenF=1.33281236823 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| katzen ||| entries ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.40174508224 MaxLexEgivenF=2.76417613239 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| katzen ||| italian ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.61436983955 MaxLexEgivenF=2.46314613673 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| katzen ||| general ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.22445536434 MaxLexEgivenF=2.76417613239 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| katzen [X,1] ||| [X,1] cats ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.497466636716 MaxLexEgivenF=0.320131336472 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| katzen [X,1] ||| are [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.90016495713 MaxLexEgivenF=2.0182402939 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| katzen [X,1] ||| cats [X,1] ||| EgivenFCoherent=0.47712125472 SampleCountF=2.47856649559 CountEF=2.00432137378 MaxLexFgivenE=0.497466636716 MaxLexEgivenF=0.320131336472 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| katzen [X,1] ||| cats of [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.497466636716 MaxLexEgivenF=1.01696660168 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| katzen [X,1] ||| cat [X,1] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.7524752729 MaxLexEgivenF=1.33281236823 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| katzen [X,1] ||| entries [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.40174508224 MaxLexEgivenF=2.76417613239 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] welche [X,2] von ||| [X,1] which [X,2] of ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.38986322071 MaxLexEgivenF=0.972438243916 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] welche [X,2] von ||| [X,1] which defines [X,2] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.58740826566 MaxLexEgivenF=5.30650980866 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4
[X] ||| [X,1] welche [X,2] von ||| [X,1] what [X,2] of ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=2.08600202421 MaxLexEgivenF=1.29177454847 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| welche [X,1] von ||| the [X,1] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.29010791398 MaxLexEgivenF=1.59399602494 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| welche [X,1] von ||| which [X,1] of ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=2.38986322071 MaxLexEgivenF=0.972438243916 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| welche [X,1] von ||| which [X,1] from ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.16289571324 MaxLexEgivenF=1.52172978051 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| welche [X,1] von ||| which defines [X,1] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.58740826566 MaxLexEgivenF=5.30650980866 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| welche [X,1] von ||| what [X,1] of ||| EgivenFCoherent=1.19836765377 SampleCountF=2.47856649559 CountEF=1.30102999566 MaxLexFgivenE=2.08600202421 MaxLexEgivenF=1.29177454847 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| welche [X,1] von ||| what [X,1] from ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.85903451674 MaxLexEgivenF=1.84106608506 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| welche [X,1] von [X,2] ||| the [X,1] of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.29010791398 MaxLexEgivenF=1.59399602494 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| welche [X,1] von [X,2] ||| which [X,1] of [X,2] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=2.38986322071 MaxLexEgivenF=0.972438243916 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| welche [X,1] von [X,2] ||| which [X,1] from [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.16289571324 MaxLexEgivenF=1.52172978051 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| welche [X,1] von [X,2] ||| which defines [X,1] of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.58740826566 MaxLexEgivenF=5.30650980866 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| welche [X,1] von [X,2] ||| what [X,1] [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.62553793606 MaxLexEgivenF=0.92668066027 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| welche [X,1] von [X,2] ||| what [X,1] of [X,2] ||| EgivenFCoherent=1.24667233334 SampleCountF=2.47856649559 CountEF=1.2552725051 MaxLexFgivenE=2.08600202421 MaxLexEgivenF=1.29177454847 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| welche [X,1] von [X,2] ||| what [X,1] from [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.85903451674 MaxLexEgivenF=1.84106608506 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] welche [X,2] ist ||| [X,1] which [X,2] is ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=2.06044905467 MaxLexEgivenF=0.878889263013 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] welche [X,2] ist ||| [X,1] which [X,2] does ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.98917739828 MaxLexEgivenF=3.27901335696 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] welche [X,2] ist ||| [X,1] which [X,2] being ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.185249315 MaxLexEgivenF=3.48128171076 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] welche [X,2] ist ||| [X,1] which is [X,2] ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=2.06044905467 MaxLexEgivenF=0.878889263013 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-2
[X] ||| [X,1] welche [X,2] ist ||| [X,1] which we can [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.13733192519 MaxLexEgivenF=5.85823440085 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-3
[X] ||| [X,1] welche [X,2] ist ||| [X,1] what [X,2] is ||| EgivenFCoherent=1.43572856956 SampleCountF=2.47856649559 CountEF=1.07918124605 MaxLexFgivenE=1.75658785817 MaxLexEgivenF=1.19822556757 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| welche [X,1] ist ||| which [X,1] is ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=2.06044905467 MaxLexEgivenF=0.878889263013 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| welche [X,1] ist ||| which [X,1] does ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.98917739828 MaxLexEgivenF=3.27901335696 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| welche [X,1] ist ||| which [X,1] being ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.185249315 MaxLexEgivenF=3.48128171076 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| welche [X,1] ist ||| which is [X,1] ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=2.06044905467 MaxLexEgivenF=0.878889263013 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-1
[X] ||| welche [X,1] ist ||| which we can [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.13733192519 MaxLexEgivenF=5.85823440085 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-2
[X] ||| welche [X,1] ist ||| what [X,1] is ||| EgivenFCoherent=1.33099321904 SampleCountF=2.47856649559 CountEF=1.17609125906 MaxLexFgivenE=1.75658785817 MaxLexEgivenF=1.19822556757 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| welche [X,1] ist ||| what [X,1] do ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.8813881185 MaxLexEgivenF=3.60953767027 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| welche [X,1] ist [X,2] ||| the [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.08549400827 MaxLexEgivenF=1.22890213674 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| welche [X,1] ist [X,2] ||| which [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.185249315 MaxLexEgivenF=0.607344355714 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| welche [X,1] ist [X,2] ||| which [X,1] is [X,2] ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=2.06044905467 MaxLexEgivenF=0.878889263013 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| welche [X,1] ist [X,2] ||| which [X,1] is the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.06044905467 MaxLexEgivenF=2.10779139975 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| welche [X,1] ist [X,2] ||| which [X,1] does [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.98917739828 MaxLexEgivenF=3.27901335696 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| welche [X,1] ist [X,2] ||| which [X,1] being of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.185249315 MaxLexEgivenF=4.17811697597 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| welche [X,1] ist [X,2] ||| which is [X,1] [X,2] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=2.06044905467 MaxLexEgivenF=0.878889263013 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-1
[X] ||| welche [X,1] ist [X,2] ||| which we can [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.13733192519 MaxLexEgivenF=5.85823440085 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-2
[X] ||| welche [X,1] ist [X,2] ||| their [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.73861689295 MaxLexEgivenF=3.43098157775 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| welche [X,1] ist [X,2] ||| what [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.8813881185 MaxLexEgivenF=0.92668066027 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| welche [X,1] ist [X,2] ||| what [X,1] [X,2] is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.75658785817 MaxLexEgivenF=1.19822556757 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| welche [X,1] ist [X,2] ||| what [X,1] is [X,2] ||| EgivenFCoherent=1.33099321904 SampleCountF=2.47856649559 CountEF=1.17609125906 MaxLexFgivenE=1.75658785817 MaxLexEgivenF=1.19822556757 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| welche [X,1] ist [X,2] ||| what [X,1] do [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.8813881185 MaxLexEgivenF=3.60953767027 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] welche [X,2] ein ||| [X,1] [X,2] that an ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.21831923408 MaxLexEgivenF=2.07626082003 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 3-3
[X] ||| [X,1] welche [X,2] ein ||| [X,1] which [X,2] in a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.41505247851 MaxLexEgivenF=2.33990397116 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-4
[X] ||| [X,1] welche [X,2] ein ||| [X,1] which [X,2] an ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.41712340852 MaxLexEgivenF=1.62897239929 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] welche [X,2] ein ||| [X,1] which [X,2] a ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=2.41505247851 MaxLexEgivenF=0.919102880555 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] welche [X,2] ein ||| [X,1] what [X,2] an ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.11326221202 MaxLexEgivenF=1.94830870384 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] welche [X,2] ein ||| [X,1] welche [X,2] ein ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.832077194651 MaxLexEgivenF=5.10889067876 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| welche [X,1] ein ||| [X,1] that an ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.21831923408 MaxLexEgivenF=2.07626082003 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 2-2
[X] ||| welche [X,1] ein ||| the [X,1] a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.31529717178 MaxLexEgivenF=1.30592414472 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| welche [X,1] ein ||| which [X,1] in a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.41505247851 MaxLexEgivenF=2.33990397116 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| welche [X,1] ein ||| which [X,1] an ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.41712340852 MaxLexEgivenF=1.62897239929 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| welche [X,1] ein ||| which [X,1] a ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=2.41505247851 MaxLexEgivenF=0.919102880555 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| welche [X,1] ein ||| what [X,1] an ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.11326221202 MaxLexEgivenF=1.94830870384 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| welche [X,1] ein ||| what [X,1] for a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.11119128201 MaxLexEgivenF=2.88597524908 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| welche [X,1] ein ||| what [X,1] a ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=2.11119128201 MaxLexEgivenF=1.23843918511 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| welche [X,1] ein ||| whichever [X,1] a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.13392244067 MaxLexEgivenF=3.19867205824 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| welche [X,1] ein ||| welche [X,1] ein ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.832077194651 MaxLexEgivenF=5.10889067876 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| welche [X,1] ein [X,2] ||| [X,1] that an [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.21831923408 MaxLexEgivenF=2.07626082003 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 2-2
[X] ||| welche [X,1] ein [X,2] ||| the [X,1] a [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.31529717178 MaxLexEgivenF=1.30592414472 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| welche [X,1] ein [X,2] ||| which [X,1] in a [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.41505247851 MaxLexEgivenF=2.33990397116 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| welche [X,1] ein [X,2] ||| which [X,1] an [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.41712340852 MaxLexEgivenF=1.62897239929 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| welche [X,1] ein [X,2] ||| which [X,1] a [X,2] ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=2.41505247851 MaxLexEgivenF=0.919102880555 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| welche [X,1] ein [X,2] ||| what [X,1] an [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.11326221202 MaxLexEgivenF=1.94830870384 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| welche [X,1] ein [X,2] ||| what [X,1] for a [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.11119128201 MaxLexEgivenF=2.88597524908 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| welche [X,1] ein [X,2] ||| what [X,1] a [X,2] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=2.11119128201 MaxLexEgivenF=1.23843918511 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| [X,1] ausgabe von ||| [X,1] the issue of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.68327149439 MaxLexEgivenF=2.38364860239 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 2-3
[X] ||| [X,1] ausgabe von ||| [X,1] output ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.30265305091 MaxLexEgivenF=0.827931996414 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-1
[X] ||| [X,1] ausgabe von ||| [X,1] output of ||| EgivenFCoherent=1.30102999566 SampleCountF=2.47856649559 CountEF=1.20411998266 MaxLexFgivenE=1.76311713906 MaxLexEgivenF=1.19302588462 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] ausgabe von ||| [X,1] output from ||| EgivenFCoherent=1.52287874528 SampleCountF=2.47856649559 CountEF=1 MaxLexFgivenE=1.53614963159 MaxLexEgivenF=1.74231742121 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] ausgabe von ||| [X,1] output by ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.60404193684 MaxLexEgivenF=1.81614319768 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] ausgabe von ||| [X,1] issue of ||| EgivenFCoherent=0.985759560885 SampleCountF=2.47856649559 CountEF=1.50514997832 MaxLexFgivenE=1.68327149439 MaxLexEgivenF=1.0389847663 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] ausgabe von ||| [X,1] edition of ||| EgivenFCoherent=0.875061263392 SampleCountF=2.47856649559 CountEF=1.61278385672 MaxLexFgivenE=1.76800266739 MaxLexEgivenF=1.14426881492 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] ausgabe von ||| [X,1] edition by ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.60892746517 MaxLexEgivenF=1.76738612798 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] ausgabe von ||| [X,1] copy of ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.29295689669 MaxLexEgivenF=2.61756366178 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] ausgabe von ||| [X,1] version of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.58510295188 MaxLexEgivenF=2.36483834569 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] ausgabe von ||| [X,1] issuance of ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.80925701528 MaxLexEgivenF=2.61756366178 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] ausgabe von ||| [X,1] issuing ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.68429443387 MaxLexEgivenF=2.16949553852 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-1
[X] ||| [X,1] ausgabe von ||| [X,1] issuing of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.14475852202 MaxLexEgivenF=2.53458942672 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] ausgabe von ||| [X,1] issues of ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=4.04968144836 MaxLexEgivenF=3.29425727141 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] ausgabe von ||| [X,1] printing ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.34940051419 MaxLexEgivenF=2.8322533702 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-1
[X] ||| [X,1] ausgabe von ||| [X,1] scorsa edizione di ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.72900416884 MaxLexEgivenF=10.1880508201 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 2-3
[X] ||| [X,1] ausgabe von ||| issue of [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.68327149439 MaxLexEgivenF=1.0389847663 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-1
[X] ||| [X,1] ausgabe von [X,2] ||| [X,2] [X,1] output ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.30265305091 MaxLexEgivenF=0.827931996414 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] ausgabe von [X,2] ||| [X,2] issue of [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.68327149439 MaxLexEgivenF=1.0389847663 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] ausgabe von [X,2] ||| [X,1] [X,2] output ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.30265305091 MaxLexEgivenF=0.827931996414 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] ausgabe von [X,2] ||| [X,1] [X,2] edition ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.30753857924 MaxLexEgivenF=0.779174926714 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] ausgabe von [X,2] ||| [X,1] [X,2] edition of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.76800266739 MaxLexEgivenF=1.14426881492 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 2-3
[X] ||| [X,1] ausgabe von [X,2] ||| [X,1] the issue of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.68327149439 MaxLexEgivenF=2.38364860239 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 2-3
[X] ||| [X,1] ausgabe von [X,2] ||| [X,1] online spare [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.65285239334 MaxLexEgivenF=6.58532549435 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] ausgabe von [X,2] ||| [X,1] output [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.30265305091 MaxLexEgivenF=0.827931996414 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-1
[X] ||| [X,1] ausgabe von [X,2] ||| [X,1] output of [X,2] ||| EgivenFCoherent=1.39794000867 SampleCountF=2.47856649559 CountEF=1.11394335231 MaxLexFgivenE=1.76311713906 MaxLexEgivenF=1.19302588462 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] ausgabe von [X,2] ||| [X,1] output of the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.76311713906 MaxLexEgivenF=2.5376897207 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] ausgabe von [X,2] ||| [X,1] output from [X,2] ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=1.53614963159 MaxLexEgivenF=1.74231742121 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] ausgabe von [X,2] ||| [X,1] output by [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.60404193684 MaxLexEgivenF=1.81614319768 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] ausgabe von [X,2] ||| [X,1] issue [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.22280740624 MaxLexEgivenF=0.673890878102 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] ausgabe von [X,2] ||| [X,1] issue of [X,2] ||| EgivenFCoherent=1.09691001301 SampleCountF=2.47856649559 CountEF=1.39794000867 MaxLexFgivenE=1.68327149439 MaxLexEgivenF=1.0389847663 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] ausgabe von [X,2] ||| [X,1] edition of [X,2] ||| EgivenFCoherent=0.985759560885 SampleCountF=2.47856649559 CountEF=1.50514997832 MaxLexFgivenE=1.76800266739 MaxLexEgivenF=1.14426881492 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] ausgabe von [X,2] ||| [X,1] edition by [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.60892746517 MaxLexEgivenF=1.76738612798 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] ausgabe von [X,2] ||| [X,1] copy of [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.29295689669 MaxLexEgivenF=2.61756366178 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] ausgabe von [X,2] ||| [X,1] version of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.58510295188 MaxLexEgivenF=2.36483834569 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] ausgabe von [X,2] ||| [X,1] issuance of [X,2] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.80925701528 MaxLexEgivenF=2.61756366178 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] ausgabe von [X,2] ||| [X,1] issuing [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.68429443387 MaxLexEgivenF=2.16949553852 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-1
[X] ||| [X,1] ausgabe von [X,2] ||| [X,1] issuing of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.14475852202 MaxLexEgivenF=2.53458942672 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] ausgabe von [X,2] ||| [X,1] issues of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.04968144836 MaxLexEgivenF=3.29425727141 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] ausgabe von [X,2] ||| [X,1] printing [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.34940051419 MaxLexEgivenF=2.8322533702 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-1
[X] ||| ausgabe von ||| output ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.30265305091 MaxLexEgivenF=0.827931996414 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0
[X] ||| ausgabe von ||| output of ||| EgivenFCoherent=1.24667233334 SampleCountF=2.47856649559 CountEF=1.2552725051 MaxLexFgivenE=1.76311713906 MaxLexEgivenF=1.19302588462 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ausgabe von ||| output from ||| EgivenFCoherent=1.47712125472 SampleCountF=2.47856649559 CountEF=1.04139268516 MaxLexFgivenE=1.53614963159 MaxLexEgivenF=1.74231742121 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ausgabe von ||| output by ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.60404193684 MaxLexEgivenF=1.81614319768 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ausgabe von ||| issue of ||| EgivenFCoherent=0.897337658103 SampleCountF=2.47856649559 CountEF=1.59106460703 MaxLexFgivenE=1.68327149439 MaxLexEgivenF=1.0389847663 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ausgabe von ||| edition of ||| EgivenFCoherent=0.833668578233 SampleCountF=2.47856649559 CountEF=1.65321251378 MaxLexFgivenE=1.76800266739 MaxLexEgivenF=1.14426881492 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ausgabe von ||| edition by ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.60892746517 MaxLexEgivenF=1.76738612798 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ausgabe von ||| copy of ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.29295689669 MaxLexEgivenF=2.61756366178 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ausgabe von ||| version of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.58510295188 MaxLexEgivenF=2.36483834569 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ausgabe von ||| issuance of ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=1.80925701528 MaxLexEgivenF=2.61756366178 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ausgabe von ||| issuing ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.68429443387 MaxLexEgivenF=2.16949553852 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0
[X] ||| ausgabe von ||| issuing of ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.14475852202 MaxLexEgivenF=2.53458942672 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ausgabe von ||| available from ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.46488518909 MaxLexEgivenF=3.54251881233 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ausgabe von ||| issues of ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=4.04968144836 MaxLexEgivenF=3.29425727141 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ausgabe von ||| world of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.52199788673 MaxLexEgivenF=2.81713601669 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ausgabe von ||| printing ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.34940051419 MaxLexEgivenF=2.8322533702 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0
[X] ||| ausgabe von ||| scorsa edizione di ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.72900416884 MaxLexEgivenF=10.1880508201 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2
[X] ||| ausgabe von [X,1] ||| [X,1] output ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.30265305091 MaxLexEgivenF=0.827931996414 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| ausgabe von [X,1] ||| [X,1] issue of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.68327149439 MaxLexEgivenF=1.0389847663 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 1-2
[X] ||| ausgabe von [X,1] ||| [X,1] edition ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.30753857924 MaxLexEgivenF=0.779174926714 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| ausgabe von [X,1] ||| [X,1] edition of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.76800266739 MaxLexEgivenF=1.14426881492 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 1-2
[X] ||| ausgabe von [X,1] ||| online spare [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.65285239334 MaxLexEgivenF=6.58532549435 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| ausgabe von [X,1] ||| output [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.30265305091 MaxLexEgivenF=0.827931996414 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0
[X] ||| ausgabe von [X,1] ||| output of [X,1] ||| EgivenFCoherent=1.39794000867 SampleCountF=2.47856649559 CountEF=1.11394335231 MaxLexFgivenE=1.76311713906 MaxLexEgivenF=1.19302588462 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ausgabe von [X,1] ||| output of the [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.76311713906 MaxLexEgivenF=2.5376897207 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ausgabe von [X,1] ||| output from [X,1] ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=1.53614963159 MaxLexEgivenF=1.74231742121 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ausgabe von [X,1] ||| output by [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.60404193684 MaxLexEgivenF=1.81614319768 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ausgabe von [X,1] ||| issue [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.22280740624 MaxLexEgivenF=0.673890878102 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ausgabe von [X,1] ||| issue of [X,1] ||| EgivenFCoherent=1.01472325682 SampleCountF=2.47856649559 CountEF=1.47712125472 MaxLexFgivenE=1.68327149439 MaxLexEgivenF=1.0389847663 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ausgabe von [X,1] ||| edition of [X,1] ||| EgivenFCoherent=0.945642337677 SampleCountF=2.47856649559 CountEF=1.54406804435 MaxLexFgivenE=1.76800266739 MaxLexEgivenF=1.14426881492 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ausgabe von [X,1] ||| edition by [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.60892746517 MaxLexEgivenF=1.76738612798 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ausgabe von [X,1] ||| copy of [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.29295689669 MaxLexEgivenF=2.61756366178 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ausgabe von [X,1] ||| version of [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.58510295188 MaxLexEgivenF=2.36483834569 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ausgabe von [X,1] ||| issuance of [X,1] ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=1.80925701528 MaxLexEgivenF=2.61756366178 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ausgabe von [X,1] ||| issuing [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.68429443387 MaxLexEgivenF=2.16949553852 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0
[X] ||| ausgabe von [X,1] ||| issuing of [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.14475852202 MaxLexEgivenF=2.53458942672 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ausgabe von [X,1] ||| issues of [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.04968144836 MaxLexEgivenF=3.29425727141 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ausgabe von [X,1] ||| world of [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.52199788673 MaxLexEgivenF=2.81713601669 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ausgabe von [X,1] ||| printing [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.34940051419 MaxLexEgivenF=2.8322533702 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0
[X] ||| [X,1] ausgabe [X,2] ist ||| [X,1] output [X,2] is ||| EgivenFCoherent=2.27875360095 SampleCountF=2.28103336725 CountEF=0.301029995664 MaxLexFgivenE=1.43370297302 MaxLexEgivenF=1.09947690371 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] ausgabe [X,2] ist ||| [X,1] output is [X,2] ||| EgivenFCoherent=2.27875360095 SampleCountF=2.28103336725 CountEF=0.301029995664 MaxLexFgivenE=1.43370297302 MaxLexEgivenF=1.09947690371 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-2
[X] ||| [X,1] ausgabe [X,2] ist ||| [X,1] issue [X,2] , ||| EgivenFCoherent=2.27875360095 SampleCountF=2.28103336725 CountEF=0.301029995664 MaxLexFgivenE=2.47865758868 MaxLexEgivenF=1.28451449211 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] ausgabe [X,2] ist ||| [X,1] issue [X,2] is ||| EgivenFCoherent=1.23736091579 SampleCountF=2.28103336725 CountEF=1.07918124605 MaxLexFgivenE=1.35385732835 MaxLexEgivenF=0.945435785401 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] ausgabe [X,2] ist ||| [X,1] issue [X,2] has ||| EgivenFCoherent=2.27875360095 SampleCountF=2.28103336725 CountEF=0.301029995664 MaxLexFgivenE=1.93623807725 MaxLexEgivenF=2.18147339876 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] ausgabe [X,2] ist ||| [X,1] edition [X,2] is ||| EgivenFCoherent=1.57978359662 SampleCountF=2.28103336725 CountEF=0.778151250384 MaxLexFgivenE=1.43858850135 MaxLexEgivenF=1.05071983401 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] ausgabe [X,2] ist ||| [X,1] edition [X,2] 's ||| EgivenFCoherent=2.27875360095 SampleCountF=2.28103336725 CountEF=0.301029995664 MaxLexFgivenE=2.30707388359 MaxLexEgivenF=2.57316916678 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] ausgabe [X,2] ist ||| [X,1] edition [X,2] has ||| EgivenFCoherent=1.97772360529 SampleCountF=2.28103336725 CountEF=0.47712125472 MaxLexFgivenE=2.02096925025 MaxLexEgivenF=2.28675744738 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| ausgabe [X,1] ist ||| output [X,1] is ||| EgivenFCoherent=2.27875360095 SampleCountF=2.28103336725 CountEF=0.301029995664 MaxLexFgivenE=1.43370297302 MaxLexEgivenF=1.09947690371 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ausgabe [X,1] ist ||| output is [X,1] ||| EgivenFCoherent=2.27875360095 SampleCountF=2.28103336725 CountEF=0.301029995664 MaxLexFgivenE=1.43370297302 MaxLexEgivenF=1.09947690371 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-1
[X] ||| ausgabe [X,1] ist ||| release [X,1] is ||| EgivenFCoherent=2.27875360095 SampleCountF=2.28103336725 CountEF=0.301029995664 MaxLexFgivenE=3.12989461918 MaxLexEgivenF=2.52401468088 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ausgabe [X,1] ist ||| issue [X,1] , ||| EgivenFCoherent=2.27875360095 SampleCountF=2.28103336725 CountEF=0.301029995664 MaxLexFgivenE=2.47865758868 MaxLexEgivenF=1.28451449211 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ausgabe [X,1] ist ||| issue [X,1] is ||| EgivenFCoherent=1.16481024865 SampleCountF=2.28103336725 CountEF=1.14612803568 MaxLexFgivenE=1.35385732835 MaxLexEgivenF=0.945435785401 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ausgabe [X,1] ist ||| issue [X,1] has ||| EgivenFCoherent=2.27875360095 SampleCountF=2.28103336725 CountEF=0.301029995664 MaxLexFgivenE=1.93623807725 MaxLexEgivenF=2.18147339876 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ausgabe [X,1] ist ||| edition [X,1] is ||| EgivenFCoherent=1.43365556094 SampleCountF=2.28103336725 CountEF=0.903089986992 MaxLexFgivenE=1.43858850135 MaxLexEgivenF=1.05071983401 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ausgabe [X,1] ist ||| edition [X,1] 's ||| EgivenFCoherent=2.27875360095 SampleCountF=2.28103336725 CountEF=0.301029995664 MaxLexFgivenE=2.30707388359 MaxLexEgivenF=2.57316916678 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ausgabe [X,1] ist ||| edition [X,1] has ||| EgivenFCoherent=1.97772360529 SampleCountF=2.28103336725 CountEF=0.47712125472 MaxLexFgivenE=2.02096925025 MaxLexEgivenF=2.28675744738 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ausgabe [X,1] ist [X,2] ||| output [X,1] is [X,2] ||| EgivenFCoherent=2.27875360095 SampleCountF=2.28103336725 CountEF=0.301029995664 MaxLexFgivenE=1.43370297302 MaxLexEgivenF=1.09947690371 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ausgabe [X,1] ist [X,2] ||| output is [X,1] [X,2] ||| EgivenFCoherent=2.27875360095 SampleCountF=2.28103336725 CountEF=0.301029995664 MaxLexFgivenE=1.43370297302 MaxLexEgivenF=1.09947690371 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-1
[X] ||| ausgabe [X,1] ist [X,2] ||| release [X,1] is [X,2] ||| EgivenFCoherent=2.27875360095 SampleCountF=2.28103336725 CountEF=0.301029995664 MaxLexFgivenE=3.12989461918 MaxLexEgivenF=2.52401468088 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ausgabe [X,1] ist [X,2] ||| issue [X,1] is [X,2] ||| EgivenFCoherent=1.23736091579 SampleCountF=2.28103336725 CountEF=1.07918124605 MaxLexFgivenE=1.35385732835 MaxLexEgivenF=0.945435785401 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ausgabe [X,1] ist [X,2] ||| issue [X,1] has [X,2] ||| EgivenFCoherent=2.27875360095 SampleCountF=2.28103336725 CountEF=0.301029995664 MaxLexFgivenE=1.93623807725 MaxLexEgivenF=2.18147339876 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ausgabe [X,1] ist [X,2] ||| edition [X,1] is [X,2] ||| EgivenFCoherent=1.50060235057 SampleCountF=2.28103336725 CountEF=0.845098040014 MaxLexFgivenE=1.43858850135 MaxLexEgivenF=1.05071983401 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ausgabe [X,1] ist [X,2] ||| edition [X,1] 's [X,2] ||| EgivenFCoherent=2.27875360095 SampleCountF=2.28103336725 CountEF=0.301029995664 MaxLexFgivenE=2.30707388359 MaxLexEgivenF=2.57316916678 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ausgabe [X,1] ist [X,2] ||| edition [X,1] has [X,2] ||| EgivenFCoherent=2.27875360095 SampleCountF=2.28103336725 CountEF=0.301029995664 MaxLexFgivenE=2.02096925025 MaxLexEgivenF=2.28675744738 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] ausgabe [X,2] ein ||| [X,1] ausgabe [X,2] ein ||| EgivenFCoherent=2.12057393121 SampleCountF=2.12385164097 CountEF=0.301029995664 MaxLexFgivenE=1.09769833117 MaxLexEgivenF=4.97742897126 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] ausgabe [X,2] ein ||| [X,1] output [X,2] a ||| EgivenFCoherent=1.81954393554 SampleCountF=2.12385164097 CountEF=0.47712125472 MaxLexFgivenE=1.78830639686 MaxLexEgivenF=1.13969052125 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] ausgabe [X,2] ein ||| [X,1] issue [X,2] an ||| EgivenFCoherent=1.81954393554 SampleCountF=2.12385164097 CountEF=0.47712125472 MaxLexFgivenE=1.7105316822 MaxLexEgivenF=1.69551892167 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] ausgabe [X,2] ein ||| [X,1] issue [X,2] a ||| EgivenFCoherent=1.64345267649 SampleCountF=2.12385164097 CountEF=0.602059991328 MaxLexFgivenE=1.70846075219 MaxLexEgivenF=0.985649402942 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] ausgabe [X,2] ein ||| [X,1] edition [X,2] an ||| EgivenFCoherent=2.12057393121 SampleCountF=2.12385164097 CountEF=0.301029995664 MaxLexFgivenE=1.79526285519 MaxLexEgivenF=1.80080297029 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] ausgabe [X,2] ein ||| [X,1] edition [X,2] a ||| EgivenFCoherent=1.42160392687 SampleCountF=2.12385164097 CountEF=0.778151250384 MaxLexFgivenE=1.79319192519 MaxLexEgivenF=1.09093345155 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] ausgabe [X,2] ein ||| [X,1] current edition [X,2] an ||| EgivenFCoherent=2.12057393121 SampleCountF=2.12385164097 CountEF=0.301029995664 MaxLexFgivenE=1.79526285519 MaxLexEgivenF=4.55387509444 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4
[X] ||| ausgabe [X,1] ein ||| ausgabe [X,1] ein ||| EgivenFCoherent=2.12057393121 SampleCountF=2.12385164097 CountEF=0.301029995664 MaxLexFgivenE=1.09769833117 MaxLexEgivenF=4.97742897126 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ausgabe [X,1] ein ||| output [X,1] a ||| EgivenFCoherent=1.81954393554 SampleCountF=2.12385164097 CountEF=0.47712125472 MaxLexFgivenE=1.78830639686 MaxLexEgivenF=1.13969052125 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ausgabe [X,1] ein ||| issue [X,1] an ||| EgivenFCoherent=1.81954393554 SampleCountF=2.12385164097 CountEF=0.47712125472 MaxLexFgivenE=1.7105316822 MaxLexEgivenF=1.69551892167 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ausgabe [X,1] ein ||| issue [X,1] a ||| EgivenFCoherent=1.42160392687 SampleCountF=2.12385164097 CountEF=0.778151250384 MaxLexFgivenE=1.70846075219 MaxLexEgivenF=0.985649402942 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ausgabe [X,1] ein ||| edition [X,1] an ||| EgivenFCoherent=2.12057393121 SampleCountF=2.12385164097 CountEF=0.301029995664 MaxLexFgivenE=1.79526285519 MaxLexEgivenF=1.80080297029 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ausgabe [X,1] ein ||| edition [X,1] a ||| EgivenFCoherent=1.34242268082 SampleCountF=2.12385164097 CountEF=0.845098040014 MaxLexFgivenE=1.79319192519 MaxLexEgivenF=1.09093345155 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ausgabe [X,1] ein ||| current edition [X,1] an ||| EgivenFCoherent=2.12057393121 SampleCountF=2.12385164097 CountEF=0.301029995664 MaxLexFgivenE=1.79526285519 MaxLexEgivenF=4.55387509444 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| ausgabe [X,1] ein [X,2] ||| ausgabe [X,1] ein [X,2] ||| EgivenFCoherent=2.12057393121 SampleCountF=2.12385164097 CountEF=0.301029995664 MaxLexFgivenE=1.09769833117 MaxLexEgivenF=4.97742897126 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ausgabe [X,1] ein [X,2] ||| output [X,1] , [X,2] ||| EgivenFCoherent=2.12057393121 SampleCountF=2.12385164097 CountEF=0.301029995664 MaxLexFgivenE=2.90819388035 MaxLexEgivenF=1.43855561042 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ausgabe [X,1] ein [X,2] ||| output [X,1] a [X,2] ||| EgivenFCoherent=1.81954393554 SampleCountF=2.12385164097 CountEF=0.47712125472 MaxLexFgivenE=1.78830639686 MaxLexEgivenF=1.13969052125 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ausgabe [X,1] ein [X,2] ||| issue [X,1] an [X,2] ||| EgivenFCoherent=1.81954393554 SampleCountF=2.12385164097 CountEF=0.47712125472 MaxLexFgivenE=1.7105316822 MaxLexEgivenF=1.69551892167 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ausgabe [X,1] ein [X,2] ||| issue [X,1] a [X,2] ||| EgivenFCoherent=1.51851393988 SampleCountF=2.12385164097 CountEF=0.698970004336 MaxLexFgivenE=1.70846075219 MaxLexEgivenF=0.985649402942 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ausgabe [X,1] ein [X,2] ||| edition [X,1] an [X,2] ||| EgivenFCoherent=2.12057393121 SampleCountF=2.12385164097 CountEF=0.301029995664 MaxLexFgivenE=1.79526285519 MaxLexEgivenF=1.80080297029 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ausgabe [X,1] ein [X,2] ||| edition [X,1] a [X,2] ||| EgivenFCoherent=1.34242268082 SampleCountF=2.12385164097 CountEF=0.845098040014 MaxLexFgivenE=1.79319192519 MaxLexEgivenF=1.09093345155 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ausgabe [X,1] ein [X,2] ||| current edition [X,1] an [X,2] ||| EgivenFCoherent=2.12057393121 SampleCountF=2.12385164097 CountEF=0.301029995664 MaxLexFgivenE=1.79526285519 MaxLexEgivenF=4.55387509444 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| ausgabe [X,1] ein [X,2] ||| delivery [X,1] [X,2] ||| EgivenFCoherent=2.12057393121 SampleCountF=2.12385164097 CountEF=0.301029995664 MaxLexFgivenE=4.97019626466 MaxLexEgivenF=2.53122337453 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] ausgabe [X,2] von ||| [X,1] [X,2] issue of ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.68327149439 MaxLexEgivenF=1.0389847663 IsSingletonF=0 IsSingletonFE=0 ||| 1-2 3-3
[X] ||| [X,1] ausgabe [X,2] von ||| [X,1] output [X,2] of ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.76311713906 MaxLexEgivenF=1.19302588462 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] ausgabe [X,2] von ||| [X,1] issue [X,2] of ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.68327149439 MaxLexEgivenF=1.0389847663 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] ausgabe [X,2] von ||| [X,1] issue [X,2] by ||| EgivenFCoherent=0.853871964322 SampleCountF=2.47856649559 CountEF=1.63346845558 MaxLexFgivenE=1.52419629217 MaxLexEgivenF=1.66210207937 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] ausgabe [X,2] von ||| [X,1] issue for [X,2] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.68327149439 MaxLexEgivenF=2.68652083027 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-4
[X] ||| [X,1] ausgabe [X,2] von ||| [X,1] edition [X,2] of ||| EgivenFCoherent=1.43572856956 SampleCountF=2.47856649559 CountEF=1.07918124605 MaxLexFgivenE=1.76800266739 MaxLexEgivenF=1.14426881492 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] ausgabe [X,2] von ||| [X,1] edition [X,2] by ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.60892746517 MaxLexEgivenF=1.76738612798 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] ausgabe [X,2] von ||| [X,1] issues [X,2] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.04968144836 MaxLexEgivenF=3.29425727141 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| ausgabe [X,1] von ||| [X,1] issue of ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.68327149439 MaxLexEgivenF=1.0389847663 IsSingletonF=0 IsSingletonFE=0 ||| 0-1 2-2
[X] ||| ausgabe [X,1] von ||| output [X,1] of ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.76311713906 MaxLexEgivenF=1.19302588462 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ausgabe [X,1] von ||| output [X,1] from ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.53614963159 MaxLexEgivenF=1.74231742121 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ausgabe [X,1] von ||| release [X,1] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.45930878522 MaxLexEgivenF=2.61756366178 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ausgabe [X,1] von ||| issue [X,1] of ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.68327149439 MaxLexEgivenF=1.0389847663 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ausgabe [X,1] von ||| issue [X,1] by ||| EgivenFCoherent=0.84365279914 SampleCountF=2.47856649559 CountEF=1.64345267649 MaxLexFgivenE=1.52419629217 MaxLexEgivenF=1.66210207937 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ausgabe [X,1] von ||| issue for [X,1] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.68327149439 MaxLexEgivenF=2.68652083027 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| ausgabe [X,1] von ||| edition [X,1] of ||| EgivenFCoherent=1.43572856956 SampleCountF=2.47856649559 CountEF=1.07918124605 MaxLexFgivenE=1.76800266739 MaxLexEgivenF=1.14426881492 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ausgabe [X,1] von ||| edition [X,1] by ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.60892746517 MaxLexEgivenF=1.76738612798 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ausgabe [X,1] von ||| issues [X,1] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.04968144836 MaxLexEgivenF=3.29425727141 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ausgabe [X,1] von [X,2] ||| [X,1] issue of [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.68327149439 MaxLexEgivenF=1.0389847663 IsSingletonF=0 IsSingletonFE=0 ||| 0-1 2-2
[X] ||| ausgabe [X,1] von [X,2] ||| output [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.30265305091 MaxLexEgivenF=0.827931996414 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ausgabe [X,1] von [X,2] ||| output [X,1] of [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.76311713906 MaxLexEgivenF=1.19302588462 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ausgabe [X,1] von [X,2] ||| output [X,1] from [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.53614963159 MaxLexEgivenF=1.74231742121 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ausgabe [X,1] von [X,2] ||| release [X,1] of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.45930878522 MaxLexEgivenF=2.61756366178 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ausgabe [X,1] von [X,2] ||| issue [X,1] of [X,2] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.68327149439 MaxLexEgivenF=1.0389847663 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ausgabe [X,1] von [X,2] ||| issue [X,1] by [X,2] ||| EgivenFCoherent=0.853871964322 SampleCountF=2.47856649559 CountEF=1.63346845558 MaxLexFgivenE=1.52419629217 MaxLexEgivenF=1.66210207937 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ausgabe [X,1] von [X,2] ||| issue for [X,1] of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.68327149439 MaxLexEgivenF=2.68652083027 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| ausgabe [X,1] von [X,2] ||| edition [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.30753857924 MaxLexEgivenF=0.779174926714 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| ausgabe [X,1] von [X,2] ||| edition [X,1] of [X,2] ||| EgivenFCoherent=1.52287874528 SampleCountF=2.47856649559 CountEF=1 MaxLexFgivenE=1.76800266739 MaxLexEgivenF=1.14426881492 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ausgabe [X,1] von [X,2] ||| edition [X,1] by [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.60892746517 MaxLexEgivenF=1.76738612798 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ausgabe [X,1] von [X,2] ||| issues [X,1] of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.04968144836 MaxLexEgivenF=3.29425727141 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] von [X,2] ist ||| [X,2] [X,1] is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.82863577636 MaxLexEgivenF=0.271544907299 IsSingletonF=0 IsSingletonFE=1 ||| 3-2
[X] ||| [X,1] von [X,2] ist ||| [X,1] of [X,2] is ||| EgivenFCoherent=1.22184874962 SampleCountF=2.47856649559 CountEF=1.27875360095 MaxLexFgivenE=1.28909986451 MaxLexEgivenF=0.636638795501 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] von [X,2] ist ||| [X,1] of [X,2] shall ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.01794688703 MaxLexEgivenF=2.82168203989 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] von [X,2] ist ||| [X,1] of [X,2] makes ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.94226805618 MaxLexEgivenF=2.97317414522 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] von [X,2] ist ||| [X,1] from [X,2] it can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.0682230443 MaxLexEgivenF=4.403642264 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4
[X] ||| [X,1] von [X,2] ist ||| [X,1] from [X,2] is ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.06213235704 MaxLexEgivenF=1.18593033209 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] von [X,2] ist ||| [X,1] by [X,2] , is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.13002466229 MaxLexEgivenF=1.87037972257 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-4
[X] ||| [X,1] von [X,2] ist ||| [X,1] by [X,2] is ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.13002466229 MaxLexEgivenF=1.25975610857 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] von [X,2] ist ||| [X,1] is of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.28909986451 MaxLexEgivenF=0.636638795501 IsSingletonF=0 IsSingletonFE=1 ||| 3-1 1-2
[X] ||| [X,1] von [X,2] ist ||| is [X,1] of [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.28909986451 MaxLexEgivenF=0.636638795501 IsSingletonF=0 IsSingletonFE=0 ||| 3-0 1-2
[X] ||| von [X,1] ist ||| von [X,1] is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.641281652658 MaxLexEgivenF=2.15997469534 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| von [X,1] ist ||| of [X,1] is ||| EgivenFCoherent=1.19836765377 SampleCountF=2.47856649559 CountEF=1.30102999566 MaxLexFgivenE=1.28909986451 MaxLexEgivenF=0.636638795501 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] ist ||| of [X,1] 's ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.15758524675 MaxLexEgivenF=2.15908812827 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| von [X,1] ist ||| of [X,1] shall ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.01794688703 MaxLexEgivenF=2.82168203989 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| von [X,1] ist ||| of [X,1] makes ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.94226805618 MaxLexEgivenF=2.97317414522 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| von [X,1] ist ||| from [X,1] it can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.0682230443 MaxLexEgivenF=4.403642264 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| von [X,1] ist ||| from [X,1] is ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.06213235704 MaxLexEgivenF=1.18593033209 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] ist ||| from the [X,1] is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.06213235704 MaxLexEgivenF=2.53059416817 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| von [X,1] ist ||| by [X,1] , is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.13002466229 MaxLexEgivenF=1.87037972257 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| von [X,1] ist ||| by [X,1] is ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.13002466229 MaxLexEgivenF=1.25975610857 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] ist ||| is of [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.28909986451 MaxLexEgivenF=0.636638795501 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 0-1
[X] ||| von [X,1] ist ||| behind [X,1] is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.82863577636 MaxLexEgivenF=5.309193808 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| von [X,1] ist [X,2] ||| of [X,1] [X,2] is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.28909986451 MaxLexEgivenF=0.636638795501 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| von [X,1] ist [X,2] ||| of [X,1] is [X,2] ||| EgivenFCoherent=1.24667233334 SampleCountF=2.47856649559 CountEF=1.2552725051 MaxLexFgivenE=1.28909986451 MaxLexEgivenF=0.636638795501 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] ist [X,2] ||| of [X,1] shall [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.01794688703 MaxLexEgivenF=2.82168203989 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| von [X,1] ist [X,2] ||| from [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.18693261737 MaxLexEgivenF=0.914385424793 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| von [X,1] ist [X,2] ||| from [X,1] is [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.06213235704 MaxLexEgivenF=1.18593033209 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] ist [X,2] ||| from the [X,1] is [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.06213235704 MaxLexEgivenF=2.53059416817 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| von [X,1] ist [X,2] ||| by [X,1] , is [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.13002466229 MaxLexEgivenF=1.87037972257 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| von [X,1] ist [X,2] ||| by [X,1] is [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.13002466229 MaxLexEgivenF=1.25975610857 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] ist [X,2] ||| is of [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.28909986451 MaxLexEgivenF=0.636638795501 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 0-1
[X] ||| von [X,1] ist [X,2] ||| behind [X,1] is [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.82863577636 MaxLexEgivenF=5.309193808 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] von [X,2] ein ||| [X,1] [X,2] a ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.18323920021 MaxLexEgivenF=0.31175852484 IsSingletonF=0 IsSingletonFE=0 ||| 3-2
[X] ||| [X,1] von [X,2] ein ||| [X,1] of [X,2] an ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.64577421836 MaxLexEgivenF=1.38672193177 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] von [X,2] ein ||| [X,1] of [X,2] is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.76359077184 MaxLexEgivenF=1.83542813771 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] von [X,2] ein ||| [X,1] of [X,2] is a ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.64370328836 MaxLexEgivenF=2.14718666255 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-4
[X] ||| [X,1] von [X,2] ein ||| [X,1] of [X,2] a ||| EgivenFCoherent=1.30102999566 SampleCountF=2.47856649559 CountEF=1.20411998266 MaxLexFgivenE=1.64370328836 MaxLexEgivenF=0.676852413042 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] von [X,2] ein ||| [X,1] to [X,2] a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.18323920021 MaxLexEgivenF=1.3240637959 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] von [X,2] ein ||| [X,1] from [X,2] an ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.41880671089 MaxLexEgivenF=1.93601346837 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] von [X,2] ein ||| [X,1] by [X,2] a ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.48462808613 MaxLexEgivenF=1.29996972611 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| von [X,1] ein ||| of [X,1] an ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=1.64577421836 MaxLexEgivenF=1.38672193177 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] ein ||| of [X,1] is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.76359077184 MaxLexEgivenF=1.83542813771 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| von [X,1] ein ||| of [X,1] is a ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.64370328836 MaxLexEgivenF=2.14718666255 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-3
[X] ||| von [X,1] ein ||| of [X,1] a ||| EgivenFCoherent=1.19836765377 SampleCountF=2.47856649559 CountEF=1.30102999566 MaxLexFgivenE=1.64370328836 MaxLexEgivenF=0.676852413042 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] ein ||| to [X,1] a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.18323920021 MaxLexEgivenF=1.3240637959 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| von [X,1] ein ||| from [X,1] an ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.41880671089 MaxLexEgivenF=1.93601346837 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| von [X,1] ein ||| by [X,1] a ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.48462808613 MaxLexEgivenF=1.29996972611 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] ein [X,2] ||| of [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.76359077184 MaxLexEgivenF=0.365093888202 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| von [X,1] ein [X,2] ||| of [X,1] [X,2] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.76359077184 MaxLexEgivenF=1.35925950808 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| von [X,1] ein [X,2] ||| of [X,1] an [X,2] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.64577421836 MaxLexEgivenF=1.38672193177 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] ein [X,2] ||| of [X,1] is [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.76359077184 MaxLexEgivenF=1.83542813771 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| von [X,1] ein [X,2] ||| of [X,1] is a [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.64370328836 MaxLexEgivenF=2.14718666255 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-3
[X] ||| von [X,1] ein [X,2] ||| of [X,1] a [X,2] ||| EgivenFCoherent=1.33099321904 SampleCountF=2.47856649559 CountEF=1.17609125906 MaxLexFgivenE=1.64370328836 MaxLexEgivenF=0.676852413042 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] ein [X,2] ||| the [X,2] for [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.30312668369 MaxLexEgivenF=2.64170168384 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 0-2
[X] ||| von [X,1] ein [X,2] ||| to [X,1] a [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.18323920021 MaxLexEgivenF=1.3240637959 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| von [X,1] ein [X,2] ||| from [X,1] an [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.41880671089 MaxLexEgivenF=1.93601346837 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| von [X,1] ein [X,2] ||| by [X,1] a [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.48462808613 MaxLexEgivenF=1.29996972611 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] ein [X,2] ||| a [X,2] from [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.41673578088 MaxLexEgivenF=1.22614394963 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 0-2
[X] ||| [X,1] von [X,2] traum ||| [X,1] [X,2] dream ||| EgivenFCoherent=1.98227123304 SampleCountF=1.98677173427 CountEF=0.301029995664 MaxLexFgivenE=2.04410312485 MaxLexEgivenF=0.37919771854 IsSingletonF=0 IsSingletonFE=1 ||| 3-2
[X] ||| [X,1] von [X,2] traum ||| [X,1] [X,2] dream of ||| EgivenFCoherent=1.98227123304 SampleCountF=1.98677173427 CountEF=0.301029995664 MaxLexFgivenE=1.504567213 MaxLexEgivenF=0.744291606742 IsSingletonF=0 IsSingletonFE=1 ||| 3-2 1-3
[X] ||| [X,1] von [X,2] traum ||| [X,1] [X,2] dreams ||| EgivenFCoherent=1.98227123304 SampleCountF=1.98677173427 CountEF=0.301029995664 MaxLexFgivenE=2.94362311684 MaxLexEgivenF=1.50922789074 IsSingletonF=0 IsSingletonFE=1 ||| 3-2
[X] ||| [X,1] von [X,2] traum ||| [X,1] of [X,2] dream ||| EgivenFCoherent=1.13717319303 SampleCountF=1.98677173427 CountEF=0.903089986992 MaxLexFgivenE=1.504567213 MaxLexEgivenF=0.744291606742 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] von [X,2] traum ||| [X,1] from [X,2] dream ||| EgivenFCoherent=1.98227123304 SampleCountF=1.98677173427 CountEF=0.301029995664 MaxLexFgivenE=1.27759970552 MaxLexEgivenF=1.29358314333 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] von [X,2] traum ||| dream of [X,2] [X,1] ||| EgivenFCoherent=1.98227123304 SampleCountF=1.98677173427 CountEF=0.301029995664 MaxLexFgivenE=1.504567213 MaxLexEgivenF=0.744291606742 IsSingletonF=0 IsSingletonFE=1 ||| 3-0 1-1
[X] ||| von [X,1] traum ||| [X,1] dream of ||| EgivenFCoherent=1.98227123304 SampleCountF=1.98677173427 CountEF=0.301029995664 MaxLexFgivenE=1.504567213 MaxLexEgivenF=0.744291606742 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 0-2
[X] ||| von [X,1] traum ||| of [X,1] dream ||| EgivenFCoherent=1.0280287236 SampleCountF=1.98677173427 CountEF=1 MaxLexFgivenE=1.504567213 MaxLexEgivenF=0.744291606742 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] traum ||| from [X,1] dream ||| EgivenFCoherent=1.50514997832 SampleCountF=1.98677173427 CountEF=0.602059991328 MaxLexFgivenE=1.27759970552 MaxLexEgivenF=1.29358314333 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] traum ||| by [X,1] dream ||| EgivenFCoherent=1.98227123304 SampleCountF=1.98677173427 CountEF=0.301029995664 MaxLexFgivenE=1.34549201077 MaxLexEgivenF=1.36740891981 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| von [X,1] traum ||| dream of [X,1] ||| EgivenFCoherent=1.98227123304 SampleCountF=1.98677173427 CountEF=0.301029995664 MaxLexFgivenE=1.504567213 MaxLexEgivenF=0.744291606742 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 0-1
[X] ||| von [X,1] traum [X,2] ||| [X,2] by [X,1] dream ||| EgivenFCoherent=1.98227123304 SampleCountF=1.98677173427 CountEF=0.301029995664 MaxLexFgivenE=1.34549201077 MaxLexEgivenF=1.36740891981 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 2-3
[X] ||| von [X,1] traum [X,2] ||| of [X,1] dream [X,2] ||| EgivenFCoherent=1.07918124605 SampleCountF=1.98677173427 CountEF=0.954242509439 MaxLexFgivenE=1.504567213 MaxLexEgivenF=0.744291606742 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] traum [X,2] ||| from [X,1] dream [X,2] ||| EgivenFCoherent=1.68124123738 SampleCountF=1.98677173427 CountEF=0.47712125472 MaxLexFgivenE=1.27759970552 MaxLexEgivenF=1.29358314333 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| [X,1] von [X,2] von ||| [X,1] of [X,2] of ||| EgivenFCoherent=1.39794000867 SampleCountF=2.47856649559 CountEF=1.11394335231 MaxLexFgivenE=1.61851403056 MaxLexEgivenF=0.730187776403 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] von [X,2] von ||| [X,1] of [X,2] of trasona ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.954242509439 MaxLexEgivenF=6.54598792748 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4
[X] ||| [X,1] von [X,2] von ||| [X,1] of [X,2] from ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.16457901561 MaxLexEgivenF=1.279479313 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] von [X,2] von ||| [X,1] of [X,2] by ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.30036362611 MaxLexEgivenF=1.35330508947 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] von [X,2] von ||| [X,1] from [X,2] of ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.16457901561 MaxLexEgivenF=1.279479313 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] von [X,2] von ||| [X,1] for [X,2] from ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.16457901561 MaxLexEgivenF=2.56192148876 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] von [X,2] von ||| [X,1] with [X,2] with ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.69758585425 MaxLexEgivenF=3.43521121642 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] von [X,2] von ||| [X,1] by [X,2] by ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.30036362611 MaxLexEgivenF=1.97642240253 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] von [X,2] von ||| [X,1] about [X,2] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.61851403056 MaxLexEgivenF=2.80376999694 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| von [X,1] von ||| of [X,1] of ||| EgivenFCoherent=1.33099321904 SampleCountF=2.47856649559 CountEF=1.17609125906 MaxLexFgivenE=1.61851403056 MaxLexEgivenF=0.730187776403 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] von ||| of [X,1] of trasona ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.954242509439 MaxLexEgivenF=6.54598792748 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| von [X,1] von ||| of [X,1] from ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.16457901561 MaxLexEgivenF=1.279479313 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] von ||| of [X,1] by ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.30036362611 MaxLexEgivenF=1.35330508947 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| von [X,1] von ||| from [X,1] of ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.16457901561 MaxLexEgivenF=1.279479313 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] von ||| for [X,1] from ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.16457901561 MaxLexEgivenF=2.56192148876 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| von [X,1] von ||| with [X,1] with ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.69758585425 MaxLexEgivenF=3.43521121642 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| von [X,1] von ||| by [X,1] of ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.30036362611 MaxLexEgivenF=1.35330508947 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] von ||| by [X,1] by ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.30036362611 MaxLexEgivenF=1.97642240253 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] von ||| about [X,1] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.61851403056 MaxLexEgivenF=2.80376999694 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| von [X,1] von [X,2] ||| of [X,1] [X,2] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.61851403056 MaxLexEgivenF=0.365093888202 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| von [X,1] von [X,2] ||| of [X,1] of [X,2] ||| EgivenFCoherent=1.43572856956 SampleCountF=2.47856649559 CountEF=1.07918124605 MaxLexFgivenE=1.61851403056 MaxLexEgivenF=0.730187776403 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] von [X,2] ||| of [X,1] of trasona [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.954242509439 MaxLexEgivenF=6.54598792748 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| von [X,1] von [X,2] ||| of [X,1] from [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.16457901561 MaxLexEgivenF=1.279479313 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] von [X,2] ||| of [X,1] by [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.30036362611 MaxLexEgivenF=1.35330508947 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| von [X,1] von [X,2] ||| from [X,1] of [X,2] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.16457901561 MaxLexEgivenF=1.279479313 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] von [X,2] ||| for [X,1] from [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.16457901561 MaxLexEgivenF=2.56192148876 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| von [X,1] von [X,2] ||| by [X,1] of [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.30036362611 MaxLexEgivenF=1.35330508947 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] von [X,2] ||| by [X,1] by [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.30036362611 MaxLexEgivenF=1.97642240253 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| von [X,1] von [X,2] ||| about [X,1] of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.61851403056 MaxLexEgivenF=2.80376999694 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] von [X,2] tausend ||| [X,1] [X,2] thousand ||| EgivenFCoherent=1.95904139232 SampleCountF=2.43775056282 CountEF=0.602059991328 MaxLexFgivenE=1.87059731535 MaxLexEgivenF=0.380070030694 IsSingletonF=0 IsSingletonFE=0 ||| 3-2
[X] ||| [X,1] von [X,2] tausend ||| [X,1] of [X,2] a thousand ||| EgivenFCoherent=1.59106460703 SampleCountF=2.43775056282 CountEF=0.903089986992 MaxLexFgivenE=1.3310614035 MaxLexEgivenF=1.63276238844 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3 3-4
[X] ||| [X,1] von [X,2] tausend ||| [X,1] of [X,2] one thousand ||| EgivenFCoherent=2.13513265138 SampleCountF=2.43775056282 CountEF=0.47712125472 MaxLexFgivenE=1.3310614035 MaxLexEgivenF=2.33906243145 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3 3-4
[X] ||| [X,1] von [X,2] tausend ||| [X,1] of [X,2] tausend ||| EgivenFCoherent=2.43616264704 SampleCountF=2.43775056282 CountEF=0.301029995664 MaxLexFgivenE=1.22143746306 MaxLexEgivenF=2.55190901265 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] von [X,2] tausend ||| [X,1] of [X,2] thousand ||| EgivenFCoherent=0.802694191461 SampleCountF=2.43775056282 CountEF=1.64345267649 MaxLexFgivenE=1.3310614035 MaxLexEgivenF=0.745163918895 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] von [X,2] tausend ||| [X,1] of [X,2] thousands ||| EgivenFCoherent=2.13513265138 SampleCountF=2.43775056282 CountEF=0.47712125472 MaxLexFgivenE=2.19673989807 MaxLexEgivenF=1.44639882788 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] von [X,2] tausend ||| [X,1] of [X,2] thousands of ||| EgivenFCoherent=2.43616264704 SampleCountF=2.43775056282 CountEF=0.301029995664 MaxLexFgivenE=2.19673989807 MaxLexEgivenF=1.81149271608 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4
[X] ||| [X,1] von [X,2] tausend ||| [X,1] in [X,2] thousand ||| EgivenFCoherent=2.43616264704 SampleCountF=2.43775056282 CountEF=0.301029995664 MaxLexFgivenE=1.87059731535 MaxLexEgivenF=1.8008711213 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] von [X,2] tausend ||| [X,1] from [X,2] a thousand ||| EgivenFCoherent=2.43616264704 SampleCountF=2.43775056282 CountEF=0.301029995664 MaxLexFgivenE=1.10409389603 MaxLexEgivenF=2.18205392503 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4
[X] ||| [X,1] von [X,2] tausend ||| [X,1] from [X,2] thousand ||| EgivenFCoherent=1.83410265571 SampleCountF=2.43775056282 CountEF=0.698970004336 MaxLexFgivenE=1.10409389603 MaxLexEgivenF=1.29445545549 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] von [X,2] tausend ||| [X,1] from [X,2] thousands ||| EgivenFCoherent=2.43616264704 SampleCountF=2.43775056282 CountEF=0.301029995664 MaxLexFgivenE=1.9697723906 MaxLexEgivenF=1.99569036447 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] von [X,2] tausend ||| [X,1] by [X,2] a thousand ||| EgivenFCoherent=2.43616264704 SampleCountF=2.43775056282 CountEF=0.301029995664 MaxLexFgivenE=1.17198620128 MaxLexEgivenF=2.25587970151 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4
[X] ||| [X,1] von [X,2] tausend ||| [X,1] by [X,2] thousand ||| EgivenFCoherent=2.13513265138 SampleCountF=2.43775056282 CountEF=0.47712125472 MaxLexFgivenE=1.17198620128 MaxLexEgivenF=1.36828123196 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] von [X,2] tausend ||| [X,1] between [X,2] a thousand ||| EgivenFCoherent=2.43616264704 SampleCountF=2.43775056282 CountEF=0.301029995664 MaxLexFgivenE=1.70320652694 MaxLexEgivenF=3.6594041259 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4
[X] ||| von [X,1] tausend ||| of [X,1] a thousand ||| EgivenFCoherent=1.43616264704 SampleCountF=2.43775056282 CountEF=1.04139268516 MaxLexFgivenE=1.3310614035 MaxLexEgivenF=1.63276238844 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 2-3
[X] ||| von [X,1] tausend ||| of [X,1] one thousand ||| EgivenFCoherent=2.13513265138 SampleCountF=2.43775056282 CountEF=0.47712125472 MaxLexFgivenE=1.3310614035 MaxLexEgivenF=2.33906243145 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 2-3
[X] ||| von [X,1] tausend ||| of [X,1] tausend ||| EgivenFCoherent=2.43616264704 SampleCountF=2.43775056282 CountEF=0.301029995664 MaxLexFgivenE=1.22143746306 MaxLexEgivenF=2.55190901265 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| von [X,1] tausend ||| of [X,1] thousand ||| EgivenFCoherent=0.782950133265 SampleCountF=2.43775056282 CountEF=1.66275783168 MaxLexFgivenE=1.3310614035 MaxLexEgivenF=0.745163918895 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] tausend ||| of [X,1] thousands ||| EgivenFCoherent=2.13513265138 SampleCountF=2.43775056282 CountEF=0.47712125472 MaxLexFgivenE=2.19673989807 MaxLexEgivenF=1.44639882788 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] tausend ||| of [X,1] thousands of ||| EgivenFCoherent=2.43616264704 SampleCountF=2.43775056282 CountEF=0.301029995664 MaxLexFgivenE=2.19673989807 MaxLexEgivenF=1.81149271608 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| von [X,1] tausend ||| in [X,1] thousand ||| EgivenFCoherent=2.43616264704 SampleCountF=2.43775056282 CountEF=0.301029995664 MaxLexFgivenE=1.87059731535 MaxLexEgivenF=1.8008711213 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| von [X,1] tausend ||| from [X,1] a thousand ||| EgivenFCoherent=2.13513265138 SampleCountF=2.43775056282 CountEF=0.47712125472 MaxLexFgivenE=1.10409389603 MaxLexEgivenF=2.18205392503 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 2-3
[X] ||| von [X,1] tausend ||| from [X,1] thousand ||| EgivenFCoherent=1.65801139666 SampleCountF=2.43775056282 CountEF=0.845098040014 MaxLexFgivenE=1.10409389603 MaxLexEgivenF=1.29445545549 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] tausend ||| from [X,1] thousands ||| EgivenFCoherent=2.43616264704 SampleCountF=2.43775056282 CountEF=0.301029995664 MaxLexFgivenE=1.9697723906 MaxLexEgivenF=1.99569036447 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| von [X,1] tausend ||| by [X,1] a thousand ||| EgivenFCoherent=1.7371926427 SampleCountF=2.43775056282 CountEF=0.778151250384 MaxLexFgivenE=1.17198620128 MaxLexEgivenF=2.25587970151 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 2-3
[X] ||| von [X,1] tausend ||| by [X,1] thousand ||| EgivenFCoherent=1.65801139666 SampleCountF=2.43775056282 CountEF=0.845098040014 MaxLexFgivenE=1.17198620128 MaxLexEgivenF=1.36828123196 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] tausend ||| between [X,1] a thousand ||| EgivenFCoherent=2.43616264704 SampleCountF=2.43775056282 CountEF=0.301029995664 MaxLexFgivenE=1.70320652694 MaxLexEgivenF=3.6594041259 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| von [X,1] tausend ||| thousand of [X,1] ||| EgivenFCoherent=2.43616264704 SampleCountF=2.43775056282 CountEF=0.301029995664 MaxLexFgivenE=1.3310614035 MaxLexEgivenF=0.745163918895 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 0-1
[X] ||| von [X,1] tausend [X,2] ||| [X,2] from [X,1] thousand ||| EgivenFCoherent=2.43616264704 SampleCountF=2.43775056282 CountEF=0.301029995664 MaxLexFgivenE=1.10409389603 MaxLexEgivenF=1.29445545549 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 2-3
[X] ||| von [X,1] tausend [X,2] ||| of [X,1] a thousand [X,2] ||| EgivenFCoherent=1.7371926427 SampleCountF=2.43775056282 CountEF=0.778151250384 MaxLexFgivenE=1.3310614035 MaxLexEgivenF=1.63276238844 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 2-3
[X] ||| von [X,1] tausend [X,2] ||| of [X,1] one thousand [X,2] ||| EgivenFCoherent=2.13513265138 SampleCountF=2.43775056282 CountEF=0.47712125472 MaxLexFgivenE=1.3310614035 MaxLexEgivenF=2.33906243145 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 2-3
[X] ||| von [X,1] tausend [X,2] ||| of [X,1] tausend [X,2] ||| EgivenFCoherent=2.43616264704 SampleCountF=2.43775056282 CountEF=0.301029995664 MaxLexFgivenE=1.22143746306 MaxLexEgivenF=2.55190901265 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| von [X,1] tausend [X,2] ||| of [X,1] thousand [X,2] ||| EgivenFCoherent=0.812913356643 SampleCountF=2.43775056282 CountEF=1.63346845558 MaxLexFgivenE=1.3310614035 MaxLexEgivenF=0.745163918895 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] tausend [X,2] ||| of [X,1] thousand are [X,2] ||| EgivenFCoherent=2.43616264704 SampleCountF=2.43775056282 CountEF=0.301029995664 MaxLexFgivenE=1.3310614035 MaxLexEgivenF=2.7634042128 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| von [X,1] tausend [X,2] ||| of [X,1] thousands [X,2] ||| EgivenFCoherent=2.13513265138 SampleCountF=2.43775056282 CountEF=0.47712125472 MaxLexFgivenE=2.19673989807 MaxLexEgivenF=1.44639882788 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] tausend [X,2] ||| of [X,1] thousands of [X,2] ||| EgivenFCoherent=2.43616264704 SampleCountF=2.43775056282 CountEF=0.301029995664 MaxLexFgivenE=2.19673989807 MaxLexEgivenF=1.81149271608 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| von [X,1] tausend [X,2] ||| in [X,1] thousand [X,2] ||| EgivenFCoherent=2.43616264704 SampleCountF=2.43775056282 CountEF=0.301029995664 MaxLexFgivenE=1.87059731535 MaxLexEgivenF=1.8008711213 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| von [X,1] tausend [X,2] ||| from [X,1] a thousand [X,2] ||| EgivenFCoherent=2.13513265138 SampleCountF=2.43775056282 CountEF=0.47712125472 MaxLexFgivenE=1.10409389603 MaxLexEgivenF=2.18205392503 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 2-3
[X] ||| von [X,1] tausend [X,2] ||| from [X,1] thousand [X,2] ||| EgivenFCoherent=1.7371926427 SampleCountF=2.43775056282 CountEF=0.778151250384 MaxLexFgivenE=1.10409389603 MaxLexEgivenF=1.29445545549 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] tausend [X,2] ||| from [X,1] thousands [X,2] ||| EgivenFCoherent=2.43616264704 SampleCountF=2.43775056282 CountEF=0.301029995664 MaxLexFgivenE=1.9697723906 MaxLexEgivenF=1.99569036447 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| von [X,1] tausend [X,2] ||| by [X,1] a thousand [X,2] ||| EgivenFCoherent=1.95904139232 SampleCountF=2.43775056282 CountEF=0.602059991328 MaxLexFgivenE=1.17198620128 MaxLexEgivenF=2.25587970151 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 2-3
[X] ||| von [X,1] tausend [X,2] ||| by [X,1] thousand [X,2] ||| EgivenFCoherent=1.7371926427 SampleCountF=2.43775056282 CountEF=0.778151250384 MaxLexFgivenE=1.17198620128 MaxLexEgivenF=1.36828123196 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] tausend [X,2] ||| between [X,1] a thousand [X,2] ||| EgivenFCoherent=2.43616264704 SampleCountF=2.43775056282 CountEF=0.301029995664 MaxLexFgivenE=1.70320652694 MaxLexEgivenF=3.6594041259 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| [X,1] von [X,2] katzen ||| [X,1] [X,2] cats ||| EgivenFCoherent=1.60205999133 SampleCountF=1.61278385672 CountEF=0.301029995664 MaxLexFgivenE=1.84625956384 MaxLexEgivenF=0.320131336472 IsSingletonF=0 IsSingletonFE=1 ||| 3-2
[X] ||| [X,1] von [X,2] katzen ||| [X,1] of [X,2] cats ||| EgivenFCoherent=0.823908740944 SampleCountF=1.61278385672 CountEF=0.845098040014 MaxLexFgivenE=1.30672365199 MaxLexEgivenF=0.685225224674 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| von [X,1] katzen ||| of [X,1] cats ||| EgivenFCoherent=0.698970004336 SampleCountF=1.61278385672 CountEF=0.954242509439 MaxLexFgivenE=1.30672365199 MaxLexEgivenF=0.685225224674 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] katzen ||| by [X,1] cats ||| EgivenFCoherent=1.30102999566 SampleCountF=1.61278385672 CountEF=0.47712125472 MaxLexFgivenE=1.14764844977 MaxLexEgivenF=1.30834253774 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] katzen [X,2] ||| [X,2] by [X,1] cats ||| EgivenFCoherent=1.30102999566 SampleCountF=1.61278385672 CountEF=0.47712125472 MaxLexFgivenE=1.14764844977 MaxLexEgivenF=1.30834253774 IsSingletonF=0 IsSingletonFE=0 ||| 0-1 2-3
[X] ||| von [X,1] katzen [X,2] ||| of [X,1] cats [X,2] ||| EgivenFCoherent=0.823908740944 SampleCountF=1.61278385672 CountEF=0.845098040014 MaxLexFgivenE=1.30672365199 MaxLexEgivenF=0.685225224674 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| von [X,1] katzen [X,2] ||| of [X,1] cats of [X,2] ||| EgivenFCoherent=1.60205999133 SampleCountF=1.61278385672 CountEF=0.301029995664 MaxLexFgivenE=1.30672365199 MaxLexEgivenF=1.05031911288 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] ist ein ||| [X,1] was an ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.19916280353 MaxLexEgivenF=2.68724253334 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] ist ein ||| [X,1] was a ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.19709187353 MaxLexEgivenF=1.9773730146 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] ist ein ||| [X,1] , is an ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.31636005232 MaxLexEgivenF=1.90379656488 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 2-3
[X] ||| [X,1] ist ein ||| [X,1] , a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.43908938264 MaxLexEgivenF=0.922382138847 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] ist ein ||| [X,1] and has a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89666987122 MaxLexEgivenF=2.76554178137 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 2-3
[X] ||| [X,1] ist ein ||| [X,1] is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.4341766058 MaxLexEgivenF=0.271544907299 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-1
[X] ||| [X,1] ist ein ||| [X,1] is the ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=2.4341766058 MaxLexEgivenF=1.26571052717 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] ist ein ||| [X,1] is an ||| EgivenFCoherent=1.22184874962 SampleCountF=2.47856649559 CountEF=1.27875360095 MaxLexFgivenE=1.31636005232 MaxLexEgivenF=1.29317295087 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] ist ein ||| [X,1] is a ||| EgivenFCoherent=0.558043162344 SampleCountF=2.47856649559 CountEF=1.92427928606 MaxLexFgivenE=1.31428912231 MaxLexEgivenF=0.58330343214 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] ist ein ||| [X,1] is one ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.57666286198 MaxLexEgivenF=1.80367983688 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] ist ein ||| [X,1] has a ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.89666987122 MaxLexEgivenF=1.8193410455 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] ist ein ||| [X,1] are a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.22656657586 MaxLexEgivenF=1.76896638524 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] ist ein [X,2] ||| [X,1] [X,2] is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.4341766058 MaxLexEgivenF=0.271544907299 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] ist ein [X,2] ||| [X,1] was a [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.19709187353 MaxLexEgivenF=1.9773730146 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] ist ein [X,2] ||| [X,1] , is an [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.31636005232 MaxLexEgivenF=1.90379656488 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 2-3
[X] ||| [X,1] ist ein [X,2] ||| [X,1] , a [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.43908938264 MaxLexEgivenF=0.922382138847 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] ist ein [X,2] ||| [X,1] , a [X,2] is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.31428912231 MaxLexEgivenF=1.19392704615 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 1-4
[X] ||| [X,1] ist ein [X,2] ||| [X,1] is [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.4341766058 MaxLexEgivenF=0.271544907299 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-1
[X] ||| [X,1] ist ein [X,2] ||| [X,1] is the [X,2] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=2.4341766058 MaxLexEgivenF=1.26571052717 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] ist ein [X,2] ||| [X,1] is an [X,2] ||| EgivenFCoherent=1.36317790241 SampleCountF=2.47856649559 CountEF=1.14612803568 MaxLexFgivenE=1.31636005232 MaxLexEgivenF=1.29317295087 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] ist ein [X,2] ||| [X,1] is a [X,2] ||| EgivenFCoherent=0.619788758288 SampleCountF=2.47856649559 CountEF=1.86332286012 MaxLexFgivenE=1.31428912231 MaxLexEgivenF=0.58330343214 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] ist ein [X,2] ||| [X,1] is one [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.57666286198 MaxLexEgivenF=1.80367983688 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] ist ein [X,2] ||| [X,1] is one of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.57666286198 MaxLexEgivenF=2.50051510209 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] ist ein [X,2] ||| [X,1] has a [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89666987122 MaxLexEgivenF=1.8193410455 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] ist ein [X,2] ||| [X,1] are a [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.22656657586 MaxLexEgivenF=1.76896638524 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] ist ein [X,2] ||| [X,1] offers [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.55897686613 MaxLexEgivenF=2.69294667034 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| ist ein ||| was an ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.19916280353 MaxLexEgivenF=2.68724253334 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ist ein ||| was a ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.19709187353 MaxLexEgivenF=1.9773730146 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ist ein ||| , a ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.43908938264 MaxLexEgivenF=0.922382138847 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ist ein ||| it is the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.4341766058 MaxLexEgivenF=2.88390637655 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2
[X] ||| ist ein ||| it 's a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.18277450456 MaxLexEgivenF=3.72394861428 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2
[X] ||| ist ein ||| is ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.4341766058 MaxLexEgivenF=0.271544907299 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-0
[X] ||| ist ein ||| is the ||| EgivenFCoherent=1.39794000867 SampleCountF=2.47856649559 CountEF=1.11394335231 MaxLexFgivenE=2.4341766058 MaxLexEgivenF=1.26571052717 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ist ein ||| is an ||| EgivenFCoherent=1.02996322338 SampleCountF=2.47856649559 CountEF=1.4623979979 MaxLexFgivenE=1.31636005232 MaxLexEgivenF=1.29317295087 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ist ein ||| is a ||| EgivenFCoherent=0.412663265493 SampleCountF=2.47856649559 CountEF=2.06818586175 MaxLexFgivenE=1.31428912231 MaxLexEgivenF=0.58330343214 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ist ein ||| is one ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.57666286198 MaxLexEgivenF=1.80367983688 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ist ein ||| you can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.51105947633 MaxLexEgivenF=4.45143573148 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-1
[X] ||| ist ein ||| has a ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.89666987122 MaxLexEgivenF=1.8193410455 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ist ein ||| are a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.22656657586 MaxLexEgivenF=1.76896638524 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ist ein ||| if a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.43908938264 MaxLexEgivenF=2.6888514232 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ist ein ||| can be an ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.39324292284 MaxLexEgivenF=4.95987488751 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2
[X] ||| ist ein ||| makes a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.96745731398 MaxLexEgivenF=2.91983878186 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ist ein ||| constitutes an ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.07812899603 MaxLexEgivenF=4.90052072764 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ist ein ||| forms a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.37910793136 MaxLexEgivenF=3.70182319466 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ist ein [X,1] ||| [X,1] is ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.4341766058 MaxLexEgivenF=0.271544907299 IsSingletonF=0 IsSingletonFE=0 ||| 0-1
[X] ||| ist ein [X,1] ||| was a [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.19709187353 MaxLexEgivenF=1.9773730146 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ist ein [X,1] ||| , a [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.43908938264 MaxLexEgivenF=0.922382138847 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ist ein [X,1] ||| , a [X,1] is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.31428912231 MaxLexEgivenF=1.19392704615 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 0-3
[X] ||| ist ein [X,1] ||| it 's a [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.18277450456 MaxLexEgivenF=3.72394861428 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2
[X] ||| ist ein [X,1] ||| is [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.4341766058 MaxLexEgivenF=0.271544907299 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0
[X] ||| ist ein [X,1] ||| is the [X,1] ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=2.4341766058 MaxLexEgivenF=1.26571052717 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ist ein [X,1] ||| is an [X,1] ||| EgivenFCoherent=1.22184874962 SampleCountF=2.47856649559 CountEF=1.27875360095 MaxLexFgivenE=1.31636005232 MaxLexEgivenF=1.29317295087 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ist ein [X,1] ||| is a [X,1] ||| EgivenFCoherent=0.508638306166 SampleCountF=2.47856649559 CountEF=1.9731278536 MaxLexFgivenE=1.31428912231 MaxLexEgivenF=0.58330343214 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ist ein [X,1] ||| is one [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.57666286198 MaxLexEgivenF=1.80367983688 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ist ein [X,1] ||| is one of [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.57666286198 MaxLexEgivenF=2.50051510209 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ist ein [X,1] ||| has a [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89666987122 MaxLexEgivenF=1.8193410455 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ist ein [X,1] ||| are a [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.22656657586 MaxLexEgivenF=1.76896638524 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ist ein [X,1] ||| if a [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.43908938264 MaxLexEgivenF=2.6888514232 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ist ein [X,1] ||| can be an [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.39324292284 MaxLexEgivenF=4.95987488751 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2
[X] ||| ist ein [X,1] ||| constitutes an [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.07812899603 MaxLexEgivenF=4.90052072764 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ist ein [X,1] ||| forms a [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.37910793136 MaxLexEgivenF=3.70182319466 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ist ein [X,1] ||| offers [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.55897686613 MaxLexEgivenF=2.69294667034 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] ist [X,2] traum ||| [X,1] [X,2] dream is ||| EgivenFCoherent=2.29446622616 SampleCountF=2.29666519026 CountEF=0.301029995664 MaxLexFgivenE=1.17515304695 MaxLexEgivenF=0.650742625839 IsSingletonF=0 IsSingletonFE=1 ||| 3-2 1-3
[X] ||| [X,1] ist [X,2] traum ||| [X,1] [X,2] dream came ||| EgivenFCoherent=2.29446622616 SampleCountF=2.29666519026 CountEF=0.301029995664 MaxLexFgivenE=2.29995330728 MaxLexEgivenF=2.70961149189 IsSingletonF=0 IsSingletonFE=1 ||| 3-2 3-3
[X] ||| [X,1] ist [X,2] traum ||| [X,1] is [X,2] dream ||| EgivenFCoherent=0.762987309119 SampleCountF=2.29666519026 CountEF=1.54406804435 MaxLexFgivenE=1.17515304695 MaxLexEgivenF=0.650742625839 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] ist [X,2] traum ||| [X,1] is [X,2] dream come true ||| EgivenFCoherent=1.9934362305 SampleCountF=2.29666519026 CountEF=0.47712125472 MaxLexFgivenE=1.17515304695 MaxLexEgivenF=3.66981728093 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3 3-4 3-5
[X] ||| [X,1] ist [X,2] traum ||| [X,1] is [X,2] true ||| EgivenFCoherent=2.29446622616 SampleCountF=2.29666519026 CountEF=0.301029995664 MaxLexFgivenE=2.65148953533 MaxLexEgivenF=1.76468597815 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| ist [X,1] traum ||| [X,1] dream is ||| EgivenFCoherent=2.29446622616 SampleCountF=2.29666519026 CountEF=0.301029995664 MaxLexFgivenE=1.17515304695 MaxLexEgivenF=0.650742625839 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 0-2
[X] ||| ist [X,1] traum ||| is [X,1] dream ||| EgivenFCoherent=0.750398181811 SampleCountF=2.29666519026 CountEF=1.55630250077 MaxLexFgivenE=1.17515304695 MaxLexEgivenF=0.650742625839 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ist [X,1] traum ||| is [X,1] dream come true ||| EgivenFCoherent=1.9934362305 SampleCountF=2.29666519026 CountEF=0.47712125472 MaxLexFgivenE=1.17515304695 MaxLexEgivenF=3.66981728093 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 2-3 2-4
[X] ||| ist [X,1] traum ||| is [X,1] true ||| EgivenFCoherent=2.29446622616 SampleCountF=2.29666519026 CountEF=0.301029995664 MaxLexFgivenE=2.65148953533 MaxLexEgivenF=1.76468597815 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ist [X,1] traum ||| is [X,1] goal ||| EgivenFCoherent=2.29446622616 SampleCountF=2.29666519026 CountEF=0.301029995664 MaxLexFgivenE=3.59901622792 MaxLexEgivenF=2.90298867631 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ist [X,1] traum ||| are [X,1] dreaming ||| EgivenFCoherent=2.29446622616 SampleCountF=2.29666519026 CountEF=0.301029995664 MaxLexFgivenE=3.36153621514 MaxLexEgivenF=3.9917416164 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ist [X,1] traum [X,2] ||| [X,1] dream is [X,2] ||| EgivenFCoherent=2.29446622616 SampleCountF=2.29666519026 CountEF=0.301029995664 MaxLexFgivenE=1.17515304695 MaxLexEgivenF=0.650742625839 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 0-2
[X] ||| ist [X,1] traum [X,2] ||| is [X,1] dream [X,2] ||| EgivenFCoherent=0.803104532327 SampleCountF=2.29666519026 CountEF=1.50514997832 MaxLexFgivenE=1.17515304695 MaxLexEgivenF=0.650742625839 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ist [X,1] traum [X,2] ||| is [X,1] dream come true [X,2] ||| EgivenFCoherent=2.29446622616 SampleCountF=2.29666519026 CountEF=0.301029995664 MaxLexFgivenE=1.17515304695 MaxLexEgivenF=3.66981728093 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3 2-4
[X] ||| ist [X,1] traum [X,2] ||| is [X,1] true [X,2] ||| EgivenFCoherent=2.29446622616 SampleCountF=2.29666519026 CountEF=0.301029995664 MaxLexFgivenE=2.65148953533 MaxLexEgivenF=1.76468597815 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ist [X,1] traum [X,2] ||| are [X,1] dreaming [X,2] ||| EgivenFCoherent=2.29446622616 SampleCountF=2.29666519026 CountEF=0.301029995664 MaxLexFgivenE=3.36153621514 MaxLexEgivenF=3.9917416164 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] ist [X,2] von ||| [X,1] is [X,2] of ||| EgivenFCoherent=1 SampleCountF=2.47856649559 CountEF=1.49136169383 MaxLexFgivenE=1.28909986451 MaxLexEgivenF=0.636638795501 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] ist [X,2] von ||| [X,1] is [X,2] in ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.82863577636 MaxLexEgivenF=1.69234599791 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] ist [X,2] von ||| [X,1] is [X,2] from ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=1.06213235704 MaxLexEgivenF=1.18593033209 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] ist [X,2] von ||| [X,1] is [X,2] by ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.13002466229 MaxLexEgivenF=1.25975610857 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] ist [X,2] von ||| [X,1] 's [X,2] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.15758524675 MaxLexEgivenF=2.15908812827 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] ist [X,2] von ||| [X,1] are [X,2] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.20137731806 MaxLexEgivenF=1.8223017486 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| ist [X,1] von ||| it 's [X,1] ( ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.6971211586 MaxLexEgivenF=4.98343010065 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| ist [X,1] von ||| is [X,1] of ||| EgivenFCoherent=0.9719712764 SampleCountF=2.47856649559 CountEF=1.51851393988 MaxLexFgivenE=1.28909986451 MaxLexEgivenF=0.636638795501 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ist [X,1] von ||| is [X,1] in ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.82863577636 MaxLexEgivenF=1.69234599791 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ist [X,1] von ||| is [X,1] from ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=1.06213235704 MaxLexEgivenF=1.18593033209 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ist [X,1] von ||| is [X,1] by ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.13002466229 MaxLexEgivenF=1.25975610857 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ist [X,1] von ||| 's [X,1] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.15758524675 MaxLexEgivenF=2.15908812827 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ist [X,1] von ||| are [X,1] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.20137731806 MaxLexEgivenF=1.8223017486 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ist [X,1] von [X,2] ||| it 's [X,1] ( [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.6971211586 MaxLexEgivenF=4.98343010065 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| ist [X,1] von [X,2] ||| is [X,1] [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.82863577636 MaxLexEgivenF=0.271544907299 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ist [X,1] von [X,2] ||| is [X,1] [X,2] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.28909986451 MaxLexEgivenF=0.636638795501 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| ist [X,1] von [X,2] ||| is [X,1] of [X,2] ||| EgivenFCoherent=0.9719712764 SampleCountF=2.47856649559 CountEF=1.51851393988 MaxLexFgivenE=1.28909986451 MaxLexEgivenF=0.636638795501 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ist [X,1] von [X,2] ||| is [X,1] in [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.82863577636 MaxLexEgivenF=1.69234599791 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ist [X,1] von [X,2] ||| is [X,1] from [X,2] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.06213235704 MaxLexEgivenF=1.18593033209 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ist [X,1] von [X,2] ||| is [X,1] by [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.13002466229 MaxLexEgivenF=1.25975610857 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ist [X,1] von [X,2] ||| 's [X,1] of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.15758524675 MaxLexEgivenF=2.15908812827 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ist [X,1] von [X,2] ||| are [X,1] of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.20137731806 MaxLexEgivenF=1.8223017486 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ist [X,1] von [X,2] ||| may [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.95343603669 MaxLexEgivenF=2.53711772071 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] ist [X,2] tausend ||| [X,1] , [X,2] thousand ||| EgivenFCoherent=2.06069784035 SampleCountF=2.06445798923 CountEF=0.301029995664 MaxLexFgivenE=2.12644749779 MaxLexEgivenF=0.9906936447 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] ist [X,2] tausend ||| [X,1] is [X,2] a thousand ||| EgivenFCoherent=1.36172783602 SampleCountF=2.06445798923 CountEF=0.778151250384 MaxLexFgivenE=1.00164723746 MaxLexEgivenF=1.53921340754 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3 3-4
[X] ||| [X,1] ist [X,2] tausend ||| [X,1] is [X,2] thousand ||| EgivenFCoherent=0.914569804675 SampleCountF=2.06445798923 CountEF=1.17609125906 MaxLexFgivenE=1.00164723746 MaxLexEgivenF=0.651614937993 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] ist [X,2] tausend ||| [X,1] is [X,2] thousands ||| EgivenFCoherent=2.06069784035 SampleCountF=2.06445798923 CountEF=0.301029995664 MaxLexFgivenE=1.86732573203 MaxLexEgivenF=1.35284984698 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] ist [X,2] tausend ||| [X,1] is [X,2] 1.000 ||| EgivenFCoherent=2.06069784035 SampleCountF=2.06445798923 CountEF=0.301029995664 MaxLexFgivenE=2.56441912717 MaxLexEgivenF=3.23651128213 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] ist [X,2] tausend ||| [X,1] may [X,2] thousand ||| EgivenFCoherent=2.06069784035 SampleCountF=2.06445798923 CountEF=0.301029995664 MaxLexFgivenE=2.12644749779 MaxLexEgivenF=2.91718775141 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] ist [X,2] tausend ||| is [X,2] [X,1] sand ||| EgivenFCoherent=2.06069784035 SampleCountF=2.06445798923 CountEF=0.301029995664 MaxLexFgivenE=3.69256300365 MaxLexEgivenF=3.23651128213 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 3-3
[X] ||| ist [X,1] tausend ||| , [X,1] thousand ||| EgivenFCoherent=2.06069784035 SampleCountF=2.06445798923 CountEF=0.301029995664 MaxLexFgivenE=2.12644749779 MaxLexEgivenF=0.9906936447 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ist [X,1] tausend ||| is [X,1] a thousand ||| EgivenFCoherent=1.36172783602 SampleCountF=2.06445798923 CountEF=0.778151250384 MaxLexFgivenE=1.00164723746 MaxLexEgivenF=1.53921340754 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 2-3
[X] ||| ist [X,1] tausend ||| is [X,1] thousand ||| EgivenFCoherent=0.830248918975 SampleCountF=2.06445798923 CountEF=1.2552725051 MaxLexFgivenE=1.00164723746 MaxLexEgivenF=0.651614937993 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ist [X,1] tausend ||| is [X,1] thousands ||| EgivenFCoherent=2.06069784035 SampleCountF=2.06445798923 CountEF=0.301029995664 MaxLexFgivenE=1.86732573203 MaxLexEgivenF=1.35284984698 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ist [X,1] tausend ||| is [X,1] 1.000 ||| EgivenFCoherent=2.06069784035 SampleCountF=2.06445798923 CountEF=0.301029995664 MaxLexFgivenE=2.56441912717 MaxLexEgivenF=3.23651128213 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ist [X,1] tausend ||| are [X,1] thousand ||| EgivenFCoherent=2.06069784035 SampleCountF=2.06445798923 CountEF=0.301029995664 MaxLexFgivenE=1.91392469101 MaxLexEgivenF=1.83727789109 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ist [X,1] tausend ||| may [X,1] thousand ||| EgivenFCoherent=2.06069784035 SampleCountF=2.06445798923 CountEF=0.301029995664 MaxLexFgivenE=2.12644749779 MaxLexEgivenF=2.91718775141 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ist [X,1] tausend [X,2] ||| , [X,1] thousand [X,2] ||| EgivenFCoherent=2.06069784035 SampleCountF=2.06445798923 CountEF=0.301029995664 MaxLexFgivenE=2.12644749779 MaxLexEgivenF=0.9906936447 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ist [X,1] tausend [X,2] ||| is [X,1] a thousand [X,2] ||| EgivenFCoherent=1.36172783602 SampleCountF=2.06445798923 CountEF=0.778151250384 MaxLexFgivenE=1.00164723746 MaxLexEgivenF=1.53921340754 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 2-3
[X] ||| ist [X,1] tausend [X,2] ||| is [X,1] thousand [X,2] ||| EgivenFCoherent=0.914569804675 SampleCountF=2.06445798923 CountEF=1.17609125906 MaxLexFgivenE=1.00164723746 MaxLexEgivenF=0.651614937993 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ist [X,1] tausend [X,2] ||| is [X,1] thousands [X,2] ||| EgivenFCoherent=2.06069784035 SampleCountF=2.06445798923 CountEF=0.301029995664 MaxLexFgivenE=1.86732573203 MaxLexEgivenF=1.35284984698 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ist [X,1] tausend [X,2] ||| is [X,1] 1.000 [X,2] ||| EgivenFCoherent=2.06069784035 SampleCountF=2.06445798923 CountEF=0.301029995664 MaxLexFgivenE=2.56441912717 MaxLexEgivenF=3.23651128213 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ist [X,1] tausend [X,2] ||| may [X,1] thousand [X,2] ||| EgivenFCoherent=2.06069784035 SampleCountF=2.06445798923 CountEF=0.301029995664 MaxLexFgivenE=2.12644749779 MaxLexEgivenF=2.91718775141 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] ist [X,2] katzen ||| [X,1] is [X,2] cats ||| EgivenFCoherent=0.91645394855 SampleCountF=1.53147891704 CountEF=0.698970004336 MaxLexFgivenE=0.977309485952 MaxLexEgivenF=0.591676243771 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| ist [X,1] katzen ||| is [X,1] cats ||| EgivenFCoherent=0.91645394855 SampleCountF=1.53147891704 CountEF=0.698970004336 MaxLexFgivenE=0.977309485952 MaxLexEgivenF=0.591676243771 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ist [X,1] katzen [X,2] ||| is [X,1] cats [X,2] ||| EgivenFCoherent=0.91645394855 SampleCountF=1.53147891704 CountEF=0.698970004336 MaxLexFgivenE=0.977309485952 MaxLexEgivenF=0.591676243771 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| [X,1] ein traum ||| [X,1] a dream ||| EgivenFCoherent=0.673415899864 SampleCountF=2.36548798489 CountEF=1.69897000434 MaxLexFgivenE=1.5297564708 MaxLexEgivenF=0.690956243381 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] ein traum ||| [X,1] a dream comes true ||| EgivenFCoherent=2.36361197989 SampleCountF=2.36548798489 CountEF=0.301029995664 MaxLexFgivenE=1.5297564708 MaxLexEgivenF=4.71863107023 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3 2-4
[X] ||| [X,1] ein traum ||| [X,1] a dream come true ||| EgivenFCoherent=1.88649072517 SampleCountF=2.36548798489 CountEF=0.602059991328 MaxLexFgivenE=1.5297564708 MaxLexEgivenF=3.71003089847 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 2-3 2-4
[X] ||| [X,1] ein traum ||| [X,1] a sleep ||| EgivenFCoherent=2.36361197989 SampleCountF=2.36548798489 CountEF=0.301029995664 MaxLexFgivenE=4.07085756082 MaxLexEgivenF=3.24423228952 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] ein traum ||| [X,1] a sky-blue dream ||| EgivenFCoherent=2.36361197989 SampleCountF=2.36548798489 CountEF=0.301029995664 MaxLexFgivenE=1.27509379433 MaxLexEgivenF=5.5173368891 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 2-3
[X] ||| [X,1] ein traum ||| [X,1] one dream ||| EgivenFCoherent=2.36361197989 SampleCountF=2.36548798489 CountEF=0.301029995664 MaxLexFgivenE=1.79213021047 MaxLexEgivenF=1.91133264813 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] ein traum ||| [X,1] one dreams ||| EgivenFCoherent=2.36361197989 SampleCountF=2.36548798489 CountEF=0.301029995664 MaxLexFgivenE=2.69165020246 MaxLexEgivenF=3.04136282033 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] ein traum ||| [X,1] are a dream ||| EgivenFCoherent=2.36361197989 SampleCountF=2.36548798489 CountEF=0.301029995664 MaxLexFgivenE=1.5297564708 MaxLexEgivenF=2.70919653728 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 2-3
[X] ||| [X,1] ein traum ||| [X,1] dream of a ||| EgivenFCoherent=2.36361197989 SampleCountF=2.36548798489 CountEF=0.301029995664 MaxLexFgivenE=1.5297564708 MaxLexEgivenF=1.38779150859 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 1-3
[X] ||| [X,1] ein traum [X,2] ||| [X,2] [X,1] a dream ||| EgivenFCoherent=1.88649072517 SampleCountF=2.36548798489 CountEF=0.602059991328 MaxLexFgivenE=1.5297564708 MaxLexEgivenF=0.690956243381 IsSingletonF=0 IsSingletonFE=0 ||| 1-2 2-3
[X] ||| [X,1] ein traum [X,2] ||| [X,1] [X,2] a dream ||| EgivenFCoherent=2.36361197989 SampleCountF=2.36548798489 CountEF=0.301029995664 MaxLexFgivenE=1.5297564708 MaxLexEgivenF=0.690956243381 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 2-3
[X] ||| [X,1] ein traum [X,2] ||| [X,1] a dream [X,2] ||| EgivenFCoherent=0.783828383275 SampleCountF=2.36548798489 CountEF=1.59106460703 MaxLexFgivenE=1.5297564708 MaxLexEgivenF=0.690956243381 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] ein traum [X,2] ||| [X,1] a dream come true [X,2] ||| EgivenFCoherent=2.36361197989 SampleCountF=2.36548798489 CountEF=0.301029995664 MaxLexFgivenE=1.5297564708 MaxLexEgivenF=3.71003089847 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3 2-4
[X] ||| [X,1] ein traum [X,2] ||| [X,1] a sleep [X,2] ||| EgivenFCoherent=2.36361197989 SampleCountF=2.36548798489 CountEF=0.301029995664 MaxLexFgivenE=4.07085756082 MaxLexEgivenF=3.24423228952 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] ein traum [X,2] ||| [X,1] one dream [X,2] ||| EgivenFCoherent=2.36361197989 SampleCountF=2.36548798489 CountEF=0.301029995664 MaxLexFgivenE=1.79213021047 MaxLexEgivenF=1.91133264813 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] ein traum [X,2] ||| [X,1] are a dream [X,2] ||| EgivenFCoherent=2.36361197989 SampleCountF=2.36548798489 CountEF=0.301029995664 MaxLexFgivenE=1.5297564708 MaxLexEgivenF=2.70919653728 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 2-3
[X] ||| [X,1] ein traum [X,2] ||| [X,1] dream of a [X,2] ||| EgivenFCoherent=2.36361197989 SampleCountF=2.36548798489 CountEF=0.301029995664 MaxLexFgivenE=1.5297564708 MaxLexEgivenF=1.38779150859 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 1-3
[X] ||| ein traum ||| an intense ||| EgivenFCoherent=2.36361197989 SampleCountF=2.36548798489 CountEF=0.301029995664 MaxLexFgivenE=3.71561308258 MaxLexEgivenF=3.95410180825 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ein traum ||| with unforgettable ||| EgivenFCoherent=2.36361197989 SampleCountF=2.36548798489 CountEF=0.301029995664 MaxLexFgivenE=4.76991995341 MaxLexEgivenF=4.10601132854 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ein traum ||| a very ||| EgivenFCoherent=2.36361197989 SampleCountF=2.36548798489 CountEF=0.301029995664 MaxLexFgivenE=5.36460753644 MaxLexEgivenF=3.06814103046 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ein traum ||| a dream ||| EgivenFCoherent=0.506279483461 SampleCountF=2.36548798489 CountEF=1.86332286012 MaxLexFgivenE=1.5297564708 MaxLexEgivenF=0.690956243381 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ein traum ||| a dream comes true ||| EgivenFCoherent=2.36361197989 SampleCountF=2.36548798489 CountEF=0.301029995664 MaxLexFgivenE=1.5297564708 MaxLexEgivenF=4.71863107023 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2 1-3
[X] ||| ein traum ||| a dream came true ||| EgivenFCoherent=2.36361197989 SampleCountF=2.36548798489 CountEF=0.301029995664 MaxLexFgivenE=1.5297564708 MaxLexEgivenF=4.51451108758 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2 1-3
[X] ||| ein traum ||| a dream come true ||| EgivenFCoherent=1.76155198856 SampleCountF=2.36548798489 CountEF=0.698970004336 MaxLexFgivenE=1.5297564708 MaxLexEgivenF=3.71003089847 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 1-2 1-3
[X] ||| ein traum ||| a sleep ||| EgivenFCoherent=2.36361197989 SampleCountF=2.36548798489 CountEF=0.301029995664 MaxLexFgivenE=4.07085756082 MaxLexEgivenF=3.24423228952 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ein traum ||| a 9-hole ||| EgivenFCoherent=2.36361197989 SampleCountF=2.36548798489 CountEF=0.301029995664 MaxLexFgivenE=3.07249237621 MaxLexEgivenF=3.54526228518 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ein traum ||| a sky-blue dream ||| EgivenFCoherent=2.36361197989 SampleCountF=2.36548798489 CountEF=0.301029995664 MaxLexFgivenE=1.27509379433 MaxLexEgivenF=5.5173368891 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2
[X] ||| ein traum ||| one dream ||| EgivenFCoherent=2.36361197989 SampleCountF=2.36548798489 CountEF=0.301029995664 MaxLexFgivenE=1.79213021047 MaxLexEgivenF=1.91133264813 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ein traum ||| one dreams ||| EgivenFCoherent=1.88649072517 SampleCountF=2.36548798489 CountEF=0.602059991328 MaxLexFgivenE=2.69165020246 MaxLexEgivenF=3.04136282033 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ein traum ||| its a dream ||| EgivenFCoherent=2.36361197989 SampleCountF=2.36548798489 CountEF=0.301029995664 MaxLexFgivenE=1.5297564708 MaxLexEgivenF=3.18570717147 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2
[X] ||| ein traum ||| dream of a ||| EgivenFCoherent=2.36361197989 SampleCountF=2.36548798489 CountEF=0.301029995664 MaxLexFgivenE=1.5297564708 MaxLexEgivenF=1.38779150859 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-2
[X] ||| ein traum [X,1] ||| [X,1] a dream ||| EgivenFCoherent=2.06258198423 SampleCountF=2.36548798489 CountEF=0.47712125472 MaxLexFgivenE=1.5297564708 MaxLexEgivenF=0.690956243381 IsSingletonF=0 IsSingletonFE=0 ||| 0-1 1-2
[X] ||| ein traum [X,1] ||| a dream [X,1] ||| EgivenFCoherent=0.664641975556 SampleCountF=2.36548798489 CountEF=1.7075701761 MaxLexFgivenE=1.5297564708 MaxLexEgivenF=0.690956243381 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ein traum [X,1] ||| a dream came true [X,1] ||| EgivenFCoherent=2.36361197989 SampleCountF=2.36548798489 CountEF=0.301029995664 MaxLexFgivenE=1.5297564708 MaxLexEgivenF=4.51451108758 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2 1-3
[X] ||| ein traum [X,1] ||| a dream come true [X,1] ||| EgivenFCoherent=2.06258198423 SampleCountF=2.36548798489 CountEF=0.47712125472 MaxLexFgivenE=1.5297564708 MaxLexEgivenF=3.71003089847 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 1-2 1-3
[X] ||| ein traum [X,1] ||| a sleep [X,1] ||| EgivenFCoherent=2.36361197989 SampleCountF=2.36548798489 CountEF=0.301029995664 MaxLexFgivenE=4.07085756082 MaxLexEgivenF=3.24423228952 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ein traum [X,1] ||| one dream [X,1] ||| EgivenFCoherent=2.36361197989 SampleCountF=2.36548798489 CountEF=0.301029995664 MaxLexFgivenE=1.79213021047 MaxLexEgivenF=1.91133264813 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ein traum [X,1] ||| dream of a [X,1] ||| EgivenFCoherent=2.36361197989 SampleCountF=2.36548798489 CountEF=0.301029995664 MaxLexFgivenE=1.5297564708 MaxLexEgivenF=1.38779150859 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-2
[X] ||| [X,1] ein [X,2] von ||| [X,1] [X,2] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.76359077184 MaxLexEgivenF=0.365093888202 IsSingletonF=0 IsSingletonFE=1 ||| 3-2
[X] ||| [X,1] ein [X,2] von ||| [X,1] the [X,2] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.76359077184 MaxLexEgivenF=1.35925950808 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] ein [X,2] von ||| [X,1] an [X,2] of ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.64577421836 MaxLexEgivenF=1.38672193177 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] ein [X,2] von ||| [X,1] an [X,2] from ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.41880671089 MaxLexEgivenF=1.93601346837 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] ein [X,2] von ||| [X,1] a [X,2] of ||| EgivenFCoherent=1.24667233334 SampleCountF=2.47856649559 CountEF=1.2552725051 MaxLexFgivenE=1.64370328836 MaxLexEgivenF=0.676852413042 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] ein [X,2] von ||| [X,1] a [X,2] from ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.41673578088 MaxLexEgivenF=1.22614394963 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] ein [X,2] von ||| [X,1] a [X,2] by ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.48462808613 MaxLexEgivenF=1.29996972611 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| ein [X,1] von ||| the [X,1] of ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.76359077184 MaxLexEgivenF=1.35925950808 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ein [X,1] von ||| an [X,1] of ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.64577421836 MaxLexEgivenF=1.38672193177 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ein [X,1] von ||| an [X,1] from ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.41880671089 MaxLexEgivenF=1.93601346837 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ein [X,1] von ||| a [X,1] of ||| EgivenFCoherent=0.945642337677 SampleCountF=2.47856649559 CountEF=1.54406804435 MaxLexFgivenE=1.64370328836 MaxLexEgivenF=0.676852413042 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ein [X,1] von ||| a [X,1] from ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.41673578088 MaxLexEgivenF=1.22614394963 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ein [X,1] von ||| a [X,1] by ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.48462808613 MaxLexEgivenF=1.29996972611 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ein [X,1] von [X,2] ||| the [X,1] of [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.76359077184 MaxLexEgivenF=1.35925950808 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ein [X,1] von [X,2] ||| an [X,1] of [X,2] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.64577421836 MaxLexEgivenF=1.38672193177 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ein [X,1] von [X,2] ||| an [X,1] from [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.41880671089 MaxLexEgivenF=1.93601346837 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ein [X,1] von [X,2] ||| a [X,1] [X,2] ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=2.18323920021 MaxLexEgivenF=0.31175852484 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| ein [X,1] von [X,2] ||| a [X,1] of [X,2] ||| EgivenFCoherent=1.01472325682 SampleCountF=2.47856649559 CountEF=1.47712125472 MaxLexFgivenE=1.64370328836 MaxLexEgivenF=0.676852413042 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ein [X,1] von [X,2] ||| a [X,1] from [X,2] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.41673578088 MaxLexEgivenF=1.22614394963 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ein [X,1] von [X,2] ||| a [X,1] by [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.48462808613 MaxLexEgivenF=1.29996972611 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] ein [X,2] tausend ||| [X,1] [X,2] thousands ||| EgivenFCoherent=2.14301480025 SampleCountF=2.14612803568 CountEF=0.301029995664 MaxLexFgivenE=3.34181663936 MaxLexEgivenF=1.08130493968 IsSingletonF=0 IsSingletonFE=1 ||| 3-2
[X] ||| [X,1] ein [X,2] tausend ||| [X,1] the [X,2] thousands of ||| EgivenFCoherent=2.14301480025 SampleCountF=2.14612803568 CountEF=0.301029995664 MaxLexFgivenE=3.34181663936 MaxLexEgivenF=2.77230582476 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4
[X] ||| [X,1] ein [X,2] tausend ||| [X,1] ein [X,2] tausend ||| EgivenFCoherent=2.14301480025 SampleCountF=2.14612803568 CountEF=0.301029995664 MaxLexFgivenE=0.88345944177 MaxLexEgivenF=4.74696407348 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] ein [X,2] tausend ||| [X,1] an [X,2] thousand ||| EgivenFCoherent=2.14301480025 SampleCountF=2.14612803568 CountEF=0.301029995664 MaxLexFgivenE=1.35832159131 MaxLexEgivenF=1.40169807427 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] ein [X,2] tausend ||| [X,1] a [X,2] of thousand ||| EgivenFCoherent=2.14301480025 SampleCountF=2.14612803568 CountEF=0.301029995664 MaxLexFgivenE=1.3562506613 MaxLexEgivenF=1.38866382074 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-4
[X] ||| [X,1] ein [X,2] tausend ||| [X,1] a [X,2] a thousand ||| EgivenFCoherent=1.54095480893 SampleCountF=2.14612803568 CountEF=0.698970004336 MaxLexFgivenE=1.3562506613 MaxLexEgivenF=1.00358708037 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3 3-4
[X] ||| [X,1] ein [X,2] tausend ||| [X,1] a [X,2] thousand ||| EgivenFCoherent=0.887742295151 SampleCountF=2.14612803568 CountEF=1.27875360095 MaxLexFgivenE=1.3562506613 MaxLexEgivenF=0.691828555534 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] ein [X,2] tausend ||| [X,1] one [X,2] a thousand ||| EgivenFCoherent=1.84198480459 SampleCountF=2.14612803568 CountEF=0.47712125472 MaxLexFgivenE=1.3562506613 MaxLexEgivenF=2.22396348512 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3 3-4
[X] ||| [X,1] ein [X,2] tausend ||| [X,1] one [X,2] thousand ||| EgivenFCoherent=2.14301480025 SampleCountF=2.14612803568 CountEF=0.301029995664 MaxLexFgivenE=1.61862440097 MaxLexEgivenF=1.91220496028 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] ein [X,2] tausend ||| [X,1] one [X,2] thousands ||| EgivenFCoherent=2.14301480025 SampleCountF=2.14612803568 CountEF=0.301029995664 MaxLexFgivenE=2.48430289554 MaxLexEgivenF=2.61343986926 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| ein [X,1] tausend ||| [X,1] a thousand ||| EgivenFCoherent=2.14301480025 SampleCountF=2.14612803568 CountEF=0.301029995664 MaxLexFgivenE=1.3562506613 MaxLexEgivenF=0.691828555534 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 2-1 2-2
[X] ||| ein [X,1] tausend ||| the [X,1] thousands of ||| EgivenFCoherent=2.14301480025 SampleCountF=2.14612803568 CountEF=0.301029995664 MaxLexFgivenE=3.34181663936 MaxLexEgivenF=2.77230582476 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| ein [X,1] tausend ||| ein [X,1] tausend ||| EgivenFCoherent=2.14301480025 SampleCountF=2.14612803568 CountEF=0.301029995664 MaxLexFgivenE=0.88345944177 MaxLexEgivenF=4.74696407348 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ein [X,1] tausend ||| an [X,1] a thousand ||| EgivenFCoherent=2.14301480025 SampleCountF=2.14612803568 CountEF=0.301029995664 MaxLexFgivenE=1.3562506613 MaxLexEgivenF=1.71345659911 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| ein [X,1] tausend ||| an [X,1] thousand ||| EgivenFCoherent=2.14301480025 SampleCountF=2.14612803568 CountEF=0.301029995664 MaxLexFgivenE=1.35832159131 MaxLexEgivenF=1.40169807427 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ein [X,1] tausend ||| a [X,1] of thousand ||| EgivenFCoherent=1.66589354553 SampleCountF=2.14612803568 CountEF=0.602059991328 MaxLexFgivenE=1.3562506613 MaxLexEgivenF=1.38866382074 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-3
[X] ||| ein [X,1] tausend ||| a [X,1] a thousand ||| EgivenFCoherent=1.44404479592 SampleCountF=2.14612803568 CountEF=0.778151250384 MaxLexFgivenE=1.3562506613 MaxLexEgivenF=1.00358708037 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 2-3
[X] ||| ein [X,1] tausend ||| a [X,1] thousand ||| EgivenFCoherent=0.800592119432 SampleCountF=2.14612803568 CountEF=1.36172783602 MaxLexFgivenE=1.3562506613 MaxLexEgivenF=0.691828555534 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ein [X,1] tausend ||| one [X,1] a thousand ||| EgivenFCoherent=1.66589354553 SampleCountF=2.14612803568 CountEF=0.602059991328 MaxLexFgivenE=1.3562506613 MaxLexEgivenF=2.22396348512 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 2-3
[X] ||| ein [X,1] tausend ||| one [X,1] thousand ||| EgivenFCoherent=1.84198480459 SampleCountF=2.14612803568 CountEF=0.47712125472 MaxLexFgivenE=1.61862440097 MaxLexEgivenF=1.91220496028 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ein [X,1] tausend ||| one [X,1] thousands ||| EgivenFCoherent=2.14301480025 SampleCountF=2.14612803568 CountEF=0.301029995664 MaxLexFgivenE=2.48430289554 MaxLexEgivenF=2.61343986926 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ein [X,1] tausend [X,2] ||| [X,1] a thousand [X,2] ||| EgivenFCoherent=2.14301480025 SampleCountF=2.14612803568 CountEF=0.301029995664 MaxLexFgivenE=1.3562506613 MaxLexEgivenF=0.691828555534 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 2-1 2-2
[X] ||| ein [X,1] tausend [X,2] ||| the [X,1] thousands of [X,2] ||| EgivenFCoherent=2.14301480025 SampleCountF=2.14612803568 CountEF=0.301029995664 MaxLexFgivenE=3.34181663936 MaxLexEgivenF=2.77230582476 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| ein [X,1] tausend [X,2] ||| ein [X,1] tausend [X,2] ||| EgivenFCoherent=2.14301480025 SampleCountF=2.14612803568 CountEF=0.301029995664 MaxLexFgivenE=0.88345944177 MaxLexEgivenF=4.74696407348 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ein [X,1] tausend [X,2] ||| an [X,1] a thousand [X,2] ||| EgivenFCoherent=2.14301480025 SampleCountF=2.14612803568 CountEF=0.301029995664 MaxLexFgivenE=1.3562506613 MaxLexEgivenF=1.71345659911 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| ein [X,1] tausend [X,2] ||| an [X,1] thousand [X,2] ||| EgivenFCoherent=2.14301480025 SampleCountF=2.14612803568 CountEF=0.301029995664 MaxLexFgivenE=1.35832159131 MaxLexEgivenF=1.40169807427 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ein [X,1] tausend [X,2] ||| a [X,1] of thousand [X,2] ||| EgivenFCoherent=1.84198480459 SampleCountF=2.14612803568 CountEF=0.47712125472 MaxLexFgivenE=1.3562506613 MaxLexEgivenF=1.38866382074 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-3
[X] ||| ein [X,1] tausend [X,2] ||| a [X,1] a thousand [X,2] ||| EgivenFCoherent=1.44404479592 SampleCountF=2.14612803568 CountEF=0.778151250384 MaxLexFgivenE=1.3562506613 MaxLexEgivenF=1.00358708037 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 2-3
[X] ||| ein [X,1] tausend [X,2] ||| a [X,1] thousand [X,2] ||| EgivenFCoherent=0.82079550552 SampleCountF=2.14612803568 CountEF=1.34242268082 MaxLexFgivenE=1.3562506613 MaxLexEgivenF=0.691828555534 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ein [X,1] tausend [X,2] ||| one [X,1] a thousand [X,2] ||| EgivenFCoherent=1.84198480459 SampleCountF=2.14612803568 CountEF=0.47712125472 MaxLexFgivenE=1.3562506613 MaxLexEgivenF=2.22396348512 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 2-3
[X] ||| ein [X,1] tausend [X,2] ||| one [X,1] thousand [X,2] ||| EgivenFCoherent=1.84198480459 SampleCountF=2.14612803568 CountEF=0.47712125472 MaxLexFgivenE=1.61862440097 MaxLexEgivenF=1.91220496028 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| ein [X,1] tausend [X,2] ||| one [X,1] thousands [X,2] ||| EgivenFCoherent=2.14301480025 SampleCountF=2.14612803568 CountEF=0.301029995664 MaxLexFgivenE=2.48430289554 MaxLexEgivenF=2.61343986926 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] ein [X,2] katzen ||| [X,1] an [X,2] cats ||| EgivenFCoherent=1.2552725051 SampleCountF=1.27875360095 CountEF=0.301029995664 MaxLexFgivenE=1.3339838398 MaxLexEgivenF=1.34175938004 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] ein [X,2] katzen ||| [X,1] a [X,2] cats ||| EgivenFCoherent=1.2552725051 SampleCountF=1.27875360095 CountEF=0.301029995664 MaxLexFgivenE=1.3319129098 MaxLexEgivenF=0.631889861313 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| ein [X,1] katzen ||| an [X,1] cats ||| EgivenFCoherent=1.2552725051 SampleCountF=1.27875360095 CountEF=0.301029995664 MaxLexFgivenE=1.3339838398 MaxLexEgivenF=1.34175938004 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| ein [X,1] katzen ||| a [X,1] cats ||| EgivenFCoherent=0.954242509439 SampleCountF=1.27875360095 CountEF=0.47712125472 MaxLexFgivenE=1.3319129098 MaxLexEgivenF=0.631889861313 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| [X,1] traum von ||| [X,1] dream of ||| EgivenFCoherent=0.485554422257 SampleCountF=2.02118929907 CountEF=1.54406804435 MaxLexFgivenE=1.504567213 MaxLexEgivenF=0.744291606742 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] traum von ||| [X,1] dream for ||| EgivenFCoherent=1.53991208458 SampleCountF=2.02118929907 CountEF=0.602059991328 MaxLexFgivenE=2.04410312485 MaxLexEgivenF=2.02673378251 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] traum von ||| [X,1] dream come true of ||| EgivenFCoherent=2.0170333393 SampleCountF=2.02118929907 CountEF=0.301029995664 MaxLexFgivenE=1.504567213 MaxLexEgivenF=3.76336626183 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 1-3 2-4
[X] ||| [X,1] traum von ||| [X,1] dreams of ||| EgivenFCoherent=2.0170333393 SampleCountF=2.02118929907 CountEF=0.301029995664 MaxLexFgivenE=2.40408720499 MaxLexEgivenF=1.87432177894 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] traum von ||| [X,1] striving of ||| EgivenFCoherent=2.0170333393 SampleCountF=2.02118929907 CountEF=0.301029995664 MaxLexFgivenE=3.30687766506 MaxLexEgivenF=3.29756765288 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] traum von ||| of [X,1] dreams ||| EgivenFCoherent=2.0170333393 SampleCountF=2.02118929907 CountEF=0.301029995664 MaxLexFgivenE=2.40408720499 MaxLexEgivenF=1.87432177894 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 1-2
[X] ||| [X,1] traum von [X,2] ||| [X,2] of [X,1] dreams ||| EgivenFCoherent=2.0170333393 SampleCountF=2.02118929907 CountEF=0.301029995664 MaxLexFgivenE=2.40408720499 MaxLexEgivenF=1.87432177894 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 1-3
[X] ||| [X,1] traum von [X,2] ||| [X,1] dream of [X,2] ||| EgivenFCoherent=0.58566957514 SampleCountF=2.02118929907 CountEF=1.44715803134 MaxLexFgivenE=1.504567213 MaxLexEgivenF=0.744291606742 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] traum von [X,2] ||| [X,1] dream for [X,2] ||| EgivenFCoherent=1.53991208458 SampleCountF=2.02118929907 CountEF=0.602059991328 MaxLexFgivenE=2.04410312485 MaxLexEgivenF=2.02673378251 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] traum von [X,2] ||| [X,1] dream come true of [X,2] ||| EgivenFCoherent=2.0170333393 SampleCountF=2.02118929907 CountEF=0.301029995664 MaxLexFgivenE=1.504567213 MaxLexEgivenF=3.76336626183 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 1-3 2-4
[X] ||| [X,1] traum von [X,2] ||| [X,1] dreams of [X,2] ||| EgivenFCoherent=2.0170333393 SampleCountF=2.02118929907 CountEF=0.301029995664 MaxLexFgivenE=2.40408720499 MaxLexEgivenF=1.87432177894 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] traum von [X,2] ||| [X,1] striving of [X,2] ||| EgivenFCoherent=2.0170333393 SampleCountF=2.02118929907 CountEF=0.301029995664 MaxLexFgivenE=3.30687766506 MaxLexEgivenF=3.29756765288 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| traum von ||| dream of ||| EgivenFCoherent=0.437249742682 SampleCountF=2.02118929907 CountEF=1.59106460703 MaxLexFgivenE=1.504567213 MaxLexEgivenF=0.744291606742 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| traum von ||| dream for ||| EgivenFCoherent=1.53991208458 SampleCountF=2.02118929907 CountEF=0.602059991328 MaxLexFgivenE=2.04410312485 MaxLexEgivenF=2.02673378251 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| traum von ||| dream come true of ||| EgivenFCoherent=2.0170333393 SampleCountF=2.02118929907 CountEF=0.301029995664 MaxLexFgivenE=1.504567213 MaxLexEgivenF=3.76336626183 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2 1-3
[X] ||| traum von ||| dreams of ||| EgivenFCoherent=1.71600334363 SampleCountF=2.02118929907 CountEF=0.47712125472 MaxLexFgivenE=2.40408720499 MaxLexEgivenF=1.87432177894 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| traum von ||| dreams from ||| EgivenFCoherent=2.0170333393 SampleCountF=2.02118929907 CountEF=0.301029995664 MaxLexFgivenE=2.17711969751 MaxLexEgivenF=2.42361331553 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| traum von ||| di ||| EgivenFCoherent=2.0170333393 SampleCountF=2.02118929907 CountEF=0.301029995664 MaxLexFgivenE=4.58211545203 MaxLexEgivenF=2.38840572033 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0
[X] ||| traum von ||| striving of ||| EgivenFCoherent=2.0170333393 SampleCountF=2.02118929907 CountEF=0.301029995664 MaxLexFgivenE=3.30687766506 MaxLexEgivenF=3.29756765288 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| traum von [X,1] ||| of [X,1] dreams ||| EgivenFCoherent=2.0170333393 SampleCountF=2.02118929907 CountEF=0.301029995664 MaxLexFgivenE=2.40408720499 MaxLexEgivenF=1.87432177894 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-2
[X] ||| traum von [X,1] ||| dream of [X,1] ||| EgivenFCoherent=0.539912084579 SampleCountF=2.02118929907 CountEF=1.49136169383 MaxLexFgivenE=1.504567213 MaxLexEgivenF=0.744291606742 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| traum von [X,1] ||| dream for [X,1] ||| EgivenFCoherent=1.53991208458 SampleCountF=2.02118929907 CountEF=0.602059991328 MaxLexFgivenE=2.04410312485 MaxLexEgivenF=2.02673378251 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| traum von [X,1] ||| dream come true of [X,1] ||| EgivenFCoherent=2.0170333393 SampleCountF=2.02118929907 CountEF=0.301029995664 MaxLexFgivenE=1.504567213 MaxLexEgivenF=3.76336626183 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2 1-3
[X] ||| traum von [X,1] ||| dreams of [X,1] ||| EgivenFCoherent=1.71600334363 SampleCountF=2.02118929907 CountEF=0.47712125472 MaxLexFgivenE=2.40408720499 MaxLexEgivenF=1.87432177894 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| traum von [X,1] ||| striving of [X,1] ||| EgivenFCoherent=2.0170333393 SampleCountF=2.02118929907 CountEF=0.301029995664 MaxLexFgivenE=3.30687766506 MaxLexEgivenF=3.29756765288 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| [X,1] traum [X,2] katzen ||| [X,1] dream [X,2] cats ||| EgivenFCoherent=-0 SampleCountF=0.301029995664 CountEF=0.301029995664 MaxLexFgivenE=1.19277683443 MaxLexEgivenF=0.699329055012 IsSingletonF=1 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| traum [X,1] katzen ||| dream [X,1] cats ||| EgivenFCoherent=-0 SampleCountF=0.301029995664 CountEF=0.301029995664 MaxLexFgivenE=1.19277683443 MaxLexEgivenF=0.699329055012 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] von tausend ||| [X,1] of tausend ||| EgivenFCoherent=1.14612803568 SampleCountF=1.17609125906 CountEF=0.301029995664 MaxLexFgivenE=1.22143746306 MaxLexEgivenF=2.55190901265 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] von tausend ||| [X,1] of thousand ||| EgivenFCoherent=1.14612803568 SampleCountF=1.17609125906 CountEF=0.301029995664 MaxLexFgivenE=1.3310614035 MaxLexEgivenF=0.745163918895 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] von tausend ||| [X,1] among a thousand ||| EgivenFCoherent=1.14612803568 SampleCountF=1.17609125906 CountEF=0.301029995664 MaxLexFgivenE=1.87059731535 MaxLexEgivenF=4.44899138116 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] von tausend ||| [X,1] thousands of ||| EgivenFCoherent=1.14612803568 SampleCountF=1.17609125906 CountEF=0.301029995664 MaxLexFgivenE=2.19673989807 MaxLexEgivenF=1.44639882788 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 1-2
[X] ||| [X,1] von tausend [X,2] ||| [X,1] of tausend [X,2] ||| EgivenFCoherent=1.14612803568 SampleCountF=1.17609125906 CountEF=0.301029995664 MaxLexFgivenE=1.22143746306 MaxLexEgivenF=2.55190901265 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] von tausend [X,2] ||| [X,1] of thousand [X,2] ||| EgivenFCoherent=1.14612803568 SampleCountF=1.17609125906 CountEF=0.301029995664 MaxLexFgivenE=1.3310614035 MaxLexEgivenF=0.745163918895 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] von tausend [X,2] ||| [X,1] thousands of [X,2] ||| EgivenFCoherent=1.14612803568 SampleCountF=1.17609125906 CountEF=0.301029995664 MaxLexFgivenE=2.19673989807 MaxLexEgivenF=1.44639882788 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 1-2
[X] ||| von tausend ||| of tausend ||| EgivenFCoherent=1.14612803568 SampleCountF=1.17609125906 CountEF=0.301029995664 MaxLexFgivenE=1.22143746306 MaxLexEgivenF=2.55190901265 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| von tausend ||| of thousand ||| EgivenFCoherent=0.845098040014 SampleCountF=1.17609125906 CountEF=0.47712125472 MaxLexFgivenE=1.3310614035 MaxLexEgivenF=0.745163918895 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| von tausend ||| in thousand ||| EgivenFCoherent=1.14612803568 SampleCountF=1.17609125906 CountEF=0.301029995664 MaxLexFgivenE=1.87059731535 MaxLexEgivenF=1.8008711213 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| von tausend ||| among a thousand ||| EgivenFCoherent=1.14612803568 SampleCountF=1.17609125906 CountEF=0.301029995664 MaxLexFgivenE=1.87059731535 MaxLexEgivenF=4.44899138116 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| von tausend ||| thousands of ||| EgivenFCoherent=1.14612803568 SampleCountF=1.17609125906 CountEF=0.301029995664 MaxLexFgivenE=2.19673989807 MaxLexEgivenF=1.44639882788 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-1
[X] ||| von tausend [X,1] ||| of tausend [X,1] ||| EgivenFCoherent=1.14612803568 SampleCountF=1.17609125906 CountEF=0.301029995664 MaxLexFgivenE=1.22143746306 MaxLexEgivenF=2.55190901265 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| von tausend [X,1] ||| of thousand [X,1] ||| EgivenFCoherent=1.14612803568 SampleCountF=1.17609125906 CountEF=0.301029995664 MaxLexFgivenE=1.3310614035 MaxLexEgivenF=0.745163918895 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| von tausend [X,1] ||| in thousand [X,1] ||| EgivenFCoherent=1.14612803568 SampleCountF=1.17609125906 CountEF=0.301029995664 MaxLexFgivenE=1.87059731535 MaxLexEgivenF=1.8008711213 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| von tausend [X,1] ||| thousands of [X,1] ||| EgivenFCoherent=1.14612803568 SampleCountF=1.17609125906 CountEF=0.301029995664 MaxLexFgivenE=2.19673989807 MaxLexEgivenF=1.44639882788 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-1
[X] ||| welche [X,1] von [X,2] ist ||| what [X,1] of [X,2] is ||| EgivenFCoherent=1.22010808804 SampleCountF=1.92427928606 CountEF=0.778151250384 MaxLexFgivenE=2.56584487345 MaxLexEgivenF=1.56331945577 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 4-4
[X] ||| welche [X,1] von [X,2] ist ||| what [X,1] of [X,2] will ||| EgivenFCoherent=1.91907809238 SampleCountF=1.92427928606 CountEF=0.301029995664 MaxLexFgivenE=3.69064513377 MaxLexEgivenF=3.30617560433 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| welche [X,1] von [X,2] ist ||| whichever [X,1] of [X,2] is ||| EgivenFCoherent=1.91907809238 SampleCountF=1.92427928606 CountEF=0.301029995664 MaxLexFgivenE=2.58857603211 MaxLexEgivenF=3.5235523289 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| welche [X,1] von [X,2] ein ||| what [X,1] of [X,2] a ||| EgivenFCoherent=1.19033169817 SampleCountF=1.50514997832 CountEF=0.47712125472 MaxLexFgivenE=2.92044829729 MaxLexEgivenF=1.60353307331 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 4-4
[X] ||| welche [X,1] von [X,2] von ||| the [X,1] of [X,2] of ||| EgivenFCoherent=2.03742649794 SampleCountF=2.04139268516 CountEF=0.301029995664 MaxLexFgivenE=5.09936492926 MaxLexEgivenF=1.95908991314 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| welche [X,1] von [X,2] von ||| which [X,1] of [X,2] of ||| EgivenFCoherent=2.03742649794 SampleCountF=2.04139268516 CountEF=0.301029995664 MaxLexFgivenE=3.19912023599 MaxLexEgivenF=1.33753213212 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| welche [X,1] von [X,2] von ||| which [X,1] from [X,2] of ||| EgivenFCoherent=2.03742649794 SampleCountF=2.04139268516 CountEF=0.301029995664 MaxLexFgivenE=2.74518522104 MaxLexEgivenF=1.88682366871 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| welche [X,1] von [X,2] von ||| what [X,1] of [X,2] of ||| EgivenFCoherent=1.73639650228 SampleCountF=2.04139268516 CountEF=0.47712125472 MaxLexFgivenE=2.89525903949 MaxLexEgivenF=1.65686843667 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 4-4
[X] ||| welche [X,1] von [X,2] von ||| what kind of [X,1] from the [X,2] by ||| EgivenFCoherent=2.03742649794 SampleCountF=2.04139268516 CountEF=0.301029995664 MaxLexFgivenE=2.44132402454 MaxLexEgivenF=6.8279259503 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-4 4-7
[X] ||| welche [X,1] ist ein ||| what [X,1] is a ||| EgivenFCoherent=1.43136376416 SampleCountF=1.44715803134 CountEF=0.301029995664 MaxLexFgivenE=2.59103413125 MaxLexEgivenF=1.50998409241 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| welche [X,1] ist ein ||| what [X,1] can a ||| EgivenFCoherent=1.43136376416 SampleCountF=1.44715803134 CountEF=0.301029995664 MaxLexFgivenE=3.66791700177 MaxLexEgivenF=3.10950017494 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| welche [X,1] ist ein [X,2] ||| what [X,1] is a [X,2] ||| EgivenFCoherent=1.43136376416 SampleCountF=1.44715803134 CountEF=0.301029995664 MaxLexFgivenE=2.59103413125 MaxLexEgivenF=1.50998409241 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| welche [X,1] ist [X,2] von ||| which [X,1] is [X,2] of ||| EgivenFCoherent=1.67209785794 SampleCountF=1.68124123738 CountEF=0.301029995664 MaxLexFgivenE=2.86970606995 MaxLexEgivenF=1.24398315121 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| welche [X,1] ein [X,2] von ||| which [X,1] a [X,2] from ||| EgivenFCoherent=1.4623979979 SampleCountF=1.47712125472 CountEF=0.301029995664 MaxLexFgivenE=2.99734198632 MaxLexEgivenF=1.83348830535 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| [X,1] ausgabe von [X,2] ist ||| [X,1] online spare [X,2] is ||| EgivenFCoherent=1.38021124171 SampleCountF=1.39794000867 CountEF=0.301029995664 MaxLexFgivenE=5.13269524258 MaxLexEgivenF=6.85687040165 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 4-4
[X] ||| [X,1] ausgabe von [X,2] ist ||| [X,1] issue of [X,2] is ||| EgivenFCoherent=1.38021124171 SampleCountF=1.39794000867 CountEF=0.301029995664 MaxLexFgivenE=2.16311434363 MaxLexEgivenF=1.3105296736 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 4-4
[X] ||| ausgabe von [X,1] ist ||| online spare [X,1] is ||| EgivenFCoherent=1.38021124171 SampleCountF=1.39794000867 CountEF=0.301029995664 MaxLexFgivenE=5.13269524258 MaxLexEgivenF=6.85687040165 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 3-3
[X] ||| ausgabe von [X,1] ist ||| issue of [X,1] is ||| EgivenFCoherent=1.38021124171 SampleCountF=1.39794000867 CountEF=0.301029995664 MaxLexFgivenE=2.16311434363 MaxLexEgivenF=1.3105296736 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| ausgabe von [X,1] ist ||| edition of [X,1] is ||| EgivenFCoherent=1.38021124171 SampleCountF=1.39794000867 CountEF=0.301029995664 MaxLexFgivenE=2.24784551662 MaxLexEgivenF=1.41581372221 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| ausgabe von [X,1] ist [X,2] ||| online spare [X,1] is [X,2] ||| EgivenFCoherent=1.38021124171 SampleCountF=1.39794000867 CountEF=0.301029995664 MaxLexFgivenE=5.13269524258 MaxLexEgivenF=6.85687040165 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 3-3
[X] ||| ausgabe von [X,1] ist [X,2] ||| issue of [X,1] is [X,2] ||| EgivenFCoherent=1.38021124171 SampleCountF=1.39794000867 CountEF=0.301029995664 MaxLexFgivenE=2.16311434363 MaxLexEgivenF=1.3105296736 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| ausgabe von [X,1] ist [X,2] ||| edition of [X,1] is [X,2] ||| EgivenFCoherent=1.38021124171 SampleCountF=1.39794000867 CountEF=0.301029995664 MaxLexFgivenE=2.24784551662 MaxLexEgivenF=1.41581372221 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| [X,1] ausgabe von [X,2] von ||| [X,1] output of [X,2] of ||| EgivenFCoherent=1.52504480704 SampleCountF=1.83250891271 CountEF=0.47712125472 MaxLexFgivenE=2.57237415434 MaxLexEgivenF=1.55811977282 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 4-4
[X] ||| [X,1] ausgabe von [X,2] von ||| [X,1] issue of [X,2] by ||| EgivenFCoherent=1.52504480704 SampleCountF=1.83250891271 CountEF=0.47712125472 MaxLexFgivenE=2.17437810522 MaxLexEgivenF=2.02719596757 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 4-4
[X] ||| [X,1] ausgabe von [X,2] von ||| [X,1] issue of [X,2] that the ||| EgivenFCoherent=1.8260748027 SampleCountF=1.83250891271 CountEF=0.301029995664 MaxLexFgivenE=2.49252850967 MaxLexEgivenF=4.70494575076 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 4-5
[X] ||| [X,1] ausgabe von [X,2] von ||| [X,1] edition of [X,2] by ||| EgivenFCoherent=1.8260748027 SampleCountF=1.83250891271 CountEF=0.301029995664 MaxLexFgivenE=2.25910927822 MaxLexEgivenF=2.13248001618 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 4-4
[X] ||| [X,1] ausgabe von [X,2] von ||| [X,1] issues of [X,2] of ||| EgivenFCoherent=1.8260748027 SampleCountF=1.83250891271 CountEF=0.301029995664 MaxLexFgivenE=4.85893846364 MaxLexEgivenF=3.65935115961 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 4-4
[X] ||| ausgabe von [X,1] von ||| output of [X,1] of ||| EgivenFCoherent=1.52504480704 SampleCountF=1.83250891271 CountEF=0.47712125472 MaxLexFgivenE=2.57237415434 MaxLexEgivenF=1.55811977282 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3
[X] ||| ausgabe von [X,1] von ||| issue of [X,1] by ||| EgivenFCoherent=1.52504480704 SampleCountF=1.83250891271 CountEF=0.47712125472 MaxLexFgivenE=2.17437810522 MaxLexEgivenF=2.02719596757 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3
[X] ||| ausgabe von [X,1] von ||| issue of [X,1] that the ||| EgivenFCoherent=1.8260748027 SampleCountF=1.83250891271 CountEF=0.301029995664 MaxLexFgivenE=2.49252850967 MaxLexEgivenF=4.70494575076 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-4
[X] ||| ausgabe von [X,1] von ||| edition of [X,1] of ||| EgivenFCoherent=1.8260748027 SampleCountF=1.83250891271 CountEF=0.301029995664 MaxLexFgivenE=2.57725968267 MaxLexEgivenF=1.50936270312 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| ausgabe von [X,1] von ||| edition of [X,1] by ||| EgivenFCoherent=1.8260748027 SampleCountF=1.83250891271 CountEF=0.301029995664 MaxLexFgivenE=2.25910927822 MaxLexEgivenF=2.13248001618 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| ausgabe von [X,1] von ||| issues of [X,1] of ||| EgivenFCoherent=1.8260748027 SampleCountF=1.83250891271 CountEF=0.301029995664 MaxLexFgivenE=4.85893846364 MaxLexEgivenF=3.65935115961 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| ausgabe von [X,1] von [X,2] ||| output of [X,1] of [X,2] ||| EgivenFCoherent=1.52504480704 SampleCountF=1.83250891271 CountEF=0.47712125472 MaxLexFgivenE=2.57237415434 MaxLexEgivenF=1.55811977282 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3
[X] ||| ausgabe von [X,1] von [X,2] ||| issue of [X,1] by [X,2] ||| EgivenFCoherent=1.52504480704 SampleCountF=1.83250891271 CountEF=0.47712125472 MaxLexFgivenE=2.17437810522 MaxLexEgivenF=2.02719596757 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3
[X] ||| ausgabe von [X,1] von [X,2] ||| issue of [X,1] that the [X,2] ||| EgivenFCoherent=1.8260748027 SampleCountF=1.83250891271 CountEF=0.301029995664 MaxLexFgivenE=2.49252850967 MaxLexEgivenF=4.70494575076 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-4
[X] ||| ausgabe von [X,1] von [X,2] ||| edition of [X,1] by [X,2] ||| EgivenFCoherent=1.8260748027 SampleCountF=1.83250891271 CountEF=0.301029995664 MaxLexFgivenE=2.25910927822 MaxLexEgivenF=2.13248001618 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| ausgabe von [X,1] von [X,2] ||| issues of [X,1] of [X,2] ||| EgivenFCoherent=1.8260748027 SampleCountF=1.83250891271 CountEF=0.301029995664 MaxLexFgivenE=4.85893846364 MaxLexEgivenF=3.65935115961 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| ausgabe [X,1] ist ein ||| issue [X,1] is a ||| EgivenFCoherent=1 SampleCountF=1.04139268516 CountEF=0.301029995664 MaxLexFgivenE=2.18830360143 MaxLexEgivenF=1.25719431024 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| ausgabe [X,1] ist ein [X,2] ||| issue [X,1] is a [X,2] ||| EgivenFCoherent=1 SampleCountF=1.04139268516 CountEF=0.301029995664 MaxLexFgivenE=2.18830360143 MaxLexEgivenF=1.25719431024 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| ausgabe [X,1] ein [X,2] von ||| issue [X,1] an [X,2] of ||| EgivenFCoherent=1.07918124605 SampleCountF=1.11394335231 CountEF=0.301029995664 MaxLexFgivenE=2.51978869748 MaxLexEgivenF=2.06061280988 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| ausgabe [X,1] ein [X,2] von ||| edition [X,1] a [X,2] of ||| EgivenFCoherent=1.07918124605 SampleCountF=1.11394335231 CountEF=0.301029995664 MaxLexFgivenE=2.60244894047 MaxLexEgivenF=1.45602733976 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| [X,1] von [X,2] ist ein ||| [X,2] [X,1] is a ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=2.66308204944 MaxLexEgivenF=0.58330343214 IsSingletonF=0 IsSingletonFE=0 ||| 3-2 4-3
[X] ||| [X,1] von [X,2] ist ein ||| [X,1] [X,2] is a ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.66308204944 MaxLexEgivenF=0.58330343214 IsSingletonF=0 IsSingletonFE=0 ||| 3-2 4-3
[X] ||| [X,1] von [X,2] ist ein ||| [X,1] of [X,2] is an ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=2.1256170676 MaxLexEgivenF=1.65826683907 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3 4-4
[X] ||| [X,1] von [X,2] ist ein ||| [X,1] of [X,2] is a ||| EgivenFCoherent=1.1346985739 SampleCountF=2.47856649559 CountEF=1.36172783602 MaxLexFgivenE=2.12354613759 MaxLexEgivenF=0.948397320341 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3 4-4
[X] ||| [X,1] von [X,2] ist ein ||| [X,1] of [X,2] are a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.03582359114 MaxLexEgivenF=2.13406027344 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 4-4
[X] ||| [X,1] von [X,2] ist ein ||| [X,1] of [X,2] represents an ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.70354829325 MaxLexEgivenF=4.54039944065 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 4-4
[X] ||| [X,1] von [X,2] ist ein ||| [X,1] from [X,2] is the ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.0164661136 MaxLexEgivenF=2.18009595197 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3 4-4
[X] ||| [X,1] von [X,2] ist ein ||| [X,1] from [X,2] is a ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.89657863012 MaxLexEgivenF=1.49768885693 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3 4-4
[X] ||| [X,1] von [X,2] ist ein ||| [X,1] by [X,2] is a ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.96447093537 MaxLexEgivenF=1.57151463341 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3 4-4
[X] ||| [X,1] von [X,2] ist ein ||| [X,1] by [X,2] is one ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.22684467504 MaxLexEgivenF=2.79189103815 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 4-4
[X] ||| [X,1] von [X,2] ist ein ||| in [X,2] [X,1] ) is a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66308204944 MaxLexEgivenF=3.89574159229 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 3-4 4-5
[X] ||| von [X,1] ist ein ||| of [X,1] is an ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=2.1256170676 MaxLexEgivenF=1.65826683907 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| von [X,1] ist ein ||| of [X,1] is a ||| EgivenFCoherent=1.1153934187 SampleCountF=2.47856649559 CountEF=1.38021124171 MaxLexFgivenE=2.12354613759 MaxLexEgivenF=0.948397320341 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| von [X,1] ist ein ||| of [X,1] are a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.03582359114 MaxLexEgivenF=2.13406027344 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| von [X,1] ist ein ||| of [X,1] represents an ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.70354829325 MaxLexEgivenF=4.54039944065 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| von [X,1] ist ein ||| from [X,1] , a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.02137889045 MaxLexEgivenF=1.83676756364 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| von [X,1] ist ein ||| from [X,1] is the ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=3.0164661136 MaxLexEgivenF=2.18009595197 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| von [X,1] ist ein ||| from [X,1] is a ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=1.89657863012 MaxLexEgivenF=1.49768885693 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| von [X,1] ist ein ||| from [X,1] is one ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.15895236979 MaxLexEgivenF=2.71806526168 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| von [X,1] ist ein ||| from [X,1] a ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.02137889045 MaxLexEgivenF=1.22614394963 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 3-2
[X] ||| von [X,1] ist ein ||| by [X,1] is a ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.96447093537 MaxLexEgivenF=1.57151463341 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| von [X,1] ist ein ||| by [X,1] is one ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.22684467504 MaxLexEgivenF=2.79189103815 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| von [X,1] ist ein [X,2] ||| [X,1] is a [X,2] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.12354613759 MaxLexEgivenF=0.948397320341 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 3-2 0-4
[X] ||| von [X,1] ist ein [X,2] ||| of [X,1] , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.36823388141 MaxLexEgivenF=0.975717502208 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| von [X,1] ist ein [X,2] ||| of [X,1] is an [X,2] ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=2.1256170676 MaxLexEgivenF=1.65826683907 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| von [X,1] ist ein [X,2] ||| of [X,1] is a [X,2] ||| EgivenFCoherent=1.15490195999 SampleCountF=2.47856649559 CountEF=1.34242268082 MaxLexFgivenE=2.12354613759 MaxLexEgivenF=0.948397320341 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| von [X,1] ist ein [X,2] ||| of [X,1] are a [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.03582359114 MaxLexEgivenF=2.13406027344 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| von [X,1] ist ein [X,2] ||| from [X,1] , a [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.02137889045 MaxLexEgivenF=1.83676756364 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| von [X,1] ist ein [X,2] ||| from [X,1] is the [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=3.0164661136 MaxLexEgivenF=2.18009595197 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| von [X,1] ist ein [X,2] ||| from [X,1] is a [X,2] ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=1.89657863012 MaxLexEgivenF=1.49768885693 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| von [X,1] ist ein [X,2] ||| from [X,1] a [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.02137889045 MaxLexEgivenF=1.22614394963 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 3-2
[X] ||| von [X,1] ist ein [X,2] ||| by [X,1] is a [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.96447093537 MaxLexEgivenF=1.57151463341 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| von [X,1] ist ein [X,2] ||| by [X,1] is one [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.22684467504 MaxLexEgivenF=2.79189103815 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| von [X,1] ist [X,2] traum ||| from [X,1] is [X,2] dream ||| EgivenFCoherent=0.698970004336 SampleCountF=0.778151250384 CountEF=0.301029995664 MaxLexFgivenE=1.75744255476 MaxLexEgivenF=1.56512805063 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| von [X,1] ist [X,2] von ||| von [X,1] ist [X,2] von ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.788416989014 MaxLexEgivenF=6.30499599778 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| von [X,1] ist [X,2] von ||| of [X,1] is [X,2] de ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.09835687979 MaxLexEgivenF=3.45070523377 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| von [X,1] ist [X,2] von ||| of [X,1] is [X,2] of ||| EgivenFCoherent=1.27300127206 SampleCountF=2.47856649559 CountEF=1.23044892138 MaxLexFgivenE=2.09835687979 MaxLexEgivenF=1.0017326837 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 4-4
[X] ||| von [X,1] ist [X,2] von ||| of [X,1] is [X,2] from ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.64442186484 MaxLexEgivenF=1.55102422029 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 4-4
[X] ||| von [X,1] ist [X,2] von ||| of [X,1] is [X,2] by ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.78020647534 MaxLexEgivenF=1.62484999677 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| von [X,1] ist [X,2] von ||| from [X,1] [X,2] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.76922212517 MaxLexEgivenF=1.279479313 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 4-3
[X] ||| von [X,1] ist [X,2] von ||| from [X,1] is [X,2] from ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.64442186484 MaxLexEgivenF=2.10031575689 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| [X,1] von [X,2] ein traum ||| [X,1] of [X,2] a dream ||| EgivenFCoherent=1.04139268516 SampleCountF=1.07918124605 CountEF=0.301029995664 MaxLexFgivenE=2.33901348608 MaxLexEgivenF=1.05605013158 IsSingletonF=1 IsSingletonFE=1 ||| 1-1 3-3 4-4
[X] ||| von [X,1] ein traum ||| of [X,1] a dream ||| EgivenFCoherent=0.740362689494 SampleCountF=1.07918124605 CountEF=0.47712125472 MaxLexFgivenE=2.33901348608 MaxLexEgivenF=1.05605013158 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| von [X,1] ein traum ||| from [X,1] dream of a ||| EgivenFCoherent=1.04139268516 SampleCountF=1.07918124605 CountEF=0.301029995664 MaxLexFgivenE=2.1120459786 MaxLexEgivenF=1.97043555638 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 3-2 2-4
[X] ||| von [X,1] ein traum [X,2] ||| of [X,1] a dream [X,2] ||| EgivenFCoherent=0.740362689494 SampleCountF=1.07918124605 CountEF=0.47712125472 MaxLexFgivenE=2.33901348608 MaxLexEgivenF=1.05605013158 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| von [X,1] ein traum [X,2] ||| from [X,1] dream of a [X,2] ||| EgivenFCoherent=1.04139268516 SampleCountF=1.07918124605 CountEF=0.301029995664 MaxLexFgivenE=2.1120459786 MaxLexEgivenF=1.97043555638 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 3-2 2-4
[X] ||| von [X,1] ein [X,2] von ||| of [X,1] , an [X,2] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.45503123364 MaxLexEgivenF=2.36243943398 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3 4-5
[X] ||| von [X,1] ein [X,2] von ||| of [X,1] an [X,2] of ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=2.45503123364 MaxLexEgivenF=1.75181581998 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 4-4
[X] ||| von [X,1] ein [X,2] von ||| of [X,1] an [X,2] by ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.13688082919 MaxLexEgivenF=2.37493313304 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| von [X,1] ein [X,2] von ||| of [X,1] a [X,2] of ||| EgivenFCoherent=1.33099321904 SampleCountF=2.47856649559 CountEF=1.17609125906 MaxLexFgivenE=2.45296030364 MaxLexEgivenF=1.04194630124 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 4-4
[X] ||| von [X,1] ein [X,2] von ||| of [X,1] a [X,2] from ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.99902528869 MaxLexEgivenF=1.59123783784 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 4-4
[X] ||| von [X,1] ein [X,2] von ||| of [X,1] a [X,2] by ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.13480989919 MaxLexEgivenF=1.66506361431 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| von [X,1] ein [X,2] von ||| in [X,1] to a [X,2] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.45296030364 MaxLexEgivenF=3.10995877471 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3 4-5
[X] ||| von [X,1] ein [X,2] von ||| from [X,1] one [X,2] from ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.26139902836 MaxLexEgivenF=3.36090577917 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| von [X,1] ein [X,2] von ||| by [X,1] [X,2] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.25469738267 MaxLexEgivenF=1.35330508947 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 4-3
[X] ||| von [X,1] ein [X,2] tausend ||| of [X,1] a [X,2] thousand ||| EgivenFCoherent=1.04139268516 SampleCountF=1.07918124605 CountEF=0.301029995664 MaxLexFgivenE=2.16550767658 MaxLexEgivenF=1.05692244374 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| [X,1] von [X,2] traum von ||| [X,1] [X,2] dreams of ||| EgivenFCoherent=1.07918124605 SampleCountF=1.11394335231 CountEF=0.301029995664 MaxLexFgivenE=3.21334422027 MaxLexEgivenF=1.87432177894 IsSingletonF=1 IsSingletonFE=1 ||| 3-2 4-3
[X] ||| von [X,1] traum von ||| of [X,1] dream of ||| EgivenFCoherent=1.07918124605 SampleCountF=1.11394335231 CountEF=0.301029995664 MaxLexFgivenE=2.31382422827 MaxLexEgivenF=1.10938549494 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| von [X,1] traum von [X,2] ||| of [X,1] dream of [X,2] ||| EgivenFCoherent=1.07918124605 SampleCountF=1.11394335231 CountEF=0.301029995664 MaxLexFgivenE=2.31382422827 MaxLexEgivenF=1.10938549494 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| [X,1] ist ein traum ||| [X,1] is a dream ||| EgivenFCoherent=0.549671921868 SampleCountF=1.60205999133 CountEF=1.07918124605 MaxLexFgivenE=2.00959932003 MaxLexEgivenF=0.96250115068 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 3-3
[X] ||| [X,1] ist ein traum ||| [X,1] is a dream come true ||| EgivenFCoherent=1.29003461136 SampleCountF=1.60205999133 CountEF=0.47712125472 MaxLexFgivenE=2.00959932003 MaxLexEgivenF=3.98157580577 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 3-3 3-4 3-5
[X] ||| [X,1] ist ein traum [X,2] ||| [X,1] is a dream [X,2] ||| EgivenFCoherent=0.687974620035 SampleCountF=1.60205999133 CountEF=0.954242509439 MaxLexFgivenE=2.00959932003 MaxLexEgivenF=0.96250115068 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 3-3
[X] ||| [X,1] ist ein traum [X,2] ||| [X,1] is a dream come true [X,2] ||| EgivenFCoherent=1.59106460703 SampleCountF=1.60205999133 CountEF=0.301029995664 MaxLexFgivenE=2.00959932003 MaxLexEgivenF=3.98157580577 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 3-3 3-4 3-5
[X] ||| ist ein traum ||| is a dream ||| EgivenFCoherent=0.549671921868 SampleCountF=1.60205999133 CountEF=1.07918124605 MaxLexFgivenE=2.00959932003 MaxLexEgivenF=0.96250115068 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 2-2
[X] ||| ist ein traum ||| is a dream come true ||| EgivenFCoherent=1.29003461136 SampleCountF=1.60205999133 CountEF=0.47712125472 MaxLexFgivenE=2.00959932003 MaxLexEgivenF=3.98157580577 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 2-2 2-3 2-4
[X] ||| ist ein traum [X,1] ||| is a dream [X,1] ||| EgivenFCoherent=0.687974620035 SampleCountF=1.60205999133 CountEF=0.954242509439 MaxLexFgivenE=2.00959932003 MaxLexEgivenF=0.96250115068 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 2-2
[X] ||| ist ein traum [X,1] ||| is a dream come true [X,1] ||| EgivenFCoherent=1.59106460703 SampleCountF=1.60205999133 CountEF=0.301029995664 MaxLexFgivenE=2.00959932003 MaxLexEgivenF=3.98157580577 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 2-2 2-3 2-4
[X] ||| [X,1] ist ein [X,2] von ||| [X,1] is the [X,2] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.24343362108 MaxLexEgivenF=1.63080441538 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 4-4
[X] ||| [X,1] ist ein [X,2] von ||| [X,1] is an [X,2] of ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.1256170676 MaxLexEgivenF=1.65826683907 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 4-4
[X] ||| [X,1] ist ein [X,2] von ||| [X,1] is an [X,2] from ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.89864956012 MaxLexEgivenF=2.20755837567 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 4-4
[X] ||| [X,1] ist ein [X,2] von ||| [X,1] is from a [X,2] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89657863012 MaxLexEgivenF=1.86278274513 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-3 4-5
[X] ||| [X,1] ist ein [X,2] von ||| [X,1] is a [X,2] von ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.47572792574 MaxLexEgivenF=2.47173322018 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 4-4
[X] ||| [X,1] ist ein [X,2] von ||| [X,1] is a [X,2] of ||| EgivenFCoherent=1.07918124605 SampleCountF=2.47856649559 CountEF=1.41497334797 MaxLexFgivenE=2.12354613759 MaxLexEgivenF=0.948397320341 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 4-4
[X] ||| [X,1] ist ein [X,2] von ||| [X,1] is a [X,2] on ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66308204944 MaxLexEgivenF=2.53512679931 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 4-4
[X] ||| [X,1] ist ein [X,2] von ||| [X,1] is a [X,2] from ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.89657863012 MaxLexEgivenF=1.49768885693 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 4-4
[X] ||| [X,1] ist ein [X,2] von ||| [X,1] is a [X,2] by ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.96447093537 MaxLexEgivenF=1.57151463341 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 4-4
[X] ||| ist ein [X,1] von ||| , is a [X,1] from ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89657863012 MaxLexEgivenF=2.10831247094 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2 3-4
[X] ||| ist ein [X,1] von ||| is the [X,1] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.24343362108 MaxLexEgivenF=1.63080441538 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| ist ein [X,1] von ||| is an [X,1] of ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=2.1256170676 MaxLexEgivenF=1.65826683907 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3
[X] ||| ist ein [X,1] von ||| is an [X,1] from ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.89864956012 MaxLexEgivenF=2.20755837567 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3
[X] ||| ist ein [X,1] von ||| is from a [X,1] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89657863012 MaxLexEgivenF=1.86278274513 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-2 3-4
[X] ||| ist ein [X,1] von ||| is a [X,1] von ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.47572792574 MaxLexEgivenF=2.47173322018 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| ist ein [X,1] von ||| is a [X,1] of ||| EgivenFCoherent=0.9719712764 SampleCountF=2.47856649559 CountEF=1.51851393988 MaxLexFgivenE=2.12354613759 MaxLexEgivenF=0.948397320341 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3
[X] ||| ist ein [X,1] von ||| is a [X,1] on ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66308204944 MaxLexEgivenF=2.53512679931 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| ist ein [X,1] von ||| is a [X,1] from ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.89657863012 MaxLexEgivenF=1.49768885693 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3
[X] ||| ist ein [X,1] von ||| is a [X,1] by ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.96447093537 MaxLexEgivenF=1.57151463341 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3
[X] ||| ist ein [X,1] von [X,2] ||| , a [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.78788230977 MaxLexEgivenF=0.922382138847 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| ist ein [X,1] von [X,2] ||| is an [X,1] of [X,2] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=2.1256170676 MaxLexEgivenF=1.65826683907 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3
[X] ||| ist ein [X,1] von [X,2] ||| is an [X,1] from [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.89864956012 MaxLexEgivenF=2.20755837567 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3
[X] ||| ist ein [X,1] von [X,2] ||| is from a [X,1] of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89657863012 MaxLexEgivenF=1.86278274513 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-2 3-4
[X] ||| ist ein [X,1] von [X,2] ||| is a [X,1] [X,2] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=2.66308204944 MaxLexEgivenF=0.58330343214 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| ist ein [X,1] von [X,2] ||| is a [X,1] von [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.47572792574 MaxLexEgivenF=2.47173322018 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| ist ein [X,1] von [X,2] ||| is a [X,1] of [X,2] ||| EgivenFCoherent=1.02996322338 SampleCountF=2.47856649559 CountEF=1.4623979979 MaxLexFgivenE=2.12354613759 MaxLexEgivenF=0.948397320341 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3
[X] ||| ist ein [X,1] von [X,2] ||| is a [X,1] on [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66308204944 MaxLexEgivenF=2.53512679931 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| ist ein [X,1] von [X,2] ||| is a [X,1] from [X,2] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.89657863012 MaxLexEgivenF=1.49768885693 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3
[X] ||| ist ein [X,1] von [X,2] ||| is a [X,1] by [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.96447093537 MaxLexEgivenF=1.57151463341 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3
[X] ||| [X,1] ist ein [X,2] tausend ||| [X,1] is a [X,2] a thousand ||| EgivenFCoherent=0.845098040014 SampleCountF=0.903089986992 CountEF=0.301029995664 MaxLexFgivenE=1.83609351054 MaxLexEgivenF=1.27513198767 IsSingletonF=1 IsSingletonFE=1 ||| 1-1 2-2 4-4 4-5
[X] ||| ist ein [X,1] tausend ||| is a [X,1] a thousand ||| EgivenFCoherent=0.845098040014 SampleCountF=0.903089986992 CountEF=0.301029995664 MaxLexFgivenE=1.83609351054 MaxLexEgivenF=1.27513198767 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 1-1 3-3 3-4
[X] ||| ist ein [X,1] tausend [X,2] ||| is a [X,1] a thousand [X,2] ||| EgivenFCoherent=0.845098040014 SampleCountF=0.903089986992 CountEF=0.301029995664 MaxLexFgivenE=1.83609351054 MaxLexEgivenF=1.27513198767 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 1-1 3-3 3-4
[X] ||| ist [X,1] von [X,2] katzen ||| is [X,1] of [X,2] cats ||| EgivenFCoherent=0.602059991328 SampleCountF=0.698970004336 CountEF=0.301029995664 MaxLexFgivenE=1.78656650123 MaxLexEgivenF=0.956770131973 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| [X,1] ein traum von ||| [X,1] a dream of ||| EgivenFCoherent=0.47712125472 SampleCountF=1 CountEF=0.602059991328 MaxLexFgivenE=2.33901348608 MaxLexEgivenF=1.05605013158 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 3-3
[X] ||| [X,1] ein traum von [X,2] ||| [X,1] a dream of [X,2] ||| EgivenFCoherent=0.47712125472 SampleCountF=1 CountEF=0.602059991328 MaxLexFgivenE=2.33901348608 MaxLexEgivenF=1.05605013158 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2 3-3
[X] ||| ein traum von ||| a dream of ||| EgivenFCoherent=0.255272505103 SampleCountF=1 CountEF=0.778151250384 MaxLexFgivenE=2.33901348608 MaxLexEgivenF=1.05605013158 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 2-2
[X] ||| ein traum von [X,1] ||| a dream of [X,1] ||| EgivenFCoherent=0.255272505103 SampleCountF=1 CountEF=0.778151250384 MaxLexFgivenE=2.33901348608 MaxLexEgivenF=1.05605013158 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 2-2
[X] ||| ein traum [X,1] katzen ||| a dream [X,1] cats ||| EgivenFCoherent=-0 SampleCountF=0.301029995664 CountEF=0.301029995664 MaxLexFgivenE=2.02722310751 MaxLexEgivenF=1.01108757985 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| [X,1] ein [X,2] von tausend ||| [X,1] ein [X,2] of tausend ||| EgivenFCoherent=0.301029995664 SampleCountF=0.47712125472 CountEF=0.301029995664 MaxLexFgivenE=1.69271645705 MaxLexEgivenF=5.11205796168 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 4-4
[X] ||| [X,1] ein [X,2] von tausend ||| [X,1] one [X,2] among a thousand ||| EgivenFCoherent=0.301029995664 SampleCountF=0.47712125472 CountEF=0.301029995664 MaxLexFgivenE=2.70504358843 MaxLexEgivenF=5.40528636604 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 4-4 4-5
[X] ||| ein [X,1] von tausend ||| ein [X,1] of tausend ||| EgivenFCoherent=0.301029995664 SampleCountF=0.47712125472 CountEF=0.301029995664 MaxLexFgivenE=1.69271645705 MaxLexEgivenF=5.11205796168 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| ein [X,1] von tausend ||| one [X,1] among a thousand ||| EgivenFCoherent=0.301029995664 SampleCountF=0.47712125472 CountEF=0.301029995664 MaxLexFgivenE=2.70504358843 MaxLexEgivenF=5.40528636604 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3 3-4
[X] ||| ein [X,1] von tausend [X,2] ||| ein [X,1] of tausend [X,2] ||| EgivenFCoherent=0.301029995664 SampleCountF=0.47712125472 CountEF=0.301029995664 MaxLexFgivenE=1.69271645705 MaxLexEgivenF=5.11205796168 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| von [X,1] ein traum von ||| of [X,1] a dream of ||| EgivenFCoherent=-0 SampleCountF=0.301029995664 CountEF=0.301029995664 MaxLexFgivenE=3.14827050135 MaxLexEgivenF=1.42114401978 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 2-2 3-3 4-4