Soha368 commited on
Commit
a888ccc
·
0 Parent(s):

NMT Translator - English to Spanish

Browse files
.gitattributes ADDED
@@ -0,0 +1 @@
 
 
1
+ *.ckpt filter=lfs diff=lfs merge=lfs -text
Dockerfile ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.11-slim
2
+
3
+ WORKDIR /app
4
+
5
+ RUN pip install --no-cache-dir \
6
+ flask \
7
+ pyyaml \
8
+ torch --index-url https://download.pytorch.org/whl/cpu \
9
+ joeynmt \
10
+ subword-nmt \
11
+ importlib_metadata
12
+
13
+ COPY . .
14
+
15
+ EXPOSE 7860
16
+
17
+ CMD ["python", "app.py"]
README.md ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: NMT Translator
3
+ emoji: 🌐
4
+ colorFrom: indigo
5
+ colorTo: purple
6
+ sdk: docker
7
+ app_port: 7860
8
+ pinned: false
9
+ ---
10
+
11
+ # NMT Translator
12
+
13
+ Neural Machine Translation web app powered by JoeyNMT Transformer models.
14
+ Translates between English and Spanish using models trained on Europarl v7 data.
app.py ADDED
@@ -0,0 +1,180 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """
3
+ NMT Translator — Hugging Face Spaces edition.
4
+
5
+ Self-contained Flask app that loads JoeyNMT models and serves translations.
6
+ """
7
+
8
+ import os
9
+ import sys
10
+ import re
11
+ import subprocess
12
+ import tempfile
13
+ from pathlib import Path
14
+
15
+ import yaml
16
+ from flask import Flask, render_template, request, jsonify
17
+
18
+ app = Flask(__name__)
19
+
20
+ BASE_DIR = Path(__file__).resolve().parent
21
+
22
+ LANGUAGE_NAMES = {
23
+ "en": "English", "es": "Spanish", "ru": "Russian",
24
+ "bn": "Bangla", "zh": "Chinese",
25
+ }
26
+ LANGUAGE_FLAGS = {
27
+ "en": "\U0001f1ec\U0001f1e7", "es": "\U0001f1ea\U0001f1f8",
28
+ "ru": "\U0001f1f7\U0001f1fa", "bn": "\U0001f1e7\U0001f1e9",
29
+ "zh": "\U0001f1e8\U0001f1f3",
30
+ }
31
+
32
+ MODEL_REGISTRY = {}
33
+
34
+
35
+ def _discover_models():
36
+ """Find usable models. Each model needs a subdirectory under models/
37
+ with: best.ckpt, src_vocab.txt, trg_vocab.txt, config.yaml, bpe.codes."""
38
+
39
+ models_root = BASE_DIR / "models"
40
+ if not models_root.is_dir():
41
+ print("WARNING: models/ directory not found")
42
+ return
43
+
44
+ for subdir in sorted(models_root.iterdir()):
45
+ if not subdir.is_dir():
46
+ continue
47
+
48
+ ckpt = subdir / "best.ckpt"
49
+ config = subdir / "config.yaml"
50
+ src_vocab = subdir / "src_vocab.txt"
51
+ trg_vocab = subdir / "trg_vocab.txt"
52
+ bpe_codes = subdir / "bpe.codes"
53
+
54
+ if not all(p.exists() for p in [ckpt, config, src_vocab, trg_vocab, bpe_codes]):
55
+ missing = [p.name for p in [ckpt, config, src_vocab, trg_vocab, bpe_codes] if not p.exists()]
56
+ print(f" Skipping {subdir.name}: missing {missing}")
57
+ continue
58
+
59
+ with open(config, "r", encoding="utf-8") as f:
60
+ cfg = yaml.safe_load(f)
61
+
62
+ src_lang = cfg.get("data", {}).get("src", {}).get("lang", "?")
63
+ trg_lang = cfg.get("data", {}).get("trg", {}).get("lang", "?")
64
+ pair_key = f"{src_lang}-{trg_lang}"
65
+
66
+ MODEL_REGISTRY[pair_key] = {
67
+ "src_lang": src_lang,
68
+ "trg_lang": trg_lang,
69
+ "src_name": LANGUAGE_NAMES.get(src_lang, src_lang),
70
+ "trg_name": LANGUAGE_NAMES.get(trg_lang, trg_lang),
71
+ "src_flag": LANGUAGE_FLAGS.get(src_lang, ""),
72
+ "trg_flag": LANGUAGE_FLAGS.get(trg_lang, ""),
73
+ "model_dir": str(subdir),
74
+ "config_path": str(config),
75
+ }
76
+ print(f" [{pair_key}] {LANGUAGE_NAMES.get(src_lang, src_lang)} -> "
77
+ f"{LANGUAGE_NAMES.get(trg_lang, trg_lang)}")
78
+
79
+
80
+ def _translate_text(pair_key, text):
81
+ """Translate using JoeyNMT's translate mode via the wrapper script."""
82
+ if pair_key not in MODEL_REGISTRY:
83
+ return None, f"No model for {pair_key}"
84
+
85
+ info = MODEL_REGISTRY[pair_key]
86
+ model_dir = info["model_dir"]
87
+ wrapper = BASE_DIR / "joeynmt_wrapper.py"
88
+
89
+ lines = [l.strip() for l in text.strip().split("\n") if l.strip()]
90
+ if not lines:
91
+ return None, "No input text"
92
+
93
+ try:
94
+ env = os.environ.copy()
95
+ env["PYTHONIOENCODING"] = "utf-8"
96
+ env["PYTHONUNBUFFERED"] = "1"
97
+
98
+ result = subprocess.run(
99
+ [sys.executable, str(wrapper), "translate", info["config_path"]],
100
+ input="\n".join(lines) + "\n",
101
+ capture_output=True, text=True,
102
+ env=env, cwd=model_dir, timeout=180,
103
+ )
104
+
105
+ if result.returncode != 0:
106
+ return None, f"JoeyNMT error: {result.stderr.strip()[-500:]}"
107
+
108
+ raw = result.stdout.strip().split("\n")
109
+ translations = []
110
+ for line in raw:
111
+ line = line.strip()
112
+ if not line:
113
+ continue
114
+ if any(line.startswith(p) for p in [
115
+ ">", "JoeyNMT", "Loading", "The ", "Use cuda",
116
+ "WARNING", "INFO", "DEBUG",
117
+ ]):
118
+ continue
119
+ translations.append(line)
120
+
121
+ if not translations:
122
+ return None, f"No output. stderr: {result.stderr[:500]}"
123
+
124
+ out = "\n".join(translations)
125
+ out = re.sub(r'\s+([.!?;:,"\'\)\]])', r'\1', out)
126
+ out = re.sub(r'([¿¡\(\["])\s+', r'\1', out)
127
+ return out.strip(), None
128
+
129
+ except subprocess.TimeoutExpired:
130
+ return None, "Translation timed out"
131
+ except Exception as e:
132
+ return None, str(e)
133
+
134
+
135
+ @app.route("/")
136
+ def index():
137
+ pairs = []
138
+ for key, info in sorted(MODEL_REGISTRY.items()):
139
+ pairs.append({
140
+ "key": key,
141
+ "src_lang": info["src_lang"], "trg_lang": info["trg_lang"],
142
+ "src_name": info["src_name"], "trg_name": info["trg_name"],
143
+ "src_flag": info["src_flag"], "trg_flag": info["trg_flag"],
144
+ "label": f"{info['src_name']} \u2192 {info['trg_name']}",
145
+ })
146
+ return render_template("index.html", pairs=pairs)
147
+
148
+
149
+ @app.route("/translate", methods=["POST"])
150
+ def translate_endpoint():
151
+ data = request.get_json(force=True)
152
+ pair_key = data.get("pair", "")
153
+ text = data.get("text", "").strip()
154
+
155
+ if not text:
156
+ return jsonify({"error": "Please enter some text."}), 400
157
+ if pair_key not in MODEL_REGISTRY:
158
+ return jsonify({"error": f"Unknown pair: {pair_key}"}), 400
159
+
160
+ translation, error = _translate_text(pair_key, text)
161
+ if error:
162
+ return jsonify({"error": error}), 500
163
+
164
+ return jsonify({
165
+ "translation": translation,
166
+ "pair": pair_key,
167
+ "src_name": MODEL_REGISTRY[pair_key]["src_name"],
168
+ "trg_name": MODEL_REGISTRY[pair_key]["trg_name"],
169
+ })
170
+
171
+
172
+ print("\n" + "=" * 50)
173
+ print(" NMT Translator — discovering models...")
174
+ print("=" * 50)
175
+ _discover_models()
176
+ print(f"\n {len(MODEL_REGISTRY)} model(s) ready.\n")
177
+
178
+ if __name__ == "__main__":
179
+ port = int(os.environ.get("PORT", 7860))
180
+ app.run(host="0.0.0.0", port=port)
joeynmt_wrapper.py ADDED
@@ -0,0 +1,139 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """
3
+ JoeyNMT Wrapper — patches for PyTorch 2.7+ compatibility.
4
+
5
+ PyTorch 2.7 removed the `verbose` kwarg from ReduceLROnPlateau.
6
+ JoeyNMT 2.3.0 still passes it, so we monkey-patch the scheduler
7
+ before importing JoeyNMT.
8
+
9
+ On Linux this also patches symlink handling to work around any
10
+ permission issues.
11
+
12
+ Usage (called by run.py, not directly):
13
+ python joeynmt_wrapper.py train config.yaml
14
+ python joeynmt_wrapper.py test config.yaml --ckpt best.ckpt --output_path out.txt
15
+ """
16
+
17
+ import sys
18
+ import os
19
+ import shutil
20
+ from pathlib import Path
21
+ from typing import Optional
22
+
23
+ # --- Patch ReduceLROnPlateau BEFORE importing joeynmt ---
24
+ import torch.optim.lr_scheduler as _lr_sched
25
+
26
+ _OrigPlateau = _lr_sched.ReduceLROnPlateau
27
+
28
+ class _PatchedPlateau(_OrigPlateau):
29
+ """Accept and silently ignore the `verbose` kwarg removed in PyTorch 2.7."""
30
+ def __init__(self, *args, **kwargs):
31
+ kwargs.pop("verbose", None)
32
+ super().__init__(*args, **kwargs)
33
+
34
+ _lr_sched.ReduceLROnPlateau = _PatchedPlateau
35
+
36
+ # --- Now safe to import joeynmt ---
37
+ import joeynmt.helpers
38
+ import joeynmt.training
39
+
40
+
41
+ # ---------------------------------------------------------------------------
42
+ # Symlink patch — use file copy instead of symlinks (works everywhere)
43
+ # ---------------------------------------------------------------------------
44
+ def _safe_symlink_update(target: Path, link_name: Path) -> Optional[Path]:
45
+ """
46
+ Replacement for joeynmt.helpers.symlink_update that uses file copying
47
+ instead of OS symlinks (avoids permission issues).
48
+ """
49
+ current_last = None
50
+ sidecar = link_name.parent / (link_name.name + ".target")
51
+
52
+ if link_name.exists():
53
+ if sidecar.exists():
54
+ prev_target = sidecar.read_text(encoding="utf-8").strip()
55
+ current_last = link_name.parent / prev_target
56
+ link_name.unlink(missing_ok=True)
57
+
58
+ actual = link_name.parent / target
59
+ if actual.exists():
60
+ shutil.copy2(str(actual), str(link_name))
61
+ sidecar.write_text(str(target), encoding="utf-8")
62
+
63
+ return current_last
64
+
65
+
66
+ joeynmt.helpers.symlink_update = _safe_symlink_update
67
+
68
+
69
+ # ---------------------------------------------------------------------------
70
+ # Checkpoint-save patch — skip symlink assertion
71
+ # ---------------------------------------------------------------------------
72
+ _orig_save = joeynmt.training.TrainManager._save_checkpoint
73
+
74
+
75
+ def _patched_save(self, new_best, score):
76
+ """Save checkpoint without symlink-resolve assertion."""
77
+ import math
78
+ import heapq
79
+ import logging
80
+ import torch
81
+
82
+ logger = logging.getLogger(__name__)
83
+ model_path = Path(self.model_dir) / f"{self.stats.steps}.ckpt"
84
+ state = {
85
+ "steps": self.stats.steps,
86
+ "model_state": self.model.state_dict(),
87
+ "optimizer_state": self.optimizer.state_dict(),
88
+ "scheduler_state": (
89
+ self.scheduler.state_dict() if self.scheduler is not None else None
90
+ ),
91
+ "scaler_state": (
92
+ self.scaler.state_dict() if self.scaler is not None else None
93
+ ),
94
+ }
95
+ torch.save(state, model_path.as_posix())
96
+ logger.info("Checkpoint saved in %s.", model_path)
97
+
98
+ symlink_target = Path(f"{self.stats.steps}.ckpt")
99
+ last_path = Path(self.model_dir) / "latest.ckpt"
100
+ prev_path = _safe_symlink_update(symlink_target, last_path)
101
+ best_path = Path(self.model_dir) / "best.ckpt"
102
+ if new_best:
103
+ prev_path = _safe_symlink_update(symlink_target, best_path)
104
+
105
+ to_delete = None
106
+ if not math.isnan(score) and self.args.keep_best_ckpts > 0:
107
+ if len(self.ckpt_queue) < self.args.keep_best_ckpts:
108
+ heapq.heappush(self.ckpt_queue, (score, model_path))
109
+ else:
110
+ if self.args.minimize_metric:
111
+ heapq._heapify_max(self.ckpt_queue)
112
+ to_delete = heapq._heappop_max(self.ckpt_queue)
113
+ heapq.heappush(self.ckpt_queue, (score, model_path))
114
+ else:
115
+ to_delete = heapq.heapreplace(
116
+ self.ckpt_queue, (score, model_path))
117
+
118
+ if to_delete is not None:
119
+ _, path_to_delete = to_delete
120
+ if Path(path_to_delete).exists():
121
+ Path(path_to_delete).unlink()
122
+ logger.info("Removed old ckpt: %s", path_to_delete)
123
+
124
+ if prev_path is not None and prev_path.exists():
125
+ if prev_path != model_path:
126
+ still_needed = any(p == prev_path for _, p in self.ckpt_queue)
127
+ if not still_needed:
128
+ pass # could delete, but safer to keep
129
+
130
+
131
+ joeynmt.training.TrainManager._save_checkpoint = _patched_save
132
+
133
+
134
+ # ---------------------------------------------------------------------------
135
+ # Entry point — delegates to joeynmt CLI
136
+ # ---------------------------------------------------------------------------
137
+ if __name__ == "__main__":
138
+ from joeynmt.__main__ import main
139
+ main()
models/en-es/best.ckpt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9164f350c6af50c21f9baedba82ab06f2c1a422be1d60d86d253c3fe64b1235e
3
+ size 185821403
models/en-es/bpe.codes ADDED
The diff for this file is too large to render. See raw diff
 
