Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/moses-regression-tests.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHieu Hoang <hieu@hoang.co.uk>2014-05-07 14:56:08 +0400
committerHieu Hoang <hieu@hoang.co.uk>2014-05-07 14:56:08 +0400
commit0fe1c708001e66d0c2dc215cc2572c13ee01f073 (patch)
tree0b92f1cdcf275d2b3da09ccf8439efa4d7dd2651
parent3a176d60945580eefae25e845fb4b031590b6ed8 (diff)
lattice decoding tests, with memory, on-disk, and binary phrase-tables
-rwxr-xr-xtests/phrase.lattice.bin/filter-stderr.pl22
-rwxr-xr-xtests/phrase.lattice.bin/filter-stdout.pl7
-rw-r--r--tests/phrase.lattice.bin/moses.ini44
-rw-r--r--tests/phrase.lattice.bin/moses.ini~44
-rw-r--r--tests/phrase.lattice.bin/to-translate.txt10
-rw-r--r--tests/phrase.lattice.bin/truth/results.txt21
-rwxr-xr-xtests/phrase.lattice.mem/filter-stderr.pl22
-rwxr-xr-xtests/phrase.lattice.mem/filter-stdout.pl7
-rw-r--r--tests/phrase.lattice.mem/lm.en.blmbin0 -> 16398949 bytes
-rw-r--r--tests/phrase.lattice.mem/moses.ini44
-rw-r--r--tests/phrase.lattice.mem/phrase-table.0-0.1.1.bin/phrase-table.binphr.idxbin0 -> 1556 bytes
-rw-r--r--tests/phrase.lattice.mem/phrase-table.0-0.1.1.bin/phrase-table.binphr.srctree.wabin0 -> 16352 bytes
-rw-r--r--tests/phrase.lattice.mem/phrase-table.0-0.1.1.bin/phrase-table.binphr.srcvoc194
-rw-r--r--tests/phrase.lattice.mem/phrase-table.0-0.1.1.bin/phrase-table.binphr.tgtdata.wabin0 -> 14133975 bytes
-rw-r--r--tests/phrase.lattice.mem/phrase-table.0-0.1.1.bin/phrase-table.binphr.tgtvoc9364
-rw-r--r--tests/phrase.lattice.mem/phrase-table.0-0.1.1.gzbin0 -> 5296253 bytes
-rw-r--r--tests/phrase.lattice.mem/phrase-table.0-0.1.1.ondisk/Misc.dat5
-rw-r--r--tests/phrase.lattice.mem/phrase-table.0-0.1.1.ondisk/Source.datbin0 -> 22887 bytes
-rw-r--r--tests/phrase.lattice.mem/phrase-table.0-0.1.1.ondisk/TargetColl.datbin0 -> 75033 bytes
-rw-r--r--tests/phrase.lattice.mem/phrase-table.0-0.1.1.ondisk/TargetInd.datbin0 -> 68520 bytes
-rw-r--r--tests/phrase.lattice.mem/phrase-table.0-0.1.1.ondisk/Vocab.dat9540
-rw-r--r--tests/phrase.lattice.mem/to-translate.txt10
-rw-r--r--tests/phrase.lattice.mem/truth/results.txt21
-rwxr-xr-xtests/phrase.lattice.ondisk/filter-stderr.pl22
-rwxr-xr-xtests/phrase.lattice.ondisk/filter-stdout.pl7
-rw-r--r--tests/phrase.lattice.ondisk/moses.ini44
-rw-r--r--tests/phrase.lattice.ondisk/to-translate.txt10
-rw-r--r--tests/phrase.lattice.ondisk/truth/results.txt21
28 files changed, 19459 insertions, 0 deletions
diff --git a/tests/phrase.lattice.bin/filter-stderr.pl b/tests/phrase.lattice.bin/filter-stderr.pl
new file mode 100755
index 0000000..2f6e176
--- /dev/null
+++ b/tests/phrase.lattice.bin/filter-stderr.pl
@@ -0,0 +1,22 @@
+#!/usr/bin/perl
+
+BEGIN { use Cwd qw/ abs_path /; use File::Basename; $script_dir = dirname(abs_path($0)); push @INC, "$script_dir/../perllib"; }
+use RegTestUtils;
+
+$x=0;
+while (<>) {
+ chomp;
+
+ if (/^Finished loading LanguageModels/) {
+ my $time = RegTestUtils::readTime($_);
+ print "LMLOAD_TIME ~ $time\n";
+ }
+ if (/^Finished loading phrase tables/) {
+ my $time = RegTestUtils::readTime($_);
+ print "PTLOAD_TIME ~ $time\n";
+ }
+ next unless /^BEST TRANSLATION:/;
+ my $pscore = RegTestUtils::readHypoScore($_);
+ $x++;
+ print "SCORE_$x = $pscore\n";
+}
diff --git a/tests/phrase.lattice.bin/filter-stdout.pl b/tests/phrase.lattice.bin/filter-stdout.pl
new file mode 100755
index 0000000..476ddf6
--- /dev/null
+++ b/tests/phrase.lattice.bin/filter-stdout.pl
@@ -0,0 +1,7 @@
+#!/usr/bin/perl
+$x=0;
+while (<>) {
+ chomp;
+ $x++;
+ print "TRANSLATION_$x=$_\n";
+}
diff --git a/tests/phrase.lattice.bin/moses.ini b/tests/phrase.lattice.bin/moses.ini
new file mode 100644
index 0000000..677c00e
--- /dev/null
+++ b/tests/phrase.lattice.bin/moses.ini
@@ -0,0 +1,44 @@
+#########################
+### MOSES CONFIG FILE ###
+#########################
+
+# input factors
+[input-factors]
+0
+
+# mapping steps
+[mapping]
+0 T 0
+
+[distortion-limit]
+6
+
+# feature functions
+[feature]
+UnknownWordPenalty
+WordPenalty
+PhrasePenalty
+#PhraseDictionaryMemory name=TranslationModel0 table-limit=20 num-features=4 path=${TEST_PATH}/../phrase.lattice.mem/phrase-table.0-0.1.1.gz input-factor=0 output-factor=0
+PhraseDictionaryBinary name=TranslationModel0 table-limit=20 num-features=4 path=${TEST_PATH}/../phrase.lattice.mem/phrase-table.0-0.1.1.bin/phrase-table input-factor=0 output-factor=0
+#PhraseDictionaryOnDisk name=TranslationModel0 table-limit=20 num-features=4 path=${TEST_PATH}/../phrase.lattice.mem//phrase-table.0-0.1.1.ondisk input-factor=0 output-factor=0
+
+Distortion
+KENLM name=LM0 factor=0 path=${TEST_PATH}/../phrase.lattice.mem/lm.en.blm order=3
+InputFeature num-features=1 num-input-features=1 real-word-count=0
+
+# dense weights for feature functions
+[weight]
+UnknownWordPenalty0= 1
+WordPenalty0= -1
+PhrasePenalty0= 0.2
+TranslationModel0= 0.2 0.2 0.2 0.2
+Distortion0= 0.3
+LM0= 0.5
+InputFeature0= 1
+
+[inputtype]
+2
+
+[max-phrase-length]
+1000000
+
diff --git a/tests/phrase.lattice.bin/moses.ini~ b/tests/phrase.lattice.bin/moses.ini~
new file mode 100644
index 0000000..21be92f
--- /dev/null
+++ b/tests/phrase.lattice.bin/moses.ini~
@@ -0,0 +1,44 @@
+#########################
+### MOSES CONFIG FILE ###
+#########################
+
+# input factors
+[input-factors]
+0
+
+# mapping steps
+[mapping]
+0 T 0
+
+[distortion-limit]
+6
+
+# feature functions
+[feature]
+UnknownWordPenalty
+WordPenalty
+PhrasePenalty
+#PhraseDictionaryMemory name=TranslationModel0 table-limit=20 num-features=4 path=${TEST_PATH}/../phrase.lattice.mem/phrase-table.0-0.1.1.gz input-factor=0 output-factor=0
+PhraseDictionaryBinary name=TranslationModel0 table-limit=20 num-features=4 path=${TEST_PATH}/../phrase.lattice.mem/phrase-table.0-0.1.1.bin/phrase-table input-factor=0 output-factor=0
+#PhraseDictionaryOnDisk name=TranslationModel0 table-limit=20 num-features=4 path=/home/hieu/workspace/experiment/data/issues/maxim/filter/t/phrase-table.0-0.1.1.ondisk input-factor=0 output-factor=0
+
+Distortion
+KENLM name=LM0 factor=0 path=${TEST_PATH}/../phrase.lattice.mem/lm.en.blm order=3
+InputFeature num-features=1 num-input-features=1 real-word-count=0
+
+# dense weights for feature functions
+[weight]
+UnknownWordPenalty0= 1
+WordPenalty0= -1
+PhrasePenalty0= 0.2
+TranslationModel0= 0.2 0.2 0.2 0.2
+Distortion0= 0.3
+LM0= 0.5
+InputFeature0= 1
+
+[inputtype]
+2
+
+[max-phrase-length]
+1000000
+
diff --git a/tests/phrase.lattice.bin/to-translate.txt b/tests/phrase.lattice.bin/to-translate.txt
new file mode 100644
index 0000000..f24c66a
--- /dev/null
+++ b/tests/phrase.lattice.bin/to-translate.txt
@@ -0,0 +1,10 @@
+((('herr',1.0,1),),(('präsident',1.0,1),),(('!',1.0,1),),(('nach',1.0,1),),(('einem',1.0,1),),(('-',1.0,1),),(('wie',1.0,1),),(('uns',1.0,1),),(('in',1.0,1),('gerufen',0.25,2),),(('erinnerung',1.0,2),),(('wurde',0.25,3),),(('gerufen',1.0,1),),(('wurde',1.0,3),),(('in',0.25,1),),(('erinnerung',0.25,1),),(('-',1.0,1),),(('acht',1.0,1),),(('jahre',1.0,1),),(('anhaltenden',1.0,1),),(('grausamen',1.0,1),),(('bürgerkrieg',1.0,1),),(('bot',1.0,1),),(('das',1.0,1),),(('am',1.0,1),),(('7',1.0,1),),(('.',1.0,1),),(('juli',1.0,1),),(('dieses',1.0,1),),(('jahres',1.0,1),),(('unterzeichnete',1.0,1),),(('friedensabkommen',1.0,1),),(('die',1.0,1),),(('möglichkeit',1.0,1),),(('zur',1.0,1),),(('beendigung',1.0,1),),(('dieses',1.0,1),),(('tragischen',1.0,1),),(('kapitels',1.0,1),),(('und',1.0,1),),(('zur',1.0,1),),(('friedlichen',1.0,1),),(('und',1.0,1),),(('dauerhaften',1.0,1),),(('beilegung',1.0,1),),(('eines',1.0,1),),(('konflikts',1.0,1),),((',',1.0,1),),(('der',1.0,1),),(('unermeßliches',1.0,1),),(('leid',1.0,1),),(('über',1.0,1),),(('die',1.0,1),),(('bevölkerung',1.0,1),),(('gebracht',1.0,1),),(('hat',1.0,1),),(('.',1.0,1),),)
+((('die',1.0,1),),(('hoffnungen',1.0,1),),((',',1.0,1),),(('zu',1.0,1),),(('denen',1.0,1),),(('dieses',1.0,1),),(('abkommen',1.0,1),),(('anlaß',1.0,1),),(('gab',1.0,1),),((',',1.0,1),),(('gehen',1.0,1),),(('jedoch',1.0,1),),(('nicht',1.0,1),),(('in',1.0,1),),(('erfüllung',1.0,1),),((',',1.0,1),),(('und',1.0,1),),(('heute',1.0,1),),((',',1.0,1),),(('fünf',1.0,1),),(('monate',1.0,1),),(('später',1.0,1),),((',',1.0,1),),(('müssen',1.0,1),),(('wir',1.0,1),),(('zutiefst',1.0,1),),(('beunruhigt',1.0,1),),(('und',1.0,1),),(('besorgt',1.0,1),),(('feststellen',1.0,1),),((',',1.0,1),),(('daß',1.0,1),),(('die',1.0,1),),(('angriffe',1.0,1),('aufgehört',0.25,3),),(('der',1.0,1),),(('rebellen',1.0,2),),(('angriffe',0.25,3),),(('gegen',1.0,1),),(('zivilisten',1.0,3),),(('der',0.25,1),),(('rebellen',0.25,2),),((',',1.0,3),),(('gegen',0.25,1),),(('zivilisten',0.25,2),),(('die',1.0,2),),((',',0.25,2),),(('morde',1.0,2),),(('die',0.25,2),),(('und',1.0,2),),(('morde',0.25,2),),(('vergewaltigungen',1.0,2),),(('und',0.25,2),),(('nicht',1.0,2),),(('vergewaltigungen',0.25,2),),(('etwa',1.0,2),),(('nicht',0.25,2),),(('aufgehört',1.0,2),),(('etwa',0.25,1),),((',',1.0,1),),(('sondern',1.0,1),),(('sogar',1.0,1),),(('zugenommen',1.0,1),),(('haben',1.0,1),),(('.',1.0,1),),)
+((('deshalb',1.0,1),),(('möchten',1.0,1),),(('wir',1.0,1),),(('christdemokraten',1.0,1),),((',',1.0,1),),(('die',1.0,1),),(('wir',1.0,1),),(('uns',1.0,1),),(('stets',1.0,1),),(('für',1.0,1),),(('dialog',1.0,1),),(('und',1.0,1),),(('aussöhnung',1.0,1),),(('eingesetzt',1.0,1),),(('haben',1.0,1),),((',',1.0,1),),(('die',1.0,1),),(('anhaltenden',1.0,1),),(('gewalttaten',1.0,1),),(('und',1.0,1),),(('verstöße',1.0,1),),(('gegen',1.0,1),),(('die',1.0,1),),(('menschenrechte',1.0,1),),(('nochmals',1.0,1),),(('auf',1.0,1),),(('das',1.0,1),),(('schärfste',1.0,1),),(('verurteilen',1.0,1),),(('und',1.0,1),),(('unserem',1.0,1),),(('bedauern',1.0,1),),(('über',1.0,1),),(('die',1.0,1),),(('verzögerungen',1.0,1),),(('im',1.0,1),),(('friedensprozeß',1.0,1),),(('ausdruck',1.0,1),),(('geben',1.0,1),),(('.',1.0,1),),)
+((('vor',1.0,1),),(('allem',1.0,1),),(('aber',1.0,1),),(('möchten',1.0,1),),(('wir',1.0,1),),(('die',1.0,1),),(('konfliktparteien',1.0,1),),(('aufrufen',1.0,1),),((',',1.0,1),),(('die',1.0,1),('niederzulegen',0.25,2),),(('waffen',1.0,2),),(('die',0.25,2),),(('ein',1.0,2),),(('waffen',0.25,3),),(('für',1.0,1),),(('allemal',1.0,2),),(('ein',0.25,2),),(('niederzulegen',1.0,3),),(('für',0.25,1),),(('allemal',0.25,1),),(('und',1.0,1),),(('ihre',1.0,1),),(('im',1.0,1),),(('friedensabkommen',1.0,1),),(('eingegangenen',1.0,1),),(('verpflichtungen',1.0,1),),(('einzuhalten',1.0,1),),(('.',1.0,1),),)
+((('da',1.0,1),),(('jedoch',1.0,1),),(('worte',1.0,1),),(('nicht',1.0,1),),(('ausreichen',1.0,1),),((',',1.0,1),),(('sondern',1.0,1),),(('taten',1.0,1),),(('erforderlich',1.0,1),),(('sind',1.0,1),),((',',1.0,1),),(('ersuchen',1.0,1),),(('wir',1.0,1),),(('nachdrücklich',1.0,1),),(('darum',1.0,1),),((',',1.0,1),),(('daß',1.0,1),),(('maßnahmen',1.0,1),),(('ergriffen',1.0,2),('bereitgestellt',0.25,1),),(('werden',0.25,2),),(('und',1.0,2),),(('ergriffen',0.25,2),),(('mittel',1.0,2),),(('und',0.25,3),),(('bereitgestellt',1.0,1),),(('werden',1.0,2),),(('mittel',0.25,1),),((',',1.0,1),),(('um',1.0,2),('zu',0.25,1),),(('ermöglichen',0.25,3),),(('die',1.0,1),),(('erfüllung',1.0,2),),(('um',0.25,3),),(('dieses',1.0,1),),(('abkommens',1.0,3),),(('die',0.25,1),),(('erfüllung',0.25,3),),(('zu',1.0,1),),(('ermöglichen',1.0,3),),(('dieses',0.25,1),),(('abkommens',0.25,1),),(('.',1.0,1),),)
+((('insbesondere',1.0,1),),(('ist',1.0,1),),(('es',1.0,1),),(('erforderlich',1.0,1),),((',',1.0,1),),(('daß',1.0,1),),(('der',1.0,1),),(('sicherheitsrat',1.0,1),),(('der',1.0,1),('beschließt',0.25,5),),(('vereinten',1.0,1),),(('nationen',1.0,1),),(('die',1.0,1),('beschließt',0.25,10),),(('stationierung',1.0,4),),(('der',0.25,1),),(('vereinten',0.25,1),),(('nationen',0.25,4),),(('einer',1.0,1),('beschließt',0.25,14),),(('internationalen',1.0,1),),(('friedenstruppe',1.0,5),),(('die',0.25,1),),(('stationierung',0.25,4),),(('die',0.25,1),),(('stationierung',0.25,5),),(('beschließt',1.0,10),),(('einer',0.25,1),),(('internationalen',0.25,1),),(('friedenstruppe',0.25,7),),(('einer',0.25,1),),(('internationalen',0.25,1),),(('friedenstruppe',0.25,4),),(('einer',0.25,1),),(('internationalen',0.25,1),),(('friedenstruppe',0.25,1),),(('.',1.0,1),),)
+((('darüber',1.0,1),),(('hinaus',1.0,1),),(('müssen',1.0,1),),(('die',1.0,1),),(('zur',1.0,1),),(('umsetzung',1.0,1),),(('dieses',1.0,1),),(('abkommens',1.0,1),),(('notwendigen',1.0,1),),(('mittel',1.0,1),),(('bereitgestellt',1.0,1),),(('werden',1.0,1),),(('.',1.0,1),),(('insbesondere',1.0,1),),(('-',1.0,1),),(('darüber',1.0,1),),(('wurde',1.0,1),),(('bereits',1.0,1),),(('gesprochen',1.0,1),),(('-',1.0,1),),(('für',1.0,1),),(('die',1.0,1),),(('förderung',1.0,1),),(('von',1.0,1),),(('entwicklung',1.0,1),),(('und',1.0,1),),(('bildung',1.0,1),),(('sowie',1.0,1),),(('sämtlicher',1.0,1),),(('maßnahmen',1.0,1),),((',',1.0,1),),(('die',1.0,1),),(('es',1.0,1),),(('der',1.0,1),),(('bevölkerung',1.0,1),),(('von',1.0,1),),(('sierra',1.0,1),),(('leone',1.0,1),),(('ermöglichen',1.0,1),),((',',1.0,1),),(('endlich',1.0,2),('zu',0.25,1),),(('finden',0.25,2),),(('wieder',1.0,2),),(('endlich',0.25,3),),(('zu',1.0,1),),(('sich',1.0,2),),(('wieder',0.25,2),),(('selbst',1.0,3),),(('zu',0.25,1),),(('sich',0.25,3),),(('zu',1.0,1),),(('finden',1.0,2),),(('selbst',0.25,1),),(('und',1.0,1),),(('in',1.0,1),),(('frieden',1.0,1),),((',',1.0,1),),(('freiheit',1.0,2),('zu',0.25,1),),(('leben',0.25,2),),(('und',1.0,2),),(('freiheit',0.25,2),),(('demokratie',1.0,2),),(('und',0.25,3),),(('zu',1.0,1),),(('leben',1.0,2),),(('demokratie',0.25,1),),(('.',1.0,1),),)
+((('herr',1.0,1),),(('präsident',1.0,1),),(('!',1.0,1),),(('was',1.0,1),),(('sich',1.0,1),),(('gegenwärtig',1.0,1),),(('in',1.0,1),),(('sierra',1.0,1),),(('leone',1.0,1),),(('abspielt',1.0,1),),((',',1.0,1),),(('ist',1.0,1),),((',',1.0,1),),(('wie',1.0,1),),(('ich',1.0,1),),(('meine',1.0,1),),((',',1.0,1),),(('ein',1.0,1),),(('gefährlicher',1.0,1),),(('präzedenzfall',1.0,1),),((',',1.0,1),),(('nicht',1.0,1),),(('nur',1.0,1),),(('für',1.0,1),),(('afrika',1.0,1),),((',',1.0,1),),(('sondern',1.0,1),),(('für',1.0,1),),(('die',1.0,1),),(('ganze',1.0,1),),(('welt',1.0,1),),(('.',1.0,1),),)
+((('im',1.0,1),),(('juli',1.0,1),),(('wurde',1.0,1),),(('zwischen',1.0,1),),(('der',1.0,1),),(('regierung',1.0,1),),(('und',1.0,1),),(('den',1.0,1),),(('ruf-rebellen',1.0,1),),(('ein',1.0,1),),(('friedensabkommen',1.0,1),),(('geschlossen',1.0,1),),(('.',1.0,1),),)
+((('das',1.0,1),),(('wäre',1.0,1),),(('zu',1.0,1),),(('begrüßen',1.0,1),),((',',1.0,1),),(('handelte',1.0,1),),(('es',1.0,1),),(('sich',1.0,1),),(('dabei',1.0,1),),(('nicht',1.0,1),),(('um',1.0,1),),(('eine',1.0,1),),(('der',1.0,1),),(('brutalsten',1.0,1),),(('rebellengruppen',1.0,1),),(('der',1.0,1),),(('welt',1.0,1),),((',',1.0,1),),(('deren',1.0,1),),(('einziges',1.0,1),),(('politisches',1.0,1),),(('ziel',1.0,1),),(('darin',1.0,1),),(('besteht',1.0,1),),((',',1.0,1),),(('die',1.0,1),('zu',0.25,2),),(('kontrolle',1.0,2),),(('erlangen',0.25,4),),(('über',1.0,1),),(('die',1.0,1),),(('diamanten',1.0,3),),(('die',0.25,1),),(('kontrolle',0.25,3),),(('zu',1.0,1),),(('erlangen',1.0,4),),(('über',0.25,1),),(('die',0.25,1),),(('diamanten',0.25,1),),(('.',1.0,1),),)
diff --git a/tests/phrase.lattice.bin/truth/results.txt b/tests/phrase.lattice.bin/truth/results.txt
new file mode 100644
index 0000000..69ae0ee
--- /dev/null
+++ b/tests/phrase.lattice.bin/truth/results.txt
@@ -0,0 +1,21 @@
+TRANSLATION_1=mr president , after a - as has been mentioned , eight years persistent cruel possible for the civil war on 7 july this year and peace agreement , signed the opportunity to put an end to this tragic chapter and peaceful and lasting settlement of the conflict , unermeßliches suffering on the population .
+TRANSLATION_2=the hopes , to which this reason , are not , however , in accordance with , and today , five months later , we need is a deeply concerned about and to say that the rebels the attacks against civilians , the deaths and rape not stopped , but even have increased .
+TRANSLATION_3=we would therefore christian democrats , we have always fought for dialogue and reconciliation , the continuing violence and violations of human rights in the outright condemnation of our regret the delay in the peace process .
+TRANSLATION_4=but above all , we would like to call the conflict , once and for all stand in the peace agreement and their commitments .
+TRANSLATION_5=however , that words are not enough , but what is required , we urge the fact that the measures taken and resources in order to achieve this agreement .
+TRANSLATION_6=in particular , it is necessary , of the united nations security council , the deployment of international intervention power .
+TRANSLATION_7=furthermore , the need for the implementation of this agreement to the necessary resources . in particular , which has already been mentioned - for the promotion of development and education and all the measures which the people of sierra leone , at long last to find themselves and peace , freedom and democracy .
+TRANSLATION_8=mr president , what is currently in sierra leone a my opinion , a dangerous precedent , not only for africa , but for the whole world .
+TRANSLATION_9=in july was between the government and the ruf-rebellen a peace agreement is closed .
+TRANSLATION_10=this would be useful , was not a question of brutalsten rebellengruppen the world , whose only aim of political control of diamonds .
+SCORE_1 = -330.895
+SCORE_2 = -117.736
+SCORE_3 = -82.050
+SCORE_4 = -52.202
+SCORE_5 = -71.575
+SCORE_6 = -35.666
+SCORE_7 = -101.380
+SCORE_8 = -43.752
+SCORE_9 = -125.536
+SCORE_10 = -259.121
+TOTAL_WALLTIME ~ 19
diff --git a/tests/phrase.lattice.mem/filter-stderr.pl b/tests/phrase.lattice.mem/filter-stderr.pl
new file mode 100755
index 0000000..2f6e176
--- /dev/null
+++ b/tests/phrase.lattice.mem/filter-stderr.pl
@@ -0,0 +1,22 @@
+#!/usr/bin/perl
+
+BEGIN { use Cwd qw/ abs_path /; use File::Basename; $script_dir = dirname(abs_path($0)); push @INC, "$script_dir/../perllib"; }
+use RegTestUtils;
+
+$x=0;
+while (<>) {
+ chomp;
+
+ if (/^Finished loading LanguageModels/) {
+ my $time = RegTestUtils::readTime($_);
+ print "LMLOAD_TIME ~ $time\n";
+ }
+ if (/^Finished loading phrase tables/) {
+ my $time = RegTestUtils::readTime($_);
+ print "PTLOAD_TIME ~ $time\n";
+ }
+ next unless /^BEST TRANSLATION:/;
+ my $pscore = RegTestUtils::readHypoScore($_);
+ $x++;
+ print "SCORE_$x = $pscore\n";
+}
diff --git a/tests/phrase.lattice.mem/filter-stdout.pl b/tests/phrase.lattice.mem/filter-stdout.pl
new file mode 100755
index 0000000..476ddf6
--- /dev/null
+++ b/tests/phrase.lattice.mem/filter-stdout.pl
@@ -0,0 +1,7 @@
+#!/usr/bin/perl
+$x=0;
+while (<>) {
+ chomp;
+ $x++;
+ print "TRANSLATION_$x=$_\n";
+}
diff --git a/tests/phrase.lattice.mem/lm.en.blm b/tests/phrase.lattice.mem/lm.en.blm
new file mode 100644
index 0000000..2fe250c
--- /dev/null
+++ b/tests/phrase.lattice.mem/lm.en.blm
Binary files differ
diff --git a/tests/phrase.lattice.mem/moses.ini b/tests/phrase.lattice.mem/moses.ini
new file mode 100644
index 0000000..04ab118
--- /dev/null
+++ b/tests/phrase.lattice.mem/moses.ini
@@ -0,0 +1,44 @@
+#########################
+### MOSES CONFIG FILE ###
+#########################
+
+# input factors
+[input-factors]
+0
+
+# mapping steps
+[mapping]
+0 T 0
+
+[distortion-limit]
+6
+
+# feature functions
+[feature]
+UnknownWordPenalty
+WordPenalty
+PhrasePenalty
+PhraseDictionaryMemory name=TranslationModel0 table-limit=20 num-features=4 path=${TEST_PATH}/../phrase.lattice.mem/phrase-table.0-0.1.1.gz input-factor=0 output-factor=0
+#PhraseDictionaryBinary name=TranslationModel0 table-limit=20 num-features=4 path=/home/hieu/workspace/experiment/data/issues/maxim/filter/t/phrase-table.0-0.1.1.bin/phrase-table input-factor=0 output-factor=0
+#PhraseDictionaryOnDisk name=TranslationModel0 table-limit=20 num-features=4 path=/home/hieu/workspace/experiment/data/issues/maxim/filter/t/phrase-table.0-0.1.1.ondisk input-factor=0 output-factor=0
+
+Distortion
+KENLM name=LM0 factor=0 path=${TEST_PATH}/../phrase.lattice.mem/lm.en.blm order=3
+InputFeature num-features=1 num-input-features=1 real-word-count=0
+
+# dense weights for feature functions
+[weight]
+UnknownWordPenalty0= 1
+WordPenalty0= -1
+PhrasePenalty0= 0.2
+TranslationModel0= 0.2 0.2 0.2 0.2
+Distortion0= 0.3
+LM0= 0.5
+InputFeature0= 1
+
+[inputtype]
+2
+
+[max-phrase-length]
+1000000
+
diff --git a/tests/phrase.lattice.mem/phrase-table.0-0.1.1.bin/phrase-table.binphr.idx b/tests/phrase.lattice.mem/phrase-table.0-0.1.1.bin/phrase-table.binphr.idx
new file mode 100644
index 0000000..ff67df4
--- /dev/null
+++ b/tests/phrase.lattice.mem/phrase-table.0-0.1.1.bin/phrase-table.binphr.idx
Binary files differ
diff --git a/tests/phrase.lattice.mem/phrase-table.0-0.1.1.bin/phrase-table.binphr.srctree.wa b/tests/phrase.lattice.mem/phrase-table.0-0.1.1.bin/phrase-table.binphr.srctree.wa
new file mode 100644
index 0000000..a9197b5
--- /dev/null
+++ b/tests/phrase.lattice.mem/phrase-table.0-0.1.1.bin/phrase-table.binphr.srctree.wa
Binary files differ
diff --git a/tests/phrase.lattice.mem/phrase-table.0-0.1.1.bin/phrase-table.binphr.srcvoc b/tests/phrase.lattice.mem/phrase-table.0-0.1.1.bin/phrase-table.binphr.srcvoc
new file mode 100644
index 0000000..3b5581e
--- /dev/null
+++ b/tests/phrase.lattice.mem/phrase-table.0-0.1.1.bin/phrase-table.binphr.srcvoc
@@ -0,0 +1,194 @@
+193 zugenommen
+192 zwischen
+191 worte
+190 zutiefst
+189 vor
+188 vergewaltigungen
+187 unterzeichnete
+186 verstöße
+185 unserem
+184 umsetzung
+183 tragischen
+182 taten
+181 sämtlicher
+180 stets
+179 sowie
+178 selbst
+177 verurteilen
+176 rebellen
+175 ziel
+174 politisches
+173 notwendigen
+172 nochmals
+171 niederzulegen
+170 nachdrücklich
+169 später
+168 mittel
+167 leid
+166 leben
+165 kapitels
+164 im
+163 ihre
+162 präsident
+161 herr
+160 grausamen
+159 gewalttaten
+158 geschlossen
+157 in
+156 gegenwärtig
+155 zivilisten
+154 gegen
+153 hat
+152 gebracht
+151 gab
+150 monate
+149 friedlichen
+148 friedenstruppe
+147 friedensprozeß
+146 frieden
+145 finden
+144 feststellen
+143 etwa
+142 sich
+141 ermöglichen
+140 erlangen
+139 gerufen
+138 erinnerung
+137 ergriffen
+136 sind
+135 erforderlich
+134 entwicklung
+133 haben
+132 eingesetzt
+131 einzuhalten
+130 verpflichtungen
+129 eingegangenen
+128 konflikts
+127 eines
+126 internationalen
+125 einer
+124 einem
+123 eine
+122 präzedenzfall
+121 gefährlicher
+120 friedensabkommen
+119 verzögerungen
+118 stationierung
+117 zur
+116 möglichkeit
+115 menschenrechte
+114 konfliktparteien
+113 hoffnungen
+112 ganze
+111 förderung
+110 erfüllung
+109 diamanten
+108 dialog
+107 möchten
+106 deshalb
+105 einziges
+104 welt
+103 nationen
+102 vereinten
+101 sicherheitsrat
+100 regierung
+99 den
+98 dauerhaften
+97 wäre
+96 wurde
+95 hinaus
+94 darum
+93 darin
+92 dabei
+91 jedoch
+90 da
+89 christdemokraten
+88 bürgerkrieg
+87 bot
+86 bildung
+85 leone
+84 sierra
+83 von
+82 bevölkerung
+81 beunruhigt
+80 besteht
+79 besorgt
+78 beschließt
+77 gesprochen
+76 bereits
+75 werden
+74 bereitgestellt
+73 beilegung
+72 begrüßen
+71 beendigung
+70 über
+69 bedauern
+68 aussöhnung
+67 ausreichen
+66 geben
+65 ausdruck
+64 aufrufen
+63 aufgehört
+62 schärfste
+61 das
+60 auf
+59 anlaß
+58 angriffe
+57 am
+56 allemal
+55 allem
+54 afrika
+53 jahre
+52 acht
+51 abspielt
+50 abkommens
+49 abkommen
+48 aber
+47 jahres
+46 dieses
+45 juli
+44 7.
+43 insbesondere
+42 .
+41 darüber
+40 -
+39 denen
+38 zu
+37 meine
+36 heute
+35 um
+34 sogar
+33 sondern
+32 für
+31 nur
+30 nicht
+29 müssen
+28 ich
+27 wie
+26 ist
+25 handelte
+24 gehen
+23 fünf
+22 demokratie
+21 und
+20 freiheit
+19 ersuchen
+18 wieder
+17 endlich
+16 ein
+15 uns
+14 wir
+13 waffen
+12 morde
+11 kontrolle
+10 es
+9 anhaltenden
+8 deren
+7 maßnahmen
+6 die
+5 der
+4 daß
+3 ,
+2 was
+1 nach
+0 !
diff --git a/tests/phrase.lattice.mem/phrase-table.0-0.1.1.bin/phrase-table.binphr.tgtdata.wa b/tests/phrase.lattice.mem/phrase-table.0-0.1.1.bin/phrase-table.binphr.tgtdata.wa
new file mode 100644
index 0000000..a325a8d
--- /dev/null
+++ b/tests/phrase.lattice.mem/phrase-table.0-0.1.1.bin/phrase-table.binphr.tgtdata.wa
Binary files differ
diff --git a/tests/phrase.lattice.mem/phrase-table.0-0.1.1.bin/phrase-table.binphr.tgtvoc b/tests/phrase.lattice.mem/phrase-table.0-0.1.1.bin/phrase-table.binphr.tgtvoc
new file mode 100644
index 0000000..37c0676
--- /dev/null
+++ b/tests/phrase.lattice.mem/phrase-table.0-0.1.1.bin/phrase-table.binphr.tgtvoc
@@ -0,0 +1,9364 @@
+9363 weightiest
+9362 urgencies
+9361 sleeping
+9360 script-led
+9359 quantifiable
+9358 promptly
+9357 possesses
+9356 overrides
+9355 roadside
+9354 shortlist
+9353 lukewarm
+9352 institutionally
+9351 impartial
+9350 lonely
+9349 eco-systems
+9348 deviation
+9347 contravene
+9346 patents
+9345 hairdressers
+9344 above-average
+9343 updated
+9342 ranges
+9341 multi-ethnic
+9340 phraseology
+9339 exceed
+9338 easing
+9337 detailing
+9336 separates
+9335 synergy
+9334 damascus
+9333 cruise
+9332 fide
+9331 bona
+9330 benign
+9329 alternate
+9328 swing
+9327 modifying
+9326 costa
+9325 cognisance
+9324 fissionable
+9323 aggravates
+9322 hefty
+9321 1990
+9320 unused
+9319 underestimated
+9318 trample
+9317 structuring
+9316 second-class
+9315 maternal
+9314 mask
+9313 interrupt
+9312 incite
+9311 forestall
+9310 earn
+9309 deter
+9308 clone
+9307 tap
+9306 streamlined
+9305 stamp
+9304 prohibiting
+9303 validate
+9302 tanks
+9301 makers
+9300 investing
+9299 avoidable
+9298 highest-producing
+9297 fujimori
+9296 scotland
+9295 55
+9294 ascertaining
+9293 failings
+9292 evenings
+9291 engender
+9290 enforcing
+9289 energetically
+9288 endless
+9287 embarrassed
+9286 depopulation
+9285 criminals
+9284 crept
+9283 crass
+9282 correlate
+9281 complicit
+9280 compels
+9279 cofinancing
+9278 bse-infected
+9277 transporters
+9276 amiable
+9275 sidelined
+9274 foisted
+9273 recoverable
+9272 haunt
+9271 articulate
+9270 art
+9269 pious
+9268 answerable
+9267 tariff-based
+9266 akin
+9265 advisers
+9264 advisable
+9263 120
+9262 motivate
+9261 offsetting
+9260 lip
+9259 mysteries
+9258 milestone
+9257 long-awaited
+9256 lynched
+9255 supplemented
+9254 rounds
+9253 halted
+9252 quaestors
+9251 never-ending
+9250 soil
+9249 muster
+9248 gun
+9247 goodness
+9246 furnished
+9245 egan
+9244 santer
+9243 delors
+9242 celebration
+9241 bbc
+9240 bomber
+9239 1996
+9238 milan
+9237 silences
+9236 forego
+9235 eagerly
+9234 differed
+9233 testified
+9232 rung
+9231 oriented
+9230 fourthly
+9229 distinguishing
+9228 staring
+9227 selecting
+9226 abstaining
+9225 carrot
+9224 regressing
+9223 redeploy
+9222 reappearing
+9221 spasms
+9220 re-emerge
+9219 well-established
+9218 third-generation
+9217 snowballed
+9216 pinpoints
+9215 novice
+9214 militants
+9213 intensity
+9212 unrivalled
+9211 whole-hearted
+9210 jobs.as
+9209 faits
+9208 tar
+9207 bruno
+9206 brands
+9205 beset
+9204 begs
+9203 architectural
+9202 shamefaced
+9201 accompany
+9200 aberrations
+9199 concise
+9198 herbivores
+9197 exposure
+9196 string
+9195 havoc
+9194 heighten
+9193 critics
+9192 savage
+9191 spokesman
+9190 retabled
+9189 marginalisation
+9188 invests
+9187 unambiguously
+9186 underestimation
+9185 forward-looking
+9184 endanger
+9183 doubtless
+9182 dogma
+9181 devices
+9180 confuses
+9179 chiquita
+9178 blade
+9177 rectified
+9176 nationalist
+9175 fished
+9174 deducted
+9173 baggage
+9172 asylum-seekers
+9171 technologically
+9170 enticed
+9169 endeavouring
+9168 traded
+9167 aqua
+9166 aggression
+9165 abductions
+9164 80
+9163 aberration
+9162 redundancy
+9161 leak
+9160 noticeable
+9159 bhutanese
+9158 unduly
+9157 cleaned
+9156 baltic
+9155 depicted
+9154 purposefully
+9153 globally
+9152 dictate
+9151 destroys
+9150 surrounds
+9149 notions
+9148 hinders
+9147 rods
+9146 equitable
+9145 cross-party
+9144 concession
+9143 comprehensively
+9142 broadening
+9141 anger
+9140 foregone
+9139 weapon
+9138 guns
+9137 wary
+9136 spraying
+9135 shrink
+9134 qualms
+9133 pudding
+9132 preceding
+9131 petersen
+9130 scores
+9129 notional
+9128 jurists
+9127 forgetfulness
+9126 focussing
+9125 flower
+9124 depleted
+9123 re-examined
+9122 convened
+9121 resumption
+9120 riots
+9119 modernise
+9118 centred
+9117 1989
+9116 112
+9115 von
+9114 uranium
+9113 unsustainability
+9112 underpinned
+9111 tidying
+9110 thoughtless
+9109 steers
+9108 shipments
+9107 scales
+9106 sails
+9105 reliability
+9104 recount
+9103 rating
+9102 professor
+9101 prion
+9100 outbreaks
+9099 origine
+9098 vegetables
+9097 mps
+9096 shedding
+9095 races
+9094 manipulating
+9093 mandates
+9092 progressively
+9091 duplicate
+9090 citrus
+9089 accountants
+9088 non-members
+9087 mostly
+9086 leaf
+9085 kick
+9084 intimate
+9083 performance-enhancing
+9082 buses
+9081 wetland
+9080 unacceptably
+9079 governor
+9078 third-party
+9077 games
+9076 horrors
+9075 paedophilia
+9074 offloaded
+9073 floating
+9072 evoke
+9071 enthusiastic
+9070 dozens
+9069 dissociated
+9068 differentiation
+9067 dervitsani
+9066 delegate
+9065 dary
+9064 concur
+9063 relentlessly
+9062 champion
+9061 abstention
+9060 bright
+9059 prosecuting
+9058 bowe
+9057 excellency
+9056 eurostat
+9055 beneficiary
+9054 co-financed
+9053 atomic
+9052 witnesses
+9051 journalists
+9050 emanating
+9049 dreaming
+9048 dependence
+9047 alluded
+9046 comparisons
+9045 horrific
+9044 abrogated
+9043 reworking
+9042 residue
+9041 limb
+9040 markings
+9039 402
+9038 presidents
+9037 riddled
+9036 slippage
+9035 parasitical
+9034 infringe
+9033 breaches
+9032 95.9
+9031 rapes
+9030 imbeni
+9029 skilfully
+9028 ironically
+9027 shake
+9026 restricting
+9025 redistributing
+9024 preach
+9023 trousers
+9022 seats
+9021 hanging
+9020 forge
+9019 fool
+9018 featured
+9017 excited
+9016 e
+9015 subscribing
+9014 exploring
+9013 abound
+9012 45
+9011 cooking
+9010 wetlands
+9009 warner
+9008 underwater
+9007 unbelievable
+9006 theoretically
+9005 surrendering
+9004 substantive
+9003 staggering
+9002 self-employed
+9001 scattered
+9000 ratifying
+8999 prompt
+8998 prestigious
+8997 phenomena
+8996 peers
+8995 peacefully
+8994 oxide
+8993 owed
+8992 oversee
+8991 operandi
+8990 sponsors
+8989 undiscriminating
+8988 midnight
+8987 navy
+8986 merchant
+8985 magistrates
+8984 lenient
+8983 languedoc-roussillon
+8982 jeopardised
+8981 senses
+8980 ticking
+8979 integrity
+8978 intact
+8977 injustice
+8976 incalculable
+8975 higher-quality
+8974 generates
+8973 flies
+8972 fibres
+8971 fend
+8970 fantasy
+8969 excuses
+8968 schooling
+8967 ethnically
+8966 enormity
+8965 turmoil
+8964 embellish
+8963 ecologically
+8962 e-mail
+8961 dynamism
+8960 drain
+8959 deteriorating
+8958 detection
+8957 deploring
+8956 deficiencies
+8955 customer
+8954 criminalisation
+8953 courtesy
+8952 confusing
+8951 conclusive
+8950 climb
+8949 cleansing
+8948 cargoes
+8947 time-consuming
+8946 brows
+8945 brains
+8944 estuary
+8943 boyne
+8942 demobilise
+8941 tightened
+8940 repealed
+8939 economical
+8938 institutionalised
+8937 simplistic
+8936 complacent
+8935 compensated
+8934 austrians
+8933 arts
+8932 systematically
+8931 angle
+8930 writes
+8929 non-committal
+8928 unloading
+8927 unintentional
+8926 uncontrolled
+8925 traumatic
+8924 tortured
+8923 induce
+8922 thorny
+8921 documentary
+8920 sacrificed
+8919 stepping
+8918 diverging
+8917 sexually
+8916 settling
+8915 rivalry
+8914 reintegrate
+8913 regression
+8912 rebuilding
+8911 prestige
+8910 practicable
+8909 crumbling
+8908 pastries
+8907 off-shore
+8906 irish
+8905 cowardly
+8904 immune
+8903 metals
+8902 maximising
+8901 diversion
+8900 intensified
+8899 inordinate
+8898 initiating
+8897 informally
+8896 volunteers
+8895 incidences
+8894 dominate
+8893 idealism
+8892 oppression
+8891 greeted
+8890 explore
+8889 eu-asean
+8888 environments
+8887 intransigence
+8886 discarded
+8885 desecration
+8884 danes
+8883 appraisal
+8882 methane
+8881 chase
+8880 synergistically
+8879 associate
+8878 beautiful
+8877 irresponsible
+8876 absorbs
+8875 activist
+8874 lesser
+8873 pet
+8872 bizarrely
+8871 burdens
+8870 a1
+8869 restrained
+8868 loose
+8867 spoon
+8866 60
+8865 10.55
+8864 unions
+8863 uncoordinated
+8862 hampering
+8861 mugabe
+8860 andalucia
+8859 centralist
+8858 stipulating
+8857 oppressed
+8856 unconditionally
+8855 tsis
+8854 web
+8853 &amp;
+8852 closure
+8851 ecosystems
+8850 fastest
+8849 sharm
+8848 execute
+8847 vicissitudes
+8846 tse
+8845 amends
+8844 teething
+8843 verbal
+8842 re-heat
+8841 pleading
+8840 reoccurring
+8839 kidnapping
+8838 rwanda
+8837 assemble
+8836 referenda
+8835 hovering
+8834 freudian
+8833 self-importance
+8832 diversify
+8831 pertains
+8830 cohort
+8829 inhaled
+8828 outlying
+8827 doden
+8826 mixture
+8825 specimen
+8824 rivers
+8823 premeditated
+8822 reinstate
+8821 hears
+8820 balancing
+8819 alleviating
+8818 wanton
+8817 physically
+8816 likes
+8815 invariably
+8814 attracts
+8813 notoriously
+8812 post-mortem
+8811 rare
+8810 incapacity
+8809 efa
+8808 cyclone
+8807 beside
+8806 relocation
+8805 olaf
+8804 pleases
+8803 blatant
+8802 amounting
+8801 modus
+8800 jail
+8799 deliberate
+8798 worlds
+8797 smacks
+8796 resurrect
+8795 lawlessness
+8794 paralysed
+8793 sparing
+8792 generalised
+8791 validated
+8790 embraced
+8789 com
+8788 clients
+8787 forbidden
+8786 conservatives
+8785 quantified
+8784 expulsion
+8783 applauded
+8782 amassed
+8781 allies
+8780 affords
+8779 addiction
+8778 pinch
+8777 gay
+8776 e-europe
+8775 spots
+8774 admissible
+8773 warehouses
+8772 solidly
+8771 vehemently
+8770 rookt
+8769 reproduce
+8768 prosecutions
+8767 professes
+8766 poured
+8765 participated
+8764 overlap
+8763 selectively
+8762 multiplication
+8761 meddling
+8760 transpires
+8759 insure
+8758 expanded
+8757 groaning
+8756 drunk
+8755 floods
+8754 experimented
+8753 emptying
+8752 drag
+8751 dividing
+8750 distinguish
+8749 distant
+8748 dismay
+8747 determines
+8746 deteriorated
+8745 creations
+8744 fancy
+8743 copied
+8742 concealing
+8741 likeness
+8740 frivolous
+8739 bother
+8738 conditioned
+8737 embedded
+8736 red-handed
+8735 astounded
+8734 wondering
+8733 flourish
+8732 conceive
+8731 bow
+8730 trademark
+8729 formidable
+8728 generalisation
+8727 mythology
+8726 oneself
+8725 adherence
+8724 yourselves
+8723 herself
+8722 self-sufficient
+8721 abusers
+8720 strictest
+8719 régime
+8718 rulers
+8717 nepalese
+8716 israelis
+8715 turk
+8714 stays
+8713 one-way
+8712 swell
+8711 marginally
+8710 discreet
+8709 euratom
+8708 undervalue
+8707 acutely
+8706 reintroduces
+8705 ex-ante
+8704 wildest
+8703 wavering
+8702 unviable
+8701 unsuccessful
+8700 underspent
+8699 crazy
+8698 contemplating
+8697 unresolved
+8696 unthinkable
+8695 pilots
+8694 pill
+8693 overwhelm
+8692 outdated
+8691 nominate
+8690 modelled
+8689 lock
+8688 unheard
+8687 excluding
+8686 smelling
+8685 stranger
+8684 forged
+8683 equate
+8682 dwell
+8681 dinosaurs
+8680 confine
+8679 knee-jerk
+8678 non-respect
+8677 non-existent
+8676 non-discriminatory
+8675 non-declared
+8674 mexico
+8673 medication
+8672 lags
+8671 lagging
+8670 discipline
+8669 unavailable
+8668 troubled
+8667 interfering
+8666 sustain
+8665 insufficiently
+8664 inconceivable
+8663 inadmissible
+8662 half-finished
+8661 unchanged
+8660 earnings
+8659 constrict
+8658 absolve
+8657 wounded
+8656 dissatisfied
+8655 disapproving
+8654 dares
+8653 cry
+8652 comprehension
+8651 inconsistent
+8650 bills
+8649 evasive
+8648 resigning
+8647 barely
+8646 preserved
+8645 labouring
+8644 imperfect
+8643 misnomer
+8642 resentment
+8641 aan
+8640 uzelf
+8639 u
+8638 bent
+8637 &apos;t
+8636 t
+8635 aspiration
+8634 snapshot
+8633 arafat
+8632 negating
+8631 eroding
+8630 shelved
+8629 expressly
+8628 fan
+8627 wave
+8626 vary
+8625 unmarried
+8624 tracing
+8623 south-mediterranean
+8622 redefined
+8621 apportion
+8620 assignment
+8619 theatre
+8618 libya
+8617 geographically
+8616 jews
+8615 fond
+8614 factual
+8613 europe-atlantic
+8612 slogans
+8611 nazi
+8610 aspire
+8609 arriving
+8608 made-to-measure
+8607 wand
+8606 magic
+8605 updating
+8604 resign
+8603 broaden
+8602 sacrifice
+8601 etc.
+8600 incomprehensible
+8599 aligning
+8598 syphon
+8597 countering
+8596 conveying
+8595 elicit
+8594 assassinations
+8593 rightful
+8592 twice
+8591 whole-heartedly
+8590 remainder
+8589 indebted
+8588 endorsing
+8587 disapprove
+8586 alvin
+8585 upstream
+8584 dictated
+8583 boarding
+8582 tribulations
+8581 strife
+8580 multi-cultural
+8579 monotheistic
+8578 plagued
+8577 arenas
+8576 oversight
+8575 airspace
+8574 conducting
+8573 auditing
+8572 maternity
+8571 liberals
+8570 emcdda
+8569 obtainable
+8568 8.9
+8567 29
+8566 strasbourg
+8565 year-old
+8564 ten-year
+8563 18
+8562 visibility
+8561 troubles
+8560 se
+8559 romanian
+8558 rigour
+8557 revoked
+8556 resonance
+8555 quorum
+8554 owes
+8553 ramassage
+8552 occupations
+8551 therapy
+8550 nicotine
+8549 filed
+8548 munich
+8547 leaked
+8546 unjustifiable
+8545 predicated
+8544 orwellian
+8543 neutral
+8542 supportive
+8541 excessively
+8540 bogus
+8539 obstructed
+8538 endangered
+8537 24
+8536 non-binding
+8535 27
+8534 phoned
+8533 elaborated
+8532 disturbs
+8531 fearing
+8530 statistic
+8529 cruelly
+8528 75
+8527 evacuation
+8526 vigour
+8525 decreasing
+8524 boards
+8523 atmosphere
+8522 explosive
+8521 accrual
+8520 panacea
+8519 nationalism
+8518 unicef
+8517 discernible
+8516 technically
+8515 reclamation
+8514 pressures
+8513 disgraceful
+8512 typified
+8511 lawyer
+8510 pcts
+8509 grossly
+8508 scares
+8507 distortions
+8506 consumer-led
+8505 burned
+8504 admire
+8503 variations
+8502 vanish
+8501 unites
+8500 uefa
+8499 topics
+8498 stagnate
+8497 statutory
+8496 threw
+8495 mineral
+8494 tax-funded
+8493 tampere
+8492 swept
+8491 surviving
+8490 survived
+8489 supreme
+8488 semi-skimmed
+8487 stores
+8486 stab
+8485 solves
+8484 situated
+8483 sink
+8482 sharply
+8481 sail
+8480 ride
+8479 rejoice
+8478 recouped
+8477 raging
+8476 propagated
+8475 professions
+8474 privatise
+8473 prematurely
+8472 permeates
+8471 permeate
+8470 upheaval
+8469 paralysis
+8468 overstepping
+8467 non-consultant
+8466 nigeria
+8465 monopolised
+8464 mayor
+8463 locked
+8462 livestock
+8461 kinnock
+8460 juris
+8459 junior
+8458 jack
+8457 thumb
+8456 lax
+8455 invoked
+8454 neighbourhoods
+8453 interviewed
+8452 inter-service
+8451 inefficiencies
+8450 enriching
+8449 islamic
+8448 haute-normandie
+8447 bars
+8446 shockingly
+8445 1988
+8444 deliveries
+8443 satellite
+8442 ideologies
+8441 turnover
+8440 haunting
+8439 haider
+8438 inspiration
+8437 goodyear
+8436 genocide
+8435 fundamentalism
+8434 formula
+8433 chronic
+8432 five-day
+8431 first-class
+8430 financially
+8429 feverish
+8428 fat
+8427 tougher
+8426 famine
+8425 expand
+8424 encephalopathy
+8423 dragged
+8422 downright
+8421 distress
+8420 dissatisfaction
+8419 disabilities
+8418 directorate-general
+8417 detected
+8416 demonstrations
+8415 demagoguery
+8414 degenerate
+8413 dash
+8412 cook
+8411 consular
+8410 component
+8409 community-backed
+8408 communist
+8407 coal
+8406 circulating
+8405 chemical
+8404 chapters
+8403 residues
+8402 broad-based
+8401 boat
+8400 sludge
+8399 remodelled
+8398 theoretical
+8397 torn
+8396 fired
+8395 banished
+8394 assailed
+8393 hampered
+8392 anti-semitic
+8391 xenophobia
+8390 fax
+8389 algeria
+8388 finland
+8387 alabama
+8386 aeroplanes
+8385 administratively
+8384 accomplices
+8383 accommodating
+8382 brave
+8381 abduction
+8380 a2
+8379 extract
+8378 quarter
+8377 insidious
+8376 mile
+8375 foodstuff
+8374 deadly
+8373 ceasefire
+8372 17
+8371 12
+8370 intolerably
+8369 multicultural
+8368 insubstantial
+8367 drowned
+8366 presential
+8365 diplomats
+8364 wound
+8363 usage
+8362 unquestionable
+8361 triggering
+8360 totalled
+8359 tender
+8358 sörensen
+8357 knuckles
+8356 billions
+8355 annex
+8354 unilateral
+8353 tolerance
+8352 sp
+8351 referral
+8350 pre-election
+8349 pornographic
+8348 pupil
+8347 taxing
+8346 montreal
+8345 masters
+8344 looms
+8343 incredibly
+8342 incredible
+8341 pristina
+8340 forecourt
+8339 colony
+8338 asia
+8337 south-east
+8336 historically
+8335 sunk
+8334 nursing
+8333 eta
+8332 ears
+8331 disclosed
+8330 commercially
+8329 by-product
+8328 bread
+8327 proportional
+8326 autumn
+8325 shilly-shallying
+8324 retired
+8323 tense
+8322 anchored
+8321 alerts
+8320 virus
+8319 water-borne
+8318 cohesive
+8317 hugely
+8316 case-by-case
+8315 roughly
+8314 proves
+8313 protective
+8312 passive
+8311 babies
+8310 uniting
+8309 genius
+8308 slap
+8307 planes
+8306 rotate
+8305 overtime
+8304 massachusetts
+8303 maintains
+8302 jeopardises
+8301 specialist
+8300 gladly
+8299 encroached
+8298 decent
+8297 assert
+8296 springs
+8295 jackson
+8294 injuries
+8293 watched
+8292 refute
+8291 ran
+8290 principally
+8289 heartily
+8288 curious
+8287 foregoing
+8286 fisherman
+8285 farmer
+8284 enlighten
+8283 cradle
+8282 complimenting
+8281 buitenweg
+8280 skeletons
+8279 corresponds
+8278 continental
+8277 fortnight
+8276 32
+8275 businesspeople
+8274 swimming
+8273 alternatively
+8272 transcend
+8271 fold
+8270 130
+8269 eradicate
+8268 terribly
+8267 inland
+8266 hat
+8265 fobbed
+8264 executing
+8263 unison
+8262 ngl
+8261 mediate
+8260 herr
+8259 grilled
+8258 timor
+8257 blundered
+8256 remarked
+8255 qurie
+8254 ahmed
+8253 ala
+8252 exaggerate
+8251 draftsman
+8250 .-
+8249 torturers
+8248 statutes
+8247 rooted
+8246 reigned
+8245 spin
+8244 pollute
+8243 tb
+8242 randzio-plath
+8241 martinez
+8240 strides
+8239 israeli
+8238 unevenly
+8237 empowered
+8236 inhumane
+8235 hotel-and-restaurant
+8234 sons
+8233 helm
+8232 ruined
+8231 noises
+8230 occupied
+8229 depressed
+8228 mobilised
+8227 inserted
+8226 handicapped
+8225 sympathetic
+8224 exceeded
+8223 dominated
+8222 blown
+8221 voiced
+8220 re-established
+8219 hinted
+8218 gutiérrez-cortines
+8217 rein
+8216 eel
+8215 echoed
+8214 duisenberg
+8213 rigorously
+8212 forgot
+8211 chose
+8210 boom
+8209 curve
+8208 squarely
+8207 aroused
+8206 april
+8205 antiracism
+8204 nafta
+8203 progressed
+8202 abreast
+8201 aptly
+8200 chirac
+8199 downstream
+8198 lung
+8197 larrea
+8196 importing
+8195 india
+8194 graco
+8193 initialled
+8192 voggenhuber
+8191 wartime
+8190 provoked
+8189 pronk
+8188 voluntarily
+8187 underlined
+8186 ravaged
+8185 invented
+8184 collectively
+8183 nominal
+8182 carcinogenic
+8181 impressively
+8180 speeded
+8179 drove
+8178 directions
+8177 declined
+8176 dating
+8175 cabinet
+8174 bothered
+8173 avail
+8172 prudent
+8171 enlarging
+8170 anguish
+8169 unambiguous
+8168 ôhe
+8167 empty-handed
+8166 e-business
+8165 servants
+8164 pressed
+8163 subjecting
+8162 cruel
+8161 awful
+8160 holzmann
+8159 shut
+8158 resolutely
+8157 loudly
+8156 tilling
+8155 softer
+8154 satisfies
+8153 reopen
+8152 emitted
+8151 basing
+8150 aggressively
+8149 diluted
+8148 prosecute
+8147 spy
+8146 outright
+8145 meted
+8144 dominating
+8143 contravening
+8142 wretched
+8141 breakaway
+8140 breached
+8139 separatism
+8138 intransigent
+8137 infringing
+8136 appearing
+8135 anti
+8134 oppositions
+8133 directing
+8132 challenged
+8131 penalising
+8130 bargain
+8129 witch
+8128 protesting
+8127 infringes
+8126 resisting
+8125 militias
+8124 combats
+8123 persecuting
+8122 tone
+8121 slobodan
+8120 fewer
+8119 proportions
+8118 grudgingly
+8117 ensue
+8116 abusing
+8115 foretaste
+8114 litany
+8113 bare
+8112 1896
+8111 end-of-life
+8110 legitimise
+8109 waiving
+8108 bolster
+8107 468
+8106 tiresome
+8105 wide-ranging
+8104 terrorise
+8103 suitably
+8102 struggles
+8101 seal
+8100 divert
+8099 pretend
+8098 pool
+8097 passionately
+8096 concentrations
+8095 ornament
+8094 capitalism
+8093 misgivings
+8092 marching
+8091 undesirable
+8090 intercede
+8089 defeating
+8088 ilia
+8087 heartfelt
+8086 grain
+8085 ministry
+8084 petrol
+8083 on-farm
+8082 long-fibre
+8081 echoing
+8080 coincineration
+8079 ex
+8078 endangering
+8077 en
+8076 defender
+8075 dared
+8074 convenient
+8073 colours
+8072 co-development
+8071 beware
+8070 beaten
+8069 simplified
+8068 harshly
+8067 attractive
+8066 attaches
+8065 civilised
+8064 staying
+8063 passionate
+8062 deductions
+8061 ante
+8060 smooth
+8059 altar
+8058 advantageous
+8057 gnp
+8056 accountable
+8055 absent
+8054 landmark
+8053 carcinogen
+8052 canteen
+8051 127
+8050 outlook
+8049 boundary
+8048 decolonise
+8047 steady
+8046 interceptions
+8045 intervened
+8044 instrumental
+8043 insight
+8042 impracticable
+8041 holy
+8040 philosophies
+8039 expires
+8038 downgraded
+8037 deems
+8036 costing
+8035 categorically
+8034 blamed
+8033 eligible
+8032 barred
+8031 augur
+8030 arrival
+8029 devoting
+8028 five-year
+8027 enhancing
+8026 bolstering
+8025 latitude
+8024 keenness
+8023 break-up
+8022 provoking
+8021 terrorised
+8020 usd
+8019 employs
+8018 bef
+8017 anchovy
+8016 disgusted
+8015 stockpiles
+8014 striving
+8013 tread
+8012 joke
+8011 fyrom
+8010 replacement
+8009 misconceived
+8008 forecast
+8007 clashes
+8006 surprising
+8005 rewording
+8004 settlements
+8003 hoist
+8002 saboteur
+8001 tackles
+8000 relay
+7999 fatal
+7998 multiply
+7997 poettering
+7996 motive
+7995 mediation
+7994 tenth
+7993 anonymity
+7992 mid-term
+7991 termed
+7990 plundered
+7989 arrives
+7988 apologise
+7987 hooliganism
+7986 behaved
+7985 fuss
+7984 disorientation
+7983 deepest
+7982 confessed
+7981 compounds
+7980 communists
+7979 blocking
+7978 seven
+7977 argues
+7976 struggling
+7975 draining
+7974 announce
+7973 192
+7972 dance
+7971 reminds
+7970 insensitive
+7969 marseilles
+7968 eaten
+7967 wherewithal
+7966 reimbursements
+7965 assign
+7964 reminding
+7963 recollection
+7962 liaison
+7961 -cannot
+7960 mobilisation
+7959 containers
+7958 acceded
+7957 embryos
+7956 transformation
+7955 forging
+7954 develops
+7953 aggravated
+7952 finalising
+7951 proder
+7950 advances
+7949 colonial
+7948 stipulation
+7947 regretting
+7946 posted
+7945 koreans
+7944 dedicating
+7943 unaware
+7942 woke
+7941 traditionally
+7940 optimisation
+7939 selective
+7938 neighbourhood
+7937 rationalised
+7936 internal-market
+7935 disclosure
+7934 convicted
+7933 constituting
+7932 square
+7931 authentic
+7930 insecure
+7929 salutary
+7928 knowledge-based
+7927 whiter
+7926 unabating
+7925 umpteenth
+7924 complexes
+7923 testimony
+7922 suppressing
+7921 wisely
+7920 rewarding
+7919 perplexed
+7918 authors
+7917 much-needed
+7916 lawfully
+7915 registry
+7914 judgment
+7913 homework
+7912 visions
+7911 heightened
+7910 fours
+7909 exceeds
+7908 exceeding
+7907 epidemiological
+7906 ensued
+7905 enrich
+7904 engendering
+7903 disintegrated
+7902 defer
+7901 commence
+7900 attacking
+7899 influx
+7898 uniformity
+7897 congratulations
+7896 fiercely
+7895 cable
+7894 1986
+7893 -absolutely
+7892 youngsters
+7891 otc
+7890 neutre
+7889 knocking
+7888 high-added-value
+7887 fostered
+7886 describing
+7885 derivative
+7884 dampening
+7883 complexities
+7882 spawning
+7881 persist
+7880 totalitarian
+7879 priest
+7878 syrian
+7877 sponsored
+7876 magistrate
+7875 catholic
+7874 roman
+7873 newspaper
+7872 drunken
+7871 voorbeeld
+7870 emphatic
+7869 tickets
+7868 sunshine
+7867 sand
+7866 imminent
+7865 enviable
+7864 enlargements
+7863 terminology
+7862 squandering
+7861 semblance
+7860 repeating
+7859 realities
+7858 overwhelming
+7857 necessitate
+7856 misses
+7855 magnificent
+7854 lengthened
+7853 instigate
+7852 recruit
+7851 exported
+7850 examining
+7849 envisages
+7848 emit
+7847 embracing
+7846 dialysis
+7845 apartheid
+7844 creme
+7843 contracted
+7842 complemented
+7841 colloquially
+7840 chaos
+7839 campuses
+7838 campaigned
+7837 broker
+7836 distanced
+7835 transnational
+7834 insults
+7833 hour
+7832 extraordinarily
+7831 consultancy
+7830 ep
+7829 reflex
+7828 automatic
+7827 aggressive
+7826 indispensable
+7825 repressive
+7824 trialogue
+7823 page
+7822 signal
+7821 civic
+7820 meagre
+7819 drama
+7818 upturn
+7817 database
+7816 biased
+7815 c
+7814 summarises
+7813 mounted
+7812 citizenship
+7811 varies
+7810 tyres
+7809 transmit
+7808 showed
+7807 rediscover
+7806 recreate
+7805 proclaims
+7804 prejudiced
+7803 praising
+7802 posing
+7801 parody
+7800 minus
+7799 invaded
+7798 intrinsic
+7797 frozen
+7796 engines
+7795 eco-label
+7794 monstrous
+7793 duplicating
+7792 drank
+7791 deteriorate
+7790 demagogic
+7789 comparison
+7788 clinton
+7787 borrow
+7786 benefited
+7785 pains
+7784 secures
+7783 unusually
+7782 airline
+7781 st
+7780 abeyance
+7779 exchanging
+7778 punishable
+7777 parallel
+7776 longer-term
+7775 indicator
+7774 resistant
+7773 functional
+7772 diverse
+7771 community-level
+7770 rhetorical
+7769 cellulose
+7768 well-maintained
+7767 perpetrator
+7766 victory
+7765 utilised
+7764 bugging
+7763 recital
+7762 deficiency
+7761 afsj
+7760 sweeping
+7759 relinquish
+7758 reacted
+7757 paradigm
+7756 dossier
+7755 parliamentarians
+7754 28
+7753 16
+7752 yesterday
+7751 wondered
+7750 withdrew
+7749 wildlife
+7748 defeated
+7747 burnt
+7746 fell
+7745 culminated
+7744 authorises
+7743 offload
+7742 harmoniously
+7741 transcends
+7740 visits
+7739 visitor
+7738 visited
+7737 unreservedly
+7736 underlies
+7735 underestimating
+7734 underestimate
+7733 tying
+7732 tuned
+7731 transposing
+7730 toughened
+7729 tongues
+7728 offence
+7727 exerted
+7726 merger
+7725 widest
+7724 wheel
+7723 description
+7722 take-up
+7721 weakest
+7720 venezuelan
+7719 upheavals
+7718 unscrupulous
+7717 unaccountable
+7716 trap
+7715 translations
+7714 throes
+7713 distinctions
+7712 subtle
+7711 subjective
+7710 underpinning
+7709 shortest
+7708 reads
+7707 scourge
+7706 rigid
+7705 mix
+7704 refinery
+7703 rank
+7702 radioactivity
+7701 proviso
+7700 primrose
+7699 preamble
+7698 pockets
+7697 overriding
+7696 miss
+7695 severe
+7694 mortgage
+7693 meda
+7692 lump
+7691 lesson
+7690 less-favoured
+7689 kurdish
+7688 intermediate
+7687 indexes
+7686 inadequacies
+7685 delegated
+7684 ilo
+7683 hoops
+7682 mathematics
+7681 flagrant
+7680 correction
+7679 fifa
+7678 tailor-made
+7677 euro-11
+7676 ethiopian
+7675 eradication
+7674 eldr
+7673 diversification
+7672 discriminated
+7671 delight
+7670 defenders
+7669 danish
+7668 czech
+7667 cornerstones
+7666 drafts
+7665 clutches
+7664 embryonic
+7663 cheek
+7662 cardiff
+7661 canadian
+7660 bureaucratic
+7659 spongiform
+7658 backers
+7657 authenticity
+7656 appetite
+7655 holdings
+7654 agent
+7653 advancement
+7652 additive
+7651 14
+7650 disseminate
+7649 tension
+7648 tastes
+7647 measurement
+7646 strengthens
+7645 stifling
+7644 sri
+7643 speeding
+7642 speculative
+7641 somehow
+7640 impaired
+7639 small-
+7638 slaughter
+7637 shorten
+7636 ship-generated
+7635 shellfish
+7634 littered
+7633 scrs
+7632 screen
+7631 schulz
+7630 saluting
+7629 sailing
+7628 old-age
+7627 rob
+7626 retaliation
+7625 resumed
+7624 renders
+7623 removal
+7622 reintroduce
+7621 recommend
+7620 re-establishing
+7619 raison
+7618 unexpectedly
+7617 questioning
+7616 questioned
+7615 prudential
+7614 provokes
+7613 protects
+7612 replanting
+7611 sportspeople
+7610 unwanted
+7609 prioritising
+7608 presupposes
+7607 presumably
+7606 predict
+7605 ponder
+7604 groundwater
+7603 policy-makers
+7602 persuading
+7601 perpetuate
+7600 paves
+7599 oversteps
+7598 overlooks
+7597 overcoming
+7596 overburden
+7595 out-of-date
+7594 consciences
+7593 petition
+7592 void
+7591 omit
+7590 struggle
+7589 privileges
+7588 selection
+7587 composition
+7586 paramilitary
+7585 cash
+7584 observing
+7583 obscure
+7582 notorious
+7581 upgrade
+7580 ms
+7579 sovereignty-sensitive
+7578 modify
+7577 misinterpretation
+7576 milestones
+7575 market-related
+7574 contractual
+7573 lowering
+7572 lips
+7571 buck
+7570 leftovers
+7569 left-wingers
+7568 learnt
+7567 treats
+7566 sounded
+7565 expedient
+7564 utterly
+7563 monument
+7562 iranian
+7561 intimidation
+7560 initially
+7559 streets
+7558 rises
+7557 supervising
+7556 re-establish
+7555 listing
+7554 illustrated
+7553 mode
+7552 pacts
+7551 hypocritically
+7550 hunters
+7549 hostile
+7548 heeding
+7547 heed
+7546 yawning
+7545 transpired
+7544 programmed
+7543 harmonising
+7542 hammer
+7541 sacking
+7540 grasped
+7539 grasp
+7538 aforementioned
+7537 grants
+7536 wholehearted
+7535 strip
+7534 fulfilling
+7533 gyllenhammar
+7532 repetition
+7531 influencing
+7530 fixing
+7529 vacancies
+7528 fiasco
+7527 feeding
+7526 fats
+7525 familiarise
+7524 extrajudicial
+7523 extraction
+7522 expose
+7521 exercises
+7520 esteem
+7519 enters
+7518 engendered
+7517 misery
+7516 coexistence
+7515 embraces
+7514 educate
+7513 ecosystem
+7512 drowning
+7511 downfall
+7510 doubts
+7509 dominates
+7508 interfere
+7507 distribute
+7506 distorted
+7505 displaying
+7504 disparities
+7503 discrepancies
+7502 discovery
+7501 digital
+7500 devise
+7499 verify
+7498 departure
+7497 denied
+7496 deletion
+7495 deeply
+7494 deeper
+7493 declares
+7492 mudflats
+7491 criminalise
+7490 taxpayers
+7489 corruption
+7488 correspondence
+7487 contracting
+7486 confirmation
+7485 confines
+7484 travelling
+7483 confidential
+7482 interior
+7481 48
+7480 comitology
+7479 coincide
+7478 reassert
+7477 hesitate
+7476 childcare
+7475 checking
+7474 cheating
+7473 separating
+7472 chasm
+7471 characteristic
+7470 chains
+7469 categorising
+7468 affordable
+7467 utilise
+7466 rigidities
+7465 collapse
+7464 eclipsed
+7463 bore
+7462 blueprint
+7461 blaming
+7460 shadow
+7459 diverted
+7458 beforehand
+7457 befits
+7456 beer
+7455 pardoned
+7454 instability
+7453 bogged
+7452 fifty
+7451 authoritative
+7450 attribute
+7449 atrocities
+7448 rolled
+7447 misappropriation
+7446 conquer
+7445 flames
+7444 fanning
+7443 launder
+7442 turnaround
+7441 apprehended
+7440 appreciated
+7439 successor
+7438 appointing
+7437 wye
+7436 ultra-liberal
+7435 circles
+7434 allay
+7433 honouring
+7432 alerted
+7431 payable
+7430 matters.despite
+7429 aggravate
+7428 affront
+7427 commits
+7426 blows
+7425 installation
+7424 abolishing
+7423 albania
+7422 symptom
+7421 beat
+7420 shortage
+7419 purchase
+7418 mobilising
+7417 casting
+7416 clash
+7415 catalyst
+7414 breakdown
+7413 brake
+7412 suffers
+7411 stances
+7410 pulses
+7409 dried
+7408 differentiate
+7407 gulf
+7406 michelin
+7405 intervening
+7404 ecip
+7403 papayannakis
+7402 legalised
+7401 forgive
+7400 winding
+7399 citing
+7398 assent
+7397 sister
+7396 twin
+7395 être
+7394 allowances
+7393 sizes
+7392 democratisation
+7391 exercised
+7390 appropriateness
+7389 inspecting
+7388 furtherance
+7387 enhancement
+7386 two-thirds
+7385 merge
+7384 permitting
+7383 complying
+7382 portion
+7381 diamonds
+7380 tandem
+7379 shamelessly
+7378 redundant
+7377 doctors
+7376 derives
+7375 petitions
+7374 violate
+7373 periphery
+7372 neglecting
+7371 male
+7370 perceived
+7369 assimilation
+7368 deregulations
+7367 characteristics
+7366 bowdlerised
+7365 wedded
+7364 adheres
+7363 perception
+7362 withhold
+7361 fostering
+7360 skewed
+7359 westminster
+7358 vocabulary
+7357 violates
+7356 veritable
+7355 verbatim
+7354 upgraded
+7353 unpleasant
+7352 underpin
+7351 unbalanced
+7350 registering
+7349 transformed
+7348 tones
+7347 necessitates
+7346 gradual
+7345 differing
+7344 occupation
+7343 vanguard
+7342 validity
+7341 totality
+7340 telecom
+7339 stepped
+7338 slightest
+7337 sahrawi
+7336 repeal
+7335 violation
+7334 raids
+7333 assertive
+7332 publication
+7331 almería
+7330 province
+7329 prevalence
+7328 possibilities
+7327 departments
+7326 pioneers
+7325 fourteen
+7324 replies
+7323 mox
+7322 favoured
+7321 mortal
+7320 moluccan
+7319 moderate
+7318 manpower
+7317 manifesto
+7316 magnitude
+7315 maastricht
+7314 logistics
+7313 italian
+7312 interception
+7311 incompatibility
+7310 inauguration
+7309 improper
+7308 iceberg
+7307 harmonious
+7306 division
+7305 legislated
+7304 expelled
+7303 outbreak
+7302 edd
+7301 dutch
+7300 dubious
+7299 dreadful
+7298 drawing-up
+7297 doctrine
+7296 divergent
+7295 dissemination
+7294 dioxins
+7293 depletion
+7292 crushing
+7291 wolf
+7290 continuous
+7289 tied
+7288 clubs
+7287 clouds
+7286 seasons
+7285 centralisation
+7284 birthplace
+7283 betterment
+7282 balances
+7281 atmospheric
+7280 annexed
+7279 alleged
+7278 determining
+7277 adapting
+7276 ages
+7275 addictive
+7274 acquisition
+7273 abolition
+7272 1980
+7271 suppression
+7270 supplementary
+7269 stimulating
+7268 staunchly
+7267 sorting
+7266 siting
+7265 simplification
+7264 simpler
+7263 short-term
+7262 shaped
+7261 set-aside
+7260 selling
+7259 self-same
+7258 select
+7257 scandal
+7256 teckomatorp
+7255 sates
+7254 satellites
+7253 rewards
+7252 reviewing
+7251 reversal
+7250 restoration
+7249 relieve
+7248 releases
+7247 relaunching
+7246 reinforces
+7245 redistribution
+7244 redefine
+7243 reaffirming
+7242 rap
+7241 smes
+7240 proliferation
+7239 proclaim
+7238 swelling
+7237 prepares
+7236 practicalities
+7235 realisation
+7234 persuasion
+7233 panel
+7232 transpose
+7231 opposes
+7230 opponents
+7229 unifying
+7228 variables
+7227 uen
+7226 strengths
+7225 radiation
+7224 non-violent
+7223 lights
+7222 criticisms
+7221 go-ahead
+7220 feasibility
+7219 eib
+7218 sweet
+7217 cologne
+7216 bay
+7215 aquatic
+7214 pictures
+7213 stakeholders
+7212 slowing
+7211 rubbish
+7210 regaining
+7209 postage
+7208 polluting
+7207 overdue
+7206 high-speed
+7205 transforms
+7204 judging
+7203 fires
+7202 inequality
+7201 horizontal
+7200 landings
+7199 fleets
+7198 fitting
+7197 fanatical
+7196 embargo
+7195 discerning
+7194 supplements
+7193 dietary
+7192 competences
+7191 chinese
+7190 salaries
+7189 vacuum
+7188 supporter
+7187 objection
+7186 november
+7185 sustainability
+7184 motorways
+7183 millions
+7182 paramount
+7181 malta
+7180 alpine
+7179 plethora
+7178 lorry
+7177 corporations
+7176 launching
+7175 motivation
+7174 rocks
+7173 iron
+7172 intensification
+7171 intensify
+7170 units
+7169 inflexibility
+7168 incumbent
+7167 strictness
+7166 soviet
+7165 radioactive
+7164 impressive
+7163 dprk
+7162 ecofin
+7161 height
+7160 guardian
+7159 governability
+7158 retail
+7157 fragmentation
+7156 italia
+7155 forza
+7154 forwarded
+7153 sanctioned
+7152 professionally
+7151 focal
+7150 filling
+7149 fed
+7148 exercising
+7147 russians
+7146 evans
+7145 entrusted
+7144 portability
+7143 start-up
+7142 enlist
+7141 enlightened
+7140 elite
+7139 doubling
+7138 dirty
+7137 differentials
+7136 pledges
+7135 vengeance
+7134 derogate
+7133 der
+7132 deploy
+7131 department
+7130 denouncing
+7129 deficient
+7128 dedication
+7127 stakes
+7126 room
+7125 d
+7124 edge
+7123 offending
+7122 crossing
+7121 rotation
+7120 crippling
+7119 crack
+7118 courageous
+7117 county
+7116 counsel
+7115 electrical
+7114 contradicted
+7113 constraint
+7112 constituent
+7111 consciousness
+7110 concomitant
+7109 compliment
+7108 qualification
+7107 completing
+7106 compiling
+7105 inventories
+7104 compile
+7103 combines
+7102 collected
+7101 coasts
+7100 collaborating
+7099 euro-zone
+7098 chances
+7097 cent
+7096 ppe
+7095 luxury
+7094 greed
+7093 reversing
+7092 colombia
+7091 resorting
+7090 congratulating
+7089 timetable
+7088 bones
+7087 underground
+7086 budgeted
+7085 worthily
+7084 hijacked
+7083 screening
+7082 solved
+7081 banish
+7080 backward
+7079 burg
+7078 avraham
+7077 colonies
+7076 natives
+7075 audience
+7074 attractiveness
+7073 rounded
+7072 informing
+7071 tragically
+7070 discharged
+7069 approximately
+7068 approximate
+7067 anonymous
+7066 pyrenees
+7065 explanations
+7064 maintenance
+7063 monster
+7062 over-regulated
+7061 asian
+7060 ambient
+7059 ambassadors
+7058 amateur
+7057 altering
+7056 facilitated
+7055 termination
+7054 ever-greater
+7053 remiss
+7052 alive
+7051 aggregate
+7050 advent
+7049 admired
+7048 serving
+7047 cardinal
+7046 academy
+7045 abundance
+7044 warm
+7043 commensurate
+7042 slight
+7041 shetland
+7040 perverse
+7039 mockery
+7038 lucid
+7037 2500
+7036 fruitful
+7035 directory
+7034 duplication
+7033 dilemma
+7032 shield
+7031 christian-democrat
+7030 miles
+7029 88
+7028 25
+7027 1997
+7026 casualties
+7025 over-simplified
+7024 shares
+7023 formerly
+7022 indicators
+7021 vaunted
+7020 manifestly
+7019 precursor
+7018 instigated
+7017 formulation
+7016 goodwill
+7015 globe
+7014 ­
+7013 guinea
+7012 coalition
+7011 incompetence
+7010 entry
+7009 openness
+7008 persistently
+7007 whenever
+7006 unavoidable
+7005 trials
+7004 trainees
+7003 systematic
+7002 sanction
+7001 paralleled
+7000 lacked
+6999 hopeful
+6998 frightened
+6997 feed-in
+6996 dispose
+6995 discovers
+6994 derivatives
+6993 relatives
+6992 breaching
+6991 intercepted
+6990 basin
+6989 aided
+6988 warrants
+6987 headquarters
+6986 intermediaries
+6985 grips
+6984 abolish
+6983 merging
+6982 announcement
+6981 fabric
+6980 sample
+6979 unspoken
+6978 assumptions
+6977 translation
+6976 streamlining
+6975 seekers
+6974 slump
+6973 prevailed
+6972 pulp
+6971 kilogram
+6970 prerequisites
+6969 ports
+6968 policy-making
+6967 operator
+6966 odds
+6965 bombers
+6964 new-born
+6963 landing
+6962 instinct
+6961 hypocrisy
+6960 hegemony
+6959 hazards
+6958 fence
+6957 explanatory
+6956 cart
+6955 weakened
+6954 prerequisite
+6953 epidemic
+6952 emergence
+6951 electorate
+6950 listed
+6949 files
+6948 class
+6947 cites
+6946 newcomers
+6945 acceding
+6944 gremlins
+6943 summon
+6942 subsidise
+6941 streamline
+6940 skies
+6939 separately
+6938 advice
+6937 sampling
+6936 sabotaging
+6935 edition
+6934 somport-pau-canfranc-jaca
+6933 surface
+6932 reproached
+6931 relaunch
+6930 traditional
+6929 regulators
+6928 recommends
+6927 re-use
+6926 re-submitted
+6925 pulled
+6924 pronounce
+6923 tropical
+6922 predicted
+6921 pluck
+6920 phenomenal
+6919 perpetrated
+6918 pave
+6917 overcrowded
+6916 intermediary
+6915 signals
+6914 eurodac
+6913 percentages
+6912 careers
+6911 occupying
+6910 obey
+6909 targeting
+6908 messrs
+6907 marxists
+6906 sittings
+6905 leap
+6904 jeopardise
+6903 appoint
+6902 interpret
+6901 shutting
+6900 impacting
+6899 hurt
+6898 horrified
+6897 heralded
+6896 heeded
+6895 anticipated
+6894 hamper
+6893 mileage
+6892 gaining
+6891 fronts
+6890 confederal
+6889 lion
+6888 father
+6887 credits
+6886 exploited
+6885 exonerate
+6884 executed
+6883 exacerbate
+6882 evolution
+6881 eu-africa
+6880 equated
+6879 liquidation
+6878 empower
+6877 sponsorship
+6876 districts
+6875 distort
+6874 detract
+6873 sufferings
+6872 depressing
+6871 den
+6870 demonising
+6869 deduce
+6868 gratitude
+6867 curricula
+6866 crewing
+6865 richer
+6864 justifies
+6863 contravenes
+6862 continuity
+6861 contacted
+6860 constructing
+6859 distract
+6858 cleared
+6857 circulated
+6856 cinema
+6855 cigarette
+6854 changeover
+6853 themes
+6852 casaca
+6851 shaking
+6850 bridge
+6849 drops
+6848 overtaken
+6847 navigation
+6846 athens
+6845 student
+6844 arrest
+6843 arrears
+6842 dual
+6841 chairing
+6840 approving
+6839 erosion
+6838 softened
+6837 bury
+6836 fairly
+6835 exporting
+6834 administrator
+6833 adaptation
+6832 vis-à-vis
+6831 accords
+6830 pre-accession
+6829 accommodate
+6828 accepts
+6827 abattoirs
+6826 transatlantic
+6825 employer
+6824 medium-
+6823 appealed
+6822 lets
+6821 increases
+6820 fluctuations
+6819 wallet
+6818 veterinary
+6817 box
+6816 paraguayan
+6815 waging
+6814 intergroup
+6813 democracies
+6812 exceptions
+6811 qualified
+6810 formulating
+6809 deployment
+6808 uniformly
+6807 copying
+6806 golden
+6805 culminate
+6804 explosion
+6803 probable
+6802 monies
+6801 mislaying
+6800 shouting
+6799 inducing
+6798 hemicycle
+6797 patenting
+6796 lending
+6795 eradicating
+6794 emerges
+6793 disappointing
+6792 concede
+6791 mortality
+6790 ecological
+6789 believed
+6788 electronically
+6787 defending
+6786 affirming
+6785 affirmation
+6784 abundantly
+6783 illustration
+6782 congestion
+6781 rightfully
+6780 obliging
+6779 film
+6778 inappropriate
+6777 diminishing
+6776 conveyed
+6775 barrier
+6774 imitation
+6773 modification
+6772 fairness
+6771 documented
+6770 abundant
+6769 reformulation
+6768 pertinent
+6767 appointment
+6766 stable
+6765 durable
+6764 neighbour
+6763 precedence
+6762 ineffective
+6761 integrates
+6760 consisted
+6759 tables
+6758 viout
+6757 veil
+6756 ur
+6755 upsetting
+6754 unlimited
+6753 mislead
+6752 ultimate
+6751 trigger
+6750 entail
+6749 raises
+6748 orally
+6747 slaves
+6746 bilateral
+6745 tune
+6744 tripartite
+6743 collector
+6742 symbol
+6741 vitorino
+6740 remark
+6739 recurrence
+6738 rationale
+6737 quest
+6736 prevailing
+6735 premature
+6734 poster
+6733 layoffs
+6732 moon
+6731 manoeuvres
+6730 limitations
+6729 leonardo
+6728 interreg
+6727 dutroux
+6726 infamous
+6725 horse
+6724 grid
+6723 fourth
+6722 fora
+6721 endeavours
+6720 deportations
+6719 circus
+6718 carter
+6717 attainable
+6716 ancient
+6715 abusive
+6714 obstruct
+6713 unexpected
+6712 tensions
+6711 invisible
+6710 survive
+6709 summed
+6708 stayed
+6707 spared
+6706 seminar
+6705 ruin
+6704 robert
+6703 risking
+6702 reiterates
+6701 reconcile
+6700 re-examine
+6699 disrespectful
+6698 praises
+6697 postponed
+6696 overloaded
+6695 outlines
+6694 undertakes
+6693 score
+6692 grapevine
+6691 oh
+6690 quickest
+6689 poorest
+6688 statesmen
+6687 chapter
+6686 terminating
+6685 reinforcing
+6684 partial
+6683 nub
+6682 non-signatory
+6681 nobody
+6680 motto
+6679 licensing
+6678 unrestrained
+6677 marginalised
+6676 stud
+6675 magnified
+6674 loyalty
+6673 colour
+6672 extracted
+6671 loan
+6670 restate
+6669 legitimacy
+6668 verdict
+6667 nonsense
+6666 disappointment
+6665 inclusive
+6664 invoke
+6663 interprets
+6662 interaction
+6661 penalty
+6660 periodic
+6659 characterised
+6658 woken
+6657 graze
+6656 forbids
+6655 fix
+6654 farmland
+6653 sincerity
+6652 engineering
+6651 conception
+6650 doping
+6649 washing
+6648 disrupted
+6647 disguise
+6646 dint
+6645 destroying
+6644 designated
+6643 contradiction
+6642 condemning
+6641 compound
+6640 codecision
+6639 impressed
+6638 cabin
+6637 tinkering
+6636 discourteous
+6635 buddhist
+6634 blessed
+6633 bemoan
+6632 belt-and-braces
+6631 legislating
+6630 base-level
+6629 await
+6628 glance
+6627 analysed
+6626 combining
+6625 financed
+6624 stretch
+6623 u.s.
+6622 outlet
+6621 invasion
+6620 sticks
+6619 alters
+6618 depends
+6617 performances
+6616 peak
+6615 accumulated
+6614 unified
+6613 slogan
+6612 violating
+6611 renewal
+6610 reign
+6609 profoundly
+6608 breeding
+6607 multiannual
+6606 bosnia
+6605 benchmarking
+6604 theme
+6603 afflicted
+6602 appropriation
+6601 asserting
+6600 breadth
+6599 monoxide
+6598 goodbye
+6597 conceivably
+6596 steer
+6595 iv
+6594 husband
+6593 debatable
+6592 conferred
+6591 petersberg
+6590 completion
+6589 bitterly
+6588 align
+6587 bids
+6586 eur
+6585 candid
+6584 extends
+6583 reconstruct
+6582 piedmont
+6581 pattern
+6580 obsessions
+6579 yard
+6578 extrapolated
+6577 discharging
+6576 abide
+6575 revitalise
+6574 interference
+6573 condemns
+6572 roundly
+6571 resides
+6570 predominant
+6569 prohibitions
+6568 codes
+6567 hang
+6566 digging
+6565 detect
+6564 contradictory
+6563 information-rich
+6562 practised
+6561 abstained
+6560 certificates
+6559 paradox
+6558 aspirations
+6557 utilising
+6556 upholding
+6555 specifying
+6554 proceeded
+6553 permanently
+6552 sacrificing
+6551 marking
+6550 incoherence
+6549 evaluating
+6548 nationalities
+6547 stealing
+6546 bypass
+6545 attaining
+6544 gases
+6543 inflammable
+6542 aforesaid
+6541 faithfully
+6540 bend
+6539 rejection
+6538 dangers
+6537 poses
+6536 ladino
+6535 brittany
+6534 eroded
+6533 e-11
+6532 caution
+6531 non-availability
+6530 restarted
+6529 micro-manage
+6528 memory
+6527 christian-democrats
+6526 recover
+6525 music
+6524 prey
+6523 switzerland
+6522 italians
+6521 indigenous
+6520 well-being
+6519 broadest
+6518 africans
+6517 leone
+6516 sierra
+6515 disturbing
+6514 naturally
+6513 uneasy
+6512 unrelated
+6511 rouses
+6510 radically
+6509 unfounded
+6508 desperate
+6507 imitated
+6506 adhered
+6505 wherein
+6504 branding
+6503 decides
+6502 subsidised
+6501 sterilising
+6500 noticing
+6499 long-standing
+6498 foreseen
+6497 endorses
+6496 depart
+6495 denounced
+6494 communautarised
+6493 arbitrary
+6492 voicing
+6491 renowned
+6490 justly
+6489 embodied
+6488 demonstrating
+6487 hammering
+6486 arouse
+6485 envelope
+6484 aiding
+6483 arbitration
+6482 welcomes
+6481 welcoming
+6480 greet
+6479 announcing
+6478 desires
+6477 proximity
+6476 cessation
+6475 regretted
+6474 lament
+6473 vile
+6472 salient
+6471 radicalisation
+6470 moratoria
+6469 manifestation
+6468 immensely
+6467 sincere
+6466 convey
+6465 uncomfortable
+6464 expresses
+6463 ceased
+6462 fits
+6461 waiver
+6460 valleys
+6459 urged
+6458 unique
+6457 unhappy
+6456 underpins
+6455 trip
+6454 trail
+6453 traceable
+6452 sweden
+6451 revealing
+6450 shoulder
+6449 demographic
+6448 descending
+6447 clearing
+6446 capture
+6445 reunited
+6444 oral
+6443 tiny
+6442 tailor
+6441 suddenly
+6440 substantiate
+6439 stems
+6438 spa
+6437 teach
+6436 seize
+6435 rock
+6434 risen
+6433 rests
+6432 residing
+6431 republicans
+6430 replying
+6429 renounces
+6428 reluctant
+6427 relegated
+6426 reacting
+6425 ratio
+6424 random
+6423 provoke
+6422 pouring
+6421 3.45
+6420 dem
+6419 phasing
+6418 passenger
+6417 establishments
+6416 eco-system
+6415 boosting
+6414 sarajevo
+6413 coercion
+6412 undergo
+6411 objectively
+6410 murdered
+6409 morally
+6408 morality
+6407 milosevic
+6406 mentions
+6405 dismiss
+6404 matched
+6403 massacres
+6402 mail
+6401 lodged
+6400 reopened
+6399 legacy
+6398 lazarati
+6397 lasted
+6396 landed
+6395 responds
+6394 interview
+6393 unite
+6392 ministerial
+6391 influenced
+6390 indulge
+6389 indefinitely
+6388 temperature
+6387 stone
+6386 severely
+6385 euros
+6384 homeless
+6383 adopts
+6382 hereby
+6381 th-e
+6380 acknowledgement
+6379 handed
+6378 grip
+6377 officially
+6376 geared
+6375 fraudulently
+6374 frame
+6373 fragility
+6372 foundations
+6371 focuses
+6370 flooded
+6369 premium
+6368 onto
+6367 helplessness
+6366 federalism
+6365 fact-finding
+6364 explicitly
+6363 escape
+6362 elaborate
+6361 honestly
+6360 earned
+6359 profound
+6358 disapproval
+6357 differences
+6356 designing
+6355 designation
+6354 deemed
+6353 deadlock
+6352 culprits
+6351 crux
+6350 confronted
+6349 complained
+6348 commissioned
+6347 commented
+6346 classified
+6345 cite
+6344 cathedral
+6343 castles
+6342 burmese
+6341 readings
+6340 grade
+6339 broadcasting
+6338 bilaterally
+6337 supplied
+6336 devoted
+6335 traced
+6334 prioritise
+6333 framed
+6332 certified
+6331 bases
+6330 doses
+6329 barriers
+6328 backs
+6327 6
+6326 attributed
+6325 delegates
+6324 assembled
+6323 answering
+6322 displayed
+6321 allotted
+6320 alliances
+6319 praise
+6318 agreeing
+6317 admission
+6316 accurately
+6315 accessing
+6314 renewed
+6313 gene
+6312 callous
+6311 returns
+6310 crude
+6309 barrel
+6308 dispense
+6307 plight
+6306 état
+6305 verdicts
+6304 pack
+6303 pitfalls
+6302 loyalists
+6301 responding
+6300 extensively
+6299 expectations
+6298 emphasising
+6297 attributable
+6296 assaulted
+6295 juncture
+6294 sparked
+6293 relentless
+6292 virtuous
+6291 sustained
+6290 circle
+6289 assault
+6288 withdrawal
+6287 wednesday
+6286 versed
+6285 tutsi
+6284 sting
+6283 persistence
+6282 multimedia
+6281 lucky
+6280 longest
+6279 long-distance
+6278 lastly
+6277 weekend
+6276 keenly
+6275 intensifying
+6274 inhabit
+6273 hiv
+6272 grapes
+6271 dawn
+6270 dated
+6269 customary
+6268 brussels
+6267 broke
+6266 afforded
+6265 sunday
+6264 heights
+6263 da
+6262 blight
+6261 linings
+6260 fuelling
+6259 exclusively
+6258 mixing
+6257 commenting
+6256 airborne
+6255 identification
+6254 blow
+6253 wars
+6252 seattle
+6251 bombing
+6250 rough
+6249 spectacle
+6248 foundation
+6247 carries
+6246 20-year
+6245 subsidize
+6244 physical
+6243 persuasive
+6242 station
+6241 svc
+6240 luxembourg
+6239 hunt
+6238 expired
+6237 in-house
+6236 outcomes
+6235 sadly
+6234 orchestrate
+6233 lucrative
+6232 bureaucratise
+6231 bombed
+6230 securely
+6229 reveal
+6228 disposition
+6227 anti-social
+6226 feira
+6225 30
+6224 intents
+6223 7
+6222 zones
+6221 wrongful
+6220 witnessed
+6219 winner
+6218 window
+6217 wild
+6216 wholly
+6215 whisky
+6214 weighting
+6213 wealthy
+6212 wake
+6211 visiting
+6210 virtually
+6209 viability
+6208 uprooted
+6207 uphold
+6206 unwelcome
+6205 untold
+6204 unpunished
+6203 unity
+6202 undeniable
+6201 undeclared
+6200 twelve
+6199 transporting
+6198 ties
+6197 thrust
+6196 well-balanced
+6195 uk
+6194 weigh
+6193 teeth
+6192 teacher
+6191 talked
+6190 tactics
+6189 syrians
+6188 symptoms
+6187 sympathy
+6186 symbolise
+6185 swiss
+6184 swim
+6183 swedish
+6182 suppressed
+6181 suffice
+6180 succeeding
+6179 studying
+6178 studies
+6177 street
+6176 stream
+6175 straitjacket
+6174 straighten
+6173 stories
+6172 unrest
+6171 stir
+6170 steadily
+6169 stature
+6168 squeezed
+6167 sprays
+6166 spot
+6165 sovereignty
+6164 sooner
+6163 socio-economic
+6162 smokers
+6161 slip
+6160 slicks
+6159 sky
+6158 skin
+6157 sine
+6156 signing
+6155 signatories
+6154 titles
+6153 ship
+6152 shifts
+6151 sexes
+6150 sex
+6149 secretary-general
+6148 seasonal
+6147 search
+6146 seafood
+6145 schengen
+6144 salmon
+6143 sacrosanct
+6142 russian
+6141 rrm
+6140 roof
+6139 rome
+6138 rivals
+6137 revolutions
+6136 revisions
+6135 resource
+6134 scientists
+6133 requisite
+6132 reprehensible
+6131 replacing
+6130 remits
+6129 remembered
+6128 regionally
+6127 sewage
+6126 yields
+6125 unnecessary
+6124 rediscovered
+6123 recreation
+6122 reconciliation
+6121 recognisable
+6120 receipt
+6119 recalled
+6118 reassurance
+6117 realm
+6116 realistic
+6115 ransom
+6114 qua
+6113 providers
+6112 provider
+6111 prostitutes
+6110 prosperous
+6109 prosecutor
+6108 proportionality
+6107 shelter
+6106 pronounced
+6105 prominent
+6104 profitable
+6103 ratification
+6102 pro-active
+6101 privacy
+6100 printed
+6099 prevail
+6098 preferential
+6097 portray
+6096 politically
+6095 pointless
+6094 platform
+6093 plain
+6092 phases
+6091 phase
+6090 performed
+6089 week
+6088 peninsula
+6087 patience
+6086 participating
+6085 sentiments
+6084 overwhelmed
+6083 tours
+6082 ordered
+6081 relative
+6080 optimism
+6079 openly
+6078 open-ended
+6077 winners
+6076 olive
+6075 tricks
+6074 offenders
+6073 scot-free
+6072 universities
+6071 uncertainty
+6070 tyre
+6069 tses
+6068 tibet
+6067 thousands
+6066 secret
+6065 terror
+6064 solving
+6063 science
+6062 reproduction
+6061 repair
+6060 rain
+6059 preferences
+6058 odysseus
+6057 oblige
+6056 notification
+6055 noses
+6054 non-compliance
+6053 nominated
+6052 nielson
+6051 nice
+6050 neo-liberal
+6049 natura
+6048 specifications
+6047 nafo
+6046 municipal
+6045 practically
+6044 straightforward
+6043 monuments
+6042 monday
+6041 moldova
+6040 mixed
+6039 misfortunes
+6038 mildly
+6037 microsoft
+6036 mg
+6035 metre
+6034 medium-sized
+6033 medium
+6032 medicine
+6031 meat
+6030 meal
+6029 maximised
+6028 mature
+6027 materialise
+6026 marketing
+6025 maritime
+6024 manufacturing
+6023 manufactured
+6022 speedier
+6021 mainstreaming
+6020 mainstream
+6019 machinery
+6018 residents
+6017 lived
+6016 taste
+6015 machines
+6014 lightly
+6013 tide
+6012 zero
+6011 legislators
+6010 least-developed
+6009 worries
+6008 lawyers
+6007 lapses
+6006 sleep
+6005 labour-intensive
+6004 kilometres
+6003 joins
+6002 joined
+6001 jerusalem
+6000 jeopardy
+5999 likewise
+5998 israel
+5997 prohibited
+5996 presently
+5995 irreparable
+5994 irregularities
+5993 invitation
+5992 intractable
+5991 interpreted
+5990 intellectual
+5989 integral
+5988 installations
+5987 insistence
+5986 insignificant
+5985 insecurity
+5984 responsibly
+5983 ingredients
+5982 inflationary
+5981 inflation
+5980 inefficiently
+5979 industrialists
+5978 indulged
+5977 incorporates
+5976 incidents
+5975 incapable
+5974 spotlight
+5973 productivity
+5972 mystery
+5971 imprisonment
+5970 implication
+5969 timeframe
+5968 imperialism
+5967 impasse
+5966 ill-considered
+5965 ii
+5964 identities
+5963 idealistic
+5962 id
+5961 hurdle
+5960 humanitarian
+5959 traffickers
+5958 illogical
+5957 hot
+5956 horror
+5955 holiday
+5954 holes
+5953 supremacy
+5952 sway
+5951 supermarkets
+5950 i.
+5949 hipc
+5948 hi-tech
+5947 herds
+5946 henceforth
+5945 mornings
+5944 tuesday
+5943 hectare
+5942 heat
+5941 headway
+5940 headline
+5939 hazardous
+5938 hazard
+5937 highest
+5936 hague
+5935 hadep
+5934 notify
+5933 habitats
+5932 guerrillas
+5931 grows
+5930 gross
+5929 tourists
+5928 grass-roots
+5927 grass
+5926 governmental
+5925 village
+5924 gets
+5923 gesture
+5922 unification
+5921 make-up
+5920 genetic
+5919 genes
+5918 generations
+5917 garden
+5916 fullest
+5915 frontier
+5914 infant
+5913 manifestos
+5912 shells
+5911 kuhne
+5910 frequently
+5909 frequency
+5908 frankfurt
+5907 fpö
+5906 founding
+5905 testify
+5904 fortunately
+5903 forever
+5902 forefront
+5901 treason
+5900 sakharov
+5899 illicit
+5898 sale
+5897 pipe
+5896 weapons
+5895 minced
+5894 lisbon
+5893 in-depth
+5892 football
+5891 fontaine
+5890 upside-down
+5889 flooding
+5888 fleet
+5887 flax
+5886 flat
+5885 pages
+5884 hundred
+5883 fishery
+5882 fines
+5881 fifteen
+5880 feet
+5879 sorrow
+5878 federal
+5877 features
+5876 fascism
+5875 reorganisation
+5874 profess
+5873 factory
+5872 faces
+5871 extremist
+5870 varied
+5869 exemplary
+5868 exchanged
+5867 exceptionally
+5866 exceptional
+5865 everywhere
+5864 evaluated
+5863 evade
+5862 europeans
+5861 isa
+5860 strain
+5859 politicians
+5858 euro-mediterranean
+5857 zone
+5856 tribes
+5855 north-south
+5854 environmentally-friendly
+5853 entrepreneurial
+5852 entities
+5851 enterprises
+5850 entails
+5849 enquiries
+5848 enmity
+5847 ends
+5846 october
+5845 encountered
+5844 enacted
+5843 rhetoric
+5842 empty
+5841 employment-related
+5840 elimination
+5839 mission
+5838 prosperity
+5837 eco-labelling
+5836 enforceable
+5835 earthquakes
+5834 lifetime
+5833 drought
+5832 drop
+5831 doorstep
+5830 doctor
+5829 district
+5828 dismissed
+5827 dismissal
+5826 dismantle
+5825 disciplined
+5824 disciplinary
+5823 disastrous
+5822 straits
+5821 dire
+5820 supervise
+5819 mines
+5818 dialogues
+5817 devastation
+5816 desks
+5815 desk
+5814 deregulated
+5813 depth
+5812 deprivation
+5811 deplore
+5810 dependent
+5809 dependency
+5808 denial
+5807 delicious
+5806 retained
+5805 defines
+5804 declarations
+5803 decidedly
+5802 facto
+5801 danube
+5800 dairy
+5799 curbed
+5798 cup
+5797 cultivation
+5796 crown
+5795 cross-border
+5794 cross
+5793 crops
+5792 cricket
+5791 credible
+5790 councillor
+5789 delegations
+5788 corrections
+5787 convictions
+5786 controversy
+5785 controversial
+5784 continuum
+5783 tradition
+5782 contexts
+5781 contention
+5780 contamination
+5779 constructive
+5778 constraints
+5777 considerably
+5776 consent
+5775 conflicting
+5774 confidence-building
+5773 concepts
+5772 superiority
+5771 concentrated
+5770 computers
+5769 complicated
+5768 satisfied
+5767 complacency
+5766 competitors
+5765 competing
+5764 compelling
+5763 communicated
+5762 constituted
+5761 sun
+5760 depended
+5759 honoured
+5758 commendably
+5757 commandos
+5756 comfortable
+5755 confidentiality
+5754 collapsed
+5753 coherent
+5752 cocoa
+5751 cloning
+5750 clock
+5749 clarity
+5748 civilian
+5747 citizen
+5746 church
+5745 christmas
+5744 chiefs
+5743 chechen
+5742 charity
+5741 chaps
+5740 channels
+5739 institutional
+5738 chair
+5737 centralised
+5736 ceiling
+5735 castro
+5734 tests
+5733 straightaway
+5732 carpet
+5731 cargo
+5730 career
+5729 candidates
+5728 cancelling
+5727 cameras
+5726 escaping
+5725 calmly
+5724 calculate
+5723 cairo
+5722 winds
+5721 geneva
+5720 supplying
+5719 parcel
+5718 mafias
+5717 burundi
+5716 burns
+5715 non-transparent
+5714 components
+5713 brutal
+5712 brunt
+5711 brucellosis
+5710 brink
+5709 tunnel
+5708 breed
+5707 boundaries
+5706 generously
+5705 bosses
+5704 bird
+5703 bill
+5702 bidding
+5701 bidder
+5700 salvation
+5699 suited
+5698 bereft
+5697 benches
+5696 below
+5695 wing
+5694 luck
+5693 beliefs
+5692 stretched
+5691 conservative
+5690 trading
+5689 slow
+5688 macedonia
+5687 registered
+5686 inadequately
+5685 devised
+5684 debated
+5683 converted
+5682 confounded
+5681 cofinanced
+5680 blurred
+5679 generosity
+5678 champions
+5677 thereof
+5676 translated
+5675 released
+5674 reinvested
+5673 reckoned
+5672 reasonably
+5671 neglected
+5670 infected
+5669 emas
+5668 immense
+5667 enhanced
+5666 certificate
+5665 counterproductive
+5664 books
+5663 consigned
+5662 conciliatory
+5661 cited
+5660 consistently
+5659 base
+5658 bankrupt
+5657 banking
+5656 ball
+5655 balkan
+5654 bags
+5653 millennia
+5652 awaiting
+5651 averted
+5650 auditor
+5649 attendance
+5648 attained
+5647 attain
+5646 mercy
+5645 attachment
+5644 intervals
+5643 astonishing
+5642 asthma
+5641 consultants
+5640 assistants
+5639 simultaneously
+5638 ashore
+5637 fit
+5636 fascist
+5635 arrests
+5634 arranging
+5633 effectiveness
+5632 arm
+5631 satisfactory
+5630 compromised
+5629 enormously
+5628 recurring
+5627 performing
+5626 incompatible
+5625 jointly
+5624 upheld
+5623 disappearing
+5622 withdrawn
+5621 archipelago
+5620 apt
+5619 applicants
+5618 appendix
+5617 threshold
+5616 realism
+5615 brand
+5614 urgently
+5613 dimensions
+5612 forty
+5611 oldest
+5610 colonists
+5609 reams
+5608 sight
+5607 incomes
+5606 piracy
+5605 fibre
+5604 hemp
+5603 cooperative
+5602 expertise
+5601 branch
+5600 eastern
+5599 concerted
+5598 confuse
+5597 chlorine
+5596 usefully
+5595 arid
+5594 accommodates
+5593 memorandum
+5592 interministerial
+5591 excuse
+5590 friendly
+5589 toll
+5588 ensuing
+5587 anti-racism
+5586 amusement
+5585 amiss
+5584 ambition
+5583 ambiguous
+5582 qualitative
+5581 rescue
+5580 marine
+5579 allowance
+5578 allocations
+5577 modes
+5576 sorts
+5575 humane
+5574 aligned
+5573 alcohol-related
+5572 albanians
+5571 alarming
+5570 ageing
+5569 afternoon
+5568 olives
+5567 advocated
+5566 advisory
+5565 adult
+5564 ado
+5563 admitted
+5562 admirably
+5561 administered
+5560 administer
+5559 adjourned
+5558 additionality
+5557 acquire
+5556 acidification
+5555 accusation
+5554 accuracy
+5553 accomplish
+5552 accompli
+5551 abuses
+5550 abused
+5549 absolute
+5548 abolished
+5547 lend
+5546 abilities
+5545 warning
+5544 telephone
+5543 impulse
+5542 standstill
+5541 smaller
+5540 stadium
+5539 senator
+5538 saturday
+5537 saleable
+5536 postal
+5535 piecemeal
+5534 pensioner
+5533 nut
+5532 moratorium
+5531 mediator
+5530 managing
+5529 distortion
+5528 judge
+5527 capita
+5526 controlling
+5525 full-time
+5524 span
+5523 finite
+5522 false
+5521 disadvantage
+5520 day-to-day
+5519 self-interest
+5518 corner
+5517 margin
+5516 brother
+5515 ivory
+5514 tonnes
+5513 26
+5512 21
+5511 2010
+5510 2001
+5509 20
+5508 10
+5507 september
+5506 posting
+5505 50
+5504 scandalously
+5503 supports
+5502 missed
+5501 larger
+5500 dream
+5499 bleak
+5498 bulk
+5497 61
+5496 speculators
+5495 spectacular
+5494 psychological
+5493 powerless
+5492 permission
+5491 necessitating
+5490 somewhere
+5489 reconsidered
+5488 wynn
+5487 rocard
+5486 virtual
+5485 straw
+5484 typical
+5483 incurred
+5482 cruelty
+5481 multi-functional
+5480 alarmed
+5479 copy
+5478 +
+5477 quoted
+5476 cns
+5475 scandals
+5474 diamond
+5473 pig
+5472 disappearances
+5471 supervisory
+5470 average
+5469 predominantly
+5468 unwillingness
+5467 underline
+5466 sticking
+5465 spectre
+5464 segments
+5463 repeatedly
+5462 releasing
+5461 postponement
+5460 populist
+5459 pleasant
+5458 periodically
+5457 mooted
+5456 misunderstanding
+5455 militarily
+5454 margins
+5453 lag
+5452 presumptuously
+5451 inability
+5450 horrifying
+5449 hasten
+5448 guise
+5447 grown
+5446 growers
+5445 gold
+5444 occurring
+5443 fringe
+5442 reproductive
+5441 experiment
+5440 expanding
+5439 paperwork
+5438 et
+5437 diploma
+5436 despair
+5435 derisory
+5434 deadline
+5433 credibility
+5432 councils
+5431 coping
+5430 controlled
+5429 obstruction
+5428 concepts.the
+5427 complaint
+5426 collect
+5425 co-president
+5424 caveat
+5423 brakes
+5422 models
+5421 sensibly
+5420 behaving
+5419 underdeveloped
+5418 penalised
+5417 barter
+5416 stimulants
+5415 artificial
+5414 intensive
+5413 apology
+5412 antipollution
+5411 romantic
+5410 al
+5409 admirable
+5408 academic
+5407 15
+5406 pray
+5405 modest
+5404 refugee
+5403 sinking
+5402 obstacles
+5401 -and
+5400 embroiled
+5399 landfill
+5398 regrettable
+5397 summary
+5396 speculation
+5395 entailed
+5394 compromising
+5393 unbelievably
+5392 pillar
+5391 guigou
+5390 elisabeth
+5389 signatory
+5388 rushed
+5387 pursuant
+5386 experiments
+5385 green
+5384 four
+5383 guards
+5382 polluter
+5381 accompanies
+5380 doom
+5379 modernised
+5378 dredged
+5377 neighbouring
+5376 zimbabwean
+5375 wrote
+5374 wrecks
+5373 worship
+5372 worldwide
+5371 workplace
+5370 wives
+5369 wishing
+5368 wise
+5367 wiped
+5366 wines
+5365 wine
+5364 licences
+5363 software
+5362 whichever
+5361 squeeze
+5360 rival
+5359 replaces
+5358 regulates
+5357 refuses
+5356 receives
+5355 prompts
+5354 operates
+5353 transposed
+5352 quantities
+5351 delivered
+5350 assisted
+5349 grâce
+5348 coup
+5347 dumped
+5346 drains
+5345 vegetable
+5344 dismantling
+5343 unilaterally
+5342 west
+5341 weekly
+5340 website
+5339 wada
+5338 vulnerability
+5337 vallelersundi
+5336 usually
+5335 user
+5334 upset
+5333 untenable
+5332 unjustified
+5331 unionists
+5330 unimodal
+5329 unequivocally
+5328 undertakings
+5327 understandable
+5326 unclear
+5325 unbridled
+5324 ulterior
+5323 uganda
+5322 tv
+5321 turns
+5320 turks
+5319 tunisia
+5318 tuna
+5317 trouble
+5316 tribunal
+5315 trees
+5314 unfairly
+5313 tragedies
+5312 tracks
+5311 town
+5310 tough
+5309 topic
+5308 write
+5307 weight
+5306 walk
+5305 edf
+5304 tie
+5303 native
+5302 fore
+5301 languages
+5300 surrender
+5299 stimulate
+5298 stigmatisation
+5297 installing
+5296 sell
+5295 self-determination
+5294 linguistic
+5293 reside
+5292 reassure
+5291 statistics
+5290 denominator
+5289 publish
+5288 penetrate
+5287 copyright
+5286 paint
+5285 overload
+5284 dealings
+5283 parity
+5282 norway
+5281 managerial
+5280 tips
+5279 preserve
+5278 judgments
+5277 legislate
+5276 cyanide
+5275 handing
+5274 roles
+5273 farming
+5272 equip
+5271 endorse
+5270 earmark
+5269 display
+5268 designate
+5267 define
+5266 dedicate
+5265 couple
+5264 convene
+5263 construct
+5262 compete
+5261 civilians
+5260 style
+5259 by-pass
+5258 sentenced
+5257 sceptical
+5256 punished
+5255 alongside
+5254 finalised
+5253 checked
+5252 arrive
+5251 alert
+5250 accuse
+5249 foodstuffs
+5248 abandon
+5247 halt
+5246 threatened
+5245 thoughts
+5244 third-country
+5243 thereafter
+5242 thematic
+5241 store
+5240 gloss
+5239 slightly
+5238 typifies
+5237 render
+5236 switch
+5235 won
+5234 theirs
+5233 blocks
+5232 swedes
+5231 promoters
+5230 precedes
+5229 pile
+5228 pertain
+5227 perform
+5226 ascertained
+5225 undergoing
+5224 wales
+5223 11
+5222 emerged
+5221 divides
+5220 demonstrates
+5219 creditors
+5218 irritation
+5217 calm
+5216 emotions
+5215 allocate
+5214 thanked
+5213 terrorists
+5212 terrorism
+5211 tends
+5210 tendencies
+5209 temporary
+5208 techniques
+5207 taught
+5206 tanzania
+5205 tantamount
+5204 tankers
+5203 tanker
+5202 tailored
+5201 tabling
+5200 surrounding
+5199 surpluses
+5198 supplies
+5197 summits
+5196 sugar
+5195 sudden
+5194 successfully
+5193 successes
+5192 subsidiarity
+5191 stuff
+5190 studied
+5189 steamroller
+5188 statistical
+5187 standardised
+5186 spring
+5185 teams
+5184 sports
+5183 spanish
+5182 spain
+5181 solidarity
+5180 solemn
+5179 socially
+5178 injured
+5177 smoothly
+5176 slowly
+5175 site
+5174 sidelines
+5173 crying
+5172 shores
+5171 shameful
+5170 serbs
+5169 serbian
+5168 sentiment
+5167 boils
+5166 securities
+5165 sectoral
+5164 section
+5163 seat
+5162 script
+5161 scepticism
+5160 scenarios
+5159 scandalous
+5158 sanitation
+5157 tools
+5156 salute
+5155 safeguarded
+5154 retain
+5153 run-up
+5152 romans
+5151 right-wing
+5150 reviewed
+5149 revelations
+5148 resolutions
+5147 resist
+5146 reservation
+5145 republic
+5144 reprocessing
+5143 representative
+5142 reaches
+5141 repeats
+5140 repatriation
+5139 remote
+5138 remit
+5137 remedies
+5136 remained
+5135 reliable
+5134 relaunched
+5133 relational
+5132 rejected
+5131 regrettably
+5130 regime
+5129 refusing
+5128 refunds
+5127 refresh
+5126 reflection
+5125 recycled
+5124 recommending
+5123 reassessed
+5122 reared
+5121 reaffirm
+5120 rationalisation
+5119 ratify
+5118 sorry
+5117 railways
+5116 quotation
+5115 quiet
+5114 quick
+5113 pulse
+5112 publicised
+5111 prudence
+5110 prosecution
+5109 promises
+5108 promised
+5107 prolonged
+5106 produces
+5105 procurement
+5104 procured
+5103 privileged
+5102 privatised
+5101 principal
+5100 prevails
+5099 pretences
+5098 preferred
+5097 preferable
+5096 predecessor
+5095 precarious
+5094 powder
+5093 responses
+5092 posed
+5091 portuguese
+5090 timing
+5089 pony
+5088 plooij-van
+5087 pledge
+5086 player
+5085 thrive
+5084 pitch
+5083 pimps
+5082 philosophy
+5081 persuaded
+5080 personnel
+5079 personality
+5078 peripheral
+5077 perea
+5076 perceive
+5075 patient
+5074 patented
+5073 partner
+5072 post
+5071 participants
+5070 part-sessions
+5069 part-session
+5068 paris
+5067 parameters
+5066 palestinians
+5065 painful
+5064 package
+5063 ownership
+5062 overview
+5061 overly
+5060 overhaul
+5059 outrageous
+5058 outrage
+5057 osce
+5056 ortega
+5055 opted
+5054 speech
+5053 testing
+5052 one-sided
+5051 ombudsman
+5050 officers
+5049 owns
+5048 freed
+5047 sahara
+5046 western
+5045 visas
+5044 transportation
+5043 television
+5042 violent
+5041 subsistence
+5040 sources
+5039 sme
+5038 sheep
+5037 scrutiny
+5036 title
+5035 retention
+5034 racism
+5033 questionable
+5032 policing
+5031 poland
+5030 poison
+5029 plane
+5028 outlining
+5027 opposing
+5026 occupy
+5025 obligatory
+5024 nutrition
+5023 numerous
+5022 numerical
+5021 notified
+5020 worry
+5019 norm
+5018 non-eu
+5017 no-one
+5016 umbrella
+5015 netting
+5014 netherlands
+5013 negotiator
+5012 harmonise
+5011 neck
+5010 nato
+5009 murders
+5008 murder
+5007 munitions
+5006 multinationals
+5005 multilingual
+5004 turmes
+5003 newton
+5002 moves
+5001 moura
+5000 injure
+4999 vehicles
+4998 motives
+4997 mothers
+4996 revolutionary
+4995 moscovici
+4994 morocco
+4993 underhand
+4992 sophisticated
+4991 restrictive
+4990 regularly
+4989 monumental
+4988 modifications
+4987 moderation
+4986 mobility
+4985 mobiles
+4984 mismanagement
+4983 migratory
+4982 middle
+4981 merged
+4980 memories
+4979 shocked
+4978 meanwhile
+4977 maxim
+4976 massive
+4975 masse
+4974 marvellous
+4973 marshall
+4972 perspectives
+4971 manufacturer
+4970 mandatory
+4969 tactical
+4968 magazines
+4967 sacrifices
+4966 low
+4965 loses
+4964 lomé
+4963 logistical
+4962 logic
+4961 localised
+4960 links
+4959 liking
+4958 warmly
+4957 liberation
+4956 liberalised
+4955 lentils
+4954 lengthy
+4953 lengths
+4952 legislature
+4951 leaks
+4950 steel
+4949 layers
+4948 layer
+4947 lang
+4946 labyrinthine
+4945 saving
+4944 kerosene
+4943 justifiable
+4942 shoulders
+4941 representations
+4940 island
+4939 unreliable
+4938 unlikely
+4937 suitable
+4936 remarkable
+4935 spreading
+4934 mounting
+4933 constitution
+4932 ireland
+4931 investors
+4930 register
+4929 invalidity
+4928 intolerance
+4927 intolerable
+4926 internally
+4925 interface
+4924 intent
+4923 intelligence
+4922 instructions
+4921 installed
+4920 insights
+4919 inside
+4918 innovation
+4917 initial
+4916 infringements
+4915 infrastructural
+4914 inefficient
+4913 indignant
+4912 indifference
+4911 recording
+4910 incinerators
+4909 incidentally
+4908 incentives
+4907 sales
+4906 transported
+4905 respective
+4904 modern
+4903 protest
+4902 pornography
+4901 panama
+4900 impotence
+4899 penalties
+4898 imposition
+4897 imply
+4896 imperfectly
+4895 immigrant
+4894 vicinity
+4893 igc
+4892 idle
+4891 identity
+4890 ideal
+4889 sit
+4888 hydrographic
+4887 housing
+4886 hostility
+4885 horses
+4884 homes
+4883 holte
+4882 histories
+4881 helsinki
+4880 regain
+4879 respecting
+4878 heifer
+4877 heaven
+4876 lifestyles
+4875 healthier
+4874 headings
+4873 hindrance
+4872 loved
+4871 eight
+4870 harsh
+4869 harmless
+4868 hardware
+4867 emigrate
+4866 handover
+4865 guard
+4864 weaker
+4863 greenhouse
+4862 gradually
+4861 gonzález
+4860 reluctantly
+4859 girls
+4858 wet
+4857 contact
+4856 geographic
+4855 genetically
+4854 gatt
+4853 gathered
+4852 privatisation
+4851 reformed
+4850 fruit
+4849 moralising
+4848 retrospective
+4847 victimisation
+4846 frightening
+4845 mine
+4844 freeze
+4843 frameworks
+4842 frames
+4841 fortunate
+4840 forthwith
+4839 forthcoming
+4838 forestry
+4837 trips
+4836 forcing
+4835 stars
+4834 gluten
+4833 follow-up
+4832 fluisterasfalt
+4831 flows
+4830 flexible
+4829 fixed
+4828 fiscal
+4827 first-rate
+4826 firms
+4825 finish
+4824 finger
+4823 fine-sounding
+4822 stages
+4821 fiji
+4820 fighting
+4819 sudan
+4818 fields
+4817 feelings
+4816 feedback
+4815 feasible
+4814 faster
+4813 farms
+4812 disposed
+4811 faithful
+4810 decreased
+4809 extremists
+4808 extraordinary
+4807 opting
+4806 pleas
+4805 expressions
+4804 exporters
+4803 exploiting
+4802 experiences
+4801 expected
+4800 expansion
+4799 exiles
+4798 execution
+4797 exchange
+4796 excesses
+4795 exacerbated
+4794 evidently
+4793 everyday
+4792 symbols
+4791 likelihood
+4790 evening
+4789 venture
+4788 socialists
+4787 harassment
+4786 ethnic
+4785 ethiopia
+4784 nutritional
+4783 error
+4782 envoy
+4781 envisaged
+4780 entrenched
+4779 entitlement
+4778 entirely
+4777 populations
+4776 enthusiasm
+4775 plantations
+4774 mahogany
+4773 manages
+4772 enterprise
+4771 ensured
+4770 possession
+4769 enshrined
+4768 madrid
+4767 england
+4766 enduring
+4765 ending
+4764 ended
+4763 summit
+4762 empire
+4761 emphatically
+4760 emotional
+4759 emission
+4758 embryo
+4757 el
+4756 entirety
+4755 efficiently
+4754 eeurope
+4753 eels
+4752 ecsc
+4751 economically
+4750 echelon
+4749 ec
+4748 usable
+4747 definitively
+4746 earliest
+4745 nonsensical
+4744 dwindling
+4743 dunn
+4742 dry
+4741 drivers
+4740 drift
+4739 draws
+4738 speedily
+4737 downs
+4736 door
+4735 domain
+4734 dollars
+4733 documents
+4732 divide
+4731 disturbed
+4730 journalist
+4729 distinguished
+4728 distinctive
+4727 distances
+4726 disruption
+4725 disregarded
+4724 disputed
+4723 disparate
+4722 dishonesty
+4721 diseases
+4720 discusses
+4719 world-wide
+4718 disarray
+4717 disappointed
+4716 disadvantages
+4715 disadvantaged
+4714 directly
+4713 dignity
+4712 gather
+4711 devote
+4710 devoid
+4709 deva
+4708 reinvigorate
+4707 destruction
+4706 destinations
+4705 desirable
+4704 design
+4703 lapse
+4702 derogation
+4701 density
+4700 hole
+4699 demanded
+4698 delicate
+4697 deliberations
+4696 degrees
+4695 definitive
+4694 definite
+4693 defendants
+4692 defeat
+4691 deepening
+4690 decree
+4689 decline
+4688 intentions
+4687 decimated
+4686 debts
+4685 squads
+4684 repercussions
+4683 dead
+4682 react
+4681 davos
+4680 daring
+4679 dare
+4678 property
+4677 dam
+4676 rate
+4675 currencies
+4674 cultures
+4673 crop
+4672 critically
+4671 criterion
+4670 creatures
+4669 internationally
+4668 crash
+4667 courses
+4666 coups
+4665 counts
+4664 countryside
+4663 counterfeiting
+4662 cotton
+4661 costly
+4660 cost-effectiveness
+4659 cost-effective
+4658 cosmetic
+4657 corps
+4656 core
+4655 conversion
+4654 conversation
+4653 convergence
+4652 contrived
+4651 contrast
+4650 contradictions
+4649 continuously
+4648 continents
+4647 contemporary
+4646 containment
+4645 constituency
+4644 consternation
+4643 consolidated
+4642 conserve
+4641 conservation
+4640 connections
+4639 congratulate
+4638 supplementing
+4637 confined
+4636 confess
+4635 conclusions
+4634 conciliation
+4633 concessions
+4632 equality
+4631 retroactive
+4630 comprehensible
+4629 comprehend
+4628 complies
+4627 deregulation
+4626 compiled
+4625 competitiveness
+4624 compassion
+4623 nationality
+4622 communism
+4621 commonly
+4620 recommendations
+4619 commodities
+4618 regrets
+4617 crete
+4616 scratch
+4615 pride
+4614 colossus
+4613 collecting
+4612 coastline
+4611 coastal
+4610 co2
+4609 closest
+4608 closed
+4607 relationship
+4606 client
+4605 unsustainable
+4604 fraud
+4603 clauses
+4602 clarified
+4601 civilisation
+4600 cigarettes
+4599 waive
+4598 drink
+4597 childhood
+4596 chechnya
+4595 cheaper
+4594 channelled
+4593 changed
+4592 chambers
+4591 chain
+4590 cfsp
+4589 certification
+4588 cereals
+4587 ceilings
+4586 causebook
+4585 catering
+4584 catches
+4583 halibut
+4582 catalonia
+4581 interpretations
+4580 incorrect
+4579 respectful
+4578 inspections
+4577 electronic
+4576 cards
+4575 captains
+4574 capital
+4573 verde
+4572 cape
+4571 evolve
+4570 matching
+4569 cancer
+4568 cancelled
+4567 cancellation
+4566 campaigners
+4565 calls
+4564 medical
+4563 machine
+4562 researchers
+4561 vehicle
+4560 motor
+4559 definition
+4558 relies
+4557 bush
+4556 burundians
+4555 burning
+4554 burma
+4553 societies
+4552 broadcasts
+4551 british
+4550 brenner
+4549 breathing
+4548 bovine
+4547 bordeaux
+4546 bonus
+4545 bombs
+4544 bomb
+4543 boldly
+4542 bold
+4541 blocked
+4540 birds
+4539 precept
+4538 beneficiaries
+4537 benchmarks
+4536 belt
+4535 belongs
+4534 belong
+4533 widespread
+4532 belgian
+4531 deployed
+4530 swiftly
+4529 repetitive
+4528 fought
+4527 discussed
+4526 eating
+4525 violated
+4524 pledged
+4523 observed
+4522 nationals
+4521 damaged
+4520 completed
+4519 beds
+4518 hospital
+4517 bed
+4516 unreasonably
+4515 beaches
+4514 decentralised
+4513 interested
+4512 trusted
+4511 transparent
+4510 transferred
+4509 sanctimonious
+4508 offset
+4507 offensive
+4506 lowered
+4505 lifted
+4504 isolated
+4503 ineffectual
+4502 included
+4501 dropped
+4500 corrected
+4499 inhabitants
+4498 basins
+4497 banned
+4496 banks
+4495 bankruptcy
+4494 sheet
+4493 root
+4492 b
+4491 awareness-raising
+4490 qualifications
+4489 availability
+4488 capability
+4487 autonomous
+4486 automatically
+4485 audiovisual
+4484 attracted
+4483 classes
+4482 bridges
+4481 linking
+4480 attach
+4479 atlantic
+4478 simplifying
+4477 noon
+4476 icao
+4475 kuip
+4474 assumed
+4473 associations
+4472 reductions
+4471 taxation
+4470 helpful
+4469 humans
+4468 arrived
+4467 arrangement
+4466 arranged
+4465 army
+4464 armed
+4463 arguments
+4462 hitting
+4461 structured
+4460 sick
+4459 proposing
+4458 mutually
+4457 insured
+4456 insufficient
+4455 harming
+4454 sensitive
+4453 expire
+4452 exposed
+4451 complied
+4450 camps
+4449 concentration
+4448 architecture
+4447 approximations
+4446 appointed
+4445 apparatus
+4444 devastated
+4443 warrant
+4442 deliberately
+4441 anymore
+4440 legitimate
+4439 derogations
+4438 defects
+4437 antidemocratic
+4436 annually
+4435 andersson
+4434 xenophobic
+4433 woven
+4432 destined
+4431 warfare
+4430 up-to-date
+4429 touch
+4428 communicate
+4427 tired
+4426 stifle
+4425 thoughtfulness
+4424 uses
+4423 surveillance
+4422 judgements
+4421 phantom
+4420 solve
+4419 forth
+4418 copies
+4417 shout
+4416 inheritance
+4415 pharmaceutical
+4414 japan
+4413 owned
+4412 complexity
+4411 federalist
+4410 exposing
+4409 ignores
+4408 happily
+4407 grids
+4406 globalised
+4405 german
+4404 friend
+4403 markets
+4402 missions
+4401 employees
+4400 disability
+4399 counting
+4398 competitive
+4397 comparative
+4396 evil
+4395 identifiable
+4394 capacities
+4393 brotherhood
+4392 attending
+4391 appreciation
+4390 analyses
+4389 analogy
+4388 south
+4387 orderly
+4386 inventory
+4385 interim
+4384 inevitable
+4383 scale
+4382 extra-territorial
+4381 ammunition
+4380 ambiguity
+4379 amazing
+4378 yoghurt
+4377 drinking
+4376 delighted
+4375 alternatives
+4374 alliance
+4373 alike
+4372 kosovars
+4371 albanian
+4370 alavanos
+4369 courier
+4368 guidance
+4367 constructively
+4366 levy
+4365 agency
+4364 torture
+4363 laundering
+4362 affection
+4361 advocate
+4360 advisability
+4359 advertisement
+4358 adjusted
+4357 adjust
+4356 adhering
+4355 strictly
+4354 momentum
+4353 hoc
+4352 ad
+4351 acute
+4350 finished
+4349 presumptuous
+4348 achievements
+4347 accustomed
+4346 smuggling
+4345 drug
+4344 accused
+4343 accusations
+4342 accurate
+4341 accounting
+4340 expiry
+4339 beijing
+4338 accidents
+4337 accelerated
+4336 absurd
+4335 abroad
+4334 willingness
+4333 delivering
+4332 eco-management
+4331 negotiate
+4330 eat
+4329 compare
+4328 combine
+4327 abandoned
+4326 visible
+4325 veto
+4324 unitary
+4323 u-turn
+4322 swift
+4321 campaign
+4320 substitute
+4319 similarity
+4318 striking
+4317 employee
+4316 serb
+4315 referendum
+4314 procedural
+4313 preventative
+4312 pan-european
+4311 additives
+4310 millennium
+4309 neo-colonial
+4308 mountain
+4307 minute
+4306 percentage
+4305 long-term
+4304 label
+4303 dublin
+4302 achievement
+4301 healthy
+4300 malpractice
+4299 supper
+4298 gap
+4297 flood
+4296 driver
+4295 abiding
+4294 pluralist
+4293 cost-benefit
+4292 cornerstone
+4291 cop-out
+4290 income
+4289 concept
+4288 officer
+4287 basque
+4286 bar
+4285 builds
+4284 palms
+4283 contested
+4282 8
+4281 million
+4280 40
+4279 2002
+4278 3
+4277 1994
+4276 1991
+4275 1978
+4274 1963
+4273 1950s
+4272 1999
+4271 july
+4270 1998
+4269 january
+4268 /
+4267 sought
+4266 unrealistic
+4265 besides
+4264 succeed
+4263 advertisements
+4262 securing
+4261 telling
+4260 minor
+4259 humble
+4258 essence
+4257 happy
+4256 excludes
+4255 commodity
+4254 mistakes
+4253 2006
+4252 desperately
+4251 a.m.
+4250 9
+4249 word
+4248 hesitation
+4247 choosing
+4246 convert
+4245 vague
+4244 decrease
+4243 horrendous
+4242 coordinated
+4241 concentrating
+4240 unleashed
+4239 paved
+4238 displays
+4237 criticised
+4236 challenging
+4235 abandoning
+4234 misleading
+4233 splendid
+4232 latin
+4231 exciting
+4230 explains
+4229 dictates
+4228 concentrates
+4227 whereupon
+4226 discharge
+4225 ships
+4224 analysing
+4223 liberated
+4222 stern
+4221 schleicher
+4220 unanimous
+4219 discovered
+4218 safely
+4217 films
+4216 hollywood
+4215 watching
+4214 located
+4213 imprisoned
+4212 warn
+4211 freezes
+4210 votes
+4209 vice-president
+4208 near
+4207 unlike
+4206 unless
+4205 university
+4204 undermined
+4203 underdevelopment
+4202 typically
+4201 types
+4200 dreams
+4199 turned
+4198 translating
+4197 transfer
+4196 traditions
+4195 touches
+4194 totally
+4193 topical
+4192 penal
+4191 urge
+4190 scrap
+4189 resume
+4188 reallocate
+4187 rapid
+4186 punish
+4185 answers
+4184 notifications
+4183 disciplines
+4182 private-sector
+4181 excellent
+4180 divisions
+4179 superficial
+4178 austria
+4177 refusal
+4176 ruling
+4175 transactions
+4174 throw
+4173 threatening
+4172 verification
+4171 declaration
+4170 limited
+4169 vietnamese
+4168 proving
+4167 foodstocks
+4166 plenty
+4165 wider
+4164 zimbabwe
+4163 fled
+4162 family
+4161 royal
+4160 examination
+4159 reception
+4158 newly
+4157 messages
+4156 master
+4155 chemicals
+4154 g7
+4153 duodena
+4152 collaboration
+4151 caveats
+4150 respects
+4149 controller
+4148 invention
+4147 vetches
+4146 thankfully
+4145 conferences
+4144 video
+4143 testimonies
+4142 technological
+4141 tariff
+4140 literally
+4139 pertaining
+4138 sole
+4137 auditors
+4136 succeeded
+4135 submitting
+4134 strongly
+4133 stalking
+4132 indonesia
+4131 nearly
+4130 spends
+4129 spending
+4128 publisher
+4127 southern
+4126 someone
+4125 weeks
+4124 solid
+4123 sold
+4122 names
+4121 sixteen
+4120 britain
+4119 remain
+4118 shift
+4117 serbia
+4116 adequate
+4115 factories
+4114 saves
+4113 sad
+4112 ruthless
+4111 rose
+4110 rolling
+4109 rising
+4108 retirement
+4107 respectively
+4106 resolving
+4105 gas
+4104 reserves
+4103 requesting
+4102 reproach
+4101 representing
+4100 rendering
+4099 rejecting
+4098 reinforced
+4097 regardless
+4096 recovering
+4095 stolen
+4094 guests
+4093 ready
+4092 accessible
+4091 readily
+4090 trend
+4089 upward
+4088 punishment
+4087 blunt
+4086 rape
+4085 ranging
+4084 pursuing
+4083 publicising
+4082 creative
+4081 phased
+4080 protecting
+4079 promotion
+4078 promoted
+4077 progressive
+4076 liability
+4075 producer
+4074 processes
+4073 proceeding
+4072 substances
+4071 prime
+4070 harm
+4069 pretty
+4068 preferably
+4067 validation
+4066 preceded
+4065 precaution
+4064 potentially
+4063 references
+4062 pose
+4061 portugal
+4060 port
+4059 petty
+4058 autonomy
+4057 persecution
+4056 peoples
+4055 partners
+4054 partially
+4053 originating
+4052 named
+4051 originally
+4050 organic
+4049 specialists
+4048 household
+4047 publicity
+4046 opposite
+4045 operational
+4044 served
+4043 minimal
+4042 flights
+4041 on-going
+4040 treating
+4039 listening
+4038 economics
+4037 liberal
+4036 ongoing
+4035 offshore
+4034 obtaining
+4033 hangs
+4032 ratified
+4031 normal
+4030 non
+4029 moroccan
+4028 comfort
+4027 entitlements
+4026 needless
+4025 managers
+4024 recruitment
+4023 participate
+4022 frahm
+4021 solana
+4020 abu
+4019 proliferating
+4018 compatible
+4017 mooring
+4016 misunderstandings
+4015 mirrors
+4014 generate
+4013 measured
+4012 meaningless
+4011 carriers
+4010 matches
+4009 marked
+4008 closely
+4007 marches
+4006 safer
+4005 manifest
+4004 clearer
+4003 maybe
+4002 merchants
+4001 lying
+4000 skimmed
+3999 cheese
+3998 low-fat
+3997 love
+3996 loopholes
+3995 locally
+3994 councillors
+3993 limiting
+3992 yourself
+3991 secretary
+3990 elephant
+3989 levied
+3988 summarise
+3987 lest
+3986 left-wing
+3985 launch
+3984 lamenting
+3983 korea
+3982 knowing
+3981 killing
+3980 kill
+3979 reiterating
+3978 fuelled
+3977 driven
+3976 launched
+3975 mould
+3974 kills
+3973 vitally
+3972 untrue
+3971 game
+3970 infringement
+3969 inviting
+3968 investigations
+3967 stuck
+3966 remaining
+3965 insofar
+3964 injury
+3963 inferior
+3962 indecent
+3961 resort
+3960 non-community
+3959 theory
+3958 phrase
+3957 spite
+3956 opt
+3955 uncertain
+3954 governance
+3953 contravention
+3952 concluding
+3951 commerce
+3950 buying
+3949 sensible
+3948 implying
+3947 dates
+3946 illustrate
+3945 ignoring
+3944 permit
+3943 ease
+3942 reject
+3941 passengers
+3940 trains
+3939 labels
+3938 wonder
+3937 repeat
+3936 beg
+3935 hundreds
+3934 humiliating
+3933 commendable
+3932 high-quality
+3931 fees
+3930 professionals
+3929 spent
+3928 relinquished
+3927 recorded
+3926 bought
+3925 rigorous
+3924 harmonised
+3923 harbour
+3922 halfway
+3921 originality
+3920 greek
+3919 govern
+3918 wisdom
+3917 additional
+3916 futures
+3915 fundamentally
+3914 laying
+3913 east
+3912 friends
+3911 freely
+3910 formed
+3909 registers
+3908 forceful
+3907 focusing
+3906 focused
+3905 fitted
+3904 firmly
+3903 fills
+3902 fights
+3901 felt
+3900 extreme-right
+3899 alarm
+3898 experienced
+3897 expecting
+3896 existing
+3895 exhaustive
+3894 exert
+3893 except
+3892 cloud
+3891 avenue
+3890 implicitly
+3889 criteria
+3888 envisaging
+3887 entrepreneurs
+3886 english
+3885 encounter
+3884 empowering
+3883 environmentally
+3882 embarking
+3881 educated
+3880 inflicting
+3879 e.g.
+3878 dying
+3877 duly
+3876 embrace
+3875 distributing
+3874 distributed
+3873 distinct
+3872 directed
+3871 dioxin
+3870 diligence
+3869 choices
+3868 diet
+3867 devising
+3866 contacts
+3865 determined
+3864 desertification
+3863 derive
+3862 deputy
+3861 denying
+3860 definitely
+3859 decorated
+3858 decisiveness
+3857 dangerously
+3856 culminating
+3855 criticising
+3854 hydrocarbons
+3853 coupled
+3852 imbalances
+3851 cooperating
+3850 contributing
+3849 contemplate
+3848 consumed
+3847 consultation
+3846 consolidating
+3845 conscious
+3844 confirming
+3843 concentrate
+3842 concealed
+3841 registration
+3840 comprises
+3839 complaining
+3838 commissioners
+3837 coffee
+3836 clean
+3835 classed
+3834 clarifying
+3833 satisfactorily
+3832 frustration
+3831 causes
+3830 caught
+3829 calculated
+3828 donors
+3827 surprise
+3826 obtained
+3825 deprived
+3824 routes
+3823 bus
+3822 burst
+3821 burn
+3820 briefly
+3819 borrowing
+3818 believes
+3817 belgium
+3816 split
+3815 lumbered
+3814 duty-bound
+3813 recourse
+3812 frank
+3811 assigned
+3810 cautious
+3809 attentive
+3808 unequal
+3807 allegations
+3806 strikes
+3805 backed
+3804 ideology
+3803 avoided
+3802 attracting
+3801 migrant
+3800 outset
+3799 asking
+3798 jacques
+3797 americans
+3796 insulting
+3795 assisting
+3794 useless
+3793 continual
+3792 opportune
+3791 tolerated
+3790 captive
+3789 approves
+3788 andalusia
+3787 urgency
+3786 clothes
+3785 cancel
+3784 impossible
+3783 offices
+3782 shifting
+3781 publishing
+3780 anti-racist
+3779 optimum
+3778 excess
+3777 exact
+3776 reservoir
+3775 awarded
+3774 american
+3773 albeit
+3772 infrastructure
+3771 airport
+3770 addresses
+3769 adding
+3768 adaptability
+3767 actively
+3766 accordingly
+3765 accompanying
+3764 accompanied
+3763 abuse
+3762 abominable
+3761 scarcely
+3760 tourist
+3759 shot
+3758 series
+3757 priori
+3756 load
+3755 poorly
+3754 pact
+3753 innovative
+3752 message
+3751 handful
+3750 mere
+3749 loss
+3748 jigsaw
+3747 horizon
+3746 fire
+3745 dictatorship
+3744 corresponding
+3743 blackmail
+3742 500
+3741 sv
+3740 nl
+3739 es
+3738 de
+3737 christian
+3736 1
+3735 onwards
+3734 sordid
+3733 ambassador
+3732 engine
+3731 candidacy
+3730 viewpoint
+3729 chocolate
+3728 reserved
+3727 promotions
+3726 rejects
+3725 properties
+3724 leadership
+3723 fifth
+3722 emu
+3721 backing
+3720 freedoms
+3719 finances
+3718 licence
+3717 captures
+3716 insolvency
+3715 universally
+3714 weighing
+3713 textiles
+3712 composed
+3711 enjoy
+3710 technique
+3709 supplement
+3708 premiums
+3707 obliged
+3706 vow
+3705 mistaken
+3704 plunge
+3703 judgement
+3702 religion
+3701 islam
+3700 interopérationnelle
+3699 persistent
+3698 france
+3697 correcting
+3696 ethical
+3695 consulting
+3694 constructed
+3693 comparable
+3692 duration
+3691 blockades
+3690 lasting
+3689 variety
+3688 reactions
+3687 alia
+3686 inter
+3685 justifiably
+3684 endure
+3683 episode
+3682 referring
+3681 honesty
+3680 headed
+3679 familiar
+3678 worth
+3677 pursued
+3676 transitional
+3675 goals
+3674 ambitious
+3673 tested
+3672 throwing
+3671 sufficiently
+3670 arising
+3669 significance
+3668 sensitivity
+3667 relatively
+3666 reconstruction
+3665 viable
+3664 prior
+3663 outer
+3662 towns
+3661 nuts
+3660 track
+3659 negative
+3658 month
+3657 lulù
+3656 killings
+3655 insisting
+3654 insiders
+3653 indirect
+3652 remembering
+3651 multinational
+3650 wonderful
+3649 precision
+3648 hide
+3647 handle
+3646 mouth
+3645 neo-colonialist
+3644 folly
+3643 finnish
+3642 fate
+3641 exchanges
+3640 evident
+3639 euro-african
+3638 drenched
+3637 deciding
+3636 decentralisation
+3635 cheer
+3634 exports
+3633 butter
+3632 bse
+3631 success
+3630 brilliant
+3629 bound
+3628 greece
+3627 extra
+3626 syndrome
+3625 employed
+3624 shooting
+3623 abstain
+3622 alas
+3621 struck
+3620 appointments
+3619 announced
+3618 tragic
+3617 fridays
+3616 cities
+3615 amsterdam
+3614 responded
+3613 therein
+3612 sir
+3611 negotiation
+3610 absurdities
+3609 catastrophe
+3608 prodi
+3607 withholding
+3606 testifying
+3605 scrutinised
+3604 personal
+3603 irrespective
+3602 illustrates
+3601 ideological
+3600 day-in
+3599 speakers
+3598 reflected
+3597 proclaimed
+3596 per
+3595 tended
+3594 exemplified
+3593 evidenced
+3592 borne
+3591 academics
+3590 coined
+3589 &#93;
+3588 asphalt
+3587 silent
+3586 &#91;
+3585 neutrality
+3584 arms
+3583 occurrence
+3582 singular
+3581 wto
+3580 translate
+3579 reversed
+3578 wall
+3577 wages
+3576 voted
+3575 unqualified
+3574 unknown
+3573 trans-european
+3572 exempt
+3571 contend
+3570 tight
+3569 thin
+3568 terrible
+3567 tales
+3566 surplus
+3565 surely
+3564 sufficient
+3563 substantial
+3562 stricter
+3561 stopped
+3560 stocks
+3559 stake
+3558 spare
+3557 sovereign
+3556 solely
+3555 slim
+3554 shamefully
+3553 schedule
+3552 returned
+3551 resident
+3550 refuge
+3549 tape
+3548 red
+3547 railway
+3546 toys
+3545 proven
+3544 productive
+3543 processed
+3542 predominates
+3541 stations
+3540 please
+3539 plant
+3538 pen
+3537 paragraphs
+3536 omitted
+3535 office
+3534 yours
+3533 tomorrow
+3532 technical
+3531 refund
+3530 profitability
+3529 institute
+3528 observers
+3527 nuisance
+3526 never
+3525 net
+3524 nepal
+3523 necessity
+3522 moved
+3521 mountains
+3520 missing
+3519 masses
+3518 marriage
+3517 lord
+3516 limitation
+3515 lent
+3514 league
+3513 succeeds
+3512 statute
+3511 ladder
+3510 labelled
+3509 know-how
+3508 knew
+3507 predecessors
+3506 becomes
+3505 iraq
+3504 investments
+3503 interpretation
+3502 internet
+3501 insult
+3500 inspectors
+3499 inquiries
+3498 innocent
+3497 indiscriminate
+3496 incorporated
+3495 raw
+3494 moscow
+3493 improvement
+3492 imagination
+3491 ignored
+3490 ignore
+3489 tried
+3488 hypocritical
+3487 reporting
+3486 skilled
+3485 highly
+3484 standard
+3483 harmful
+3482 grow
+3481 visa
+3480 underway
+3479 fuel
+3478 fragile
+3477 founded
+3476 foot
+3475 flee
+3474 fee
+3473 federation
+3472 fast
+3471 exponentially
+3470 expense
+3469 era
+3468 inefficiency
+3467 enormous
+3466 enforced
+3465 encouraged
+3464 roll
+3463 observation
+3462 reforms
+3461 easy
+3460 dramatically
+3459 dramatic
+3458 doubled
+3457 examples
+3456 peculiar
+3455 diligently
+3454 deleted
+3453 delayed
+3452 cycle
+3451 crises
+3450 contract
+3449 feed
+3448 contaminated
+3447 valid
+3446 distance
+3445 confused
+3444 tonight
+3443 combated
+3442 city
+3441 tack
+3440 categories
+3439 busy
+3438 revenue
+3437 brings
+3436 branches
+3435 exemption
+3434 block
+3433 billion
+3432 bigger
+3431 benzene
+3430 begins
+3429 published
+3428 transitory
+3427 removed
+3426 filled
+3425 born
+3424 banana
+3423 profession
+3422 audit
+3421 attract
+3420 domestic
+3419 assessed
+3418 inadequate
+3417 arrested
+3416 discussing
+3415 deep
+3414 approval
+3413 anywhere
+3412 queries
+3411 anxiety
+3410 animal-based
+3409 waiting
+3408 usefulness
+3407 oppose
+3406 continuation
+3405 stresses
+3404 notices
+3403 enforcement
+3402 issuing
+3401 started
+3400 prominence
+3399 none
+3398 tasks
+3397 delaying
+3396 rid
+3395 subscribe
+3394 enabled
+3393 rebels
+3392 contributes
+3391 transmission
+3390 opportunities
+3389 advised
+3388 advise
+3387 advertising
+3386 international
+3385 amnesty
+3384 amending
+3383 ambitions
+3382 amazement
+3381 altogether
+3380 suffered
+3379 meaning
+3378 haste
+3377 map
+3376 african
+3375 appeals
+3374 advance
+3373 soul
+3372 belarus
+3371 1981
+3370 100
+3369 similarly
+3368 energies
+3367 tens
+3366 preserving
+3365 penalises
+3364 unnecessarily
+3363 depriving
+3362 stabilising
+3361 survival
+3360 plus
+3359 pain
+3358 traceability
+3357 individually
+3356 inequalities
+3355 hair
+3354 upper
+3353 truly
+3352 piece
+3351 shaping
+3350 reuniting
+3349 condemnation
+3348 powerful
+3347 sharp
+3346 expects
+3345 commend
+3344 ever-increasing
+3343 hallmark
+3342 all-round
+3341 watchword
+3340 democrats
+3339 %
+3338 expressing
+3337 vessels
+3336 wear
+3335 viewpoints
+3334 unify
+3333 train
+3332 reverse
+3331 rebalance
+3330 outline
+3329 instil
+3328 birth
+3327 cope
+3326 modernisation
+3325 asean
+3324 affirm
+3323 indicate
+3322 belts
+3321 tighten
+3320 improvements
+3319 wage
+3318 attitudes
+3317 reasonable
+3316 substantially
+3315 stealth
+3314 spectrum
+3313 carpetshells
+3312 precursors
+3311 performance
+3310 p.m.
+3309 wood
+3308 standing
+3307 notably
+3306 minimum
+3305 manoeuvre
+3304 mad
+3303 lacks
+3302 monitors
+3301 investigated
+3300 region
+3299 pipeline
+3298 helps
+3297 removing
+3296 presenting
+3295 plenary
+3294 wipe
+3293 inject
+3292 consolidate
+3291 march
+3290 stored
+3289 liquid
+3288 high-level
+3287 hence
+3286 formulate
+3285 glass
+3284 months
+3283 genuine
+3282 addressing
+3281 figures
+3280 savings
+3279 students
+3278 erasmus
+3277 entered
+3276 electoral
+3275 denmark
+3274 demands
+3273 cow
+3272 counteract
+3271 corrects
+3270 guaranteed
+3269 congo
+3268 journeys
+3267 card
+3266 capabilities
+3265 inquiry
+3264 trained
+3263 defended
+3262 beneficial
+3261 bad
+3260 avert
+3259 equipped
+3258 appropriately
+3257 deterioration
+3256 trying
+3255 peaceful
+3254 bureaucracy
+3253 earth
+3252 concretely
+3251 achievable
+3250 africa
+3249 adapted
+3248 accepted
+3247 abortions
+3246 secondary
+3245 reaching
+3244 reducing
+3243 broadcast
+3242 freeing
+3241 thereby
+3240 specifically
+3239 pick
+3238 hopes
+3237 finds
+3236 fleeing
+3235 deceive
+3234 breaking
+3233 committing
+3232 update
+3231 reinforce
+3230 confront
+3229 conceal
+3228 alleviate
+3227 peasants
+3226 clarification
+3225 silence
+3224 organisms
+3223 minimise
+3222 partnership
+3221 efficiency
+3220 optimise
+3219 preparations
+3218 conjunction
+3217 helping
+3216 repeated
+3215 finance
+3214 rapidly
+3213 pressure
+3212 exerting
+3211 exactly
+3210 debt
+3209 curb
+3208 afterwards
+3207 converting
+3206 landscape
+3205 cells
+3204 redress
+3203 bid
+3202 investigating
+3201 woman
+3200 wholesale
+3199 voting
+3198 unlawful
+3197 warnings
+3196 farm
+3195 standardise
+3194 smoke
+3193 rethink
+3192 restriction
+3191 rational
+3190 prospects
+3189 protectionism
+3188 practising
+3187 passed
+3186 omissions
+3185 obsolete
+3184 norms
+3183 nets
+3182 minorities
+3181 lure
+3180 lower
+3179 solutions
+3178 lawful
+3177 labours
+3176 join
+3175 invited
+3174 input
+3173 isolation
+3172 ill
+3171 hindering
+3170 begun
+3169 harder
+3168 response
+3167 generous
+3166 gathering
+3165 leader
+3164 figure
+3163 operative
+3162 distribution
+3161 corners
+3160 widening
+3159 nowhere
+3158 cattle
+3157 shots
+3156 calculations
+3155 large-scale
+3154 intervene
+3153 historic
+3152 cap
+3151 breath
+3150 preventive
+3149 standardisation
+3148 blanket
+3147 respectable
+3146 discontinued
+3145 backwards
+3144 white
+3143 amended
+3142 accountability
+3141 accord
+3140 accident
+3139 token
+3138 pluralism
+3137 deterrent
+3136 candidate
+3135 baby
+3134 prefers
+3133 dollar
+3132 facilitate
+3131 favours
+3130 precautionary
+3129 breach
+3128 tries
+3127 depending
+3126 condemn
+3125 speedy
+3124 incorporating
+3123 plays
+3122 expression
+3121 amendment
+3120 first-hand
+3119 shape
+3118 communitisation
+3117 cuts
+3116 wasted
+3115 emanates
+3114 returning
+3113 posts
+3112 mindful
+3111 image
+3110 february
+3109 equally
+3108 encouragement
+3107 arrange
+3106 prejudice
+3105 unacceptable
+3104 imposing
+3103 instead
+3102 doors
+3101 timetables
+3100 construction
+3099 check
+3098 competence
+3097 consistent
+3096 worthwhile
+3095 smoking
+3094 examined
+3093 acceptance
+3092 gain
+3091 feedingstuffs
+3090 embarked
+3089 foremost
+3088 encouraging
+3087 scrutinise
+3086 subjected
+3085 sentences
+3084 disappear
+3083 promising
+3082 examine
+3081 nevertheless
+3080 practise
+3079 wrongly
+3078 commercial
+3077 practical
+3076 story
+3075 spheres
+3074 refrain
+3073 quotas
+3072 problematic
+3071 peacekeeping
+3070 eliminated
+3069 monopoly
+3068 model
+3067 migration
+3066 unimportant
+3065 welcomed
+3064 ridiculous
+3063 proportion
+3062 unusual
+3061 beginning
+3060 requirement
+3059 reservations
+3058 greens
+3057 errors
+3056 regimes
+3055 chance
+3054 heritage
+3053 cultural
+3052 confirms
+3051 broken
+3050 heavily
+3049 belgrade
+3048 irreversible
+3047 witnessing
+3046 alone
+3045 affinity
+3044 crumbs
+3043 mass
+3042 bit
+3041 december
+3040 31
+3039 1987
+3038 138
+3037 unfortunately
+3036 sends
+3035 runs
+3034 symbolic
+3033 opposed
+3032 diametrically
+3031 leaving
+3030 pension
+3029 explanation
+3028 het
+3027 stay
+3026 breathe
+3025 counted
+3024 looking
+3023 favourably
+3022 file
+3021 weak
+3020 sending
+3019 binding
+3018 imposed
+3017 exile
+3016 estimated
+3015 elected
+3014 wrong
+3013 caretaker
+3012 differently
+3011 handled
+3010 award
+3009 marks
+3008 object
+3007 distributor
+3006 expensive
+3005 cog
+3004 unit
+3003 grave
+3002 disabled
+3001 reconsider
+3000 pushed
+2999 boy
+2998 written
+2997 workload
+2996 worker
+2995 witness
+2994 widen
+2993 restricted
+2992 capacity
+2991 moments
+2990 nationalistic
+2989 travel
+2988 prefer
+2987 pin
+2986 opinions
+2985 died
+2984 travelled
+2983 chosen
+2982 frequent
+2981 escaped
+2980 neither
+2979 attend
+2978 writing
+2977 falling
+2976 active
+2975 analyse
+2974 farmers
+2973 young
+2972 restrict
+2971 qualify
+2970 works
+2969 reflect
+2968 alter
+2967 drastically
+2966 enjoyed
+2965 undertook
+2964 undermines
+2963 threatens
+2962 subsequently
+2961 clutter
+2960 viewed
+2959 similar
+2958 saw
+2957 extensive
+2956 purports
+2955 positive
+2954 obstacle
+2953 plunged
+2952 originate
+2951 occur
+2950 inspire
+2949 merited
+2948 meets
+2947 manufacture
+2946 logically
+2945 leaves
+2944 ultimately
+2943 entertained
+2942 kindly
+2941 drafted
+2940 conducive
+2939 iran
+2938 investigate
+2937 intervenes
+2936 impacts
+2935 identifies
+2934 dear
+2933 holds
+2932 highlights
+2931 approached
+2930 generated
+2929 associated
+2928 regained
+2927 submitted
+2926 espouse
+2925 encompasses
+2924 emphasises
+2923 differs
+2922 die
+2921 describe
+2920 depend
+2919 constitutes
+2918 clarifies
+2917 characterises
+2916 spell
+2915 authorised
+2914 arose
+2913 prescribed
+2912 issued
+2911 amounted
+2910 allows
+2909 affect
+2908 rapporteur
+2907 whatsoever
+2906 well-informed
+2905 wealth
+2904 waters
+2903 wanting
+2902 voluntary
+2901 capitalist
+2900 voices
+2899 violence
+2898 via
+2897 unemployed
+2896 underwrite
+2895 undermining
+2894 undermine
+2893 unanimity
+2892 unable
+2891 troops
+2890 transferring
+2889 tragedy
+2888 trafficking
+2887 touched
+2886 undertake
+2885 dragging
+2884 administrations
+2883 nuclear
+2882 blame
+2881 spend
+2880 allocation
+2879 revise
+2878 rebuild
+2877 rearrange
+2876 pursue
+2875 pull
+2874 prepare
+2873 pensioners
+2872 mitigate
+2871 maintaining
+2870 impose
+2869 humanity
+2868 honour
+2867 hit
+2866 hinder
+2865 guide
+2864 guaranteeing
+2863 fulfil
+2862 excise
+2861 entrust
+2860 enhance
+2859 enforce
+2858 divorce
+2857 discourage
+2856 determine
+2855 denounce
+2854 imbalance
+2853 coordinate
+2852 losing
+2851 processors
+2850 catch
+2849 break
+2848 boycott
+2847 addressed
+2846 ascertain
+2845 appeal
+2844 antibiotics
+2843 adhere
+2842 afford
+2841 thoroughly
+2840 sentence
+2839 technology
+2838 successful
+2837 expectation
+2836 visit
+2835 salary
+2834 scams
+2833 virtues
+2832 car
+2831 vintage
+2830 earlier
+2829 vessel
+2828 vision
+2827 utopian
+2826 usa
+2825 trial
+2824 territory
+2823 territories
+2822 tendency
+2821 stability
+2820 so-called
+2819 sexual
+2818 seriousness
+2817 separation
+2816 seeds
+2815 school
+2814 roadworthiness
+2813 roads
+2812 asylum
+2811 alcohol
+2810 valued
+2809 programming
+2808 contracts
+2807 proceeds
+2806 press
+2805 options
+2804 perpetrators
+2803 pensions
+2802 clause
+2801 outcome
+2800 politician
+2799 opposition
+2798 sea
+2797 objectives
+2796 nordic
+2795 mouths
+2794 motions
+2793 contributions
+2792 meetings
+2791 contained
+2790 limits
+2789 driving
+2788 lorries
+2787 location
+2786 lives
+2785 less
+2784 kosovo
+2783 kinds
+2782 joint
+2781 involvement
+2780 manufacturers
+2779 product
+2778 rich
+2777 participation
+2776 import
+2775 history
+2774 individuals
+2773 relied
+2772 gender
+2771 functioning
+2770 formation
+2769 floor
+2768 complain
+2767 explicit
+2766 elsewhere
+2765 raft
+2764 range
+2763 economies
+2762 gallery
+2761 diplomatic
+2760 corporate
+2759 prevalent
+2758 criminal
+2757 counterfeit
+2756 continued
+2755 provisions
+2754 college
+2753 clearest
+2752 cheap
+2751 carcasses
+2750 buildings
+2749 bounds
+2748 border
+2747 authorisation
+2746 weather
+2745 amount
+2744 organisations
+2743 advantages
+2742 board
+2741 desired
+2740 greatly
+2739 merit
+2738 jump
+2737 moving
+2736 parts
+2735 tells
+2734 simplify
+2733 reading
+2732 bearing
+2731 limit
+2730 roots
+2729 lie
+2728 liberalisation
+2727 worthy
+2726 ten
+2725 surrounded
+2724 previously
+2723 fathers
+2722 encourages
+2721 deplete
+2720 cut
+2719 commit
+2718 characterise
+2717 manipulated
+2716 ozone
+2715 reached
+2714 affects
+2713 subsequent
+2712 technologies
+2711 team
+2710 targeted
+2709 challenge
+2708 taboo
+2707 sustaining
+2706 suspend
+2705 suspected
+2704 hardly
+2703 small-scale
+2702 supplant
+2701 study
+2700 structure
+2699 strong
+2698 agrees
+2697 wholeheartedly
+2696 stance
+2695 stabilisation
+2694 sportsmen
+2693 spoken
+2692 splitting
+2691 sphere
+2690 submission
+2689 specified
+2688 speak
+2687 spade
+2686 skills
+2685 showing
+2684 shorter
+2683 shortcomings
+2682 shop
+2681 sets
+2680 sessions
+2679 senior
+2678 seized
+2677 second
+2676 scenario
+2675 equipment
+2674 safeguarding
+2673 safe
+2672 rushing
+2671 route
+2670 table
+2669 round
+2668 robust
+2667 revive
+2666 revising
+2665 restructuring
+2664 restraint
+2663 respond
+2662 requests
+2661 repression
+2660 representation
+2659 replace
+2658 wrought
+2657 repairing
+2656 remove
+2655 rehabilitation
+2654 regulating
+2653 regulate
+2652 developments
+2651 reflecting
+2650 refers
+2649 recycling
+2648 rectify
+2647 deplorable
+2646 recent
+2645 reaction
+2644 re-open
+2643 raising
+2642 race
+2641 quantity
+2640 pushing
+2639 pure
+2638 provisional
+2637 protocol
+2636 proposition
+2635 incineration
+2634 propose
+2633 promise
+2632 prohibit
+2631 profit
+2630 producing
+2629 proceedings
+2628 proactive
+2627 prisoner
+2626 primarily
+2625 prices
+2624 prevented
+2623 untimely
+2622 pretending
+2621 presidency
+2620 presented
+2619 preference
+2618 visitors
+2617 potential
+2616 postpone
+2615 qualities
+2614 possess
+2613 positions
+2612 portfolio
+2611 political
+2610 promotes
+2609 plants
+2608 planning
+2607 pilgrimage
+2606 phthalates
+2605 pervades
+2604 persons
+2603 suffering
+2602 racial
+2601 penalise
+2600 tribute
+2599 payment
+2598 partnerships
+2597 outstanding
+2596 origins
+2595 organising
+2594 gauge
+2593 operators
+2592 opec
+2591 coast
+2590 black
+2589 older
+2588 offered
+2587 yugoslavia
+2586 values
+2585 transition
+2584 traders
+2583 storms
+2582 previous
+2581 preparatory
+2580 observations
+2579 network
+2578 mutual
+2577 drugs
+2576 deficit
+2575 burden
+2574 airlines
+2573 terrorist
+2572 sterling
+2571 restoring
+2570 pulling
+2569 prohibition
+2568 hitherto
+2567 peace
+2566 politics
+2565 nos
+2564 ngos
+2563 negotiating
+2562 negotiated
+2561 neglect
+2560 natural
+2559 name
+2558 movements
+2557 vigilant
+2556 monitor
+2555 modified
+2554 minutes
+2553 minority
+2552 mergers
+2551 pieces
+2550 picking
+2549 merely
+2548 mediterranean
+2547 measuring
+2546 measure
+2545 match
+2544 opening
+2543 marginal
+2542 management
+2541 man-made
+2540 maintained
+2539 stronger
+2538 losses
+2537 loans
+2536 listened
+2535 choose
+2534 lift
+2533 letter
+2532 lessen
+2531 legitimately
+2530 powers
+2529 unfair
+2528 later
+2527 justified
+2526 reward
+2525 jurisdiction
+2524 recitals
+2523 disappeared
+2522 items
+2521 sees
+2520 enjoys
+2519 islands
+2518 charge
+2517 lost
+2516 cyprus
+2515 northern
+2514 projects
+2513 investigation
+2512 integrating
+2511 integrated
+2510 integrate
+2509 institution
+2508 instances
+2507 locations
+2506 inhabited
+2505 industrial
+2504 reorganise
+2503 independence
+2502 incurring
+2501 transparency
+2500 regions
+2499 interests
+2498 final
+2497 cold
+2496 summing
+2495 reconciling
+2494 ranks
+2493 benefit
+2492 imports
+2491 imported
+2490 related
+2489 impetus
+2488 policies
+2487 immigration
+2486 illegality
+2485 hours
+2484 historical
+2483 hidden
+2482 weaken
+2481 reasoning
+2480 principles
+2479 thrown
+2478 privilege
+2477 needed
+2476 invested
+2475 move
+2474 requested
+2473 handling
+2472 hands
+2471 habits
+2470 supporters
+2469 gorsel
+2468 narrow
+2467 germany
+2466 gear
+2465 gaps
+2464 gamble
+2463 frontiers
+2462 placing
+2461 monopolies
+2460 telecommunications
+2459 forwards
+2458 formal
+2457 foresee
+2456 pace
+2455 global
+2454 sake
+2453 purposes
+2452 thirty
+2451 membership
+2450 thorough
+2449 flynn
+2448 flying
+2447 flags
+2446 instrument
+2445 favouring
+2444 religious
+2443 faith
+2442 fails
+2441 draw
+2440 fail
+2439 straight
+2438 retaining
+2437 justification
+2436 facilitating
+2435 faced
+2434 disasters
+2433 eye
+2432 periods
+2431 extended
+2430 explain
+2429 power
+2428 excessive
+2427 event
+2426 mentioning
+2425 evaluation
+2424 evaluate
+2423 investment
+2422 etc
+2421 establishment
+2420 entitled
+2419 enquiry
+2418 engage
+2417 employers
+2416 eliminate
+2415 contribute
+2414 monitoring
+2413 service
+2412 educating
+2411 edges
+2410 eager
+2409 dossiers
+2408 dogs
+2407 document
+2406 disposal
+2405 displaced
+2404 disease
+2403 discrimination
+2402 disaster
+2401 diplomacy
+2400 difficulties
+2399 differ
+2398 dialogue
+2397 despicable
+2396 desire
+2395 deserve
+2394 desert
+2393 descriptions
+2392 delivery
+2391 definitions
+2390 defining
+2389 defenceless
+2388 expenditure
+2387 dedicated
+2386 organise
+2385 deaths
+2384 dealt
+2383 demonstration
+2382 dangerous
+2381 encompass
+2380 escapes
+2379 curtail
+2378 favourable
+2377 remedy
+2376 cure
+2375 cuba
+2374 cows
+2373 covert
+2372 practices
+2371 corrupt
+2370 coordination
+2369 current
+2368 functions
+2367 isolate
+2366 pressing
+2365 continually
+2364 containing
+2363 consumers
+2362 consumer
+2361 consistency
+2360 congress
+2359 conflicts
+2358 detention
+2357 concrete
+2356 sent
+2355 competitions
+2354 competencies
+2353 communities
+2352 communications
+2351 communication
+2350 tackle
+2349 combination
+2348 misinformation
+2347 combating
+2346 fund
+2345 cleaning
+2344 living
+2343 charges
+2342 championship
+2341 old
+2340 centuries
+2339 centre
+2338 central
+2337 majority
+2336 vast
+2335 carrying
+2334 campaigns
+2333 campaigning
+2332 prisoners
+2331 calculation
+2330 export
+2329 thanking
+2328 refugees
+2327 buy
+2326 sport
+2325 build
+2324 bubble
+2323 presents
+2322 bring
+2321 boycotting
+2320 borders
+2319 profile
+2318 wounds
+2317 bind
+2316 producers
+2315 big
+2314 labelling
+2313 double
+2312 selected
+2311 charter
+2310 beings
+2309 unsatisfactory
+2308 met
+2307 stipulate
+2306 beauty
+2305 bears
+2304 instituted
+2303 defined
+2302 bank
+2301 bangladesh
+2300 emissions
+2299 aviation
+2298 authorities
+2297 attempted
+2296 latest
+2295 asset
+2294 assessment
+2293 assessing
+2292 aspects
+2291 dealing
+2290 centres
+2289 articles
+2288 article
+2287 arise
+2286 uniform
+2285 unjust
+2284 fashion
+2283 talking
+2282 tackling
+2281 separated
+2280 subsidies
+2279 reliant
+2278 dyes
+2277 hindered
+2276 attacked
+2275 attended
+2274 archaic
+2273 approved
+2272 approve
+2271 applies
+2270 applicable
+2269 appealing
+2268 rest
+2267 anyway
+2266 anxious
+2265 antiquated
+2264 anticipating
+2263 answered
+2262 answer
+2261 animal
+2260 wishes
+2259 start-ups
+2258 phenomenon
+2257 spread
+2256 geographical
+2255 wide
+2254 scoreboard
+2253 reproduced
+2252 preservation
+2251 consequent
+2250 species
+2249 vigorous
+2248 independent
+2247 step
+2246 situations
+2245 forecasts
+2244 emerging
+2243 trends
+2242 describes
+2241 boost
+2240 fishing
+2239 omission
+2238 treated
+2237 complement
+2236 useful
+2235 footing
+2234 among
+2233 sections
+2232 delete
+2231 prospect
+2230 allocating
+2229 allocated
+2228 aiming
+2227 aids
+2226 agenda
+2225 age
+2224 affinities
+2223 affair
+2222 court
+2221 aegis
+2220 movement
+2219 adjustment
+2218 additions
+2217 guidelines
+2216 poverty
+2215 moral
+2214 material
+2213 acts
+2212 activities
+2211 acted
+2210 acp
+2209 harmonisation
+2208 accorded
+2207 accordance
+2206 above
+2205 parents
+2204 overcome
+2203 abandonment
+2202 vector
+2201 incentive
+2200 tremendous
+2199 tool
+2198 practice
+2197 resolution
+2196 precedent
+2195 poor
+2194 effective
+2193 degree
+2192 higher
+2191 daily
+2190 nor
+2189 flexibility
+2188 95
+2187 34
+2186 ...
+2185 applicant
+2184 cooperate
+2183 replaced
+2182 discussion
+2181 amendments
+2180 arises
+2179 fruits
+2178 bureau
+2177 4
+2176 nation
+2175 motivated
+2174 wrecking
+2173 wreck
+2172 single
+2171 profits
+2170 popularity
+2169 covered
+2168 valuable
+2167 shed
+2166 behave
+2165 sang
+2164 courageously
+2163 opened
+2162 kept
+2161 sitting
+2160 described
+2159 deprive
+2158 championed
+2157 worried
+2156 excluded
+2155 consist
+2154 adopt
+2153 transmitted
+2152 forcefully
+2151 characteristically
+2150 concluded
+2149 undoubtedly
+2148 facilities
+2147 transfers
+2146 signed
+2145 surpass
+2144 strive
+2143 stem
+2142 playing
+2141 encourage
+2140 initiated
+2139 seemed
+2138 seek
+2137 resulted
+2136 restricts
+2135 relate
+2134 operate
+2133 purely
+2132 largely
+2131 still
+2130 rife
+2129 criticism
+2128 nowadays
+2127 host
+2126 currently
+2125 connected
+2124 insist
+2123 identical
+2122 helped
+2121 adversely
+2120 required
+2119 reduced
+2118 become
+2117 play
+2116 forces
+2115 employ
+2114 defends
+2113 decided
+2112 covers
+2111 earmarked
+2110 details
+2109 contain
+2108 conceals
+2107 checks
+2106 endorsed
+2105 came
+2104 voters
+2103 improve
+2102 willing
+2101 falls
+2100 aims
+2099 advocates
+2098 adapt
+2097 accounts
+2096 supply
+2095 wherever
+2094 try
+2093 fault
+2092 attempt
+2091 monitored
+2090 men
+2089 season
+2088 open
+2087 victims
+2086 sort
+2085 verging
+2084 urban
+2083 until
+2082 circumstances
+2081 sides
+2080 trace
+2079 rapporteurs
+2078 specialised
+2077 consult
+2076 spirit
+2075 guiding
+2074 amend
+2073 summer
+2072 choice
+2071 running
+2070 walls
+2069 top
+2068 collection
+2067 tariffs
+2066 reassuring
+2065 supposedly
+2064 palestinian
+2063 speaker
+2062 results
+2061 precise
+2060 seas
+2059 pollution
+2058 objects
+2057 plastic
+2056 vulnerable
+2055 radical
+2054 mdc
+2053 landmines
+2052 threats
+2051 exploitation
+2050 elderly
+2049 relations
+2048 closer
+2047 destabilising
+2046 continuing
+2045 puts
+2044 author
+2043 countless
+2042 cost
+2041 tax
+2040 targets
+2039 supported
+2038 fishermen
+2037 stemming
+2036 sometimes
+2035 respected
+2034 separate
+2033 seeking
+2032 safeguard
+2031 rush
+2030 routine
+2029 rewarded
+2028 resulting
+2027 regarding
+2026 reforming
+2025 protected
+2024 promoting
+2023 prescribe
+2022 prepared
+2021 special
+2020 north
+2019 credit
+2018 paragraph
+2017 outlined
+2016 closing
+2015 ostensibly
+2014 ordinary
+2013 pretext
+2012 intergovernmental
+2011 oil
+2010 sectors
+2009 professional
+2008 creates
+2007 mrs
+2006 precisely
+2005 local
+2004 item
+2003 change
+2002 duty
+2001 assets
+2000 reserve
+1999 increasing
+1998 identify
+1997 places
+1996 society
+1995 prize
+1994 nobel
+1993 holder
+1992 meet
+1991 standpoint
+1990 freedom
+1989 free
+1988 frankly
+1987 formulated
+1986 forms
+1985 forced
+1984 instance
+1983 flight
+1982 sites
+1981 evolving
+1980 democratic
+1979 enshrining
+1978 enjoying
+1977 engaging
+1976 elevated
+1975 election
+1974 generating
+1973 diminish
+1972 inspired
+1971 schemes
+1970 pilot
+1969 waste
+1968 broader
+1967 developing
+1966 declaring
+1965 deriving
+1964 democracy
+1963 customs
+1962 custody
+1961 hatred
+1960 fomented
+1959 cultivated
+1958 created
+1957 consisting
+1956 compulsory
+1955 complaints
+1954 bolkestein
+1953 closures
+1952 indicative
+1951 restore
+1950 absorb
+1949 broad
+1948 benefiting
+1947 governed
+1946 alternative
+1945 dictating
+1944 stipulated
+1943 biological
+1942 donor
+1941 apart
+1940 cast
+1939 milk
+1938 heading
+1937 prevention
+1936 players
+1935 amounts
+1934 attached
+1933 strategies
+1932 aimed
+1931 linked
+1930 barbarity
+1929 affecting
+1928 immigrants
+1927 admittedly
+1926 regionalisation
+1925 generation
+1924 commences
+1923 climate
+1922 workings
+1921 structures
+1920 views
+1919 space
+1918 eyes
+1917 external
+1916 settlement
+1915 mother
+1914 traitors
+1913 attitude
+1912 administration
+1911 significantly
+1910 owe
+1909 intend
+1908 preparing
+1907 drawing
+1906 arisen
+1905 rely
+1904 receive
+1903 pump
+1902 tobacco
+1901 subscribed
+1900 military
+1899 drew
+1898 function
+1897 twofold
+1896 ones
+1895 utmost
+1894 methods
+1893 goal
+1892 failures
+1891 gained
+1890 experience
+1889 concerning
+1888 calculating
+1887 assistance
+1886 assessments
+1885 2000
+1884 2
+1883 flow
+1882 owners
+1881 contents
+1880 inspection
+1879 supervision
+1878 paying
+1877 threaten
+1876 tackled
+1875 stupid
+1874 suspended
+1873 strangely
+1872 assassinated
+1871 channelling
+1870 disputes
+1869 deadlines
+1868 challenges
+1867 formulas
+1866 illusion
+1865 habit
+1864 acquired
+1863 refused
+1862 conventions
+1861 improved
+1860 eternal
+1859 lose
+1858 cancels
+1857 varying
+1856 sympathise
+1855 create
+1854 hoping
+1853 chiefly
+1852 operated
+1851 palestine
+1850 failed
+1849 leukaemia
+1848 laws
+1847 lady
+1846 regulated
+1845 unprecedented
+1844 female
+1843 workforce
+1842 stringent
+1841 transposition
+1840 unspecified
+1839 jobs
+1838 tend
+1837 correspond
+1836 understandably
+1835 killed
+1834 spoke
+1833 speaks
+1832 judges
+1831 continues
+1830 ourselves
+1829 restored
+1828 wants
+1827 offers
+1826 necessarily
+1825 derived
+1824 intends
+1823 expands
+1822 denounces
+1821 denies
+1820 constantly
+1819 sums
+1818 allegedly
+1817 generally
+1816 introduction
+1815 asked
+1814 vote
+1813 turkish
+1812 win
+1811 around
+1810 represent
+1809 refuse
+1808 effort
+1807 stood
+1806 orders
+1805 follow
+1804 ways
+1803 discover
+1802 decide
+1801 combat
+1800 resolved
+1799 bans
+1798 address
+1797 kingdom
+1796 united
+1795 truth
+1794 text
+1793 supplier
+1792 subjects
+1791 recipient
+1790 attack
+1789 racist
+1788 quota
+1787 pursuit
+1786 private
+1785 primacy
+1784 path
+1783 original
+1782 code
+1781 oie
+1780 turkey
+1779 content
+1778 moisture
+1777 maximum
+1776 prostitution
+1775 combined
+1774 project
+1773 eu-acp
+1772 illness
+1771 rates
+1770 death
+1769 courts
+1768 damages
+1767 compensation
+1766 body
+1765 bench
+1764 advanced
+1763 communautaire
+1762 acquis
+1761 ability
+1760 wished
+1759 begin
+1758 reduces
+1757 survey
+1756 strengthening
+1755 stops
+1754 start
+1753 standards
+1752 introduce
+1751 rural
+1750 rolls
+1749 restructure
+1748 restrictions
+1747 recommendation
+1746 recall
+1745 prison
+1744 premises
+1743 polices
+1742 permissible
+1741 pays
+1740 part-time
+1739 parliamentary
+1738 par
+1737 packet
+1736 destroy
+1735 wanted
+1734 taxes
+1733 stopping
+1732 secrecy
+1731 russia
+1730 liberty
+1729 radio
+1728 propaganda
+1727 relevance
+1726 organisation
+1725 skill
+1724 considerable
+1723 instruments
+1722 conditional
+1721 occasion
+1720 obligations
+1719 nature
+1718 parliaments
+1717 mozambique
+1716 monetary
+1715 mechanism
+1714 pending
+1713 litigation
+1712 led
+1711 law
+1710 initiative
+1709 victim
+1708 institutions
+1707 incident
+1706 strike
+1705 hunger
+1704 passport
+1703 himself
+1702 known
+1701 liked
+1700 obtain
+1699 employing
+1698 guilty
+1697 popular
+1696 partido
+1695 former
+1694 motion
+1693 officials
+1692 century
+1691 flag
+1690 speeches
+1689 fine
+1688 value
+1687 housekeeping
+1686 field
+1685 families
+1684 manage
+1683 facing
+1682 facility
+1681 extremism
+1680 timely
+1679 existed
+1678 excellence
+1677 interventions
+1676 crime
+1675 computer
+1674 entity
+1673 entering
+1672 endeavour
+1671 enables
+1670 occurs
+1669 e-commerce
+1668 drastic
+1667 doubtful
+1666 dogged
+1665 discussions
+1664 dimension
+1663 deserving
+1662 data
+1661 coverage
+1660 growth
+1659 counter
+1658 ministers
+1657 cooperation
+1656 convenience
+1655 fulfils
+1654 consensus
+1653 conflict
+1652 comprising
+1651 competent
+1650 coming
+1649 goods
+1648 cod
+1647 claims
+1646 china
+1645 changes
+1644 belonging
+1643 neighbours
+1642 downward
+1641 basic
+1640 sound
+1639 banning
+1638 balkans
+1637 authorise
+1636 operating
+1635 watch
+1634 keeps
+1633 satisfying
+1632 looked
+1631 growing
+1630 alzheimer
+1629 adjustments
+1628 activity
+1627 scientific
+1626 accessibility
+1625 trade
+1624 permanent
+1623 man
+1622 foolish
+1621 half
+1620 currency
+1619 consequence
+1618 compromise
+1617 collective
+1616 conditions
+1615 media
+1614 youth
+1613 yield
+1612 fly
+1611 warned
+1610 represents
+1609 reiterated
+1608 key
+1607 talks
+1606 heads
+1605 fulfilled
+1604 guided
+1603 buys
+1602 foster
+1601 liable
+1600 settled
+1599 eventually
+1598 condemned
+1597 upholds
+1596 stands
+1595 represented
+1594 relates
+1593 reflects
+1592 received
+1591 provides
+1590 proposes
+1589 lays
+1588 laid
+1587 link
+1586 supposed
+1585 funded
+1584 introduces
+1583 leads
+1582 inevitably
+1581 includes
+1580 hits
+1579 scene
+1578 divided
+1577 grew
+1576 gives
+1575 form
+1574 everybody
+1573 approaches
+1572 yardstick
+1571 scheduled
+1570 austrian
+1569 syria
+1568 whom
+1567 together
+1566 serve
+1565 plunder
+1564 controls
+1563 tighter
+1562 quarters
+1561 annual
+1560 welfare
+1559 official
+1558 preparation
+1557 north-west
+1556 manipulation
+1555 socialist
+1554 lake
+1553 lieu
+1552 grand
+1551 foreign
+1550 applying
+1549 tabled
+1548 businesses
+1547 romany
+1546 referred
+1545 poorer
+1544 offering
+1543 influence
+1542 lacking
+1541 decisive
+1540 attempting
+1539 involving
+1538 including
+1537 relation
+1536 infectious
+1535 i.e.
+1534 highlighting
+1533 globalisation
+1532 followed
+1531 dressed
+1530 covering
+1529 courage
+1528 executive
+1527 chief
+1526 chairman
+1525 authority
+1524 early
+1523 assist
+1522 list
+1521 draft
+1520 cohesion
+1519 pt
+1518 assembly
+1517 consultative
+1516 worse
+1515 working
+1514 winning
+1513 wide-spread
+1512 attempts
+1511 whose
+1510 requires
+1509 contains
+1508 began
+1507 misconduct
+1506 well-known
+1505 war
+1504 embark
+1503 version
+1502 unita
+1501 understands
+1500 undergone
+1499 unanimously
+1498 turning
+1497 treaty
+1496 disagreement
+1495 tolerate
+1494 withdraw
+1493 planned
+1492 treat
+1491 treaties
+1490 revision
+1489 talk
+1488 suit
+1487 submit
+1486 strengthen
+1485 condolences
+1484 yes
+1483 redirect
+1482 convincing
+1481 provide
+1480 proceed
+1479 positively
+1478 noise
+1477 adverse
+1476 invite
+1475 initiate
+1474 highlight
+1473 findings
+1472 exploit
+1471 vigilance
+1470 extreme
+1469 exercise
+1468 everyone
+1467 enable
+1466 deny
+1465 compliance
+1464 carefully
+1463 comply
+1462 training
+1461 complete
+1460 damaging
+1459 assure
+1458 assess
+1457 times
+1456 thinks
+1455 worst
+1454 timber
+1453 exaggerated
+1452 went
+1451 listen
+1450 welcome
+1449 confronting
+1448 violations
+1447 various
+1446 under
+1445 balanced
+1444 obviously
+1443 systems
+1442 crisis
+1441 implications
+1440 row
+1439 urgent
+1438 delays
+1437 reputation
+1436 purpose
+1435 charged
+1434 price
+1433 presentation
+1432 latter
+1431 governing
+1430 culture
+1429 relief
+1428 emergency
+1427 crimes
+1426 agents
+1425 colouring
+1424 developed
+1423 needs
+1422 somebody
+1421 energy
+1420 renewable
+1419 remains
+1418 relationships
+1417 population
+1416 perhaps
+1415 ours
+1414 beef
+1413 look
+1412 successive
+1411 several
+1410 eve
+1409 else
+1408 negotiations
+1407 develop
+1406 mechanisms
+1405 expenses
+1404 administrative
+1403 learning
+1402 lifelong
+1401 late
+1400 resources
+1399 ought
+1398 illegally
+1397 consulted
+1396 prediction
+1395 ideas
+1394 played
+1393 undertaken
+1392 children
+1391 thousand
+1390 six
+1389 five
+1388 stock
+1387 fallen
+1386 exists
+1385 especially
+1384 environment
+1383 eliminating
+1382 electricity
+1381 decisions
+1380 close
+1379 head
+1378 bending
+1377 relating
+1376 anything
+1375 costs
+1374 recovery
+1373 aircraft
+1372 national
+1371 country
+1370 third
+1369 framework
+1368 difference
+1367 creditable
+1366 000
+1365 5
+1364 date
+1363 owing
+1362 overall
+1361 notwithstanding
+1360 june
+1359 drafting
+1358 cases
+1357 ideally
+1356 each
+1355 due
+1354 consequently
+1353 compared
+1352 texts
+1351 recently
+1350 general
+1349 statements
+1348 few
+1347 test
+1346 task
+1345 sustainable
+1344 suggests
+1343 suggested
+1342 suffer
+1341 relevant
+1340 substance
+1339 subsidy
+1338 structural
+1337 factors
+1336 strategy
+1335 stick
+1334 status
+1333 term
+1332 stated
+1331 stand
+1330 stage
+1329 specify
+1328 specific
+1327 sorted
+1326 social
+1325 slick
+1324 sincerely
+1323 shows
+1322 capable
+1321 itself
+1320 throughout
+1319 share
+1318 educational
+1317 sabotage
+1316 strange
+1315 seem
+1314 seeks
+1313 adoption
+1312 signs
+1311 scheme
+1310 says
+1309 safety
+1308 rule
+1307 role
+1306 richest
+1305 revised
+1304 revelation
+1303 revealed
+1302 responsibility
+1301 responsibilities
+1300 requirements
+1299 reported
+1298 regretfully
+1297 recycle
+1296 records
+1295 recommended
+1294 recognises
+1293 suspect
+1292 realised
+1291 category
+1290 reach
+1289 raised
+1288 raise
+1287 prove
+1286 proposals
+1285 proposal
+1284 programme
+1283 pricing
+1282 presence
+1281 premise
+1280 powerfully
+1279 possibly
+1278 polluted
+1277 increasingly
+1276 policy
+1275 points
+1274 pointing
+1273 pleasure
+1272 plainly
+1271 pity
+1270 picked
+1269 persuade
+1268 perspective
+1267 permitted
+1266 patients
+1265 past
+1264 pass
+1263 particular
+1262 own
+1261 overlook
+1260 world
+1259 outside
+1258 option
+1257 operation
+1256 usual
+1255 tightening
+1254 protection
+1253 occurred
+1252 notion
+1251 confusion
+1250 notice
+1249 noted
+1248 nonetheless
+1247 settle
+1246 sterckx
+1245 unfortunate
+1244 serious
+1243 minds
+1242 mep
+1241 pot
+1240 melting
+1239 normally
+1238 matters
+1237 materials
+1236 mandate
+1235 distinction
+1234 lra
+1233 longer
+1232 logical
+1231 reports
+1230 lobby
+1229 live
+1228 line
+1227 lies
+1226 letting
+1225 letters
+1224 learned
+1223 lessons
+1222 left
+1221 leave
+1220 least
+1219 lay
+1218 knows
+1217 keep
+1216 keen
+1215 justify
+1214 bottom
+1213 mark
+1212 properly
+1211 needing
+1210 italy
+1209 actions
+1208 something
+1207 necessary
+1206 introduced
+1205 intense
+1204 intended
+1203 cover
+1202 insurance
+1201 insists
+1200 merits
+1199 economy
+1198 informal
+1197 inform
+1196 industry
+1195 indicating
+1194 indicates
+1193 passing
+1192 implies
+1191 imperative
+1190 dumping
+1189 illegal
+1188 ignorance
+1187 shortly
+1186 identifying
+1185 rights
+1184 honourable
+1183 investigative
+1182 holding
+1181 her
+1180 hearts
+1179 suggestions
+1178 hearing
+1177 insisted
+1176 held
+1175 had
+1174 groups
+1173 grounds
+1172 ground
+1171 greatest
+1170 greater
+1169 importance
+1168 great
+1167 governments
+1166 government
+1165 news
+1164 gone
+1163 going
+1162 glad
+1161 getting
+1160 support
+1159 fundamental
+1158 fully
+1157 front
+1156 loud
+1155 formally
+1154 forgetting
+1153 force
+1152 sharing
+1151 representatives
+1150 regulatory
+1149 meps
+1148 legislation
+1147 spirits
+1146 keeping
+1145 infrastructures
+1144 managed
+1143 full
+1142 egypt
+1141 debating
+1140 foreigners
+1139 back
+1138 send
+1137 regulation
+1136 fish
+1135 firm
+1134 numbers
+1133 hard
+1132 feeling
+1131 feature
+1130 far-reaching
+1129 falsification
+1128 she
+1127 procedures
+1126 bodies
+1125 judicial
+1124 happen
+1123 companies
+1122 face
+1121 explained
+1120 experiencing
+1119 dictatorships
+1118 existence
+1117 exemptions
+1116 thresholds
+1115 exceedances
+1114 everything
+1113 events
+1112 establishes
+1111 equal
+1110 envisage
+1109 endemic
+1108 beating
+1107 encountering
+1106 emphasise
+1105 placed
+1104 emerge
+1103 elements
+1102 efforts
+1101 effects
+1100 easier
+1099 dynamic
+1098 pregnancy
+1097 during
+1096 drive
+1095 drawn
+1094 really
+1093 distressing
+1092 disregard
+1091 dismantled
+1090 discovering
+1089 difficult
+1088 differentiated
+1087 different
+1086 did
+1085 detriment
+1084 detail
+1083 compensate
+1082 demonstrate
+1081 demand
+1080 delay
+1079 deeds
+1078 plans
+1077 decommissioning
+1076 declared
+1075 interest
+1074 declare
+1073 debates
+1072 danger
+1071 lifelines
+1070 cutting
+1069 crossed
+1068 easily
+1067 could
+1066 convinced
+1065 convince
+1064 conviction
+1063 contributed
+1062 treatment
+1061 continue
+1060 context
+1059 constitutional
+1058 constant
+1057 considering
+1056 consideration
+1055 consider
+1054 connection
+1053 approaching
+1052 congratulated
+1051 confidence
+1050 conference
+1049 conducted
+1048 conclude
+1047 concerns
+1046 concern
+1045 complex
+1044 completely
+1043 legality
+1042 security
+1041 knowledge
+1040 common
+1039 committees
+1038 commitment
+1037 comment
+1036 commended
+1035 production
+1034 comes
+1033 colleagues
+1032 classification
+1031 clarify
+1030 channel
+1029 certainty
+1028 forests
+1027 damage
+1026 devastating
+1025 caused
+1024 carry
+1023 care
+1022 help
+1021 confident
+1020 campos
+1019 calling
+1018 building
+1017 light
+1016 brought
+1015 bringing
+1014 book
+1013 blood
+1012 blind
+1011 morning
+1010 blatantly
+1009 best
+1008 believing
+1007 belief
+1006 worked
+1005 regarded
+1004 forgotten
+1003 education
+1002 primary
+1001 universal
+1000 behind
+999 told
+998 mentioned
+997 levelled
+996 informed
+995 implemented
+994 levels
+993 became
+992 bear
+991 shared
+990 widely
+989 understood
+988 ruled
+987 grant
+986 judged
+985 increase
+984 increased
+983 basically
+982 background
+981 away
+980 priorities
+979 immediately
+978 avoid
+977 available
+976 method
+975 auction
+974 problems
+973 once
+972 large
+971 assured
+970 assurances
+969 assurance
+968 assuming
+967 assume
+966 organised
+965 fresh
+964 ascending
+963 attacks
+962 soldiers
+961 quickly
+960 were
+959 follows
+958 difficulty
+957 arrangements
+956 argument
+955 arena
+954 intervention
+953 association
+952 doing
+951 appreciate
+950 applications
+949 applause
+948 appears
+947 appearance
+946 appear
+945 anyone
+944 proof
+943 kind
+942 aspect
+941 animals
+940 transparently
+939 invest
+938 food
+937 unsafe
+936 gave
+935 equilibrium
+934 territorial
+933 reiterate
+932 tangible
+931 finding
+930 exclude
+929 defence
+928 expressed
+927 analysis
+926 extent
+925 assumption
+924 evidence
+923 ample
+922 america
+921 ambush
+920 always
+919 record
+918 built
+917 lines
+916 along
+915 allowed
+914 products
+913 realise
+912 airports
+911 agreement
+910 length
+909 agreed
+908 agencies
+907 after
+906 afraid
+905 advocating
+904 advisors
+903 advantage
+902 adopted
+901 admits
+900 adequately
+899 addition
+898 actual
+897 acknowledges
+896 acknowledged
+895 acknowledge
+894 achieved
+893 accession
+892 accepting
+891 accept
+890 absence
+889 echo
+888 satisfy
+887 sign
+886 shame
+885 return
+884 odd
+883 days
+882 police
+881 ago
+880 manner
+879 leading
+878 seed
+877 huge
+876 friday
+875 direct
+874 conscience
+873 claim
+872 battle
+871 plan
+870 legal
+869 suggestion
+868 fr
+867 (
+866 seriously
+865 cannot
+864 worrying
+863 badly
+862 lowest
+861 stressing
+860 place
+859 took
+858 liver
+857 whereas
+856 feel
+855 underlines
+854 tourism
+853 wit
+852 put
+851 prevent
+850 involved
+849 personally
+848 thus
+847 assertion
+846 then
+845 women
+844 slavery
+843 regular
+842 shipping
+841 perfect
+840 continent
+839 within
+838 behaviour
+837 lot
+836 thanks
+835 solution
+834 entire
+833 suggesting
+832 some
+831 wait
+830 secondly
+829 peat
+828 scottish
+827 safeguards
+826 resolve
+825 lists
+824 requiring
+823 require
+822 rather
+821 putting
+820 prompted
+819 prevents
+818 particularly
+817 overlooked
+816 obligation
+815 or
+814 offer
+813 high
+812 rise
+811 occasionally
+810 hatzidakis
+809 madame
+808 madam
+807 largest
+806 affairs
+805 home
+804 creation
+803 job
+802 ironic
+801 foreseeable
+800 essentially
+799 appeared
+798 introducing
+797 inherent
+796 turn
+795 preventing
+794 conclusion
+793 implied
+792 refer
+791 noticed
+790 pleased
+789 incidence
+788 hopefully
+787 however
+786 how
+785 voice
+784 giving
+783 given
+782 furthermore
+781 soon
+780 undertaking
+779 indeed
+778 genuinely
+777 finally
+776 fears
+775 indicated
+774 expert
+773 provided
+772 equivalent
+771 enabling
+770 effectively
+769 reform
+768 democrat
+767 creating
+766 concludes
+765 committed
+764 when
+763 further
+762 coinciding
+761 understanding
+760 claiming
+759 changing
+758 cause
+757 speaking
+756 broadly
+755 both
+754 avoiding
+753 lack
+752 result
+751 apparently
+750 express
+749 leaders
+748 find
+747 almost
+746 admit
+745 little
+744 adds
+743 does
+742 forum
+741 incorporate
+740 )
+739 schwerwiegend
+738 &apos;s
+737 ;
+736 statement
+735 development
+734 regional
+733 conduct
+732 measures
+731 workers
+730 why
+729 estimate
+728 volume
+727 virtue
+726 vigorously
+725 using
+724 understand
+723 citizens
+722 speed
+721 considerations
+720 remember
+719 push
+718 maintain
+717 get
+716 establish
+715 through
+714 defend
+713 thinking
+712 total
+711 correctly
+710 programmes
+709 regulations
+708 target
+707 heart
+706 emphasis
+705 economic
+704 consumption
+703 consequences
+702 heard
+701 unemployment
+700 initiatives
+699 these
+698 end
+697 no
+696 carried
+695 wording
+694 vital
+693 type
+692 subject
+691 small
+690 size
+689 scope
+688 permits
+687 residence
+686 patent
+685 quality
+684 projections
+683 processing
+682 agreements
+681 preliminary
+680 responsible
+679 set
+678 offences
+677 new
+676 affected
+675 industries
+674 budget
+673 group
+672 financial
+671 secured
+670 deal
+669 conditionality
+668 cars
+667 ban
+666 integration
+665 position
+664 enter
+663 nothing
+662 money
+661 its
+660 partly
+659 was
+658 implementing
+657 health
+656 individual
+655 eu
+654 civil
+653 charging
+652 budgetary
+651 detrimental
+650 marker
+649 resistance
+648 antibiotic
+647 agricultural
+646 suspension
+645 timescale
+644 decades
+643 example
+642 appropriations
+641 scenes
+640 dark
+639 than
+638 tell
+637 takes
+636 suppliers
+635 such
+634 stressed
+633 strengthened
+632 sporting
+631 water
+630 specifies
+629 surprised
+628 somewhat
+627 since
+626 mainly
+625 themselves
+624 shown
+623 shall
+622 serves
+621 extension
+620 considers
+619 he
+618 same
+617 road
+616 resurgence
+615 respect
+614 reminded
+613 remind
+612 reluctance
+611 regards
+610 recognition
+609 recognised
+608 reality
+607 real
+606 remarks
+605 rightly
+604 provision
+603 proved
+602 produce
+601 procedure
+600 possibility
+599 pointed
+598 agriculture
+597 period
+596 payments
+595 pay
+594 weighed
+593 application
+592 ngo
+591 papers
+590 out
+589 right
+588 part
+587 constitute
+586 operations
+585 produced
+584 land
+583 recognising
+582 occasions
+581 obvious
+580 observe
+579 observance
+578 intention
+577 recognise
+576 more
+575 happens
+574 whatever
+573 metaphor
+572 mention
+571 maghreb
+570 likely
+569 learn
+568 labour
+567 jeopardising
+566 means
+565 read
+564 sector
+563 threat
+562 involve
+561 incorporation
+560 inclusion
+559 taking
+558 stones
+557 precious
+556 importantly
+555 impact
+554 imagine
+553 ideals
+552 hope
+551 hold
+550 highlighted
+549 heavy
+548 happened
+547 funding
+546 guarantees
+545 guarantee
+544 thing
+543 reason
+542 good
+541 from
+540 french
+539 seeing
+538 forward
+537 forming
+536 first
+535 moment
+534 granting
+533 upon
+532 focus
+531 session
+530 fill
+529 fear
+528 favour
+527 number
+526 fall
+525 directive
+524 un
+523 implement
+522 failure
+521 those
+520 scrapie
+519 against
+518 fight
+517 coherence
+516 extending
+515 extend
+514 experts
+513 expect
+512 ever
+511 often
+510 establishing
+509 ensuring
+508 parties
+507 enough
+506 down
+505 disagree
+504 reduce
+503 determination
+502 destroyed
+501 demonstrated
+500 demanding
+499 deliver
+498 delegation
+497 day
+496 critical
+495 origin
+494 countries
+493 count
+492 correct
+491 considered
+490 irrelevant
+489 company
+488 community
+487 crucial
+486 clearly
+485 element
+484 contribution
+483 claimed
+482 certain
+481 causing
+480 probably
+479 dispute
+478 business
+477 beyond
+476 between
+475 better
+474 becoming
+473 basis
+472 awareness
+471 aware
+470 awarding
+469 meeting
+468 attention
+467 arguing
+466 argued
+465 argue
+464 areas
+463 acting
+462 appropriate
+461 approach
+460 reveals
+459 applied
+458 apparent
+457 anybody
+456 anticipate
+455 proper
+454 let
+453 stop
+452 immediate
+451 also
+450 allowing
+449 control
+448 traffic
+447 air
+446 making
+445 aim
+444 agree
+443 adopting
+442 added
+441 add
+440 actually
+439 action
+438 across
+437 acknowledging
+436 achieving
+435 acceptable
+434 appalling
+433 absolutely
+432 before
+431 review
+430 reminder
+429 reinforcement
+428 party
+427 factor
+426 major
+425 whereby
+424 decision
+423 balance
+422 without
+421 while
+420 give
+419 users
+418 destination
+417 transit
+416 too
+415 reduction
+414 involves
+413 indication
+412 joining
+411 states
+410 member
+409 consolidation
+408 used
+407 whoever
+406 whilst
+405 elections
+404 legislative
+403 presidential
+402 networks
+401 rail
+400 freight
+399 child
+398 parliament
+397 hoped
+396 moreover
+395 lifting
+394 risks
+393 emphasised
+392 aid
+391 providing
+390 myself
+389 know
+388 withdrawing
+387 although
+386 efficient
+385 show
+384 they
+383 fulfilment
+382 strict
+381 noting
+380 satisfaction
+379 :
+378 view
+377 us
+376 underlying
+375 protect
+374 me
+373 hear
+372 things
+371 principle
+370 level
+369 picture
+368 quote
+367 reference
+366 president-in-office
+365 request
+364 ecb
+363 convention
+362 short
+361 research
+360 public
+359 proposed
+358 makes
+357 side
+356 improving
+355 implementation
+354 problem
+353 either
+352 consists
+351 meantime
+350 suspicion
+349 supporting
+348 sum
+347 stress
+346 strength
+345 stipulates
+344 see
+343 sanctions
+342 release
+341 state
+340 receiving
+339 question
+338 promote
+337 postponing
+336 thought
+335 who
+334 people
+333 teaching
+332 language
+331 call
+330 opportunity
+329 weakness
+328 note
+327 might
+326 mean
+325 sure
+324 made
+323 minister
+322 include
+321 process
+320 decision-making
+319 advancing
+318 impression
+317 reply
+316 today
+315 here
+314 hand
+313 wind
+312 got
+311 forget
+310 main
+309 financing
+308 feels
+307 significant
+306 extremely
+305 facts
+304 established
+303 ensures
+302 effect
+301 doubt
+300 concerned
+299 apply
+298 having
+297 only
+296 services
+295 by
+294 time
+293 being
+292 asks
+291 suggest
+290 far
+289 applaud
+288 where
+287 stating
+286 idea
+285 any
+284 therefore
+283 allow
+282 ensure
+281 able
+280 way
+279 sense
+278 whether
+277 rules
+276 access
+275 if
+274 looks
+273 say
+272 confirm
+271 can
+270 but
+269 zu
+268 yet
+267 use
+266 up
+265 transport
+264 towards
+263 though
+262 them
+261 that
+260 account
+259 detailed
+258 taken
+257 take
+256 strongest
+255 strategic
+254 situation
+253 should
+252 setting
+251 scrapped
+250 schools
+249 river
+248 reasons
+247 rarely
+246 progress
+245 present
+244 terms
+243 paid
+242 otherwise
+241 other
+240 opinion
+239 which
+238 off
+237 system
+236 budgets
+235 priority
+234 objective
+233 now
+232 need
+231 nations
+230 namely
+229 must
+228 procacci
+227 most
+226 phone
+225 mobile
+224 mistake
+223 mind
+222 meant
+221 matter
+220 words
+219 many
+218 ludicrous
+217 run
+216 long
+215 like
+214 night
+213 last
+212 justice
+211 just
+210 issue
+209 true
+208 market
+207 internal
+206 revolution
+205 information
+204 identified
+203 your
+202 ask
+201 wish
+200 simply
+199 make
+198 comments
+197 three
+196 house
+195 head-on
+194 interesting
+193 lead
+192 happening
+191 grateful
+190 goes
+189 future
+188 next
+187 work
+186 his
+185 issues
+184 fisheries
+183 fact
+182 exclusive
+181 exclusion
+180 exception
+179 year
+178 every
+177 staff
+176 europol
+175 notes
+174 euro
+173 employment
+172 years
+171 over
+170 ejido
+169 done
+168 so
+167 do
+166 diversity
+165 discuss
+164 him
+163 granted
+162 directives
+161 direction
+160 designed
+159 deserves
+158 decisively
+157 decade
+156 criticise
+155 course
+154 council
+153 think
+152 may
+151 we
+150 what
+149 contrary
+148 human
+147 contempt
+146 confirmed
+145 condition
+144 europe
+143 competition
+142 committee
+141 commission
+140 into
+139 come
+138 secure
+137 steps
+136 clear
+135 circulation
+134 character
+133 chamber
+132 exist
+131 cease
+130 case
+129 careful
+128 for
+127 called
+126 benefits
+125 point
+124 starting
+123 seen
+122 found
+121 baringdorf
+120 bananas
+119 funds
+118 aside
+117 well
+116 comprehensive
+115 quite
+114 area
+113 duties
+112 their
+111 failing
+110 engaged
+109 another
+108 legally
+107 order
+106 perfectly
+105 union
+104 european
+103 about
+102 debate
+101 important
+100 an
+99 am
+98 others
+97 all
+96 again
+95 act
+94 achieve
+93 whole
+92 regret
+91 much
+90 source
+89 person
+88 paper
+87 one
+86 fair
+85 not
+84 certainly
+83 ?
+82 -
+81 believe
+80 you
+79 deals
+78 report
+77 this
+76 risk
+75 there
+74 planet
+73 save
+72 are
+71 commitments
+70 environmental
+69 our
+68 colleague
+67 my
+66 behalf
+65 on
+64 president
+63 mr
+62 iii
+61 life
+60 possible
+59 would
+58 simple
+57 seems
+56 said
+55 been
+54 already
+53 has
+52 it
+51 brief
+50 very
+49 be
+48 will
+47 patten
+46 thank
+45 want
+44 trust
+43 suppose
+42 questions
+41 two
+40 have
+39 i
+38 ahead
+37 go
+36 firstly
+35 members
+34 fellow
+33 even
+32 essential
+31 is
+30 enlargement
+29 despite
+28 .
+27 gentlemen
+26 ladies
+25 in
+24 commissioner
+23 because
+22 based
+21 at
+20 forest
+19 of
+18 impoverishment
+17 as
+16 and
+15 amongst
+14 saying
+13 flemish
+12 a
+11 according
+10 livelihood
+9 s
+8 &apos;
+7 &quot;
+6 !
+5 to
+4 regard
+3 with
+2 the
+1 following
+0 ,
diff --git a/tests/phrase.lattice.mem/phrase-table.0-0.1.1.gz b/tests/phrase.lattice.mem/phrase-table.0-0.1.1.gz
new file mode 100644
index 0000000..43f3728
--- /dev/null
+++ b/tests/phrase.lattice.mem/phrase-table.0-0.1.1.gz
Binary files differ
diff --git a/tests/phrase.lattice.mem/phrase-table.0-0.1.1.ondisk/Misc.dat b/tests/phrase.lattice.mem/phrase-table.0-0.1.1.ondisk/Misc.dat
new file mode 100644
index 0000000..cd74169
--- /dev/null
+++ b/tests/phrase.lattice.mem/phrase-table.0-0.1.1.ondisk/Misc.dat
@@ -0,0 +1,5 @@
+Version 5
+NumSourceFactors 1
+NumTargetFactors 1
+NumScores 4
+RootNodeOffset 19569
diff --git a/tests/phrase.lattice.mem/phrase-table.0-0.1.1.ondisk/Source.dat b/tests/phrase.lattice.mem/phrase-table.0-0.1.1.ondisk/Source.dat
new file mode 100644
index 0000000..ab76b64
--- /dev/null
+++ b/tests/phrase.lattice.mem/phrase-table.0-0.1.1.ondisk/Source.dat
Binary files differ
diff --git a/tests/phrase.lattice.mem/phrase-table.0-0.1.1.ondisk/TargetColl.dat b/tests/phrase.lattice.mem/phrase-table.0-0.1.1.ondisk/TargetColl.dat
new file mode 100644
index 0000000..84aa0e3
--- /dev/null
+++ b/tests/phrase.lattice.mem/phrase-table.0-0.1.1.ondisk/TargetColl.dat
Binary files differ
diff --git a/tests/phrase.lattice.mem/phrase-table.0-0.1.1.ondisk/TargetInd.dat b/tests/phrase.lattice.mem/phrase-table.0-0.1.1.ondisk/TargetInd.dat
new file mode 100644
index 0000000..7bec893
--- /dev/null
+++ b/tests/phrase.lattice.mem/phrase-table.0-0.1.1.ondisk/TargetInd.dat
Binary files differ
diff --git a/tests/phrase.lattice.mem/phrase-table.0-0.1.1.ondisk/Vocab.dat b/tests/phrase.lattice.mem/phrase-table.0-0.1.1.ondisk/Vocab.dat
new file mode 100644
index 0000000..9f9ac61
--- /dev/null
+++ b/tests/phrase.lattice.mem/phrase-table.0-0.1.1.ondisk/Vocab.dat
@@ -0,0 +1,9540 @@
+! 1
+% 3373
+&#91; 3621
+&#93; 3624
+&amp; 9024
+&apos; 11
+&apos;s 744
+&apos;t 8792
+&quot; 10
+( 873
+) 746
++ 5515
+, 3
+- 85
+-absolutely 8007
+-and 5437
+-cannot 8086
+. 31
+.- 8399
+... 2200
+/ 4303
+000 1372
+1 3772
+10 5545
+10.55 9036
+100 3404
+11 5258
+112 9289
+12 8520
+120 9439
+127 8189
+130 8417
+138 3064
+14 7758
+15 5443
+16 7860
+17 8521
+18 8712
+1896 8251
+192 8103
+1950s 4308
+1963 4309
+1978 4310
+1980 7364
+1981 3405
+1986 8008
+1987 3065
+1988 8594
+1989 9290
+1990 9498
+1991 4311
+1994 4312
+1996 9415
+1997 7120
+1998 4305
+1999 4307
+2 1898
+20 5546
+20-year 6289
+2000 1899
+2001 5547
+2002 4314
+2006 4288
+2010 5548
+21 5549
+24 8686
+25 7121
+2500 7130
+26 5550
+27 8684
+28 7861
+29 8716
+3 4313
+3.45 6476
+30 6267
+31 3066
+32 8423
+34 2201
+4 2191
+40 4315
+402 9212
+45 9183
+468 8245
+48 7588
+5 1371
+50 5542
+500 3777
+55 9471
+6 6382
+60 9037
+61 5534
+7 6264
+7. 6260
+75 8677
+8 4317
+8.9 8717
+80 9337
+88 7122
+9 4285
+95 2202
+95.9 9205
+: 385
+; 743
+? 86
+a 15
+a.m. 4286
+a1 9041
+a2 8529
+aan 8796
+abandon 5283
+abandoned 4362
+abandoning 4270
+abandonment 2217
+abattoirs 6916
+abduction 8530
+abductions 9338
+aber 6265
+aberration 9336
+aberrations 9373
+abeyance 7890
+abide 6660
+abiding 4330
+abilities 5583
+ability 1767
+abkommen 6288
+abkommens 6292
+able 286
+abolish 7072
+abolished 5585
+abolishing 7531
+abolition 7365
+abominable 3797
+abortions 3280
+abound 9184
+about 106
+above 2220
+above-average 9521
+abreast 8349
+abroad 4370
+abrogated 9217
+absence 896
+absent 8193
+absolute 5586
+absolutely 439
+absolve 8813
+absorb 1964
+absorbs 9047
+abspielt 6293
+abstain 3658
+abstained 6644
+abstaining 9399
+abstention 9234
+absurd 4371
+absurdities 3645
+abu 4055
+abundance 7138
+abundant 6858
+abundantly 6872
+abuse 3798
+abused 5587
+abusers 8884
+abuses 5588
+abusing 8255
+abusive 6802
+academic 5444
+academics 3626
+academy 7139
+acceded 8082
+acceding 7033
+accelerated 4372
+accept 897
+acceptable 441
+acceptance 3120
+accepted 3281
+accepting 898
+accepts 6917
+access 281
+accessibility 1632
+accessible 4127
+accessing 6370
+accession 899
+accident 3172
+accidents 4373
+accommodate 6918
+accommodates 5631
+accommodating 8532
+accompanied 3799
+accompanies 5417
+accompany 9374
+accompanying 3800
+accompli 5589
+accomplices 8533
+accomplish 5590
+accord 3173
+accordance 2221
+accorded 2222
+according 14
+accordingly 3801
+accords 6920
+account 263
+accountability 3174
+accountable 8194
+accountants 9262
+accounting 4376
+accounts 2111
+accrual 8670
+accumulated 6702
+accuracy 5591
+accurate 4377
+accurately 6371
+accusation 5592
+accusations 4378
+accuse 5285
+accused 4379
+accustomed 4382
+achievable 3284
+achieve 97
+achieved 900
+achievement 4337
+achievements 4383
+achieving 442
+acht 6296
+acidification 5593
+acknowledge 901
+acknowledged 902
+acknowledgement 6435
+acknowledges 903
+acknowledging 443
+acp 2224
+acquire 5594
+acquired 1873
+acquis 1768
+acquisition 7366
+across 444
+act 98
+acted 2225
+acting 469
+action 445
+actions 1215
+active 2989
+actively 3802
+activist 9046
+activities 2226
+activity 1634
+acts 2227
+actual 904
+actually 446
+acute 4386
+acutely 8865
+ad 4387
+adapt 2112
+adaptability 3803
+adaptation 6922
+adapted 3282
+adapting 7369
+add 447
+added 448
+addiction 8942
+addictive 7367
+adding 3804
+addition 905
+additional 3952
+additionality 5595
+additions 2232
+additive 7759
+additives 4346
+address 1804
+addressed 2861
+addresses 3805
+addressing 3315
+adds 750
+adequate 4151
+adequately 906
+adhere 2857
+adhered 6579
+adherence 8888
+adheres 7457
+adhering 4391
+adjourned 5596
+adjust 4392
+adjusted 4393
+adjustment 2233
+adjustments 1635
+administer 5597
+administered 5598
+administration 1926
+administrations 2898
+administrative 1410
+administratively 8534
+administrator 6923
+admirable 5445
+admirably 5599
+admire 8653
+admired 7142
+admissible 8937
+admission 6372
+admit 752
+admits 907
+admitted 5600
+admittedly 1941
+ado 5601
+adopt 2168
+adopted 908
+adopting 449
+adoption 1319
+adopts 6438
+adult 5602
+advance 3408
+advanced 1770
+advancement 7760
+advances 8072
+advancing 324
+advantage 909
+advantageous 8196
+advantages 2757
+advent 7143
+adverse 1483
+adversely 2135
+advertisement 4394
+advertisements 4298
+advertising 3421
+advice 7026
+advisability 4395
+advisable 9440
+advise 3422
+advised 3423
+advisers 9441
+advisors 910
+advisory 5603
+advocate 4396
+advocated 5604
+advocates 2113
+advocating 911
+aegis 2235
+aeroplanes 8535
+affair 2237
+affairs 812
+affect 2923
+affected 681
+affecting 1943
+affection 4397
+affects 2728
+affinities 2238
+affinity 3071
+affirm 3357
+affirmation 6873
+affirming 6874
+afflicted 6690
+afford 2856
+affordable 7575
+afforded 6316
+affords 8943
+affront 7535
+aforementioned 7645
+aforesaid 6624
+afraid 912
+africa 3283
+african 3410
+africans 6594
+afrika 6300
+afsj 7868
+after 913
+afternoon 5606
+afterwards 3241
+again 99
+against 525
+age 2239
+ageing 5607
+agencies 914
+agency 4400
+agenda 2240
+agent 7761
+agents 1432
+ages 7368
+aggravate 7536
+aggravated 8075
+aggravates 9500
+aggregate 7144
+aggression 9339
+aggressive 7938
+aggressively 8294
+ago 887
+agree 450
+agreed 915
+agreeing 6373
+agreement 917
+agreements 687
+agrees 2712
+agricultural 653
+agriculture 604
+ahead 41
+ahmed 8403
+aid 398
+aided 7077
+aiding 6552
+aids 2241
+aim 451
+aimed 1946
+aiming 2242
+aims 2114
+air 453
+airborne 6305
+aircraft 1379
+airline 7892
+airlines 2588
+airport 3806
+airports 918
+airspace 8725
+akin 9442
+al 5446
+ala 8402
+alabama 8536
+alarm 3934
+alarmed 5517
+alarming 5608
+alas 3657
+alavanos 4405
+albania 7530
+albanian 4406
+albanians 5609
+albeit 3808
+alcohol 2825
+alcohol-related 5610
+alert 5286
+alerted 7539
+alerts 8470
+algeria 8538
+alia 3723
+align 6674
+aligned 5611
+aligning 8753
+alike 4408
+alive 7145
+all 100
+all-round 3376
+allay 7541
+allegations 3842
+alleged 7371
+allegedly 1824
+allem 6303
+allemal 6311
+alleviate 3261
+alleviating 8987
+alliance 4409
+alliances 6375
+allies 8944
+allocate 5250
+allocated 2243
+allocating 2244
+allocation 2894
+allocations 5615
+allotted 6376
+allow 288
+allowance 5616
+allowances 7501
+allowed 921
+allowing 456
+allows 2924
+alluded 9220
+almería 7423
+almost 753
+alone 3072
+along 922
+alongside 5290
+alpine 7272
+already 57
+also 457
+altar 8197
+alter 2981
+altering 7150
+alternate 9506
+alternative 1960
+alternatively 8420
+alternatives 4410
+alters 6706
+although 393
+altogether 3415
+alvin 8738
+always 926
+alzheimer 1636
+am 102
+amassed 8945
+amateur 7151
+amazement 3416
+amazing 4414
+ambassador 3769
+ambassadors 7152
+ambient 7153
+ambiguity 4415
+ambiguous 5620
+ambition 5621
+ambitions 3417
+ambitious 3709
+ambush 927
+amend 2088
+amended 3175
+amending 3418
+amendment 3153
+amendments 2195
+amends 9013
+america 928
+american 3809
+americans 3832
+amiable 9452
+amiss 5622
+ammunition 4416
+amnesty 3419
+among 2248
+amongst 18
+amount 2759
+amounted 2925
+amounting 8965
+amounts 1949
+ample 929
+amsterdam 3650
+amusement 5623
+an 103
+analogy 4424
+analyse 2988
+analysed 6714
+analyses 4425
+analysing 4259
+analysis 933
+anchored 8471
+anchovy 8148
+ancient 6803
+and 19
+andalucia 9031
+andalusia 3823
+andersson 4470
+anger 9314
+angle 9102
+angriffe 6339
+anguish 8317
+anhaltenden 1867
+animal 2275
+animal-based 3444
+animals 947
+anlaß 6345
+annex 8504
+annexed 7372
+announce 8104
+announced 3654
+announcement 7070
+announcing 6544
+annual 1567
+annually 4471
+anonymity 8123
+anonymous 7160
+another 112
+answer 2276
+answerable 9444
+answered 2277
+answering 6378
+answers 4220
+ante 8199
+anti 8278
+anti-racism 5624
+anti-racist 3815
+anti-semitic 8541
+anti-social 6269
+antibiotic 654
+antibiotics 2858
+anticipate 462
+anticipated 6983
+anticipating 2278
+antidemocratic 4472
+antipollution 5448
+antiquated 2279
+antiracism 8352
+anxiety 3445
+anxious 2280
+any 290
+anybody 463
+anymore 4476
+anyone 951
+anything 1382
+anyway 2281
+anywhere 3447
+apart 1955
+apartheid 7956
+apologise 8118
+apology 5449
+appalling 440
+apparatus 4480
+apparent 464
+apparently 757
+appeal 2859
+appealed 6912
+appealing 2283
+appeals 3409
+appear 952
+appearance 953
+appeared 805
+appearing 8279
+appears 954
+appendix 5655
+appetite 7763
+applaud 294
+applauded 8946
+applause 955
+applicable 2284
+applicant 2199
+applicants 5656
+application 599
+applications 956
+applied 465
+applies 2285
+apply 304
+applying 1556
+appoint 6991
+appointed 4481
+appointing 7545
+appointment 6855
+appointments 3655
+apportion 8775
+appraisal 9054
+appreciate 957
+appreciated 7547
+appreciation 4426
+apprehended 7548
+approach 467
+approached 2944
+approaches 1579
+approaching 1059
+appropriate 468
+appropriately 3291
+appropriateness 7495
+appropriation 6689
+appropriations 648
+approval 3448
+approve 2286
+approved 2287
+approves 3824
+approving 6929
+approximate 7161
+approximately 7162
+approximations 4482
+april 8353
+apt 5657
+aptly 8348
+aqua 9340
+aquatic 7307
+arafat 8788
+arbitrary 6563
+arbitration 6549
+archaic 2288
+archipelago 5658
+architectural 9376
+architecture 4483
+are 75
+area 117
+areas 470
+arena 961
+arenas 8728
+argue 471
+argued 472
+argues 8107
+arguing 473
+argument 962
+arguments 4498
+arid 5632
+arise 2301
+arisen 1920
+arises 2194
+arising 3705
+arm 5669
+armed 4499
+arms 3619
+army 4500
+arose 2928
+around 1817
+arouse 6556
+aroused 8354
+arrange 3137
+arranged 4501
+arrangement 4502
+arrangements 963
+arranging 5671
+arrears 6932
+arrest 6933
+arrested 3451
+arrests 5672
+arrival 8168
+arrive 5287
+arrived 4503
+arrives 8119
+arriving 8763
+art 9446
+article 2302
+articles 2303
+articulate 9447
+artificial 5451
+arts 9104
+as 20
+ascending 970
+ascertain 2860
+ascertained 5261
+ascertaining 9470
+asean 3358
+ashore 5675
+asia 8487
+asian 7154
+aside 121
+ask 205
+asked 1821
+asking 3834
+asks 297
+aspect 948
+aspects 2306
+asphalt 3623
+aspiration 8790
+aspirations 6640
+aspire 8764
+assailed 8543
+assassinated 1881
+assassinations 8748
+assault 6340
+assaulted 6351
+assemble 9005
+assembled 6379
+assembly 1524
+assent 7505
+assert 8445
+asserting 6688
+assertion 853
+assertive 7425
+assess 1464
+assessed 3453
+assessing 2307
+assessment 2308
+assessments 1900
+asset 2309
+assets 2015
+assign 8094
+assigned 3846
+assignment 8774
+assimilation 7462
+assist 1529
+assistance 1901
+assistants 5677
+assisted 5385
+assisting 3830
+associate 9050
+associated 2942
+association 959
+associations 4508
+assume 973
+assumed 4509
+assuming 974
+assumption 931
+assumptions 7066
+assurance 975
+assurances 976
+assure 1465
+assured 977
+asthma 5679
+astonishing 5680
+astounded 8898
+asylum 2826
+asylum-seekers 9345
+at 24
+athens 6935
+atlantic 4514
+atmosphere 8672
+atmospheric 7373
+atomic 9226
+atrocities 7556
+attach 4515
+attached 1948
+attaches 8204
+attachment 5682
+attack 1796
+attacked 2290
+attacking 8014
+attacks 969
+attain 5684
+attainable 6804
+attained 5685
+attaining 6627
+attempt 2106
+attempted 2311
+attempting 1546
+attempts 1518
+attend 2992
+attendance 5686
+attended 2289
+attending 4427
+attention 474
+attentive 3844
+attitude 1927
+attitudes 3351
+attract 3455
+attracted 4519
+attracting 3837
+attractive 8205
+attractiveness 7167
+attracts 8979
+attributable 6352
+attribute 7557
+attributed 6381
+auction 981
+audience 7168
+audiovisual 4520
+audit 3456
+auditing 8723
+auditor 5687
+auditors 4172
+auf 6348
+aufgehört 6518
+aufrufen 6520
+augur 8169
+ausdruck 6521
+ausreichen 6533
+aussöhnung 6534
+austria 4213
+austrian 1576
+austrians 9105
+authentic 8047
+authenticity 7764
+author 2058
+authorisation 2761
+authorise 1643
+authorised 2929
+authorises 7851
+authoritative 7558
+authorities 2312
+authority 1531
+authors 8032
+automatic 7939
+automatically 4521
+autonomous 4522
+autonomy 4093
+autumn 8475
+avail 8320
+availability 4524
+available 983
+avenue 3926
+average 5507
+avert 3293
+averted 5688
+aviation 2313
+avoid 984
+avoidable 9475
+avoided 3838
+avoiding 760
+avraham 7171
+await 6716
+awaiting 5689
+award 3024
+awarded 3810
+awarding 476
+aware 477
+awareness 478
+awareness-raising 4526
+away 987
+awful 8308
+b 4527
+babies 8460
+baby 3167
+back 1145
+backed 3840
+backers 7765
+background 988
+backing 3757
+backs 6383
+backward 7173
+backwards 3177
+bad 3294
+badly 869
+baggage 9346
+bags 5691
+balance 429
+balanced 1451
+balances 7374
+balancing 8988
+balkan 5692
+balkans 1644
+ball 5693
+baltic 9329
+ban 672
+banana 3458
+bananas 123
+bangladesh 2315
+banish 7174
+banished 8544
+bank 2316
+banking 5694
+bankrupt 5695
+bankruptcy 4530
+banks 4531
+banned 4532
+banning 1645
+bans 1805
+bar 4321
+barbarity 1944
+bare 8252
+barely 8802
+bargain 8273
+baringdorf 124
+barred 8170
+barrel 6364
+barrier 6863
+barriers 6384
+bars 8596
+barter 5453
+base 5696
+base-level 6717
+based 25
+bases 6386
+basic 1647
+basically 989
+basin 7078
+basing 8295
+basins 4533
+basis 479
+basque 4322
+battle 878
+bay 7308
+bbc 9417
+be 52
+beaches 4550
+bear 998
+bearing 2746
+bears 2319
+beat 7528
+beaten 8208
+beating 1114
+beautiful 9049
+beauty 2320
+became 999
+because 26
+become 2132
+becomes 3540
+becoming 480
+bed 4552
+bedauern 6535
+beds 4554
+beef 1420
+been 58
+beendigung 6539
+beer 7563
+bef 8149
+befits 7564
+before 438
+beforehand 7565
+beg 3971
+began 1514
+begin 1765
+beginning 3087
+begins 3464
+begrüßen 6541
+begs 9377
+begun 3202
+behalf 69
+behave 2180
+behaved 8116
+behaving 5456
+behaviour 844
+behind 1006
+beijing 4374
+beilegung 6548
+being 298
+beings 2324
+belarus 3406
+belgian 4567
+belgium 3852
+belgrade 3075
+belief 1013
+beliefs 5730
+believe 84
+believed 6877
+believes 3853
+believing 1014
+belong 4569
+belonging 1650
+belongs 4570
+below 5733
+belt 4571
+belt-and-braces 6719
+belts 3355
+bemoan 6720
+bench 1771
+benches 5734
+benchmarking 6692
+benchmarks 4572
+bend 6622
+bending 1384
+beneficial 3295
+beneficiaries 4573
+beneficiary 9228
+benefit 2507
+benefited 7896
+benefiting 1962
+benefits 129
+benign 9507
+bent 8793
+benzene 3465
+bereft 5735
+bereitgestellt 6550
+bereits 6554
+beschließt 6573
+beset 9378
+beside 8971
+besides 4300
+besorgt 6575
+best 1015
+besteht 6576
+better 481
+betterment 7375
+between 482
+beunruhigt 6586
+bevölkerung 6590
+beware 8209
+beyond 483
+bhutanese 9332
+biased 7927
+bid 3236
+bidder 5738
+bidding 5739
+bids 6673
+big 2329
+bigger 3466
+bilateral 6833
+bilaterally 6393
+bildung 6601
+bill 5740
+billion 3467
+billions 8505
+bills 8805
+bind 2331
+binding 3033
+biological 1957
+bird 5741
+birds 4575
+birth 3361
+birthplace 7376
+bit 3068
+bitterly 6675
+bizarrely 9043
+black 2604
+blackmail 3778
+blade 9351
+blame 2896
+blamed 8172
+blaming 7568
+blanket 3180
+blatant 8966
+blatantly 1016
+bleak 5536
+blessed 6721
+blight 6312
+blind 1018
+block 3468
+blockades 3727
+blocked 4576
+blocking 8109
+blocks 5268
+blood 1019
+blow 6302
+blown 8369
+blows 7533
+blueprint 7569
+blundered 8406
+blunt 4122
+blurred 5717
+board 2756
+boarding 8735
+boards 8673
+boat 8550
+bodies 1132
+body 1772
+bogged 7560
+bogus 8689
+boils 5202
+bold 4577
+boldly 4578
+bolkestein 1968
+bolster 8246
+bolstering 8163
+bomb 4579
+bombed 6273
+bomber 9416
+bombers 7053
+bombing 6298
+bombs 4580
+bona 9508
+bones 7181
+bonus 4581
+book 1020
+books 5701
+boom 8357
+boost 2255
+boosting 6470
+bordeaux 4582
+border 2762
+borders 2334
+bore 7570
+born 3459
+borne 3627
+borrow 7897
+borrowing 3854
+bosnia 6693
+bosses 5742
+bot 6603
+both 761
+bother 8902
+bothered 8321
+bottom 1220
+bought 3961
+bound 3664
+boundaries 5744
+boundary 8187
+bounds 2763
+bovine 4583
+bow 8894
+bowdlerised 7459
+bowe 9231
+box 6906
+boy 3013
+boycott 2862
+boycotting 2335
+boyne 9114
+brains 9116
+brake 7520
+brakes 5459
+branch 5638
+branches 3470
+brand 5652
+branding 6577
+brands 9379
+brave 8531
+breach 3161
+breached 8283
+breaches 9206
+breaching 7080
+bread 8477
+breadth 6687
+break 2863
+break-up 8156
+breakaway 8284
+breakdown 7521
+breaking 3267
+breath 3183
+breathe 3052
+breathing 4584
+breed 5745
+breeding 6695
+brenner 4585
+bridge 6939
+bridges 4517
+brief 54
+briefly 3855
+bright 9233
+brilliant 3665
+bring 2336
+bringing 1021
+brings 3471
+brink 5747
+britain 4155
+british 4586
+brittany 6616
+broad 1963
+broad-based 8551
+broadcast 3276
+broadcasting 6394
+broadcasts 4587
+broaden 8757
+broadening 9315
+broader 1982
+broadest 6595
+broadly 762
+broke 6317
+broken 3077
+broker 7948
+brother 5553
+brotherhood 4428
+brought 1022
+brows 9117
+brucellosis 5748
+bruno 9380
+brunt 5749
+brussels 6318
+brutal 5750
+bse 3667
+bse-infected 9454
+bubble 2338
+buck 7678
+buddhist 6722
+budget 679
+budgetary 658
+budgeted 7179
+budgets 239
+bugging 7871
+build 2339
+building 1024
+buildings 2764
+builds 4320
+built 924
+buitenweg 8428
+bulk 5535
+burden 2589
+burdens 9042
+bureau 2192
+bureaucracy 3287
+bureaucratic 7767
+bureaucratise 6274
+burg 7172
+burma 4589
+burmese 6397
+burn 3856
+burned 8654
+burning 4590
+burns 5753
+burnt 7854
+burst 3857
+burundi 5754
+burundians 4591
+bury 6926
+bus 3858
+buses 9255
+bush 4592
+business 484
+businesses 1554
+businesspeople 8422
+busy 3473
+but 275
+butter 3668
+buy 2341
+buying 3985
+buys 1609
+by 300
+by-pass 5294
+by-product 8478
+bypass 6628
+bürgerkrieg 6604
+c 7926
+cabin 6725
+cabinet 8322
+cable 8009
+cairo 5760
+calculate 5761
+calculated 3864
+calculating 1902
+calculation 2345
+calculations 3188
+call 336
+called 130
+calling 1025
+callous 6367
+calls 4600
+calm 5252
+calmly 5762
+came 2119
+cameras 5764
+campaign 4356
+campaigned 7949
+campaigners 4601
+campaigning 2347
+campaigns 2348
+campos 1026
+camps 4485
+campuses 7950
+can 276
+canadian 7768
+cancel 3820
+cancellation 4602
+cancelled 4603
+cancelling 5765
+cancels 1865
+cancer 4604
+candid 6670
+candidacy 3767
+candidate 3168
+candidates 5766
+cannot 871
+canteen 8190
+cap 3184
+capabilities 3299
+capability 4523
+capable 1328
+capacities 4429
+capacity 3005
+cape 4607
+capita 5564
+capital 4609
+capitalism 8232
+capitalist 2915
+captains 4610
+captive 3825
+capture 6501
+captures 3753
+car 2846
+carcasses 2765
+carcinogen 8191
+carcinogenic 8329
+card 3300
+cardiff 7769
+cardinal 7140
+cards 4611
+care 1029
+career 5767
+careers 7000
+careful 132
+carefully 1470
+caretaker 3027
+cargo 5768
+cargoes 9119
+carpet 5769
+carpetshells 3346
+carried 701
+carriers 4046
+carries 6290
+carrot 9398
+carry 1030
+carrying 2349
+cars 673
+cart 7044
+carter 6805
+casaca 6941
+case 133
+case-by-case 8465
+cases 1364
+cash 7692
+cast 1954
+casting 7524
+castles 6398
+castro 5772
+casualties 7119
+catalonia 4617
+catalyst 7522
+catastrophe 3644
+catch 2864
+catches 4619
+categorically 8173
+categories 3474
+categorising 7576
+category 1297
+catering 4620
+cathedral 6399
+catholic 7987
+cattle 3190
+caught 3865
+cause 764
+causebook 4621
+caused 1031
+causes 3866
+causing 487
+caution 6613
+cautious 3845
+caveat 5460
+caveats 4186
+cease 134
+ceased 6519
+ceasefire 8522
+ceiling 5773
+ceilings 4622
+celebration 9418
+cells 3238
+cellulose 7879
+cent 7190
+central 2352
+centralisation 7377
+centralised 5774
+centralist 9030
+centre 2353
+centred 9291
+centres 2304
+centuries 2354
+century 1698
+cereals 4623
+certain 488
+certainly 87
+certainty 1035
+certificate 5703
+certificates 6643
+certification 4624
+certified 6387
+cessation 6540
+cfsp 4625
+chain 4626
+chains 7577
+chair 5775
+chairing 6930
+chairman 1532
+challenge 2723
+challenged 8275
+challenges 1877
+challenging 4271
+chamber 136
+chambers 4627
+champion 9235
+championed 2172
+champions 5715
+championship 2356
+chance 3081
+chances 7191
+change 2017
+changed 4628
+changeover 6943
+changes 1651
+changing 765
+channel 1036
+channelled 4629
+channelling 1880
+channels 5777
+chaos 7951
+chaps 5778
+chapter 6774
+chapters 8553
+character 137
+characterise 2732
+characterised 6746
+characterises 2931
+characteristic 7578
+characteristically 2165
+characteristics 7460
+charge 2532
+charged 1441
+charges 2357
+charging 659
+charity 5779
+charter 2325
+chase 9052
+chasm 7579
+cheap 2766
+cheaper 4630
+cheating 7581
+chechen 5780
+chechnya 4631
+check 3129
+checked 5288
+checking 7582
+checks 2121
+cheek 7770
+cheer 3670
+cheese 4034
+chemical 8554
+chemicals 4190
+chief 1533
+chiefly 1860
+chiefs 5781
+child 405
+childcare 7583
+childhood 4632
+children 1398
+china 1652
+chinese 7283
+chiquita 9352
+chirac 8347
+chlorine 5634
+chocolate 3765
+choice 2086
+choices 3904
+choose 2549
+choosing 4282
+chose 8358
+chosen 2996
+christdemokraten 6606
+christian 3773
+christian-democrat 7124
+christian-democrats 6607
+christmas 5782
+chronic 8582
+church 5783
+cigarette 6944
+cigarettes 4635
+cinema 6945
+circle 6341
+circles 7542
+circulated 6946
+circulating 8555
+circulation 138
+circumstances 2096
+circus 6806
+cite 6400
+cited 5698
+cites 7035
+cities 3651
+citing 7506
+citizen 5784
+citizens 728
+citizenship 7923
+citrus 9263
+city 3476
+civic 7932
+civil 660
+civilian 5785
+civilians 5296
+civilisation 4636
+civilised 8203
+claim 879
+claimed 489
+claiming 766
+claims 1653
+clarification 3259
+clarified 4637
+clarifies 2932
+clarify 1037
+clarifying 3869
+clarity 5786
+clash 7523
+clashes 8137
+class 7036
+classed 3870
+classes 4518
+classification 1038
+classified 6401
+clause 2816
+clauses 4638
+clean 3871
+cleaned 9330
+cleaning 2359
+cleansing 9120
+clear 139
+cleared 6947
+clearer 4039
+clearest 2767
+clearing 6502
+clearly 492
+client 4641
+clients 8951
+climate 1937
+climb 9121
+clinton 7898
+clock 5787
+clone 9484
+cloning 5788
+close 1386
+closed 4643
+closely 4043
+closer 2062
+closest 4644
+closing 2030
+closure 9021
+closures 1967
+clothes 3821
+cloud 3927
+clouds 7379
+clubs 7380
+clutches 7772
+clutter 2974
+cns 5513
+co-development 8210
+co-financed 9227
+co-president 5461
+co2 4645
+coal 8556
+coalition 7101
+coast 2605
+coastal 4646
+coastline 4647
+coasts 7194
+cocoa 5789
+cod 1654
+code 1788
+codecision 6727
+codes 6651
+coercion 6468
+coexistence 7623
+coffee 3872
+cofinanced 5718
+cofinancing 9455
+cog 3019
+cognisance 9502
+coherence 523
+coherent 5790
+cohesion 1526
+cohesive 8467
+cohort 8998
+coincide 7586
+coinciding 768
+coincineration 8218
+coined 3625
+cold 2511
+collaborating 7193
+collaboration 4187
+collapse 7572
+collapsed 5791
+colleague 71
+colleagues 1039
+collect 5462
+collected 7195
+collecting 4648
+collection 2082
+collective 1623
+collectively 8331
+collector 6830
+college 2768
+colloquially 7952
+cologne 7309
+colombia 7185
+colonial 8070
+colonies 7170
+colonists 5647
+colony 8488
+colossus 4649
+colour 6760
+colouring 1431
+colours 8211
+com 8952
+combat 1807
+combated 3477
+combating 2361
+combats 8266
+combination 2363
+combine 4363
+combined 1781
+combines 7196
+combining 6713
+come 142
+comes 1040
+comfort 4063
+comfortable 5793
+coming 1656
+comitology 7587
+commandos 5794
+commence 8015
+commences 1938
+commend 3379
+commendable 3968
+commendably 5795
+commended 1042
+commensurate 7136
+comment 1043
+commented 6402
+commenting 6306
+comments 201
+commerce 3986
+commercial 3104
+commercially 8479
+commission 144
+commissioned 6403
+commissioner 27
+commissioners 3873
+commit 2733
+commitment 1044
+commitments 74
+commits 7534
+committed 771
+committee 145
+committees 1045
+committing 3266
+commodities 4654
+commodity 4290
+common 1046
+commonly 4656
+communautaire 1769
+communautarised 6564
+communicate 4463
+communicated 5800
+communication 2365
+communications 2366
+communism 4657
+communist 8557
+communists 8110
+communities 2367
+communitisation 3150
+community 494
+community-backed 8558
+community-level 7881
+companies 1129
+company 495
+comparable 3729
+comparative 4432
+compare 4364
+compared 1359
+comparison 7899
+comparisons 9219
+compassion 4659
+compatible 4053
+compelling 5801
+compels 9456
+compensate 1089
+compensated 9106
+compensation 1773
+compete 5297
+competence 3128
+competences 7284
+competencies 2368
+competent 1657
+competing 5802
+competition 146
+competitions 2369
+competitive 4433
+competitiveness 4660
+competitors 5803
+compile 7197
+compiled 4661
+compiling 7199
+complacency 5804
+complacent 9107
+complain 2782
+complained 6404
+complaining 3874
+complaint 5463
+complaints 1969
+complement 2251
+complemented 7953
+complete 1467
+completed 4555
+completely 1050
+completing 7200
+completion 6676
+complex 1051
+complexes 8038
+complexities 7995
+complexity 4447
+compliance 1471
+complicated 5806
+complicit 9457
+complied 4486
+complies 4663
+compliment 7202
+complimenting 8429
+comply 1469
+complying 7481
+component 8559
+components 5751
+composed 3748
+composition 7694
+compound 6728
+compounds 8111
+comprehend 4664
+comprehensible 4665
+comprehension 8807
+comprehensive 119
+comprehensively 9316
+comprises 3875
+comprising 1658
+compromise 1624
+compromised 5667
+compromising 5430
+compulsory 1970
+computer 1681
+computers 5807
+conceal 3262
+concealed 3877
+concealing 8905
+conceals 2122
+concede 6880
+conceivably 6684
+conceive 8895
+concentrate 3878
+concentrated 5808
+concentrates 4263
+concentrating 4276
+concentration 4484
+concentrations 8234
+concept 4324
+conception 6738
+concepts 5810
+concepts.the 5464
+concern 1052
+concerned 305
+concerning 1903
+concerns 1053
+concerted 5636
+concession 9317
+concessions 4668
+conciliation 4669
+conciliatory 5699
+concise 9372
+conclude 1054
+concluded 2164
+concludes 772
+concluding 3987
+conclusion 800
+conclusions 4670
+conclusive 9122
+concomitant 7203
+concrete 2371
+concretely 3285
+concur 9237
+condemn 3158
+condemnation 3383
+condemned 1604
+condemning 6729
+condemns 6656
+condition 148
+conditional 1728
+conditionality 674
+conditioned 8901
+conditions 1622
+condolences 1491
+conducive 2953
+conduct 739
+conducted 1055
+conducting 8724
+confederal 6978
+conference 1056
+conferences 4180
+conferred 6678
+confess 4671
+confessed 8112
+confidence 1057
+confidence-building 5811
+confident 1027
+confidential 7590
+confidentiality 5792
+confine 8835
+confined 4672
+confines 7592
+confirm 277
+confirmation 7593
+confirmed 149
+confirming 3879
+confirms 3078
+conflict 1659
+conflicting 5812
+conflicts 2373
+confounded 5719
+confront 3263
+confronted 6405
+confronting 1455
+confuse 5635
+confused 3479
+confuses 9353
+confusing 9123
+confusion 1257
+congestion 6870
+congo 3302
+congratulate 4674
+congratulated 1058
+congratulating 7183
+congratulations 8011
+congress 2374
+conjunction 3251
+connected 2139
+connection 1060
+connections 4675
+conquer 7553
+conscience 880
+consciences 7701
+conscious 3880
+consciousness 7204
+consensus 1660
+consent 5813
+consequence 1625
+consequences 708
+consequent 2265
+consequently 1360
+conservation 4676
+conservative 5728
+conservatives 8949
+conserve 4677
+consider 1061
+considerable 1730
+considerably 5814
+consideration 1062
+considerations 726
+considered 497
+considering 1063
+considers 626
+consigned 5700
+consist 2169
+consisted 6847
+consistency 2375
+consistent 3127
+consistently 5697
+consisting 1971
+consists 357
+consolidate 3325
+consolidated 4678
+consolidating 3881
+consolidation 415
+constant 1064
+constantly 1826
+consternation 4679
+constituency 4680
+constituent 7205
+constitute 593
+constituted 5799
+constitutes 2933
+constituting 8049
+constitution 4968
+constitutional 1065
+constraint 7206
+constraints 5815
+constrict 8814
+construct 5298
+constructed 3730
+constructing 6949
+construction 3130
+constructive 5816
+constructively 4402
+consular 8560
+consult 2091
+consultancy 7942
+consultants 5678
+consultation 3882
+consultative 1523
+consulted 1403
+consulting 3731
+consumed 3883
+consumer 2376
+consumer-led 8655
+consumers 2377
+consumption 709
+contact 4892
+contacted 6950
+contacts 3901
+contain 2123
+contained 2805
+containers 8083
+containing 2378
+containment 4681
+contains 1515
+contaminated 3482
+contamination 5817
+contemplate 3884
+contemplating 8853
+contemporary 4682
+contempt 150
+contend 3605
+content 1785
+contention 5818
+contents 1895
+contested 4318
+context 1066
+contexts 5819
+continent 846
+continental 8425
+continents 4683
+continual 3828
+continually 2379
+continuation 3440
+continue 1067
+continued 2770
+continues 1837
+continuing 2060
+continuity 6951
+continuous 7382
+continuously 4684
+continuum 5821
+contract 3484
+contracted 7954
+contracting 7594
+contracts 2822
+contractual 7681
+contradicted 7207
+contradiction 6730
+contradictions 4685
+contradictory 6647
+contrary 152
+contrast 4686
+contravene 9524
+contravenes 6952
+contravening 8286
+contravention 3988
+contribute 2429
+contributed 1069
+contributes 3426
+contributing 3885
+contribution 490
+contributions 2807
+contrived 4687
+control 455
+controlled 5466
+controller 4184
+controlling 5563
+controls 1570
+controversial 5822
+controversy 5823
+convene 5299
+convened 9295
+convenience 1662
+convenient 8212
+convention 368
+conventions 1871
+convergence 4688
+conversation 4689
+conversion 4690
+convert 4281
+converted 5720
+converting 3240
+convey 6525
+conveyed 6864
+conveying 8750
+convicted 8050
+conviction 1070
+convictions 5824
+convince 1071
+convinced 1072
+convincing 1488
+cook 8561
+cooking 9182
+cooperate 2198
+cooperating 3886
+cooperation 1663
+cooperative 5640
+coordinate 2867
+coordinated 4277
+coordination 2384
+cop-out 4326
+cope 3360
+copied 8906
+copies 4453
+coping 5467
+copy 5516
+copying 6895
+copyright 5322
+core 4691
+corner 5555
+corners 3193
+cornerstone 4327
+cornerstones 7774
+corporate 2774
+corporations 7269
+corps 4692
+correct 498
+corrected 4535
+correcting 3733
+correction 7787
+corrections 5825
+correctly 716
+corrects 3304
+correlate 9458
+correspond 1844
+correspondence 7595
+corresponding 3779
+corresponds 8426
+corrupt 2385
+corruption 7596
+cosmetic 4693
+cost 2056
+cost-benefit 4328
+cost-effective 4694
+cost-effectiveness 4695
+costa 9503
+costing 8174
+costly 4696
+costs 1381
+cotton 4697
+could 1073
+council 157
+councillor 5827
+councillors 4029
+councils 5468
+counsel 7209
+count 499
+counted 3047
+counter 1665
+counteract 3305
+counterfeit 2771
+counterfeiting 4698
+countering 8751
+counterproductive 5702
+counting 4434
+countless 2057
+countries 500
+country 1377
+countryside 4699
+counts 4700
+county 7210
+coup 5383
+couple 5300
+coupled 3888
+coups 4701
+courage 1535
+courageous 7211
+courageously 2178
+courier 4404
+course 158
+courses 4702
+court 2236
+courtesy 9124
+courts 1775
+cover 1209
+coverage 1667
+covered 2183
+covering 1536
+covers 2126
+covert 2387
+cow 3306
+cowardly 9076
+cows 2388
+crack 7212
+cradle 8430
+crash 4703
+crass 9459
+crazy 8854
+create 1862
+created 1972
+creates 2022
+creating 773
+creation 810
+creations 8908
+creative 4117
+creatures 4705
+credibility 5469
+credible 5828
+credit 2033
+creditable 1373
+creditors 5254
+credits 6975
+creme 7955
+crept 9460
+crete 4652
+crewing 6955
+cricket 5829
+crime 1682
+crimes 1433
+criminal 2772
+criminalisation 9125
+criminalise 7598
+criminals 9461
+crippling 7213
+crises 3485
+crisis 1448
+criteria 3924
+criterion 4706
+critical 502
+critically 4707
+criticise 159
+criticised 4272
+criticising 3890
+criticism 2143
+criticisms 7314
+critics 9366
+crop 4708
+crops 5830
+cross 5831
+cross-border 5832
+cross-party 9318
+crossed 1075
+crossing 7215
+crown 5833
+crucial 493
+crude 6365
+cruel 8309
+cruelly 8678
+cruelty 5519
+cruise 9510
+crumbling 9080
+crumbs 3070
+crushing 7384
+crux 6406
+cry 8808
+crying 5208
+cuba 2389
+culminate 6893
+culminated 7852
+culminating 3891
+culprits 6407
+cultivated 1973
+cultivation 5834
+cultural 3079
+culture 1436
+cultures 4709
+cup 5835
+curb 3242
+curbed 5836
+cure 2390
+curious 8435
+currencies 4710
+currency 1626
+current 2383
+currently 2140
+curricula 6956
+curtail 2393
+curve 8356
+custody 1976
+customary 6319
+customer 9126
+customs 1977
+cut 2734
+cuts 3147
+cutting 1076
+cyanide 5311
+cycle 3486
+cyclone 8972
+cyprus 2530
+czech 7775
+d 7218
+da 6313
+dabei 6621
+daily 2205
+dairy 5837
+dam 4712
+damage 1033
+damaged 4556
+damages 1774
+damaging 1466
+damascus 9511
+dampening 7996
+dance 8102
+danes 9055
+danger 1078
+dangerous 2396
+dangerously 3892
+dangers 6619
+danish 7776
+danube 5838
+dare 4714
+dared 8213
+dares 8809
+darin 6641
+daring 4715
+dark 646
+darum 6657
+dary 9238
+darüber 5412
+das 6349
+dash 8562
+data 1668
+database 7928
+date 1370
+dated 6320
+dates 3982
+dating 8323
+dauerhaften 6852
+davos 4716
+dawn 6321
+day 503
+day-in 3635
+day-to-day 5557
+days 889
+daß 273
+de 3774
+dead 4718
+deadline 5470
+deadlines 1878
+deadlock 6408
+deadly 8523
+deal 675
+dealing 2305
+dealings 5319
+deals 82
+dealt 2398
+dear 2947
+death 1776
+deaths 2399
+debatable 6679
+debate 105
+debated 5721
+debates 1079
+debating 1147
+debt 3243
+debts 4721
+decade 160
+decades 650
+deceive 3268
+december 3067
+decent 8446
+decentralisation 3671
+decentralised 4549
+decide 1808
+decided 2127
+decidedly 5840
+decides 6574
+deciding 3672
+decimated 4722
+decision 430
+decision-making 325
+decisions 1387
+decisive 1547
+decisively 161
+decisiveness 3893
+declaration 4206
+declarations 5841
+declare 1080
+declared 1082
+declares 7600
+declaring 1980
+decline 4724
+declined 8324
+decolonise 8186
+decommissioning 1083
+decorated 3894
+decrease 4279
+decreased 4845
+decreasing 8674
+decree 4725
+dedicate 5301
+dedicated 2401
+dedicating 8065
+dedication 7221
+deduce 6958
+deducted 9347
+deductions 8200
+deeds 1085
+deemed 6409
+deems 8175
+deep 3449
+deepening 4726
+deeper 7601
+deepest 8113
+deeply 7602
+defeat 4727
+defeated 7855
+defeating 8227
+defects 4473
+defence 935
+defenceless 2403
+defend 719
+defendants 4728
+defended 3296
+defender 8214
+defenders 7777
+defending 6875
+defends 2128
+defer 8016
+deficiencies 9127
+deficiency 7869
+deficient 7222
+deficit 2590
+define 5302
+defined 2317
+defines 5842
+defining 2404
+definite 4729
+definitely 3895
+definition 4594
+definitions 2405
+definitive 4730
+definitively 4782
+degenerate 8563
+degree 2207
+degrees 4731
+delay 1086
+delayed 3487
+delaying 3431
+delays 1444
+delegate 9239
+delegated 7792
+delegates 6380
+delegation 504
+delegations 5826
+delete 2246
+deleted 3488
+deletion 7603
+deliberate 8962
+deliberately 4477
+deliberations 4732
+delicate 4733
+delicious 5844
+delight 7778
+delighted 4411
+deliver 505
+delivered 5386
+deliveries 8593
+delivering 4368
+delivery 2406
+delors 9419
+dem 6475
+demagogic 7900
+demagoguery 8564
+demand 1087
+demanded 4734
+demanding 506
+demands 3307
+demobilise 9113
+democracies 6901
+democracy 1978
+democrat 774
+democratic 1994
+democratisation 7499
+democrats 3374
+demographic 6504
+demokratie 3044
+demonising 6959
+demonstrate 1088
+demonstrated 507
+demonstrates 5255
+demonstrating 6558
+demonstration 2397
+demonstrations 8565
+den 6905
+denen 3714
+denial 5845
+denied 7604
+denies 1827
+denmark 3308
+denominator 5325
+denounce 2869
+denounced 6565
+denounces 1828
+denouncing 7223
+density 4736
+deny 1472
+denying 3896
+depart 6566
+department 7224
+departments 7419
+departure 7605
+depend 2934
+depended 5797
+dependence 9221
+dependency 5846
+dependent 5847
+depending 3159
+depends 6705
+depicted 9328
+deplete 2735
+depleted 9297
+depletion 7385
+deplorable 2661
+deplore 5848
+deploring 9128
+deploy 7225
+deployed 4566
+deployment 6897
+depopulation 9462
+deportations 6807
+depressed 8376
+depressing 6960
+deprivation 5849
+deprive 2173
+deprived 3860
+depriving 3397
+depth 5850
+deputy 3897
+der 274
+deregulated 5851
+deregulation 4662
+deregulations 7461
+deren 1841
+derisory 5471
+derivative 7997
+derivatives 7082
+derive 3898
+derived 1831
+derives 7471
+deriving 1979
+derogate 7226
+derogation 4737
+derogations 4474
+dervitsani 9240
+descending 6503
+describe 2935
+described 2174
+describes 2256
+describing 7998
+description 7830
+descriptions 2407
+desecration 9056
+desert 2408
+desertification 3899
+deserve 2409
+deserves 162
+deserving 1669
+deshalb 7468
+design 4739
+designate 5303
+designated 6731
+designation 6410
+designed 163
+designing 6411
+desirable 4740
+desire 2410
+desired 2755
+desires 6543
+desk 5852
+desks 5853
+despair 5472
+desperate 6581
+desperately 4287
+despicable 2411
+despite 32
+destabilising 2061
+destination 424
+destinations 4741
+destined 4467
+destroy 1742
+destroyed 508
+destroying 6732
+destroys 9324
+destruction 4742
+detail 1090
+detailed 262
+detailing 9514
+details 2124
+detect 6648
+detected 8566
+detection 9129
+detention 2372
+deter 9485
+deteriorate 7901
+deteriorated 8909
+deteriorating 9130
+deterioration 3290
+determination 509
+determine 2870
+determined 3900
+determines 8910
+determining 7370
+deterrent 3169
+detract 6962
+detriment 1091
+detrimental 657
+deva 4744
+devastated 4479
+devastating 1032
+devastation 5854
+develop 1413
+developed 1430
+developing 1981
+development 741
+developments 2666
+develops 8076
+deviation 9525
+devices 9354
+devise 7607
+devised 5722
+devising 3902
+devoid 4745
+devote 4746
+devoted 6391
+devoting 8167
+dialog 7475
+dialogue 2412
+dialogues 5855
+dialysis 7957
+diamanten 7477
+diametrically 3058
+diamond 5511
+diamonds 7478
+dictate 9325
+dictated 8736
+dictates 4264
+dictating 1959
+dictatorship 3780
+dictatorships 1125
+did 1092
+die 384
+died 2998
+dieses 6262
+diet 3903
+dietary 7285
+differ 2413
+differed 9408
+difference 1374
+differences 6412
+different 1093
+differentials 7229
+differentiate 7515
+differentiated 1094
+differentiation 9241
+differently 3026
+differing 7437
+differs 2936
+difficult 1095
+difficulties 2414
+difficulty 964
+digging 6649
+digital 7608
+dignity 4748
+dilemma 7126
+diligence 3905
+diligently 3489
+diluted 8293
+dimension 1670
+dimensions 5650
+diminish 1987
+diminishing 6865
+dinosaurs 8836
+dint 6733
+dioxin 3906
+dioxins 7386
+diploma 5473
+diplomacy 2415
+diplomatic 2775
+diplomats 8514
+dire 5858
+direct 881
+directed 3907
+directing 8276
+direction 164
+directions 8325
+directive 531
+directives 165
+directly 4749
+directorate-general 8567
+directory 7128
+dirty 7230
+disabilities 8568
+disability 4435
+disabled 3016
+disadvantage 5558
+disadvantaged 4750
+disadvantages 4751
+disagree 511
+disagreement 1502
+disappear 3111
+disappearances 5509
+disappeared 2537
+disappearing 5660
+disappointed 4752
+disappointing 6881
+disappointment 6753
+disapproval 6413
+disapprove 8739
+disapproving 8810
+disarray 4753
+disaster 2416
+disasters 2448
+disastrous 5860
+discarded 9057
+discernible 8666
+discerning 7287
+discharge 4261
+discharged 7163
+discharging 6661
+disciplinary 5861
+discipline 8825
+disciplined 5862
+disciplines 4218
+disclosed 8480
+disclosure 8051
+discontinued 3178
+discourage 2871
+discourteous 6723
+discover 1809
+discovered 4254
+discovering 1096
+discovers 7083
+discovery 7609
+discreet 8868
+discrepancies 7610
+discriminated 7779
+discrimination 2417
+discuss 168
+discussed 4562
+discusses 4755
+discussing 3450
+discussion 2196
+discussions 1671
+disease 2418
+diseases 4756
+disgraceful 8662
+disguise 6734
+disgusted 8146
+dishonesty 4757
+disintegrated 8017
+dismantle 5863
+dismantled 1097
+dismantling 5379
+dismay 8911
+dismiss 6460
+dismissal 5864
+dismissed 5865
+disorientation 8114
+disparate 4758
+disparities 7611
+dispense 6363
+displaced 2419
+display 5304
+displayed 6377
+displaying 7612
+displays 4273
+disposal 2420
+dispose 7084
+disposed 4847
+disposition 6270
+dispute 485
+disputed 4759
+disputes 1879
+disregard 1098
+disregarded 4760
+disrespectful 6786
+disrupted 6735
+disruption 4761
+dissatisfaction 8569
+dissatisfied 8811
+disseminate 7757
+dissemination 7387
+dissociated 9242
+distance 3480
+distanced 7947
+distances 4762
+distant 8912
+distinct 3908
+distinction 1241
+distinctions 7820
+distinctive 4763
+distinguish 8913
+distinguished 4764
+distinguishing 9403
+distort 6963
+distorted 7613
+distortion 5566
+distortions 8656
+distract 6948
+distress 8570
+distressing 1099
+distribute 7614
+distributed 3909
+distributing 3910
+distribution 3194
+distributor 3021
+district 5866
+districts 6964
+disturbed 4766
+disturbing 6589
+disturbs 8681
+divergent 7388
+diverging 9089
+diverse 7882
+diversification 7780
+diversify 9000
+diversion 9072
+diversity 169
+divert 8238
+diverted 7566
+divide 4767
+divided 1584
+divides 5256
+dividing 8914
+division 7398
+divisions 4215
+divorce 2872
+do 170
+doctor 5867
+doctors 7472
+doctrine 7389
+document 2421
+documentary 9092
+documented 6859
+documents 4768
+doden 8995
+does 749
+dogged 1672
+dogma 9355
+dogs 2422
+doing 958
+dollar 3165
+dollars 4769
+domain 4770
+domestic 3454
+dominate 9065
+dominated 8370
+dominates 7616
+dominating 8287
+done 172
+donor 1956
+donors 3863
+doom 5416
+door 4771
+doors 3132
+doorstep 5868
+doping 6737
+doses 6385
+dossier 7863
+dossiers 2423
+double 2327
+doubled 3492
+doubling 7231
+doubt 306
+doubtful 1673
+doubtless 9356
+doubts 7617
+down 512
+downfall 7618
+downgraded 8176
+downright 8571
+downs 4772
+downstream 8346
+downward 1648
+dozens 9243
+dprk 7255
+draft 1527
+drafted 2954
+drafting 1365
+drafts 7773
+draftsman 8400
+drag 8915
+dragged 8572
+dragging 2899
+drain 9131
+draining 8105
+drains 5381
+drama 7930
+dramatic 3493
+dramatically 3494
+drank 7902
+drastic 1674
+drastically 2980
+draw 2455
+drawing 1921
+drawing-up 7390
+drawn 1101
+draws 4774
+dreadful 7391
+dream 5537
+dreaming 9222
+dreams 4235
+dredged 5414
+drenched 3673
+dressed 1537
+drew 1913
+dried 7516
+drift 4775
+drink 4633
+drinking 4412
+drive 1102
+driven 4012
+driver 4331
+drivers 4776
+driving 2803
+drop 5869
+dropped 4536
+drops 6938
+drought 5870
+drove 8326
+drowned 8516
+drowning 7619
+drug 4380
+drugs 2591
+drunk 8919
+drunken 7984
+dry 4777
+dual 6931
+dubious 7392
+dublin 4338
+due 1361
+duisenberg 8361
+duly 3912
+dumped 5382
+dumping 1196
+dunn 4778
+duodena 4188
+duplicate 9264
+duplicating 7903
+duplication 7127
+durable 6853
+duration 3728
+during 1103
+dutch 7393
+duties 116
+dutroux 6814
+duty 2016
+duty-bound 3849
+dwell 8837
+dwindling 4779
+dyes 2292
+dying 3913
+dynamic 1105
+dynamism 9132
+e 9187
+e-11 6614
+e-business 8313
+e-commerce 1675
+e-europe 8939
+e-mail 9133
+e.g. 3914
+each 1362
+eager 2424
+eagerly 9409
+earlier 2844
+earliest 4781
+early 1530
+earmark 5305
+earmarked 2125
+earn 9486
+earned 6415
+earnings 8815
+ears 8481
+earth 3286
+earthquakes 5872
+ease 3978
+easier 1106
+easily 1074
+easing 9515
+east 3948
+eastern 5637
+easy 3495
+eat 4365
+eaten 8098
+eating 4561
+ec 4784
+ecb 369
+echelon 4785
+echo 895
+echoed 8362
+echoing 8219
+ecip 7511
+eclipsed 7571
+eco-label 7905
+eco-labelling 5874
+eco-management 4367
+eco-system 6471
+eco-systems 9526
+ecofin 7254
+ecological 6878
+ecologically 9134
+economic 710
+economical 9110
+economically 4786
+economics 4073
+economies 2777
+economy 1205
+ecosystem 7620
+ecosystems 9020
+ecsc 4787
+edd 7394
+edf 5340
+edge 7217
+edges 2425
+edition 7023
+educate 7621
+educated 3916
+educating 2426
+education 1009
+educational 1324
+eel 8363
+eels 4788
+eeurope 4789
+efa 8973
+effect 307
+effective 2208
+effectively 776
+effectiveness 5670
+effects 1107
+efficiency 3254
+efficient 392
+efficiently 4790
+effort 1814
+efforts 1108
+egan 9421
+egypt 1148
+eib 7311
+eight 4906
+ein 3012
+eine 7922
+einem 7983
+einer 8005
+eines 8042
+eingegangenen 8059
+eingesetzt 8062
+einziges 7455
+einzuhalten 8061
+either 358
+ejido 173
+el 4792
+elaborate 6417
+elaborated 8682
+elderly 2064
+eldr 7781
+elected 3029
+election 1989
+elections 411
+electoral 3309
+electorate 7039
+electrical 7208
+electricity 1388
+electronic 4612
+electronically 6876
+element 491
+elements 1109
+elephant 4025
+elevated 1990
+elicit 8749
+eligible 8171
+eliminate 2430
+eliminated 3096
+eliminating 1389
+elimination 5877
+elisabeth 5426
+elite 7232
+else 1415
+elsewhere 2780
+emanates 3145
+emanating 9223
+emas 5706
+embargo 7288
+embark 1510
+embarked 3117
+embarking 3917
+embarrassed 9463
+embedded 8900
+embellish 9135
+embodied 6559
+embrace 3911
+embraced 8953
+embraces 7622
+embracing 7958
+embroiled 5436
+embryo 4793
+embryonic 7771
+embryos 8080
+emcdda 8719
+emerge 1110
+emerged 5257
+emergence 7040
+emergency 1434
+emerges 6882
+emerging 2258
+emigrate 4902
+emission 4794
+emissions 2314
+emit 7959
+emitted 8296
+emotional 4795
+emotions 5251
+emphasis 711
+emphasise 1112
+emphasised 399
+emphasises 2937
+emphasising 6353
+emphatic 7981
+emphatically 4796
+empire 4797
+employ 2129
+employed 3660
+employee 4352
+employees 4436
+employer 6914
+employers 2431
+employing 1705
+employment 176
+employment-related 5878
+employs 8150
+empower 6966
+empowered 8384
+empowering 3919
+empty 5879
+empty-handed 8314
+emptying 8916
+emu 3758
+en 8215
+enable 1473
+enabled 3428
+enables 1677
+enabling 777
+enacted 5881
+encephalopathy 8573
+encompass 2395
+encompasses 2938
+encounter 3920
+encountered 5882
+encountering 1113
+encourage 2155
+encouraged 3499
+encouragement 3138
+encourages 2736
+encouraging 3115
+encroached 8447
+end 703
+end-of-life 8249
+endanger 9357
+endangered 8687
+endangering 8216
+endeavour 1678
+endeavouring 9342
+endeavours 6808
+ended 4799
+endemic 1115
+ending 4800
+endless 9464
+endlich 3038
+endorse 5306
+endorsed 2120
+endorses 6567
+endorsing 8740
+ends 5884
+endure 3720
+enduring 4801
+energetically 9465
+energies 3402
+energy 1427
+enforce 2873
+enforceable 5873
+enforced 3500
+enforcement 3437
+enforcing 9466
+engage 2432
+engaged 113
+engaging 1991
+engender 9467
+engendered 7625
+engendering 8018
+engine 3768
+engineering 6739
+engines 7906
+england 4802
+english 3921
+enhance 2874
+enhanced 5704
+enhancement 7486
+enhancing 8164
+enjoy 3747
+enjoyed 2979
+enjoying 1992
+enjoys 2534
+enlargement 33
+enlargements 7975
+enlarging 8318
+enlighten 8431
+enlightened 7233
+enlist 7234
+enmity 5885
+enormity 9137
+enormous 3501
+enormously 5666
+enough 513
+enquiries 5886
+enquiry 2433
+enrich 8019
+enriching 8599
+enshrined 4804
+enshrining 1993
+ensue 8256
+ensued 8020
+ensuing 5625
+ensure 287
+ensured 4806
+ensures 308
+ensuring 515
+entail 6837
+entailed 5431
+entails 5887
+enter 669
+entered 3310
+entering 1679
+enterprise 4807
+enterprises 5888
+enters 7626
+entertained 2956
+enthusiasm 4811
+enthusiastic 9244
+enticed 9343
+entire 840
+entirely 4813
+entirety 4791
+entities 5889
+entitled 2434
+entitlement 4814
+entitlements 4062
+entity 1680
+entrenched 4815
+entrepreneurial 5890
+entrepreneurs 3922
+entrust 2875
+entrusted 7237
+entry 7099
+entwicklung 8071
+envelope 6553
+enviable 7976
+environment 1390
+environmental 73
+environmentally 3918
+environmentally-friendly 5891
+environments 9059
+envisage 1116
+envisaged 4816
+envisages 7960
+envisaging 3923
+envoy 4817
+ep 7941
+epidemic 7041
+epidemiological 8021
+episode 3719
+equal 1117
+equality 4667
+equally 3139
+equate 8838
+equated 6968
+equilibrium 941
+equip 5307
+equipment 2689
+equipped 3292
+equitable 9319
+equivalent 778
+era 3503
+eradicate 8416
+eradicating 6883
+eradication 7782
+erasmus 3311
+erforderlich 8079
+erfüllung 7480
+ergriffen 8085
+erinnerung 8088
+erlangen 8092
+ermöglichen 8093
+eroded 6615
+eroding 8786
+erosion 6928
+error 4818
+errors 3083
+ersuchen 3041
+es 1870
+escape 6418
+escaped 2994
+escapes 2394
+escaping 5763
+especially 1391
+espouse 2939
+essence 4293
+essential 35
+essentially 806
+establish 721
+established 309
+establishes 1118
+establishing 516
+establishment 2435
+establishments 6472
+esteem 7627
+estimate 734
+estimated 3030
+estuary 9115
+et 5474
+eta 8482
+etc 2436
+etc. 8755
+eternal 1868
+ethical 3732
+ethiopia 4820
+ethiopian 7783
+ethnic 4821
+ethnically 9138
+etwa 8147
+eu 661
+eu-acp 1779
+eu-africa 6969
+eu-asean 9060
+eur 6671
+euratom 8867
+euro 177
+euro-11 7784
+euro-african 3674
+euro-mediterranean 5895
+euro-zone 7192
+eurodac 7002
+europe 147
+europe-atlantic 8767
+european 107
+europeans 5899
+europol 179
+euros 6440
+eurostat 9229
+evacuation 8676
+evade 5900
+evaluate 2438
+evaluated 5901
+evaluating 6631
+evaluation 2439
+evans 7238
+evasive 8804
+eve 1416
+even 36
+evening 4825
+evenings 9468
+event 2441
+events 1119
+eventually 1605
+ever 518
+ever-greater 7147
+ever-increasing 3378
+every 181
+everybody 1580
+everyday 4828
+everyone 1474
+everything 1120
+everywhere 5902
+evidence 930
+evidenced 3628
+evident 3675
+evidently 4829
+evil 4431
+evoke 9245
+evolution 6970
+evolve 4606
+evolving 1995
+ex 8217
+ex-ante 8862
+exacerbate 6971
+exacerbated 4830
+exact 3812
+exactly 3244
+exaggerate 8401
+exaggerated 1459
+examination 4195
+examine 3109
+examined 3121
+examining 7961
+example 649
+examples 3491
+exceed 9516
+exceedances 1121
+exceeded 8371
+exceeding 8022
+exceeds 8023
+excellence 1684
+excellency 9230
+excellent 4216
+except 3928
+exception 183
+exceptional 5903
+exceptionally 5904
+exceptions 6900
+excess 3813
+excesses 4831
+excessive 2442
+excessively 8690
+exchange 4832
+exchanged 5905
+exchanges 3676
+exchanging 7889
+excise 2876
+excited 9188
+exciting 4266
+exclude 936
+excluded 2170
+excludes 4291
+excluding 8842
+exclusion 184
+exclusive 185
+exclusively 6308
+excuse 5628
+excuses 9140
+execute 9017
+executed 6972
+executing 8412
+execution 4833
+executive 1534
+exemplary 5906
+exemplified 3629
+exempt 3606
+exemption 3469
+exemptions 1123
+exercise 1475
+exercised 7496
+exercises 7628
+exercising 7240
+exert 3929
+exerted 7834
+exerting 3245
+exhaustive 3930
+exile 3031
+exiles 4834
+exist 135
+existed 1685
+existence 1124
+existing 3931
+exists 1392
+exonerate 6973
+expand 8574
+expanded 8921
+expanding 5476
+expands 1829
+expansion 4835
+expect 519
+expectation 2851
+expectations 6354
+expected 4836
+expecting 3932
+expects 3380
+expedient 7672
+expelled 7396
+expenditure 2402
+expense 3504
+expenses 1411
+expensive 3020
+experience 1904
+experienced 3933
+experiences 4837
+experiencing 1126
+experiment 5477
+experimented 8917
+experiments 5422
+expert 780
+expertise 5639
+experts 520
+expire 4488
+expired 6280
+expires 8177
+expiry 4375
+explain 2444
+explained 1127
+explains 4265
+explanation 3055
+explanations 7158
+explanatory 7045
+explicit 2781
+explicitly 6419
+exploit 1478
+exploitation 2065
+exploited 6974
+exploiting 4838
+explore 9061
+exploring 9185
+explosion 6892
+explosive 8671
+exponentially 3505
+export 2344
+exported 7962
+exporters 4839
+exporting 6924
+exports 3669
+expose 7629
+exposed 4487
+exposing 4445
+exposure 9370
+express 756
+expressed 934
+expresses 6523
+expressing 3371
+expression 3154
+expressions 4840
+expressly 8784
+expulsion 8947
+extend 521
+extended 2445
+extending 522
+extends 6669
+extension 627
+extensive 2970
+extensively 6355
+extent 932
+external 1931
+extra 3662
+extra-territorial 4417
+extract 8528
+extracted 6759
+extraction 7630
+extrajudicial 7631
+extraordinarily 7943
+extraordinary 4843
+extrapolated 6662
+extreme 1476
+extreme-right 3935
+extremely 311
+extremism 1687
+extremist 5908
+extremists 4844
+eye 2447
+eyes 1932
+fabric 7069
+face 1128
+faced 2449
+faces 5909
+facilitate 3164
+facilitated 7149
+facilitating 2450
+facilities 2162
+facility 1688
+facing 1689
+fact 186
+fact-finding 6420
+facto 5839
+factor 433
+factories 4150
+factors 1343
+factory 5910
+facts 310
+factual 8768
+fail 2454
+failed 1857
+failing 114
+failings 9469
+fails 2456
+failure 528
+failures 1906
+fair 89
+fairly 6925
+fairness 6860
+faith 2457
+faithful 4846
+faithfully 6623
+faits 9382
+fall 532
+fallen 1393
+falling 2990
+falls 2115
+false 5559
+falsification 1135
+familiar 3715
+familiarise 7632
+families 1691
+family 4197
+famine 8575
+fan 8783
+fanatical 7289
+fancy 8907
+fanning 7551
+fantasy 9141
+far 295
+far-reaching 1136
+farm 3228
+farmer 8432
+farmers 2987
+farming 5308
+farmland 6741
+farms 4848
+fascism 5913
+fascist 5673
+fashion 2298
+fast 3506
+faster 4849
+fastest 9019
+fat 8577
+fatal 8129
+fate 3677
+father 6976
+fathers 2737
+fats 7633
+fault 2107
+favour 534
+favourable 2392
+favourably 3037
+favoured 7414
+favouring 2459
+favours 3163
+fax 8539
+fear 535
+fearing 8680
+fears 782
+feasibility 7312
+feasible 4850
+feature 1137
+featured 9189
+features 5914
+february 3140
+fed 7241
+federal 5915
+federalism 6421
+federalist 4446
+federation 3507
+fee 3508
+feed 3483
+feed-in 7085
+feedback 4851
+feeding 7634
+feedingstuffs 3118
+feel 862
+feeling 1138
+feelings 4852
+feels 313
+fees 3966
+feet 5917
+feira 6268
+fell 7853
+fellow 37
+felt 3936
+female 1851
+fence 7046
+fend 9142
+feststellen 8153
+feverish 8578
+few 1354
+fewer 8259
+fiasco 7635
+fibre 5642
+fibres 9143
+fide 9509
+field 1692
+fields 4853
+fiercely 8010
+fifa 7786
+fifteen 5918
+fifth 3759
+fifty 7559
+fight 524
+fighting 4855
+fights 3937
+figure 3196
+figures 3314
+fiji 4856
+file 3036
+filed 8698
+files 7037
+fill 536
+filled 3460
+filling 7242
+fills 3938
+film 6867
+films 4252
+final 2512
+finalised 5289
+finalising 8074
+finally 783
+finance 3248
+financed 6712
+finances 3755
+financial 677
+financially 8579
+financing 314
+find 754
+finden 8154
+finding 937
+findings 1479
+finds 3270
+fine 1695
+fine-sounding 4858
+fines 5919
+finger 4859
+finish 4860
+finished 4385
+finite 5560
+finland 8537
+finnish 3678
+fire 3781
+fired 8545
+fires 7295
+firm 1141
+firmly 3939
+firms 4861
+first 542
+first-class 8580
+first-hand 3152
+first-rate 4862
+firstly 39
+fiscal 4863
+fish 1142
+fished 9348
+fisheries 187
+fisherman 8433
+fishermen 2052
+fishery 5920
+fishing 2254
+fissionable 9501
+fit 5674
+fits 6517
+fitted 3940
+fitting 7290
+five 1395
+five-day 8581
+five-year 8166
+fix 6742
+fixed 4864
+fixing 7637
+flag 1697
+flagrant 7788
+flags 2461
+flames 7552
+flat 5923
+flax 5924
+fled 4198
+flee 3509
+fleeing 3269
+fleet 5925
+fleets 7291
+flemish 16
+flexibility 2203
+flexible 4865
+flies 9144
+flight 1997
+flights 4077
+floating 9246
+flood 4332
+flooded 6425
+flooding 5926
+floods 8918
+floor 2783
+flourish 8896
+flow 1897
+flower 9298
+flows 4866
+fluctuations 6909
+fluisterasfalt 4867
+fly 1618
+flying 2462
+flynn 2463
+fobbed 8413
+focal 7243
+focus 538
+focused 3941
+focuses 6426
+focusing 3942
+focussing 9299
+foisted 9450
+fold 8418
+follow 1811
+follow-up 4868
+followed 1538
+following 4
+follows 965
+folly 3679
+fomented 1974
+fond 8769
+fontaine 5928
+food 944
+foodstocks 4202
+foodstuff 8524
+foodstuffs 5284
+fool 9190
+foolish 1628
+foot 3510
+football 5929
+footing 2249
+for 131
+fora 6809
+forbidden 8950
+forbids 6743
+force 1159
+forced 1999
+forceful 3943
+forcefully 2166
+forces 2130
+forcing 4871
+fore 5337
+forecast 8138
+forecasts 2259
+forecourt 8489
+forefront 5939
+forego 9410
+foregoing 8434
+foregone 9313
+foreign 1557
+foreigners 1146
+foremost 3116
+foresee 2471
+foreseeable 807
+foreseen 6568
+forest 23
+forestall 9487
+forestry 4873
+forests 1034
+foretaste 8254
+forever 5940
+forge 9191
+forged 8839
+forget 316
+forgetfulness 9300
+forgetting 1160
+forging 8077
+forgive 7508
+forgot 8359
+forgotten 1010
+form 1581
+formal 2472
+formally 1161
+formation 2784
+formed 3945
+former 1701
+formerly 7116
+formidable 8892
+forming 543
+forms 2000
+formula 8583
+formulas 1876
+formulate 3319
+formulated 2001
+formulating 6898
+formulation 7110
+forth 4454
+forthcoming 4874
+forthwith 4875
+fortnight 8424
+fortunate 4876
+fortunately 5941
+forty 5649
+forum 748
+forward 544
+forward-looking 9358
+forwarded 7246
+forwards 2473
+forza 7247
+foster 1608
+fostered 7999
+fostering 7453
+fought 4563
+found 125
+foundation 6291
+foundations 6427
+founded 3511
+founding 5943
+four 5420
+fours 8024
+fourteen 7417
+fourth 6810
+fourthly 9404
+fpö 5944
+fr 874
+fragile 3512
+fragility 6428
+fragmentation 7249
+frahm 4057
+frame 6429
+framed 6388
+frames 4877
+framework 1375
+frameworks 4878
+france 3734
+frank 3847
+frankfurt 5945
+frankly 2002
+fraud 4639
+fraudulently 6430
+free 2003
+freed 5083
+freedom 2004
+freedoms 3756
+freeing 3275
+freely 3946
+freeze 4879
+freezes 4246
+freight 406
+freiheit 3042
+french 546
+frequency 5946
+frequent 2995
+frequently 5947
+fresh 971
+freudian 9002
+friday 882
+fridays 3652
+frieden 8159
+friedensabkommen 7874
+friedensprozeß 8160
+friedenstruppe 8161
+friedlichen 8162
+friend 4439
+friendly 5627
+friends 3947
+frightened 7086
+frightening 4881
+fringe 5479
+frivolous 8903
+from 547
+front 1163
+frontier 5952
+frontiers 2477
+fronts 6979
+frozen 7907
+fruit 4885
+fruitful 7129
+fruits 2193
+frustration 3867
+fuel 3513
+fuelled 4013
+fuelling 6309
+fujimori 9473
+fulfil 2877
+fulfilled 1611
+fulfilling 7641
+fulfilment 389
+fulfils 1661
+full 1149
+full-time 5562
+fullest 5953
+fully 1164
+function 1912
+functional 7883
+functioning 2785
+functions 2382
+fund 2360
+fundamental 1165
+fundamentalism 8584
+fundamentally 3950
+funded 1591
+funding 553
+funds 122
+furnished 9422
+further 769
+furtherance 7487
+furthermore 788
+fuss 8115
+future 192
+futures 3951
+fyrom 8141
+förderung 7484
+fünf 3045
+für 3126
+g7 4189
+gab 8250
+gain 3119
+gained 1905
+gaining 6980
+gallery 2776
+gamble 2478
+game 4006
+games 9250
+ganze 7488
+gap 4333
+gaps 2479
+garden 5954
+gas 4140
+gases 6626
+gather 4747
+gathered 4888
+gathering 3198
+gatt 4889
+gauge 2608
+gave 942
+gay 8940
+gear 2480
+geared 6431
+geben 6522
+gebracht 8260
+gefährlicher 7875
+gegen 8264
+gegenwärtig 8292
+gehen 3046
+gender 2786
+gene 6368
+general 1356
+generalisation 8891
+generalised 8955
+generally 1823
+generate 4049
+generated 2943
+generates 9145
+generating 1988
+generation 1939
+generations 5955
+generosity 5716
+generous 3199
+generously 5743
+genes 5956
+genetic 5957
+genetically 4890
+geneva 5758
+genius 8457
+genocide 8585
+gentlemen 30
+genuine 3316
+genuinely 784
+geographic 4891
+geographical 2270
+geographically 8771
+german 4440
+germany 2481
+gerufen 8089
+geschlossen 8301
+gesprochen 6555
+gesture 5960
+get 722
+gets 5961
+getting 1167
+gewalttaten 8306
+girls 4894
+give 426
+given 789
+gives 1582
+giving 790
+glad 1168
+gladly 8448
+glance 6715
+glass 3318
+global 2469
+globalisation 1539
+globalised 4441
+globally 9326
+globe 7108
+gloss 5275
+gluten 4869
+gnp 8195
+go 40
+go-ahead 7313
+goal 1907
+goals 3710
+goes 193
+going 1169
+gold 5481
+golden 6894
+gone 1170
+gonzález 4896
+good 548
+goodbye 6685
+goodness 9423
+goods 1655
+goodwill 7109
+goodyear 8586
+gorsel 2483
+got 317
+govern 3954
+governability 7251
+governance 3989
+governed 1961
+governing 1437
+government 1172
+governmental 5963
+governments 1173
+governor 9252
+graco 8341
+grade 6395
+gradual 7438
+gradually 4897
+grain 8224
+grand 1558
+grant 993
+granted 166
+granting 540
+grants 7644
+grapes 6322
+grapevine 6779
+grasp 7646
+grasped 7647
+grass 5964
+grass-roots 5965
+grateful 194
+gratitude 6957
+grausamen 8307
+grave 3017
+graze 6744
+great 1174
+greater 1176
+greatest 1177
+greatly 2754
+greece 3663
+greed 7187
+greek 3955
+green 5421
+greenhouse 4898
+greens 3084
+greet 6545
+greeted 9062
+gremlins 7032
+grew 1583
+grid 6811
+grids 4442
+grilled 8408
+grip 6433
+grips 7073
+groaning 8920
+gross 5967
+grossly 8658
+ground 1178
+grounds 1179
+groundwater 7711
+group 678
+groups 1180
+grow 3516
+growers 5482
+growing 1637
+grown 5483
+grows 5968
+growth 1666
+grudgingly 8257
+grâce 5384
+guarantee 551
+guaranteed 3303
+guaranteeing 2878
+guarantees 552
+guard 4900
+guardian 7252
+guards 5419
+guerrillas 5969
+guests 4129
+guidance 4403
+guide 2879
+guided 1610
+guidelines 2231
+guiding 2089
+guigou 5427
+guilty 1704
+guinea 7102
+guise 5484
+gulf 7514
+gun 9424
+guns 9311
+gutiérrez-cortines 8365
+gyllenhammar 7640
+haben 8063
+habit 1874
+habitats 5970
+habits 2485
+had 1181
+hadep 5972
+hague 5973
+haider 8588
+hair 3389
+hairdressers 9522
+half 1627
+half-finished 8817
+halfway 3957
+halibut 4618
+hallmark 3377
+halt 5282
+halted 9429
+hammer 7649
+hammering 6557
+hamper 6982
+hampered 8542
+hampering 9033
+hand 319
+handed 6434
+handelte 3048
+handful 3786
+handicapped 8373
+handing 5310
+handle 3682
+handled 3025
+handling 2487
+handover 4901
+hands 2486
+hang 6650
+hanging 9192
+hangs 4068
+happen 1130
+happened 554
+happening 195
+happens 581
+happily 4443
+happy 4292
+harassment 4822
+harbour 3958
+hard 1139
+harder 3201
+hardly 2718
+hardware 4903
+harm 4105
+harmful 3517
+harming 4490
+harmless 4904
+harmonious 7399
+harmoniously 7849
+harmonisation 2223
+harmonise 5047
+harmonised 3959
+harmonising 7650
+harsh 4905
+harshly 8206
+has 56
+haste 3412
+hasten 5485
+hat 8261
+hatred 1975
+hatzidakis 816
+haunt 9448
+haunting 8589
+haute-normandie 8597
+have 43
+having 303
+havoc 9368
+hazard 5975
+hazardous 5976
+hazards 7047
+he 625
+head 1385
+head-on 198
+headed 3716
+heading 1952
+headings 4909
+headline 5977
+headquarters 7075
+heads 1612
+headway 5978
+health 663
+healthier 4910
+healthy 4336
+hear 378
+heard 707
+hearing 1184
+hears 8989
+heart 712
+heartfelt 8225
+heartily 8436
+hearts 1186
+heat 5979
+heaven 4912
+heavily 3076
+heavy 555
+hectare 5980
+heed 7654
+heeded 6984
+heeding 7655
+hefty 9499
+hegemony 7048
+heifer 4913
+height 7253
+heighten 9367
+heightened 8025
+heights 6314
+held 1182
+helm 8380
+help 1028
+helped 2136
+helpful 4505
+helping 3250
+helplessness 6422
+helps 3331
+helsinki 4916
+hemicycle 6886
+hemp 5641
+hence 3320
+henceforth 5983
+her 1187
+heralded 6985
+herbivores 9371
+herds 5984
+here 320
+hereby 6437
+heritage 3080
+herr 8397
+herself 8886
+hesitate 7584
+hesitation 4283
+het 3054
+heute 3372
+hi-tech 5985
+hidden 2497
+hide 3683
+high 819
+high-added-value 8000
+high-level 3321
+high-quality 3967
+high-speed 7298
+higher 2206
+higher-quality 9146
+highest 5974
+highest-producing 9474
+highlight 1480
+highlighted 556
+highlighting 1540
+highlights 2945
+highly 3519
+hijacked 7177
+him 167
+himself 1709
+hinaus 6668
+hinder 2880
+hindered 2291
+hindering 3203
+hinders 9321
+hindrance 4908
+hinted 8366
+hipc 5986
+his 189
+historic 3185
+historical 2498
+historically 8485
+histories 4917
+history 2789
+hit 2881
+hitherto 2582
+hits 1586
+hitting 4497
+hiv 6323
+hoc 4388
+hoffnungen 7489
+hoist 8133
+hold 557
+holder 2007
+holding 1188
+holdings 7762
+holds 2946
+hole 4735
+holes 5991
+holiday 5992
+hollywood 4251
+holte 4918
+holy 8179
+holzmann 8305
+home 811
+homeless 6439
+homes 4919
+homework 8027
+honestly 6416
+honesty 3717
+honour 2882
+honourable 1190
+honoured 5796
+honouring 7540
+hooliganism 8117
+hoops 7790
+hope 558
+hoped 403
+hopeful 7087
+hopefully 794
+hopes 3271
+hoping 1861
+horizon 3782
+horizontal 7293
+horrendous 4278
+horrific 9218
+horrified 6986
+horrifying 5486
+horror 5993
+horrors 9249
+horse 6812
+horses 4920
+hospital 4553
+host 2141
+hostile 7656
+hostility 4921
+hot 5994
+hotel-and-restaurant 8382
+hour 7944
+hours 2499
+house 199
+household 4083
+housekeeping 1693
+housing 4922
+hovering 9003
+how 792
+however 793
+huge 883
+hugely 8466
+human 151
+humane 5612
+humanitarian 5997
+humanity 2883
+humans 4504
+humble 4294
+humiliating 3969
+hundred 5921
+hundreds 3970
+hunger 1711
+hunt 6281
+hunters 7657
+hurdle 5998
+hurt 6987
+husband 6680
+hydrocarbons 3889
+hydrographic 4923
+hypocrisy 7049
+hypocritical 3522
+hypocritically 7658
+i 42
+i. 5987
+i.e. 1541
+icao 4511
+iceberg 7400
+ich 3051
+id 5999
+idea 291
+ideal 4925
+idealism 9064
+idealistic 6000
+ideally 1363
+ideals 559
+ideas 1401
+identical 2137
+identifiable 4430
+identification 6304
+identified 207
+identifies 2948
+identify 2012
+identifying 1192
+identities 6001
+identity 4926
+ideological 3636
+ideologies 8591
+ideology 3839
+idle 4927
+if 280
+igc 4928
+ignorance 1194
+ignore 3524
+ignored 3525
+ignores 4444
+ignoring 3980
+ihre 8444
+ii 6002
+iii 65
+ilia 8226
+ill 3204
+ill-considered 6003
+illegal 1195
+illegality 2500
+illegally 1404
+illicit 5936
+illness 1778
+illogical 5995
+illusion 1875
+illustrate 3981
+illustrated 7661
+illustrates 3637
+illustration 6871
+ilo 7791
+im 8459
+image 3141
+imagination 3526
+imagine 560
+imbalance 2868
+imbalances 3887
+imbeni 9201
+imitated 6580
+imitation 6862
+immediate 458
+immediately 985
+immense 5705
+immensely 6527
+immigrant 4930
+immigrants 1942
+immigration 2501
+imminent 7977
+immune 9075
+impact 561
+impacting 6988
+impacts 2949
+impaired 7747
+impartial 9528
+impasse 6004
+imperative 1197
+imperfect 8799
+imperfectly 4931
+imperialism 6005
+impetus 2503
+implement 529
+implementation 360
+implemented 1001
+implementing 664
+implication 6007
+implications 1447
+implicitly 3925
+implied 799
+implies 1198
+imply 4932
+implying 3983
+import 2790
+importance 1175
+important 104
+importantly 562
+imported 2505
+importing 8343
+imports 2506
+impose 2884
+imposed 3032
+imposing 3134
+imposition 4933
+impossible 3819
+impotence 4935
+impoverishment 21
+impracticable 8180
+impressed 6726
+impression 323
+impressive 7256
+impressively 8328
+imprisoned 4248
+imprisonment 6008
+improper 7401
+improve 2117
+improved 1869
+improvement 3527
+improvements 3353
+improving 361
+impulse 5580
+in 28
+in-depth 5930
+in-house 6279
+inability 5487
+inadequacies 7793
+inadequate 3452
+inadequately 5723
+inadmissible 8818
+inappropriate 6866
+inauguration 7402
+incalculable 9147
+incapable 6012
+incapacity 8974
+incentive 2215
+incentives 4943
+incidence 795
+incidences 9066
+incident 1713
+incidentally 4944
+incidents 6013
+incineration 2649
+incinerators 4945
+incite 9488
+include 327
+included 4537
+includes 1587
+including 1544
+inclusion 566
+inclusive 6752
+incoherence 6632
+income 4325
+incomes 5644
+incompatibility 7403
+incompatible 5663
+incompetence 7100
+incomprehensible 8754
+inconceivable 8819
+inconsistent 8806
+incorporate 747
+incorporated 3530
+incorporates 6014
+incorporating 3156
+incorporation 567
+incorrect 4615
+increase 991
+increased 990
+increases 6910
+increasing 2013
+increasingly 1283
+incredible 8491
+incredibly 8492
+incumbent 7260
+incurred 5520
+incurring 2516
+indebted 8741
+indecent 3997
+indeed 785
+indefinitely 6444
+independence 2517
+independent 2262
+indexes 7794
+india 8342
+indicate 3356
+indicated 781
+indicates 1200
+indicating 1201
+indication 419
+indicative 1966
+indicator 7885
+indicators 7115
+indifference 4947
+indigenous 6597
+indignant 4948
+indirect 3688
+indiscriminate 3531
+indispensable 7937
+individual 662
+individually 3391
+individuals 2788
+indonesia 4167
+induce 9094
+inducing 6887
+indulge 6445
+indulged 6015
+industrial 2519
+industrialists 6016
+industries 680
+industry 1202
+ineffective 6849
+ineffectual 4538
+inefficiencies 8600
+inefficiency 3502
+inefficient 4949
+inefficiently 6017
+inequalities 3390
+inequality 7294
+inevitable 4419
+inevitably 1588
+infamous 6813
+infant 5951
+infected 5707
+infectious 1542
+inferior 3998
+inflammable 6625
+inflation 6018
+inflationary 6019
+inflexibility 7261
+inflicting 3915
+influence 1549
+influenced 6446
+influencing 7638
+influx 8013
+inform 1203
+informal 1204
+informally 9068
+information 208
+information-rich 6646
+informed 1002
+informing 7165
+infrastructural 4950
+infrastructure 3807
+infrastructures 1151
+infringe 9207
+infringement 4005
+infringements 4951
+infringes 8269
+infringing 8280
+ingredients 6020
+inhabit 6324
+inhabitants 4534
+inhabited 2520
+inhaled 8997
+inherent 803
+inheritance 4451
+inhumane 8383
+initial 4952
+initialled 8340
+initially 7667
+initiate 1481
+initiated 2154
+initiating 9069
+initiative 1716
+initiatives 705
+inject 3326
+injure 5035
+injured 5213
+injuries 8441
+injury 3999
+injustice 9148
+inland 8414
+innocent 3532
+innovation 4953
+innovative 3788
+inordinate 9070
+input 3206
+inquiries 3533
+inquiry 3298
+insbesondere 5505
+insecure 8046
+insecurity 6022
+insensitive 8100
+inserted 8374
+inside 4954
+insiders 3689
+insidious 8526
+insight 8181
+insights 4955
+insignificant 6023
+insist 2138
+insisted 1183
+insistence 6024
+insisting 3690
+insists 1207
+insofar 4000
+insolvency 3752
+inspecting 7491
+inspection 1890
+inspections 4613
+inspectors 3534
+inspiration 8587
+inspire 2963
+inspired 1986
+instability 7561
+installation 7532
+installations 6025
+installed 4956
+installing 5332
+instance 1998
+instances 2522
+instead 3133
+instigate 7964
+instigated 7111
+instil 3362
+instinct 7050
+institute 3563
+instituted 2318
+institution 2523
+institutional 5776
+institutionalised 9109
+institutionally 9529
+institutions 1714
+instructions 4957
+instrument 2460
+instrumental 8182
+instruments 1729
+insubstantial 8517
+insufficient 4491
+insufficiently 8820
+insult 3535
+insulting 3831
+insults 7945
+insurance 1208
+insure 8922
+insured 4492
+intact 9149
+integral 6026
+integrate 2524
+integrated 2525
+integrates 6848
+integrating 2526
+integration 671
+integrity 9150
+intellectual 6027
+intelligence 4958
+intend 1923
+intended 1210
+intends 1830
+intense 1211
+intensification 7264
+intensified 9071
+intensify 7263
+intensifying 6325
+intensity 9386
+intensive 5450
+intent 4959
+intention 584
+intentions 4723
+intents 6266
+inter 3722
+inter-service 8601
+interaction 6749
+intercede 8228
+intercepted 7079
+interception 7404
+interceptions 8184
+interest 1081
+interested 4548
+interesting 197
+interests 2513
+interface 4960
+interfere 7615
+interference 6658
+interfering 8822
+intergovernmental 2026
+intergroup 6902
+interim 4420
+interior 7589
+intermediaries 7074
+intermediary 7004
+intermediate 7795
+interministerial 5629
+internal 210
+internal-market 8052
+internally 4961
+international 3420
+internationalen 8006
+internationally 4704
+internet 3536
+interopérationnelle 3736
+interpret 6990
+interpretation 3537
+interpretations 4616
+interpreted 6028
+interprets 6750
+interreg 6815
+interrupt 9489
+intervals 5681
+intervene 3186
+intervened 8183
+intervenes 2950
+intervening 7512
+intervention 960
+interventions 1683
+interview 6449
+interviewed 8602
+intimate 9257
+intimidation 7668
+into 143
+intolerable 4962
+intolerably 8519
+intolerance 4963
+intractable 6029
+intransigence 9058
+intransigent 8281
+intrinsic 7908
+introduce 1758
+introduced 1212
+introduces 1590
+introducing 804
+introduction 1822
+invaded 7909
+invalidity 4964
+invariably 8980
+invasion 6708
+invented 8332
+invention 4183
+inventories 7198
+inventory 4421
+invest 945
+invested 2490
+investigate 2951
+investigated 3334
+investigating 3235
+investigation 2527
+investigations 4003
+investigative 1189
+investing 9476
+investment 2437
+investments 3538
+investors 4966
+invests 9361
+invisible 6798
+invitation 6030
+invite 1482
+invited 3207
+inviting 4004
+invoke 6751
+invoked 8604
+involve 568
+involved 856
+involvement 2795
+involves 420
+involving 1545
+iran 2952
+iranian 7669
+iraq 3539
+ireland 4967
+irish 9077
+iron 7265
+ironic 808
+ironically 9199
+irregularities 6031
+irrelevant 496
+irreparable 6032
+irrespective 3638
+irresponsible 9048
+irreversible 3074
+irritation 5253
+is 34
+isa 5898
+islam 3737
+islamic 8598
+island 4975
+islands 2533
+isolate 2381
+isolated 4539
+isolation 3205
+israel 6035
+israeli 8386
+israelis 8877
+issue 213
+issued 2926
+issues 188
+issuing 3436
+ist 3049
+it 55
+italia 7248
+italian 7405
+italians 6598
+italy 1216
+item 2018
+items 2536
+its 666
+itself 1327
+iv 6681
+ivory 5552
+jack 8607
+jackson 8442
+jacques 3833
+jahre 6297
+jahres 6263
+jail 8963
+january 4304
+japan 4449
+jedoch 6609
+jeopardise 6992
+jeopardised 9153
+jeopardises 8450
+jeopardising 573
+jeopardy 6037
+jerusalem 6038
+jews 8770
+jigsaw 3783
+job 809
+jobs 1846
+jobs.as 9383
+join 3208
+joined 6039
+joining 418
+joins 6040
+joint 2796
+jointly 5662
+joke 8142
+journalist 4765
+journalists 9224
+journeys 3301
+judge 5565
+judged 992
+judgement 3739
+judgements 4457
+judges 1838
+judging 7296
+judgment 8028
+judgments 5313
+judicial 1131
+juli 6261
+july 4306
+jump 2752
+juncture 6347
+june 1366
+junior 8608
+juris 8609
+jurisdiction 2539
+jurists 9301
+just 214
+justice 215
+justifiable 4978
+justifiably 3721
+justification 2451
+justified 2541
+justifies 6953
+justify 1221
+justly 6560
+kapitels 8722
+keen 1222
+keenly 6326
+keenness 8157
+keep 1223
+keeping 1152
+keeps 1640
+kept 2176
+kerosene 4979
+key 1614
+kick 9258
+kidnapping 9007
+kill 4015
+killed 1842
+killing 4016
+killings 3691
+kills 4009
+kilogram 7059
+kilometres 6041
+kind 949
+kindly 2955
+kinds 2797
+kingdom 1803
+kinnock 8610
+knee-jerk 8834
+knew 3542
+knocking 8001
+know 395
+know-how 3543
+knowing 4017
+knowledge 1047
+knowledge-based 8044
+known 1708
+knows 1224
+knuckles 8506
+konfliktparteien 7490
+konflikts 8043
+kontrolle 1887
+korea 4018
+koreans 8066
+kosovars 4407
+kosovo 2798
+kuhne 5948
+kuip 4510
+kurdish 7796
+label 4339
+labelled 3544
+labelling 2328
+labels 3974
+labour 574
+labour-intensive 6042
+labouring 8800
+labours 3209
+labyrinthine 4981
+lack 759
+lacked 7088
+lacking 1548
+lacks 3336
+ladder 3545
+ladies 29
+ladino 6617
+lady 1854
+lag 5489
+lagging 8826
+lags 8827
+laid 1594
+lake 1560
+lament 6536
+lamenting 4019
+land 590
+landed 6451
+landfill 5435
+landing 7051
+landings 7292
+landmark 8192
+landmines 2067
+landscape 3239
+lang 4982
+language 337
+languages 5336
+languedoc-roussillon 9154
+lapse 4738
+lapses 6044
+large 978
+large-scale 3187
+largely 2146
+larger 5538
+largest 813
+larrea 8344
+last 216
+lasted 6452
+lasting 3726
+lastly 6328
+late 1407
+later 2542
+latest 2310
+latin 4267
+latitude 8158
+latter 1438
+launch 4020
+launched 4011
+launching 7268
+launder 7550
+laundering 4398
+law 1717
+lawful 3210
+lawfully 8030
+lawlessness 8958
+laws 1855
+lawyer 8660
+lawyers 6045
+lax 8605
+lay 1225
+layer 4983
+layers 4984
+laying 3949
+layoffs 6820
+lays 1595
+lazarati 6453
+lead 196
+leader 3197
+leaders 755
+leadership 3760
+leading 885
+leads 1589
+leaf 9259
+league 3548
+leak 9334
+leaked 8696
+leaks 4986
+leap 6993
+learn 575
+learned 1230
+learning 1409
+learnt 7675
+least 1226
+least-developed 6047
+leave 1227
+leaves 2958
+leaving 3057
+leben 8727
+led 1718
+left 1228
+left-wing 4021
+left-wingers 7676
+leftovers 7677
+legacy 6454
+legal 876
+legalised 7509
+legality 1049
+legally 111
+legislate 5312
+legislated 7397
+legislating 6718
+legislation 1154
+legislative 410
+legislators 6048
+legislature 4987
+legitimacy 6756
+legitimate 4475
+legitimately 2545
+legitimise 8248
+leid 8732
+lend 5584
+lending 6884
+length 916
+lengthened 7965
+lengths 4988
+lengthy 4989
+lenient 9155
+lent 3549
+lentils 4990
+leonardo 6816
+leone 6593
+less 2799
+less-favoured 7797
+lessen 2546
+lesser 9045
+lesson 7798
+lessons 1229
+lest 4022
+let 460
+lets 6911
+letter 2547
+letters 1231
+letting 1232
+leukaemia 1856
+level 375
+levelled 1003
+levels 1000
+levied 4024
+levy 4401
+liability 4111
+liable 1607
+liaison 8087
+liberal 4072
+liberalisation 2742
+liberalised 4991
+liberals 8720
+liberated 4258
+liberation 4992
+liberty 1736
+libya 8772
+licence 3754
+licences 5399
+licensing 6766
+lie 2743
+lies 1233
+lieu 1559
+life 64
+lifelines 1077
+lifelong 1408
+lifestyles 4911
+lifetime 5871
+lift 2548
+lifted 4540
+lifting 401
+light 1023
+lightly 6051
+lights 7315
+like 218
+liked 1707
+likelihood 4826
+likely 576
+likeness 8904
+likes 8981
+likewise 6036
+liking 4994
+limb 9214
+limit 2745
+limitation 3550
+limitations 6817
+limited 4205
+limiting 4028
+limits 2804
+line 1234
+lines 923
+linguistic 5329
+linings 6310
+link 1593
+linked 1945
+linking 4516
+links 4995
+lion 6977
+lip 9436
+lips 7679
+liquid 3322
+liquidation 6967
+lisbon 5931
+list 1528
+listed 7038
+listen 1457
+listened 2550
+listening 4074
+listing 7662
+lists 831
+litany 8253
+literally 4175
+litigation 1719
+littered 7741
+little 751
+live 1235
+lived 6054
+livelihood 13
+liver 864
+lives 2800
+livestock 8611
+living 2358
+load 3791
+loan 6758
+loans 2551
+lobby 1236
+local 2019
+localised 4996
+locally 4030
+located 4249
+location 2801
+locations 2521
+lock 8844
+locked 8612
+lodged 6456
+logic 4997
+logical 1238
+logically 2959
+logistical 4998
+logistics 7406
+lomé 4999
+lonely 9527
+long 219
+long-awaited 9433
+long-distance 6329
+long-fibre 8220
+long-standing 6569
+long-term 4340
+longer 1239
+longer-term 7886
+longest 6330
+look 1419
+looked 1638
+looking 3040
+looks 279
+looms 8493
+loopholes 4031
+loose 9039
+lord 3551
+lorries 2802
+lorry 7270
+lose 1866
+loses 5000
+losing 2866
+loss 3784
+losses 2552
+lost 2531
+lot 843
+loud 1162
+loudly 8302
+love 4032
+loved 4907
+low 5001
+low-fat 4033
+lower 3212
+lowered 4541
+lowering 7680
+lowest 868
+loyalists 6357
+loyalty 6761
+lra 1240
+lucid 7131
+luck 5731
+lucky 6331
+lucrative 6275
+ludicrous 221
+lukewarm 9530
+lulù 3692
+lumbered 3850
+lump 7799
+lung 8345
+lure 3213
+luxembourg 6282
+luxury 7188
+lying 4036
+lynched 9432
+maastricht 7407
+macedonia 5725
+machine 4598
+machinery 6056
+machines 6052
+mad 3337
+madam 814
+madame 815
+made 329
+made-to-measure 8762
+madrid 4803
+mafias 5755
+magazines 5003
+maghreb 577
+magic 8760
+magistrate 7988
+magistrates 9156
+magnificent 7966
+magnified 6762
+magnitude 7408
+mahogany 4809
+mail 6457
+main 315
+mainly 632
+mainstream 6057
+mainstreaming 6058
+maintain 723
+maintained 2554
+maintaining 2885
+maintains 8451
+maintenance 7157
+major 432
+majority 2351
+make 202
+make-up 5958
+makers 9477
+makes 363
+making 452
+male 7464
+malpractice 4335
+malta 7273
+man 1629
+man-made 2555
+manage 1690
+managed 1150
+management 2556
+managerial 5316
+managers 4060
+manages 4808
+managing 5567
+mandate 1242
+mandates 9266
+mandatory 5005
+manifest 4040
+manifestation 6528
+manifestly 7113
+manifesto 7409
+manifestos 5950
+manipulated 2731
+manipulating 9267
+manipulation 1562
+manner 886
+manoeuvre 3338
+manoeuvres 6818
+manpower 7410
+manufacture 2960
+manufactured 6060
+manufacturer 5006
+manufacturers 2794
+manufacturing 6061
+many 222
+map 3411
+march 3324
+marches 4042
+marching 8230
+margin 5554
+marginal 2557
+marginalisation 9362
+marginalised 6764
+marginally 8869
+margins 5490
+marine 5617
+maritime 6062
+mark 1219
+marked 4044
+marker 656
+market 211
+market-related 7682
+marketing 6063
+markets 4438
+marking 6633
+markings 9213
+marks 3023
+marriage 3552
+marseilles 8099
+marshall 5008
+martinez 8388
+marvellous 5009
+marxists 6995
+mask 9490
+mass 3069
+massachusetts 8452
+massacres 6458
+masse 5010
+masses 3553
+massive 5011
+master 4191
+masters 8494
+match 2559
+matched 6459
+matches 4045
+matching 4605
+material 2228
+materialise 6064
+materials 1243
+maternal 9491
+maternity 8721
+mathematics 7789
+matter 224
+matters 1244
+matters.despite 7537
+mature 6065
+maxim 5012
+maximised 6066
+maximising 9073
+maximum 1783
+may 155
+maybe 4038
+mayor 8613
+maßnahmen 737
+mdc 2068
+me 379
+meagre 7931
+meal 6067
+mean 331
+meaning 3413
+meaningless 4047
+means 572
+meant 225
+meantime 356
+meanwhile 5013
+measure 2560
+measured 4048
+measurement 7754
+measures 738
+measuring 2561
+meat 6068
+mechanism 1721
+mechanisms 1412
+meda 7800
+meddling 8924
+media 1621
+mediate 8409
+mediation 8125
+mediator 5568
+medical 4599
+medication 8828
+medicine 6069
+mediterranean 2562
+medium 6070
+medium- 6913
+medium-sized 6071
+meet 2006
+meeting 475
+meetings 2806
+meets 2961
+meine 3616
+melting 1246
+member 416
+members 38
+membership 2465
+memorandum 5630
+memories 5015
+memory 6608
+men 2104
+menschenrechte 7492
+mention 578
+mentioned 1004
+mentioning 2440
+mentions 6461
+mep 1248
+meps 1155
+merchant 9157
+merchants 4037
+mercy 5683
+mere 3785
+merely 2563
+merge 7483
+merged 5016
+merger 7833
+mergers 2566
+merging 7071
+merit 2753
+merited 2962
+merits 1206
+message 3787
+messages 4192
+messrs 6996
+met 2322
+metals 9074
+metaphor 579
+meted 8288
+methane 9053
+method 982
+methods 1908
+metre 6072
+mexico 8829
+mg 6073
+michelin 7513
+micro-manage 6610
+microsoft 6074
+mid-term 8122
+middle 5017
+midnight 9159
+might 332
+migrant 3836
+migration 3093
+migratory 5018
+milan 9414
+mildly 6075
+mile 8525
+mileage 6981
+miles 7123
+milestone 9434
+milestones 7683
+militants 9387
+militarily 5491
+military 1914
+militias 8267
+milk 1953
+millennia 5690
+millennium 4345
+million 4316
+millions 7275
+milosevic 6462
+minced 5932
+mind 226
+mindful 3142
+minds 1249
+mine 4880
+mineral 8644
+mines 5856
+minimal 4078
+minimise 3256
+minimum 3339
+minister 328
+ministerial 6447
+ministers 1664
+ministry 8223
+minor 4295
+minorities 3214
+minority 2567
+minus 7910
+minute 4342
+minutes 2568
+mirrors 4050
+misappropriation 7554
+misconceived 8139
+misconduct 1513
+misery 7624
+misfortunes 6076
+misgivings 8231
+misinformation 2362
+misinterpretation 7684
+mislaying 6889
+mislead 6840
+misleading 4269
+mismanagement 5019
+misnomer 8798
+miss 7803
+missed 5539
+misses 7967
+missing 3554
+mission 5876
+missions 4437
+mistake 227
+mistaken 3741
+mistakes 4289
+misunderstanding 5492
+misunderstandings 4051
+mitigate 2886
+mittel 8745
+mix 7812
+mixed 6077
+mixing 6307
+mixture 8994
+mobile 228
+mobiles 5020
+mobilisation 8084
+mobilised 8375
+mobilising 7525
+mobility 5021
+mockery 7132
+mode 7660
+model 3094
+modelled 8845
+models 5458
+moderate 7411
+moderation 5022
+modern 4939
+modernisation 3359
+modernise 9292
+modernised 5415
+modes 5614
+modest 5441
+modification 6861
+modifications 5023
+modified 2569
+modify 7685
+modifying 9504
+modus 8964
+moisture 1784
+moldova 6078
+moluccan 7412
+moment 541
+moments 3004
+momentum 4389
+monate 8165
+monday 6079
+monetary 1722
+money 667
+monies 6890
+monitor 2570
+monitored 2105
+monitoring 2428
+monitors 3335
+monopolies 2475
+monopolised 8614
+monopoly 3095
+monotheistic 8730
+monoxide 6686
+monster 7156
+monstrous 7904
+month 3693
+months 3317
+montreal 8495
+monument 7670
+monumental 5024
+monuments 6080
+moon 6819
+mooring 4052
+mooted 5493
+moral 2229
+moralising 4884
+morality 6463
+morally 6464
+moratoria 6529
+moratorium 5569
+morde 1891
+more 582
+moreover 402
+morning 1017
+mornings 5982
+moroccan 4064
+morocco 5029
+mortal 7413
+mortality 6879
+mortgage 7801
+moscovici 5030
+moscow 3528
+most 230
+mostly 9260
+mother 1929
+mothers 5032
+motion 1700
+motions 2808
+motivate 9438
+motivated 2189
+motivation 7267
+motive 8126
+motives 5033
+motor 4595
+motorways 7276
+motto 6767
+mould 4010
+mountain 4343
+mountains 3555
+mounted 7924
+mounting 4969
+moura 5036
+mouth 3681
+mouths 2809
+move 2489
+moved 3556
+movement 2234
+movements 2572
+moves 5037
+moving 2751
+mox 7415
+mozambique 1723
+mps 9270
+mr 66
+mrs 2021
+ms 7687
+much 94
+much-needed 8031
+mudflats 7599
+mugabe 9032
+multi-cultural 8731
+multi-ethnic 9518
+multi-functional 5518
+multiannual 6694
+multicultural 8518
+multilingual 5040
+multimedia 6332
+multinational 3686
+multinationals 5041
+multiplication 8925
+multiply 8128
+munich 8697
+municipal 6083
+munitions 5042
+murder 5043
+murdered 6465
+murders 5044
+music 6602
+must 232
+muster 9425
+mutual 2592
+mutually 4493
+my 70
+myself 396
+mysteries 9435
+mystery 6009
+mythology 8890
+möchten 7469
+möglichkeit 7493
+müssen 3106
+nach 2
+nachdrücklich 8782
+nafo 6084
+nafta 8351
+name 2573
+named 4087
+namely 233
+names 4157
+narrow 2482
+nation 2190
+national 1378
+nationalism 8668
+nationalist 9349
+nationalistic 3003
+nationalities 6630
+nationality 4658
+nationals 4557
+nationen 7106
+nations 234
+native 5338
+natives 7169
+nato 5045
+natura 6086
+natural 2574
+naturally 6588
+nature 1725
+navigation 6936
+navy 9158
+nazi 8765
+near 4243
+nearly 4166
+necessarily 1832
+necessary 1213
+necessitate 7968
+necessitates 7439
+necessitating 5528
+necessity 3557
+neck 5046
+need 235
+needed 2491
+needing 1217
+needless 4061
+needs 1429
+negating 8787
+negative 3694
+neglect 2575
+neglected 5708
+neglecting 7465
+negotiate 4366
+negotiated 2576
+negotiating 2577
+negotiation 3646
+negotiations 1414
+negotiator 5048
+neighbour 6851
+neighbourhood 8054
+neighbourhoods 8603
+neighbouring 5413
+neighbours 1649
+neither 2993
+neo-colonial 4344
+neo-colonialist 3680
+neo-liberal 6087
+nepal 3558
+nepalese 8878
+net 3559
+netherlands 5049
+nets 3215
+netting 5050
+network 2593
+networks 408
+neutral 8692
+neutrality 3620
+neutre 8002
+never 3560
+never-ending 9427
+nevertheless 3108
+new 682
+new-born 7052
+newcomers 7034
+newly 4193
+news 1171
+newspaper 7985
+newton 5038
+next 191
+ngl 8410
+ngo 598
+ngos 2578
+nice 6088
+nicht 3124
+nicotine 8699
+niederzulegen 8860
+nielson 6089
+nigeria 8615
+night 217
+nl 3775
+no 702
+no-one 5052
+nobel 2008
+nobody 6768
+nochmals 8861
+noise 1484
+noises 8378
+nominal 8330
+nominate 8846
+nominated 6090
+non 4065
+non-availability 6612
+non-binding 8685
+non-committal 9100
+non-community 3995
+non-compliance 6091
+non-consultant 8616
+non-declared 8830
+non-discriminatory 8831
+non-eu 5053
+non-existent 8832
+non-members 9261
+non-respect 8833
+non-signatory 6769
+non-transparent 5752
+non-violent 7316
+none 3433
+nonetheless 1254
+nonsense 6754
+nonsensical 4780
+noon 4512
+nor 2204
+nordic 2810
+norm 5054
+normal 4066
+normally 1245
+norms 3216
+north 2034
+north-south 5892
+north-west 1563
+northern 2529
+norway 5317
+nos 2579
+noses 6092
+not 88
+notably 3340
+note 333
+noted 1255
+notes 178
+nothing 668
+notice 1256
+noticeable 9333
+noticed 797
+notices 3438
+noticing 6570
+notification 6093
+notifications 4219
+notified 5056
+notify 5971
+noting 387
+notion 1258
+notional 9302
+notions 9322
+notorious 7689
+notoriously 8978
+notwendigen 8864
+notwithstanding 1367
+november 7278
+novice 9388
+now 236
+nowadays 2142
+nowhere 3191
+nub 6770
+nuclear 2897
+nuisance 3561
+number 533
+numbers 1140
+numerical 5057
+numerous 5058
+nur 3125
+nursing 8483
+nut 5570
+nutrition 5059
+nutritional 4819
+nuts 3696
+obey 6998
+object 3022
+objection 7279
+objective 237
+objectively 6466
+objectives 2811
+objects 2072
+obligation 822
+obligations 1726
+obligatory 5060
+oblige 6094
+obliged 3743
+obliging 6868
+obscure 7690
+observance 585
+observation 3497
+observations 2594
+observe 586
+observed 4558
+observers 3562
+observing 7691
+obsessions 6664
+obsolete 3217
+obstacle 2967
+obstacles 5438
+obstruct 6801
+obstructed 8688
+obstruction 5465
+obtain 1706
+obtainable 8718
+obtained 3861
+obtaining 4069
+obvious 587
+obviously 1450
+occasion 1727
+occasionally 817
+occasions 588
+occupation 7436
+occupations 8701
+occupied 8377
+occupy 5061
+occupying 6999
+occur 2964
+occurred 1259
+occurrence 3618
+occurring 5480
+occurs 1676
+october 5883
+odd 890
+odds 7054
+odysseus 6095
+of 22
+off 241
+off-shore 9078
+offence 7835
+offences 683
+offenders 6111
+offending 7216
+offensive 4542
+offer 820
+offered 2602
+offering 1550
+offers 1833
+office 3569
+officer 4323
+officers 5085
+offices 3818
+official 1565
+officially 6432
+officials 1699
+offload 7850
+offloaded 9247
+offset 4543
+offsetting 9437
+offshore 4070
+often 517
+oh 6778
+oie 1787
+oil 2025
+olaf 8968
+old 2355
+old-age 7735
+older 2603
+oldest 5648
+olive 6113
+olives 5605
+ombudsman 5086
+omission 2253
+omissions 3218
+omit 7698
+omitted 3570
+on 68
+on-farm 8221
+on-going 4076
+once 979
+one 90
+one-sided 5087
+one-way 8871
+ones 1910
+oneself 8889
+ongoing 4071
+only 302
+onto 6423
+onwards 3771
+opec 2606
+open 2102
+open-ended 6115
+opened 2177
+opening 2558
+openly 6116
+openness 7098
+operandi 9162
+operate 2148
+operated 1859
+operates 5389
+operating 1642
+operation 1263
+operational 4080
+operations 592
+operative 3195
+operator 7055
+operators 2607
+opinion 243
+opinions 2999
+opponents 7322
+opportune 3827
+opportunities 3424
+opportunity 335
+oppose 3441
+opposed 3059
+opposes 7323
+opposing 5062
+opposite 4081
+opposition 2813
+oppositions 8277
+oppressed 9028
+oppression 9063
+opt 3991
+opted 5090
+optimisation 8056
+optimise 3253
+optimism 6117
+optimum 3814
+opting 4842
+option 1264
+options 2819
+or 821
+oral 6499
+orally 6835
+orchestrate 6276
+order 110
+ordered 6119
+orderly 4422
+orders 1812
+ordinary 2028
+organic 4085
+organisation 1732
+organisations 2758
+organise 2400
+organised 972
+organising 2609
+organisms 3257
+oriented 9405
+origin 501
+original 1789
+originality 3956
+originally 4086
+originate 2965
+originating 4088
+origine 9272
+origins 2610
+ornament 8233
+ortega 5091
+orwellian 8693
+osce 5092
+ostensibly 2029
+otc 8003
+other 244
+others 101
+otherwise 245
+ought 1405
+our 72
+ours 1421
+ourselves 1836
+out 596
+out-of-date 7702
+outbreak 7395
+outbreaks 9273
+outcome 2815
+outcomes 6278
+outdated 8847
+outer 3698
+outlet 6709
+outline 3363
+outlined 2031
+outlines 6782
+outlining 5063
+outlook 8188
+outlying 8996
+outrage 5093
+outrageous 5094
+outright 8289
+outset 3835
+outside 1265
+outstanding 2611
+over 174
+over-regulated 7155
+over-simplified 7118
+overall 1368
+overburden 7703
+overcome 2218
+overcoming 7704
+overcrowded 7005
+overdue 7299
+overhaul 5095
+overlap 8927
+overload 5320
+overloaded 6783
+overlook 1267
+overlooked 823
+overlooks 7705
+overly 5096
+overrides 9533
+overriding 7804
+oversee 9163
+oversight 8726
+overstepping 8617
+oversteps 7706
+overtaken 6937
+overtime 8453
+overview 5097
+overwhelm 8848
+overwhelmed 6121
+overwhelming 7969
+owe 1924
+owed 9164
+owes 8703
+owing 1369
+own 1268
+owned 4448
+owners 1896
+ownership 5098
+owns 5084
+oxide 9165
+ozone 2730
+p.m. 3343
+pace 2470
+pack 6359
+package 5099
+packet 1743
+pact 3789
+pacts 7659
+paedophilia 9248
+page 7934
+pages 5922
+paid 246
+pain 3393
+painful 5100
+pains 7895
+paint 5321
+palestine 1858
+palestinian 2078
+palestinians 5101
+palms 4319
+pan-european 4347
+panacea 8669
+panama 4936
+panel 7325
+papayannakis 7510
+paper 91
+papers 597
+paperwork 5475
+par 1744
+paradigm 7864
+paradox 6642
+paragraph 2032
+paragraphs 3571
+paraguayan 6904
+parallel 7887
+paralleled 7089
+paralysed 8957
+paralysis 8618
+parameters 5102
+paramilitary 7693
+paramount 7274
+parasitical 9208
+parcel 5756
+pardoned 7562
+parents 2219
+paris 5103
+parity 5318
+parliament 404
+parliamentarians 7862
+parliamentary 1745
+parliaments 1724
+parody 7911
+part 594
+part-session 5104
+part-sessions 5105
+part-time 1746
+partial 6771
+partially 4089
+participants 5106
+participate 4058
+participated 8928
+participating 6123
+participation 2791
+particular 1269
+particularly 824
+partido 1702
+parties 514
+partly 665
+partner 5108
+partners 4090
+partnership 3255
+partnerships 2612
+parts 2750
+party 434
+pass 1270
+passed 3219
+passenger 6473
+passengers 3976
+passing 1199
+passionate 8201
+passionately 8235
+passive 8461
+passport 1710
+past 1271
+pastries 9079
+patent 691
+patented 5109
+patenting 6885
+patents 9523
+path 1790
+patience 6124
+patient 5110
+patients 1272
+patten 50
+pattern 6665
+pave 7006
+paved 4274
+paves 7707
+pay 601
+payable 7538
+paying 1888
+payment 2613
+payments 602
+pays 1747
+pcts 8659
+peace 2581
+peaceful 3288
+peacefully 9166
+peacekeeping 3097
+peak 6703
+peasants 3260
+peat 835
+peculiar 3490
+peers 9167
+pen 3572
+penal 4227
+penalise 2615
+penalised 5454
+penalises 3399
+penalising 8274
+penalties 4934
+penalty 6748
+pending 1720
+penetrate 5323
+peninsula 6125
+pension 3056
+pensioner 5571
+pensioners 2887
+pensions 2817
+people 339
+peoples 4091
+per 3631
+perceive 5111
+perceived 7463
+percentage 4341
+percentages 7001
+perception 7456
+perea 5112
+perfect 847
+perfectly 109
+perform 5262
+performance 3344
+performance-enhancing 9256
+performances 6704
+performed 6127
+performing 5664
+perhaps 1422
+period 603
+periodic 6747
+periodically 5494
+periods 2446
+peripheral 5113
+periphery 7466
+permanent 1630
+permanently 6635
+permeate 8620
+permeates 8621
+permissible 1748
+permission 5529
+permit 3979
+permits 693
+permitted 1273
+permitting 7482
+perpetrated 7007
+perpetrator 7877
+perpetrators 2818
+perpetuate 7708
+perplexed 8033
+persecuting 8265
+persecution 4092
+persist 7993
+persistence 6333
+persistent 3735
+persistently 7096
+person 92
+personal 3639
+personality 5114
+personally 855
+personnel 5115
+persons 2618
+perspective 1274
+perspectives 5007
+persuade 1275
+persuaded 5116
+persuading 7709
+persuasion 7326
+persuasive 6285
+pertain 5263
+pertaining 4174
+pertains 8999
+pertinent 6856
+pervades 2619
+perverse 7133
+pet 9044
+petersberg 6677
+petersen 9304
+petition 7700
+petitions 7470
+petrol 8222
+petty 4094
+phantom 4456
+pharmaceutical 4450
+phase 6128
+phased 4116
+phases 6129
+phasing 6474
+phenomena 9168
+phenomenal 7008
+phenomenon 2272
+philosophies 8178
+philosophy 5117
+phone 229
+phoned 8683
+phrase 3993
+phraseology 9517
+phthalates 2620
+physical 6286
+physically 8984
+pick 3272
+picked 1276
+picking 2564
+picture 374
+pictures 7306
+piece 3386
+piecemeal 5572
+pieces 2565
+piedmont 6666
+pig 5510
+pile 5264
+pilgrimage 2621
+pill 8849
+pillar 5428
+pilot 1984
+pilots 8850
+pimps 5118
+pin 3000
+pinch 8941
+pinpoints 9389
+pioneers 7418
+pious 9445
+pipe 5934
+pipeline 3332
+piracy 5643
+pitch 5119
+pitfalls 6358
+pity 1277
+place 866
+placed 1111
+places 2011
+placing 2476
+plagued 8729
+plain 6130
+plainly 1278
+plan 877
+plane 5064
+planes 8455
+planet 77
+planned 1499
+planning 2622
+plans 1084
+plant 3573
+plantations 4810
+plants 2623
+plastic 2071
+platform 6131
+play 2131
+played 1400
+player 5121
+players 1950
+playing 2156
+plays 3155
+pleading 9009
+pleas 4841
+pleasant 5495
+please 3574
+pleased 796
+pleases 8967
+pleasure 1279
+pledge 5122
+pledged 4559
+pledges 7228
+plenary 3328
+plenty 4201
+plethora 7271
+plight 6362
+plooij-van 5123
+pluck 7009
+plunder 1571
+plundered 8120
+plunge 3740
+plunged 2966
+pluralism 3170
+pluralist 4329
+plus 3394
+pockets 7805
+poettering 8127
+point 128
+pointed 605
+pointing 1280
+pointless 6132
+points 1281
+poison 5065
+poland 5066
+police 888
+polices 1749
+policies 2502
+policing 5067
+policy 1282
+policy-makers 7710
+policy-making 7056
+political 2625
+politically 6133
+politician 2814
+politicians 5896
+politics 2580
+politisches 8874
+pollute 8391
+polluted 1284
+polluter 5418
+polluting 7300
+pollution 2073
+ponder 7712
+pony 5124
+pool 8236
+poor 2209
+poorer 1551
+poorest 6776
+poorly 3790
+popular 1703
+popularity 2184
+population 1423
+populations 4812
+populist 5496
+pornographic 8498
+pornography 4937
+port 4095
+portability 7236
+portfolio 2626
+portion 7479
+portray 6134
+ports 7057
+portugal 4096
+portuguese 5126
+pose 4097
+posed 5127
+poses 6618
+posing 7912
+position 670
+positions 2627
+positive 2968
+positively 1485
+possess 2628
+possesses 9534
+possession 4805
+possibilities 7420
+possibility 606
+possible 63
+possibly 1285
+post 5107
+post-mortem 8976
+postage 7301
+postal 5573
+posted 8067
+poster 6821
+posting 5543
+postpone 2630
+postponed 6784
+postponement 5497
+postponing 342
+posts 3143
+pot 1247
+potential 2631
+potentially 4099
+poured 8929
+pouring 6477
+poverty 2230
+powder 5129
+power 2443
+powerful 3382
+powerfully 1286
+powerless 5530
+powers 2544
+ppe 7189
+practicable 9081
+practical 3103
+practicalities 7328
+practically 6082
+practice 2212
+practices 2386
+practise 3107
+practised 6645
+practising 3220
+praise 6374
+praises 6785
+praising 7913
+pray 5442
+pre-accession 6919
+pre-election 8499
+preach 9195
+preamble 7806
+precarious 5130
+precaution 4100
+precautionary 3162
+preceded 4101
+precedence 6850
+precedent 2210
+precedes 5265
+preceding 9305
+precept 4574
+precious 563
+precise 2075
+precisely 2020
+precision 3684
+precursor 7112
+precursors 3345
+predecessor 5131
+predecessors 3541
+predicated 8694
+predict 7713
+predicted 7010
+prediction 1402
+predominant 6653
+predominantly 5506
+predominates 3576
+prefer 3001
+preferable 5132
+preferably 4103
+preference 2633
+preferences 6096
+preferential 6135
+preferred 5133
+prefers 3166
+pregnancy 1104
+prejudice 3136
+prejudiced 7914
+preliminary 686
+premature 6822
+prematurely 8622
+premeditated 8991
+premise 1287
+premises 1750
+premium 6424
+premiums 3744
+preparation 1564
+preparations 3252
+preparatory 2595
+prepare 2888
+prepared 2036
+prepares 7329
+preparing 1922
+prerequisite 7042
+prerequisites 7058
+prescribe 2037
+prescribed 2927
+presence 1288
+present 248
+presentation 1439
+presented 2634
+presential 8515
+presenting 3329
+presently 6033
+presents 2337
+preservation 2266
+preserve 5314
+preserved 8801
+preserving 3400
+presidency 2635
+president 67
+president-in-office 371
+presidential 409
+presidents 9211
+press 2820
+pressed 8311
+pressing 2380
+pressure 3246
+pressures 8663
+prestige 9082
+prestigious 9169
+presumably 7714
+presumptuous 4384
+presumptuously 5488
+presupposes 7715
+pretences 5134
+pretend 8237
+pretending 2636
+pretext 2027
+pretty 4104
+prevail 6136
+prevailed 7061
+prevailing 6823
+prevails 5135
+prevalence 7421
+prevalent 2773
+prevent 857
+preventative 4348
+prevented 2638
+preventing 801
+prevention 1951
+preventive 3182
+prevents 825
+previous 2596
+previously 2738
+prey 6600
+price 1440
+prices 2639
+pricing 1289
+pride 4650
+priest 7991
+primacy 1791
+primarily 2640
+primary 1008
+prime 4106
+primrose 7807
+principal 5136
+principally 8437
+principle 376
+principles 2494
+printed 6137
+prion 9274
+prior 3699
+priori 3792
+priorities 986
+prioritise 6389
+prioritising 7716
+priority 238
+prison 1751
+prisoner 2641
+prisoners 2346
+pristina 8490
+privacy 6138
+private 1792
+private-sector 4217
+privatisation 4887
+privatise 8623
+privatised 5137
+privilege 2492
+privileged 5138
+privileges 7696
+prize 2009
+pro-active 6139
+proactive 2642
+probable 6891
+probably 486
+problem 359
+problematic 3098
+problems 980
+procacci 231
+procedural 4349
+procedure 607
+procedures 1133
+proceed 1486
+proceeded 6636
+proceeding 4108
+proceedings 2643
+proceeds 2821
+process 326
+processed 3577
+processes 4109
+processing 688
+processors 2865
+proclaim 7331
+proclaimed 3632
+proclaims 7915
+procured 5139
+procurement 5140
+proder 8073
+prodi 3643
+produce 608
+produced 591
+producer 4110
+producers 2330
+produces 5141
+producing 2644
+product 2793
+production 1041
+productive 3578
+productivity 6010
+products 920
+profess 5911
+professes 8930
+profession 3457
+professional 2023
+professionally 7244
+professionals 3965
+professions 8624
+professor 9275
+profile 2333
+profit 2645
+profitability 3564
+profitable 6141
+profits 2185
+profound 6414
+profoundly 6696
+programme 1290
+programmed 7651
+programmes 715
+programming 2823
+progress 249
+progressed 8350
+progressive 4112
+progressively 9265
+prohibit 2646
+prohibited 6034
+prohibiting 9480
+prohibition 2583
+prohibitions 6652
+project 1780
+projections 689
+projects 2528
+proliferating 4054
+proliferation 7332
+prolonged 5142
+prominence 3434
+prominent 6142
+promise 2647
+promised 5143
+promises 5144
+promising 3110
+promote 343
+promoted 4113
+promoters 5266
+promotes 2624
+promoting 2038
+promotion 4114
+promotions 3763
+prompt 9170
+prompted 826
+promptly 9535
+prompts 5390
+pronk 8336
+pronounce 7012
+pronounced 6143
+proof 950
+propaganda 1734
+propagated 8625
+proper 461
+properly 1218
+properties 3761
+property 4713
+proportion 3089
+proportional 8476
+proportionality 6145
+proportions 8258
+proposal 1291
+proposals 1292
+propose 2648
+proposed 364
+proposes 1596
+proposing 4494
+proposition 2650
+prosecute 8291
+prosecuting 9232
+prosecution 5145
+prosecutions 8931
+prosecutor 6146
+prospect 2245
+prospects 3222
+prosperity 5875
+prosperous 6147
+prostitutes 6148
+prostitution 1782
+protect 380
+protected 2039
+protecting 4115
+protection 1260
+protectionism 3221
+protective 8462
+protects 7720
+protest 4938
+protesting 8270
+protocol 2651
+prove 1293
+proved 609
+proven 3579
+proves 8463
+provide 1487
+provided 779
+provider 6149
+providers 6150
+provides 1597
+providing 397
+province 7422
+proving 4203
+provision 610
+provisional 2652
+provisions 2769
+proviso 7808
+provoke 6478
+provoked 8337
+provokes 7721
+provoking 8155
+proximity 6542
+prudence 5146
+prudent 8319
+prudential 7722
+präsident 8398
+präzedenzfall 7876
+psychological 5531
+pt 1525
+public 365
+publication 7424
+publicised 5147
+publicising 4118
+publicity 4082
+publish 5324
+published 3463
+publisher 4163
+publishing 3816
+pudding 9306
+pull 2889
+pulled 7013
+pulling 2584
+pulp 7060
+pulse 5148
+pulses 7517
+pump 1917
+punish 4221
+punishable 7888
+punished 5291
+punishment 4123
+pupil 8497
+purchase 7526
+pure 2653
+purely 2147
+purports 2969
+purpose 1442
+purposefully 9327
+purposes 2467
+pursuant 5423
+pursue 2890
+pursued 3712
+pursuing 4119
+pursuit 1793
+push 724
+pushed 3014
+pushing 2654
+put 858
+puts 2059
+putting 827
+pyrenees 7159
+qua 6151
+quaestors 9428
+qualification 7201
+qualifications 4525
+qualified 6899
+qualify 2984
+qualitative 5619
+qualities 2629
+quality 690
+qualms 9307
+quantifiable 9536
+quantified 8948
+quantities 5387
+quantity 2655
+quarter 8527
+quarters 1568
+queries 3446
+quest 6824
+question 344
+questionable 5068
+questioned 7723
+questioning 7724
+questions 45
+quick 5149
+quickest 6777
+quickly 967
+quiet 5150
+quite 118
+quorum 8704
+quota 1794
+quotas 3099
+quotation 5151
+quote 373
+quoted 5514
+qurie 8404
+race 2656
+races 9268
+racial 2616
+racism 5069
+racist 1795
+radiation 7317
+radical 2069
+radicalisation 6530
+radically 6583
+radio 1735
+radioactive 7257
+radioactivity 7809
+raft 2779
+raging 8626
+raids 7426
+rail 407
+railway 3581
+railways 5152
+rain 6097
+raise 1294
+raised 1295
+raises 6836
+raising 2657
+raison 7726
+ramassage 8702
+ran 8438
+random 6479
+randzio-plath 8389
+range 2778
+ranges 9519
+ranging 4120
+rank 7810
+ranks 2508
+ransom 6152
+rap 7334
+rape 4121
+rapes 9204
+rapid 4222
+rapidly 3247
+rapporteur 2922
+rapporteurs 2093
+rare 8975
+rarely 250
+rate 4711
+rates 1777
+rather 828
+ratification 6140
+ratified 4067
+ratify 5154
+ratifying 9171
+rating 9276
+ratio 6480
+rational 3223
+rationale 6825
+rationalisation 5155
+rationalised 8053
+ravaged 8333
+raw 3529
+re-emerge 9393
+re-establish 7663
+re-established 8367
+re-establishing 7727
+re-examine 6787
+re-examined 9296
+re-heat 9010
+re-open 2658
+re-submitted 7014
+re-use 7015
+reach 1296
+reached 2729
+reaches 5177
+reaching 3278
+react 4717
+reacted 7865
+reacting 6481
+reaction 2659
+reactions 3724
+read 571
+readily 4126
+reading 2747
+readings 6396
+reads 7815
+ready 4128
+reaffirm 5156
+reaffirming 7335
+real 613
+realisation 7327
+realise 919
+realised 1298
+realism 5653
+realistic 6153
+realities 7970
+reality 614
+reallocate 4223
+really 1100
+realm 6154
+reams 5646
+reappearing 9395
+reared 5157
+rearrange 2891
+reason 549
+reasonable 3350
+reasonably 5709
+reasoning 2495
+reasons 251
+reassert 7585
+reassessed 5158
+reassurance 6155
+reassure 5327
+reassuring 2080
+rebalance 3364
+rebellen 8876
+rebels 3427
+rebuild 2892
+rebuilding 9083
+recall 1752
+recalled 6156
+receipt 6157
+receive 1918
+received 1598
+receives 5391
+receiving 345
+recent 2660
+recently 1357
+reception 4194
+recipient 1797
+recital 7870
+recitals 2538
+reckoned 5710
+reclamation 8664
+recognisable 6158
+recognise 583
+recognised 615
+recognises 1300
+recognising 589
+recognition 616
+recollection 8090
+recommend 7728
+recommendation 1753
+recommendations 4655
+recommended 1301
+recommending 5159
+recommends 7016
+reconcile 6788
+reconciliation 6159
+reconciling 2509
+reconsider 3015
+reconsidered 5526
+reconstruct 6667
+reconstruction 3701
+record 925
+recorded 3962
+recording 4946
+records 1302
+recount 9277
+recouped 8627
+recourse 3848
+recover 6605
+recoverable 9449
+recovering 4131
+recovery 1380
+recreate 7916
+recreation 6160
+recruit 7963
+recruitment 4059
+rectified 9350
+rectify 2662
+recurrence 6826
+recurring 5665
+recycle 1303
+recycled 5160
+recycling 2663
+red 3582
+red-handed 8899
+redefine 7336
+redefined 8776
+redeploy 9396
+redirect 1489
+rediscover 7917
+rediscovered 6161
+redistributing 9196
+redistribution 7337
+redress 3237
+reduce 510
+reduced 2133
+reduces 1764
+reducing 3277
+reduction 421
+reductions 4507
+redundancy 9335
+redundant 7473
+refer 798
+reference 372
+references 4098
+referenda 9004
+referendum 4350
+referral 8500
+referred 1552
+referring 3718
+refers 2664
+refinery 7811
+reflect 2982
+reflected 3633
+reflecting 2665
+reflection 5161
+reflects 1599
+reflex 7940
+reform 775
+reformed 4886
+reforming 2040
+reforms 3496
+reformulation 6857
+refrain 3100
+refresh 5162
+refuge 3584
+refugee 5440
+refugees 2342
+refund 3565
+refunds 5163
+refusal 4212
+refuse 1815
+refused 1872
+refuses 5392
+refusing 5164
+refute 8439
+regain 4915
+regained 2941
+regaining 7302
+regard 8
+regarded 1011
+regarding 2041
+regardless 4132
+regards 617
+regierung 7097
+regime 5165
+regimes 3082
+region 3333
+regional 740
+regionalisation 1940
+regionally 6165
+regions 2514
+register 4965
+registered 5724
+registering 7442
+registers 3944
+registration 3876
+registry 8029
+regressing 9397
+regression 9084
+regret 95
+regretfully 1304
+regrets 4653
+regrettable 5434
+regrettably 5166
+regretted 6537
+regretting 8068
+regular 849
+regularly 5025
+regulate 2667
+regulated 1853
+regulates 5393
+regulating 2668
+regulation 1143
+regulations 714
+regulators 7017
+regulatory 1156
+rehabilitation 2669
+reign 6697
+reigned 8393
+reimbursements 8095
+rein 8364
+reinforce 3264
+reinforced 4133
+reinforcement 435
+reinforces 7338
+reinforcing 6772
+reinstate 8990
+reintegrate 9085
+reintroduce 7729
+reintroduces 8863
+reinvested 5711
+reinvigorate 4743
+reiterate 939
+reiterated 1615
+reiterates 6789
+reiterating 4014
+reject 3977
+rejected 5167
+rejecting 4134
+rejection 6620
+rejects 3762
+rejoice 8628
+relate 2149
+related 2504
+relates 1600
+relating 1383
+relation 1543
+relational 5168
+relations 2063
+relationship 4642
+relationships 1424
+relative 6118
+relatively 3702
+relatives 7081
+relaunch 7019
+relaunched 5169
+relaunching 7339
+relay 8130
+release 347
+released 5712
+releases 7340
+releasing 5498
+relegated 6482
+relentless 6344
+relentlessly 9236
+relevance 1733
+relevant 1347
+reliability 9278
+reliable 5170
+reliant 2293
+relied 2787
+relief 1435
+relies 4593
+relieve 7341
+religion 3738
+religious 2458
+relinquish 7866
+relinquished 3963
+relocation 8970
+reluctance 618
+reluctant 6483
+reluctantly 4895
+rely 1919
+remain 4154
+remainder 8742
+remained 5171
+remaining 4001
+remains 1425
+remark 6827
+remarkable 4971
+remarked 8405
+remarks 612
+remedies 5172
+remedy 2391
+remember 725
+remembered 6166
+remembering 3687
+remind 619
+reminded 620
+reminder 436
+reminding 8091
+reminds 8101
+remiss 7146
+remit 5173
+remits 6167
+remodelled 8548
+remote 5174
+removal 7730
+remove 2670
+removed 3461
+removing 3330
+render 5272
+rendering 4135
+renders 7731
+renewable 1426
+renewal 6698
+renewed 6369
+renounces 6484
+renowned 6561
+reoccurring 9008
+reopen 8297
+reopened 6455
+reorganisation 5912
+reorganise 2518
+repair 6098
+repairing 2671
+repatriation 5175
+repeal 7428
+repealed 9111
+repeat 3972
+repeated 3249
+repeatedly 5499
+repeating 7971
+repeats 5176
+repercussions 4719
+repetition 7639
+repetitive 4564
+replace 2673
+replaced 2197
+replacement 8140
+replaces 5394
+replacing 6168
+replanting 7719
+replies 7416
+reply 322
+replying 6485
+report 81
+reported 1305
+reporting 3521
+reports 1237
+reprehensible 6169
+represent 1816
+representation 2674
+representations 4976
+representative 5178
+representatives 1157
+represented 1601
+representing 4136
+represents 1616
+repression 2675
+repressive 7936
+reproach 4137
+reproached 7020
+reprocessing 5179
+reproduce 8932
+reproduced 2267
+reproduction 6099
+reproductive 5478
+republic 5180
+republicans 6486
+reputation 1443
+request 370
+requested 2488
+requesting 4138
+requests 2676
+require 829
+required 2134
+requirement 3086
+requirements 1306
+requires 1516
+requiring 830
+requisite 6170
+rescue 5618
+research 366
+researchers 4597
+resentment 8797
+reservation 5181
+reservations 3085
+reserve 2014
+reserved 3764
+reserves 4139
+reservoir 3811
+reside 5328
+residence 692
+resident 3585
+residents 6055
+resides 6654
+residing 6487
+residue 9215
+residues 8552
+resign 8758
+resigning 8803
+resist 5182
+resistance 655
+resistant 7884
+resisting 8268
+resolutely 8303
+resolution 2211
+resolutions 5183
+resolve 832
+resolved 1806
+resolving 4141
+resonance 8705
+resort 3996
+resorting 7184
+resource 6172
+resources 1406
+respect 621
+respectable 3179
+respected 2049
+respectful 4614
+respecting 4914
+respective 4940
+respectively 4142
+respects 4185
+respond 2677
+responded 3649
+responding 6356
+responds 6450
+response 3200
+responses 5128
+responsibilities 1307
+responsibility 1308
+responsible 685
+responsibly 6021
+rest 2282
+restarted 6611
+restate 6757
+restoration 7342
+restore 1965
+restored 1835
+restoring 2585
+restrained 9040
+restraint 2678
+restrict 2985
+restricted 3006
+restricting 9197
+restriction 3224
+restrictions 1754
+restrictive 5026
+restricts 2150
+restructure 1755
+restructuring 2679
+rests 6488
+result 758
+resulted 2151
+resulting 2042
+results 2076
+resume 4224
+resumed 7732
+resumption 9294
+resurgence 622
+resurrect 8959
+retabled 9363
+retail 7250
+retain 5189
+retained 5843
+retaining 2452
+retaliation 7733
+retention 5070
+rethink 3225
+retired 8473
+retirement 4143
+retroactive 4666
+retrospective 4883
+return 891
+returned 3586
+returning 3144
+returns 6366
+reunited 6500
+reuniting 3384
+reveal 6271
+revealed 1309
+revealing 6506
+reveals 466
+revelation 1310
+revelations 5184
+revenue 3472
+reversal 7343
+reverse 3365
+reversed 3613
+reversing 7186
+review 437
+reviewed 5185
+reviewing 7344
+revise 2893
+revised 1311
+revising 2680
+revision 1496
+revisions 6173
+revitalise 6659
+revive 2681
+revoked 8706
+revolution 209
+revolutionary 5031
+revolutions 6174
+reward 2540
+rewarded 2043
+rewarding 8034
+rewards 7345
+rewording 8135
+reworking 9216
+rhetoric 5880
+rhetorical 7880
+rich 2792
+richer 6954
+richest 1312
+rid 3430
+riddled 9210
+ride 8629
+ridiculous 3090
+rife 2144
+right 595
+right-wing 5186
+rightful 8746
+rightfully 6869
+rightly 611
+rights 1191
+rigid 7813
+rigidities 7573
+rigorous 3960
+rigorously 8360
+rigour 8707
+riots 9293
+rise 818
+risen 6489
+rises 7665
+rising 4144
+risk 79
+risking 6790
+risks 400
+rival 5395
+rivalry 9086
+rivals 6175
+river 252
+rivers 8992
+road 623
+roads 2827
+roadside 9532
+roadworthiness 2828
+rob 7734
+robert 6791
+robust 2682
+rocard 5524
+rock 6490
+rocks 7266
+rods 9320
+role 1313
+roles 5309
+roll 3498
+rolled 7555
+rolling 4145
+rolls 1756
+roman 7986
+romanian 8708
+romans 5187
+romantic 5447
+romany 1553
+rome 6176
+roof 6177
+rookt 8933
+room 7219
+root 4528
+rooted 8394
+roots 2744
+rose 4146
+rotate 8454
+rotation 7214
+rough 6295
+roughly 8464
+round 2683
+rounded 7166
+roundly 6655
+rounds 9430
+rouses 6584
+route 2685
+routes 3859
+routine 2044
+row 1446
+royal 4196
+rrm 6178
+rubbish 7303
+ruin 6792
+ruined 8379
+rule 1314
+ruled 994
+rulers 8879
+rules 282
+ruling 4211
+run 220
+run-up 5188
+rung 9406
+running 2085
+runs 3061
+rural 1757
+rush 2045
+rushed 5424
+rushing 2686
+russia 1737
+russian 6179
+russians 7239
+ruthless 4147
+rwanda 9006
+régime 8880
+s 12
+sabotage 1323
+sabotaging 7024
+saboteur 8132
+sacking 7648
+sacrifice 8756
+sacrificed 9091
+sacrifices 5002
+sacrificing 6634
+sacrosanct 6180
+sad 4148
+sadly 6277
+safe 2687
+safeguard 2046
+safeguarded 5190
+safeguarding 2688
+safeguards 833
+safely 4253
+safer 4041
+safety 1315
+sahara 5082
+sahrawi 7429
+said 59
+sail 8630
+sailing 7736
+sails 9279
+sake 2468
+sakharov 5937
+salaries 7282
+salary 2849
+sale 5935
+saleable 5574
+sales 4942
+salient 6531
+salmon 6181
+salutary 8045
+salute 5191
+saluting 7737
+salvation 5737
+same 624
+sample 7068
+sampling 7025
+sanctimonious 4544
+sanction 7090
+sanctioned 7245
+sanctions 348
+sand 7978
+sang 2179
+sanitation 5193
+santer 9420
+sarajevo 6469
+satellite 8592
+satellites 7346
+sates 7347
+satisfaction 386
+satisfactorily 3868
+satisfactory 5668
+satisfied 5805
+satisfies 8298
+satisfy 894
+satisfying 1639
+saturday 5575
+savage 9365
+save 76
+saves 4149
+saving 4980
+savings 3313
+saw 2971
+say 278
+saying 17
+says 1316
+scale 4418
+scales 9280
+scams 2848
+scandal 7349
+scandalous 5194
+scandalously 5541
+scandals 5512
+scarcely 3796
+scares 8657
+scattered 9172
+scenario 2690
+scenarios 5195
+scene 1585
+scenes 647
+sceptical 5292
+scepticism 5196
+schedule 3587
+scheduled 1577
+scheme 1317
+schemes 1985
+schengen 6182
+schleicher 4256
+school 2829
+schooling 9139
+schools 253
+schulz 7738
+schwerwiegend 745
+schärfste 6350
+science 6100
+scientific 1633
+scientists 6171
+scope 694
+score 6780
+scoreboard 2268
+scores 9303
+scot-free 6110
+scotland 9472
+scottish 834
+scourge 7814
+scrap 4225
+scrapie 526
+scrapped 254
+scratch 4651
+screen 7739
+screening 7176
+script 5197
+script-led 9537
+scrs 7740
+scrutinise 3114
+scrutinised 3640
+scrutiny 5072
+se 8709
+sea 2812
+seafood 6183
+seal 8239
+search 6184
+seas 2074
+season 2103
+seasonal 6185
+seasons 7378
+seat 5198
+seats 9193
+seattle 6299
+second 2691
+second-class 9492
+secondary 3279
+secondly 836
+secrecy 1738
+secret 6103
+secretary 4026
+secretary-general 6186
+section 5199
+sections 2247
+sector 570
+sectoral 5200
+sectors 2024
+secure 141
+secured 676
+securely 6272
+secures 7894
+securing 4297
+securities 5201
+security 1048
+see 349
+seed 884
+seeds 2830
+seeing 545
+seek 2152
+seekers 7063
+seeking 2047
+seeks 1320
+seem 1321
+seemed 2153
+seems 60
+seen 126
+sees 2535
+segments 5500
+seize 6491
+seized 2692
+selbst 8883
+select 7350
+selected 2326
+selecting 9400
+selection 7695
+selective 8055
+selectively 8926
+self-determination 5330
+self-employed 9173
+self-importance 9001
+self-interest 5556
+self-same 7351
+self-sufficient 8885
+sell 5331
+selling 7352
+semblance 7972
+semi-skimmed 8637
+seminar 6793
+senator 5576
+send 1144
+sending 3034
+sends 3062
+senior 2693
+sense 284
+senses 9152
+sensible 3984
+sensibly 5457
+sensitive 4489
+sensitivity 3703
+sent 2370
+sentence 2854
+sentenced 5293
+sentences 3112
+sentiment 5203
+sentiments 6122
+separate 2048
+separated 2295
+separately 7027
+separates 9513
+separating 7580
+separation 2831
+separatism 8282
+september 5544
+serb 4351
+serbia 4152
+serbian 5204
+serbs 5205
+series 3793
+serious 1250
+seriously 872
+seriousness 2832
+servants 8312
+serve 1572
+served 4079
+serves 628
+service 2427
+services 301
+serving 7141
+session 537
+sessions 2694
+set 684
+set-aside 7353
+sets 2695
+setting 255
+settle 1253
+settled 1606
+settlement 1930
+settlements 8134
+settling 9087
+seven 8108
+several 1417
+severe 7802
+severely 6441
+sewage 6164
+sex 6187
+sexes 6188
+sexual 2833
+sexually 9088
+shadow 7567
+shake 9198
+shaking 6940
+shall 629
+shame 892
+shamefaced 9375
+shameful 5206
+shamefully 3588
+shamelessly 7474
+shape 3151
+shaped 7354
+shaping 3385
+share 1325
+shared 997
+shares 7117
+sharing 1158
+sharm 9018
+sharp 3381
+sharply 8631
+she 1134
+shed 2181
+shedding 9269
+sheep 5073
+sheet 4529
+shellfish 7742
+shells 5949
+shelter 6144
+shelved 8785
+shetland 7134
+shield 7125
+shift 4153
+shifting 3817
+shifts 6189
+shilly-shallying 8474
+ship 6190
+ship-generated 7743
+shipments 9281
+shipping 848
+ships 4260
+shocked 5014
+shockingly 8595
+shooting 3659
+shop 2696
+shores 5207
+short 367
+short-term 7355
+shortage 7527
+shortcomings 2697
+shorten 7744
+shorter 2698
+shortest 7816
+shortlist 9531
+shortly 1193
+shot 3794
+shots 3189
+should 256
+shoulder 6505
+shoulders 4977
+shout 4452
+shouting 6888
+show 391
+showed 7918
+showing 2699
+shown 630
+shows 1329
+shrink 9308
+shut 8304
+shutting 6989
+sich 8097
+sicherheitsrat 7104
+sick 4495
+side 362
+sidelined 9451
+sidelines 5209
+sides 2095
+sierra 6592
+sight 5645
+sign 893
+signal 7933
+signals 7003
+signatories 6192
+signatory 5425
+signed 2160
+significance 3704
+significant 312
+significantly 1925
+signing 6193
+signs 1318
+silence 3258
+silences 9412
+silent 3622
+similar 2972
+similarity 4354
+similarly 3403
+simple 61
+simpler 7356
+simplification 7357
+simplified 8207
+simplify 2748
+simplifying 4513
+simplistic 9108
+simply 203
+simultaneously 5676
+since 633
+sincere 6526
+sincerely 1330
+sincerity 6740
+sind 8081
+sine 6194
+single 2186
+singular 3617
+sink 8632
+sinking 5439
+sir 3647
+sister 7504
+sit 4924
+site 5210
+sites 1996
+siting 7358
+sitting 2175
+sittings 6994
+situated 8633
+situation 257
+situations 2260
+six 1396
+sixteen 4156
+size 695
+sizes 7500
+skeletons 8427
+skewed 7452
+skies 7028
+skilfully 9200
+skill 1731
+skilled 3520
+skills 2700
+skimmed 4035
+skin 6195
+sky 6196
+slap 8456
+slaughter 7745
+slavery 850
+slaves 6834
+sleep 6043
+sleeping 9538
+slick 1331
+slicks 6197
+slight 7135
+slightest 7430
+slightly 5274
+slim 3589
+slip 6198
+slippage 9209
+slobodan 8262
+slogan 6700
+slogans 8766
+slow 5726
+slowing 7304
+slowly 5211
+sludge 8549
+slump 7062
+smacks 8960
+small 696
+small- 7746
+small-scale 2717
+smaller 5578
+sme 5074
+smelling 8841
+smes 7333
+smoke 3226
+smokers 6199
+smoking 3122
+smooth 8198
+smoothly 5212
+smuggling 4381
+snapshot 8789
+snowballed 9390
+so 171
+so-called 2834
+social 1332
+socialist 1561
+socialists 4823
+socially 5214
+societies 4588
+society 2010
+socio-economic 6200
+softened 6927
+softer 8299
+software 5398
+sogar 3149
+soil 9426
+solana 4056
+sold 4158
+soldiers 968
+sole 4173
+solely 3590
+solemn 5215
+solid 4159
+solidarity 5216
+solidly 8935
+solution 841
+solutions 3211
+solve 4455
+solved 7175
+solves 8634
+solving 6101
+some 838
+somebody 1428
+somehow 7748
+someone 4161
+something 1214
+sometimes 2050
+somewhat 634
+somewhere 5527
+somport-pau-canfranc-jaca 7022
+sondern 3148
+sons 8381
+soon 787
+sooner 6201
+sophisticated 5027
+sordid 3770
+sorrow 5916
+sorry 5153
+sort 2100
+sorted 1333
+sorting 7359
+sorts 5613
+sought 4302
+soul 3407
+sound 1646
+sounded 7673
+source 93
+sources 5075
+south 4423
+south-east 8486
+south-mediterranean 8777
+southern 4162
+sovereign 3591
+sovereignty 6202
+sovereignty-sensitive 7686
+soviet 7258
+sowie 8969
+sp 8501
+spa 6493
+space 1933
+spade 2701
+spain 5217
+span 5561
+spanish 5218
+spare 3592
+spared 6794
+sparing 8956
+sparked 6346
+spasms 9394
+spawning 7994
+speak 2702
+speaker 2077
+speakers 3634
+speaking 763
+speaks 1839
+special 2035
+specialised 2092
+specialist 8449
+specialists 4084
+species 2264
+specific 1334
+specifically 3273
+specifications 6085
+specified 2703
+specifies 636
+specify 1335
+specifying 6637
+specimen 8993
+spectacle 6294
+spectacular 5532
+spectre 5501
+spectrum 3347
+speculation 5432
+speculative 7749
+speculators 5533
+speech 5089
+speeches 1696
+speed 727
+speeded 8327
+speedier 6059
+speedily 4773
+speeding 7750
+speedy 3157
+spell 2930
+spend 2895
+spending 4164
+spends 4165
+spent 3964
+sphere 2705
+spheres 3101
+spin 8392
+spirit 2090
+spirits 1153
+spite 3992
+splendid 4268
+split 3851
+splitting 2706
+spoke 1840
+spoken 2707
+spokesman 9364
+spongiform 7766
+sponsored 7989
+sponsors 9161
+sponsorship 6965
+spoon 9038
+sport 2340
+sporting 638
+sports 5219
+sportsmen 2708
+sportspeople 7718
+spot 6203
+spotlight 6011
+spots 8938
+spraying 9309
+sprays 6204
+spread 2271
+spreading 4970
+spring 5221
+springs 8443
+spy 8290
+später 8747
+squads 4720
+squandering 7973
+square 8048
+squarely 8355
+squeeze 5396
+squeezed 6205
+sri 7751
+st 7891
+stab 8635
+stabilisation 2709
+stabilising 3396
+stability 2835
+stable 6854
+stadium 5577
+staff 180
+stage 1336
+stages 4857
+staggering 9174
+stagnate 8647
+stake 3593
+stakeholders 7305
+stakes 7220
+stalking 4168
+stamp 9481
+stance 2710
+stances 7518
+stand 1337
+standard 3518
+standardisation 3181
+standardise 3227
+standardised 5222
+standards 1759
+standing 3341
+standpoint 2005
+stands 1602
+standstill 5579
+staring 9401
+stars 4870
+start 1760
+start-up 7235
+start-ups 2273
+started 3435
+starting 127
+state 346
+stated 1338
+statement 742
+statements 1355
+states 417
+statesmen 6775
+stating 292
+station 6284
+stationierung 7497
+stations 3575
+statistic 8679
+statistical 5223
+statistics 5326
+stature 6206
+status 1340
+statute 3546
+statutes 8395
+statutory 8646
+staunchly 7360
+stay 3053
+stayed 6795
+staying 8202
+stays 8872
+steadily 6207
+steady 8185
+stealing 6629
+stealth 3348
+steamroller 5224
+steel 4985
+steer 6682
+steers 9282
+stem 2157
+stemming 2051
+stems 6494
+step 2261
+stepped 7431
+stepping 9090
+steps 140
+sterckx 1252
+sterilising 6571
+sterling 2586
+stern 4257
+stets 8977
+stick 1341
+sticking 5502
+sticks 6707
+stifle 4461
+stifling 7752
+stigmatisation 5333
+still 2145
+stimulants 5452
+stimulate 5334
+stimulating 7361
+sting 6334
+stipulate 2321
+stipulated 1958
+stipulates 350
+stipulating 9029
+stipulation 8069
+stir 6208
+stock 1394
+stockpiles 8145
+stocks 3594
+stolen 4130
+stone 6442
+stones 564
+stood 1813
+stop 459
+stopped 3595
+stopping 1739
+stops 1761
+store 5276
+stored 3323
+stores 8636
+stories 6210
+storms 2597
+story 3102
+straight 2453
+straightaway 5770
+straighten 6211
+straightforward 6081
+strain 5897
+straitjacket 6212
+straits 5859
+strange 1322
+strangely 1882
+stranger 8840
+strasbourg 8715
+strategic 258
+strategies 1947
+strategy 1342
+straw 5522
+stream 6213
+streamline 7029
+streamlined 9482
+streamlining 7064
+street 6214
+streets 7666
+strength 351
+strengthen 1492
+strengthened 639
+strengthening 1762
+strengthens 7753
+strengths 7318
+stress 352
+stressed 640
+stresses 3439
+stressing 867
+stretch 6711
+stretched 5729
+strict 388
+stricter 3596
+strictest 8882
+strictly 4390
+strictness 7259
+strides 8387
+strife 8733
+strike 1712
+strikes 3841
+striking 4353
+string 9369
+stringent 1849
+strip 7642
+strive 2158
+striving 8144
+strong 2713
+stronger 2553
+strongest 259
+strongly 4169
+struck 3656
+structural 1344
+structure 2714
+structured 4496
+structures 1935
+structuring 9493
+struggle 7697
+struggles 8240
+struggling 8106
+stuck 4002
+stud 6763
+student 6934
+students 3312
+studied 5225
+studies 6215
+study 2715
+studying 6216
+stuff 5226
+stupid 1884
+style 5295
+subject 697
+subjected 3113
+subjecting 8310
+subjective 7818
+subjects 1798
+submission 2704
+submit 1493
+submitted 2940
+submitting 4170
+subscribe 3429
+subscribed 1915
+subscribing 9186
+subsequent 2727
+subsequently 2975
+subsidiarity 5227
+subsidies 2294
+subsidise 7030
+subsidised 6572
+subsidize 6287
+subsidy 1345
+subsistence 5076
+substance 1346
+substances 4107
+substantial 3597
+substantially 3349
+substantiate 6495
+substantive 9175
+substitute 4355
+subtle 7819
+succeed 4299
+succeeded 4171
+succeeding 6217
+succeeds 3547
+success 3666
+successes 5228
+successful 2852
+successfully 5229
+successive 1418
+successor 7546
+such 641
+sudan 4854
+sudden 5230
+suddenly 6496
+suffer 1348
+suffered 3414
+suffering 2617
+sufferings 6961
+suffers 7519
+suffice 6218
+sufficient 3598
+sufficiently 3706
+sugar 5231
+suggest 296
+suggested 1349
+suggesting 839
+suggestion 875
+suggestions 1185
+suggests 1350
+suit 1494
+suitable 4972
+suitably 8241
+suited 5736
+sum 353
+summarise 4023
+summarises 7925
+summary 5433
+summed 6796
+summer 2087
+summing 2510
+summit 4798
+summits 5232
+summon 7031
+sums 1825
+sun 5798
+sunday 6315
+sunk 8484
+sunshine 7979
+superficial 4214
+superiority 5809
+supermarkets 5988
+supervise 5857
+supervising 7664
+supervision 1889
+supervisory 5508
+supper 4334
+supplant 2716
+supplement 3745
+supplementary 7362
+supplemented 9431
+supplementing 4673
+supplements 7286
+supplied 6392
+supplier 1799
+suppliers 642
+supplies 5233
+supply 2110
+supplying 5757
+support 1166
+supported 2053
+supporter 7280
+supporters 2484
+supporting 354
+supportive 8691
+supports 5540
+suppose 46
+supposed 1592
+supposedly 2079
+suppressed 6219
+suppressing 8036
+suppression 7363
+supremacy 5990
+supreme 8638
+sure 330
+surely 3599
+surface 7021
+surpass 2159
+surplus 3600
+surpluses 5234
+surprise 3862
+surprised 635
+surprising 8136
+surrender 5335
+surrendering 9176
+surrounded 2739
+surrounding 5235
+surrounds 9323
+surveillance 4458
+survey 1763
+survival 3395
+survive 6797
+survived 8639
+surviving 8640
+suspect 1299
+suspected 2719
+suspend 2720
+suspended 1883
+suspension 652
+suspicion 355
+sustain 8821
+sustainability 7277
+sustainable 1351
+sustained 6342
+sustaining 2721
+sv 3776
+svc 6283
+sway 5989
+sweden 6507
+swedes 5267
+swedish 6220
+sweeping 7867
+sweet 7310
+swell 8870
+swelling 7330
+swept 8641
+swift 4357
+swiftly 4565
+swim 6221
+swimming 8421
+swing 9505
+swiss 6222
+switch 5271
+switzerland 6599
+symbol 6829
+symbolic 3060
+symbolise 6223
+symbols 4827
+sympathetic 8372
+sympathise 1863
+sympathy 6224
+symptom 7529
+symptoms 6225
+syndrome 3661
+synergistically 9051
+synergy 9512
+syphon 8752
+syria 1575
+syrian 7990
+syrians 6226
+system 240
+systematic 7091
+systematically 9103
+systems 1449
+sämtlicher 8982
+sörensen 8507
+t 8791
+table 2684
+tabled 1555
+tables 6846
+tabling 5236
+taboo 2722
+tack 3475
+tackle 2364
+tackled 1885
+tackles 8131
+tackling 2296
+tactical 5004
+tactics 6227
+tailor 6497
+tailor-made 7785
+tailored 5237
+take 260
+take-up 7829
+taken 261
+takes 643
+taking 565
+tales 3601
+talk 1495
+talked 6228
+talking 2297
+talks 1613
+tampere 8642
+tandem 7476
+tangible 938
+tanker 5238
+tankers 5239
+tanks 9478
+tantamount 5240
+tanzania 5241
+tap 9483
+tape 3583
+tar 9381
+target 713
+targeted 2724
+targeting 6997
+targets 2054
+tariff 4176
+tariff-based 9443
+tariffs 2081
+task 1352
+tasks 3432
+taste 6053
+tastes 7755
+taten 8983
+taught 5242
+tax 2055
+tax-funded 8643
+taxation 4506
+taxes 1740
+taxing 8496
+taxpayers 7597
+tb 8390
+teach 6492
+teacher 6229
+teaching 338
+team 2725
+teams 5220
+technical 3566
+technically 8665
+technique 3746
+techniques 5243
+technological 4177
+technologically 9344
+technologies 2726
+technology 2853
+teckomatorp 7348
+teeth 6230
+teething 9012
+telecom 7432
+telecommunications 2474
+telephone 5581
+television 5078
+tell 644
+telling 4296
+tells 2749
+temperature 6443
+temporary 5244
+ten 2740
+ten-year 8713
+tend 1845
+tended 3630
+tendencies 5245
+tendency 2836
+tender 8508
+tends 5246
+tens 3401
+tense 8472
+tension 7756
+tensions 6799
+tenth 8124
+term 1339
+termed 8121
+terminating 6773
+termination 7148
+terminology 7974
+terms 247
+terrible 3602
+terribly 8415
+territorial 940
+territories 2837
+territory 2838
+terror 6102
+terrorise 8242
+terrorised 8152
+terrorism 5247
+terrorist 2587
+terrorists 5248
+test 1353
+tested 3708
+testified 9407
+testify 5942
+testifying 3641
+testimonies 4178
+testimony 8037
+testing 5088
+tests 5771
+text 1800
+textiles 3749
+texts 1358
+th-e 6436
+than 645
+thank 49
+thanked 5249
+thankfully 4181
+thanking 2343
+thanks 842
+that 264
+the 5
+theatre 8773
+their 115
+theirs 5269
+them 265
+thematic 5277
+theme 6691
+themes 6942
+themselves 631
+then 852
+theoretical 8547
+theoretically 9177
+theory 3994
+therapy 8700
+there 78
+thereafter 5278
+thereby 3274
+therefore 289
+therein 3648
+thereof 5714
+these 704
+they 390
+thin 3603
+thing 550
+things 377
+think 156
+thinking 718
+thinks 1462
+third 1376
+third-country 5279
+third-generation 9391
+third-party 9251
+thirty 2466
+this 80
+thorny 9093
+thorough 2464
+thoroughly 2855
+those 527
+though 266
+thought 341
+thoughtfulness 4460
+thoughtless 9283
+thoughts 5280
+thousand 1397
+thousands 6104
+threat 569
+threaten 1886
+threatened 5281
+threatening 4208
+threatens 2976
+threats 2066
+three 200
+threshold 5654
+thresholds 1122
+threw 8645
+thrive 5120
+throes 7821
+through 720
+throughout 1326
+throw 4209
+throwing 3707
+thrown 2493
+thrust 6234
+thumb 8606
+thus 854
+tibet 6105
+tickets 7980
+ticking 9151
+tide 6050
+tidying 9284
+tie 5339
+tied 7381
+ties 6235
+tight 3604
+tighten 3354
+tightened 9112
+tightening 1261
+tighter 1569
+tilling 8300
+timber 1460
+time 299
+time-consuming 9118
+timeframe 6006
+timely 1686
+times 1463
+timescale 651
+timetable 7182
+timetables 3131
+timing 5125
+timor 8407
+tinkering 6724
+tiny 6498
+tips 5315
+tired 4462
+tiresome 8244
+title 5071
+titles 6191
+to 9
+tobacco 1916
+today 321
+together 1573
+token 3171
+told 1005
+tolerance 8502
+tolerate 1501
+tolerated 3826
+toll 5626
+tomorrow 3567
+tone 8263
+tones 7440
+tongues 7836
+tonight 3478
+tonnes 5551
+too 422
+took 865
+tool 2213
+tools 5192
+top 2083
+topic 5344
+topical 4228
+topics 8648
+torn 8546
+torture 4399
+tortured 9095
+torturers 8396
+total 717
+totalitarian 7992
+totality 7433
+totalled 8509
+totally 4229
+touch 4464
+touched 2901
+touches 4230
+tough 5345
+toughened 7837
+tougher 8576
+tourism 860
+tourist 3795
+tourists 5966
+tours 6120
+towards 267
+town 5346
+towns 3697
+toys 3580
+trace 2094
+traceability 3392
+traceable 6508
+traced 6390
+tracing 8778
+track 3695
+tracks 5347
+trade 1631
+traded 9341
+trademark 8893
+traders 2598
+trading 5727
+tradition 5820
+traditional 7018
+traditionally 8057
+traditions 4231
+traffic 454
+traffickers 5996
+trafficking 2902
+tragedies 5348
+tragedy 2903
+tragic 3653
+tragically 7164
+tragischen 8986
+trail 6509
+train 3366
+trained 3297
+trainees 7092
+training 1468
+trains 3975
+traitors 1928
+trample 9494
+trans-european 3607
+transactions 4210
+transatlantic 6915
+transcend 8419
+transcends 7848
+transfer 4232
+transferred 4545
+transferring 2904
+transfers 2161
+transformation 8078
+transformed 7441
+transforms 7297
+transit 423
+transition 2599
+transitional 3711
+transitory 3462
+translate 3614
+translated 5713
+translating 4233
+translation 7065
+translations 7822
+transmission 3425
+transmit 7919
+transmitted 2167
+transnational 7946
+transparency 2515
+transparent 4546
+transparently 946
+transpired 7652
+transpires 8923
+transport 268
+transportation 5079
+transported 4941
+transporters 9453
+transporting 6236
+transpose 7324
+transposed 5388
+transposing 7838
+transposition 1848
+trap 7823
+traumatic 9096
+travel 3002
+travelled 2997
+travelling 7591
+tread 8143
+treason 5938
+treat 1498
+treated 2252
+treaties 1497
+treating 4075
+treatment 1068
+treats 7674
+treaty 1503
+trees 5350
+tremendous 2214
+trend 4125
+trends 2257
+trial 2839
+trialogue 7935
+trials 7093
+tribes 5893
+tribulations 8734
+tribunal 5351
+tribute 2614
+tricks 6112
+tried 3523
+tries 3160
+trigger 6838
+triggering 8510
+trip 6510
+tripartite 6831
+trips 4872
+troops 2905
+tropical 7011
+trouble 5352
+troubled 8823
+troubles 8710
+trousers 9194
+true 212
+truly 3387
+trust 47
+trusted 4547
+truth 1801
+try 2108
+trying 3289
+tse 9014
+tses 6106
+tsis 9026
+tuesday 5981
+tuna 5353
+tune 6832
+tuned 7839
+tunisia 5354
+tunnel 5746
+turk 8873
+turkey 1786
+turkish 1819
+turks 5355
+turmes 5039
+turmoil 9136
+turn 802
+turnaround 7549
+turned 4234
+turning 1504
+turnover 8590
+turns 5356
+tutsi 6335
+tv 5357
+twelve 6237
+twice 8744
+twin 7503
+two 44
+two-thirds 7485
+twofold 1911
+tying 7840
+type 698
+types 4236
+typical 5521
+typically 4237
+typified 8661
+typifies 5273
+tyre 6107
+tyres 7920
+u 8794
+u-turn 4358
+u.s. 6710
+uefa 8649
+uen 7319
+uganda 5358
+uk 6232
+ulterior 5359
+ultimate 6839
+ultimately 2957
+ultra-liberal 7543
+um 3234
+umbrella 5051
+umpteenth 8039
+umsetzung 9016
+un 530
+unabating 8040
+unable 2906
+unacceptable 3135
+unacceptably 9253
+unaccountable 7824
+unambiguous 8316
+unambiguously 9360
+unanimity 2907
+unanimous 4255
+unanimously 1505
+unavailable 8824
+unavoidable 7094
+unaware 8064
+unbalanced 7443
+unbelievable 9178
+unbelievably 5429
+unbridled 5360
+uncertain 3990
+uncertainty 6108
+unchanged 8816
+unclear 5361
+uncomfortable 6524
+unconditionally 9027
+uncontrolled 9097
+uncoordinated 9034
+und 3043
+undeclared 6238
+undeniable 6239
+under 1452
+underdeveloped 5455
+underdevelopment 4238
+underestimate 7841
+underestimated 9495
+underestimating 7842
+underestimation 9359
+undergo 6467
+undergoing 5260
+undergone 1506
+underground 7180
+underhand 5028
+underlies 7843
+underline 5503
+underlined 8334
+underlines 861
+underlying 381
+undermine 2908
+undermined 4239
+undermines 2977
+undermining 2909
+underpin 7444
+underpinned 9285
+underpinning 7817
+underpins 6511
+underspent 8855
+understand 729
+understandable 5362
+understandably 1843
+understanding 767
+understands 1507
+understood 995
+undertake 2900
+undertaken 1399
+undertakes 6781
+undertaking 786
+undertakings 5363
+undertook 2978
+undervalue 8866
+underwater 9179
+underway 3514
+underwrite 2910
+undesirable 8229
+undiscriminating 9160
+undoubtedly 2163
+unduly 9331
+uneasy 6587
+unemployed 2911
+unemployment 706
+unequal 3843
+unequivocally 5364
+unevenly 8385
+unexpected 6800
+unexpectedly 7725
+unfair 2543
+unfairly 5349
+unfortunate 1251
+unfortunately 3063
+unfounded 6582
+unhappy 6512
+unheard 8843
+unicef 8667
+unification 5959
+unified 6701
+uniform 2300
+uniformity 8012
+uniformly 6896
+unify 3367
+unifying 7321
+unilateral 8503
+unilaterally 5378
+unimodal 5365
+unimportant 3092
+unintentional 9098
+union 108
+unionists 5366
+unions 9035
+unique 6513
+unison 8411
+unit 3018
+unita 1508
+unitary 4359
+unite 6448
+united 1802
+unites 8650
+uniting 8458
+units 7262
+unity 6240
+universal 1007
+universally 3751
+universities 6109
+university 4240
+unjust 2299
+unjustifiable 8695
+unjustified 5367
+unknown 3608
+unlawful 3230
+unleashed 4275
+unless 4241
+unlike 4242
+unlikely 4973
+unlimited 6841
+unloading 9099
+unmarried 8779
+unnecessarily 3398
+unnecessary 6162
+unpleasant 7445
+unprecedented 1852
+unpunished 6241
+unqualified 3609
+unquestionable 8511
+unrealistic 4301
+unreasonably 4551
+unrelated 6585
+unreliable 4974
+unreservedly 7844
+unresolved 8852
+unrest 6209
+unrestrained 6765
+unrivalled 9385
+uns 1894
+unsafe 943
+unsatisfactory 2323
+unscrupulous 7825
+unserem 9022
+unspecified 1847
+unspoken 7067
+unsuccessful 8856
+unsustainability 9286
+unsustainable 4640
+untenable 5368
+unterzeichnete 9202
+unthinkable 8851
+until 2097
+untimely 2637
+untold 6242
+untrue 4007
+unused 9496
+unusual 3088
+unusually 7893
+unviable 8857
+unwanted 7717
+unwelcome 6243
+unwillingness 5504
+up 269
+up-to-date 4465
+update 3265
+updated 9520
+updating 8759
+upgrade 7688
+upgraded 7446
+upheaval 8619
+upheavals 7826
+upheld 5661
+uphold 6244
+upholding 6638
+upholds 1603
+upon 539
+upper 3388
+uprooted 6245
+upset 5369
+upsetting 6842
+upside-down 5927
+upstream 8737
+upturn 7929
+upward 4124
+ur 6843
+uranium 9287
+urban 2098
+urge 4226
+urged 6514
+urgencies 9539
+urgency 3822
+urgent 1445
+urgently 5651
+us 382
+usa 2840
+usable 4783
+usage 8512
+usd 8151
+use 270
+used 414
+useful 2250
+usefully 5633
+usefulness 3442
+useless 3829
+user 5370
+users 425
+uses 4459
+using 730
+usual 1262
+usually 5371
+utilise 7574
+utilised 7872
+utilising 6639
+utmost 1909
+utopian 2841
+utterly 7671
+uzelf 8795
+vacancies 7636
+vacuum 7281
+vague 4280
+valid 3481
+validate 9479
+validated 8954
+validation 4102
+validity 7434
+vallelersundi 5372
+valleys 6515
+valuable 2182
+value 1694
+valued 2824
+values 2600
+vanguard 7435
+vanish 8651
+variables 7320
+variations 8652
+varied 5907
+varies 7921
+variety 3725
+various 1453
+vary 8780
+varying 1864
+vast 2350
+vaunted 7114
+vector 2216
+vegetable 5380
+vegetables 9271
+vehemently 8934
+vehicle 4596
+vehicles 5034
+veil 6844
+venezuelan 7827
+vengeance 7227
+venture 4824
+verbal 9011
+verbatim 7447
+verde 4608
+verdict 6755
+verdicts 6360
+vereinten 7105
+vergewaltigungen 9203
+verging 2099
+verification 4207
+verify 7606
+veritable 7448
+verpflichtungen 8060
+versed 6336
+version 1509
+verstöße 9023
+verurteilen 8881
+very 53
+verzögerungen 7498
+vessel 2843
+vessels 3370
+vetches 4182
+veterinary 6907
+veto 4360
+via 2912
+viability 6246
+viable 3700
+vice-president 4244
+vicinity 4929
+vicissitudes 9015
+victim 1715
+victimisation 4882
+victims 2101
+victory 7873
+video 4179
+vietnamese 4204
+view 383
+viewed 2973
+viewpoint 3766
+viewpoints 3368
+views 1934
+vigilance 1477
+vigilant 2571
+vigorous 2263
+vigorously 731
+vigour 8675
+vile 6532
+village 5962
+vintage 2845
+violate 7467
+violated 4560
+violates 7449
+violating 6699
+violation 7427
+violations 1454
+violence 2913
+violent 5077
+viout 6845
+virtual 5523
+virtually 6247
+virtue 732
+virtues 2847
+virtuous 6343
+virus 8469
+vis-à-vis 6921
+visa 3515
+visas 5080
+visibility 8711
+visible 4361
+vision 2842
+visions 8026
+visit 2850
+visited 7845
+visiting 6248
+visitor 7846
+visitors 2632
+visits 7847
+vital 699
+vitally 4008
+vitorino 6828
+vocabulary 7450
+voggenhuber 8339
+voice 791
+voiced 8368
+voices 2914
+voicing 6562
+void 7699
+volume 733
+voluntarily 8335
+voluntary 2916
+volunteers 9067
+von 6591
+voorbeeld 7982
+vor 9288
+vote 1820
+voted 3610
+voters 2118
+votes 4245
+voting 3231
+vow 3742
+vulnerability 5373
+vulnerable 2070
+wada 5374
+waffen 1892
+wage 3352
+wages 3611
+waging 6903
+wait 837
+waiting 3443
+waive 4634
+waiver 6516
+waiving 8247
+wake 6249
+wales 5259
+walk 5341
+wall 3612
+wallet 6908
+walls 2084
+wand 8761
+want 48
+wanted 1741
+wanting 2917
+wanton 8985
+wants 1834
+war 1511
+warehouses 8936
+warfare 4466
+warm 7137
+warmly 4993
+warn 4247
+warned 1617
+warner 9180
+warning 5582
+warnings 3229
+warrant 4478
+warrants 7076
+wars 6301
+wartime 8338
+wary 9310
+was 6
+washing 6736
+waste 1983
+wasted 3146
+watch 1641
+watched 8440
+watching 4250
+watchword 3375
+water 637
+water-borne 8468
+waters 2918
+wave 8781
+wavering 8858
+way 285
+ways 1810
+we 154
+weak 3035
+weaken 2496
+weakened 7043
+weaker 4899
+weakest 7828
+weakness 334
+wealth 2919
+wealthy 6250
+weapon 9312
+weapons 5933
+wear 3369
+weather 2760
+web 9025
+website 5375
+wedded 7458
+wednesday 6337
+week 6126
+weekend 6327
+weekly 5376
+weeks 4160
+weigh 6231
+weighed 600
+weighing 3750
+weight 5342
+weightiest 9540
+weighting 6251
+welcome 1456
+welcomed 3091
+welcomes 6547
+welcoming 6546
+welfare 1566
+well 120
+well-balanced 6233
+well-being 6596
+well-established 9392
+well-informed 2920
+well-known 1512
+well-maintained 7878
+welt 7107
+went 1458
+werden 6551
+were 966
+west 5377
+western 5081
+westminster 7451
+wet 4893
+wetland 9254
+wetlands 9181
+what 153
+whatever 580
+whatsoever 2921
+wheel 7831
+when 770
+whenever 7095
+where 293
+whereas 863
+whereby 431
+wherein 6578
+whereupon 4262
+wherever 2109
+wherewithal 8096
+whether 283
+which 242
+whichever 5397
+while 427
+whilst 412
+whisky 6252
+white 3176
+whiter 8041
+who 340
+whoever 413
+whole 96
+whole-hearted 9384
+whole-heartedly 8743
+wholehearted 7643
+wholeheartedly 2711
+wholesale 3232
+wholly 6253
+whom 1574
+whose 1517
+why 735
+wide 2269
+wide-ranging 8243
+wide-spread 1519
+widely 996
+widen 3007
+widening 3192
+wider 4200
+widespread 4568
+widest 7832
+wie 3050
+wieder 3039
+wild 6254
+wildest 8859
+wildlife 7856
+will 51
+willing 2116
+willingness 4369
+win 1818
+wind 318
+winding 7507
+window 6255
+winds 5759
+wine 5400
+wines 5401
+wing 5732
+winner 6256
+winners 6114
+winning 1520
+wipe 3327
+wiped 5402
+wir 1893
+wisdom 3953
+wise 5403
+wisely 8035
+wish 204
+wished 1766
+wishes 2274
+wishing 5404
+wit 859
+witch 8271
+with 7
+withdraw 1500
+withdrawal 6338
+withdrawing 394
+withdrawn 5659
+withdrew 7857
+withhold 7454
+withholding 3642
+within 845
+without 428
+witness 3008
+witnessed 6257
+witnesses 9225
+witnessing 3073
+wives 5405
+woke 8058
+woken 6745
+wolf 7383
+woman 3233
+women 851
+won 5270
+wonder 3973
+wondered 7858
+wonderful 3685
+wondering 8897
+wood 3342
+word 4284
+wording 700
+words 223
+work 190
+worked 1012
+worker 3009
+workers 736
+workforce 1850
+working 1521
+workings 1936
+workload 3010
+workplace 5406
+works 2983
+world 1266
+world-wide 4754
+worlds 8961
+worldwide 5407
+worried 2171
+worries 6046
+worry 5055
+worrying 870
+worse 1522
+worship 5408
+worst 1461
+worte 9411
+worth 3713
+worthily 7178
+worthwhile 3123
+worthy 2741
+would 62
+wound 8513
+wounded 8812
+wounds 2332
+woven 4468
+wreck 2187
+wrecking 2188
+wrecks 5409
+wretched 8285
+write 5343
+writes 9101
+writing 2991
+written 3011
+wrong 3028
+wrongful 6258
+wrongly 3105
+wrote 5410
+wrought 2672
+wto 3615
+wurde 6672
+wye 7544
+wynn 5525
+wäre 6683
+xenophobia 8540
+xenophobic 4469
+yard 6663
+yardstick 1578
+yawning 7653
+year 182
+year-old 8714
+years 175
+yes 1490
+yesterday 7859
+yet 271
+yield 1619
+yields 6163
+yoghurt 4413
+you 83
+young 2986
+youngsters 8004
+your 206
+yours 3568
+yourself 4027
+yourselves 8887
+youth 1620
+yugoslavia 2601
+zero 6049
+ziel 8875
+zimbabwe 4199
+zimbabwean 5411
+zivilisten 8272
+zone 5894
+zones 6259
+zu 272
+zugenommen 9497
+zur 7494
+zutiefst 9402
+zwischen 9413
+­ 7103
+état 6361
+être 7502
+ôhe 8315
+über 6538
diff --git a/tests/phrase.lattice.mem/to-translate.txt b/tests/phrase.lattice.mem/to-translate.txt
new file mode 100644
index 0000000..f24c66a
--- /dev/null
+++ b/tests/phrase.lattice.mem/to-translate.txt
@@ -0,0 +1,10 @@
+((('herr',1.0,1),),(('präsident',1.0,1),),(('!',1.0,1),),(('nach',1.0,1),),(('einem',1.0,1),),(('-',1.0,1),),(('wie',1.0,1),),(('uns',1.0,1),),(('in',1.0,1),('gerufen',0.25,2),),(('erinnerung',1.0,2),),(('wurde',0.25,3),),(('gerufen',1.0,1),),(('wurde',1.0,3),),(('in',0.25,1),),(('erinnerung',0.25,1),),(('-',1.0,1),),(('acht',1.0,1),),(('jahre',1.0,1),),(('anhaltenden',1.0,1),),(('grausamen',1.0,1),),(('bürgerkrieg',1.0,1),),(('bot',1.0,1),),(('das',1.0,1),),(('am',1.0,1),),(('7',1.0,1),),(('.',1.0,1),),(('juli',1.0,1),),(('dieses',1.0,1),),(('jahres',1.0,1),),(('unterzeichnete',1.0,1),),(('friedensabkommen',1.0,1),),(('die',1.0,1),),(('möglichkeit',1.0,1),),(('zur',1.0,1),),(('beendigung',1.0,1),),(('dieses',1.0,1),),(('tragischen',1.0,1),),(('kapitels',1.0,1),),(('und',1.0,1),),(('zur',1.0,1),),(('friedlichen',1.0,1),),(('und',1.0,1),),(('dauerhaften',1.0,1),),(('beilegung',1.0,1),),(('eines',1.0,1),),(('konflikts',1.0,1),),((',',1.0,1),),(('der',1.0,1),),(('unermeßliches',1.0,1),),(('leid',1.0,1),),(('über',1.0,1),),(('die',1.0,1),),(('bevölkerung',1.0,1),),(('gebracht',1.0,1),),(('hat',1.0,1),),(('.',1.0,1),),)
+((('die',1.0,1),),(('hoffnungen',1.0,1),),((',',1.0,1),),(('zu',1.0,1),),(('denen',1.0,1),),(('dieses',1.0,1),),(('abkommen',1.0,1),),(('anlaß',1.0,1),),(('gab',1.0,1),),((',',1.0,1),),(('gehen',1.0,1),),(('jedoch',1.0,1),),(('nicht',1.0,1),),(('in',1.0,1),),(('erfüllung',1.0,1),),((',',1.0,1),),(('und',1.0,1),),(('heute',1.0,1),),((',',1.0,1),),(('fünf',1.0,1),),(('monate',1.0,1),),(('später',1.0,1),),((',',1.0,1),),(('müssen',1.0,1),),(('wir',1.0,1),),(('zutiefst',1.0,1),),(('beunruhigt',1.0,1),),(('und',1.0,1),),(('besorgt',1.0,1),),(('feststellen',1.0,1),),((',',1.0,1),),(('daß',1.0,1),),(('die',1.0,1),),(('angriffe',1.0,1),('aufgehört',0.25,3),),(('der',1.0,1),),(('rebellen',1.0,2),),(('angriffe',0.25,3),),(('gegen',1.0,1),),(('zivilisten',1.0,3),),(('der',0.25,1),),(('rebellen',0.25,2),),((',',1.0,3),),(('gegen',0.25,1),),(('zivilisten',0.25,2),),(('die',1.0,2),),((',',0.25,2),),(('morde',1.0,2),),(('die',0.25,2),),(('und',1.0,2),),(('morde',0.25,2),),(('vergewaltigungen',1.0,2),),(('und',0.25,2),),(('nicht',1.0,2),),(('vergewaltigungen',0.25,2),),(('etwa',1.0,2),),(('nicht',0.25,2),),(('aufgehört',1.0,2),),(('etwa',0.25,1),),((',',1.0,1),),(('sondern',1.0,1),),(('sogar',1.0,1),),(('zugenommen',1.0,1),),(('haben',1.0,1),),(('.',1.0,1),),)
+((('deshalb',1.0,1),),(('möchten',1.0,1),),(('wir',1.0,1),),(('christdemokraten',1.0,1),),((',',1.0,1),),(('die',1.0,1),),(('wir',1.0,1),),(('uns',1.0,1),),(('stets',1.0,1),),(('für',1.0,1),),(('dialog',1.0,1),),(('und',1.0,1),),(('aussöhnung',1.0,1),),(('eingesetzt',1.0,1),),(('haben',1.0,1),),((',',1.0,1),),(('die',1.0,1),),(('anhaltenden',1.0,1),),(('gewalttaten',1.0,1),),(('und',1.0,1),),(('verstöße',1.0,1),),(('gegen',1.0,1),),(('die',1.0,1),),(('menschenrechte',1.0,1),),(('nochmals',1.0,1),),(('auf',1.0,1),),(('das',1.0,1),),(('schärfste',1.0,1),),(('verurteilen',1.0,1),),(('und',1.0,1),),(('unserem',1.0,1),),(('bedauern',1.0,1),),(('über',1.0,1),),(('die',1.0,1),),(('verzögerungen',1.0,1),),(('im',1.0,1),),(('friedensprozeß',1.0,1),),(('ausdruck',1.0,1),),(('geben',1.0,1),),(('.',1.0,1),),)
+((('vor',1.0,1),),(('allem',1.0,1),),(('aber',1.0,1),),(('möchten',1.0,1),),(('wir',1.0,1),),(('die',1.0,1),),(('konfliktparteien',1.0,1),),(('aufrufen',1.0,1),),((',',1.0,1),),(('die',1.0,1),('niederzulegen',0.25,2),),(('waffen',1.0,2),),(('die',0.25,2),),(('ein',1.0,2),),(('waffen',0.25,3),),(('für',1.0,1),),(('allemal',1.0,2),),(('ein',0.25,2),),(('niederzulegen',1.0,3),),(('für',0.25,1),),(('allemal',0.25,1),),(('und',1.0,1),),(('ihre',1.0,1),),(('im',1.0,1),),(('friedensabkommen',1.0,1),),(('eingegangenen',1.0,1),),(('verpflichtungen',1.0,1),),(('einzuhalten',1.0,1),),(('.',1.0,1),),)
+((('da',1.0,1),),(('jedoch',1.0,1),),(('worte',1.0,1),),(('nicht',1.0,1),),(('ausreichen',1.0,1),),((',',1.0,1),),(('sondern',1.0,1),),(('taten',1.0,1),),(('erforderlich',1.0,1),),(('sind',1.0,1),),((',',1.0,1),),(('ersuchen',1.0,1),),(('wir',1.0,1),),(('nachdrücklich',1.0,1),),(('darum',1.0,1),),((',',1.0,1),),(('daß',1.0,1),),(('maßnahmen',1.0,1),),(('ergriffen',1.0,2),('bereitgestellt',0.25,1),),(('werden',0.25,2),),(('und',1.0,2),),(('ergriffen',0.25,2),),(('mittel',1.0,2),),(('und',0.25,3),),(('bereitgestellt',1.0,1),),(('werden',1.0,2),),(('mittel',0.25,1),),((',',1.0,1),),(('um',1.0,2),('zu',0.25,1),),(('ermöglichen',0.25,3),),(('die',1.0,1),),(('erfüllung',1.0,2),),(('um',0.25,3),),(('dieses',1.0,1),),(('abkommens',1.0,3),),(('die',0.25,1),),(('erfüllung',0.25,3),),(('zu',1.0,1),),(('ermöglichen',1.0,3),),(('dieses',0.25,1),),(('abkommens',0.25,1),),(('.',1.0,1),),)
+((('insbesondere',1.0,1),),(('ist',1.0,1),),(('es',1.0,1),),(('erforderlich',1.0,1),),((',',1.0,1),),(('daß',1.0,1),),(('der',1.0,1),),(('sicherheitsrat',1.0,1),),(('der',1.0,1),('beschließt',0.25,5),),(('vereinten',1.0,1),),(('nationen',1.0,1),),(('die',1.0,1),('beschließt',0.25,10),),(('stationierung',1.0,4),),(('der',0.25,1),),(('vereinten',0.25,1),),(('nationen',0.25,4),),(('einer',1.0,1),('beschließt',0.25,14),),(('internationalen',1.0,1),),(('friedenstruppe',1.0,5),),(('die',0.25,1),),(('stationierung',0.25,4),),(('die',0.25,1),),(('stationierung',0.25,5),),(('beschließt',1.0,10),),(('einer',0.25,1),),(('internationalen',0.25,1),),(('friedenstruppe',0.25,7),),(('einer',0.25,1),),(('internationalen',0.25,1),),(('friedenstruppe',0.25,4),),(('einer',0.25,1),),(('internationalen',0.25,1),),(('friedenstruppe',0.25,1),),(('.',1.0,1),),)
+((('darüber',1.0,1),),(('hinaus',1.0,1),),(('müssen',1.0,1),),(('die',1.0,1),),(('zur',1.0,1),),(('umsetzung',1.0,1),),(('dieses',1.0,1),),(('abkommens',1.0,1),),(('notwendigen',1.0,1),),(('mittel',1.0,1),),(('bereitgestellt',1.0,1),),(('werden',1.0,1),),(('.',1.0,1),),(('insbesondere',1.0,1),),(('-',1.0,1),),(('darüber',1.0,1),),(('wurde',1.0,1),),(('bereits',1.0,1),),(('gesprochen',1.0,1),),(('-',1.0,1),),(('für',1.0,1),),(('die',1.0,1),),(('förderung',1.0,1),),(('von',1.0,1),),(('entwicklung',1.0,1),),(('und',1.0,1),),(('bildung',1.0,1),),(('sowie',1.0,1),),(('sämtlicher',1.0,1),),(('maßnahmen',1.0,1),),((',',1.0,1),),(('die',1.0,1),),(('es',1.0,1),),(('der',1.0,1),),(('bevölkerung',1.0,1),),(('von',1.0,1),),(('sierra',1.0,1),),(('leone',1.0,1),),(('ermöglichen',1.0,1),),((',',1.0,1),),(('endlich',1.0,2),('zu',0.25,1),),(('finden',0.25,2),),(('wieder',1.0,2),),(('endlich',0.25,3),),(('zu',1.0,1),),(('sich',1.0,2),),(('wieder',0.25,2),),(('selbst',1.0,3),),(('zu',0.25,1),),(('sich',0.25,3),),(('zu',1.0,1),),(('finden',1.0,2),),(('selbst',0.25,1),),(('und',1.0,1),),(('in',1.0,1),),(('frieden',1.0,1),),((',',1.0,1),),(('freiheit',1.0,2),('zu',0.25,1),),(('leben',0.25,2),),(('und',1.0,2),),(('freiheit',0.25,2),),(('demokratie',1.0,2),),(('und',0.25,3),),(('zu',1.0,1),),(('leben',1.0,2),),(('demokratie',0.25,1),),(('.',1.0,1),),)
+((('herr',1.0,1),),(('präsident',1.0,1),),(('!',1.0,1),),(('was',1.0,1),),(('sich',1.0,1),),(('gegenwärtig',1.0,1),),(('in',1.0,1),),(('sierra',1.0,1),),(('leone',1.0,1),),(('abspielt',1.0,1),),((',',1.0,1),),(('ist',1.0,1),),((',',1.0,1),),(('wie',1.0,1),),(('ich',1.0,1),),(('meine',1.0,1),),((',',1.0,1),),(('ein',1.0,1),),(('gefährlicher',1.0,1),),(('präzedenzfall',1.0,1),),((',',1.0,1),),(('nicht',1.0,1),),(('nur',1.0,1),),(('für',1.0,1),),(('afrika',1.0,1),),((',',1.0,1),),(('sondern',1.0,1),),(('für',1.0,1),),(('die',1.0,1),),(('ganze',1.0,1),),(('welt',1.0,1),),(('.',1.0,1),),)
+((('im',1.0,1),),(('juli',1.0,1),),(('wurde',1.0,1),),(('zwischen',1.0,1),),(('der',1.0,1),),(('regierung',1.0,1),),(('und',1.0,1),),(('den',1.0,1),),(('ruf-rebellen',1.0,1),),(('ein',1.0,1),),(('friedensabkommen',1.0,1),),(('geschlossen',1.0,1),),(('.',1.0,1),),)
+((('das',1.0,1),),(('wäre',1.0,1),),(('zu',1.0,1),),(('begrüßen',1.0,1),),((',',1.0,1),),(('handelte',1.0,1),),(('es',1.0,1),),(('sich',1.0,1),),(('dabei',1.0,1),),(('nicht',1.0,1),),(('um',1.0,1),),(('eine',1.0,1),),(('der',1.0,1),),(('brutalsten',1.0,1),),(('rebellengruppen',1.0,1),),(('der',1.0,1),),(('welt',1.0,1),),((',',1.0,1),),(('deren',1.0,1),),(('einziges',1.0,1),),(('politisches',1.0,1),),(('ziel',1.0,1),),(('darin',1.0,1),),(('besteht',1.0,1),),((',',1.0,1),),(('die',1.0,1),('zu',0.25,2),),(('kontrolle',1.0,2),),(('erlangen',0.25,4),),(('über',1.0,1),),(('die',1.0,1),),(('diamanten',1.0,3),),(('die',0.25,1),),(('kontrolle',0.25,3),),(('zu',1.0,1),),(('erlangen',1.0,4),),(('über',0.25,1),),(('die',0.25,1),),(('diamanten',0.25,1),),(('.',1.0,1),),)
diff --git a/tests/phrase.lattice.mem/truth/results.txt b/tests/phrase.lattice.mem/truth/results.txt
new file mode 100644
index 0000000..1414cbf
--- /dev/null
+++ b/tests/phrase.lattice.mem/truth/results.txt
@@ -0,0 +1,21 @@
+TRANSLATION_1=mr president , after a - as has been mentioned , eight years persistent cruel possible for the civil war on 7 july this year and peace agreement , signed the opportunity to put an end to this tragic chapter and peaceful and lasting settlement of the conflict , unermeßliches suffering on the population .
+TRANSLATION_2=the hopes , to which this reason , are not , however , in accordance with , and today , five months later , we need is a deeply concerned about and to say that the rebels the attacks against civilians , the deaths and rape not stopped , but even have increased .
+TRANSLATION_3=we would therefore christian democrats , we have always fought for dialogue and reconciliation , the continuing violence and violations of human rights in the outright condemnation of our regret the delay in the peace process .
+TRANSLATION_4=but above all , we would like to call the conflict , once and for all stand in the peace agreement and their commitments .
+TRANSLATION_5=however , that words are not enough , but what is required , we call strongly that measures be taken and resources in order to achieve this agreement .
+TRANSLATION_6=in particular , it is necessary , of the united nations security council decides the deployment of international intervention power .
+TRANSLATION_7=furthermore , the need for the implementation of this agreement to the necessary resources . in particular , which has already been mentioned - for the promotion of development and education and all the measures which the people of sierra leone , at long last to find themselves and to live in peace , freedom and democracy .
+TRANSLATION_8=mr president , what is currently in sierra leone a my opinion , a dangerous precedent , not only for africa , but for the whole world .
+TRANSLATION_9=in july was between the government and the ruf-rebellen a peace agreement is closed .
+TRANSLATION_10=this would be useful , was not a question of brutalsten rebellengruppen the political world , whose only aim is to gain control of diamonds .
+SCORE_1 = -330.895
+SCORE_2 = -117.736
+SCORE_3 = -82.050
+SCORE_4 = -52.202
+SCORE_5 = -70.049
+SCORE_6 = -35.519
+SCORE_7 = -100.506
+SCORE_8 = -43.752
+SCORE_9 = -125.536
+SCORE_10 = -256.574
+TOTAL_WALLTIME ~ 9
diff --git a/tests/phrase.lattice.ondisk/filter-stderr.pl b/tests/phrase.lattice.ondisk/filter-stderr.pl
new file mode 100755
index 0000000..2f6e176
--- /dev/null
+++ b/tests/phrase.lattice.ondisk/filter-stderr.pl
@@ -0,0 +1,22 @@
+#!/usr/bin/perl
+
+BEGIN { use Cwd qw/ abs_path /; use File::Basename; $script_dir = dirname(abs_path($0)); push @INC, "$script_dir/../perllib"; }
+use RegTestUtils;
+
+$x=0;
+while (<>) {
+ chomp;
+
+ if (/^Finished loading LanguageModels/) {
+ my $time = RegTestUtils::readTime($_);
+ print "LMLOAD_TIME ~ $time\n";
+ }
+ if (/^Finished loading phrase tables/) {
+ my $time = RegTestUtils::readTime($_);
+ print "PTLOAD_TIME ~ $time\n";
+ }
+ next unless /^BEST TRANSLATION:/;
+ my $pscore = RegTestUtils::readHypoScore($_);
+ $x++;
+ print "SCORE_$x = $pscore\n";
+}
diff --git a/tests/phrase.lattice.ondisk/filter-stdout.pl b/tests/phrase.lattice.ondisk/filter-stdout.pl
new file mode 100755
index 0000000..476ddf6
--- /dev/null
+++ b/tests/phrase.lattice.ondisk/filter-stdout.pl
@@ -0,0 +1,7 @@
+#!/usr/bin/perl
+$x=0;
+while (<>) {
+ chomp;
+ $x++;
+ print "TRANSLATION_$x=$_\n";
+}
diff --git a/tests/phrase.lattice.ondisk/moses.ini b/tests/phrase.lattice.ondisk/moses.ini
new file mode 100644
index 0000000..276ca7b
--- /dev/null
+++ b/tests/phrase.lattice.ondisk/moses.ini
@@ -0,0 +1,44 @@
+#########################
+### MOSES CONFIG FILE ###
+#########################
+
+# input factors
+[input-factors]
+0
+
+# mapping steps
+[mapping]
+0 T 0
+
+[distortion-limit]
+6
+
+# feature functions
+[feature]
+UnknownWordPenalty
+WordPenalty
+PhrasePenalty
+#PhraseDictionaryMemory name=TranslationModel0 table-limit=20 num-features=4 path=${TEST_PATH}/../phrase.lattice.mem/phrase-table.0-0.1.1.gz input-factor=0 output-factor=0
+#PhraseDictionaryBinary name=TranslationModel0 table-limit=20 num-features=4 path=/home/hieu/workspace/experiment/data/issues/maxim/filter/t/phrase-table.0-0.1.1.bin/phrase-table input-factor=0 output-factor=0
+PhraseDictionaryOnDisk name=TranslationModel0 table-limit=20 num-features=4 path=${TEST_PATH}/../phrase.lattice.mem/phrase-table.0-0.1.1.ondisk input-factor=0 output-factor=0
+
+Distortion
+KENLM name=LM0 factor=0 path=${TEST_PATH}/../phrase.lattice.mem/lm.en.blm order=3
+InputFeature num-features=1 num-input-features=1 real-word-count=0
+
+# dense weights for feature functions
+[weight]
+UnknownWordPenalty0= 1
+WordPenalty0= -1
+PhrasePenalty0= 0.2
+TranslationModel0= 0.2 0.2 0.2 0.2
+Distortion0= 0.3
+LM0= 0.5
+InputFeature0= 1
+
+[inputtype]
+2
+
+[max-phrase-length]
+1000000
+
diff --git a/tests/phrase.lattice.ondisk/to-translate.txt b/tests/phrase.lattice.ondisk/to-translate.txt
new file mode 100644
index 0000000..f24c66a
--- /dev/null
+++ b/tests/phrase.lattice.ondisk/to-translate.txt
@@ -0,0 +1,10 @@
+((('herr',1.0,1),),(('präsident',1.0,1),),(('!',1.0,1),),(('nach',1.0,1),),(('einem',1.0,1),),(('-',1.0,1),),(('wie',1.0,1),),(('uns',1.0,1),),(('in',1.0,1),('gerufen',0.25,2),),(('erinnerung',1.0,2),),(('wurde',0.25,3),),(('gerufen',1.0,1),),(('wurde',1.0,3),),(('in',0.25,1),),(('erinnerung',0.25,1),),(('-',1.0,1),),(('acht',1.0,1),),(('jahre',1.0,1),),(('anhaltenden',1.0,1),),(('grausamen',1.0,1),),(('bürgerkrieg',1.0,1),),(('bot',1.0,1),),(('das',1.0,1),),(('am',1.0,1),),(('7',1.0,1),),(('.',1.0,1),),(('juli',1.0,1),),(('dieses',1.0,1),),(('jahres',1.0,1),),(('unterzeichnete',1.0,1),),(('friedensabkommen',1.0,1),),(('die',1.0,1),),(('möglichkeit',1.0,1),),(('zur',1.0,1),),(('beendigung',1.0,1),),(('dieses',1.0,1),),(('tragischen',1.0,1),),(('kapitels',1.0,1),),(('und',1.0,1),),(('zur',1.0,1),),(('friedlichen',1.0,1),),(('und',1.0,1),),(('dauerhaften',1.0,1),),(('beilegung',1.0,1),),(('eines',1.0,1),),(('konflikts',1.0,1),),((',',1.0,1),),(('der',1.0,1),),(('unermeßliches',1.0,1),),(('leid',1.0,1),),(('über',1.0,1),),(('die',1.0,1),),(('bevölkerung',1.0,1),),(('gebracht',1.0,1),),(('hat',1.0,1),),(('.',1.0,1),),)
+((('die',1.0,1),),(('hoffnungen',1.0,1),),((',',1.0,1),),(('zu',1.0,1),),(('denen',1.0,1),),(('dieses',1.0,1),),(('abkommen',1.0,1),),(('anlaß',1.0,1),),(('gab',1.0,1),),((',',1.0,1),),(('gehen',1.0,1),),(('jedoch',1.0,1),),(('nicht',1.0,1),),(('in',1.0,1),),(('erfüllung',1.0,1),),((',',1.0,1),),(('und',1.0,1),),(('heute',1.0,1),),((',',1.0,1),),(('fünf',1.0,1),),(('monate',1.0,1),),(('später',1.0,1),),((',',1.0,1),),(('müssen',1.0,1),),(('wir',1.0,1),),(('zutiefst',1.0,1),),(('beunruhigt',1.0,1),),(('und',1.0,1),),(('besorgt',1.0,1),),(('feststellen',1.0,1),),((',',1.0,1),),(('daß',1.0,1),),(('die',1.0,1),),(('angriffe',1.0,1),('aufgehört',0.25,3),),(('der',1.0,1),),(('rebellen',1.0,2),),(('angriffe',0.25,3),),(('gegen',1.0,1),),(('zivilisten',1.0,3),),(('der',0.25,1),),(('rebellen',0.25,2),),((',',1.0,3),),(('gegen',0.25,1),),(('zivilisten',0.25,2),),(('die',1.0,2),),((',',0.25,2),),(('morde',1.0,2),),(('die',0.25,2),),(('und',1.0,2),),(('morde',0.25,2),),(('vergewaltigungen',1.0,2),),(('und',0.25,2),),(('nicht',1.0,2),),(('vergewaltigungen',0.25,2),),(('etwa',1.0,2),),(('nicht',0.25,2),),(('aufgehört',1.0,2),),(('etwa',0.25,1),),((',',1.0,1),),(('sondern',1.0,1),),(('sogar',1.0,1),),(('zugenommen',1.0,1),),(('haben',1.0,1),),(('.',1.0,1),),)
+((('deshalb',1.0,1),),(('möchten',1.0,1),),(('wir',1.0,1),),(('christdemokraten',1.0,1),),((',',1.0,1),),(('die',1.0,1),),(('wir',1.0,1),),(('uns',1.0,1),),(('stets',1.0,1),),(('für',1.0,1),),(('dialog',1.0,1),),(('und',1.0,1),),(('aussöhnung',1.0,1),),(('eingesetzt',1.0,1),),(('haben',1.0,1),),((',',1.0,1),),(('die',1.0,1),),(('anhaltenden',1.0,1),),(('gewalttaten',1.0,1),),(('und',1.0,1),),(('verstöße',1.0,1),),(('gegen',1.0,1),),(('die',1.0,1),),(('menschenrechte',1.0,1),),(('nochmals',1.0,1),),(('auf',1.0,1),),(('das',1.0,1),),(('schärfste',1.0,1),),(('verurteilen',1.0,1),),(('und',1.0,1),),(('unserem',1.0,1),),(('bedauern',1.0,1),),(('über',1.0,1),),(('die',1.0,1),),(('verzögerungen',1.0,1),),(('im',1.0,1),),(('friedensprozeß',1.0,1),),(('ausdruck',1.0,1),),(('geben',1.0,1),),(('.',1.0,1),),)
+((('vor',1.0,1),),(('allem',1.0,1),),(('aber',1.0,1),),(('möchten',1.0,1),),(('wir',1.0,1),),(('die',1.0,1),),(('konfliktparteien',1.0,1),),(('aufrufen',1.0,1),),((',',1.0,1),),(('die',1.0,1),('niederzulegen',0.25,2),),(('waffen',1.0,2),),(('die',0.25,2),),(('ein',1.0,2),),(('waffen',0.25,3),),(('für',1.0,1),),(('allemal',1.0,2),),(('ein',0.25,2),),(('niederzulegen',1.0,3),),(('für',0.25,1),),(('allemal',0.25,1),),(('und',1.0,1),),(('ihre',1.0,1),),(('im',1.0,1),),(('friedensabkommen',1.0,1),),(('eingegangenen',1.0,1),),(('verpflichtungen',1.0,1),),(('einzuhalten',1.0,1),),(('.',1.0,1),),)
+((('da',1.0,1),),(('jedoch',1.0,1),),(('worte',1.0,1),),(('nicht',1.0,1),),(('ausreichen',1.0,1),),((',',1.0,1),),(('sondern',1.0,1),),(('taten',1.0,1),),(('erforderlich',1.0,1),),(('sind',1.0,1),),((',',1.0,1),),(('ersuchen',1.0,1),),(('wir',1.0,1),),(('nachdrücklich',1.0,1),),(('darum',1.0,1),),((',',1.0,1),),(('daß',1.0,1),),(('maßnahmen',1.0,1),),(('ergriffen',1.0,2),('bereitgestellt',0.25,1),),(('werden',0.25,2),),(('und',1.0,2),),(('ergriffen',0.25,2),),(('mittel',1.0,2),),(('und',0.25,3),),(('bereitgestellt',1.0,1),),(('werden',1.0,2),),(('mittel',0.25,1),),((',',1.0,1),),(('um',1.0,2),('zu',0.25,1),),(('ermöglichen',0.25,3),),(('die',1.0,1),),(('erfüllung',1.0,2),),(('um',0.25,3),),(('dieses',1.0,1),),(('abkommens',1.0,3),),(('die',0.25,1),),(('erfüllung',0.25,3),),(('zu',1.0,1),),(('ermöglichen',1.0,3),),(('dieses',0.25,1),),(('abkommens',0.25,1),),(('.',1.0,1),),)
+((('insbesondere',1.0,1),),(('ist',1.0,1),),(('es',1.0,1),),(('erforderlich',1.0,1),),((',',1.0,1),),(('daß',1.0,1),),(('der',1.0,1),),(('sicherheitsrat',1.0,1),),(('der',1.0,1),('beschließt',0.25,5),),(('vereinten',1.0,1),),(('nationen',1.0,1),),(('die',1.0,1),('beschließt',0.25,10),),(('stationierung',1.0,4),),(('der',0.25,1),),(('vereinten',0.25,1),),(('nationen',0.25,4),),(('einer',1.0,1),('beschließt',0.25,14),),(('internationalen',1.0,1),),(('friedenstruppe',1.0,5),),(('die',0.25,1),),(('stationierung',0.25,4),),(('die',0.25,1),),(('stationierung',0.25,5),),(('beschließt',1.0,10),),(('einer',0.25,1),),(('internationalen',0.25,1),),(('friedenstruppe',0.25,7),),(('einer',0.25,1),),(('internationalen',0.25,1),),(('friedenstruppe',0.25,4),),(('einer',0.25,1),),(('internationalen',0.25,1),),(('friedenstruppe',0.25,1),),(('.',1.0,1),),)
+((('darüber',1.0,1),),(('hinaus',1.0,1),),(('müssen',1.0,1),),(('die',1.0,1),),(('zur',1.0,1),),(('umsetzung',1.0,1),),(('dieses',1.0,1),),(('abkommens',1.0,1),),(('notwendigen',1.0,1),),(('mittel',1.0,1),),(('bereitgestellt',1.0,1),),(('werden',1.0,1),),(('.',1.0,1),),(('insbesondere',1.0,1),),(('-',1.0,1),),(('darüber',1.0,1),),(('wurde',1.0,1),),(('bereits',1.0,1),),(('gesprochen',1.0,1),),(('-',1.0,1),),(('für',1.0,1),),(('die',1.0,1),),(('förderung',1.0,1),),(('von',1.0,1),),(('entwicklung',1.0,1),),(('und',1.0,1),),(('bildung',1.0,1),),(('sowie',1.0,1),),(('sämtlicher',1.0,1),),(('maßnahmen',1.0,1),),((',',1.0,1),),(('die',1.0,1),),(('es',1.0,1),),(('der',1.0,1),),(('bevölkerung',1.0,1),),(('von',1.0,1),),(('sierra',1.0,1),),(('leone',1.0,1),),(('ermöglichen',1.0,1),),((',',1.0,1),),(('endlich',1.0,2),('zu',0.25,1),),(('finden',0.25,2),),(('wieder',1.0,2),),(('endlich',0.25,3),),(('zu',1.0,1),),(('sich',1.0,2),),(('wieder',0.25,2),),(('selbst',1.0,3),),(('zu',0.25,1),),(('sich',0.25,3),),(('zu',1.0,1),),(('finden',1.0,2),),(('selbst',0.25,1),),(('und',1.0,1),),(('in',1.0,1),),(('frieden',1.0,1),),((',',1.0,1),),(('freiheit',1.0,2),('zu',0.25,1),),(('leben',0.25,2),),(('und',1.0,2),),(('freiheit',0.25,2),),(('demokratie',1.0,2),),(('und',0.25,3),),(('zu',1.0,1),),(('leben',1.0,2),),(('demokratie',0.25,1),),(('.',1.0,1),),)
+((('herr',1.0,1),),(('präsident',1.0,1),),(('!',1.0,1),),(('was',1.0,1),),(('sich',1.0,1),),(('gegenwärtig',1.0,1),),(('in',1.0,1),),(('sierra',1.0,1),),(('leone',1.0,1),),(('abspielt',1.0,1),),((',',1.0,1),),(('ist',1.0,1),),((',',1.0,1),),(('wie',1.0,1),),(('ich',1.0,1),),(('meine',1.0,1),),((',',1.0,1),),(('ein',1.0,1),),(('gefährlicher',1.0,1),),(('präzedenzfall',1.0,1),),((',',1.0,1),),(('nicht',1.0,1),),(('nur',1.0,1),),(('für',1.0,1),),(('afrika',1.0,1),),((',',1.0,1),),(('sondern',1.0,1),),(('für',1.0,1),),(('die',1.0,1),),(('ganze',1.0,1),),(('welt',1.0,1),),(('.',1.0,1),),)
+((('im',1.0,1),),(('juli',1.0,1),),(('wurde',1.0,1),),(('zwischen',1.0,1),),(('der',1.0,1),),(('regierung',1.0,1),),(('und',1.0,1),),(('den',1.0,1),),(('ruf-rebellen',1.0,1),),(('ein',1.0,1),),(('friedensabkommen',1.0,1),),(('geschlossen',1.0,1),),(('.',1.0,1),),)
+((('das',1.0,1),),(('wäre',1.0,1),),(('zu',1.0,1),),(('begrüßen',1.0,1),),((',',1.0,1),),(('handelte',1.0,1),),(('es',1.0,1),),(('sich',1.0,1),),(('dabei',1.0,1),),(('nicht',1.0,1),),(('um',1.0,1),),(('eine',1.0,1),),(('der',1.0,1),),(('brutalsten',1.0,1),),(('rebellengruppen',1.0,1),),(('der',1.0,1),),(('welt',1.0,1),),((',',1.0,1),),(('deren',1.0,1),),(('einziges',1.0,1),),(('politisches',1.0,1),),(('ziel',1.0,1),),(('darin',1.0,1),),(('besteht',1.0,1),),((',',1.0,1),),(('die',1.0,1),('zu',0.25,2),),(('kontrolle',1.0,2),),(('erlangen',0.25,4),),(('über',1.0,1),),(('die',1.0,1),),(('diamanten',1.0,3),),(('die',0.25,1),),(('kontrolle',0.25,3),),(('zu',1.0,1),),(('erlangen',1.0,4),),(('über',0.25,1),),(('die',0.25,1),),(('diamanten',0.25,1),),(('.',1.0,1),),)
diff --git a/tests/phrase.lattice.ondisk/truth/results.txt b/tests/phrase.lattice.ondisk/truth/results.txt
new file mode 100644
index 0000000..a887117
--- /dev/null
+++ b/tests/phrase.lattice.ondisk/truth/results.txt
@@ -0,0 +1,21 @@
+TRANSLATION_1=mr president , after a member of , as we mentioned of you have wished , eight years on persistent cruel a civil war possible on 7 july this year , signed peace deal of all . given the opportunity on meeting of this new tragic event and peaceful and lasting resolution a conflict of work , unermeßliches suffering on the people , .
+TRANSLATION_2=the hope for which cause for complaint , have , this cannot go in accordance with in poverty and today , five months later , we will have to worried concerned about and point out that the attack particular attention must be paid to the rebels civilians fact , the deaths and rape not stopped but even .
+TRANSLATION_3=we would therefore christian democrats , the we have always for dialogue and reconciliation parliament , have , the eternal violence and the continued violation of human rights in the strongest possible terms to condemn and to our regret about the delays in the peace process , .
+TRANSLATION_4=but above all , by the conflict we want to see the arms for all stand and your being put in peace deal commitments .
+TRANSLATION_5=fridays because are not enough to say and , at action are needed we expressly ask the principle that measures and funding available in order to achieve the fulfilment of this agreement of air traffic .
+TRANSLATION_6=in particular , it is see the united nations security council allowed establishing an international intervention power .
+TRANSLATION_7=must also exercise aimed at implemented agreement necessary resources be particular - this has been already discussed , for the promotion of development , and that they should measures which may give rise to all the people of sierra leone , allow us to at long last quantity to himself who and in peace , and freedom and democracy .
+TRANSLATION_8=mr president , the sierra leone at present a spectacle of my opinion , a dangerous precedent not only not for the sake of africa , but for the earth .
+TRANSLATION_9=decision in july has always been place between the government and the ruf-rebellen a peace agreement closed down .
+TRANSLATION_10=would be to be welcomed ; and it was not the brutalsten rebellengruppen around the world , whose only aim of priority political control of diamonds .
+SCORE_1 = -403.393
+SCORE_2 = -178.173
+SCORE_3 = -99.690
+SCORE_4 = -76.588
+SCORE_5 = -116.173
+SCORE_6 = -45.374
+SCORE_7 = -171.864
+SCORE_8 = -67.699
+SCORE_9 = -143.957
+SCORE_10 = -280.211
+TOTAL_WALLTIME ~ 1