models/en-es/config.yaml ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: en-es-transformer
2
+ joeynmt_version: 2.3.0
3
+ data:
4
+ train: ./train
5
+ dev: ./dev
6
+ test: ./test
7
+ dataset_type: plain
8
+ sample_train_subset: -1
9
+ src:
10
+ lang: en
11
+ max_length: 100
12
+ lowercase: false
13
+ level: bpe
14
+ voc_limit: 32000
15
+ voc_min_freq: 1
16
+ tokenizer_type: subword-nmt
17
+ tokenizer_cfg:
18
+ codes: ./bpe.codes
19
+ num_merges: 16000
20
+ trg:
21
+ lang: es
22
+ max_length: 100
23
+ lowercase: false
24
+ level: bpe
25
+ voc_limit: 32000
26
+ voc_min_freq: 1
27
+ tokenizer_type: subword-nmt
28
+ tokenizer_cfg:
29
+ codes: ./bpe.codes
30
+ num_merges: 16000
31
+ testing:
32
+ n_best: 1
33
+ beam_size: 5
34
+ beam_alpha: 1.0
35
+ batch_size: 256
36
+ batch_type: sentence
37
+ max_output_length: 100
38
+ eval_metrics:
39
+ - bleu
40
+ training:
41
+ model_dir: .
42
+ use_cuda: false
43
+ fp16: false
44
+ model:
45
+ encoder:
46
+ type: transformer
47
+ num_layers: 3
48
+ num_heads: 4
49
+ embeddings:
50
+ embedding_dim: 256
51
+ scale: true
52
+ dropout: 0.1
53
+ hidden_size: 256
54
+ ff_size: 1024
55
+ dropout: 0.1
56
+ layer_norm: pre
57
+ decoder:
58
+ type: transformer
59
+ num_layers: 3
60
+ num_heads: 4
61
+ embeddings:
62
+ embedding_dim: 256
63
+ scale: true
64
+ dropout: 0.1
65
+ hidden_size: 256
66
+ ff_size: 1024
67
+ dropout: 0.1
68
+ layer_norm: pre
models/en-es/src_vocab.txt ADDED
@@ -0,0 +1,10338 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <unk>
2
+ <pad>
3
+ <s>
4
+ </s>
5
+ the
6
+ ,
7
+ .
8
+ of
9
+ to
10
+ and
11
+ in
12
+ that
13
+ a
14
+ is
15
+ we
16
+ for
17
+ i
18
+ this
19
+ on
20
+ it
21
+ be
22
+ are
23
+ as
24
+ have
25
+ not
26
+ with
27
+ which
28
+ european
29
+ will
30
+ by
31
+ has
32
+ '
33
+ mr
34
+ at
35
+ an
36
+ commission
37
+ would
38
+ all
39
+ also
40
+ our
41
+ should
42
+ but
43
+ from
44
+ s
45
+ must
46
+ president
47
+ there
48
+ been
49
+ you
50
+ union
51
+ -
52
+ states
53
+ can
54
+ more
55
+ parliament
56
+ member
57
+ or
58
+ was
59
+ its
60
+ do
61
+ they
62
+ these
63
+ council
64
+ what
65
+ like
66
+ report
67
+ their
68
+ if
69
+ one
70
+ very
71
+ europe
72
+ us
73
+ countries
74
+ so
75
+ my
76
+ no
77
+ (
78
+ )
79
+ about
80
+ eu
81
+ other
82
+ who
83
+ people
84
+ only
85
+ need
86
+ new
87
+ policy
88
+ time
89
+ :
90
+ important
91
+ now
92
+ rights
93
+ such
94
+ because
95
+ up
96
+
97
+ ?
98
+ therefore
99
+ out
100
+ am
101
+ those
102
+ however
103
+ take
104
+ when
105
+ make
106
+ support
107
+ work
108
+ some
109
+ between
110
+ being
111
+ into
112
+ any
113
+ way
114
+ committee
115
+ them
116
+ political
117
+ commissioner
118
+ than
119
+ were
120
+ made
121
+ first
122
+ many
123
+ development
124
+ believe
125
+ proposal
126
+ human
127
+ issue
128
+ debate
129
+ ;
130
+ against
131
+ say
132
+ social
133
+ un@@
134
+ economic
135
+ fact
136
+ group
137
+ just
138
+ ted
139
+ -@@
140
+ even
141
+ market
142
+ point
143
+ able
144
+ years
145
+ does
146
+ how
147
+ question
148
+ right
149
+ public
150
+ today
151
+ order
152
+ two
153
+ community
154
+ had
155
+ want
156
+ world
157
+ future
158
+ directive
159
+ state
160
+ most
161
+ agreement
162
+ same
163
+ well
164
+ country
165
+ re@@
166
+ where
167
+ cannot
168
+ situation
169
+ ting
170
+ said
171
+ citizens
172
+ me
173
+ could
174
+ here
175
+ possible
176
+ international
177
+ much
178
+ think
179
+ members
180
+ too
181
+ measures
182
+ national
183
+ good
184
+ within
185
+ part
186
+ year
187
+ vote
188
+ both
189
+ clear
190
+ already
191
+ common
192
+ t
193
+ your
194
+ may
195
+ still
196
+ use
197
+ view
198
+ over
199
+ see
200
+ cooperation
201
+ why
202
+ he
203
+ under
204
+ know
205
+ his
206
+ hope
207
+ course
208
+ then
209
+ thank
210
+ mrs
211
+ ts
212
+ taken
213
+ action
214
+ es
215
+ particular
216
+ in@@
217
+ last
218
+ process
219
+ house
220
+ place
221
+ own
222
+ case
223
+ security
224
+ system
225
+ without
226
+ financial
227
+ level
228
+ united
229
+ before
230
+ rapporteur
231
+ amendments
232
+ ing
233
+ gentlemen
234
+ ladies
235
+ number
236
+ example
237
+ means
238
+ ensure
239
+ government
240
+ put
241
+ area
242
+ issues
243
+ given
244
+ information
245
+ through
246
+ great
247
+ legal
248
+ health
249
+ energy
250
+ end
251
+ since
252
+ protection
253
+ s@@
254
+ rules
255
+ law
256
+ problem
257
+ presidency
258
+ regard
259
+ position
260
+ set
261
+ women
262
+ programme
263
+ problems
264
+ services
265
+ give
266
+ budget
267
+ trade
268
+ particularly
269
+ whether
270
+ matter
271
+ respect
272
+ areas
273
+ framework
274
+ let
275
+ treaty
276
+ far
277
+ necessary
278
+ behalf
279
+ after
280
+ further
281
+ again
282
+ e
283
+ certain
284
+ basis
285
+ done
286
+ regulation
287
+ proposals
288
+ resolution
289
+ legislation
290
+ next
291
+ terms
292
+ amendment
293
+ role
294
+ adopted
295
+ dis@@
296
+ y
297
+ different
298
+ aid
299
+ better
300
+ present
301
+ come
302
+ wish
303
+ progress
304
+ tion
305
+ strategy
306
+ sector
307
+ something
308
+ decision
309
+ ask
310
+ needs
311
+ research
312
+ working
313
+ t@@
314
+ institutions
315
+ continue
316
+ m
317
+ few
318
+ change
319
+ subject
320
+ help
321
+ concerned
322
+ general
323
+ forward
324
+ opinion
325
+ agree
326
+ environment
327
+ favour
328
+ together
329
+ go
330
+ long
331
+ another
332
+ welcome
333
+ e@@
334
+ fundamental
335
+ whole
336
+ o@@
337
+ safety
338
+ three
339
+ approach
340
+ towards
341
+ going
342
+ shall
343
+ during
344
+ d@@
345
+ transport
346
+ every
347
+ madam
348
+ k@@
349
+ g@@
350
+ proposed
351
+ result
352
+ down
353
+ industry
354
+ principle
355
+ second
356
+ rather
357
+ used
358
+ clearly
359
+ did
360
+ affairs
361
+ opportunity
362
+ conditions
363
+ ed
364
+ yet
365
+ including
366
+ less
367
+ democracy
368
+ environmental
369
+ specific
370
+ importance
371
+ ation
372
+ employment
373
+ a@@
374
+ de@@
375
+ current
376
+ quite
377
+ finally
378
+ internal
379
+ once
380
+ i@@
381
+ authorities
382
+ become
383
+ while
384
+ resources
385
+ responsibility
386
+ negotiations
387
+ especially
388
+ provide
389
+ greater
390
+ b@@
391
+ democratic
392
+ million
393
+ 1
394
+ procedure
395
+ account
396
+ reform
397
+ indeed
398
+ ’s
399
+ effective
400
+ find
401
+ having
402
+ really
403
+ call
404
+ increase
405
+ itself
406
+ de
407
+ each
408
+ making
409
+ freedom
410
+ d
411
+ based
412
+ funds
413
+ serious
414
+ least
415
+ policies
416
+ deal
417
+ taking
418
+ society
419
+ se
420
+ peace
421
+ control
422
+ regions
423
+ free
424
+ although
425
+ always
426
+ things
427
+ en@@
428
+ achieve
429
+ attention
430
+ red
431
+ points
432
+ fully
433
+ real
434
+ access
435
+ te
436
+ third
437
+ reason
438
+ get
439
+ hand
440
+ products
441
+ interests
442
+ allow
443
+ p
444
+ enlargement
445
+ growth
446
+ major
447
+ back
448
+ difficult
449
+ high
450
+ implementation
451
+ following
452
+ ‘@@
453
+ words
454
+ eur
455
+ various
456
+ look
457
+ justice
458
+ day
459
+ efforts
460
+ ro@@
461
+ ta@@
462
+ al
463
+ competition
464
+ voted
465
+ concerns
466
+ positive
467
+ convention
468
+ terrorism
469
+ large
470
+ m@@
471
+ essential
472
+ dialogue
473
+ lisbon
474
+ ti@@
475
+ ate
476
+ la@@
477
+ an@@
478
+ small
479
+ money
480
+ foreign
481
+ aware
482
+ objectives
483
+ regional
484
+ party
485
+ food
486
+ full
487
+ life
488
+ recent
489
+ ding
490
+ y@@
491
+ court
492
+ relations
493
+ involved
494
+ majority
495
+ sed
496
+ workers
497
+ children
498
+ interest
499
+ companies
500
+ often
501
+ consider
502
+ economy
503
+ solution
504
+ turkey
505
+ quality
506
+ decisions
507
+ ma@@
508
+ groups
509
+ best
510
+ certainly
511
+ her
512
+ step
513
+ objective
514
+ ago
515
+ fight
516
+ ated
517
+ tions
518
+ li@@
519
+ education
520
+ open
521
+ form
522
+ region
523
+ concern
524
+ might
525
+ field
526
+ agreements
527
+ article
528
+ mentioned
529
+ line
530
+ act
531
+ ous
532
+ developing
533
+ initiative
534
+ though
535
+ accept
536
+ f@@
537
+ simply
538
+ extremely
539
+ questions
540
+ led
541
+ bring
542
+ doing
543
+ k
544
+ others
545
+ summit
546
+ programmes
547
+ standards
548
+ meeting
549
+ power
550
+ global
551
+ perhaps
552
+ al@@
553
+ force
554
+ ds
555
+ production
556
+ concerning
557
+ start
558
+ constitution
559
+ single
560
+ compromise
561
+ co@@
562
+ themselves
563
+ rule
564
+ er
565
+ h@@
566
+ text
567
+ lo@@
568
+ russia
569
+ management
570
+
571
+ main
572
+ thing
573
+ actually
574
+ agenda
575
+ create
576
+ parties
577
+ ly
578
+ plan
579
+ as@@
580
+ agricultural
581
+ available
582
+ key
583
+ c@@
584
+ nations
585
+ risk
586
+ needed
587
+ data
588
+ results
589
+ feel
590
+ understand
591
+ ded
592
+ context
593
+ appropriate
594
+ cases
595
+ u@@
596
+ period
597
+ improve
598
+ currently
599
+ secondly
600
+ conference
601
+ ally
602
+ accession
603
+ "
604
+ 2
605
+ matters
606
+ minister
607
+ consumer
608
+ civil
609
+ sure
610
+ upon
611
+ war
612
+ principles
613
+ kind
614
+ joint
615
+ p@@
616
+ draft
617
+ firstly
618
+ impact
619
+ among
620
+ months
621
+ bo@@
622
+ governments
623
+ achieved
624
+ w@@
625
+ regards
626
+ sustainable
627
+ stability
628
+ priority
629
+ responsible
630
+ due
631
+ climate
632
+ past
633
+ nothing
634
+ regarding
635
+ china
636
+ funding
637
+ communication
638
+ commitment
639
+ systems
640
+ true
641
+ congratulate
642
+ president-in-office
643
+ ers
644
+ mis@@
645
+ consumers
646
+ individual
647
+ !
648
+ c
649
+ special
650
+ enough
651
+ reasons
652
+ values
653
+ pa@@
654
+ longer
655
+ reports
656
+ sing
657
+ activities
658
+ over@@
659
+ final
660
+ be@@
661
+ ri@@
662
+ ca@@
663
+ legislative
664
+ idea
665
+ makes
666
+ solidarity
667
+ l@@
668
+ integration
669
+ organisations
670
+ relation
671
+ tomorrow
672
+ unfortunately
673
+ fund
674
+ comes
675
+ fisheries
676
+ prevent
677
+ agreed
678
+ little
679
+ excellent
680
+ play
681
+ above
682
+ external
683
+ costs
684
+ mean
685
+ po@@
686
+ lead
687
+ lack
688
+ le@@
689
+ promote
690
+ local
691
+ crisis
692
+ si@@
693
+ significant
694
+ seen
695
+ thus
696
+ held
697
+ labour
698
+ project
699
+ z@@
700
+ non-@@
701
+ actions
702
+ central
703
+ apply
704
+ young
705
+ 3
706
+ contribution
707
+ moment
708
+ effect
709
+ se@@
710
+ aspects
711
+ projects
712
+ 5
713
+ benefit
714
+ him
715
+ share
716
+ several
717
+ military
718
+ crucial
719
+ markets
720
+ im@@
721
+ despite
722
+ remain
723
+ provided
724
+ con@@
725
+ equal
726
+ strong
727
+ aim
728
+ ar@@
729
+ parliamentary
730
+ guarantee
731
+ 000
732
+ include
733
+ mo@@
734
+ jobs
735
+ ad@@
736
+ technical
737
+ tive
738
+ population
739
+ until
740
+ elections
741
+ practice
742
+ un
743
+ immigration
744
+ express
745
+ ment
746
+ off
747
+ agriculture
748
+ tabled
749
+ statement
750
+ success
751
+ everyone
752
+ th@@
753
+ ty
754
+ balance
755
+ speak
756
+ try
757
+ ra@@
758
+ ter
759
+ discussion
760
+ response
761
+ colleagues
762
+ ourselves
763
+ cultural
764
+ budgetary
765
+ n@@
766
+ move
767
+ business
768
+ ch@@
769
+ me@@
770
+ everything
771
+ sense
772
+ transparency
773
+ to@@
774
+ di@@
775
+ never
776
+ adopt
777
+ poverty
778
+ stage
779
+ per
780
+ addition
781
+ saying
782
+ le
783
+ structural
784
+ soon
785
+ according
786
+ age
787
+ existing
788
+ nature
789
+ pro@@
790
+ instead
791
+ fishing
792
+ increasing
793
+ provisions
794
+ voting
795
+ service
796
+ water
797
+ presented
798
+ nor
799
+ r@@
800
+ item
801
+ list
802
+ answer
803
+ violence
804
+ close
805
+ face
806
+ namely
807
+ men
808
+ ating
809
+ vi@@
810
+ nuclear
811
+ reach
812
+ basic
813
+ changes
814
+ opportunities
815
+ mind
816
+ pleased
817
+ investment
818
+ illegal
819
+ term
820
+ tax
821
+ criteria
822
+ borders
823
+ pay
824
+ either
825
+ ses
826
+ cohesion
827
+ furthermore
828
+ conflict
829
+ ce
830
+ organisation
831
+ around
832
+ thanks
833
+ recently
834
+ no@@
835
+ ent
836
+ v@@
837
+ coming
838
+ 4
839
+ asked
840
+ fa@@
841
+ mi@@
842
+ priorities
843
+ for@@
844
+ expressed
845
+ africa
846
+ east
847
+ assistance
848
+ she
849
+ draw
850
+ procedures
851
+ called
852
+ focus
853
+ value
854
+ tes
855
+ iraq
856
+ seems
857
+ protect
858
+ keep
859
+ 2004
860
+ closed
861
+ previous
862
+ regulations
863
+ times
864
+ 6
865
+ address
866
+ show
867
+ raised
868
+ road
869
+ required
870
+ prepared
871
+ meet
872
+ increased
873
+ left
874
+ monitoring
875
+ defence
876
+ carried
877
+ live
878
+ task
879
+ instruments
880
+ ten
881
+ across
882
+ week
883
+ home
884
+ reached
885
+ ever
886
+ consequences
887
+ movement
888
+ experience
889
+ initiatives
890
+ doubt
891
+ mention
892
+ n
893
+ develop
894
+ he@@
895
+ training
896
+ using
897
+ democrats
898
+ five
899
+ date
900
+ air
901
+ throughout
902
+ criminal
903
+ is@@
904
+ reading
905
+ light
906
+ under@@
907
+ writing
908
+ decided
909
+ relating
910
+ instrument
911
+ farmers
912
+ established
913
+ nevertheless
914
+ creation
915
+ or@@
916
+ ha@@
917
+ euro
918
+ tri@@
919
+ days
920
+ old
921
+ implemented
922
+ tors
923
+ application
924
+ ying
925
+ took
926
+ reforms
927
+ four
928
+ private
929
+ culture
930
+ pre@@
931
+ review
932
+ agency
933
+ effort
934
+ representatives
935
+ cause
936
+ sion
937
+ rural
938
+ trans@@
939
+ ll
940
+ levels
941
+ ve
942
+ establish
943
+ 11
944
+ table
945
+ authority
946
+ constitutional
947
+ fair
948
+ reality
949
+ reduce
950
+ conclusion
951
+ practical
952
+ pi@@
953
+ discrimination
954
+ ci@@
955
+ demand
956
+ requirements
957
+ king
958
+ active
959
+ g
960
+ request
961
+ direction
962
+ job
963
+ note
964
+ pressure
965
+ partners
966
+ partnership
967
+ tell
968
+ tly
969
+ do@@
970
+ away
971
+ talk
972
+ moreover
973
+ te@@
974
+ care
975
+ 9@@
976
+ bi@@
977
+ ministers
978
+ 3@@
979
+ 8@@
980
+ behind
981
+ turn
982
+ amount
983
+ on@@
984
+ short
985
+ found
986
+ honourable
987
+ potential
988
+ talking
989
+ 2000
990
+ enable
991
+ fellow
992
+ capacity
993
+ mar@@
994
+ 7@@
995
+ crime
996
+ implement
997
+ almost
998
+ included
999
+ ab@@
1000
+ candidate
1001
+ whose
1002
+ side
1003
+ 12
1004
+ events
1005
+ giving
1006
+ received
1007
+ relevant
1008
+ med
1009
+ es@@
1010
+ 8
1011
+ ling
1012
+ challenges
1013
+ completely
1014
+ model
1015
+ december
1016
+ reference
1017
+ developed
1018
+ waste
1019
+ 7
1020
+ powers
1021
+ th
1022
+ brought
1023
+ absolutely
1024
+ sa@@
1025
+ als
1026
+ mission
1027
+ paper
1028
+ sh@@
1029
+ l
1030
+ outside
1031
+ takes
1032
+ per@@
1033
+ ge
1034
+ sea
1035
+ er@@
1036
+ tation
1037
+ natural
1038
+ victims
1039
+ remains
1040
+ connection
1041
+ france
1042
+ ings
1043
+ ba@@
1044
+ discussed
1045
+ guidelines
1046
+ 2003
1047
+ ur@@
1048
+ assessment
1049
+ vital
1050
+ supported
1051
+ ways
1052
+ heard
1053
+ 10
1054
+ extent
1055
+ 2005
1056
+ treatment
1057
+ creating
1058
+ cost
1059
+ discussions
1060
+ palestinian
1061
+ ters
1062
+ possibility
1063
+ quickly
1064
+ bank
1065
+ fi@@
1066
+ les
1067
+ 4@@
1068
+ billion
1069
+ applied
1070
+ considered
1071
+ der
1072
+ sectors
1073
+ ments
1074
+ precisely
1075
+ late
1076
+ document
1077
+ inter@@
1078
+ ce@@
1079
+ land
1080
+ ban
1081
+ forces
1082
+ competitiveness
1083
+ encourage
1084
+ technology
1085
+ offer
1086
+ scope
1087
+ british
1088
+ ensuring
1089
+ june
1090
+ direct
1091
+ effects
1092
+ package
1093
+ along
1094
+ op@@
1095
+ ho@@
1096
+ expect
1097
+ brussels
1098
+ prime
1099
+ approved
1100
+ israel
1101
+ da@@
1102
+ emissions
1103
+ living
1104
+ up@@
1105
+ 2@@
1106
+ lot
1107
+ 1@@
1108
+ 15
1109
+ add
1110
+ unacceptable
1111
+ message
1112
+ motion
1113
+ price
1114
+ specifically
1115
+ coordination
1116
+ discuss
1117
+ 2006
1118
+ additional
1119
+ begin
1120
+ ten@@
1121
+ r
1122
+ committed
1123
+ ties
1124
+ sta@@
1125
+ tra@@
1126
+ stop
1127
+ est
1128
+ family
1129
+ propose
1130
+ republic
1131
+ liberalisation
1132
+ forms
1133
+ oil
1134
+ ity
1135
+ stand
1136
+ speech
1137
+ 25
1138
+ charter
1139
+ stated
1140
+ t-@@
1141
+ accordance
1142
+ ls
1143
+ middle
1144
+ media
1145
+ proper
1146
+ personal
1147
+ views
1148
+ confidence
1149
+ 30
1150
+ 5@@
1151
+ conclusions
1152
+ ireland
1153
+ businesses
1154
+ pe@@
1155
+ strengthen
1156
+ el
1157
+ ex@@
1158
+ wto
1159
+ lives
1160
+ ture
1161
+ ges
1162
+ known
1163
+ affected
1164
+ commission’s
1165
+ carry
1166
+ overall
1167
+ french
1168
+ equality
1169
+ goes
1170
+ challenge
1171
+ building
1172
+ speaking
1173
+ looking
1174
+ history
1175
+ poor
1176
+ regime
1177
+ anti-@@
1178
+ paragraph
1179
+ plans
1180
+ humanitarian
1181
+ provision
1182
+ reduction
1183
+ successful
1184
+ 6@@
1185
+ so@@
1186
+ police
1187
+ comments
1188
+ rate
1189
+ stress
1190
+ commitments
1191
+ knowledge
1192
+ content
1193
+ effectively
1194
+ referred
1195
+ status
1196
+ circumstances
1197
+ huge
1198
+ b
1199
+ lines
1200
+ half
1201
+ solutions
1202
+ trying
1203
+ september
1204
+ considerable
1205
+ implementing
1206
+ ste@@
1207
+ na@@
1208
+ obviously
1209
+ contribute
1210
+ administrative
1211
+ har@@
1212
+ accepted
1213
+ ving
1214
+ goods
1215
+ wanted
1216
+ return
1217
+ ant
1218
+ participation
1219
+ 2007
1220
+ death
1221
+ improving
1222
+ ability
1223
+ germany
1224
+ com@@
1225
+ benefits
1226
+ independent
1227
+ purpose
1228
+ six
1229
+ ve@@
1230
+ recognise
1231
+ promoting
1232
+ dealing
1233
+ perspective
1234
+ scientific
1235
+ combat
1236
+ difficulties
1237
+ aimed
1238
+ strategic
1239
+ adoption
1240
+ rightly
1241
+ consideration
1242
+ ms
1243
+ steps
1244
+ 2001
1245
+ event
1246
+ o
1247
+ created
1248
+ prices
1249
+ demands
1250
+ setting
1251
+ allowed
1252
+ emphasise
1253
+ globalisation
1254
+ st
1255
+ h
1256
+ res
1257
+ threat
1258
+ prevention
1259
+ 9
1260
+ 2002
1261
+ anything
1262
+ closely
1263
+ total
1264
+ genuine
1265
+ avoid
1266
+ balanced
1267
+ europeans
1268
+ self-@@
1269
+ border
1270
+ outcome
1271
+ 20
1272
+ efficient
1273
+ ans
1274
+ complete
1275
+ gra@@
1276
+ man@@
1277
+ minimum
1278
+ follow
1279
+ asylum
1280
+ lu@@
1281
+ produce
1282
+ decide
1283
+ paid
1284
+ beginning
1285
+ pact
1286
+ providing
1287
+ yesterday
1288
+ hard
1289
+ south
1290
+ shown
1291
+ hold
1292
+ min@@
1293
+ seriously
1294
+ sometimes
1295
+ animal
1296
+ en
1297
+ remind
1298
+ declaration
1299
+ delegation
1300
+ minutes
1301
+ intended
1302
+ efficiency
1303
+ organised
1304
+ mediterranean
1305
+ sitting
1306
+ competitive
1307
+ fe@@
1308
+ mon@@
1309
+ myself
1310
+ ves
1311
+ annual
1312
+ supply
1313
+ innovation
1314
+ directly
1315
+ sufficient
1316
+ calls
1317
+ alone
1318
+ board
1319
+ ge@@
1320
+ financing
1321
+ institutional
1322
+ rest
1323
+ war@@
1324
+ ations
1325
+ limited
1326
+ dimension
1327
+ type
1328
+ colleague
1329
+ language
1330
+ wi@@
1331
+ study
1332
+ ality
1333
+ ins
1334
+ receive
1335
+ activity
1336
+ bodies
1337
+ beyond
1338
+ ga@@
1339
+ opening
1340
+ ps
1341
+ il@@
1342
+ parts
1343
+ tic
1344
+ american
1345
+ risks
1346
+ gi@@
1347
+ d-@@
1348
+ join
1349
+ consensus
1350
+ requires
1351
+ happen
1352
+ ces
1353
+ leave
1354
+ similar
1355
+ provides
1356
+ ne@@
1357
+ whom
1358
+ urgent
1359
+ documents
1360
+ wrong
1361
+ convinced
1362
+ sive
1363
+ spanish
1364
+ tan@@
1365
+ cu@@
1366
+ ful
1367
+ long-term
1368
+ man
1369
+ directives
1370
+ monetary
1371
+ opposition
1372
+ produced
1373
+ achieving
1374
+ respond
1375
+ ru@@
1376
+ highly
1377
+ exist
1378
+ em@@
1379
+ exchange
1380
+ ary
1381
+ duty
1382
+ word
1383
+ critical
1384
+ establishing
1385
+ treaties
1386
+ ambitious
1387
+ product
1388
+ name
1389
+ ks
1390
+ maintain
1391
+ developments
1392
+ romania
1393
+ urge
1394
+ aspect
1395
+ capital
1396
+ lation
1397
+ properly
1398
+ conclude
1399
+ january
1400
+ ones
1401
+ rapporteurs
1402
+ uk
1403
+ discussing
1404
+ regret
1405
+ low
1406
+ later
1407
+ wa@@
1408
+ entire
1409
+ refer
1410
+ turkish
1411
+ u
1412
+ sort
1413
+ weapons
1414
+ german
1415
+ increasingly
1416
+ ging
1417
+ ou@@
1418
+ america
1419
+ dangerous
1420
+ spain
1421
+ combating
1422
+ office
1423
+ addressed
1424
+ march
1425
+ industrial
1426
+ statements
1427
+ 1999
1428
+ contrary
1429
+ irish
1430
+ calling
1431
+ early
1432
+ x
1433
+ damage
1434
+ den@@
1435
+ representative
1436
+ higher
1437
+ improved
1438
+ ved
1439
+ broad
1440
+ happened
1441
+ origin
1442
+ pointed
1443
+ press
1444
+ earlier
1445
+ elements
1446
+ former
1447
+ becoming
1448
+ company
1449
+ acceptable
1450
+ ver
1451
+ hear
1452
+ animals
1453
+ kosovo
1454
+ measure
1455
+ supporting
1456
+ trust
1457
+ wants
1458
+ weeks
1459
+ fo@@
1460
+ signed
1461
+ body
1462
+ ked
1463
+ big
1464
+ terrorist
1465
+ administration
1466
+ ble
1467
+ parliaments
1468
+ remember
1469
+ understanding
1470
+ association
1471
+ freedoms
1472
+ ke
1473
+ limit
1474
+ manner
1475
+ gives
1476
+ analysis
1477
+ positions
1478
+ meps
1479
+ so-called
1480
+ staff
1481
+ comment
1482
+ network
1483
+ expenditure
1484
+ influence
1485
+ tourism
1486
+ met
1487
+ spirit
1488
+ vo@@
1489
+ ness
1490
+ s’
1491
+ /@@
1492
+ enterprises
1493
+ el@@
1494
+ failure
1495
+ laws
1496
+ pas@@
1497
+ entirely
1498
+ flexibility
1499
+ recognition
1500
+ relationship
1501
+ ground
1502
+ whilst
1503
+ cross-border
1504
+ useful
1505
+ fication
1506
+ tion@@
1507
+ par@@
1508
+ require
1509
+ sent
1510
+ caused
1511
+ added
1512
+ trafficking
1513
+ j@@
1514
+ consultation
1515
+ rise
1516
+ italian
1517
+ communities
1518
+ fall
1519
+ debates
1520
+ thought
1521
+ bur@@
1522
+ shows
1523
+ thirdly
1524
+ y-@@
1525
+ out@@
1526
+ alised
1527
+ leading
1528
+ ni@@
1529
+ thinking
1530
+ um
1531
+ probably
1532
+ represent
1533
+ cing
1534
+ constructive
1535
+ tor
1536
+ sions
1537
+ aims
1538
+ laid
1539
+ sensitive
1540
+ hu@@
1541
+ targets
1542
+ the@@
1543
+ method
1544
+ networks
1545
+ otherwise
1546
+ ming
1547
+ raise
1548
+ introduced
1549
+ related
1550
+ responsibilities
1551
+ nice
1552
+ person
1553
+ applies
1554
+ else
1555
+ iran
1556
+ parliament’s
1557
+ us@@
1558
+ city
1559
+ evidence
1560
+ send
1561
+ budgets
1562
+ differences
1563
+ integrated
1564
+ build
1565
+ fish
1566
+ fr
1567
+ protocol
1568
+ res@@
1569
+ introduction
1570
+ closer
1571
+ concept
1572
+ november
1573
+ ir@@
1574
+ getting
1575
+ green
1576
+ cyprus
1577
+ establishment
1578
+ arms
1579
+ internet
1580
+ merely
1581
+ naturally
1582
+ neither
1583
+ sch@@
1584
+ su@@
1585
+ growing
1586
+ hi@@
1587
+ attempt
1588
+ leaders
1589
+ reducing
1590
+ christian
1591
+ practices
1592
+ ahead
1593
+ lan@@
1594
+ says
1595
+ gender
1596
+ read
1597
+ fear
1598
+ thousands
1599
+ dly
1600
+ happy
1601
+ mainly
1602
+ seek
1603
+ correct
1604
+ enormous
1605
+ gen@@
1606
+ bear
1607
+ cy
1608
+ informed
1609
+ election
1610
+ pu@@
1611
+ re-@@
1612
+ definition
1613
+ intention
1614
+ italy
1615
+ reduced
1616
+ goals
1617
+ poland
1618
+ traffic
1619
+ comprehensive
1620
+ ideas
1621
+ producers
1622
+ resolutions
1623
+ degree
1624
+ des
1625
+ western
1626
+ negative
1627
+ round
1628
+ cover
1629
+ ought
1630
+ mutual
1631
+ obligations
1632
+ october
1633
+ gas
1634
+ managed
1635
+ ver@@
1636
+ greece
1637
+ operation
1638
+ represents
1639
+ alternative
1640
+ asking
1641
+ mer@@
1642
+ ned
1643
+ car@@
1644
+ rail
1645
+ actual
1646
+ re
1647
+ sport
1648
+ institution
1649
+ x@@
1650
+ introduce
1651
+ alisation
1652
+ forget
1653
+ worked
1654
+ ch
1655
+ sanctions
1656
+ putting
1657
+ strengthening
1658
+ facing
1659
+ pollution
1660
+ unable
1661
+ agencies
1662
+ russian
1663
+ diversity
1664
+ exactly
1665
+ north
1666
+ drawn
1667
+ reply
1668
+ ance
1669
+ decision-making
1670
+ membership
1671
+ methods
1672
+ yes
1673
+ african
1674
+ cut
1675
+ chance
1676
+ elected
1677
+ kingdom
1678
+ competence
1679
+ infrastructure
1680
+ ously
1681
+ ap@@
1682
+ transparent
1683
+ ates
1684
+ strongly
1685
+ chamber
1686
+ peoples
1687
+ plenary
1688
+ gh@@
1689
+ harmonisation
1690
+ speci@@
1691
+ centre
1692
+ concrete
1693
+ mandate
1694
+ applause
1695
+ official
1696
+ recognised
1697
+ sound
1698
+ ter@@
1699
+ dealt
1700
+ assembly
1701
+ complex
1702
+ f
1703
+ ac@@
1704
+ lin@@
1705
+ choice
1706
+ morning
1707
+ at@@
1708
+ substantial
1709
+ told
1710
+ via
1711
+ bu@@
1712
+ rejected
1713
+ safe
1714
+ desire
1715
+ faced
1716
+ ukraine
1717
+ danger
1718
+ impossible
1719
+ go@@
1720
+ run
1721
+ chairman
1722
+ secure
1723
+ recommendations
1724
+ 50
1725
+ immigrants
1726
+ opposed
1727
+ disaster
1728
+ highlight
1729
+ figures
1730
+ instance
1731
+ it@@
1732
+ sur@@
1733
+ votes
1734
+ appear
1735
+ commercial
1736
+ ec
1737
+ session
1738
+ speakers
1739
+ grateful
1740
+ improvement
1741
+ lated
1742
+ portuguese
1743
+ disease
1744
+ continuing
1745
+ greek
1746
+ intergovernmental
1747
+ refugees
1748
+ subsidiarity
1749
+ heads
1750
+ am@@
1751
+ contains
1752
+ pt
1753
+ unemployment
1754
+ anyone
1755
+ came
1756
+ extend
1757
+ sources
1758
+ works
1759
+ simple
1760
+ liberal
1761
+ advantage
1762
+ immediately
1763
+ sign
1764
+ ven@@
1765
+ involving
1766
+ changed
1767
+ bringing
1768
+ ck
1769
+ supports
1770
+ territory
1771
+ appeal
1772
+ medium-sized
1773
+ situations
1774
+ involvement
1775
+ promotion
1776
+ criticism
1777
+ du@@
1778
+ child
1779
+ fore@@
1780
+ 13
1781
+ judicial
1782
+ original
1783
+ intend
1784
+ sides
1785
+ firm
1786
+ forced
1787
+ fin@@
1788
+ intervention
1789
+ alism
1790
+ resolve
1791
+ submitted
1792
+ bio@@
1793
+ eastern
1794
+ ali@@
1795
+ northern
1796
+ capable
1797
+ expression
1798
+ talks
1799
+ tur@@
1800
+ attacks
1801
+ easy
1802
+ nonetheless
1803
+ reject
1804
+ union’s
1805
+ protecting
1806
+ seem
1807
+ portugal
1808
+ socialist
1809
+ please
1810
+ structure
1811
+ exercise
1812
+ meetings
1813
+ technologies
1814
+ w
1815
+ repeat
1816
+ shared
1817
+ substances
1818
+ controls
1819
+ win@@
1820
+ failed
1821
+ lastly
1822
+ ran@@
1823
+ seeking
1824
+ guarantees
1825
+ goal
1826
+ oral
1827
+ ready
1828
+ nos
1829
+ bulgaria
1830
+ consequently
1831
+ lost
1832
+ reasonable
1833
+ adequate
1834
+ range
1835
+ temporary
1836
+ persons
1837
+ tory
1838
+ bad
1839
+ compliance
1840
+ heart
1841
+ ic@@
1842
+ s-@@
1843
+ migration
1844
+ consistent
1845
+ wishes
1846
+ 20@@
1847
+ subsidies
1848
+ eu-@@
1849
+ bar@@
1850
+ adopting
1851
+ amongst
1852
+ wide
1853
+ swedish
1854
+ appears
1855
+ han@@
1856
+ truly
1857
+ conciliation
1858
+ expected
1859
+ recommendation
1860
+ serve
1861
+ attitude
1862
+ comply
1863
+ mechanisms
1864
+ sen@@
1865
+ wor@@
1866
+ maritime
1867
+ happening
1868
+ starting
1869
+ greatest
1870
+ politicians
1871
+ cor@@
1872
+ defend
1873
+ involve
1874
+ keeping
1875
+ month
1876
+ front
1877
+ july
1878
+ ship
1879
+ pen@@
1880
+ written
1881
+ causes
1882
+ finance
1883
+ obvious
1884
+ designed
1885
+ rates
1886
+ acts
1887
+ independence
1888
+ la
1889
+ payments
1890
+ includes
1891
+ totally
1892
+ ber@@
1893
+ families
1894
+ mass
1895
+ usa
1896
+ tr@@
1897
+ detailed
1898
+ covered
1899
+ delay
1900
+ delighted
1901
+ dra@@
1902
+ continues
1903
+ whatever
1904
+ lies
1905
+ grounds
1906
+ income
1907
+ well-@@
1908
+ ar
1909
+ proposing
1910
+ personally
1911
+ equally
1912
+ van
1913
+ 0@@
1914
+ carefully
1915
+ nation
1916
+ eu’s
1917
+ trading
1918
+ endorse
1919
+ commissioners
1920
+ conduct
1921
+ ged
1922
+ languages
1923
+ presence
1924
+ resolved
1925
+ barroso
1926
+ binding
1927
+ ably
1928
+ fraud
1929
+ interesting
1930
+ likely
1931
+ suffering
1932
+ willing
1933
+ fy
1934
+ immediate
1935
+ continent
1936
+ governance
1937
+ coun@@
1938
+ explain
1939
+ committees
1940
+ justified
1941
+ speed
1942
+ target
1943
+ ders
1944
+ discharge
1945
+ mechanism
1946
+ afghanistan
1947
+ defined
1948
+ 5%
1949
+ element
1950
+ lower
1951
+ /2001
1952
+ fied
1953
+ linked
1954
+ strasbourg
1955
+ granted
1956
+ spent
1957
+ standard
1958
+ campaign
1959
+ e-@@
1960
+ gu@@
1961
+ her@@
1962
+ minorities
1963
+ chinese
1964
+ flexible
1965
+ politics
1966
+ rapid
1967
+ sugar
1968
+ followed
1969
+ ine
1970
+ series
1971
+ limits
1972
+ minority
1973
+ moving
1974
+ approval
1975
+ tively
1976
+ arrangements
1977
+ test
1978
+ ess
1979
+ unless
1980
+ improvements
1981
+ prodi
1982
+ base
1983
+ structures
1984
+ factors
1985
+ april
1986
+ gave
1987
+ netherlands
1988
+ religious
1989
+ balkans
1990
+ 14
1991
+ regulatory
1992
+ tu@@
1993
+ ner
1994
+ ban@@
1995
+ voice
1996
+ worse
1997
+ ry
1998
+ cha@@
1999
+ renewable
2000
+ liber@@
2001
+ inform
2002
+ visit
2003
+ difference
2004
+ employees
2005
+ evaluation
2006
+ europe’s
2007
+ thereby
2008
+ existence
2009
+ fighting
2010
+ co-@@
2011
+ export
2012
+ monitor
2013
+ tical
2014
+ bilateral
2015
+ fying
2016
+ played
2017
+ ple@@
2018
+ realise
2019
+ source
2020
+ emphasis
2021
+ generally
2022
+ ppe-de
2023
+ professional
2024
+ started
2025
+ blo@@
2026
+ mal@@
2027
+ compensation
2028
+ economies
2029
+ ced
2030
+ drugs
2031
+ initial
2032
+ san@@
2033
+ 18
2034
+ referendum
2035
+ planning
2036
+ modern
2037
+ enter
2038
+ ger@@
2039
+ continued
2040
+ fail
2041
+ participate
2042
+ pl
2043
+ sub@@
2044
+ crimes
2045
+ detail
2046
+ affect
2047
+ diseases
2048
+ india
2049
+ negotiating
2050
+ ors
2051
+ restrictions
2052
+ tackle
2053
+ burden
2054
+ mobility
2055
+ travel
2056
+ israeli
2057
+ ching
2058
+ millions
2059
+ lled
2060
+ len@@
2061
+ et
2062
+ factor
2063
+ ches
2064
+ contributions
2065
+ distribution
2066
+ obtain
2067
+ os
2068
+ tasks
2069
+ ec@@
2070
+ imposed
2071
+ west
2072
+ attack
2073
+ purposes
2074
+ apart
2075
+ belarus
2076
+ permanent
2077
+ floor
2078
+ maximum
2079
+ ining
2080
+ ws
2081
+ cla@@
2082
+ respected
2083
+ sweden
2084
+ impose
2085
+ pass
2086
+ ys
2087
+ asia
2088
+ credibility
2089
+ ships
2090
+ truth
2091
+ obligation
2092
+ occasions
2093
+ peaceful
2094
+ ultimately
2095
+ ens
2096
+ ning
2097
+ da
2098
+ determination
2099
+ euro@@
2100
+ forthcoming
2101
+ link
2102
+ opinions
2103
+ quotas
2104
+ scale
2105
+ operations
2106
+ pri@@
2107
+ rely
2108
+ worth
2109
+ letter
2110
+ conflicts
2111
+ consumption
2112
+ reflect
2113
+ disasters
2114
+ assure
2115
+ dee@@
2116
+ remarks
2117
+ placed
2118
+ vehicles
2119
+ encouraging
2120
+ numerous
2121
+ amounts
2122
+ aviation
2123
+ century
2124
+ logical
2125
+ les@@
2126
+ signal
2127
+ code
2128
+ evening
2129
+ cies
2130
+ glad
2131
+ est@@
2132
+ experts
2133
+ ic
2134
+ acp
2135
+ allowing
2136
+ contained
2137
+ legitimate
2138
+ treated
2139
+ 2008
2140
+ sexual
2141
+ statute
2142
+ 16
2143
+ holding
2144
+ interested
2145
+ safeguard
2146
+ demonstrated
2147
+ tobacco
2148
+ dignity
2149
+ transfer
2150
+ proposes
2151
+ white
2152
+ appropriations
2153
+ spending
2154
+ taxation
2155
+ vision
2156
+ facilitate
2157
+ hands
2158
+ 40
2159
+ ag@@
2160
+ sation
2161
+ austria
2162
+ hence
2163
+ ese
2164
+ 27
2165
+ guaranteed
2166
+ separate
2167
+ examples
2168
+ traditional
2169
+ demonstrate
2170
+ mor@@
2171
+ drawing
2172
+ beings
2173
+ places
2174
+ sk@@
2175
+ voluntary
2176
+ wards
2177
+ gone
2178
+ realistic
2179
+ easier
2180
+ mu@@
2181
+ af@@
2182
+ alliance
2183
+ concluded
2184
+ den
2185
+ fla@@
2186
+ hours
2187
+ insurance
2188
+ space
2189
+ brief
2190
+ tor@@
2191
+ types
2192
+ we@@
2193
+ learning
2194
+ read@@
2195
+ fine
2196
+ protected
2197
+ stu@@
2198
+ suggest
2199
+ gs
2200
+ entitled
2201
+ ents
2202
+ partner
2203
+ citizen
2204
+ requirement
2205
+ tried
2206
+ 17
2207
+ average
2208
+ entry
2209
+ passed
2210
+ examine
2211
+ people’s
2212
+ auditors
2213
+ decisive
2214
+ substance
2215
+ tically
2216
+ ing@@
2217
+ knows
2218
+ bility
2219
+ emergency
2220
+ pension
2221
+ wing
2222
+ gener@@
2223
+ scheme
2224
+ dy
2225
+ pla@@
2226
+ domestic
2227
+ enti@@
2228
+ inclusion
2229
+ law@@
2230
+ aids
2231
+ destruction
2232
+ ethnic
2233
+ generation
2234
+ officials
2235
+ standing
2236
+ core
2237
+ helping
2238
+ vice-president
2239
+ welfare
2240
+ manage
2241
+ ck@@
2242
+ described
2243
+ option
2244
+ ght
2245
+ mark
2246
+ primarily
2247
+ processes
2248
+ genuinely
2249
+ learn
2250
+ cooperate
2251
+ credit
2252
+ february
2253
+ operate
2254
+ collective
2255
+ passengers
2256
+ preventing
2257
+ spoke
2258
+ currency
2259
+ property
2260
+ changing
2261
+ solve
2262
+ ence
2263
+ spoken
2264
+ ty@@
2265
+ latest
2266
+ ian
2267
+ intends
2268
+ prosperity
2269
+ imports
2270
+ individuals
2271
+ planned
2272
+ schengen
2273
+ customs
2274
+ surely
2275
+ gain
2276
+ fac@@
2277
+ got
2278
+ ngos
2279
+ penalty
2280
+ preparing
2281
+ represented
2282
+ awareness
2283
+ nato
2284
+ proceed
2285
+ stands
2286
+ z
2287
+ 2010
2288
+ kyoto
2289
+ noted
2290
+ obstacles
2291
+ uni@@
2292
+ dan@@
2293
+ mic
2294
+ qu@@
2295
+ smes
2296
+ stocks
2297
+ confirm
2298
+ ii
2299
+ statistics
2300
+ alist
2301
+ operational
2302
+ operators
2303
+ com
2304
+ considering
2305
+ historic
2306
+ impression
2307
+ au@@
2308
+ barcelona
2309
+ effectiveness
2310
+ acting
2311
+ define
2312
+ exists
2313
+ ombudsman
2314
+ des@@
2315
+ can@@
2316
+ welcomed
2317
+ briefly
2318
+ corruption
2319
+ extended
2320
+ path
2321
+ functioning
2322
+ leadership
2323
+ lose
2324
+ undoubtedly
2325
+ 21
2326
+ cs
2327
+ finding
2328
+ latter
2329
+ pillar
2330
+ precise
2331
+ cen@@
2332
+ compared
2333
+ condition
2334
+ courage
2335
+ clause
2336
+ top
2337
+ bra@@
2338
+ facts
2339
+ valuable
2340
+ expectations
2341
+ forum
2342
+ occasion
2343
+ seven
2344
+ codecision
2345
+ felt
2346
+ prove
2347
+ ren@@
2348
+ strict
2349
+ succeed
2350
+ record
2351
+ studies
2352
+ announced
2353
+ applying
2354
+ broad@@
2355
+ farming
2356
+ neighbours
2357
+ requested
2358
+ southern
2359
+ constantly
2360
+ firmly
2361
+ happens
2362
+ vessels
2363
+ 0
2364
+ acknowledge
2365
+ che@@
2366
+ copenhagen
2367
+ resi@@
2368
+ believes
2369
+ debt
2370
+ mp@@
2371
+ cation
2372
+ fields
2373
+ dutch
2374
+ fishermen
2375
+ material
2376
+ labelling
2377
+ pped
2378
+ loss
2379
+ wonder
2380
+ 19@@
2381
+ alise
2382
+ friends
2383
+ highest
2384
+ violations
2385
+ fuel
2386
+ politically
2387
+ pursue
2388
+ back@@
2389
+ clarify
2390
+ ki@@
2391
+ sup@@
2392
+ val@@
2393
+ allocated
2394
+ largest
2395
+ lling
2396
+ pan@@
2397
+ ratification
2398
+ zone
2399
+ qualified
2400
+ involves
2401
+ perfectly
2402
+ presidents
2403
+ confirmed
2404
+ men@@
2405
+ brings
2406
+ car
2407
+ cur@@
2408
+ ist
2409
+ kept
2410
+ maintaining
2411
+ night
2412
+ posed
2413
+ television
2414
+ claim
2415
+ offers
2416
+ payment
2417
+ barriers
2418
+ pos@@
2419
+ prepare
2420
+ tional
2421
+ abuse
2422
+ accidents
2423
+ constitu@@
2424
+ introducing
2425
+ luxembourg
2426
+ sovereignty
2427
+ appreciate
2428
+ cities
2429
+ cars
2430
+ published
2431
+ thanking
2432
+ unfair
2433
+ head
2434
+ insist
2435
+ societies
2436
+ unity
2437
+ contact
2438
+ extension
2439
+ phase
2440
+ satisfied
2441
+ shadow
2442
+ stable
2443
+ der@@
2444
+ leg@@
2445
+ saw
2446
+ sh
2447
+ condemn
2448
+ ering
2449
+ ism
2450
+ arguments
2451
+ determined
2452
+ v
2453
+ ages
2454
+ associated
2455
+ tic@@
2456
+ actively
2457
+ behaviour
2458
+ pollu@@
2459
+ tives
2460
+ coherent
2461
+ waters
2462
+ 22
2463
+ fulfil
2464
+ tered
2465
+ investments
2466
+ ko@@
2467
+ ongoing
2468
+ urs
2469
+ dependent
2470
+ details
2471
+ follows
2472
+ tragic
2473
+ construction
2474
+ ger
2475
+ chi@@
2476
+ excessive
2477
+ ker
2478
+ urgency
2479
+ exclusion
2480
+ ph@@
2481
+ technological
2482
+ daily
2483
+ head@@
2484
+ 19
2485
+ legisla@@
2486
+ amending
2487
+ driving
2488
+ obliged
2489
+ school
2490
+ somewhat
2491
+ turning
2492
+ ies
2493
+ news
2494
+ pe
2495
+ neighbouring
2496
+ railway
2497
+ wait
2498
+ users
2499
+ duties
2500
+ ish
2501
+ producing
2502
+ tool
2503
+ understood
2504
+ 24
2505
+ bro@@
2506
+ strategies
2507
+ cated
2508
+ normal
2509
+ attempts
2510
+ figure
2511
+ playing
2512
+ tics
2513
+ /2002
2514
+ a5-0@@
2515
+ answers
2516
+ overcome
2517
+ primary
2518
+ regular
2519
+ speaker
2520
+ eco@@
2521
+ exploitation
2522
+ 200@@
2523
+ industries
2524
+ largely
2525
+ proceedings
2526
+ restructuring
2527
+ sp@@
2528
+ governing
2529
+ prohibi@@
2530
+ rich
2531
+ room
2532
+ running
2533
+ universal
2534
+ wider
2535
+ deliver
2536
+ nobody
2537
+ stronger
2538
+ approve
2539
+ cap
2540
+ territorial
2541
+ addressing
2542
+ b5-0@@
2543
+ heading
2544
+ sensible
2545
+ serbia
2546
+ undertaken
2547
+ choose
2548
+ investigation
2549
+ release
2550
+ sen
2551
+ species
2552
+ accounts
2553
+ cod
2554
+ croatia
2555
+ milk
2556
+ nation@@
2557
+ prefer@@
2558
+ considers
2559
+ constitute
2560
+ disposal
2561
+ electricity
2562
+ grant
2563
+ eng@@
2564
+ enjoy
2565
+ identity
2566
+ latin
2567
+ relates
2568
+ whereby
2569
+ contracts
2570
+ ol@@
2571
+ prisoners
2572
+ stri@@
2573
+ /2000
2574
+ competences
2575
+ roma
2576
+ star@@
2577
+ ther@@
2578
+ cal@@
2579
+ liability
2580
+ thursday
2581
+ cra@@
2582
+ operating
2583
+ ports
2584
+ sin@@
2585
+ bly
2586
+ offered
2587
+ reconstruction
2588
+ sis
2589
+ tal
2590
+ danish
2591
+ hon@@
2592
+ built
2593
+ elsewhere
2594
+ leads
2595
+ meant
2596
+ willingness
2597
+ ke@@
2598
+ multi@@
2599
+ st@@
2600
+ [
2601
+ europol
2602
+ sal@@
2603
+ appe@@
2604
+ equipment
2605
+ exemp@@
2606
+ recovery
2607
+ seeing
2608
+ accordingly
2609
+ chechnya
2610
+ exports
2611
+ ists
2612
+ mb@@
2613
+ proved
2614
+ declared
2615
+ waiting
2616
+ careful
2617
+ fir@@
2618
+ indi@@
2619
+ opened
2620
+ transitional
2621
+ emphasised
2622
+ medical
2623
+ polish
2624
+ significance
2625
+ acy
2626
+ debating
2627
+ embr@@
2628
+ highlighted
2629
+ mas@@
2630
+ materials
2631
+ speeches
2632
+ interinstitutional
2633
+ went
2634
+ advance
2635
+ allows
2636
+ multilateral
2637
+ 10@@
2638
+ argument
2639
+ aside
2640
+ cal
2641
+ friendly
2642
+ function
2643
+ pse
2644
+ version
2645
+ zimbabwe
2646
+ dered
2647
+ sufficiently
2648
+ tations
2649
+ players
2650
+ sha@@
2651
+ uses
2652
+ youth
2653
+ assess
2654
+ deserves
2655
+ poorest
2656
+ revision
2657
+ topic
2658
+ formal
2659
+ options
2660
+ ward
2661
+ 23
2662
+ defen@@
2663
+ significantly
2664
+ spread
2665
+ terrorists
2666
+ ]
2667
+ hundreds
2668
+ requests
2669
+ ring
2670
+ spring
2671
+ everybody
2672
+ honour
2673
+ lar
2674
+ port
2675
+ satisfactory
2676
+ je@@
2677
+ weak@@
2678
+ absence
2679
+ austrian
2680
+ bri@@
2681
+ cent
2682
+ racism
2683
+ custo@@
2684
+ essentially
2685
+ someone
2686
+ submit
2687
+ cate
2688
+ medicines
2689
+ remove
2690
+ stock
2691
+ suffer
2692
+ nl
2693
+ texts
2694
+ baltic
2695
+ double
2696
+ jo@@
2697
+ legally
2698
+ reaction
2699
+ timetable
2700
+ competent
2701
+ log@@
2702
+ sets
2703
+ sto@@
2704
+ maintained
2705
+ massive
2706
+ passenger
2707
+ taxes
2708
+ debated
2709
+ hal@@
2710
+ partly
2711
+ opposite
2712
+ strengthened
2713
+ ari@@
2714
+ difficulty
2715
+ ma
2716
+ raising
2717
+ referring
2718
+ threats
2719
+ ö@@
2720
+ ately
2721
+ becomes
2722
+ patten
2723
+ schools
2724
+ claims
2725
+ counter@@
2726
+ invest
2727
+ ther
2728
+ pensions
2729
+ proportion
2730
+ prospects
2731
+ seeks
2732
+ identified
2733
+ dicta@@
2734
+ electronic
2735
+ tin@@
2736
+ helped
2737
+ ld
2738
+ meat
2739
+ previously
2740
+ vulnerable
2741
+ 100
2742
+ armed
2743
+ gar@@
2744
+ noon
2745
+ assi@@
2746
+ hear@@
2747
+ neighbourhood
2748
+ wine
2749
+ amended
2750
+ belgian
2751
+ listen
2752
+ nor@@
2753
+ sustainability
2754
+ etc
2755
+ suggested
2756
+ collec@@
2757
+ compulsory
2758
+ contain
2759
+ domin@@
2760
+ ns
2761
+ devi@@
2762
+ army
2763
+ expec@@
2764
+ lating
2765
+ petitions
2766
+ leader
2767
+ possibly
2768
+ cle@@
2769
+ denmark
2770
+ heritage
2771
+ himself
2772
+ fer@@
2773
+ issued
2774
+ pping
2775
+ purely
2776
+ chosen
2777
+ ler
2778
+ proud
2779
+ reiterate
2780
+ advantages
2781
+ britain
2782
+ engage
2783
+ eu@@
2784
+ pakistan
2785
+ socialists
2786
+ tradition
2787
+ 17@@
2788
+ extensive
2789
+ palestinians
2790
+ urgently
2791
+ innovative
2792
+ negotiation
2793
+ ped
2794
+ ery
2795
+ finland
2796
+ greatly
2797
+ centres
2798
+ ear@@
2799
+ outstanding
2800
+ preparation
2801
+ remaining
2802
+ suffered
2803
+ tw@@
2804
+ visa
2805
+ fl@@
2806
+ afternoon
2807
+ calcu@@
2808
+ cap@@
2809
+ died
2810
+ satisfaction
2811
+ ev@@
2812
+ dence
2813
+ enforcement
2814
+ enlarged
2815
+ mer
2816
+ moral
2817
+ patent
2818
+ spite
2819
+ super@@
2820
+ advice
2821
+ necessarily
2822
+ relatively
2823
+ ser
2824
+ absolute
2825
+ charges
2826
+ importantly
2827
+ solely
2828
+ citizenship
2829
+ don@@
2830
+ ust
2831
+ aircraft
2832
+ implications
2833
+ transatlantic
2834
+ dynamic
2835
+ indicated
2836
+ links
2837
+ numbers
2838
+ carrying
2839
+ conducted
2840
+ depends
2841
+ inadequate
2842
+ resulting
2843
+ considerations
2844
+ nationals
2845
+ urban
2846
+ cancer
2847
+ identify
2848
+ inten@@
2849
+ launched
2850
+ quote
2851
+ sor@@
2852
+ category
2853
+ concentrate
2854
+ 1%
2855
+ gue
2856
+ proof
2857
+ tionally
2858
+ unnecessary
2859
+ hol@@
2860
+ pose
2861
+ reaching
2862
+ none
2863
+ assume
2864
+ cuba
2865
+ gdp
2866
+ prior
2867
+ successfully
2868
+ hearing
2869
+ one-@@
2870
+ refers
2871
+ shed
2872
+ 26
2873
+ alcohol
2874
+ mes
2875
+ plant
2876
+ constant
2877
+ extending
2878
+ feed
2879
+ ratified
2880
+ supplementary
2881
+ tens
2882
+ drafting
2883
+ profes@@
2884
+ phenomenon
2885
+ sy@@
2886
+ col@@
2887
+ founded
2888
+ historical
2889
+ intellectual
2890
+ promised
2891
+ reas@@
2892
+ communist
2893
+ gap
2894
+ imagine
2895
+ complicated
2896
+ eight
2897
+ favourable
2898
+ geographical
2899
+ ons
2900
+ ser@@
2901
+ sum@@
2902
+ enhance
2903
+ eye
2904
+ piece
2905
+ evident
2906
+ facilities
2907
+ healthy
2908
+ il
2909
+ palestine
2910
+ -up
2911
+ completed
2912
+ correctly
2913
+ fewer
2914
+ rela@@
2915
+ spend
2916
+ tests
2917
+ lay
2918
+ ll@@
2919
+ coordinated
2920
+ courts
2921
+ noise
2922
+ warmly
2923
+ affects
2924
+ di
2925
+ explanation
2926
+ kers
2927
+ arab
2928
+ ched
2929
+ czech
2930
+ mil@@
2931
+ quali@@
2932
+ son
2933
+ bit
2934
+ dumping
2935
+ interpretation
2936
+ profits
2937
+ stake
2938
+ 2009
2939
+ achievement
2940
+ black
2941
+ l-@@
2942
+ tho@@
2943
+ acu@@
2944
+ atta@@
2945
+ hopes
2946
+ ically
2947
+ promp@@
2948
+ tragedy
2949
+ visi@@
2950
+ whereas
2951
+ alising
2952
+ considerably
2953
+ size
2954
+ %
2955
+ clarity
2956
+ constitutes
2957
+ demanding
2958
+ marine
2959
+ sum
2960
+ arrest
2961
+ cating
2962
+ communications
2963
+ guaranteeing
2964
+ illustra@@
2965
+ enabling
2966
+ foremost
2967
+ korea
2968
+ summer
2969
+ 1998
2970
+ diplomatic
2971
+ launch
2972
+ determine
2973
+ drug
2974
+ focused
2975
+ lebanon
2976
+ manufacturers
2977
+ worthy
2978
+ 14@@
2979
+ alleg@@
2980
+ deficit
2981
+ heavy
2982
+ interpre@@
2983
+ strength
2984
+ es’
2985
+ solana
2986
+ observation
2987
+ tures
2988
+ worldwide
2989
+ ef@@
2990
+ ined
2991
+ openness
2992
+ os@@
2993
+ removed
2994
+ roots
2995
+ c5-0@@
2996
+ funded
2997
+ ka@@
2998
+ ton@@
2999
+ vari@@
3000
+ 198@@
3001
+ accident
3002
+ check
3003
+ experienced
3004
+ gmos
3005
+ mistake
3006
+ arise
3007
+ articles
3008
+ certainty
3009
+ doubts
3010
+ justify
3011
+ righ@@
3012
+ torture
3013
+ intentions
3014
+ schemes
3015
+ distor@@
3016
+ encouraged
3017
+ falls
3018
+ gan@@
3019
+ legitimacy
3020
+ powerful
3021
+ regulated
3022
+ restricted
3023
+ sorry
3024
+ spo@@
3025
+ meaning
3026
+ near
3027
+ perspectives
3028
+ wealth
3029
+ 13@@
3030
+ applicable
3031
+ co2
3032
+ exception
3033
+ hor@@
3034
+ incorporated
3035
+ pur@@
3036
+ sting
3037
+ thorough
3038
+ easily
3039
+ lor@@
3040
+ section
3041
+ transition
3042
+ uniform
3043
+ all@@
3044
+ postal
3045
+ skills
3046
+ succeeded
3047
+ fleet
3048
+ ries
3049
+ supposed
3050
+ 3%
3051
+ publi@@
3052
+ rap@@
3053
+ 15@@
3054
+ contributed
3055
+ divided
3056
+ electoral
3057
+ pl@@
3058
+ respects
3059
+ secret
3060
+ ard
3061
+ congratulations
3062
+ counter
3063
+ dic@@
3064
+ familiar
3065
+ possibilities
3066
+ prospect
3067
+ replace
3068
+ 0s
3069
+ feeling
3070
+ increases
3071
+ assist
3072
+ controlled
3073
+ convergence
3074
+ explo@@
3075
+ turned
3076
+ europe@@
3077
+ ill@@
3078
+ paying
3079
+ unfortunate
3080
+ 500
3081
+ alongside
3082
+ correc@@
3083
+ macedonia
3084
+ preparations
3085
+ regarded
3086
+ sake
3087
+ track
3088
+ 20%
3089
+ allo@@
3090
+ bearing
3091
+ card
3092
+ cho@@
3093
+ insi@@
3094
+ stressed
3095
+ welcomes
3096
+ airlines
3097
+ conver@@
3098
+ iraqi
3099
+ islamic
3100
+ ping
3101
+ religion
3102
+ tools
3103
+ transpor@@
3104
+ airports
3105
+ aring
3106
+ land@@
3107
+ pleasure
3108
+ scen@@
3109
+ tou@@
3110
+ galileo
3111
+ regrettable
3112
+ science
3113
+ tioning
3114
+ undertakings
3115
+ federal
3116
+ fil@@
3117
+ institute
3118
+ smaller
3119
+ suitable
3120
+ depend
3121
+ intensive
3122
+ shi@@
3123
+ stance
3124
+ trial
3125
+ 60
3126
+ cre@@
3127
+ elderly
3128
+ belgium
3129
+ leaving
3130
+ afraid
3131
+ deals
3132
+ eyes
3133
+ ken
3134
+ representation
3135
+ sel@@
3136
+ undermine
3137
+ fle@@
3138
+ harmful
3139
+ island
3140
+ plants
3141
+ usual
3142
+ anticipa@@
3143
+ background
3144
+ char@@
3145
+ unanimously
3146
+ worrying
3147
+ influ@@
3148
+ ta
3149
+ objec@@
3150
+ reflected
3151
+ tual
3152
+ two-@@
3153
+ bureaucracy
3154
+ bush
3155
+ consequence
3156
+ employed
3157
+ fire
3158
+ ju@@
3159
+ sti@@
3160
+ desirable
3161
+ doha
3162
+ nu@@
3163
+ deeply
3164
+ definitely
3165
+ extreme
3166
+ georgia
3167
+ br@@
3168
+ cru@@
3169
+ expressing
3170
+ rapidly
3171
+ examined
3172
+ fairly
3173
+ minute
3174
+ recall
3175
+ reliable
3176
+ shape
3177
+ shor@@
3178
+ surprised
3179
+ amsterdam
3180
+ berlin
3181
+ decades
3182
+ disabled
3183
+ intensi@@
3184
+ looked
3185
+ mobili@@
3186
+ presenting
3187
+ promoted
3188
+ underline
3189
+ deplo@@
3190
+ expense
3191
+ extra
3192
+ ly-@@
3193
+ organise
3194
+ utmost
3195
+ entered
3196
+ far@@
3197
+ ad
3198
+ delays
3199
+ mental
3200
+ oppose
3201
+ scan@@
3202
+ sion@@
3203
+ 50%
3204
+ couple
3205
+ creates
3206
+ profit
3207
+ tric@@
3208
+ ambition
3209
+ y’s
3210
+ aries
3211
+ a’s
3212
+ fifteen
3213
+ negotiate
3214
+ post-@@
3215
+ sho@@
3216
+ violation
3217
+ wording
3218
+ americans
3219
+ complaints
3220
+ employers
3221
+ honest
3222
+ with@@
3223
+ vast
3224
+ worst
3225
+ dr@@
3226
+ dri@@
3227
+ lie
3228
+ marketing
3229
+ periods
3230
+ quota
3231
+ repeatedly
3232
+ roads
3233
+ trans-european
3234
+ became
3235
+ equ@@
3236
+ fresh
3237
+ mur@@
3238
+ productive
3239
+ territories
3240
+ dated
3241
+ finnish
3242
+ ia
3243
+ pic@@
3244
+ subjects
3245
+ to-@@
3246
+ ul@@
3247
+ a-@@
3248
+ negotiated
3249
+ sible
3250
+ tribute
3251
+ 28
3252
+ asi@@
3253
+ demonstrates
3254
+ dent
3255
+ granting
3256
+ journalists
3257
+ save
3258
+ settlement
3259
+ sought
3260
+ bel@@
3261
+ break
3262
+ lo
3263
+ ne
3264
+ ob@@
3265
+ obtained
3266
+ picture
3267
+ separ@@
3268
+ weak
3269
+ door
3270
+ tories
3271
+ weight
3272
+ work@@
3273
+ ants
3274
+ bureaucratic
3275
+ condemned
3276
+ drivers
3277
+ english
3278
+ entrepreneur@@
3279
+ geneva
3280
+ olaf
3281
+ clo@@
3282
+ deadline
3283
+ engaged
3284
+ greenhouse
3285
+ moun@@
3286
+ patients
3287
+ stay
3288
+ tals
3289
+ wea@@
3290
+ 197@@
3291
+ biggest
3292
+ cour@@
3293
+ credible
3294
+ gui@@
3295
+ processing
3296
+ sla@@
3297
+ students
3298
+ 199@@
3299
+ bed
3300
+ expor@@
3301
+ shortcomings
3302
+ 200
3303
+ bound
3304
+ dering
3305
+ excluded
3306
+ lists
3307
+ motions
3308
+ poses
3309
+ conventions
3310
+ cy@@
3311
+ modified
3312
+ ners
3313
+ part-session
3314
+ pr@@
3315
+ promises
3316
+ 16@@
3317
+ allocation
3318
+ fif@@
3319
+ hardly
3320
+ indicators
3321
+ qualifications
3322
+ soil
3323
+ commen@@
3324
+ deserve
3325
+ jointly
3326
+ kinds
3327
+ placing
3328
+ suspec@@
3329
+ executive
3330
+ spec@@
3331
+ terrible
3332
+ basically
3333
+ broader
3334
+ drafted
3335
+ ed@@
3336
+ railways
3337
+ rome
3338
+ supervision
3339
+ commit
3340
+ explained
3341
+ fruit
3342
+ gri@@
3343
+ hopefully
3344
+ islands
3345
+ radical
3346
+ revised
3347
+ stic
3348
+ suggestions
3349
+ widely
3350
+ 29
3351
+ high-@@
3352
+ 31
3353
+ formu@@
3354
+ observers
3355
+ outermost
3356
+ outset
3357
+ sight
3358
+ ya
3359
+ ances
3360
+ chemicals
3361
+ dele@@
3362
+ ising
3363
+ mobile
3364
+ sending
3365
+ admit
3366
+ import
3367
+ qui@@
3368
+ undertaking
3369
+ expensive
3370
+ mise
3371
+ moved
3372
+ combined
3373
+ killed
3374
+ recommend
3375
+ trend
3376
+ alternatives
3377
+ larger
3378
+ rea@@
3379
+ reac@@
3380
+ spe@@
3381
+ strike
3382
+ adapt
3383
+ arising
3384
+ performance
3385
+ some@@
3386
+ unds
3387
+ belief
3388
+ bor@@
3389
+ deaths
3390
+ gaza
3391
+ pre-@@
3392
+ sac@@
3393
+ shoc@@
3394
+ tative
3395
+ wn
3396
+ apparent
3397
+ insufficient
3398
+ lic@@
3399
+ net
3400
+ relate
3401
+ selec@@
3402
+ spee@@
3403
+ sphere
3404
+ fourth
3405
+ fu@@
3406
+ gradually
3407
+ nearly
3408
+ reservations
3409
+ treat
3410
+ verheugen
3411
+ congratulating
3412
+ cuts
3413
+ flo@@
3414
+ regardless
3415
+ é@@
3416
+ compete
3417
+ ethical
3418
+ peace@@
3419
+ prison
3420
+ rejection
3421
+ trac@@
3422
+ viable
3423
+ coherence
3424
+ harmonised
3425
+ occupation
3426
+ physical
3427
+ wo@@
3428
+ approximately
3429
+ clearer
3430
+ gr@@
3431
+ holds
3432
+ /2003
3433
+ checks
3434
+ matic
3435
+ accor@@
3436
+ educational
3437
+ retain
3438
+ rou@@
3439
+ showing
3440
+ tangible
3441
+ tonnes
3442
+ applications
3443
+ below
3444
+ dispute
3445
+ lasting
3446
+ suppli@@
3447
+ time@@
3448
+ widespread
3449
+ battle
3450
+ bureau
3451
+ celebra@@
3452
+ clean
3453
+ logy
3454
+ puts
3455
+ restore
3456
+ descri@@
3457
+ friend
3458
+ organic
3459
+ suspended
3460
+ ths
3461
+ assu@@
3462
+ dable
3463
+ jud@@
3464
+ rec@@
3465
+ repeated
3466
+ small@@
3467
+ ading
3468
+ compatible
3469
+ digital
3470
+ distinction
3471
+ eding
3472
+ financed
3473
+ firms
3474
+ ignore
3475
+ joining
3476
+ judgment
3477
+ por@@
3478
+ reflects
3479
+ resulted
3480
+ sharing
3481
+ sports
3482
+ toler@@
3483
+ ach
3484
+ forest
3485
+ intervene
3486
+ justification
3487
+ na
3488
+ biodiversity
3489
+ biofuels
3490
+ concludes
3491
+ count
3492
+ fications
3493
+ isation
3494
+ mented
3495
+ similarly
3496
+ team
3497
+ ars
3498
+ bla@@
3499
+ cl@@
3500
+ fra@@
3501
+ shares
3502
+ malta
3503
+ sing@@
3504
+ vat
3505
+ auto@@
3506
+ contacts
3507
+ directed
3508
+ foundation
3509
+ igc
3510
+ lou@@
3511
+ divi@@
3512
+ dro@@
3513
+ euro-mediterranean
3514
+ ished
3515
+ pressing
3516
+ targeted
3517
+ tigh@@
3518
+ warning
3519
+ withdraw
3520
+ yed
3521
+ acted
3522
+ banks
3523
+ cultures
3524
+ ecological
3525
+ ire
3526
+ thers
3527
+ annex
3528
+ blood
3529
+ buy
3530
+ chemical
3531
+ conten@@
3532
+ fas@@
3533
+ mate
3534
+ penalties
3535
+ bing
3536
+ embar@@
3537
+ h-0@@
3538
+ personnel
3539
+ sixth
3540
+ sv
3541
+ unanimous
3542
+ 18@@
3543
+ affecting
3544
+ ently
3545
+ informal
3546
+ seas
3547
+ belong
3548
+ division
3549
+ indicate
3550
+ movements
3551
+ receiving
3552
+ reflection
3553
+ suggestion
3554
+ syria
3555
+ council’s
3556
+ hin@@
3557
+ infec@@
3558
+ kes
3559
+ lates
3560
+ mercury
3561
+ preserve
3562
+ subsequently
3563
+ advertising
3564
+ began
3565
+ crops
3566
+ deri@@
3567
+ exclusively
3568
+ frequently
3569
+ shortly
3570
+ tar@@
3571
+ -year
3572
+ declare
3573
+ demographic
3574
+ ecb
3575
+ economically
3576
+ listened
3577
+ parallel
3578
+ popular
3579
+ woman
3580
+ categories
3581
+ foundations
3582
+ freight
3583
+ ful@@
3584
+ indica@@
3585
+ inf@@
3586
+ nesses
3587
+ ques@@
3588
+ sites
3589
+ testing
3590
+ bas@@
3591
+ candidates
3592
+ commun@@
3593
+ sely
3594
+ tless
3595
+ connected
3596
+ ctions
3597
+ dates
3598
+ exerci@@
3599
+ hour
3600
+ incentives
3601
+ stages
3602
+ commission@@
3603
+ crises
3604
+ faith
3605
+ generations
3606
+ liberties
3607
+ lifelong
3608
+ marks
3609
+ promise
3610
+ regulate
3611
+ surrounding
3612
+ troops
3613
+ 2%
3614
+ clarification
3615
+ consu@@
3616
+ declarations
3617
+ ical
3618
+ lithuania
3619
+ presentation
3620
+ trea@@
3621
+ yourself
3622
+ acquis
3623
+ by@@
3624
+ collaboration
3625
+ extraordinary
3626
+ grow
3627
+ int
3628
+ joined
3629
+ stipu@@
3630
+ agrees
3631
+ bre@@
3632
+ brok
3633
+ defining
3634
+ frattini
3635
+ lism
3636
+ prevented
3637
+ uncertainty
3638
+ disappe@@
3639
+ millennium
3640
+ practi@@
3641
+ reported
3642
+ ster@@
3643
+ ty-@@
3644
+ din@@
3645
+ eradi@@
3646
+ fiscal
3647
+ predic@@
3648
+ sincerely
3649
+ achievements
3650
+ advi@@
3651
+ ana
3652
+ charge
3653
+ communi@@
3654
+ disappointed
3655
+ freely
3656
+ mere
3657
+ permitted
3658
+ tro@@
3659
+ accompanied
3660
+ ine@@
3661
+ lar@@
3662
+ raw
3663
+ scep@@
3664
+ accounting
3665
+ ase
3666
+ evalu@@
3667
+ farms
3668
+ ingly
3669
+ morocco
3670
+ ordinary
3671
+ tackling
3672
+ thly
3673
+ vio@@
3674
+ actors
3675
+ atlantic
3676
+ denied
3677
+ laeken
3678
+ observed
3679
+ pra@@
3680
+ pun@@
3681
+ talked
3682
+ alities
3683
+ compli@@
3684
+ dal@@
3685
+ decre@@
3686
+ keen
3687
+ liberals
3688
+ pursuant
3689
+ wal@@
3690
+ year@@
3691
+ covers
3692
+ homo@@
3693
+ nic@@
3694
+ populations
3695
+ route
3696
+ savings
3697
+ tre@@
3698
+ ttle
3699
+ violent
3700
+ bomb@@
3701
+ mation
3702
+ pursued
3703
+ boo@@
3704
+ cast
3705
+ ow@@
3706
+ simplification
3707
+ stra@@
3708
+ whatsoever
3709
+ authorisation
3710
+ burma
3711
+ campaigns
3712
+ class
3713
+ controversial
3714
+ distingu@@
3715
+ fast
3716
+ football
3717
+ over-@@
3718
+ restrict
3719
+ 12@@
3720
+ atten@@
3721
+ missing
3722
+ parents
3723
+ signing
3724
+ thro@@
3725
+ delegations
3726
+ disagree
3727
+ fit
3728
+ hoped
3729
+ image
3730
+ lla@@
3731
+ prefer
3732
+ timely
3733
+ tolerance
3734
+ amend
3735
+ conservation
3736
+ dur@@
3737
+ follow-up
3738
+ items
3739
+ pensioners
3740
+ taxpayers
3741
+ traditions
3742
+ anti@@
3743
+ dol@@
3744
+ drive
3745
+ eliminate
3746
+ ment@@
3747
+ popu@@
3748
+ push
3749
+ compla@@
3750
+ deep
3751
+ exceptional
3752
+ fies
3753
+ hungary
3754
+ hy@@
3755
+ lob@@
3756
+ long-@@
3757
+ looks
3758
+ margin@@
3759
+ mo
3760
+ residence
3761
+ ü@@
3762
+ end@@
3763
+ sadly
3764
+ gen
3765
+ reconciliation
3766
+ tant
3767
+ train
3768
+ unique
3769
+ abolition
3770
+ accessible
3771
+ answered
3772
+ choices
3773
+ consi@@
3774
+ echo
3775
+ habi@@
3776
+ ple
3777
+ preliminary
3778
+ reinforce
3779
+ scotland
3780
+ apparently
3781
+ author
3782
+ bal@@
3783
+ blame
3784
+ bon@@
3785
+ cat@@
3786
+ cked
3787
+ compromises
3788
+ emission
3789
+ enhanced
3790
+ fuels
3791
+ geo@@
3792
+ ines
3793
+ missions
3794
+ refused
3795
+ suf@@
3796
+ va@@
3797
+ vehicle
3798
+ begun
3799
+ bse
3800
+ causing
3801
+ confusion
3802
+ dation
3803
+ integrate
3804
+ replaced
3805
+ syn@@
3806
+ wise
3807
+ afford
3808
+ analy@@
3809
+ carbon
3810
+ handling
3811
+ harm
3812
+ unilateral
3813
+ unions
3814
+ boost
3815
+ centralised
3816
+ containing
3817
+ ils
3818
+ marked
3819
+ notably
3820
+ threshold
3821
+ undertake
3822
+ acknowled@@
3823
+ associations
3824
+ civilian
3825
+ efficiently
3826
+ inflation
3827
+ inven@@
3828
+ lessons
3829
+ consulted
3830
+ failing
3831
+ helpful
3832
+ marke@@
3833
+ recognises
3834
+ relo@@
3835
+ ris@@
3836
+ struggle
3837
+ wage
3838
+ banned
3839
+ cli@@
3840
+ ratify
3841
+ six@@
3842
+ ton
3843
+ advocate
3844
+ break@@
3845
+ defending
3846
+ federation
3847
+ invite
3848
+ parti@@
3849
+ solved
3850
+ transit
3851
+ usually
3852
+ veri@@
3853
+ buildings
3854
+ claimed
3855
+ contradic@@
3856
+ percentage
3857
+ systematic
3858
+ wat@@
3859
+ -general
3860
+ 10%
3861
+ abuses
3862
+ august
3863
+ iling
3864
+ modernisation
3865
+ offering
3866
+ origin@@
3867
+ refuse
3868
+ reserve
3869
+ reve@@
3870
+ universities
3871
+ covering
3872
+ cycle
3873
+ equivalent
3874
+ fires
3875
+ inspi@@
3876
+ lacking
3877
+ losses
3878
+ mat@@
3879
+ new@@
3880
+ poli@@
3881
+ slightly
3882
+ sw@@
3883
+ tle@@
3884
+ warrant
3885
+ acceptance
3886
+ cells
3887
+ chapter
3888
+ dead
3889
+ fran@@
3890
+ ham@@
3891
+ listening
3892
+ respecting
3893
+ tely
3894
+ approaches
3895
+ breach
3896
+ london
3897
+ rich@@
3898
+ secretary-general
3899
+ strictly
3900
+ visited
3901
+ credi@@
3902
+ exci@@
3903
+ observe
3904
+ threatened
3905
+ ace
3906
+ characterised
3907
+ comparison
3908
+ deli@@
3909
+ forese@@
3910
+ gained
3911
+ infrastructures
3912
+ invited
3913
+ rus@@
3914
+ spi@@
3915
+ arian
3916
+ assessments
3917
+ born
3918
+ chain
3919
+ forgotten
3920
+ nine
3921
+ occur
3922
+ permit
3923
+ soldiers
3924
+ solid
3925
+ ach@@
3926
+ councils
3927
+ ers’
3928
+ gence
3929
+ liter@@
3930
+ managing
3931
+ question@@
3932
+ sor
3933
+ clean@@
3934
+ cros@@
3935
+ endeavour
3936
+ explanations
3937
+ noti@@
3938
+ pers
3939
+ refugee
3940
+ addi@@
3941
+ beneficial
3942
+ destroyed
3943
+ hundred
3944
+ lia@@
3945
+ monitored
3946
+ post
3947
+ soviet
3948
+ xenophobia
3949
+ backing
3950
+ flows
3951
+ fulfi@@
3952
+ gre@@
3953
+ necessity
3954
+ perfect
3955
+ tampere
3956
+ van@@
3957
+ wall
3958
+ alis@@
3959
+ catch
3960
+ jour@@
3961
+ multi-@@
3962
+ showed
3963
+ slow
3964
+ tun@@
3965
+ absurd
3966
+ acceler@@
3967
+ cious
3968
+ emerging
3969
+ exchanges
3970
+ occurred
3971
+ older
3972
+ port@@
3973
+ ship@@
3974
+ subsidi@@
3975
+ supplies
3976
+ continu@@
3977
+ correspon@@
3978
+ die
3979
+ fortunately
3980
+ plays
3981
+ plying
3982
+ prece@@
3983
+ providers
3984
+ suggests
3985
+ sun@@
3986
+ unanimity
3987
+ vely
3988
+ democrat
3989
+ host
3990
+ humanity
3991
+ representing
3992
+ airport
3993
+ collection
3994
+ construc@@
3995
+ migrants
3996
+ mine
3997
+ renewed
3998
+ stan@@
3999
+ textile
4000
+ block
4001
+ characteristics
4002
+ coastal
4003
+ deta@@
4004
+ functions
4005
+ imposing
4006
+ incorpor@@
4007
+ infringement
4008
+ motiv@@
4009
+ pol@@
4010
+ regularly
4011
+ saddam
4012
+ scrutiny
4013
+ sively
4014
+ chair@@
4015
+ eventually
4016
+ safeguarding
4017
+ severe
4018
+ women’s
4019
+ after@@
4020
+ ben@@
4021
+ bul@@
4022
+ dramatic
4023
+ fears
4024
+ ishing
4025
+ valid
4026
+ concentration
4027
+ liked
4028
+ ministerial
4029
+ remin@@
4030
+ secu@@
4031
+ authorised
4032
+ consistency
4033
+ coordinate
4034
+ emerged
4035
+ exce@@
4036
+ experiences
4037
+ expertise
4038
+ protest
4039
+ stick
4040
+ subsequent
4041
+ underlying
4042
+ win
4043
+ 35
4044
+ clauses
4045
+ exceptions
4046
+ games
4047
+ impetus
4048
+ notice
4049
+ cri@@
4050
+ dangers
4051
+ p-@@
4052
+ register
4053
+ sel
4054
+ ss
4055
+ struck
4056
+ thir@@
4057
+ unlike
4058
+ acknowledged
4059
+ assurance
4060
+ attached
4061
+ conservative
4062
+ convince
4063
+ democracies
4064
+ environmentally
4065
+ low-@@
4066
+ pres@@
4067
+ stand@@
4068
+ acce@@
4069
+ albeit
4070
+ contract
4071
+ duc@@
4072
+ excuse
4073
+ highlights
4074
+ incorporate
4075
+ mandatory
4076
+ presidential
4077
+ realis@@
4078
+ scientists
4079
+ affor@@
4080
+ ambitions
4081
+ cari@@
4082
+ down@@
4083
+ incentive
4084
+ initially
4085
+ preparatory
4086
+ reason@@
4087
+ reco@@
4088
+ stabilisation
4089
+ aggres@@
4090
+ bilities
4091
+ cally
4092
+ compensa@@
4093
+ gn@@
4094
+ innocent
4095
+ regimes
4096
+ today’s
4097
+ expan@@
4098
+ posts
4099
+ rac@@
4100
+ shar@@
4101
+ 00
4102
+ 300
4103
+ closure
4104
+ confron@@
4105
+ flights
4106
+ gro@@
4107
+ hit
4108
+ judge
4109
+ reporting
4110
+ resumed
4111
+ smoking
4112
+ title
4113
+ advanced
4114
+ ft
4115
+ japan
4116
+ pretext
4117
+ reaf@@
4118
+ signs
4119
+ tested
4120
+ tt@@
4121
+ far-reaching
4122
+ gue/ngl
4123
+ lent
4124
+ mach@@
4125
+ mitted
4126
+ neglec@@
4127
+ preventive
4128
+ resistance
4129
+ resolving
4130
+ tibet
4131
+ asser@@
4132
+ proportionate
4133
+ shipping
4134
+ slovakia
4135
+ sted
4136
+ twenty-@@
4137
+ victim
4138
+ adequately
4139
+ chec@@
4140
+ complied
4141
+ essence
4142
+ forests
4143
+ lif@@
4144
+ observations
4145
+ od
4146
+ ori@@
4147
+ passing
4148
+ pha@@
4149
+ reg@@
4150
+ sli@@
4151
+ /0@@
4152
+ borne
4153
+ dictatorship
4154
+ disabilities
4155
+ eurostat
4156
+ ideal
4157
+ medium
4158
+ registration
4159
+ reser@@
4160
+ sad
4161
+ sections
4162
+ states’
4163
+ sym@@
4164
+ third-country
4165
+ 2007-2013
4166
+ by-@@
4167
+ cancel@@
4168
+ chan@@
4169
+ donors
4170
+ entering
4171
+ equi@@
4172
+ euros
4173
+ maybe
4174
+ ption
4175
+ que@@
4176
+ reinfor@@
4177
+ university
4178
+ ats
4179
+ conviction
4180
+ desired
4181
+ differenti@@
4182
+ draftsman
4183
+ eec
4184
+ hungarian
4185
+ mp
4186
+ mption
4187
+ sympathy
4188
+ 30@@
4189
+ bases
4190
+ bolkestein
4191
+ cations
4192
+ crea@@
4193
+ fifth
4194
+ gothenburg
4195
+ socio-economic
4196
+ voters
4197
+ withdrawal
4198
+ 80%
4199
+ contr@@
4200
+ democratisation
4201
+ falling
4202
+ flow
4203
+ frankly
4204
+ minis@@
4205
+ offices
4206
+ story
4207
+ thousand
4208
+ warm
4209
+ was@@
4210
+ distributed
4211
+ hamas
4212
+ inside
4213
+ procedural
4214
+ sibility
4215
+ 00@@
4216
+ 45
4217
+ 80
4218
+ centr@@
4219
+ contributing
4220
+ disputes
4221
+ edi@@
4222
+ esty
4223
+ execu@@
4224
+ fronti@@
4225
+ pho@@
4226
+ quo@@
4227
+ 7%
4228
+ darfur
4229
+ examination
4230
+ except
4231
+ finances
4232
+ fischler
4233
+ healthcare
4234
+ in-@@
4235
+ losing
4236
+ non-governmental
4237
+ perpetra@@
4238
+ raises
4239
+ ves@@
4240
+ yugoslavia
4241
+ arri@@
4242
+ brazil
4243
+ dity
4244
+ harmonise
4245
+ ics
4246
+ imprison@@
4247
+ institu@@
4248
+ leaves
4249
+ length
4250
+ plan@@
4251
+ poettering
4252
+ respon@@
4253
+ a5-00@@
4254
+ criterion
4255
+ deny
4256
+ hague
4257
+ invi@@
4258
+ justifi@@
4259
+ limi@@
4260
+ prize
4261
+ recital
4262
+ sy
4263
+ -based
4264
+ an-@@
4265
+ ators
4266
+ cope
4267
+ eth@@
4268
+ fourthly
4269
+ interim
4270
+ monday
4271
+ olympic
4272
+ precautionary
4273
+ provo@@
4274
+ spar@@
4275
+ stem
4276
+ capa@@
4277
+ cei@@
4278
+ comitology
4279
+ confident
4280
+ corporate
4281
+ fails
4282
+ lef@@
4283
+ mini@@
4284
+ obser@@
4285
+ rene@@
4286
+ ruling
4287
+ sacrifi@@
4288
+ tain
4289
+ driven
4290
+ egypt
4291
+ fought
4292
+ ignored
4293
+ lis@@
4294
+ mitting
4295
+ motor
4296
+ steel
4297
+ ah@@
4298
+ dle
4299
+ envisaged
4300
+ practically
4301
+ sentence
4302
+ surveillance
4303
+ tali@@
4304
+ trou@@
4305
+ whenever
4306
+ autumn
4307
+ deb@@
4308
+ detec@@
4309
+ inhabitants
4310
+ linguistic
4311
+ sub-@@
4312
+ 4%
4313
+ consistently
4314
+ gradual
4315
+ mines
4316
+ respective
4317
+ seiz@@
4318
+ verts/ale
4319
+ wherever
4320
+ aged
4321
+ alde
4322
+ blair
4323
+ finish
4324
+ game
4325
+ human@@
4326
+ integrity
4327
+ learned
4328
+ occupied
4329
+ outlined
4330
+ procurement
4331
+ 6%
4332
+ dama@@
4333
+ explicitly
4334
+ feder@@
4335
+ fundamenta@@
4336
+ revolution
4337
+ sk
4338
+ statistical
4339
+ wholeheartedly
4340
+ benefi@@
4341
+ inquiry
4342
+ inspection
4343
+ meantime
4344
+ offences
4345
+ researchers
4346
+ safeguards
4347
+ simplify
4348
+ terror
4349
+ ageing
4350
+ dge
4351
+ diversi@@
4352
+ dying
4353
+ error
4354
+ e’s
4355
+ helps
4356
+ pression
4357
+ quarters
4358
+ sa
4359
+ sole
4360
+ visible
4361
+ 2013
4362
+ argue
4363
+ cheap
4364
+ embargo
4365
+ house@@
4366
+ race
4367
+ reta@@
4368
+ revenue
4369
+ search
4370
+ arance
4371
+ destin@@
4372
+ diver@@
4373
+ estimated
4374
+ recycling
4375
+ rising
4376
+ sovereign
4377
+ stone
4378
+ stor@@
4379
+ tonight
4380
+ 1997
4381
+ 40%
4382
+ arily
4383
+ doors
4384
+ floods
4385
+ helsinki
4386
+ irrespective
4387
+ mep
4388
+ proven
4389
+ react
4390
+ short-term
4391
+ tioned
4392
+ compar@@
4393
+ criminals
4394
+ dependence
4395
+ era
4396
+ everywhere
4397
+ examining
4398
+ investiga@@
4399
+ ley
4400
+ tering
4401
+ ai@@
4402
+ arrived
4403
+ beef
4404
+ ended
4405
+ gross
4406
+ minds
4407
+ motor@@
4408
+ pointing
4409
+ sudan
4410
+ tal@@
4411
+ berg
4412
+ competi@@
4413
+ hur@@
4414
+ initi@@
4415
+ natura
4416
+ privacy
4417
+ released
4418
+ removal
4419
+ restrictive
4420
+ secon@@
4421
+ shing
4422
+ surprise
4423
+ ul
4424
+ al-@@
4425
+ avoided
4426
+ bus@@
4427
+ donor
4428
+ dossier
4429
+ f-@@
4430
+ home@@
4431
+ pp@@
4432
+ birth
4433
+ ceiling
4434
+ disastrous
4435
+ high-quality
4436
+ madrid
4437
+ mid@@
4438
+ notes
4439
+ pace
4440
+ participants
4441
+ progres@@
4442
+ repe@@
4443
+ scar@@
4444
+ sex
4445
+ stockholm
4446
+ tru@@
4447
+ abstained
4448
+ civilisation
4449
+ congo
4450
+ cos@@
4451
+ meets
4452
+ mers
4453
+ od@@
4454
+ presidencies
4455
+ protec@@
4456
+ silence
4457
+ standardi@@
4458
+ tac@@
4459
+ tism
4460
+ touch
4461
+ ath@@
4462
+ audi@@
4463
+ classi@@
4464
+ consul@@
4465
+ cou@@
4466
+ damaging
4467
+ desper@@
4468
+ differ
4469
+ dom
4470
+ mann
4471
+ mity
4472
+ productivity
4473
+ reproductive
4474
+ substantially
4475
+ teen
4476
+ tough
4477
+ virtually
4478
+ wages
4479
+ -related
4480
+ coalition
4481
+ commend
4482
+ consolidate
4483
+ drop
4484
+ experi@@
4485
+ indication
4486
+ medi@@
4487
+ notion
4488
+ on-@@
4489
+ ours
4490
+ participating
4491
+ vin@@
4492
+ arrive
4493
+ civilians
4494
+ comple@@
4495
+ criticised
4496
+ deciding
4497
+ doub@@
4498
+ fri@@
4499
+ interference
4500
+ object
4501
+ paragraphs
4502
+ recru@@
4503
+ repli@@
4504
+ seekers
4505
+ shift
4506
+ squ@@
4507
+ telecommunications
4508
+ adjustment
4509
+ cro@@
4510
+ lations
4511
+ mit@@
4512
+ spa@@
4513
+ supervisory
4514
+ 30%
4515
+ cutting
4516
+ focusing
4517
+ immunity
4518
+ investigations
4519
+ investors
4520
+ marking
4521
+ partnerships
4522
+ que
4523
+ rational
4524
+ tened
4525
+ ak@@
4526
+ anniversary
4527
+ catastro@@
4528
+ cement
4529
+ conditional
4530
+ criticisms
4531
+ facility
4532
+ gging
4533
+ johannesburg
4534
+ programming
4535
+ references
4536
+ slovenia
4537
+ vers
4538
+ wednesday
4539
+ ceived
4540
+ consultations
4541
+ direc@@
4542
+ enshrined
4543
+ fulfilled
4544
+ impor@@
4545
+ names
4546
+ ods
4547
+ pesticides
4548
+ sincere
4549
+ systematically
4550
+ abroad
4551
+ appointment
4552
+ ards
4553
+ broadly
4554
+ bs
4555
+ coast
4556
+ euro-@@
4557
+ farm
4558
+ foster
4559
+ frustra@@
4560
+ genocide
4561
+ ggling
4562
+ inci@@
4563
+ map
4564
+ originally
4565
+ qua@@
4566
+ restor@@
4567
+ val
4568
+ 8%
4569
+ accurate
4570
+ gases
4571
+ ges@@
4572
+ laying
4573
+ recipro@@
4574
+ stringent
4575
+ sums
4576
+ sures
4577
+ assessing
4578
+ cau@@
4579
+ compe@@
4580
+ component
4581
+ destroy
4582
+ distan@@
4583
+ ial
4584
+ murder
4585
+ openly
4586
+ prescri@@
4587
+ romanian
4588
+ usd
4589
+ won
4590
+ /2006
4591
+ camps
4592
+ generous
4593
+ hood
4594
+ maintenance
4595
+ onto
4596
+ pursuing
4597
+ straight
4598
+ substitu@@
4599
+ tability
4600
+ accused
4601
+ attend
4602
+ exploit
4603
+ greens
4604
+ mus@@
4605
+ presents
4606
+ serves
4607
+ seventh
4608
+ stating
4609
+ withdrawn
4610
+ ze@@
4611
+ anxi@@
4612
+ appointed
4613
+ contrast
4614
+ ga
4615
+ minor
4616
+ off@@
4617
+ produc@@
4618
+ scheduled
4619
+ sit
4620
+ york
4621
+ ace@@
4622
+ blind
4623
+ cable
4624
+ conce@@
4625
+ cop@@
4626
+ divide
4627
+ inher@@
4628
+ likewise
4629
+ micro@@
4630
+ parliamentarians
4631
+ planet
4632
+ praise
4633
+ privatisation
4634
+ proce@@
4635
+ pru@@
4636
+ stakeholders
4637
+ 27@@
4638
+ ani@@
4639
+ biological
4640
+ decline
4641
+ design
4642
+ enabled
4643
+ expansion
4644
+ flu@@
4645
+ hunger
4646
+ in-depth
4647
+ maastricht
4648
+ para@@
4649
+ pul@@
4650
+ wed
4651
+ ä@@
4652
+ brea@@
4653
+ hazardous
4654
+ iranian
4655
+ narro@@
4656
+ pical
4657
+ ski
4658
+ str@@
4659
+ utili@@
4660
+ variety
4661
+ accepting
4662
+ adverse
4663
+ detention
4664
+ ecofin
4665
+ exclude
4666
+ fate
4667
+ genetically
4668
+ lea@@
4669
+ reductions
4670
+ sou@@
4671
+ 1996
4672
+ 25@@
4673
+ appalling
4674
+ cking
4675
+ constraints
4676
+ experiencing
4677
+ grave
4678
+ guard
4679
+ hau@@
4680
+ hussein
4681
+ ind@@
4682
+ ligh@@
4683
+ minent
4684
+ packaging
4685
+ rati@@
4686
+ secretary
4687
+ termin@@
4688
+ tric
4689
+ volume
4690
+ annu@@
4691
+ encies
4692
+ gg@@
4693
+ housing
4694
+ intelligence
4695
+ knowledge-based
4696
+ macro@@
4697
+ partial
4698
+ ale@@
4699
+ appreci@@
4700
+ attractive
4701
+ ca
4702
+ character
4703
+ completion
4704
+ ency
4705
+ estonia
4706
+ greens/european
4707
+ imported
4708
+ licence
4709
+ mistakes
4710
+ obtaining
4711
+ putin
4712
+ signa@@
4713
+ state@@
4714
+ tful
4715
+ town
4716
+ uen
4717
+ visas
4718
+ wars
4719
+ wit@@
4720
+ ambiguous
4721
+ endor@@
4722
+ entr@@
4723
+ evaluate
4724
+ female
4725
+ holders
4726
+ jurisdiction
4727
+ ousness
4728
+ pays
4729
+ repercussions
4730
+ rigorous
4731
+ tionary
4732
+ bil@@
4733
+ delivered
4734
+ distur@@
4735
+ dream
4736
+ eds
4737
+ elec@@
4738
+ ignor@@
4739
+ interpreted
4740
+ mid-term
4741
+ redundan@@
4742
+ referendums
4743
+ respec@@
4744
+ responses
4745
+ sees
4746
+ specu@@
4747
+ topics
4748
+ tre
4749
+ tting
4750
+ 70
4751
+ accountability
4752
+ aging
4753
+ arrested
4754
+ badly
4755
+ endeavo@@
4756
+ gly
4757
+ ket
4758
+ retirement
4759
+ russi@@
4760
+ transfers
4761
+ yi@@
4762
+ applicant
4763
+ bench@@
4764
+ carri@@
4765
+ corresponding
4766
+ formally
4767
+ forwar@@
4768
+ fundamentally
4769
+ hun@@
4770
+ mes@@
4771
+ models
4772
+ pillars
4773
+ prosecutor
4774
+ surve@@
4775
+ thoroughly
4776
+ unemployed
4777
+ witnessed
4778
+ -european
4779
+ /2004
4780
+ asian
4781
+ consolidation
4782
+ distribu@@
4783
+ ential
4784
+ ices
4785
+ incidents
4786
+ integral
4787
+ ited
4788
+ makers
4789
+ repu@@
4790
+ secretariat
4791
+ temp@@
4792
+ twice
4793
+ 2012
4794
+ 400
4795
+ aling
4796
+ and@@
4797
+ assured
4798
+ autonomy
4799
+ ction
4800
+ democratically
4801
+ distance
4802
+ initiated
4803
+ loo@@
4804
+ moratorium
4805
+ my@@
4806
+ premi@@
4807
+ saving
4808
+ sco@@
4809
+ stabili@@
4810
+ tants
4811
+ uring
4812
+ workplace
4813
+ accommo@@
4814
+ erika
4815
+ et@@
4816
+ frag@@
4817
+ gratitude
4818
+ guided
4819
+ ideological
4820
+ ill
4821
+ macy
4822
+ mugabe
4823
+ orien@@
4824
+ persuade
4825
+ realised
4826
+ repression
4827
+ safer
4828
+ appro@@
4829
+ attach
4830
+ criticise
4831
+ decent
4832
+ emplo@@
4833
+ exclusive
4834
+ extremis@@
4835
+ ff
4836
+ grants
4837
+ hea@@
4838
+ priori@@
4839
+ relief
4840
+ revi@@
4841
+ software
4842
+ thy
4843
+ transferred
4844
+ vaccin@@
4845
+ worried
4846
+ ze
4847
+ alists
4848
+ closing
4849
+ ends
4850
+ expert
4851
+ gers
4852
+ guidance
4853
+ moldova
4854
+ montenegro
4855
+ nordic
4856
+ pilot
4857
+ platform
4858
+ remained
4859
+ sts
4860
+ addresses
4861
+ bour@@
4862
+ caught
4863
+ controlling
4864
+ detriment
4865
+ drinking
4866
+ fashion
4867
+ gh
4868
+ internationally
4869
+ mentation
4870
+ pending
4871
+ perfor@@
4872
+ privileg@@
4873
+ removing
4874
+ rers
4875
+ stricter
4876
+ telling
4877
+ victory
4878
+ civili@@
4879
+ cks
4880
+ concentra@@
4881
+ enables
4882
+ fixed
4883
+ nutri@@
4884
+ stopped
4885
+ water@@
4886
+ 32
4887
+ congress
4888
+ demanded
4889
+ devoted
4890
+ dissemin@@
4891
+ glo@@
4892
+ irregularities
4893
+ licences
4894
+ location
4895
+ progressive
4896
+ rob@@
4897
+ sales
4898
+ sian
4899
+ simplified
4900
+ collapse
4901
+ decade
4902
+ endorsed
4903
+ exemption
4904
+ expi@@
4905
+ hap@@
4906
+ jun@@
4907
+ lan
4908
+ loans
4909
+ recognising
4910
+ remarkable
4911
+ sca@@
4912
+ tables
4913
+ tackled
4914
+ abandon
4915
+ assets
4916
+ automatically
4917
+ citizens’
4918
+ communit@@
4919
+ composition
4920
+ definitions
4921
+ form@@
4922
+ generate
4923
+ imperative
4924
+ industri@@
4925
+ large-scale
4926
+ monopoly
4927
+ occup@@
4928
+ organising
4929
+ ration@@
4930
+ recommended
4931
+ turns
4932
+ 37
4933
+ adi@@
4934
+ audit
4935
+ designa@@
4936
+ features
4937
+ flight
4938
+ ide@@
4939
+ lining
4940
+ lowest
4941
+ obstacle
4942
+ sau@@
4943
+ sett@@
4944
+ stations
4945
+ underesti@@
4946
+ 25%
4947
+ acces@@
4948
+ analyse
4949
+ ble@@
4950
+ cotonou
4951
+ desig@@
4952
+ emo@@
4953
+ palacio
4954
+ survival
4955
+ ums
4956
+ wished
4957
+ zen
4958
+ advisory
4959
+ docu@@
4960
+ ences
4961
+ false
4962
+ foot
4963
+ gla@@
4964
+ kar@@
4965
+ monopolies
4966
+ own-initiative
4967
+ radic@@
4968
+ regula@@
4969
+ served
4970
+ strikes
4971
+ accompli@@
4972
+ appla@@
4973
+ appreciation
4974
+ backs
4975
+ concessions
4976
+ gan
4977
+ horizontal
4978
+ inevitable
4979
+ inevitably
4980
+ offen@@
4981
+ participa@@
4982
+ potentially
4983
+ root
4984
+ va
4985
+ vitorino
4986
+ confirms
4987
+ establish@@
4988
+ feature
4989
+ lat@@
4990
+ ques
4991
+ reviewed
4992
+ sky
4993
+ tening
4994
+ towns
4995
+ travelling
4996
+ approach@@
4997
+ arises
4998
+ ased
4999
+ ening
5000
+ gger
5001
+ incident
5002
+ mari@@
5003
+ resource
5004
+ threatening
5005
+ vering
5006
+ dar@@
5007
+ deadlines
5008
+ diplo@@
5009
+ emphasises
5010
+ fallen
5011
+ fi
5012
+ handed
5013
+ holi@@
5014
+ jeopardi@@
5015
+ mili@@
5016
+ paten@@
5017
+ recei@@
5018
+ resolu@@
5019
+ schulz
5020
+ shel@@
5021
+ sustained
5022
+ tious
5023
+ ure
5024
+ yer
5025
+ cards
5026
+ earth
5027
+ eded
5028
+ enterprise
5029
+ ero@@
5030
+ eurozone
5031
+ input
5032
+ interoperability
5033
+ principal
5034
+ radi@@
5035
+ tured
5036
+ 60%
5037
+ 9/@@
5038
+ allies
5039
+ channels
5040
+ conf@@
5041
+ faces
5042
+ fic@@
5043
+ forestry
5044
+ hec@@
5045
+ id
5046
+ quantities
5047
+ satellite
5048
+ soft
5049
+ stimu@@
5050
+ traceability
5051
+ tremendous
5052
+ wonderful
5053
+ absor@@
5054
+ ative
5055
+ audiovisual
5056
+ ber
5057
+ bill
5058
+ communicate
5059
+ ep
5060
+ everyday
5061
+ inter-@@
5062
+ investigate
5063
+ life@@
5064
+ poorer
5065
+ recommen@@
5066
+ returned
5067
+ smo@@
5068
+ smu@@
5069
+ switzerland
5070
+ tape
5071
+ topical
5072
+ /2005
5073
+ abolished
5074
+ child@@
5075
+ clari@@
5076
+ clarified
5077
+ contradiction
5078
+ diverse
5079
+ empty
5080
+ ensured
5081
+ gent
5082
+ governed
5083
+ ise
5084
+ lap@@
5085
+ ownership
5086
+ problematic
5087
+ py@@
5088
+ socially
5089
+ tch
5090
+ tig@@
5091
+ tter@@
5092
+ wake
5093
+ assessed
5094
+ canada
5095
+ coal
5096
+ crimin@@
5097
+ hesi@@
5098
+ lic
5099
+ messages
5100
+ patents
5101
+ refusal
5102
+ seat
5103
+ 2020
5104
+ backed
5105
+ beau@@
5106
+ circ@@
5107
+ consent
5108
+ cost-@@
5109
+ deci@@
5110
+ envis@@
5111
+ govern@@
5112
+ homes
5113
+ limiting
5114
+ pair
5115
+ remark
5116
+ succes@@
5117
+ swift
5118
+ adapted
5119
+ announ@@
5120
+ announcement
5121
+ comparable
5122
+ dre@@
5123
+ feasible
5124
+ illegally
5125
+ inappropriate
5126
+ irresponsible
5127
+ kets
5128
+ lam@@
5129
+ mem@@
5130
+ metres
5131
+ paris
5132
+ pharmaceutical
5133
+ poin@@
5134
+ positively
5135
+ seats
5136
+ supple@@
5137
+ tele@@
5138
+ tivity
5139
+ ultimate
5140
+ advocates
5141
+ attempting
5142
+ cata@@
5143
+ chair
5144
+ expressly
5145
+ forth
5146
+ isolated
5147
+ pin@@
5148
+ radio
5149
+ reminded
5150
+ write
5151
+ 42
5152
+ adding
5153
+ arrangement
5154
+ champi@@
5155
+ consists
5156
+ dif@@
5157
+ hong
5158
+ low@@
5159
+ purcha@@
5160
+ registered
5161
+ sell
5162
+ spon@@
5163
+ tis@@
5164
+ zero
5165
+ 195@@
5166
+ ared
5167
+ casting
5168
+ casts
5169
+ dear
5170
+ describe
5171
+ discriminatory
5172
+ humane
5173
+ ini
5174
+ kong
5175
+ missed
5176
+ ov
5177
+ prostitution
5178
+ reli@@
5179
+ zi@@
5180
+ anywhere
5181
+ broken
5182
+ exploited
5183
+ famous
5184
+ inequality
5185
+ inspections
5186
+ intelligent
5187
+ nigeria
5188
+ objections
5189
+ oured
5190
+ pay@@
5191
+ profound
5192
+ run@@
5193
+ sig@@
5194
+ 8/@@
5195
+ alo@@
5196
+ caucasus
5197
+ conservatives
5198
+ dating
5199
+ enhancing
5200
+ enthusiasm
5201
+ explicit
5202
+ interventions
5203
+ mother
5204
+ quick
5205
+ shame
5206
+ storage
5207
+ workforce
5208
+ adap@@
5209
+ demonstration
5210
+ entails
5211
+ expla@@
5212
+ nis@@
5213
+ protectionism
5214
+ sahar@@
5215
+ st-@@
5216
+ teach@@
5217
+ usted
5218
+ vege@@
5219
+ yo@@
5220
+ avoi@@
5221
+ bound@@
5222
+ commerce
5223
+ convincing
5224
+ cross-@@
5225
+ dedicated
5226
+ duly
5227
+ footing
5228
+ frame
5229
+ generated
5230
+ gets
5231
+ guilty
5232
+ meters
5233
+ persisten@@
5234
+ prestige
5235
+ she@@
5236
+ tality
5237
+ tings
5238
+ wallström
5239
+ availability
5240
+ bled
5241
+ consolidated
5242
+ disgr@@
5243
+ girls
5244
+ journ@@
5245
+ manufacturing
5246
+ muslim
5247
+ preven@@
5248
+ pro-@@
5249
+ reunification
5250
+ sold
5251
+ suspi@@
5252
+ tuna
5253
+ challen@@
5254
+ chancellor
5255
+ colombia
5256
+ confir@@
5257
+ continuation
5258
+ data@@
5259
+ dden
5260
+ dged
5261
+ emed
5262
+ enforce
5263
+ epide@@
5264
+ findings
5265
+ friday
5266
+ integrating
5267
+ investing
5268
+ moderni@@
5269
+ normally
5270
+ pled
5271
+ ply
5272
+ power@@
5273
+ relative
5274
+ toys
5275
+ vis
5276
+ abolish
5277
+ appeared
5278
+ cfp
5279
+ cuban
5280
+ empha@@
5281
+ exposed
5282
+ g8
5283
+ lli@@
5284
+ rer
5285
+ sors
5286
+ tabling
5287
+ trends
5288
+ absta@@
5289
+ bloo@@
5290
+ dres@@
5291
+ ending
5292
+ inspectors
5293
+ isolation
5294
+ lary
5295
+ psycho@@
5296
+ roo@@
5297
+ rupt
5298
+ sement
5299
+ sers
5300
+ ses@@
5301
+ watson
5302
+ wel@@
5303
+ wide-ranging
5304
+ 196@@
5305
+ 9%
5306
+ ama@@
5307
+ believed
5308
+ breaking
5309
+ capacities
5310
+ combination
5311
+ condemnation
5312
+ deplor@@
5313
+ enjo@@
5314
+ fault
5315
+ hu
5316
+ impro@@
5317
+ meanwhile
5318
+ prevail
5319
+ surplus
5320
+ techni@@
5321
+ warming
5322
+ 1995
5323
+ acquired
5324
+ bat@@
5325
+ concepts
5326
+ deregu@@
5327
+ discrimin@@
5328
+ lun@@
5329
+ sad@@
5330
+ signals
5331
+ vir@@
5332
+ atmosphere
5333
+ basque
5334
+ concluding
5335
+ country@@
5336
+ cul@@
5337
+ disadvantaged
5338
+ estimates
5339
+ gras@@
5340
+ imagin@@
5341
+ israelis
5342
+ istic
5343
+ migrant
5344
+ organis@@
5345
+ pal@@
5346
+ prerequisite
5347
+ remote
5348
+ vol@@
5349
+ 3/@@
5350
+ abi@@
5351
+ conjunction
5352
+ differently
5353
+ instruc@@
5354
+ introduc@@
5355
+ manoeuv@@
5356
+ of-@@
5357
+ publicly
5358
+ responding
5359
+ sale
5360
+ tle
5361
+ transposition
5362
+ uphold
5363
+ afghan
5364
+ circu@@
5365
+ contributes
5366
+ free@@
5367
+ good@@
5368
+ gor@@
5369
+ harbour
5370
+ modi@@
5371
+ moves
5372
+ prosecu@@
5373
+ routes
5374
+ rs
5375
+ swoboda
5376
+ symbolic
5377
+ there@@
5378
+ transactions
5379
+ units
5380
+ vietnam
5381
+ wind
5382
+ yle
5383
+ 29@@
5384
+ breast
5385
+ eib
5386
+ exert
5387
+ expenses
5388
+ feels
5389
+ fleets
5390
+ four@@
5391
+ hed
5392
+ invitation
5393
+ pre-accession
5394
+ preserving
5395
+ sensitivity
5396
+ take@@
5397
+ acade@@
5398
+ admittedly
5399
+ bosnia
5400
+ bree@@
5401
+ bulg@@
5402
+ college
5403
+ combine
5404
+ confidenti@@
5405
+ cross
5406
+ deficits
5407
+ director@@
5408
+ gaining
5409
+ iness
5410
+ medicinal
5411
+ mism
5412
+ muni@@
5413
+ plus
5414
+ producer
5415
+ reinforced
5416
+ them@@
5417
+ twenty
5418
+ cer@@
5419
+ distin@@
5420
+ enjoyed
5421
+ exten@@
5422
+ indicates
5423
+ infringements
5424
+ jan
5425
+ lays
5426
+ owners
5427
+ preva@@
5428
+ reverse
5429
+ washington
5430
+ aiming
5431
+ alarming
5432
+ comm@@
5433
+ consci@@
5434
+ conscience
5435
+ derogations
5436
+ destro@@
5437
+ devote
5438
+ dness
5439
+ dyna@@
5440
+ eas@@
5441
+ graphy
5442
+ modest
5443
+ noticed
5444
+ remit
5445
+ rhetoric
5446
+ ro
5447
+ toxic
5448
+ watch
5449
+ weigh@@
5450
+ albania
5451
+ arran@@
5452
+ bottom
5453
+ explanatory
5454
+ focuses
5455
+ guide
5456
+ invested
5457
+ laundering
5458
+ lity
5459
+ misu@@
5460
+ osce
5461
+ person@@
5462
+ phrase
5463
+ promotes
5464
+ runs
5465
+ survive
5466
+ unequivo@@
5467
+ villa@@
5468
+ yment
5469
+ 4/@@
5470
+ 48
5471
+ 70%
5472
+ await
5473
+ components
5474
+ derogation
5475
+ dou@@
5476
+ enforced
5477
+ high-level
5478
+ hydro@@
5479
+ incidentally
5480
+ indispensable
5481
+ installa@@
5482
+ lined
5483
+ opponents
5484
+ overwhelming
5485
+ persecution
5486
+ precedent
5487
+ adjustments
5488
+ airline
5489
+ avoiding
5490
+ energies
5491
+ facilitating
5492
+ frontex
5493
+ invo@@
5494
+ judiciary
5495
+ lying
5496
+ privileged
5497
+ recorded
5498
+ roadmap
5499
+ secondary
5500
+ shortage
5501
+ sp
5502
+ t-wing
5503
+ thinks
5504
+ tion’
5505
+ common@@
5506
+ contin@@
5507
+ de-@@
5508
+ dead@@
5509
+ electorate
5510
+ exacer@@
5511
+ fic
5512
+ gulf
5513
+ inequalities
5514
+ rejecting
5515
+ sar@@
5516
+ satisfy
5517
+ strive
5518
+ tes@@
5519
+ tries
5520
+ vaccination
5521
+ vali@@
5522
+ virtu@@
5523
+ vis@@
5524
+ 1992
5525
+ besides
5526
+ confu@@
5527
+ country’s
5528
+ eli@@
5529
+ intolerable
5530
+ label
5531
+ lessly
5532
+ nt
5533
+ plen@@
5534
+ proces@@
5535
+ quantity
5536
+ solving
5537
+ sses
5538
+ stresses
5539
+ aps
5540
+ argu@@
5541
+ ario
5542
+ bir@@
5543
+ charged
5544
+ cns
5545
+ cold
5546
+ conven@@
5547
+ defe@@
5548
+ delivery
5549
+ emerge
5550
+ fr@@
5551
+ genous
5552
+ lesson
5553
+ margin
5554
+ michel
5555
+ non-proliferation
5556
+ q@@
5557
+ ssi@@
5558
+ taiwan
5559
+ teachers
5560
+ three@@
5561
+ trained
5562
+ worthwhile
5563
+ arch@@
5564
+ blu@@
5565
+ earmarked
5566
+ finished
5567
+ flag
5568
+ gement
5569
+ gran@@
5570
+ lawyers
5571
+ lib@@
5572
+ listed
5573
+ lls
5574
+ mail
5575
+ multinationals
5576
+ prote@@
5577
+ secre@@
5578
+ thematic
5579
+ twelve
5580
+ urged
5581
+ cin@@
5582
+ counter-@@
5583
+ cover@@
5584
+ ct
5585
+ delayed
5586
+ deliber@@
5587
+ doctors
5588
+ fre@@
5589
+ harmon@@
5590
+ orientation
5591
+ punished
5592
+ se-@@
5593
+ shame@@
5594
+ structured
5595
+ swee@@
5596
+ tan
5597
+ wan@@
5598
+ xic@@
5599
+ abandoned
5600
+ ade
5601
+ ang@@
5602
+ beneficiaries
5603
+ bran@@
5604
+ breaks
5605
+ conferences
5606
+ guardi@@
5607
+ halt
5608
+ le-@@
5609
+ memb@@
5610
+ postpon@@
5611
+ quarter
5612
+ sharon
5613
+ slovenian
5614
+ straigh@@
5615
+ +
5616
+ capitali@@
5617
+ coordinating
5618
+ denoun@@
5619
+ grown
5620
+ ign@@
5621
+ innov@@
5622
+ ira
5623
+ kis
5624
+ mc@@
5625
+ proactive
5626
+ profi@@
5627
+ sectoral
5628
+ textiles
5629
+ thoughts
5630
+ unified
5631
+ unit
5632
+ wholly
5633
+ wron@@
5634
+ barón
5635
+ book
5636
+ bridge
5637
+ confin@@
5638
+ depth
5639
+ ert
5640
+ fur@@
5641
+ gm
5642
+ indirect
5643
+ insu@@
5644
+ kinnock
5645
+ match
5646
+ mou@@
5647
+ non@@
5648
+ persi@@
5649
+ split
5650
+ tage
5651
+ translation
5652
+ 2015
5653
+ aspirations
5654
+ bans
5655
+ delicate
5656
+ demonstrations
5657
+ eable
5658
+ elimination
5659
+ fruitful
5660
+ gged
5661
+ injur@@
5662
+ momentum
5663
+ nings
5664
+ occurr@@
5665
+ punishment
5666
+ reforming
5667
+ scandal
5668
+ shoulder
5669
+ sooner
5670
+ unprecedented
5671
+ update
5672
+ adaptation
5673
+ affair
5674
+ ale
5675
+ author@@
5676
+ balkan
5677
+ cere@@
5678
+ channel
5679
+ conventional
5680
+ corner@@
5681
+ cosme@@
5682
+ differing
5683
+ disarmament
5684
+ displaced
5685
+ duplica@@
5686
+ esta@@
5687
+ fit@@
5688
+ grade
5689
+ k-@@
5690
+ ner@@
5691
+ rid
5692
+ rigi@@
5693
+ san
5694
+ tate
5695
+ than@@
5696
+ 38
5697
+ 6/@@
5698
+ airspace
5699
+ apologise
5700
+ bears
5701
+ biotechnology
5702
+ brid@@
5703
+ constituency
5704
+ courageous
5705
+ disparities
5706
+ fores@@
5707
+ groundwater
5708
+ harmonising
5709
+ instability
5710
+ judges
5711
+ mandelson
5712
+ merits
5713
+ patien@@
5714
+ relationships
5715
+ shop
5716
+ summits
5717
+ suppor@@
5718
+ surprising
5719
+ tend
5720
+ touched
5721
+ transnational
5722
+ tunisia
5723
+ vague
5724
+ vienna
5725
+ wanting
5726
+ allevi@@
5727
+ aus@@
5728
+ beijing
5729
+ comfor@@
5730
+ complement
5731
+ dently
5732
+ group@@
5733
+ jarzembowski
5734
+ ky
5735
+ laun@@
5736
+ livestock
5737
+ manufactu@@
5738
+ pel
5739
+ preferred
5740
+ prisons
5741
+ regrettably
5742
+ screening
5743
+ securing
5744
+ summary
5745
+ teams
5746
+ teen@@
5747
+ thetic
5748
+ 2000@@
5749
+ abortion
5750
+ accumu@@
5751
+ agreeing
5752
+ black@@
5753
+ cfsp
5754
+ compri@@
5755
+ del@@
5756
+ identification
5757
+ outbreak
5758
+ player
5759
+ propaganda
5760
+ separation
5761
+ set@@
5762
+ sity
5763
+ tariff
5764
+ undermined
5765
+ violated
5766
+ adminis@@
5767
+ ay@@
5768
+ banning
5769
+ dings
5770
+ encourages
5771
+ ever-@@
5772
+ exclu@@
5773
+ imperialist
5774
+ inciner@@
5775
+ jac@@
5776
+ killing
5777
+ mexico
5778
+ papers
5779
+ preci@@
5780
+ realities
5781
+ ref@@
5782
+ seville
5783
+ simplifying
5784
+ theme
5785
+ throw
5786
+ understandable
5787
+ wh@@
5788
+ á@@
5789
+ 5/@@
5790
+ auth@@
5791
+ care@@
5792
+ continuity
5793
+ deal@@
5794
+ deliberately
5795
+ discovered
5796
+ fair@@
5797
+ fisher@@
5798
+ foot-and-mouth
5799
+ gover@@
5800
+ ice
5801
+ ities
5802
+ kurdish
5803
+ residents
5804
+ scot@@
5805
+ ud
5806
+ volunte@@
5807
+
5808
+ 1994
5809
+ agents
5810
+ ass@@
5811
+ attended
5812
+ convenience
5813
+ corbett
5814
+ engagement
5815
+ foot@@
5816
+ istan
5817
+ kilo@@
5818
+ legiti@@
5819
+ licen@@
5820
+ ll-@@
5821
+ oper@@
5822
+ provin@@
5823
+ responded
5824
+ returning
5825
+ ridi@@
5826
+ simultane@@
5827
+ stan
5828
+ subjected
5829
+ threaten
5830
+ tise
5831
+ und@@
5832
+ vocational
5833
+ adul@@
5834
+ arisen
5835
+ definitive
5836
+ discipline
5837
+ drin@@
5838
+ houses
5839
+ lec@@
5840
+ mese
5841
+ reserves
5842
+ rever@@
5843
+ ron@@
5844
+ secur@@
5845
+ successes
5846
+ workable
5847
+ depending
5848
+ deser@@
5849
+ disappointment
5850
+ drew
5851
+ favoured
5852
+ glob@@
5853
+ herzegovina
5854
+ indirectly
5855
+ lla
5856
+ mountain
5857
+ pati@@
5858
+ ra
5859
+ semi@@
5860
+ sexu@@
5861
+ stream@@
5862
+ tised
5863
+ tter
5864
+ t’s
5865
+ viewed
5866
+ ador
5867
+ balances
5868
+ commodi@@
5869
+ costa
5870
+ dance
5871
+ detrimental
5872
+ dioxide
5873
+ doc@@
5874
+ ened
5875
+ feed@@
5876
+ fortun@@
5877
+ immense
5878
+ ingredi@@
5879
+ o-@@
5880
+ outline
5881
+ peri@@
5882
+ prejudice
5883
+ pursuit
5884
+ slowly
5885
+ tension
5886
+ threa@@
5887
+ worker
5888
+ 21st
5889
+ 55
5890
+ ak
5891
+ anism
5892
+ compare
5893
+ counterfeiting
5894
+ crespo
5895
+ diagno@@
5896
+ execution
5897
+ faster
5898
+ ff@@
5899
+ fill
5900
+ hel@@
5901
+ hypo@@
5902
+ implies
5903
+ insecurity
5904
+ interfere
5905
+ iro
5906
+ logic
5907
+ nur@@
5908
+ placement
5909
+ presidency@@
5910
+ proves
5911
+ relevance
5912
+ revealed
5913
+ seemed
5914
+ senten@@
5915
+ specified
5916
+ subscri@@
5917
+ supporters
5918
+ supranational
5919
+ under-@@
5920
+ zones
5921
+ 33
5922
+ alar@@
5923
+ classification
5924
+ contamination
5925
+ convey
5926
+ degra@@
5927
+ deterior@@
5928
+ employ@@
5929
+ escal@@
5930
+ formulated
5931
+ gest
5932
+ identi@@
5933
+ jec@@
5934
+ let@@
5935
+ martin
5936
+ migratory
5937
+ pleas@@
5938
+ policy@@
5939
+ profile
5940
+ resort
5941
+ sessions
5942
+ stream
5943
+ trage@@
5944
+ world’s
5945
+ ‘the
5946
+ bin
5947
+ chapters
5948
+ concentrated
5949
+ deprived
5950
+ ef
5951
+ encouragement
5952
+ exces@@
5953
+ indications
5954
+ individu@@
5955
+ instances
5956
+ lers
5957
+ lift
5958
+ ny
5959
+ paral@@
5960
+ ples
5961
+ presu@@
5962
+ recourse
5963
+ restriction
5964
+ swiftly
5965
+ venture
5966
+ -scale
5967
+ accepts
5968
+ appropriately
5969
+ breaches
5970
+ demonstrating
5971
+ devastating
5972
+ errors
5973
+ expresses
5974
+ finds
5975
+ foodstuffs
5976
+ functional
5977
+ ire@@
5978
+ irs
5979
+ mag@@
5980
+ metho@@
5981
+ nomin@@
5982
+ orders
5983
+ perform
5984
+ renewal
5985
+ selling
5986
+ share@@
5987
+ ster
5988
+ titudes
5989
+ veterinary
5990
+ vie@@
5991
+ accountable
5992
+ anci@@
5993
+ cauti@@
5994
+ complexity
5995
+ drastic
5996
+ formed
5997
+ formula
5998
+ frequent
5999
+ ians
6000
+ identifying
6001
+ incredibly
6002
+ negoti@@
6003
+ parado@@
6004
+ percep@@
6005
+ pregn@@
6006
+ proliferation
6007
+ publication
6008
+ ral
6009
+ reformed
6010
+ reluc@@
6011
+ ron
6012
+ slaughter
6013
+ tourist
6014
+ trave@@
6015
+ administrations
6016
+ adver@@
6017
+ analyses
6018
+ aro@@
6019
+ ator
6020
+ belonging
6021
+ coexistence
6022
+ domain
6023
+ edf
6024
+ eg@@
6025
+ galicia
6026
+ imp@@
6027
+ knowing
6028
+ memory
6029
+ minim@@
6030
+ postponed
6031
+ pressed
6032
+ priva@@
6033
+ reactions
6034
+ refu@@
6035
+ remedy
6036
+ restricting
6037
+ serbi@@
6038
+ suicide
6039
+ teries
6040
+ unilater@@
6041
+ witness
6042
+ attribu@@
6043
+ bag@@
6044
+ cam@@
6045
+ chad
6046
+ condemning
6047
+ creative
6048
+ depar@@
6049
+ eld
6050
+ eliminating
6051
+ gues
6052
+ heavily
6053
+ journey
6054
+ lengthy
6055
+ m-@@
6056
+ philosophy
6057
+ premature
6058
+ profitable
6059
+ selection
6060
+ technically
6061
+ veto
6062
+ website
6063
+ 90
6064
+ burdens
6065
+ determining
6066
+ hatred
6067
+ hypocrisy
6068
+ incomprehensible
6069
+ kur@@
6070
+ league
6071
+ logically
6072
+ matically
6073
+ mercosur
6074
+ modu@@
6075
+ multiannual
6076
+ multinational
6077
+ naz@@
6078
+ officially
6079
+ pity
6080
+ promising
6081
+ site
6082
+ spre@@
6083
+ ste
6084
+ strange
6085
+ tress
6086
+ valu@@
6087
+ who@@
6088
+ annan
6089
+ anybody
6090
+ ato@@
6091
+ belon@@
6092
+ career
6093
+ ces@@
6094
+ continuous
6095
+ cypriot
6096
+ dublin
6097
+ enfor@@
6098
+ exer@@
6099
+ foo@@
6100
+ genetic
6101
+ god
6102
+ handled
6103
+ officers
6104
+ organs
6105
+ pluralism
6106
+ racist
6107
+ requiring
6108
+ sil@@
6109
+ slova@@
6110
+ slow@@
6111
+ stimulate
6112
+ thessaloniki
6113
+ underlined
6114
+ 100%
6115
+ 1990
6116
+ advances
6117
+ attr@@
6118
+ certification
6119
+ circulation
6120
+ co
6121
+ cyc@@
6122
+ dies
6123
+ disability
6124
+ ensures
6125
+ extremism
6126
+ fragi@@
6127
+ frank
6128
+ gal@@
6129
+ ises
6130
+ issuing
6131
+ mainstreaming
6132
+ navig@@
6133
+ oc@@
6134
+ operates
6135
+ politici@@
6136
+ predeces@@
6137
+ pride
6138
+ pushing
6139
+ quartet
6140
+ rapporteur’s
6141
+ sak@@
6142
+ tariffs
6143
+ ugh@@
6144
+ var@@
6145
+ wave
6146
+ defici@@
6147
+ depen@@
6148
+ eag@@
6149
+ eligible
6150
+ eurojust
6151
+ even@@
6152
+ eviden@@
6153
+ infring@@
6154
+ mics
6155
+ much-@@
6156
+ offence
6157
+ reconcile
6158
+ sibly
6159
+ skil@@
6160
+ ticism
6161
+ view@@
6162
+ won@@
6163
+ ‘no’
6164
+ ambas@@
6165
+ ase@@
6166
+ attrac@@
6167
+ awaiting
6168
+ carriers
6169
+ christi@@
6170
+ emb@@
6171
+ expand
6172
+ mixed
6173
+ newspaper
6174
+ opti@@
6175
+ owe
6176
+ pick
6177
+ posselt
6178
+ professionals
6179
+ reception
6180
+ sc@@
6181
+ substantive
6182
+ suddenly
6183
+ totalitarian
6184
+ tunnel
6185
+ welcoming
6186
+ y’
6187
+ 44
6188
+ arbitrary
6189
+ argued
6190
+ bels
6191
+ bit@@
6192
+ brutal
6193
+ christmas
6194
+ coordinator
6195
+ definite
6196
+ dimensions
6197
+ evol@@
6198
+ globalised
6199
+ hitherto
6200
+ inland
6201
+ kee@@
6202
+ liberty
6203
+ north-@@
6204
+ optimistic
6205
+ pipeline
6206
+ preservation
6207
+ speaks
6208
+ tel@@
6209
+ accusations
6210
+ age@@
6211
+ architec@@
6212
+ birds
6213
+ cloning
6214
+ computer
6215
+ cooperative
6216
+ decoupling
6217
+ hide
6218
+ incomes
6219
+ judgments
6220
+ lamy
6221
+ lear@@
6222
+ lin
6223
+ meaningful
6224
+ measured
6225
+ mutually
6226
+ neighbour
6227
+ proportionality
6228
+ shu@@
6229
+ streets
6230
+ subsidy
6231
+ ti
6232
+ tradi@@
6233
+ troika
6234
+ art
6235
+ consult
6236
+ deni@@
6237
+ exhaus@@
6238
+ favour@@
6239
+ founding
6240
+ insta@@
6241
+ lings
6242
+ moscow
6243
+ nee@@
6244
+ neutral
6245
+ observ@@
6246
+ painful
6247
+ purchase
6248
+ repres@@
6249
+ smooth
6250
+ taxpay@@
6251
+ utterly
6252
+ well-known
6253
+ adult
6254
+ anyway
6255
+ beli@@
6256
+ che
6257
+ deterioration
6258
+ diminis@@
6259
+ distortions
6260
+ financially
6261
+ grow@@
6262
+ inva@@
6263
+ kes@@
6264
+ lacks
6265
+ legislator
6266
+ lifting
6267
+ nationality
6268
+ no-@@
6269
+ paci@@
6270
+ petition
6271
+ preten@@
6272
+ public@@
6273
+ reconci@@
6274
+ refusing
6275
+ regulating
6276
+ scour@@
6277
+ senior
6278
+ sentences
6279
+ splen@@
6280
+ thr@@
6281
+ unsatisfactory
6282
+ –@@
6283
+ allowances
6284
+ bank@@
6285
+ cease
6286
+ coast@@
6287
+ cooperating
6288
+ deliberations
6289
+ engine@@
6290
+ exact
6291
+ ideology
6292
+ iled
6293
+ insul@@
6294
+ interven@@
6295
+ ired
6296
+ ki
6297
+ lt
6298
+ miss
6299
+ preference
6300
+ records
6301
+ theory
6302
+ weekend
6303
+ 6-00@@
6304
+ 90%
6305
+ aboli@@
6306
+ acquire
6307
+ box
6308
+ complaint
6309
+ deleg@@
6310
+ entail
6311
+ existed
6312
+ forma@@
6313
+ harassment
6314
+ incompatible
6315
+ ing-up
6316
+ ita
6317
+ jeopar@@
6318
+ militar@@
6319
+ obstruc@@
6320
+ salaries
6321
+ tibe@@
6322
+ tton
6323
+ attaches
6324
+ autonomous
6325
+ awarded
6326
+ bid
6327
+ cambodia
6328
+ centuries
6329
+ culous
6330
+ denti@@
6331
+ disrup@@
6332
+ earth@@
6333
+ economi@@
6334
+ excessively
6335
+ gy@@
6336
+ insofar
6337
+ manipu@@
6338
+ oning
6339
+ pac@@
6340
+ pher@@
6341
+ postpone
6342
+ prosecution
6343
+ rig@@
6344
+ south-east
6345
+ suspension
6346
+ tendency
6347
+ thin@@
6348
+ tiful
6349
+ tto
6350
+ turkey’s
6351
+ vigilant
6352
+ advocated
6353
+ aw@@
6354
+ bol
6355
+ cigare@@
6356
+ exposure
6357
+ green@@
6358
+ hoping
6359
+ hospi@@
6360
+ illu@@
6361
+ internally
6362
+ ir
6363
+ manag@@
6364
+ menta@@
6365
+ mentions
6366
+ merit
6367
+ oce@@
6368
+ opt
6369
+ quantitative
6370
+ recipi@@
6371
+ reim@@
6372
+ reiterated
6373
+ schedule
6374
+ statu@@
6375
+ street
6376
+ suspend
6377
+ swit@@
6378
+ telephone
6379
+ ukrainian
6380
+ vitally
6381
+ 1/@@
6382
+ 15%
6383
+ adhere
6384
+ asks
6385
+ aston@@
6386
+ authors
6387
+ budge@@
6388
+ burg
6389
+ clothing
6390
+ complementary
6391
+ cultivation
6392
+ departments
6393
+ disappeared
6394
+ emphasising
6395
+ explor@@
6396
+ indepen@@
6397
+ ja@@
6398
+ mouth
6399
+ opera@@
6400
+ ore@@
6401
+ organisms
6402
+ retained
6403
+ safeguarded
6404
+ serv@@
6405
+ spor@@
6406
+ supplement
6407
+ supreme
6408
+ susta@@
6409
+ unded
6410
+ vigorously
6411
+ vity
6412
+ albanian
6413
+ all-@@
6414
+ apo@@
6415
+ artificial
6416
+ avian
6417
+ bali
6418
+ cely
6419
+ coinci@@
6420
+ contradictory
6421
+ destabili@@
6422
+ eigh@@
6423
+ ethiopia
6424
+ fal@@
6425
+ feelings
6426
+ impressive
6427
+ informing
6428
+ knew
6429
+ leas@@
6430
+ moder@@
6431
+ multilingu@@
6432
+ needless
6433
+ obli@@
6434
+ occupational
6435
+ opposing
6436
+ pragmatic
6437
+ refrain
6438
+ thirds
6439
+ trains
6440
+ transforma@@
6441
+ 150
6442
+ chea@@
6443
+ church
6444
+ compatibility
6445
+ compu@@
6446
+ directorate@@
6447
+ disappointing
6448
+ dismantling
6449
+ employe@@
6450
+ evil
6451
+ exceed
6452
+ excellence
6453
+ flags
6454
+ incur@@
6455
+ insisted
6456
+ las
6457
+ leban@@
6458
+ neo-@@
6459
+ open@@
6460
+ publish
6461
+ recal@@
6462
+ reflec@@
6463
+ shif@@
6464
+ weakness
6465
+ wood
6466
+ 1993
6467
+ 36
6468
+ accu@@
6469
+ algeria
6470
+ arafat
6471
+ certifica@@
6472
+ condi@@
6473
+ cyprio@@
6474
+ dual
6475
+ esi@@
6476
+ fold
6477
+ free-@@
6478
+ highligh@@
6479
+ meda
6480
+ moderate
6481
+ optimism
6482
+ pow@@
6483
+ recti@@
6484
+ sheep
6485
+ stron@@
6486
+ undermining
6487
+ weapon
6488
+ wishing
6489
+ yugoslav
6490
+ 60@@
6491
+ accoun@@
6492
+ barnier
6493
+ cher@@
6494
+ dam
6495
+ enem@@
6496
+ hiv/@@
6497
+ hosti@@
6498
+ reci@@
6499
+ roga@@
6500
+ rought
6501
+ station
6502
+ 39
6503
+ 40@@
6504
+ abandon@@
6505
+ aria
6506
+ berlusconi
6507
+ dio@@
6508
+ eldr
6509
+ ele@@
6510
+ emp@@
6511
+ ka
6512
+ mir
6513
+ ni
6514
+ radio@@
6515
+ tia
6516
+ tone
6517
+ 34
6518
+ ai
6519
+ atro@@
6520
+ corri@@
6521
+ dispu@@
6522
+ erasmus
6523
+ ish@@
6524
+ main@@
6525
+ nielson
6526
+ preser@@
6527
+ seri@@
6528
+ sten@@
6529
+ tv
6530
+ 41
6531
+ bol@@
6532
+ character@@
6533
+ manufac@@
6534
+ nex@@
6535
+ oo@@
6536
+ ori
6537
+ regis@@
6538
+ sson
6539
+ teri@@
6540
+ whe@@
6541
+ /01
6542
+ 43
6543
+ bes
6544
+ byrne
6545
+ clubs
6546
+ conduc@@
6547
+ discrepan@@
6548
+ fe
6549
+ hand@@
6550
+ newspa@@
6551
+ permi@@
6552
+ š@@
6553
+ 2/@@
6554
+ activis@@
6555
+ blan@@
6556
+ contra@@
6557
+ fea@@
6558
+ force@@
6559
+ gol@@
6560
+ islam
6561
+ kash@@
6562
+ malaria
6563
+ nal
6564
+ stood
6565
+ tish
6566
+ transfer@@
6567
+ union@@
6568
+ yon@@
6569
+ youn@@
6570
+ ambigu@@
6571
+ appropri@@
6572
+ attemp@@
6573
+ colon@@
6574
+ dog@@
6575
+ frame@@
6576
+ iming
6577
+ intimi@@
6578
+ referen@@
6579
+ sui@@
6580
+ adop@@
6581
+ aled
6582
+ ales
6583
+ floo@@
6584
+ ig@@
6585
+ intermedi@@
6586
+ mas
6587
+ tine
6588
+ tments
6589
+ tribunal
6590
+ authori@@
6591
+ barri@@
6592
+ cia
6593
+ copyright
6594
+ ei@@
6595
+ kalinin@@
6596
+ porno@@
6597
+ und
6598
+ accur@@
6599
+ achiev@@
6600
+ advo@@
6601
+ escape
6602
+ feira
6603
+ guar@@
6604
+ nas@@
6605
+ persua@@
6606
+ plur@@
6607
+ sensi@@
6608
+ tti
6609
+ depart@@
6610
+ geno@@
6611
+ ison
6612
+ istan@@
6613
+ j
6614
+ mccreevy
6615
+ pa
6616
+ virus
6617
+ a5-03@@
6618
+ atory
6619
+ begin@@
6620
+ bel
6621
+ bom@@
6622
+ compi@@
6623
+ equitable
6624
+ frequ@@
6625
+ his@@
6626
+ incu@@
6627
+ jects
6628
+ may@@
6629
+ 49
6630
+ belar@@
6631
+ chur@@
6632
+ circum@@
6633
+ corpor@@
6634
+ dents
6635
+ edu@@
6636
+ fers
6637
+ iii
6638
+ persecu@@
6639
+ phenomen@@
6640
+ presen@@
6641
+ remedi@@
6642
+ -2006
6643
+ 2001/@@
6644
+ 7/@@
6645
+ chech@@
6646
+ choo@@
6647
+ concer@@
6648
+ depri@@
6649
+ inde@@
6650
+ of@@
6651
+ crow@@
6652
+ demo@@
6653
+ horri@@
6654
+ indonesia
6655
+ insti@@
6656
+ row
6657
+ senti@@
6658
+ settle@@
6659
+ torial
6660
+ use@@
6661
+ ables
6662
+ concep@@
6663
+ convi@@
6664
+ g-@@
6665
+ hen@@
6666
+ multilater@@
6667
+ pose@@
6668
+ representa@@
6669
+ sympa@@
6670
+ ye@@
6671
+ 26@@
6672
+ bangladesh
6673
+ cohn-bendit
6674
+ colonial
6675
+ controver@@
6676
+ eve
6677
+ hope@@
6678
+ intoler@@
6679
+ municip@@
6680
+ musi@@
6681
+ tising
6682
+ é
6683
+ 50@@
6684
+ advis@@
6685
+ armen@@
6686
+ az@@
6687
+ discre@@
6688
+ emer@@
6689
+ hier@@
6690
+ lobby
6691
+ ory
6692
+ stre@@
6693
+ von
6694
+ z-@@
6695
+ adher@@
6696
+ oli@@
6697
+ pit@@
6698
+ remuner@@
6699
+ scienti@@
6700
+ tour@@
6701
+ 600
6702
+ awar@@
6703
+ busin@@
6704
+ confederal
6705
+ conne@@
6706
+ ghted
6707
+ inser@@
6708
+ know@@
6709
+ lions
6710
+ logies
6711
+ nic
6712
+ patri@@
6713
+ retro@@
6714
+ slo@@
6715
+ -making
6716
+ agen@@
6717
+ ami@@
6718
+ aqu@@
6719
+ asean
6720
+ associ@@
6721
+ collabor@@
6722
+ colo@@
6723
+ comba@@
6724
+ dow@@
6725
+ esti@@
6726
+ facilita@@
6727
+ gree@@
6728
+ medicin@@
6729
+ reques@@
6730
+ stru@@
6731
+ ε@@
6732
+ 120
6733
+ adjus@@
6734
+ bli@@
6735
+ dedi@@
6736
+ enthusias@@
6737
+ exag@@
6738
+ fan@@
6739
+ fines
6740
+ fish@@
6741
+ ij@@
6742
+ plo@@
6743
+ rea
6744
+ ts@@
6745
+ enor@@
6746
+ haz@@
6747
+ mised
6748
+ opho@@
6749
+ rehabili@@
6750
+ schreyer
6751
+ bru@@
6752
+ coo@@
6753
+ cos
6754
+ dr
6755
+ pat@@
6756
+ plu@@
6757
+ posing
6758
+ provi@@
6759
+ repatri@@
6760
+ aznar
6761
+ club
6762
+ cr@@
6763
+ don
6764
+ dor@@
6765
+ hus@@
6766
+ lon@@
6767
+ los
6768
+ monti
6769
+ region@@
6770
+ resume
6771
+ sations
6772
+ seven@@
6773
+ tats
6774
+ ba
6775
+ ce-@@
6776
+ congratu@@
6777
+ ind/dem
6778
+ maxi@@
6779
+ orit@@
6780
+ pen
6781
+ prosper@@
6782
+ protection@@
6783
+ resu@@
6784
+ rü@@
6785
+ short@@
6786
+ transfor@@
6787
+ tt
6788
+ tte
6789
+ ven
6790
+ 700
6791
+ 95
6792
+ ams
6793
+ aspi@@
6794
+ bin@@
6795
+ kal@@
6796
+ lands
6797
+ mccar@@
6798
+ pes@@
6799
+ provisional
6800
+ short-@@
6801
+ tiv@@
6802
+ trad@@
6803
+ weal@@
6804
+ adequ@@
6805
+ curren@@
6806
+ develop@@
6807
+ dg
6808
+ disciplin@@
6809
+ euratom
6810
+ fru@@
6811
+ semin@@
6812
+ simple@@
6813
+ sin
6814
+ tz
6815
+ è@@
6816
+ /02
6817
+ 142
6818
+ 47
6819
+ allow@@
6820
+ angola
6821
+ böge
6822
+ commit@@
6823
+ confer@@
6824
+ daphne
6825
+ excep@@
6826
+ guinea
6827
+ menda@@
6828
+ n-@@
6829
+ see@@
6830
+ yos
6831
+ a6-0@@
6832
+ abo@@
6833
+ confor@@
6834
+ fro@@
6835
+ ima@@
6836
+ modern@@
6837
+ nai@@
6838
+ pack@@
6839
+ sia
6840
+ sterckx
6841
+ stly
6842
+ stran@@
6843
+ à
6844
+ air@@
6845
+ contribu@@
6846
+ disman@@
6847
+ fron@@
6848
+ neutr@@
6849
+ rem@@
6850
+ ae@@
6851
+ chic@@
6852
+ deter@@
6853
+ gorous
6854
+ inspec@@
6855
+ intercultural
6856
+ ld@@
6857
+ lia
6858
+ revise
6859
+ tini
6860
+ tists
6861
+ and-@@
6862
+ bert
6863
+ counterfe@@
6864
+ critici@@
6865
+ jö@@
6866
+ leve@@
6867
+ mit
6868
+ occur@@
6869
+ opt-out
6870
+ pnr
6871
+ seg@@
6872
+ sness
6873
+ traffic@@
6874
+ uzbek@@
6875
+ amoun@@
6876
+ believ@@
6877
+ c6-0@@
6878
+ commer@@
6879
+ condem@@
6880
+ cox
6881
+ director
6882
+ evans
6883
+ jerus@@
6884
+ ller
6885
+ obliga@@
6886
+ quisi@@
6887
+ robert
6888
+ sugges@@
6889
+ tis
6890
+ 53
6891
+ aches
6892
+ aer@@
6893
+ australia
6894
+ dictator@@
6895
+ diesel
6896
+ earli@@
6897
+ energ@@
6898
+ gau@@
6899
+ inv@@
6900
+ kno@@
6901
+ meter
6902
+ nit@@
6903
+ ops
6904
+ pli@@
6905
+ scien@@
6906
+ si
6907
+ slaugh@@
6908
+ vice-@@
6909
+ á
6910
+ amn@@
6911
+ ana@@
6912
+ gas@@
6913
+ high@@
6914
+ horro@@
6915
+ iraq@@
6916
+ liqui@@
6917
+ negli@@
6918
+ pest
6919
+ scru@@
6920
+ 22@@
6921
+ arres@@
6922
+ balan@@
6923
+ bosni@@
6924
+ contamin@@
6925
+ decisi@@
6926
+ dum
6927
+ expul@@
6928
+ ghts
6929
+ ony@@
6930
+ propor@@
6931
+ real@@
6932
+ tsunami
6933
+ ys@@
6934
+ c5-00@@
6935
+ dow
6936
+ erg@@
6937
+ fed
6938
+ imperi@@
6939
+ sul@@
6940
+ 250
6941
+ 46
6942
+ campaig@@
6943
+ cas@@
6944
+ chirac
6945
+ dw@@
6946
+ evolu@@
6947
+ giene
6948
+ hab@@
6949
+ isla@@
6950
+ net@@
6951
+ phili@@
6952
+ religi@@
6953
+ reven@@
6954
+ sec@@
6955
+ simpli@@
6956
+ tak@@
6957
+ tax@@
6958
+ 800
6959
+ ambi@@
6960
+ dec@@
6961
+ eces
6962
+ figh@@
6963
+ hoc
6964
+ ku@@
6965
+ lehne
6966
+ nez
6967
+ penal
6968
+ petro@@
6969
+ self
6970
+ sep@@
6971
+ strength@@
6972
+ tel
6973
+ 23@@
6974
+ 75
6975
+ abundan@@
6976
+ ania
6977
+ deposi@@
6978
+ karas
6979
+ kor@@
6980
+ mulder
6981
+ musli@@
6982
+ nepal
6983
+ part-@@
6984
+ siz@@
6985
+ sri
6986
+ än@@
6987
+ exha@@
6988
+ interrup@@
6989
+ iv@@
6990
+ kov@@
6991
+ memor@@
6992
+ noun@@
6993
+ pon@@
6994
+ poo@@
6995
+ renew@@
6996
+ reno@@
6997
+ safe@@
6998
+ supervis@@
6999
+ tai@@
7000
+ tisation
7001
+ capi@@
7002
+ castro
7003
+ channe@@
7004
+ chet
7005
+ ferrero-waldner
7006
+ fon@@
7007
+ hit@@
7008
+ perman@@
7009
+ reduc@@
7010
+ refor@@
7011
+ tem@@
7012
+ tile
7013
+ witnes@@
7014
+ xi@@
7015
+ approxi@@
7016
+ arti@@
7017
+ comb@@
7018
+ conflic@@
7019
+ consolida@@
7020
+ das
7021
+ elimin@@
7022
+ hardt
7023
+ inclusive
7024
+ iting
7025
+ long@@
7026
+ migra@@
7027
+ pover@@
7028
+ smoo@@
7029
+ spiri@@
7030
+ stres@@
7031
+ swe@@
7032
+ zo@@
7033
+ bia
7034
+ chocolate
7035
+ clin@@
7036
+ este@@
7037
+ gru@@
7038
+ ky@@
7039
+ mainta@@
7040
+ migu@@
7041
+ nico@@
7042
+ quiri@@
7043
+ south-@@
7044
+ stock@@
7045
+ tial
7046
+ timor
7047
+ vic@@
7048
+ wol@@
7049
+ és
7050
+ 1989
7051
+ 52
7052
+ 65
7053
+ blokland
7054
+ crates
7055
+ els
7056
+ fol@@
7057
+ jus@@
7058
+ ler@@
7059
+ occa@@
7060
+ predomin@@
7061
+ quar@@
7062
+ revolu@@
7063
+ savary
7064
+ stub@@
7065
+ tally
7066
+ admira@@
7067
+ contemp@@
7068
+ dimas
7069
+ fatuzzo
7070
+ ford
7071
+ ints
7072
+ ised
7073
+ mafi@@
7074
+ pack
7075
+ reiter@@
7076
+ rena@@
7077
+ restruc@@
7078
+ tempera@@
7079
+ /2007
7080
+ 51
7081
+ bowis
7082
+ cooper@@
7083
+ curi@@
7084
+ dan
7085
+ dar
7086
+ elite
7087
+ extra@@
7088
+ favo@@
7089
+ ken@@
7090
+ lars
7091
+ opport@@
7092
+ stuffs
7093
+ ur
7094
+ contractual
7095
+ cular
7096
+ demonstra@@
7097
+ deserti@@
7098
+ extraordin@@
7099
+ histor@@
7100
+ ina
7101
+ juncker
7102
+ kaz@@
7103
+ kofi
7104
+ racy
7105
+ survi@@
7106
+ wallis
7107
+ chin@@
7108
+ contro@@
7109
+ croa@@
7110
+ cruel
7111
+ defin@@
7112
+ dy@@
7113
+ ko
7114
+ mozambique
7115
+ muti@@
7116
+ roc@@
7117
+ tus
7118
+ 49@@
7119
+ abe@@
7120
+ absten@@
7121
+ categ@@
7122
+ ctu@@
7123
+ facto
7124
+ florenz
7125
+ impac@@
7126
+ impli@@
7127
+ insisten@@
7128
+ ly@@
7129
+ medium-@@
7130
+ pene@@
7131
+ rese@@
7132
+ ris
7133
+ son@@
7134
+ tori@@
7135
+ 2000/@@
7136
+ 2002/@@
7137
+ arians
7138
+ cism
7139
+ continental
7140
+ depor@@
7141
+ die@@
7142
+ fel@@
7143
+ haarder
7144
+ hospital
7145
+ ite
7146
+ john
7147
+ loc@@
7148
+ mid
7149
+ moroc@@
7150
+ nano@@
7151
+ oi@@
7152
+ quo
7153
+ regre@@
7154
+ stadt
7155
+ subsi@@
7156
+ tible
7157
+ wri@@
7158
+ à@@
7159
+ ara@@
7160
+ bles
7161
+ connec@@
7162
+ destruc@@
7163
+ elev@@
7164
+ fabri@@
7165
+ facili@@
7166
+ ha
7167
+ solven@@
7168
+ 1991
7169
+ admi@@
7170
+ ange@@
7171
+ coordin@@
7172
+ eta
7173
+ frassoni
7174
+ geni@@
7175
+ ilu@@
7176
+ impres@@
7177
+ kin@@
7178
+ poles
7179
+ sab@@
7180
+ ankara
7181
+ aver@@
7182
+ foun@@
7183
+ grati@@
7184
+ jen@@
7185
+ king@@
7186
+ lamfalussy
7187
+ lev@@
7188
+ liikanen
7189
+ quanti@@
7190
+ ye
7191
+ 28@@
7192
+ activ@@
7193
+ ano@@
7194
+ armenia
7195
+ au
7196
+ bou@@
7197
+ del
7198
+ disap@@
7199
+ dé@@
7200
+ koz@@
7201
+ lici@@
7202
+ merkel
7203
+ racial
7204
+ reces@@
7205
+ 56
7206
+ 58
7207
+ buitenweg
7208
+ capita@@
7209
+ carcin@@
7210
+ culmin@@
7211
+ gene@@
7212
+ hus
7213
+ miner@@
7214
+ mod@@
7215
+ ras@@
7216
+ remar@@
7217
+ stin@@
7218
+ thou@@
7219
+ turing
7220
+ clu@@
7221
+ environ@@
7222
+ geograph@@
7223
+ inspira@@
7224
+ iz@@
7225
+ josé
7226
+ morillon
7227
+ ou
7228
+ perpetu@@
7229
+ pti@@
7230
+ sud@@
7231
+ accompan@@
7232
+ asem
7233
+ cohesi@@
7234
+ contempla@@
7235
+ georgi@@
7236
+ igh@@
7237
+ ivo@@
7238
+ mar
7239
+ nally
7240
+ ora
7241
+ quic@@
7242
+ rup@@
7243
+ subordin@@
7244
+ tas@@
7245
+ -00@@
7246
+ aba@@
7247
+ ape@@
7248
+ arena
7249
+ avi@@
7250
+ dialo@@
7251
+ dt
7252
+ elabor@@
7253
+ environmental@@
7254
+ ep@@
7255
+ iv
7256
+ lanka
7257
+ mly
7258
+ remo@@
7259
+ ros@@
7260
+ scrutin@@
7261
+ sex@@
7262
+ stro@@
7263
+ uda@@
7264
+ 1/2001
7265
+ 71
7266
+ airbus
7267
+ civi@@
7268
+ complica@@
7269
+ incredi@@
7270
+ indu@@
7271
+ ji@@
7272
+ mid-@@
7273
+ mn
7274
+ ried
7275
+ vare@@
7276
+ white@@
7277
+ +@@
7278
+ alu@@
7279
+ buses
7280
+ expres@@
7281
+ graphic
7282
+ koso@@
7283
+ mentary
7284
+ oring
7285
+ phic
7286
+ pvc
7287
+ reding
7288
+ stic@@
7289
+ suc@@
7290
+ undermin@@
7291
+
7292
+ acqui@@
7293
+ ases
7294
+ azerbai@@
7295
+ cis
7296
+ fun@@
7297
+ key@@
7298
+ lama
7299
+ revis@@
7300
+ sign@@
7301
+ sl
7302
+ tempor@@
7303
+ unit@@
7304
+ univers@@
7305
+ vodka
7306
+ ê@@
7307
+ 63
7308
+ bab@@
7309
+ codi@@
7310
+ convic@@
7311
+ cultiv@@
7312
+ def@@
7313
+ dp
7314
+ extr@@
7315
+ gni@@
7316
+ guan@@
7317
+ hable
7318
+ istics
7319
+ jor@@
7320
+ lable
7321
+ suring
7322
+ whi@@
7323
+ yo
7324
+ acqu@@
7325
+ advan@@
7326
+ azores
7327
+ cer
7328
+ dez
7329
+ eur@@
7330
+ ferber
7331
+ gros@@
7332
+ peter@@
7333
+ ran
7334
+ romani@@
7335
+ chile
7336
+ coas@@
7337
+ defec@@
7338
+ exter@@
7339
+ gradu@@
7340
+ han
7341
+ label@@
7342
+ mix@@
7343
+ myanmar
7344
+ superflu@@
7345
+ tuberculosis
7346
+ alli@@
7347
+ altar
7348
+ arabia
7349
+ but@@
7350
+ condolen@@
7351
+ decision@@
7352
+ labor@@
7353
+ mary
7354
+ mi
7355
+ peti@@
7356
+ ppe
7357
+ tance
7358
+ valencia
7359
+ 54
7360
+ bonn
7361
+ burden@@
7362
+ cher
7363
+ cinem@@
7364
+ dela@@
7365
+ denomin@@
7366
+ dispar@@
7367
+ esca@@
7368
+ estos
7369
+ guatemala
7370
+ manu@@
7371
+ recy@@
7372
+ ri
7373
+ spr@@
7374
+ tender
7375
+ thres@@
7376
+ zu
7377
+ alia
7378
+ complemen@@
7379
+ comprehen@@
7380
+ conta@@
7381
+ enhan@@
7382
+ expedi@@
7383
+ gonzález
7384
+ indiscrimin@@
7385
+ kla@@
7386
+ kyi
7387
+ like@@
7388
+ media@@
7389
+ norm@@
7390
+ pas
7391
+ pie@@
7392
+ recor@@
7393
+ rele@@
7394
+ roth-behrendt
7395
+ suu
7396
+ uc@@
7397
+ vas@@
7398
+ vel@@
7399
+ ’@@
7400
+ ast
7401
+ aung
7402
+ ball
7403
+ barrot
7404
+ blin@@
7405
+ bus
7406
+ ez@@
7407
+ impa@@
7408
+ implan@@
7409
+ intercep@@
7410
+ levi@@
7411
+ lyn@@
7412
+ obsole@@
7413
+ patro@@
7414
+ pilo@@
7415
+ pou@@
7416
+ reach@@
7417
+ red@@
7418
+ terri@@
7419
+ barbari@@
7420
+ bureaucra@@
7421
+ comprehensible
7422
+ cô@@
7423
+ doctr@@
7424
+ eing
7425
+ graefe
7426
+ jacques
7427
+ kable
7428
+ manif@@
7429
+ materi@@
7430
+ perio@@
7431
+ posi@@
7432
+ tary
7433
+ web
7434
+ å@@
7435
+ 137
7436
+ 21@@
7437
+ dal
7438
+ elles
7439
+ goebbels
7440
+ hat@@
7441
+ ij-@@
7442
+ inging
7443
+ kra@@
7444
+ lio
7445
+ maj@@
7446
+ mayor
7447
+ ol
7448
+ satisfactori@@
7449
+ targe@@
7450
+ 66
7451
+ 99
7452
+ baringdorf
7453
+ draw@@
7454
+ dru@@
7455
+ egy@@
7456
+ lukashenko
7457
+ mater@@
7458
+ medina
7459
+ organiz@@
7460
+ reso@@
7461
+ schi@@
7462
+ sm@@
7463
+ tably
7464
+ tment
7465
+ 0/@@
7466
+ alban@@
7467
+ b6-0@@
7468
+ bösch
7469
+ enza
7470
+ ety
7471
+ exi@@
7472
+ ludford
7473
+ roman@@
7474
+ sear@@
7475
+ tari@@
7476
+ voy
7477
+ aci@@
7478
+ appal@@
7479
+ boli@@
7480
+ borg
7481
+ confi@@
7482
+ davi@@
7483
+ echelon
7484
+ mber
7485
+ monterrey
7486
+ pes
7487
+ pion@@
7488
+ princip@@
7489
+ unifor@@
7490
+ venezuela
7491
+ wee@@
7492
+ wer
7493
+ ç@@
7494
+ 103
7495
+ 38@@
7496
+ arrogan@@
7497
+ bren@@
7498
+ buil@@
7499
+ cancún
7500
+ dad
7501
+ impe@@
7502
+ oostlander
7503
+ selves
7504
+ somalia
7505
+ staes
7506
+ your@@
7507
+ ó
7508
+ 46@@
7509
+ answ@@
7510
+ doyle
7511
+ enri@@
7512
+ graph@@
7513
+ gres@@
7514
+ guantánamo
7515
+ intermod@@
7516
+ mol@@
7517
+ napolitano
7518
+ om@@
7519
+ pertin@@
7520
+ peter
7521
+ promo@@
7522
+ recur@@
7523
+ th-@@
7524
+ 39@@
7525
+ 62
7526
+ applican@@
7527
+ ci
7528
+ conci@@
7529
+ desti@@
7530
+ fen@@
7531
+ kauppi
7532
+ mal
7533
+ ories
7534
+ permis@@
7535
+ sligh@@
7536
+ solbes
7537
+ um@@
7538
+ 59
7539
+ acp-@@
7540
+ african@@
7541
+ b5-00@@
7542
+ bili@@
7543
+ calen@@
7544
+ casu@@
7545
+ conduci@@
7546
+ david
7547
+ determin@@
7548
+ diamantopoulou
7549
+ fering
7550
+ fiable
7551
+ ideo@@
7552
+ jap@@
7553
+ nes@@
7554
+ thes@@
7555
+ tony
7556
+ tos
7557
+ vigo
7558
+ án@@
7559
+ 36@@
7560
+ anas
7561
+ cashman
7562
+ electro@@
7563
+ enlarge@@
7564
+ existen@@
7565
+ flow@@
7566
+ igno@@
7567
+ pak@@
7568
+ pande@@
7569
+ par
7570
+ precau@@
7571
+ prospec@@
7572
+ ranging
7573
+ saar@@
7574
+ stric@@
7575
+ supervi@@
7576
+ syste@@
7577
+ total@@
7578
+ turk@@
7579
+ una
7580
+ vigilan@@
7581
+ wogau
7582
+ /03
7583
+ 69
7584
+ activi@@
7585
+ emergen@@
7586
+ excu@@
7587
+ in-office
7588
+ milosevic
7589
+ physi@@
7590
+ presi@@
7591
+ sierra
7592
+ sus
7593
+ tares
7594
+ too@@
7595
+ transi@@
7596
+ trate
7597
+ wered
7598
+ 2001/0@@
7599
+ asse@@
7600
+ coincide
7601
+ deira
7602
+ eb@@
7603
+ enemi@@
7604
+ focu@@
7605
+ inti@@
7606
+ irreversible
7607
+ ja
7608
+ men-@@
7609
+ pol
7610
+ rehn
7611
+ roun@@
7612
+ salv@@
7613
+ testi@@
7614
+ ­@@
7615
+ ès
7616
+ 140@@
7617
+ 57
7618
+ advanta@@
7619
+ cis@@
7620
+ coelho
7621
+ elli
7622
+ emin@@
7623
+ enlar@@
7624
+ george
7625
+ ita@@
7626
+ kov
7627
+ martí@@
7628
+ mately
7629
+ ney
7630
+ niger@@
7631
+ schmidt
7632
+ substan@@
7633
+ succe@@
7634
+ wash@@
7635
+ alexander
7636
+ are@@
7637
+ borrell
7638
+ culi@@
7639
+ gis@@
7640
+ indefin@@
7641
+ inen
7642
+ lab@@
7643
+ lamassoure
7644
+ maaten
7645
+ ote
7646
+ procla@@
7647
+ sand
7648
+ strateg@@
7649
+ verhof@@
7650
+ wynn
7651
+ zar@@
7652
+ ï@@
7653
+ amb@@
7654
+ argentina
7655
+ cep@@
7656
+ conces@@
7657
+ dac
7658
+ daul
7659
+ econo@@
7660
+ enshr@@
7661
+ interreg
7662
+ lucas
7663
+ mac@@
7664
+ maurit@@
7665
+ part@@
7666
+ phone
7667
+ prepa@@
7668
+ prevai@@
7669
+ sch
7670
+ suspen@@
7671
+ vi
7672
+ volu@@
7673
+ č@@
7674
+ 450
7675
+ embo@@
7676
+ ets
7677
+ gendijk
7678
+ intelli@@
7679
+ militari@@
7680
+ méndez
7681
+ offi@@
7682
+ plat@@
7683
+ prehen@@
7684
+ sof@@
7685
+ vor@@
7686
+ ía
7687
+ 2002@@
7688
+ agu@@
7689
+ ardo
7690
+ busquin
7691
+ dakis
7692
+ dere@@
7693
+ efly
7694
+ ensu@@
7695
+ ental
7696
+ erit@@
7697
+ fem@@
7698
+ fically
7699
+ fij@@
7700
+ governmental
7701
+ meaning@@
7702
+ miles
7703
+ neo@@
7704
+ orden
7705
+ pain@@
7706
+ repeti@@
7707
+ saca
7708
+ stein
7709
+ triparti@@
7710
+ tuni@@
7711
+ vel
7712
+ almuni@@
7713
+ ay
7714
+ delin@@
7715
+ emerg@@
7716
+ esco
7717
+ evi@@
7718
+ fashi@@
7719
+ fav@@
7720
+ justi@@
7721
+ pension@@
7722
+ people@@
7723
+ pir@@
7724
+ plas@@
7725
+ protoco@@
7726
+ proxi@@
7727
+ ré@@
7728
+ sol@@
7729
+ ström
7730
+ sán@@
7731
+ tin
7732
+ voluntari@@
7733
+ 77
7734
+ dea@@
7735
+ demon@@
7736
+ dilu@@
7737
+ func@@
7738
+ imo
7739
+ kil@@
7740
+ orte@@
7741
+ sal
7742
+ satis@@
7743
+ 2003@@
7744
+ ada
7745
+ alcoho@@
7746
+ certain@@
7747
+ cum@@
7748
+ danger@@
7749
+ digni@@
7750
+ europ@@
7751
+ indon@@
7752
+ lithu@@
7753
+ mous
7754
+ ning@@
7755
+ program@@
7756
+ reserv@@
7757
+ resor@@
7758
+ servi@@
7759
+ vig@@
7760
+ actor
7761
+ arly
7762
+ cide
7763
+ conve@@
7764
+ countr@@
7765
+ craft
7766
+ depre@@
7767
+ gali@@
7768
+ ggle
7769
+ guer@@
7770
+ hung@@
7771
+ israel@@
7772
+ kok
7773
+ len
7774
+ lez
7775
+ li
7776
+ neighbour@@
7777
+ phi@@
7778
+ salu@@
7779
+ sever@@
7780
+ tled
7781
+ vac@@
7782
+ xenopho@@
7783
+ aven@@
7784
+ committe@@
7785
+ consequ@@
7786
+ conveni@@
7787
+ declar@@
7788
+ ee@@
7789
+ hez@@
7790
+ interior
7791
+ iso@@
7792
+ javier
7793
+ lle
7794
+ marco
7795
+ premis@@
7796
+ prolon@@
7797
+ regular@@
7798
+ sional
7799
+ span@@
7800
+ tres@@
7801
+ vered
7802
+ xed
7803
+ yan
7804
+ ã@@
7805
+ ada@@
7806
+ aga
7807
+ av@@
7808
+ beha@@
7809
+ broa@@
7810
+ cabo@@
7811
+ canc@@
7812
+ certi@@
7813
+ differ@@
7814
+ dir@@
7815
+ dous
7816
+ epi@@
7817
+ gorously
7818
+ hori@@
7819
+ jan@@
7820
+ leon@@
7821
+ mping
7822
+ ores
7823
+ philosoph@@
7824
+ subjec@@
7825
+ surpri@@
7826
+ tiveness
7827
+ tomor@@
7828
+ ø@@
7829
+ avai@@
7830
+ dem
7831
+ dic
7832
+ dili@@
7833
+ extin@@
7834
+ far-@@
7835
+ fraudu@@
7836
+ gue@@
7837
+ kly
7838
+ mone@@
7839
+ ramos
7840
+ secretari@@
7841
+ suffici@@
7842
+ terly
7843
+ transpar@@
7844
+ za
7845
+ aten
7846
+ cali@@
7847
+ figu@@
7848
+ fisch@@
7849
+ jar@@
7850
+ macedon@@
7851
+ measu@@
7852
+ obe@@
7853
+ scre@@
7854
+ socialis@@
7855
+ spen@@
7856
+ tern
7857
+ third-@@
7858
+ tivi@@
7859
+ 85
7860
+ apa@@
7861
+ apor@@
7862
+ dina
7863
+ gun@@
7864
+ ini@@
7865
+ president-@@
7866
+ raz@@
7867
+ revitali@@
7868
+ velo@@
7869
+ vulner@@
7870
+ ante
7871
+ bet@@
7872
+ con
7873
+ consen@@
7874
+ devasta@@
7875
+ enter@@
7876
+ hne
7877
+ lance
7878
+ multipli@@
7879
+ prejudi@@
7880
+ recon@@
7881
+ resta@@
7882
+ revo@@
7883
+ totali@@
7884
+ ér@@
7885
+ ón
7886
+ compa@@
7887
+ compromis@@
7888
+ drafts@@
7889
+ ero
7890
+ eston@@
7891
+ every@@
7892
+ itation
7893
+ mits
7894
+ profession@@
7895
+ rede@@
7896
+ tern@@
7897
+ ut@@
7898
+ week@@
7899
+ cad@@
7900
+ cargo
7901
+ compro@@
7902
+ fer
7903
+ immun@@
7904
+ numer@@
7905
+ overwhel@@
7906
+ poten@@
7907
+ preval@@
7908
+ success@@
7909
+ telli@@
7910
+ tex@@
7911
+ will@@
7912
+ ano
7913
+ bar
7914
+ brus@@
7915
+ cker
7916
+ coni
7917
+ cree
7918
+ fare
7919
+ gem@@
7920
+ libr@@
7921
+ lish
7922
+ mechan@@
7923
+ percenta@@
7924
+ transplan@@
7925
+ ò
7926
+ alger@@
7927
+ cides
7928
+ ex
7929
+ examin@@
7930
+ ground@@
7931
+ health@@
7932
+ intr@@
7933
+ izquier@@
7934
+ lux@@
7935
+ ong
7936
+ refer@@
7937
+ road@@
7938
+ web@@
7939
+ americ@@
7940
+ benefici@@
7941
+ cultur@@
7942
+ democra@@
7943
+ despi@@
7944
+ dossi@@
7945
+ educa@@
7946
+ ica
7947
+ instru@@
7948
+ lateral
7949
+ llo
7950
+ manifesta@@
7951
+ priv@@
7952
+ residu@@
7953
+ tedly
7954
+ ups
7955
+ arios
7956
+ arma@@
7957
+ cale
7958
+ competen@@
7959
+ gal
7960
+ opt-@@
7961
+ ree
7962
+ alter@@
7963
+ atic
7964
+ bé@@
7965
+ cel@@
7966
+ colombi@@
7967
+ curri@@
7968
+ electri@@
7969
+ implica@@
7970
+ notic@@
7971
+ proportion@@
7972
+ reca@@
7973
+ situ@@
7974
+ /200@@
7975
+ aces
7976
+ ade@@
7977
+ aspira@@
7978
+ dí@@
7979
+ fail@@
7980
+ frau@@
7981
+ gible
7982
+ mis
7983
+ nationally
7984
+ shoul@@
7985
+ tenden@@
7986
+
7987
+ abor@@
7988
+ agri@@
7989
+ arbi@@
7990
+ artifici@@
7991
+ asy@@
7992
+ draf@@
7993
+ ely
7994
+ invest@@
7995
+ jur@@
7996
+ prohi@@
7997
+ restric@@
7998
+ sole@@
7999
+ streng@@
8000
+ techno@@
8001
+ tran@@
8002
+ acciden@@
8003
+ discip@@
8004
+ effec@@
8005
+ ent@@
8006
+ enta@@
8007
+ help@@
8008
+ ied
8009
+ infor@@
8010
+ prof@@
8011
+ progra@@
8012
+ rein@@
8013
+ sly
8014
+ ultra@@
8015
+ amen@@
8016
+ appar@@
8017
+ archi@@
8018
+ asylu@@
8019
+ ato
8020
+ bac@@
8021
+ brin@@
8022
+ bud@@
8023
+ cambo@@
8024
+ combin@@
8025
+ constra@@
8026
+ emi@@
8027
+ informa@@
8028
+ iran@@
8029
+ nock
8030
+ oly@@
8031
+ prag@@
8032
+ regret@@
8033
+ reme@@
8034
+ som@@
8035
+ suita@@
8036
+ ala
8037
+ appli@@
8038
+ avan@@
8039
+ copi@@
8040
+ ethiop@@
8041
+ junta
8042
+ lion
8043
+ llo@@
8044
+ struc@@
8045
+ testimon@@
8046
+ une
8047
+ ans@@
8048
+ core@@
8049
+ defini@@
8050
+ desi@@
8051
+ ende@@
8052
+ guaran@@
8053
+ ject
8054
+ kir@@
8055
+ lead@@
8056
+ lonia
8057
+ lor
8058
+ mun@@
8059
+ nie@@
8060
+ persever@@
8061
+ trag@@
8062
+ vo
8063
+ abu@@
8064
+ administra@@
8065
+ botto@@
8066
+ coloni@@
8067
+ creen
8068
+ enci@@
8069
+ fis@@
8070
+ guide@@
8071
+ ign
8072
+ neces@@
8073
+ nominal
8074
+ restaur@@
8075
+ tar
8076
+ alterna@@
8077
+ arra@@
8078
+ braz@@
8079
+ ej@@
8080
+ ella
8081
+ estu@@
8082
+ gin@@
8083
+ histori@@
8084
+ ishment
8085
+ itali@@
8086
+ more@@
8087
+ onal
8088
+ po
8089
+ seem@@
8090
+ sr
8091
+ vers@@
8092
+ where@@
8093
+ wholehear@@
8094
+ arbitr@@
8095
+ bos@@
8096
+ flexi@@
8097
+ fur
8098
+ honour@@
8099
+ ind
8100
+ interlocu@@
8101
+ isola@@
8102
+ monopoli@@
8103
+
8104
+ parliament@@
8105
+ pipe@@
8106
+ repar@@
8107
+ requisite
8108
+ tow@@
8109
+ ura
8110
+ zimbab@@
8111
+ accep@@
8112
+ citizen@@
8113
+ confiden@@
8114
+ endeav@@
8115
+ famili@@
8116
+ gir@@
8117
+ guil@@
8118
+ ich
8119
+ inno@@
8120
+ mosco@@
8121
+ nega@@
8122
+ orities
8123
+ phra@@
8124
+ ppe@@
8125
+ quer@@
8126
+ shr@@
8127
+ soci@@
8128
+ tane@@
8129
+ toxi@@
8130
+ tto@@
8131
+ bre
8132
+ candi@@
8133
+ ena
8134
+ equival@@
8135
+ erci@@
8136
+ ferre@@
8137
+ heal@@
8138
+ heav@@
8139
+ imple@@
8140
+ inaugur@@
8141
+ ino
8142
+ mora@@
8143
+ mos@@
8144
+ paces
8145
+ pesti@@
8146
+ reuni@@
8147
+ socio@@
8148
+ visu@@
8149
+ anim@@
8150
+ barre@@
8151
+ compan@@
8152
+ conclu@@
8153
+ fil
8154
+ israeli@@
8155
+ juven@@
8156
+ lapse
8157
+ lence
8158
+ notable
8159
+ ombuds@@
8160
+ planes
8161
+ socie@@
8162
+ tagon@@
8163
+ verse
8164
+ vietna@@
8165
+ agree@@
8166
+ alegr@@
8167
+ cas
8168
+ fore
8169
+ ho
8170
+ hungr@@
8171
+ ight
8172
+ pers@@
8173
+ soli@@
8174
+ truc@@
8175
+ yester@@
8176
+ ï
8177
+ bis@@
8178
+ clar@@
8179
+ conversa@@
8180
+ decep@@
8181
+ diploma@@
8182
+ forth@@
8183
+ happ@@
8184
+ io
8185
+ miser@@
8186
+ other@@
8187
+ reside
8188
+ reti@@
8189
+ rez
8190
+ rro@@
8191
+ sav@@
8192
+ understan@@
8193
+ drama
8194
+ ene
8195
+ esa
8196
+ gun
8197
+ harm@@
8198
+ ida
8199
+ intel@@
8200
+ mess@@
8201
+ mono@@
8202
+ ras
8203
+ scri@@
8204
+ swi@@
8205
+ tire
8206
+ tres
8207
+ univer@@
8208
+ austri@@
8209
+ cí@@
8210
+ dia@@
8211
+ fici@@
8212
+ infer@@
8213
+ maur@@
8214
+ monit@@
8215
+ prison@@
8216
+ star
8217
+ vez
8218
+ í@@
8219
+ cales
8220
+ diaman@@
8221
+ ego@@
8222
+ hazar@@
8223
+ naval
8224
+ remain@@
8225
+ repro@@
8226
+ requisi@@
8227
+ states@@
8228
+ superior
8229
+ tribun@@
8230
+ ł@@
8231
+ ń@@
8232
+ anu@@
8233
+ capaci@@
8234
+ elds
8235
+ expon@@
8236
+ hs
8237
+ lingu@@
8238
+ mbi@@
8239
+ proba@@
8240
+ proper@@
8241
+ schedu@@
8242
+ sequ@@
8243
+ symboli@@
8244
+ ult
8245
+ acro@@
8246
+ atmo@@
8247
+ carb@@
8248
+ cion@@
8249
+ dor
8250
+ eva
8251
+ extre@@
8252
+ later@@
8253
+ ling@@
8254
+ nes
8255
+ ordin@@
8256
+ pira@@
8257
+ polic@@
8258
+ spli@@
8259
+ tano
8260
+ vos
8261
+ zim@@
8262
+ concede
8263
+ descen@@
8264
+ discus@@
8265
+ ecu@@
8266
+ ganda
8267
+ immen@@
8268
+ issu@@
8269
+ joh@@
8270
+ lamentable
8271
+ lights
8272
+ manifes@@
8273
+ phy@@
8274
+ relieve
8275
+ surroun@@
8276
+ ames
8277
+ bene@@
8278
+ bo
8279
+ bö@@
8280
+ candida@@
8281
+ devas@@
8282
+ equili@@
8283
+ fren@@
8284
+ gentle@@
8285
+ jer@@
8286
+ magnit@@
8287
+ protagon@@
8288
+ rying
8289
+ siles
8290
+ stake@@
8291
+ tas
8292
+ tras@@
8293
+ wides@@
8294
+ yers
8295
+ absur@@
8296
+ angu@@
8297
+ arer
8298
+ bon
8299
+ chris@@
8300
+ deca@@
8301
+ falsi@@
8302
+ fili@@
8303
+ follow@@
8304
+ perfec@@
8305
+ pron@@
8306
+ sat@@
8307
+ satelli@@
8308
+ sized
8309
+ ukraini@@
8310
+ ß
8311
+ ñ@@
8312
+ barro@@
8313
+ cel
8314
+ consisten@@
8315
+ contac@@
8316
+ derly
8317
+ escen@@
8318
+ ghly
8319
+ gus@@
8320
+ je
8321
+ juni@@
8322
+ legi@@
8323
+ medium@@
8324
+ minu@@
8325
+ miti@@
8326
+ pudi@@
8327
+ solici@@
8328
+ suscep@@
8329
+ sustain@@
8330
+ trib@@
8331
+ ue
8332
+ én
8333
+ 7-@@
8334
+ atives
8335
+ characteri@@
8336
+ council@@
8337
+ decen@@
8338
+ ficial
8339
+ indivi@@
8340
+ job@@
8341
+ optimis@@
8342
+ propa@@
8343
+ resul@@
8344
+ sacri@@
8345
+ teful
8346
+ versa
8347
+ vit
8348
+ τ@@
8349
+ amin@@
8350
+ ech@@
8351
+ ez
8352
+ meras
8353
+ occupi@@
8354
+ sie@@
8355
+ sos
8356
+ tella
8357
+ tling
8358
+ wish@@
8359
+ yn@@
8360
+ apar@@
8361
+ bern@@
8362
+ cers
8363
+ certa@@
8364
+ combus@@
8365
+ dimen@@
8366
+ duce
8367
+ endu@@
8368
+ eso
8369
+ esto
8370
+ ficient
8371
+ fé@@
8372
+ ily
8373
+ kan@@
8374
+ pé@@
8375
+ recep@@
8376
+ su
8377
+ digi@@
8378
+ langu@@
8379
+ pharmaceu@@
8380
+ prostitu@@
8381
+ provision@@
8382
+ q
8383
+ qué
8384
+ rant
8385
+ reconstruc@@
8386
+ reh@@
8387
+ renov@@
8388
+ rhe@@
8389
+ shou@@
8390
+ tum
8391
+ undering
8392
+ venes
8393
+ α@@
8394
+ ado
8395
+ bad@@
8396
+ balk@@
8397
+ defender
8398
+ dica@@
8399
+ eventu@@
8400
+ garri@@
8401
+ genes
8402
+ knowledge@@
8403
+ manifest@@
8404
+ moldo@@
8405
+ particu@@
8406
+ poulou
8407
+ refra@@
8408
+ repor@@
8409
+ retic@@
8410
+ sali@@
8411
+ silen@@
8412
+ surge
8413
+ thu@@
8414
+ tural
8415
+ var
8416
+ abun@@
8417
+ affec@@
8418
+ aj@@
8419
+ ao
8420
+ applica@@
8421
+ ardu@@
8422
+ deu@@
8423
+ erro@@
8424
+ excel@@
8425
+ further@@
8426
+ lle@@
8427
+ mental@@
8428
+ phar@@
8429
+ practic@@
8430
+ presiden@@
8431
+ rin@@
8432
+ rom@@
8433
+ simp@@
8434
+ supre@@
8435
+ só@@
8436
+ ta-@@
8437
+ tarian
8438
+ tina
8439
+ tra
8440
+ ue-@@
8441
+ vial
8442
+ ė
8443
+ aun@@
8444
+ configur@@
8445
+ cracy
8446
+ fec@@
8447
+ hac@@
8448
+ infr@@
8449
+ infra@@
8450
+ mani@@
8451
+ mbers
8452
+ mode@@
8453
+ nucle@@
8454
+ oppon@@
8455
+ pursu@@
8456
+ regres@@
8457
+ research@@
8458
+ sloven@@
8459
+ soldi@@
8460
+ sta
8461
+ tack@@
8462
+ technolog@@
8463
+ thorou@@
8464
+ uzbe@@
8465
+ 2001@@
8466
+ 2007-@@
8467
+ besi@@
8468
+ contras@@
8469
+ decou@@
8470
+ elu@@
8471
+ fundamental@@
8472
+ guine@@
8473
+ juris@@
8474
+ jurisdic@@
8475
+ luc@@
8476
+ mia
8477
+ probable
8478
+ æ@@
8479
+ ő@@
8480
+ afri@@
8481
+ arro@@
8482
+ bombar@@
8483
+ bow@@
8484
+ ende
8485
+ fo
8486
+ impul@@
8487
+ judi@@
8488
+ má@@
8489
+ nau@@
8490
+ never@@
8491
+ oblig@@
8492
+ post@@
8493
+ recla@@
8494
+ rojo
8495
+ sanit@@
8496
+ ukra@@
8497
+ weapon@@
8498
+ worth@@
8499
+ ó@@
8500
+ ν@@
8501
+ ango@@
8502
+ api@@
8503
+ casti@@
8504
+ cht
8505
+ colle@@
8506
+ ergies
8507
+ pie
8508
+ sci@@
8509
+ simi@@
8510
+ sincer@@
8511
+ titu@@
8512
+ titude
8513
+ uti@@
8514
+ 0%
8515
+ alco@@
8516
+ cz@@
8517
+ decla@@
8518
+ defi@@
8519
+ emphasi@@
8520
+ ever@@
8521
+ fered
8522
+ inferior
8523
+ initia@@
8524
+ interes@@
8525
+ interru@@
8526
+ kau@@
8527
+ larly
8528
+ mera
8529
+ og@@
8530
+ ác@@
8531
+ ò@@
8532
+ courage@@
8533
+ essenti@@
8534
+ id@@
8535
+ kas@@
8536
+ lly
8537
+ mil
8538
+ socio-@@
8539
+ tener
8540
+ uso
8541
+ aco@@
8542
+ arity
8543
+ aten@@
8544
+ bours
8545
+ campa@@
8546
+ deba@@
8547
+ dial
8548
+ esta
8549
+ europa
8550
+ expen@@
8551
+ gio
8552
+ him@@
8553
+ indus@@
8554
+ lus@@
8555
+ mus
8556
+ pren@@
8557
+ rement
8558
+ resear@@
8559
+ shee@@
8560
+ surance
8561
+ tom@@
8562
+ tu
8563
+ turco
8564
+ xide
8565
+ agua
8566
+ alg@@
8567
+ cir@@
8568
+ coher@@
8569
+ comi@@
8570
+ dero@@
8571
+ eri@@
8572
+ estima@@
8573
+ esto@@
8574
+ inciden@@
8575
+ mbo
8576
+ men’s
8577
+ occupa@@
8578
+ pic
8579
+ pier@@
8580
+ plica@@
8581
+ prema@@
8582
+ schoo@@
8583
+ solem@@
8584
+ standar@@
8585
+ tam@@
8586
+ tro
8587
+ &@@
8588
+ any@@
8589
+ breas@@
8590
+ cates
8591
+ cti@@
8592
+ dares
8593
+ easi@@
8594
+ heavi@@
8595
+ hop@@
8596
+ incre@@
8597
+ leng@@
8598
+ pad@@
8599
+ play@@
8600
+ porte@@
8601
+ princi@@
8602
+ psy@@
8603
+ s/@@
8604
+ tica
8605
+ tten
8606
+ vere@@
8607
+ ć
8608
+ ľ
8609
+
8610
+ austr@@
8611
+ bet
8612
+ cho
8613
+ cial
8614
+ dra
8615
+ espi@@
8616
+ evo@@
8617
+ goro@@
8618
+ gusta
8619
+ ido
8620
+ impedi@@
8621
+ integra@@
8622
+ kel
8623
+ lati@@
8624
+ mir@@
8625
+ ority
8626
+ reby
8627
+ seguro
8628
+ tab@@
8629
+ table@@
8630
+ terrori@@
8631
+ tremen@@
8632
+ acep@@
8633
+ aliz@@
8634
+ cula
8635
+ eness
8636
+ isms
8637
+ nan
8638
+ onable
8639
+ psi@@
8640
+ urgen@@
8641
+ violen@@
8642
+ voca@@
8643
+ ä
8644
+ í
8645
+ ο
8646
+ basi@@
8647
+ ben
8648
+ cling
8649
+ consecu@@
8650
+ desira@@
8651
+ enumer@@
8652
+ estr@@
8653
+ gic@@
8654
+ gna
8655
+ imper@@
8656
+ jer
8657
+ jo
8658
+ llas
8659
+ mich@@
8660
+ mul@@
8661
+ mé@@
8662
+ politi@@
8663
+ proble@@
8664
+ propon@@
8665
+ ro-@@
8666
+ solu@@
8667
+ spea@@
8668
+ tores
8669
+ victi@@
8670
+ actu@@
8671
+ afgh@@
8672
+ ama
8673
+ ara
8674
+ carbon@@
8675
+ colleg@@
8676
+ dos
8677
+ esc@@
8678
+ fig@@
8679
+ fruit@@
8680
+ hou@@
8681
+ interro@@
8682
+ led@@
8683
+ modes@@
8684
+ ola@@
8685
+ pil@@
8686
+ pis@@
8687
+ pling
8688
+
8689
+ tobac@@
8690
+ toma@@
8691
+ tramp@@
8692
+ tó@@
8693
+ vul@@
8694
+ zer@@
8695
+ °@@
8696
+ ý
8697
+ clandestin@@
8698
+ comen@@
8699
+ curr@@
8700
+ dom@@
8701
+ doms
8702
+ effici@@
8703
+ enu@@
8704
+ estra@@
8705
+ explica@@
8706
+ food@@
8707
+ fres@@
8708
+ gab@@
8709
+ inclin@@
8710
+ logra@@
8711
+ mean@@
8712
+ neg@@
8713
+ organ@@
8714
+ rat
8715
+ signifi@@
8716
+ venezue@@
8717
+ zon@@
8718
+
8719
+ achi@@
8720
+ build@@
8721
+ camp@@
8722
+ campos
8723
+ clave
8724
+ condo@@
8725
+ dispos@@
8726
+ eno@@
8727
+ flor@@
8728
+ gigan@@
8729
+ hypocri@@
8730
+ identifi@@
8731
+ inhabit@@
8732
+ judici@@
8733
+ obvi@@
8734
+ passen@@
8735
+ performan@@
8736
+ perpe@@
8737
+ posite
8738
+ regi@@
8739
+ ria
8740
+ social@@
8741
+ strin@@
8742
+ territori@@
8743
+ vivi@@
8744
+ ß@@
8745
+ aeron@@
8746
+ aga@@
8747
+ ares
8748
+ aris@@
8749
+ armament
8750
+ asses@@
8751
+ cio
8752
+ democ@@
8753
+ dingly
8754
+ financi@@
8755
+ ist@@
8756
+ itas
8757
+ jug@@
8758
+ pau@@
8759
+ recogn@@
8760
+ resti@@
8761
+ restitu@@
8762
+ sable
8763
+ sim@@
8764
+ superi@@
8765
+ twel@@
8766
+ ö
8767
+ ú@@
8768
+ aba
8769
+ conserv@@
8770
+ dary
8771
+ dep@@
8772
+ dia
8773
+ dise@@
8774
+ dre
8775
+ expendi@@
8776
+ fica@@
8777
+ gar
8778
+ gements
8779
+ geor@@
8780
+ graves
8781
+ inver@@
8782
+ meri@@
8783
+ neu@@
8784
+ obta@@
8785
+ our@@
8786
+ poulo@@
8787
+ precipi@@
8788
+ solidar@@
8789
+ technic@@
8790
+ trav@@
8791
+ yu@@
8792
+ allen@@
8793
+ aug@@
8794
+ bara@@
8795
+ cien@@
8796
+ cil@@
8797
+ circular
8798
+ dora
8799
+ elector@@
8800
+ genu@@
8801
+ idio@@
8802
+ lante
8803
+ oria
8804
+ peop@@
8805
+ presti@@
8806
+ regulari@@
8807
+ schul@@
8808
+ sper@@
8809
+ thre@@
8810
+ vina
8811
+ “@@
8812
+
8813
+ /
8814
+ accom@@
8815
+ alber@@
8816
+ ami
8817
+ argen@@
8818
+ auditor@@
8819
+ bro
8820
+ constan@@
8821
+ convinc@@
8822
+ dice
8823
+ emis@@
8824
+ entrepren@@
8825
+ ergi@@
8826
+ estre@@
8827
+ eves
8828
+ forta@@
8829
+ gin
8830
+ grea@@
8831
+ hemi@@
8832
+ mara
8833
+ nov@@
8834
+ opini@@
8835
+ proto@@
8836
+ rebel@@
8837
+ sas
8838
+ signi@@
8839
+ sory
8840
+ suprana@@
8841
+ terroris@@
8842
+
8843
+ urban@@
8844
+ world@@
8845
+ ago@@
8846
+ aire
8847
+ alta
8848
+ anni@@
8849
+ caus@@
8850
+ enterpri@@
8851
+ exac@@
8852
+ exhor@@
8853
+ fin
8854
+ gü@@
8855
+ hiv@@
8856
+ humanit@@
8857
+ indign@@
8858
+ inici@@
8859
+ inun@@
8860
+ lifel@@
8861
+ nish
8862
+ pec@@
8863
+ philoso@@
8864
+ resol@@
8865
+ seman@@
8866
+ t-and-@@
8867
+ tribu@@
8868
+ ue@@
8869
+ vement
8870
+ yen
8871
+ zo
8872
+ án
8873
+ ι@@
8874
+ -0@@
8875
+ ado@@
8876
+ agre@@
8877
+ ando
8878
+ compul@@
8879
+ congres@@
8880
+ develo@@
8881
+ dir
8882
+ gia
8883
+ gos
8884
+ incen@@
8885
+ indis@@
8886
+ lado
8887
+ magn@@
8888
+ mayo@@
8889
+ oto@@
8890
+ pala@@
8891
+ parag@@
8892
+ particip@@
8893
+ rue@@
8894
+ sovereign@@
8895
+ statis@@
8896
+ terres@@
8897
+ veter@@
8898
+ wonder@@
8899
+ yor@@
8900
+ én@@
8901
+ 5-0@@
8902
+ assemb@@
8903
+ ata@@
8904
+ buenos
8905
+ canes
8906
+ cie@@
8907
+ deten@@
8908
+ disa@@
8909
+ dless
8910
+ envi@@
8911
+ gul@@
8912
+ gá@@
8913
+ inte@@
8914
+ iop@@
8915
+ johan@@
8916
+ logo
8917
+ rail@@
8918
+ rapi@@
8919
+ sten
8920
+ swif@@
8921
+ undoub@@
8922
+ wed@@
8923
+ ·
8924
+ azer@@
8925
+ beh@@
8926
+ belgi@@
8927
+ chri@@
8928
+ dish
8929
+ duras
8930
+ esp@@
8931
+ espe@@
8932
+ especial
8933
+ ffs
8934
+ finlan@@
8935
+ har
8936
+ holm
8937
+ lamenta@@
8938
+ mpi@@
8939
+ ong@@
8940
+ portu@@
8941
+ prob@@
8942
+ prolifer@@
8943
+ renunci@@
8944
+ salari@@
8945
+ sober@@
8946
+ sons
8947
+ trim@@
8948
+ tsun@@
8949
+ verde
8950
+ veterin@@
8951
+ wester@@
8952
+ whole@@
8953
+ xity
8954
+ ś@@
8955
+ a/@@
8956
+ amis@@
8957
+ asure
8958
+ carlo
8959
+ cen
8960
+ come@@
8961
+ controversi@@
8962
+ cres@@
8963
+ eses
8964
+ exclusi@@
8965
+ gare@@
8966
+ gratu@@
8967
+ lander
8968
+ liger@@
8969
+ locu@@
8970
+ mobi@@
8971
+ movi@@
8972
+ prim@@
8973
+ prot@@
8974
+ retir@@
8975
+ secretary-@@
8976
+ sica
8977
+ yugosla@@
8978
+ zan
8979
+ ī@@
8980
+ μ@@
8981
+ &
8982
+ abri@@
8983
+ aero@@
8984
+ alexan@@
8985
+ cash@@
8986
+ coali@@
8987
+ cont@@
8988
+ desta@@
8989
+ devolu@@
8990
+ ean
8991
+ fie@@
8992
+ gado
8993
+ gama
8994
+ ims
8995
+ inves@@
8996
+ mbo@@
8997
+ napoli@@
8998
+ ould
8999
+ poet@@
9000
+ pro
9001
+ sua@@
9002
+ taba
9003
+ then@@
9004
+ through@@
9005
+ vio
9006
+ zambi@@
9007
+ ô@@
9008
+ ún
9009
+ 100@@
9010
+ ate@@
9011
+ autonom@@
9012
+ constru@@
9013
+ derog@@
9014
+ dorf
9015
+ ee
9016
+ equivo@@
9017
+ ester@@
9018
+ ira@@
9019
+ lukashen@@
9020
+ monta@@
9021
+ montene@@
9022
+ nolog@@
9023
+ nun@@
9024
+ oda
9025
+ offici@@
9026
+ olympi@@
9027
+ partido
9028
+ ren
9029
+ so-@@
9030
+ tene@@
9031
+ trace@@
9032
+ vance
9033
+ zco
9034
+ ă@@
9035
+ beit
9036
+ bolk@@
9037
+ cac@@
9038
+ cora@@
9039
+ deman@@
9040
+ ech
9041
+ inevi@@
9042
+ investi@@
9043
+ kia
9044
+ marinos
9045
+ nea
9046
+ procur@@
9047
+ prolong@@
9048
+ proven@@
9049
+ recu@@
9050
+ reper@@
9051
+ tir@@
9052
+ toria
9053
+ ú
9054
+ ğ@@
9055
+ ι
9056
+ ascen@@
9057
+ buiten@@
9058
+ cili@@
9059
+ concre@@
9060
+ corrup@@
9061
+ demos
9062
+ disadvanta@@
9063
+ estable
9064
+ facul@@
9065
+ frat@@
9066
+ how@@
9067
+ italia
9068
+ jarzembow@@
9069
+ lí@@
9070
+ lín
9071
+ mutu@@
9072
+ natur@@
9073
+ quis@@
9074
+ ree@@
9075
+ tase
9076
+ uro@@
9077
+ wide-@@
9078
+ agricul@@
9079
+ alice
9080
+ apologi@@
9081
+ astri@@
9082
+ banglades@@
9083
+ bureau@@
9084
+ convo@@
9085
+ delic@@
9086
+ exper@@
9087
+ horizon@@
9088
+ inqui@@
9089
+ ith
9090
+ luxembour@@
9091
+ meric@@
9092
+ own-@@
9093
+ pn@@
9094
+ produ@@
9095
+ recogni@@
9096
+ ró@@
9097
+ tech@@
9098
+ toge@@
9099
+ toral
9100
+ tranqui@@
9101
+ té@@
9102
+ vec@@
9103
+ vu@@
9104
+ wall@@
9105
+ ş@@
9106
+ ž@@
9107
+ —@@
9108
+ adverten@@
9109
+ barb@@
9110
+ carre@@
9111
+ cauca@@
9112
+ centur@@
9113
+ cha
9114
+ chancel@@
9115
+ clan@@
9116
+ commis@@
9117
+ copy@@
9118
+ culp@@
9119
+ debili@@
9120
+ egos
9121
+ esia
9122
+ eurosta@@
9123
+ gim@@
9124
+ gra
9125
+ grandes
9126
+ grie@@
9127
+ inas
9128
+ jordan@@
9129
+ marino
9130
+ mee@@
9131
+ mugab@@
9132
+ norma@@
9133
+ palestin@@
9134
+ plor@@
9135
+ propos@@
9136
+ reali@@
9137
+ rece@@
9138
+ recom@@
9139
+ redi@@
9140
+ remi@@
9141
+ schem@@
9142
+ sem@@
9143
+ sensa@@
9144
+ since@@
9145
+ sino
9146
+ superfici@@
9147
+ tee
9148
+ twi@@
9149
+ ulti@@
9150
+ uste@@
9151
+ uu
9152
+ vé@@
9153
+ withdraw@@
9154
+ £@@
9155
+ ţ@@
9156
+
9157
+ $@@
9158
+ absolu@@
9159
+ anne@@
9160
+ atom
9161
+ avo@@
9162
+ bra
9163
+ comp@@
9164
+ cristi@@
9165
+ ember
9166
+ estan
9167
+ este
9168
+ fomen@@
9169
+ genoci@@
9170
+ gon@@
9171
+ gonz@@
9172
+ heu@@
9173
+ intro@@
9174
+ join@@
9175
+ jubi@@
9176
+ maxim@@
9177
+ milo@@
9178
+ moratoria
9179
+ ole@@
9180
+ partner@@
9181
+ pheno@@
9182
+ quin@@
9183
+ reto
9184
+ rit@@
9185
+ sir@@
9186
+ sto
9187
+ tener@@
9188
+ thousan@@
9189
+ thurs@@
9190
+ udo
9191
+ usly
9192
+ usu@@
9193
+ volun@@
9194
+ zar
9195
+ µ@@
9196
+ ís
9197
+
9198
+ %@@
9199
+ agi@@
9200
+ agr@@
9201
+ agues
9202
+ berlus@@
9203
+ cado
9204
+ debi@@
9205
+ demor@@
9206
+ dio
9207
+ disas@@
9208
+ eras
9209
+ eta@@
9210
+ feli@@
9211
+ felici@@
9212
+ frances@@
9213
+ gran
9214
+ impu@@
9215
+ inclu@@
9216
+ inso@@
9217
+ irrever@@
9218
+ lti@@
9219
+ manda@@
9220
+ mercur@@
9221
+ mozambi@@
9222
+ nep@@
9223
+ occu@@
9224
+ particular@@
9225
+ refi@@
9226
+ refle@@
9227
+ registra@@
9228
+ rá@@
9229
+ subter@@
9230
+ sue@@
9231
+ til
9232
+ tiz@@
9233
+ trimon@@
9234
+ uno
9235
+ verheu@@
9236
+ vien@@
9237
+ ń
9238
+ adu@@
9239
+ alem@@
9240
+ ampli@@
9241
+ cance@@
9242
+ carac@@
9243
+ cf@@
9244
+ charac@@
9245
+ cola
9246
+ criti@@
9247
+ dem@@
9248
+ disab@@
9249
+ dub@@
9250
+ else@@
9251
+ entre
9252
+ exam@@
9253
+ funda@@
9254
+ hay
9255
+ invol@@
9256
+ jó@@
9257
+ lamas@@
9258
+ large@@
9259
+ logos
9260
+ lones
9261
+ luxembur@@
9262
+ lá@@
9263
+ mely
9264
+ nica
9265
+ niel@@
9266
+ pensa@@
9267
+ procedur@@
9268
+ pá@@
9269
+ quarte@@
9270
+ ros
9271
+ stances
9272
+ tad
9273
+ tarif@@
9274
+ ulteri@@
9275
+ viru@@
9276
+ €@@
9277
+ añ@@
9278
+ cele@@
9279
+ cil
9280
+ ciudad
9281
+ dign@@
9282
+ econom@@
9283
+ estin@@
9284
+ extender
9285
+ finan@@
9286
+ habitual
9287
+ ika
9288
+ inta
9289
+ liv@@
9290
+ logi@@
9291
+ mandel@@
9292
+ metro
9293
+ ministeri@@
9294
+ nave@@
9295
+ ocu@@
9296
+ opar@@
9297
+ ough
9298
+ para
9299
+ poly
9300
+ procu@@
9301
+ puerta
9302
+ raci@@
9303
+ rejec@@
9304
+ rell
9305
+ tales
9306
+ tamper@@
9307
+ terro@@
9308
+ tir
9309
+ unto
9310
+ vasco
9311
+ vera
9312
+ wide@@
9313
+ xen@@
9314
+ °
9315
+ ë@@
9316
+ û@@
9317
+ ę@@
9318
+ ū@@
9319
+ 5-00@@
9320
+ acab@@
9321
+ adjudi@@
9322
+ affair@@
9323
+ again@@
9324
+ agra@@
9325
+ bai@@
9326
+ bien@@
9327
+ ciles
9328
+ clon@@
9329
+ condu@@
9330
+ deno@@
9331
+ denunci@@
9332
+ dole
9333
+ eras@@
9334
+ gaso@@
9335
+ habitu@@
9336
+ inste@@
9337
+ millenni@@
9338
+ mos
9339
+ mí@@
9340
+ nuevo
9341
+ ota
9342
+ rapporteur@@
9343
+ reba@@
9344
+ refus@@
9345
+ relev@@
9346
+ rey
9347
+ rica
9348
+ ries@@
9349
+ río
9350
+ s-
9351
+ sar
9352
+ sé@@
9353
+ tanta
9354
+ te-
9355
+ teg@@
9356
+ topic@@
9357
+ torio
9358
+ tras
9359
+ tá@@
9360
+ uz@@
9361
+ vehic@@
9362
+ vice@@
9363
+ vini@@
9364
+ vod@@
9365
+ wednes@@
9366
+ ´@@
9367
+ ñas
9368
+ š
9369
+ -la
9370
+ afghan@@
9371
+ alex@@
9372
+ annivers@@
9373
+ anza
9374
+ arse
9375
+ barni@@
9376
+ bolkeste@@
9377
+ cami@@
9378
+ canti@@
9379
+ carta
9380
+ conden@@
9381
+ consider@@
9382
+ criteri@@
9383
+ desa
9384
+ disastro@@
9385
+ dob@@
9386
+ dura
9387
+ entre@@
9388
+ escu@@
9389
+ eti@@
9390
+ extran@@
9391
+ ferro@@
9392
+ fes
9393
+ greens/@@
9394
+ gur@@
9395
+ herzego@@
9396
+ ico
9397
+ inos
9398
+ llen@@
9399
+ mado
9400
+ mares
9401
+ mbre
9402
+ mccreev@@
9403
+ medio@@
9404
+ mento
9405
+ myan@@
9406
+ nas
9407
+ nel
9408
+ pluri@@
9409
+ pos
9410
+ promis@@
9411
+ reg
9412
+ registr@@
9413
+ sterck@@
9414
+ strö@@
9415
+ thessal@@
9416
+ tina@@
9417
+ unci@@
9418
+ unde@@
9419
+ č
9420
+ *
9421
+ acti@@
9422
+ admit@@
9423
+ ante@@
9424
+ antes
9425
+ apari@@
9426
+ azu@@
9427
+ blin
9428
+ caí@@
9429
+ chemi@@
9430
+ choco@@
9431
+ coel@@
9432
+ cohn-bendi@@
9433
+ como
9434
+ compati@@
9435
+ compen@@
9436
+ conse@@
9437
+ corbet@@
9438
+ cypr@@
9439
+ có@@
9440
+ damos
9441
+ dig@@
9442
+ dij@@
9443
+ echel@@
9444
+ eco
9445
+ ello
9446
+ encour@@
9447
+ enthu@@
9448
+ entra@@
9449
+ ership
9450
+ experimen@@
9451
+ ferrero-wald@@
9452
+ figur@@
9453
+ figura
9454
+ gotten
9455
+ grande
9456
+ guardia
9457
+ gusto
9458
+ herita@@
9459
+ hund@@
9460
+ ington
9461
+ ivo
9462
+ jar
9463
+
9464
+ marily
9465
+ mesa
9466
+ minorit@@
9467
+ o-
9468
+ octo@@
9469
+ oni@@
9470
+ ored
9471
+ pants
9472
+ pare@@
9473
+ persona
9474
+ por
9475
+ procedu@@
9476
+ prome@@
9477
+ quin
9478
+ reas
9479
+ recommenda@@
9480
+ resisti@@
9481
+ rse
9482
+ rur@@
9483
+ sede
9484
+ soever
9485
+ swob@@
9486
+ takings
9487
+ tec@@
9488
+ temper@@
9489
+ tex
9490
+ turke@@
9491
+ ubi@@
9492
+ vas
9493
+ victoria
9494
+ wha@@
9495
+ â@@
9496
+ å
9497
+ él@@
9498
+ ì@@
9499
+ ř@@
9500
+ α
9501
+ …@@
9502
+ /ale
9503
+ acon@@
9504
+ acor@@
9505
+ amos
9506
+ apro@@
9507
+ arias
9508
+ autono@@
9509
+ baring@@
9510
+ benef@@
9511
+ berna@@
9512
+ cabeza
9513
+ cals
9514
+ campo
9515
+ casa
9516
+ cero
9517
+ chechn@@
9518
+ ciar
9519
+ confec@@
9520
+ conson@@
9521
+ consta@@
9522
+ coti@@
9523
+ cual
9524
+ dres
9525
+ ego
9526
+ enten@@
9527
+ esco@@
9528
+ forma
9529
+ fá@@
9530
+ fó@@
9531
+ haps
9532
+ hof@@
9533
+ ime
9534
+ impon@@
9535
+ indemni@@
9536
+ inequ@@
9537
+ inscri@@
9538
+ interopera@@
9539
+ jef@@
9540
+ jos
9541
+ julio
9542
+ ladas
9543
+ leton@@
9544
+ lukas@@
9545
+ malo
9546
+ mando
9547
+ mano@@
9548
+ mni@@
9549
+ modifi@@
9550
+ más
9551
+ neo
9552
+ oso
9553
+ palesti@@
9554
+ pedi@@
9555
+ pena
9556
+ posure
9557
+ prelimin@@
9558
+ prima@@
9559
+ priorit@@
9560
+ proli@@
9561
+ propi@@
9562
+ pueb@@
9563
+ puerto
9564
+ pv@@
9565
+ recuper@@
9566
+ roth-@@
9567
+ régim@@
9568
+ sean
9569
+ sels
9570
+ simo
9571
+ strasbour@@
9572
+ tera
9573
+ tien@@
9574
+ tud
9575
+ vigi@@
9576
+ vino
9577
+ vitor@@
9578
+ wald@@
9579
+ ynn
9580
+ ín
9581
+ õ@@
9582
+ =@@
9583
+ @@@
9584
+ abas@@
9585
+ addres@@
9586
+ alej@@
9587
+ armas
9588
+ aré
9589
+ asu@@
9590
+ blanco
9591
+ blok@@
9592
+ buitenwe@@
9593
+ cara
9594
+ celer@@
9595
+ concili@@
9596
+ conforme
9597
+ corre@@
9598
+ culo@@
9599
+ diag@@
9600
+ difficul@@
9601
+ dios
9602
+ diri@@
9603
+ domesti@@
9604
+ egi@@
9605
+ embol@@
9606
+ enab@@
9607
+ enca@@
9608
+ enes
9609
+ enh@@
9610
+ erlan@@
9611
+ esper@@
9612
+ exterior
9613
+ feel@@
9614
+ genuin@@
9615
+ graf@@
9616
+ illon
9617
+ immedi@@
9618
+ infanti@@
9619
+ ios
9620
+ iva
9621
+ jas
9622
+ judg@@
9623
+ lando
9624
+ leo
9625
+ madri@@
9626
+ mediter@@
9627
+ metros
9628
+ mor
9629
+ mó@@
9630
+ nacional
9631
+ ndez
9632
+ nether@@
9633
+ oca@@
9634
+ parla@@
9635
+ parlia@@
9636
+ pensable
9637
+ placer
9638
+ portugu@@
9639
+ posterior@@
9640
+ primordial
9641
+ pronunci@@
9642
+ propu@@
9643
+ pré@@
9644
+ rada
9645
+ ream
9646
+ rean@@
9647
+ reserva
9648
+ rico
9649
+ rumania
9650
+ rú@@
9651
+ sala
9652
+ schmid@@
9653
+ seuro@@
9654
+ streaming
9655
+ susten@@
9656
+
9657
+ tara
9658
+ tela
9659
+ terren@@
9660
+ tierra
9661
+ tome
9662
+ transeurope@@
9663
+ tros
9664
+ tí@@
9665
+ unión
9666
+ venez@@
9667
+ vern@@
9668
+ xx@@
9669
+ zada
9670
+ ín@@
9671
+ ño
9672
+ ús
9673
+ ı
9674
+ ň@@
9675
+ ť@@
9676
+ ‘no@@
9677
+ -el
9678
+ 6-0@@
9679
+ a-
9680
+ agement
9681
+ alcan@@
9682
+ altas
9683
+ amble@@
9684
+ anes
9685
+ ank@@
9686
+ armon@@
9687
+ assess@@
9688
+ autor@@
9689
+ behrendt
9690
+ beij@@
9691
+ bá@@
9692
+ cee
9693
+ christ@@
9694
+ cilla@@
9695
+ coh@@
9696
+ combustible
9697
+ comito@@
9698
+ cons@@
9699
+ convin@@
9700
+ dera
9701
+ dere
9702
+ diamanto@@
9703
+ dolo@@
9704
+
9705
+ dés
9706
+ econ@@
9707
+ encu@@
9708
+ endo
9709
+ enfo@@
9710
+ ente
9711
+ equip@@
9712
+ europeo
9713
+ founda@@
9714
+ fuentes
9715
+ gl
9716
+ gothen@@
9717
+ gre
9718
+ gé@@
9719
+ hidro@@
9720
+ há@@
9721
+ importan@@
9722
+ increas@@
9723
+ inin@@
9724
+ ite@@
9725
+ javi@@
9726
+ kyo@@
9727
+ lamfalus@@
9728
+ lana
9729
+ lej@@
9730
+ libre@@
9731
+ llos
9732
+ lona
9733
+ lud@@
9734
+ medio
9735
+ mero
9736
+ minas
9737
+ mores
9738
+
9739
+ nado
9740
+ novi@@
9741
+ nunca
9742
+ ofi@@
9743
+ orden@@
9744
+ oriental
9745
+ pac
9746
+ partici@@
9747
+ paz
9748
+ país
9749
+ perspec@@
9750
+ pien@@
9751
+ pola@@
9752
+ posteri@@
9753
+ pre
9754
+ prepar@@
9755
+ quili@@
9756
+ ranean
9757
+ reino
9758
+ reit@@
9759
+ relation@@
9760
+ sence
9761
+ señor
9762
+ sima
9763
+ sola@@
9764
+ sovere@@
9765
+ stree@@
9766
+ stá@@
9767
+ subven@@
9768
+ sur
9769
+ temporal
9770
+ tially
9771
+ tistas
9772
+ tren
9773
+ tura
9774
+ tuz@@
9775
+ tú@@
9776
+ universi@@
9777
+ urs@@
9778
+ valor@@
9779
+ vements
9780
+ vista
9781
+ zona
9782
+ º
9783
+ ½
9784
+ æ
9785
+ íos
9786
+ ù
9787
+ ý@@
9788
+ ľ@@
9789
+ œ@@
9790
+ ş
9791
+ ż@@
9792
+ β
9793
+ ρ
9794
+ ”@@
9795
+ -de
9796
+ =
9797
+ _@@
9798
+ académi@@
9799
+ ados
9800
+ afi@@
9801
+ alternativas
9802
+ anos
9803
+ antici@@
9804
+ aran@@
9805
+ arle
9806
+ arma
9807
+ aso@@
9808
+ audiovisu@@
9809
+ barce@@
9810
+ bendi@@
9811
+ brasi@@
9812
+ byr@@
9813
+ cabal@@
9814
+ camino
9815
+ chap@@
9816
+ char
9817
+ cido
9818
+ ció
9819
+ clara
9820
+ comis@@
9821
+ comisión
9822
+ comité
9823
+ conoc@@
9824
+ consejo
9825
+ convergencia
9826
+ correcta
9827
+ coste
9828
+ cui@@
9829
+ cá@@
9830
+ cé@@
9831
+
9832
+ dad@@
9833
+ daph@@
9834
+ democracia
9835
+ deriv@@
9836
+ diario
9837
+ dina@@
9838
+ dums
9839
+
9840
+ effor@@
9841
+ empres@@
9842
+ enla@@
9843
+ ere
9844
+ eren
9845
+ estan@@
9846
+ europa@@
9847
+ euv@@
9848
+ eza
9849
+ fatuz@@
9850
+ fico
9851
+ foot-and-@@
9852
+ foros
9853
+ gica
9854
+ goeb@@
9855
+ gonzá@@
9856
+ gripe
9857
+ habit@@
9858
+ habr@@
9859
+ happen@@
9860
+ harass@@
9861
+ huel@@
9862
+ hí@@
9863
+ iba
9864
+ ild
9865
+ ingl@@
9866
+ ingness
9867
+ interfer@@
9868
+ invern@@
9869
+ ior
9870
+ ismos
9871
+ italiano
9872
+ lae@@
9873
+ lema
9874
+ lesi@@
9875
+ lii@@
9876
+ liikan@@
9877
+ lista
9878
+ lógico
9879
+ lón
9880
+ mayo
9881
+ mej@@
9882
+ memoria
9883
+ merco@@
9884
+ mez@@
9885
+ mpe
9886
+ multination@@
9887
+ nar
9888
+ necess@@
9889
+ noso@@
9890
+ ofi
9891
+ oniki
9892
+ oscur@@
9893
+ otr@@
9894
+ own@@
9895
+ pab@@
9896
+ parece
9897
+ paso
9898
+ pción
9899
+ pens@@
9900
+ plá@@
9901
+ poca
9902
+ ponen
9903
+ porta@@
9904
+ ppi
9905
+ prefi@@
9906
+ profundi@@
9907
+ propuesta
9908
+ pueblo
9909
+ puer@@
9910
+ rapporte@@
9911
+ reau
9912
+ recer@@
9913
+ recha@@
9914
+ redes
9915
+ reduci@@
9916
+ regu@@
9917
+ rep@@
9918
+ repea@@
9919
+ rí@@
9920
+ sein
9921
+ sevi@@
9922
+ sibles
9923
+ sida
9924
+ sobre
9925
+ solid@@
9926
+ sí@@
9927
+ taran
9928
+ televisión
9929
+ terse
9930
+ tido
9931
+ tiles
9932
+ torium
9933
+ trá@@
9934
+ twen@@
9935
+ tés
9936
+ unpreceden@@
9937
+ utiliz@@
9938
+ viet@@
9939
+ vistas
9940
+ visto
9941
+ ween
9942
+ welcom@@
9943
+ whel@@
9944
+ zando
9945
+ zas
9946
+ ¡
9947
+ ´
9948
+ ·@@
9949
+ º@@
9950
+ ¾
9951
+ áli@@
9952
+ ás
9953
+ â
9954
+ ç
9955
+ ña
9956
+ ón@@
9957
+ ø
9958
+ ún@@
9959
+ ü
9960
+ ă
9961
+ ů@@
9962
+ ų
9963
+ β@@
9964
+ κ@@
9965
+ ο@@
9966
+ ρ@@
9967
+ д@@
9968
+ $
9969
+ -no
9970
+ \
9971
+ \@@
9972
+ `
9973
+ `@@
9974
+ abar@@
9975
+ abril
9976
+ acción
9977
+ adas
9978
+ adhi@@
9979
+ afat
9980
+ alen@@
9981
+ alismo
9982
+ along@@
9983
+ alto
9984
+ apliquen
9985
+ arles
9986
+ artic@@
9987
+ asoci@@
9988
+ aspec@@
9989
+ atorio
9990
+ atra@@
9991
+ atre@@
9992
+ audio@@
9993
+ autores
9994
+ autoridades
9995
+ autu@@
9996
+ autóno@@
9997
+ aves
9998
+ avión
9999
+ banco
10000
+ basta
10001
+ bce
10002
+ behren@@
10003
+ bei
10004
+ bien
10005
+ bienven@@
10006
+ bier@@
10007
+ bigg@@
10008
+ bir
10009
+ bour
10010
+ brio
10011
+ burgo
10012
+ buro@@
10013
+ camin@@
10014
+ capturas
10015
+ cargos
10016
+ causa
10017
+ chas
10018
+ chechen@@
10019
+ cig
10020
+ cils
10021
+ cionado
10022
+ cios
10023
+ cisms
10024
+ ción
10025
+ clare
10026
+ comings
10027
+ comisiones
10028
+ competentes
10029
+ compon@@
10030
+ compr@@
10031
+ comunidades
10032
+ conflictos
10033
+ cono@@
10034
+ contar
10035
+ corazón
10036
+ corea
10037
+ corte
10038
+ cosa
10039
+ costu@@
10040
+ coton@@
10041
+ creev@@
10042
+ cré@@
10043
+ crí@@
10044
+ cua@@
10045
+ cual@@
10046
+ cuan@@
10047
+ cuen@@
10048
+ culo
10049
+ culpa
10050
+ deber@@
10051
+ deg@@
10052
+ dente
10053
+ descar@@
10054
+ dese@@
10055
+ destinadas
10056
+ detri@@
10057
+ dias
10058
+ dici@@
10059
+ dies@@
10060
+ diversidad
10061
+ duci@@
10062
+ dó@@
10063
+ dón
10064
+ efe
10065
+ efec@@
10066
+ ega
10067
+ ejer@@
10068
+ ejerci@@
10069
+ engen
10070
+ entes
10071
+ entreg@@
10072
+ eran
10073
+ esas
10074
+ escasez
10075
+ esen@@
10076
+ español
10077
+ especi@@
10078
+ esperanza
10079
+ espí@@
10080
+ esses
10081
+ establecer
10082
+ estatal
10083
+ estatuto
10084
+ esté
10085
+ europea
10086
+ experien@@
10087
+ familia
10088
+ farmac@@
10089
+ ficar
10090
+ firma
10091
+ flagr@@
10092
+ floren@@
10093
+ frasson@@
10094
+ frente
10095
+ fuego
10096
+ fuer@@
10097
+ futur@@
10098
+ gamos
10099
+ garan@@
10100
+ gendij@@
10101
+ generales
10102
+ gente
10103
+ gro
10104
+ gros
10105
+ guarante@@
10106
+ gén@@
10107
+ habili@@
10108
+ hace
10109
+ hagan
10110
+ homen@@
10111
+ honor
10112
+ hoy
10113
+ hundre@@
10114
+ idas
10115
+ igu@@
10116
+ ild@@
10117
+ imes
10118
+ importaciones
10119
+ infrin@@
10120
+ inglés
10121
+ ingres@@
10122
+ interna
10123
+ iraqu@@
10124
+ irregulari@@
10125
+ isl@@
10126
+ islas
10127
+ ismo
10128
+ istas
10129
+ iten@@
10130
+ ito
10131
+ izar
10132
+ izquierda
10133
+ jamás
10134
+ janu@@
10135
+ justicia
10136
+ knowled@@
10137
+ labor
10138
+ largos
10139
+ lectual
10140
+ liberación
10141
+ libre
10142
+ libres
10143
+ limitaciones
10144
+ litu@@
10145
+ lituania
10146
+ loso@@
10147
+ maastri@@
10148
+ mace@@
10149
+ maceu@@
10150
+ mada
10151
+ mano
10152
+ medica@@
10153
+ mercancías
10154
+ meta
10155
+ miento
10156
+ migr@@
10157
+ millen@@
10158
+ ministro
10159
+ misiones
10160
+ monter@@
10161
+ much@@
10162
+ muerte
10163
+ mundo
10164
+ mático
10165
+ médi@@
10166
+ nacion@@
10167
+ nada
10168
+ negoci@@
10169
+ negro
10170
+ nei@@
10171
+ ngl
10172
+ nicas
10173
+ nico
10174
+
10175
+ nó@@
10176
+ nú@@
10177
+ obje@@
10178
+ obsta@@
10179
+ omc
10180
+ oner
10181
+ oost@@
10182
+ oportuni@@
10183
+ opportuni@@
10184
+ oro
10185
+ osa
10186
+ osto
10187
+ outh
10188
+ paragrap@@
10189
+ parall@@
10190
+ parlamento
10191
+ paro
10192
+ parte
10193
+ partn@@
10194
+ peli@@
10195
+ penal@@
10196
+ penha@@
10197
+ pero
10198
+ perten@@
10199
+ petrol@@
10200
+ pide
10201
+ piedra
10202
+ pilar
10203
+ pob@@
10204
+ portuguesa
10205
+ presencia
10206
+ previ@@
10207
+ primer
10208
+ primor@@
10209
+ problema
10210
+ produci@@
10211
+ proporcion@@
10212
+ proteg@@
10213
+ puede
10214
+ pusi@@
10215
+ pó@@
10216
+ quem@@
10217
+ quiz@@
10218
+ rador
10219
+ raí@@
10220
+ realiz@@
10221
+ rech@@
10222
+ recomendaciones
10223
+ redu@@
10224
+ refore
10225
+ refuge@@
10226
+ relación
10227
+ reo
10228
+ reos
10229
+ requi@@
10230
+ require@@
10231
+ respe@@
10232
+ rigor
10233
+
10234
+ sabi@@
10235
+ samente
10236
+ satisfac@@
10237
+ schre@@
10238
+ segu@@
10239
+ segundo
10240
+ segura
10241
+ seguridad
10242
+ seis
10243
+ selt
10244
+ serio
10245
+ será
10246
+ significan@@
10247
+ siste@@
10248
+ siti@@
10249
+ sob@@
10250
+ socialista
10251
+ sociedad
10252
+ sola
10253
+ solo
10254
+ someter
10255
+ sores
10256
+ soure
10257
+ soy
10258
+ stras@@
10259
+ sudden@@
10260
+ supr@@
10261
+ sá@@
10262
+ tador
10263
+ tante
10264
+ tesis
10265
+ tico
10266
+ tiva
10267
+ todo@@
10268
+ toma
10269
+ tomo
10270
+ tone@@
10271
+ transat@@
10272
+ transfronterizos
10273
+ transmi@@
10274
+ tris@@
10275
+ tér@@
10276
+
10277
+ unas
10278
+ unfortun@@
10279
+ unida
10280
+ unido
10281
+ unir
10282
+ ustra@@
10283
+ valiente
10284
+ vay@@
10285
+ venir
10286
+ viour
10287
+ viva
10288
+ vive
10289
+ vivien@@
10290
+ volver
10291
+ voz
10292
+ ví@@
10293
+ when@@
10294
+ xito
10295
+ xxi
10296
+ £
10297
+ «
10298
+ ­
10299
+ ¹
10300
+ »
10301
+ ¼
10302
+ áf@@
10303
+ ár@@
10304
+ éc@@
10305
+ és@@
10306
+ ë
10307
+ ì
10308
+ ías
10309
+ î@@
10310
+ ð@@
10311
+ ños
10312
+ ór@@
10313
+ ù@@
10314
+ ā@@
10315
+ ą@@
10316
+ ć@@
10317
+ đ@@
10318
+ ė@@
10319
+ ğ
10320
+ ı@@
10321
+ ķ@@
10322
+ ł
10323
+ ň
10324
+ ź@@
10325
+ ž
10326
+ ǔ
10327
+ ̇@@
10328
+ κ
10329
+ τ
10330
+ а
10331
+ а@@
10332
+ б@@
10333
+ е@@
10334
+ м@@
10335
+ н
10336
+ о@@
10337
+ р
10338
+ ъ@@
models/en-es/trg_vocab.txt ADDED
The diff for this file is too large to render. See raw diff
 
templates/index.html ADDED
@@ -0,0 +1,448 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>NMT Translator</title>
7
+ <link rel="preconnect" href="https://fonts.googleapis.com">
8
+ <link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
9
+ <style>
10
+ *{margin:0;padding:0;box-sizing:border-box}
11
+ :root{
12
+ --bg:#08080d;
13
+ --surface:#111119;
14
+ --surface-2:#191924;
15
+ --border:#252535;
16
+ --border-hl:#4f46e5;
17
+ --text:#ebebf5;
18
+ --text-2:#9090a8;
19
+ --accent:#6366f1;
20
+ --accent-soft:rgba(99,102,241,.12);
21
+ --red:#ef4444;
22
+ --radius:14px;
23
+ }
24
+ body{
25
+ font-family:'DM Sans',-apple-system,BlinkMacSystemFont,sans-serif;
26
+ background:var(--bg);
27
+ color:var(--text);
28
+ min-height:100vh;
29
+ display:flex;
30
+ flex-direction:column;
31
+ }
32
+
33
+ /* ---- HEADER ---- */
34
+ .header{
35
+ text-align:center;
36
+ padding:40px 20px 0;
37
+ }
38
+ .header h1{
39
+ font-size:2rem;
40
+ font-weight:700;
41
+ letter-spacing:-.6px;
42
+ background:linear-gradient(135deg,#818cf8,#c084fc,#f472b6);
43
+ -webkit-background-clip:text;
44
+ -webkit-text-fill-color:transparent;
45
+ background-clip:text;
46
+ }
47
+ .header p{
48
+ color:var(--text-2);
49
+ font-size:.88rem;
50
+ margin-top:6px;
51
+ }
52
+
53
+ /* ---- MAIN ---- */
54
+ .main{
55
+ max-width:980px;
56
+ width:100%;
57
+ margin:0 auto;
58
+ padding:28px 20px 40px;
59
+ flex:1;
60
+ }
61
+
62
+ /* ---- LANGUAGE BAR ---- */
63
+ .lang-bar{
64
+ display:flex;
65
+ align-items:center;
66
+ justify-content:center;
67
+ gap:14px;
68
+ margin-bottom:22px;
69
+ flex-wrap:wrap;
70
+ }
71
+ .lang-select{
72
+ position:relative;
73
+ }
74
+ .lang-select select{
75
+ appearance:none;
76
+ -webkit-appearance:none;
77
+ background:var(--surface);
78
+ border:1px solid var(--border);
79
+ color:var(--text);
80
+ font-family:inherit;
81
+ font-size:.95rem;
82
+ font-weight:600;
83
+ padding:10px 38px 10px 16px;
84
+ border-radius:var(--radius);
85
+ cursor:pointer;
86
+ outline:none;
87
+ transition:border-color .2s;
88
+ }
89
+ .lang-select select:focus{
90
+ border-color:var(--border-hl);
91
+ }
92
+ .lang-select::after{
93
+ content:'\25BE';
94
+ position:absolute;
95
+ right:14px;
96
+ top:50%;
97
+ transform:translateY(-50%);
98
+ color:var(--text-2);
99
+ pointer-events:none;
100
+ font-size:.8rem;
101
+ }
102
+ .swap-btn{
103
+ width:42px;height:42px;
104
+ border-radius:50%;
105
+ border:1px solid var(--border);
106
+ background:var(--surface);
107
+ color:var(--accent);
108
+ cursor:pointer;
109
+ display:flex;align-items:center;justify-content:center;
110
+ font-size:1.3rem;
111
+ transition:all .25s;
112
+ flex-shrink:0;
113
+ }
114
+ .swap-btn:hover{
115
+ background:var(--accent-soft);
116
+ border-color:var(--accent);
117
+ transform:rotate(180deg);
118
+ }
119
+
120
+ /* ---- TRANSLATOR PANELS ---- */
121
+ .panels{
122
+ display:grid;
123
+ grid-template-columns:1fr 1fr;
124
+ gap:14px;
125
+ }
126
+ @media(max-width:660px){
127
+ .panels{grid-template-columns:1fr}
128
+ }
129
+ .panel{
130
+ background:var(--surface);
131
+ border:1px solid var(--border);
132
+ border-radius:var(--radius);
133
+ display:flex;flex-direction:column;
134
+ min-height:260px;
135
+ transition:border-color .2s;
136
+ overflow:hidden;
137
+ }
138
+ .panel:focus-within{border-color:var(--border-hl)}
139
+ .panel-head{
140
+ display:flex;
141
+ align-items:center;
142
+ justify-content:space-between;
143
+ padding:10px 14px;
144
+ border-bottom:1px solid var(--border);
145
+ }
146
+ .panel-head .label{
147
+ font-size:.75rem;font-weight:600;
148
+ text-transform:uppercase;letter-spacing:.7px;
149
+ color:var(--text-2);
150
+ }
151
+ .panel-head .meta{
152
+ font-family:'JetBrains Mono',monospace;
153
+ font-size:.72rem;color:var(--text-2);
154
+ }
155
+ .panel textarea{
156
+ flex:1;width:100%;padding:14px;
157
+ background:transparent;border:none;
158
+ color:var(--text);
159
+ font-family:'DM Sans',sans-serif;
160
+ font-size:1.02rem;line-height:1.65;
161
+ resize:none;outline:none;
162
+ }
163
+ .panel textarea::placeholder{color:var(--text-2);opacity:.55}
164
+ .output-area{
165
+ flex:1;padding:14px;
166
+ font-size:1.02rem;line-height:1.65;
167
+ white-space:pre-wrap;
168
+ overflow-y:auto;
169
+ min-height:180px;
170
+ }
171
+ .output-area.empty{color:var(--text-2);opacity:.45;font-style:italic}
172
+
173
+ /* ---- ACTIONS ---- */
174
+ .actions{
175
+ display:flex;justify-content:center;
176
+ gap:10px;margin-top:18px;
177
+ }
178
+ .btn{
179
+ font-family:inherit;font-size:.95rem;
180
+ border-radius:var(--radius);
181
+ cursor:pointer;transition:all .2s;
182
+ border:none;
183
+ }
184
+ .btn-primary{
185
+ padding:13px 52px;
186
+ background:linear-gradient(135deg,#6366f1,#8b5cf6);
187
+ color:#fff;font-weight:600;
188
+ letter-spacing:.2px;
189
+ }
190
+ .btn-primary:hover{
191
+ transform:translateY(-1px);
192
+ box-shadow:0 8px 28px rgba(99,102,241,.35);
193
+ }
194
+ .btn-primary:active{transform:translateY(0)}
195
+ .btn-primary:disabled{opacity:.45;cursor:not-allowed;transform:none;box-shadow:none}
196
+ .btn-ghost{
197
+ padding:13px 22px;
198
+ background:var(--surface);
199
+ color:var(--text-2);
200
+ border:1px solid var(--border);
201
+ font-weight:500;
202
+ }
203
+ .btn-ghost:hover{border-color:var(--text-2);color:var(--text)}
204
+ .copy-btn{
205
+ background:none;border:none;
206
+ color:var(--text-2);cursor:pointer;
207
+ font-size:.82rem;padding:3px 8px;
208
+ border-radius:6px;transition:all .2s;
209
+ font-family:inherit;
210
+ }
211
+ .copy-btn:hover{background:var(--surface-2);color:var(--text)}
212
+
213
+ /* ---- STATUS ---- */
214
+ .status{text-align:center;margin-top:14px;min-height:22px}
215
+ .status .err{color:var(--red);font-size:.88rem}
216
+ .status .info{color:var(--text-2);font-size:.82rem}
217
+ .spinner{
218
+ display:inline-block;width:16px;height:16px;
219
+ border:2px solid var(--border);
220
+ border-top-color:var(--accent);
221
+ border-radius:50%;
222
+ animation:spin .65s linear infinite;
223
+ vertical-align:middle;margin-right:6px;
224
+ }
225
+ @keyframes spin{to{transform:rotate(360deg)}}
226
+
227
+ /* ---- FOOTER ---- */
228
+ .footer{
229
+ text-align:center;padding:22px 20px;
230
+ color:var(--text-2);font-size:.76rem;
231
+ border-top:1px solid var(--border);
232
+ }
233
+ .footer a{color:var(--accent);text-decoration:none}
234
+ .badge{
235
+ display:inline-flex;align-items:center;gap:5px;
236
+ padding:3px 10px;
237
+ background:var(--accent-soft);
238
+ border:1px solid rgba(99,102,241,.18);
239
+ border-radius:6px;font-size:.72rem;
240
+ color:var(--accent);
241
+ font-family:'JetBrains Mono',monospace;
242
+ margin-bottom:6px;
243
+ }
244
+
245
+ /* ---- NO MODELS WARNING ---- */
246
+ .no-models{
247
+ text-align:center;padding:60px 20px;
248
+ color:var(--text-2);
249
+ }
250
+ .no-models h2{font-size:1.3rem;color:var(--text);margin-bottom:10px}
251
+ .no-models code{
252
+ display:inline-block;
253
+ background:var(--surface-2);
254
+ padding:2px 8px;border-radius:4px;
255
+ font-family:'JetBrains Mono',monospace;
256
+ font-size:.82rem;
257
+ }
258
+ </style>
259
+ </head>
260
+ <body>
261
+
262
+ <div class="header">
263
+ <h1>NMT Translator</h1>
264
+ <p>Neural Machine Translation &mdash; JoeyNMT Transformer</p>
265
+ </div>
266
+
267
+ <div class="main">
268
+ {% if pairs %}
269
+ <!-- Language selector bar -->
270
+ <div class="lang-bar">
271
+ <div class="lang-select">
272
+ <select id="pair-select">
273
+ {% for p in pairs %}
274
+ <option value="{{ p.key }}"
275
+ data-src="{{ p.src_lang }}" data-trg="{{ p.trg_lang }}"
276
+ data-src-name="{{ p.src_name }}" data-trg-name="{{ p.trg_name }}"
277
+ data-src-flag="{{ p.src_flag }}" data-trg-flag="{{ p.trg_flag }}">
278
+ {{ p.src_flag }} {{ p.src_name }} &rarr; {{ p.trg_flag }} {{ p.trg_name }}
279
+ </option>
280
+ {% endfor %}
281
+ </select>
282
+ </div>
283
+ <button class="swap-btn" id="swap-btn" title="Swap languages">&#8646;</button>
284
+ </div>
285
+
286
+ <!-- Translator panels -->
287
+ <div class="panels">
288
+ <div class="panel" id="src-panel">
289
+ <div class="panel-head">
290
+ <span class="label" id="src-label">Source</span>
291
+ <span class="meta" id="char-count">0 chars</span>
292
+ </div>
293
+ <textarea id="src-text" placeholder="Type or paste text here..." spellcheck="false"></textarea>
294
+ </div>
295
+
296
+ <div class="panel" id="trg-panel">
297
+ <div class="panel-head">
298
+ <span class="label" id="trg-label">Translation</span>
299
+ <button class="copy-btn" id="copy-btn" style="display:none">Copy</button>
300
+ </div>
301
+ <div class="output-area empty" id="output">Translation will appear here</div>
302
+ </div>
303
+ </div>
304
+
305
+ <!-- Buttons -->
306
+ <div class="actions">
307
+ <button class="btn btn-ghost" id="clear-btn">Clear</button>
308
+ <button class="btn btn-primary" id="go-btn">Translate</button>
309
+ </div>
310
+ <div class="status" id="status"></div>
311
+
312
+ {% else %}
313
+ <div class="no-models">
314
+ <h2>No models found</h2>
315
+ <p>Place trained JoeyNMT models in <code>Assignment&nbsp;5/</code> subdirectories.<br>
316
+ Each needs: <code>best.ckpt</code>, <code>src_vocab.txt</code>, <code>trg_vocab.txt</code>,
317
+ <code>bpe.codes</code>, <code>joeynmt_config.yaml</code>, <code>joeynmt_wrapper.py</code></p>
318
+ </div>
319
+ {% endif %}
320
+ </div>
321
+
322
+ <footer class="footer">
323
+ <div><span class="badge">Transformer &middot; 3L &middot; 4H &middot; 256d &middot; BPE-16k</span></div>
324
+ Built with <a href="https://github.com/joeynmt/joeynmt">JoeyNMT&nbsp;2.3</a> &middot; ML&nbsp;for&nbsp;NLP&nbsp;&mdash;&nbsp;Assignment&nbsp;5
325
+ </footer>
326
+
327
+ {% if pairs %}
328
+ <script>
329
+ const PAIRS = {{ pairs | tojson }};
330
+ const sel = document.getElementById('pair-select');
331
+ const srcLbl = document.getElementById('src-label');
332
+ const trgLbl = document.getElementById('trg-label');
333
+ const srcTxt = document.getElementById('src-text');
334
+ const output = document.getElementById('output');
335
+ const status = document.getElementById('status');
336
+ const goBtn = document.getElementById('go-btn');
337
+ const clrBtn = document.getElementById('clear-btn');
338
+ const swpBtn = document.getElementById('swap-btn');
339
+ const chars = document.getElementById('char-count');
340
+ const cpyBtn = document.getElementById('copy-btn');
341
+
342
+ function cur(){ return PAIRS.find(p=>p.key===sel.value) }
343
+
344
+ function updateLabels(){
345
+ const p = cur();
346
+ if(!p) return;
347
+ srcLbl.textContent = p.src_flag+' '+p.src_name;
348
+ trgLbl.textContent = p.trg_flag+' '+p.trg_name;
349
+ }
350
+
351
+ sel.addEventListener('change', ()=>{
352
+ updateLabels();
353
+ output.textContent='Translation will appear here';
354
+ output.classList.add('empty');
355
+ cpyBtn.style.display='none';
356
+ status.innerHTML='';
357
+ });
358
+
359
+ srcTxt.addEventListener('input', ()=>{
360
+ chars.textContent = srcTxt.value.length+' chars';
361
+ });
362
+
363
+ clrBtn.addEventListener('click', ()=>{
364
+ srcTxt.value='';
365
+ output.textContent='Translation will appear here';
366
+ output.classList.add('empty');
367
+ status.innerHTML='';
368
+ chars.textContent='0 chars';
369
+ cpyBtn.style.display='none';
370
+ });
371
+
372
+ swpBtn.addEventListener('click', ()=>{
373
+ const p = cur();
374
+ if(!p) return;
375
+ const rev = p.trg_lang+'-'+p.src_lang;
376
+ const opt = [...sel.options].find(o=>o.value===rev);
377
+ if(!opt){
378
+ status.innerHTML='<span class="err">No model for the reverse direction</span>';
379
+ return;
380
+ }
381
+ const oldSrc = srcTxt.value;
382
+ const oldOut = output.classList.contains('empty') ? '' : output.textContent;
383
+ sel.value = rev;
384
+ updateLabels();
385
+ if(oldOut){ srcTxt.value=oldOut; output.textContent=oldSrc; output.classList.remove('empty'); }
386
+ else { output.textContent='Translation will appear here'; output.classList.add('empty'); }
387
+ chars.textContent = srcTxt.value.length+' chars';
388
+ status.innerHTML='';
389
+ });
390
+
391
+ cpyBtn.addEventListener('click', ()=>{
392
+ if(!output.classList.contains('empty')){
393
+ navigator.clipboard.writeText(output.textContent).then(()=>{
394
+ cpyBtn.textContent='Copied!';
395
+ setTimeout(()=>{ cpyBtn.textContent='Copy'; },1400);
396
+ });
397
+ }
398
+ });
399
+
400
+ async function translate(){
401
+ const text = srcTxt.value.trim();
402
+ if(!text){ status.innerHTML='<span class="err">Please enter some text</span>'; return; }
403
+ const pair = sel.value;
404
+
405
+ goBtn.disabled=true;
406
+ goBtn.textContent='Translating\u2026';
407
+ status.innerHTML='<span class="info"><span class="spinner"></span>Translating \u2014 may take a moment on first request\u2026</span>';
408
+ output.textContent='';
409
+ output.classList.add('empty');
410
+ cpyBtn.style.display='none';
411
+
412
+ try{
413
+ const t0 = performance.now();
414
+ const r = await fetch('/translate',{
415
+ method:'POST',
416
+ headers:{'Content-Type':'application/json'},
417
+ body:JSON.stringify({pair, text}),
418
+ });
419
+ const d = await r.json();
420
+ const sec = ((performance.now()-t0)/1000).toFixed(1);
421
+
422
+ if(d.error){
423
+ output.textContent='Translation will appear here';
424
+ status.innerHTML='<span class="err">'+d.error+'</span>';
425
+ } else {
426
+ output.textContent = d.translation;
427
+ output.classList.remove('empty');
428
+ status.innerHTML='<span class="info">Done in '+sec+'s</span>';
429
+ cpyBtn.style.display='inline-block';
430
+ }
431
+ } catch(e){
432
+ status.innerHTML='<span class="err">Network error: '+e.message+'</span>';
433
+ } finally {
434
+ goBtn.disabled=false;
435
+ goBtn.textContent='Translate';
436
+ }
437
+ }
438
+
439
+ goBtn.addEventListener('click', translate);
440
+ srcTxt.addEventListener('keydown', e=>{
441
+ if(e.key==='Enter'&&(e.ctrlKey||e.metaKey)){ e.preventDefault(); translate(); }
442
+ });
443
+
444
+ updateLabels();
445
+ </script>
446
+ {% endif %}
447
+ </body>
448
+ </html>