hugosousa commited on
Commit
c9879ce
·
verified ·
1 Parent(s): 57e17d9

Update spaCy pipeline

Browse files
Files changed (14) hide show
  1. .gitattributes +2 -0
  2. README.md +30 -0
  3. config.cfg +128 -0
  4. fr_tei2go-any-py3-none-any.whl +3 -0
  5. meta.json +35 -0
  6. ner/cfg +13 -0
  7. ner/model +3 -0
  8. ner/moves +1 -0
  9. tokenizer +0 -0
  10. vocab/key2row +1 -0
  11. vocab/lookups.bin +3 -0
  12. vocab/strings.json +4210 -0
  13. vocab/vectors +0 -0
  14. vocab/vectors.cfg +3 -0
.gitattributes CHANGED
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ fr_tei2go-any-py3-none-any.whl filter=lfs diff=lfs merge=lfs -text
37
+ ner/model filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - spacy
4
+ - token-classification
5
+ language:
6
+ - fr
7
+ ---
8
+ | Feature | Description |
9
+ | --- | --- |
10
+ | **Name** | `fr_tei2go` |
11
+ | **Version** | `0.0.0` |
12
+ | **spaCy** | `>=3.2.6,<3.3.0` |
13
+ | **Default Pipeline** | `ner` |
14
+ | **Components** | `ner` |
15
+ | **Vectors** | 0 keys, 0 unique vectors (0 dimensions) |
16
+ | **Sources** | n/a |
17
+ | **License** | n/a |
18
+ | **Author** | [n/a]() |
19
+
20
+ ### Label Scheme
21
+
22
+ <details>
23
+
24
+ <summary>View label scheme (1 labels for 1 components)</summary>
25
+
26
+ | Component | Labels |
27
+ | --- | --- |
28
+ | **`ner`** | `TIMEX` |
29
+
30
+ </details>
config.cfg ADDED
@@ -0,0 +1,128 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [paths]
2
+ train = null
3
+ dev = null
4
+ vectors = null
5
+ init_tok2vec = null
6
+
7
+ [system]
8
+ seed = 0
9
+ gpu_allocator = null
10
+
11
+ [nlp]
12
+ lang = "fr"
13
+ pipeline = ["ner"]
14
+ disabled = []
15
+ before_creation = null
16
+ after_creation = null
17
+ after_pipeline_creation = null
18
+ batch_size = 1000
19
+ tokenizer = {"@tokenizers":"spacy.Tokenizer.v1"}
20
+
21
+ [components]
22
+
23
+ [components.ner]
24
+ factory = "ner"
25
+ incorrect_spans_key = null
26
+ moves = null
27
+ scorer = {"@scorers":"spacy.ner_scorer.v1"}
28
+ update_with_oracle_cut_size = 100
29
+
30
+ [components.ner.model]
31
+ @architectures = "spacy.TransitionBasedParser.v2"
32
+ state_type = "ner"
33
+ extra_state_tokens = false
34
+ hidden_width = 64
35
+ maxout_pieces = 2
36
+ use_upper = true
37
+ nO = null
38
+
39
+ [components.ner.model.tok2vec]
40
+ @architectures = "spacy.HashEmbedCNN.v2"
41
+ pretrained_vectors = null
42
+ width = 96
43
+ depth = 4
44
+ embed_size = 2000
45
+ window_size = 1
46
+ maxout_pieces = 3
47
+ subword_features = true
48
+
49
+ [corpora]
50
+
51
+ [corpora.dev]
52
+ @readers = "spacy.Corpus.v1"
53
+ path = ${paths.dev}
54
+ gold_preproc = false
55
+ max_length = 0
56
+ limit = 0
57
+ augmenter = null
58
+
59
+ [corpora.train]
60
+ @readers = "spacy.Corpus.v1"
61
+ path = ${paths.train}
62
+ gold_preproc = false
63
+ max_length = 0
64
+ limit = 0
65
+ augmenter = null
66
+
67
+ [training]
68
+ seed = ${system.seed}
69
+ gpu_allocator = ${system.gpu_allocator}
70
+ dropout = 0.1
71
+ accumulate_gradient = 1
72
+ patience = 1600
73
+ max_epochs = 0
74
+ max_steps = 20000
75
+ eval_frequency = 200
76
+ frozen_components = []
77
+ annotating_components = []
78
+ dev_corpus = "corpora.dev"
79
+ train_corpus = "corpora.train"
80
+ before_to_disk = null
81
+
82
+ [training.batcher]
83
+ @batchers = "spacy.batch_by_words.v1"
84
+ discard_oversize = false
85
+ tolerance = 0.2
86
+ get_length = null
87
+
88
+ [training.batcher.size]
89
+ @schedules = "compounding.v1"
90
+ start = 100
91
+ stop = 1000
92
+ compound = 1.001
93
+ t = 0.0
94
+
95
+ [training.logger]
96
+ @loggers = "spacy.ConsoleLogger.v1"
97
+ progress_bar = false
98
+
99
+ [training.optimizer]
100
+ @optimizers = "Adam.v1"
101
+ beta1 = 0.9
102
+ beta2 = 0.999
103
+ L2_is_weight_decay = true
104
+ L2 = 0.01
105
+ grad_clip = 1.0
106
+ use_averages = false
107
+ eps = 0.00000001
108
+ learn_rate = 0.001
109
+
110
+ [training.score_weights]
111
+ ents_f = 1.0
112
+ ents_p = 0.0
113
+ ents_r = 0.0
114
+ ents_per_type = null
115
+
116
+ [pretraining]
117
+
118
+ [initialize]
119
+ vectors = ${paths.vectors}
120
+ init_tok2vec = ${paths.init_tok2vec}
121
+ vocab_data = null
122
+ lookups = null
123
+ before_init = null
124
+ after_init = null
125
+
126
+ [initialize.components]
127
+
128
+ [initialize.tokenizer]
fr_tei2go-any-py3-none-any.whl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:246c2735629f38aebe3980fac88ba7b0e4303edc9665a0a137f2a9c9831ddb8e
3
+ size 3566890
meta.json ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lang":"fr",
3
+ "name":"tei2go",
4
+ "version":"0.0.0",
5
+ "description":"",
6
+ "author":"",
7
+ "email":"",
8
+ "url":"",
9
+ "license":"",
10
+ "spacy_version":">=3.2.6,<3.3.0",
11
+ "spacy_git_version":"b50fe5ec6",
12
+ "vectors":{
13
+ "width":0,
14
+ "vectors":0,
15
+ "keys":0,
16
+ "name":null
17
+ },
18
+ "labels":{
19
+ "ner":[
20
+ "TIMEX"
21
+ ]
22
+ },
23
+ "pipeline":[
24
+ "ner"
25
+ ],
26
+ "components":[
27
+ "ner"
28
+ ],
29
+ "disabled":[
30
+
31
+ ],
32
+ "requirements":[
33
+
34
+ ]
35
+ }
ner/cfg ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "moves":null,
3
+ "update_with_oracle_cut_size":100,
4
+ "multitasks":[
5
+
6
+ ],
7
+ "min_action_freq":1,
8
+ "learn_tokens":false,
9
+ "beam_width":1,
10
+ "beam_density":0.0,
11
+ "beam_update_prob":0.0,
12
+ "incorrect_spans_key":null
13
+ }
ner/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b90f3c40cee11ecadeb5c7936a6b266eff1f22d41d614259a2b59840f00617cf
3
+ size 3832920
ner/moves ADDED
@@ -0,0 +1 @@
 
 
1
+ ��moves�\{"0":{},"1":{"TIMEX":-1},"2":{"TIMEX":-1},"3":{"TIMEX":-1},"4":{"":1,"TIMEX":-1},"5":{"":1}}�cfg��neg_key�
tokenizer ADDED
The diff for this file is too large to render. See raw diff
 
vocab/key2row ADDED
@@ -0,0 +1 @@
 
 
1
+
vocab/lookups.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76be8b528d0075f7aae98d6fa57a6d3c83ae480a8469e668d7b0af968995ac71
3
+ size 1
vocab/strings.json ADDED
@@ -0,0 +1,4210 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "\t",
3
+ "\n",
4
+ " ",
5
+ " ",
6
+ "!",
7
+ "\"",
8
+ "$",
9
+ "%",
10
+ "'",
11
+ "''",
12
+ "'-(",
13
+ "'-)",
14
+ "(",
15
+ "(((",
16
+ "(*>",
17
+ "(*_*)",
18
+ "(-8",
19
+ "(-:",
20
+ "(-;",
21
+ "(-_-)",
22
+ "(-d",
23
+ "(._.)",
24
+ "(:",
25
+ "(;",
26
+ "(=",
27
+ "(>_<)",
28
+ "(^_^)",
29
+ "(o:",
30
+ "(x:",
31
+ "(x_x)",
32
+ "(\u00ac_\u00ac)",
33
+ "(\u0ca0_\u0ca0)",
34
+ "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b",
35
+ ")",
36
+ ")))",
37
+ ")-:",
38
+ ")/\u00af",
39
+ "):",
40
+ "*",
41
+ ",",
42
+ ",38",
43
+ ",41",
44
+ "-",
45
+ "-((",
46
+ "-))",
47
+ "-/",
48
+ "-0",
49
+ "-3",
50
+ "-8",
51
+ "-88",
52
+ "-C.",
53
+ "-D",
54
+ "-IL",
55
+ "-O",
56
+ "-P",
57
+ "-X",
58
+ "-X.",
59
+ "-XX",
60
+ "-_-",
61
+ "-__-",
62
+ "-c.",
63
+ "-ce",
64
+ "-ci",
65
+ "-d",
66
+ "-elle",
67
+ "-il",
68
+ "-l\u00e0",
69
+ "-notable-",
70
+ "-o",
71
+ "-on",
72
+ "-p",
73
+ "-t",
74
+ "-vous",
75
+ "-x",
76
+ "-xx",
77
+ "-xxxx",
78
+ "-xxxx-",
79
+ "-|",
80
+ ".",
81
+ "...",
82
+ "._.",
83
+ "/",
84
+ "/3",
85
+ "/d",
86
+ "0",
87
+ "0,38",
88
+ "0,4",
89
+ "0,41",
90
+ "0,7",
91
+ "0.0",
92
+ "0.o",
93
+ "00",
94
+ "000",
95
+ "001",
96
+ "002",
97
+ "003",
98
+ "004",
99
+ "0_0",
100
+ "0_o",
101
+ "1",
102
+ "1,8",
103
+ "1.665.500",
104
+ "10",
105
+ "10.000",
106
+ "100.000",
107
+ "11",
108
+ "11.459",
109
+ "114",
110
+ "12",
111
+ "13",
112
+ "14",
113
+ "15",
114
+ "15.000",
115
+ "16",
116
+ "16e",
117
+ "17",
118
+ "17.000",
119
+ "18",
120
+ "184",
121
+ "19",
122
+ "191",
123
+ "1913",
124
+ "1933",
125
+ "1941",
126
+ "1943",
127
+ "1950",
128
+ "1962",
129
+ "1975",
130
+ "1982",
131
+ "1987",
132
+ "1988",
133
+ "1990",
134
+ "1995",
135
+ "1998",
136
+ "1999",
137
+ "19es",
138
+ "1er",
139
+ "2",
140
+ "2,5",
141
+ "2.008.000",
142
+ "2.243",
143
+ "2.994",
144
+ "20",
145
+ "2000",
146
+ "2001",
147
+ "2002",
148
+ "2003",
149
+ "2004",
150
+ "21",
151
+ "22",
152
+ "23",
153
+ "24",
154
+ "243",
155
+ "25",
156
+ "26",
157
+ "27",
158
+ "28",
159
+ "283",
160
+ "29",
161
+ "3",
162
+ "30",
163
+ "30,4",
164
+ "31",
165
+ "32",
166
+ "33",
167
+ "333",
168
+ "35e",
169
+ "38",
170
+ "4",
171
+ "40",
172
+ "400.000",
173
+ "408",
174
+ "45",
175
+ "459",
176
+ "49",
177
+ "4e",
178
+ "5",
179
+ "5,2",
180
+ "500",
181
+ "50e",
182
+ "53",
183
+ "55",
184
+ "56",
185
+ "58.416.500",
186
+ "59",
187
+ "6",
188
+ "60",
189
+ "60.082.000",
190
+ "63",
191
+ "65",
192
+ "695",
193
+ "7",
194
+ "70",
195
+ "72",
196
+ "790",
197
+ "8",
198
+ "8)",
199
+ "8-",
200
+ "8-)",
201
+ "8-D",
202
+ "8-d",
203
+ "80",
204
+ "82",
205
+ "83",
206
+ "87",
207
+ "8D",
208
+ "8d",
209
+ "9",
210
+ "90",
211
+ "913",
212
+ "93",
213
+ "933",
214
+ "941",
215
+ "943",
216
+ "950",
217
+ "962",
218
+ "964",
219
+ "97",
220
+ "975",
221
+ "982",
222
+ "987",
223
+ "988",
224
+ "990",
225
+ "994",
226
+ "995",
227
+ "998",
228
+ "999",
229
+ "9es",
230
+ ":",
231
+ ":'(",
232
+ ":')",
233
+ ":'-(",
234
+ ":'-)",
235
+ ":(",
236
+ ":((",
237
+ ":(((",
238
+ ":()",
239
+ ":)",
240
+ ":))",
241
+ ":)))",
242
+ ":*",
243
+ ":-(",
244
+ ":-((",
245
+ ":-(((",
246
+ ":-)",
247
+ ":-))",
248
+ ":-)))",
249
+ ":-*",
250
+ ":-/",
251
+ ":-0",
252
+ ":-3",
253
+ ":->",
254
+ ":-D",
255
+ ":-O",
256
+ ":-P",
257
+ ":-X",
258
+ ":-]",
259
+ ":-d",
260
+ ":-o",
261
+ ":-p",
262
+ ":-x",
263
+ ":-|",
264
+ ":-}",
265
+ ":/",
266
+ ":0",
267
+ ":1",
268
+ ":3",
269
+ ":>",
270
+ ":D",
271
+ ":O",
272
+ ":P",
273
+ ":X",
274
+ ":]",
275
+ ":d",
276
+ ":o",
277
+ ":o)",
278
+ ":p",
279
+ ":x",
280
+ ":x)",
281
+ ":|",
282
+ ":}",
283
+ ":\u2019(",
284
+ ":\u2019)",
285
+ ":\u2019-(",
286
+ ":\u2019-)",
287
+ ";",
288
+ ";)",
289
+ ";-)",
290
+ ";-D",
291
+ ";-X",
292
+ ";-d",
293
+ ";D",
294
+ ";X",
295
+ ";_;",
296
+ ";d",
297
+ "<",
298
+ "<.<",
299
+ "</3",
300
+ "</d",
301
+ "<3",
302
+ "<33",
303
+ "<333",
304
+ "<d",
305
+ "<dd",
306
+ "<ddd",
307
+ "<space>",
308
+ "<xxxx>",
309
+ "=",
310
+ "=(",
311
+ "=)",
312
+ "=/",
313
+ "=3",
314
+ "=D",
315
+ "=X",
316
+ "=[",
317
+ "=]",
318
+ "=d",
319
+ "=|",
320
+ ">",
321
+ ">.<",
322
+ ">.>",
323
+ ">:(",
324
+ ">:o",
325
+ ">:x",
326
+ "><(((*>",
327
+ "@",
328
+ "@_@",
329
+ "A",
330
+ "A-t-elle",
331
+ "A-t-il",
332
+ "A-t-on",
333
+ "ADPA",
334
+ "AFRL",
335
+ "AGE",
336
+ "AMX",
337
+ "Abbas",
338
+ "Abdelaziz",
339
+ "Abdelbaky",
340
+ "Adelina",
341
+ "Adriatique",
342
+ "Affaires",
343
+ "Ag\u00e9e",
344
+ "Aix-en-Provence",
345
+ "Al",
346
+ "Alain",
347
+ "Alfons",
348
+ "Algemeen",
349
+ "Alger",
350
+ "Alg\u00e9rie",
351
+ "Alice",
352
+ "Allemagne",
353
+ "Alliance",
354
+ "Alors",
355
+ "Am\u00e9ricains",
356
+ "Andr\u00e9",
357
+ "Angers",
358
+ "Anja",
359
+ "Apr\u00e8s",
360
+ "Arafat",
361
+ "Arbour",
362
+ "Argonne",
363
+ "Ari",
364
+ "Armen",
365
+ "Art-sur-Meurthe",
366
+ "Arte",
367
+ "Association",
368
+ "Au",
369
+ "Aujourd'",
370
+ "Aujourd'hui",
371
+ "Aujourd\u2019",
372
+ "Aujourd\u2019hui",
373
+ "Auparavant",
374
+ "Autorit\u00e9",
375
+ "Autriche",
376
+ "Aux",
377
+ "Auxerre",
378
+ "Avec",
379
+ "Avertie",
380
+ "Aznar",
381
+ "B",
382
+ "BESAN\u00c7ON",
383
+ "BLE",
384
+ "Bagdad",
385
+ "Balkans",
386
+ "Barnier",
387
+ "Barret",
388
+ "Bas",
389
+ "Baudis",
390
+ "Beauregard",
391
+ "Beit",
392
+ "Belfort",
393
+ "Belgique",
394
+ "Belgrade",
395
+ "Belkacem",
396
+ "Bernard",
397
+ "Bernardi",
398
+ "Besan\u00e7on",
399
+ "Bike",
400
+ "Blair",
401
+ "Blanche",
402
+ "Blazers",
403
+ "Blazy",
404
+ "Bonn",
405
+ "Bootsy",
406
+ "Bordeaux",
407
+ "Boris",
408
+ "Boston",
409
+ "Bouche",
410
+ "Bouhans",
411
+ "Boussac",
412
+ "Bouteflika",
413
+ "Brabois",
414
+ "Briollay",
415
+ "Britannique",
416
+ "Brown",
417
+ "Bruxelles",
418
+ "Bulls",
419
+ "Burget",
420
+ "Bush",
421
+ "C",
422
+ "C'",
423
+ "C++",
424
+ "C.",
425
+ "CDU",
426
+ "CHE",
427
+ "CICV",
428
+ "Cachemire",
429
+ "Caire",
430
+ "Calan",
431
+ "Can'",
432
+ "Carlos",
433
+ "Caroline",
434
+ "Carpezat",
435
+ "Carton",
436
+ "Car\u00e8sche",
437
+ "Ce",
438
+ "Celui",
439
+ "Centre",
440
+ "Ces",
441
+ "Cet",
442
+ "Cette",
443
+ "Chalande",
444
+ "Championnat",
445
+ "Chaque",
446
+ "Charles",
447
+ "Charm",
448
+ "Charte",
449
+ "Cheikh",
450
+ "Chenal",
451
+ "Chev\u00e8nement",
452
+ "Chicago",
453
+ "Chirac",
454
+ "Christian",
455
+ "Christiane",
456
+ "Christophe",
457
+ "Cinq",
458
+ "Cintrey",
459
+ "Cisjordanie",
460
+ "City",
461
+ "Clermont",
462
+ "Clinton",
463
+ "Collins",
464
+ "Commerciens",
465
+ "Commercy",
466
+ "Commission",
467
+ "Congr\u00e8s",
468
+ "Conseil",
469
+ "Corse",
470
+ "Cour",
471
+ "Cresson",
472
+ "Cr\u00e9dit",
473
+ "Cup",
474
+ "D",
475
+ "DIMANCHE",
476
+ "DPA",
477
+ "Daf",
478
+ "Dagblad",
479
+ "Damien",
480
+ "Daniel",
481
+ "Danjoutin",
482
+ "Dans",
483
+ "Dar",
484
+ "Darbinian",
485
+ "Dautriche",
486
+ "De",
487
+ "DeLa",
488
+ "Denis",
489
+ "Depuis",
490
+ "Deseret",
491
+ "Deux",
492
+ "Diawara",
493
+ "Dimanche",
494
+ "Djibril",
495
+ "Domingues",
496
+ "Dominique",
497
+ "Dorsner",
498
+ "Douste",
499
+ "Doyen",
500
+ "Dr",
501
+ "Dr.",
502
+ "Drappier",
503
+ "Dr\u00e9ossi",
504
+ "Du",
505
+ "D\u00e8s",
506
+ "D\u00e9contract\u00e9",
507
+ "E",
508
+ "ERA",
509
+ "EST",
510
+ "EST-IL",
511
+ "ETE",
512
+ "Ecouflant",
513
+ "Eddie",
514
+ "Edith",
515
+ "Ehret",
516
+ "Elizabeth",
517
+ "Elle",
518
+ "Elodie",
519
+ "Eltsine",
520
+ "Elvis",
521
+ "Elys\u00e9e",
522
+ "Emma\u00fcs",
523
+ "En",
524
+ "Entre",
525
+ "Environ",
526
+ "Environnement",
527
+ "Epinal",
528
+ "Epis",
529
+ "Espagne",
530
+ "Essais",
531
+ "Essen",
532
+ "Est",
533
+ "Est-ce",
534
+ "Est-t-elle",
535
+ "Est-t-il",
536
+ "Est-t-on",
537
+ "Estelle",
538
+ "Et",
539
+ "Etang",
540
+ "Etat",
541
+ "Etats-Unis",
542
+ "Etourneaux",
543
+ "Et\u00e9",
544
+ "Europe",
545
+ "Evidemment",
546
+ "F",
547
+ "F.",
548
+ "F1",
549
+ "FC",
550
+ "FERA",
551
+ "FIA",
552
+ "FNEC",
553
+ "FOP",
554
+ "FOR",
555
+ "FP",
556
+ "FRAU",
557
+ "FRL",
558
+ "F^ETE",
559
+ "Fabius",
560
+ "Farandole",
561
+ "Faure",
562
+ "Fein",
563
+ "Femme",
564
+ "Ferm\u00e9",
565
+ "Fernande",
566
+ "Ferrari",
567
+ "Fi",
568
+ "Fiat",
569
+ "Fitoussi",
570
+ "Fleischer",
571
+ "Fontaine",
572
+ "Fontenay",
573
+ "Force",
574
+ "France",
575
+ "Francfort",
576
+ "Fran\u00e7ais",
577
+ "Frau",
578
+ "Fr\u00e9d\u00e9ric",
579
+ "Funkoverload",
580
+ "F\u00e9d\u00e9ration",
581
+ "G",
582
+ "G8",
583
+ "Gagnez",
584
+ "Gale",
585
+ "Galles",
586
+ "Gare",
587
+ "Garnier",
588
+ "Gauche",
589
+ "Gaulle",
590
+ "Gaye",
591
+ "Gaza",
592
+ "George",
593
+ "Georges",
594
+ "Gerhard",
595
+ "Gestapo",
596
+ "Gibraltar",
597
+ "Gilles",
598
+ "Giromagny",
599
+ "Goetzfrid",
600
+ "Grandvallet",
601
+ "Groupements",
602
+ "Gr\u00fcner",
603
+ "G\u00e9n\u00e9ral",
604
+ "G\u00fcnter",
605
+ "H",
606
+ "Hallyday",
607
+ "Hamas",
608
+ "Hanoun",
609
+ "Hans",
610
+ "Har\u00e9ville-sous-Montfort",
611
+ "Havel",
612
+ "Herv\u00e9",
613
+ "Hi",
614
+ "Hier",
615
+ "H\u00e9rimoncourt",
616
+ "I",
617
+ "ICV",
618
+ "IFOP",
619
+ "IMM",
620
+ "INDISPONIBLE",
621
+ "INSEE",
622
+ "Il",
623
+ "Ils",
624
+ "Indique",
625
+ "Indique-t-elle",
626
+ "Indique-t-il",
627
+ "Indique-t-on",
628
+ "Institut",
629
+ "Interpell\u00e9s",
630
+ "Interroger",
631
+ "Intervention",
632
+ "Intifada",
633
+ "Int\u00e9rieur",
634
+ "Irak",
635
+ "Irlande",
636
+ "Irvine",
637
+ "Isabey",
638
+ "Isra\u00e9liens",
639
+ "Isra\u00ebl",
640
+ "Italie",
641
+ "J",
642
+ "J.",
643
+ "Jacques",
644
+ "Jakarta",
645
+ "James",
646
+ "Jazz",
647
+ "Je",
648
+ "Jean",
649
+ "Jean-Paul",
650
+ "Jean-Pierre",
651
+ "Jennifer",
652
+ "Jessica",
653
+ "Jeudi",
654
+ "Jeux",
655
+ "Joachim",
656
+ "Johnny",
657
+ "Jordan",
658
+ "Jose",
659
+ "Jospin",
660
+ "Juliette",
661
+ "Jusqu'",
662
+ "K",
663
+ "K.",
664
+ "KFOR",
665
+ "Kadda",
666
+ "Karl",
667
+ "Kauffmann",
668
+ "Kaufmann",
669
+ "Kelche",
670
+ "Kinston",
671
+ "Klein",
672
+ "Kok",
673
+ "Kosovo",
674
+ "Kursaal",
675
+ "L",
676
+ "L'",
677
+ "LA",
678
+ "LE",
679
+ "La",
680
+ "Laden",
681
+ "Lake",
682
+ "Lamy",
683
+ "Laneuville-au-Rupt",
684
+ "Larch\u00e9",
685
+ "Laura",
686
+ "Laurent",
687
+ "Le",
688
+ "Legeay",
689
+ "Lens",
690
+ "Les",
691
+ "Leur",
692
+ "Lille",
693
+ "Lionel",
694
+ "Lisieux",
695
+ "Londres",
696
+ "Lorraine",
697
+ "Louise",
698
+ "Lure",
699
+ "Luxembourg",
700
+ "Luxeuil-les-Bains",
701
+ "Lyon",
702
+ "Lyonnais",
703
+ "M",
704
+ "M.",
705
+ "MM",
706
+ "MM.",
707
+ "MOIS",
708
+ "MOUSSON.-",
709
+ "Maceo",
710
+ "Magny",
711
+ "Mahmoud",
712
+ "Maine-et-Loire",
713
+ "Mairie",
714
+ "Mais",
715
+ "Maison",
716
+ "Majdanek",
717
+ "Malone",
718
+ "Mangin",
719
+ "Maniacs",
720
+ "Marcel",
721
+ "Marchiani",
722
+ "Maria",
723
+ "Marie-Dani\u00e8le",
724
+ "Marseille",
725
+ "Marvin",
726
+ "Massachusetts",
727
+ "Matignon",
728
+ "Max",
729
+ "McLaren",
730
+ "Meguernes",
731
+ "Meguern\u00e8s",
732
+ "Meslot",
733
+ "Meuse",
734
+ "Miami",
735
+ "Michael",
736
+ "Michaele",
737
+ "Michel",
738
+ "Mich\u00e8le",
739
+ "Milosevic",
740
+ "Mitro",
741
+ "Mitrovica",
742
+ "Mitsubishi",
743
+ "Mlle",
744
+ "Mlle.",
745
+ "Mme",
746
+ "Mme.",
747
+ "Mohamed",
748
+ "Molay",
749
+ "Monaco",
750
+ "Monique",
751
+ "Monod",
752
+ "Monsoreau",
753
+ "Montb\u00e9liard",
754
+ "Montigny-les-Metz",
755
+ "Montpellier",
756
+ "Moque",
757
+ "Moque-t-elle",
758
+ "Moque-t-il",
759
+ "Moque-t-on",
760
+ "Mortagne",
761
+ "Moscou",
762
+ "Moscovici",
763
+ "Mosley",
764
+ "Mr",
765
+ "Mr.",
766
+ "Mufti",
767
+ "M\u00e9diterran\u00e9e",
768
+ "N",
769
+ "N'",
770
+ "N'est-ce",
771
+ "N.-",
772
+ "NCF",
773
+ "NEC",
774
+ "Nadia",
775
+ "Nancy",
776
+ "Nantes",
777
+ "Naplouse",
778
+ "Nations",
779
+ "Neuf",
780
+ "Neuveville-sous-Montfort",
781
+ "News",
782
+ "Nicolas",
783
+ "Nivel",
784
+ "No",
785
+ "No.",
786
+ "Nord",
787
+ "Nordine",
788
+ "Norton",
789
+ "Noura",
790
+ "Nous",
791
+ "Nouvelle",
792
+ "N\u00e9",
793
+ "N\u2019",
794
+ "N\u2019est-ce",
795
+ "O",
796
+ "O.O",
797
+ "O.o",
798
+ "OIS",
799
+ "ONT",
800
+ "ONU",
801
+ "OPEP",
802
+ "OTAN",
803
+ "O_O",
804
+ "O_o",
805
+ "Obernai",
806
+ "Olympiques",
807
+ "Omar",
808
+ "Organisation",
809
+ "Orl\u00e9ans",
810
+ "Ornain",
811
+ "Otan",
812
+ "Ouest-France",
813
+ "Oussama",
814
+ "Ouvri\u00e8re",
815
+ "P",
816
+ "PEP",
817
+ "PKK",
818
+ "PONT",
819
+ "PS",
820
+ "Pajero",
821
+ "Pakistan",
822
+ "Palestine",
823
+ "Palestiniens",
824
+ "Pandraud",
825
+ "Par",
826
+ "Paris",
827
+ "Parker",
828
+ "Parlement",
829
+ "Parmentier",
830
+ "Parquet",
831
+ "Pascal",
832
+ "Pasqua",
833
+ "Passe",
834
+ "Passe-t-elle",
835
+ "Passe-t-il",
836
+ "Passe-t-on",
837
+ "Pays",
838
+ "Pendant",
839
+ "Pentec\u00f4te",
840
+ "Philippe",
841
+ "Piccard",
842
+ "Pierre",
843
+ "Pierre-Alain",
844
+ "Plusieurs",
845
+ "Poche",
846
+ "Poitiers",
847
+ "Pologne",
848
+ "Pont-\u00e0-Mousson",
849
+ "Portland",
850
+ "Premier",
851
+ "Prochains",
852
+ "Proc\u00e8s",
853
+ "Prodi",
854
+ "Protec",
855
+ "Proust",
856
+ "Pr\u00e8s",
857
+ "Pr\u00e9vention",
858
+ "Q",
859
+ "Qa\u00efda",
860
+ "Qu'",
861
+ "Qu'est-ce",
862
+ "Quant",
863
+ "Quatre",
864
+ "Quelque",
865
+ "Qu\u2019",
866
+ "Qu\u2019est-ce",
867
+ "R",
868
+ "RAU",
869
+ "RD",
870
+ "ROOT",
871
+ "RPR",
872
+ "Raffarin",
873
+ "Rahimi",
874
+ "Rambervillers",
875
+ "Rappelant",
876
+ "Reid",
877
+ "Rendez",
878
+ "Rennes",
879
+ "Revenus",
880
+ "Richard",
881
+ "Rien",
882
+ "Robert",
883
+ "Rod",
884
+ "Romano",
885
+ "Rotorua",
886
+ "Russie",
887
+ "R\u00e9gionaux",
888
+ "R\u00e9publique",
889
+ "R\u00e9\u00e9lu",
890
+ "S",
891
+ "S'",
892
+ "S'EST-IL",
893
+ "SEE",
894
+ "SNCF",
895
+ "SPD",
896
+ "Sabine",
897
+ "Saint",
898
+ "Saint-Amand-Sur-Ornain",
899
+ "Saint-Gervais",
900
+ "Saint-Michel",
901
+ "Saint-germain",
902
+ "Sakik",
903
+ "Salt",
904
+ "Sanaa",
905
+ "Sancey-le-Grand",
906
+ "Sangatte",
907
+ "Sarkozy",
908
+ "Savoie",
909
+ "Schreyer",
910
+ "Schroeder",
911
+ "Schr\u00f6der",
912
+ "Secours",
913
+ "Selon",
914
+ "Semble",
915
+ "Semble-t-elle",
916
+ "Semble-t-il",
917
+ "Semble-t-on",
918
+ "Semdim",
919
+ "Senonges",
920
+ "Serbie",
921
+ "Ses",
922
+ "Seules",
923
+ "Sinn",
924
+ "Siwa",
925
+ "Slobodan",
926
+ "Sly",
927
+ "Snow",
928
+ "Sochaux",
929
+ "Soul",
930
+ "St",
931
+ "St.",
932
+ "Ste",
933
+ "Ste.",
934
+ "Stevie",
935
+ "Stewart",
936
+ "Stone",
937
+ "Stop",
938
+ "Strasbourg",
939
+ "Sur",
940
+ "Sylvain",
941
+ "S\u2019",
942
+ "S\u2019EST-IL",
943
+ "T",
944
+ "TAN",
945
+ "TAS",
946
+ "TGV",
947
+ "TIMEX",
948
+ "TPI",
949
+ "TROIS",
950
+ "Tchernomyrdine",
951
+ "Telegraaf",
952
+ "Thierry",
953
+ "Tholy",
954
+ "Thomas",
955
+ "Th\u00e9odore",
956
+ "Tierc\u00e9",
957
+ "Tirailleurs",
958
+ "Tomblaine",
959
+ "Tony",
960
+ "Toulousains",
961
+ "Toulouse",
962
+ "Touques",
963
+ "Tours",
964
+ "Tous",
965
+ "Trail",
966
+ "Tribunal",
967
+ "Trois",
968
+ "Tronville",
969
+ "U",
970
+ "UDF",
971
+ "UIMM",
972
+ "UIMM-88",
973
+ "Un",
974
+ "Une",
975
+ "Union",
976
+ "Unit\u00e9",
977
+ "Utah",
978
+ "V",
979
+ "V.V",
980
+ "VILLAGE",
981
+ "VTT",
982
+ "V_V",
983
+ "Vaclav",
984
+ "Val-et-Ch\u00e2tillon",
985
+ "Valdoie",
986
+ "Valleroy-aux-Saules",
987
+ "Vand\u0153re",
988
+ "Vand\u0153uvre",
989
+ "Vendredi",
990
+ "Venu",
991
+ "Verheugen",
992
+ "Vers",
993
+ "Verts",
994
+ "Vienne",
995
+ "Viktor",
996
+ "Ville",
997
+ "Villepin",
998
+ "Vincent",
999
+ "Void",
1000
+ "Vol",
1001
+ "Vol.",
1002
+ "Vosges",
1003
+ "Vy-les-Lure",
1004
+ "V\u00f4ge",
1005
+ "W",
1006
+ "W.",
1007
+ "Weiss",
1008
+ "Weyland",
1009
+ "William",
1010
+ "Williams",
1011
+ "Wim",
1012
+ "Wonder",
1013
+ "X'",
1014
+ "X'XXX-XX",
1015
+ "X'xxx-xx",
1016
+ "X++",
1017
+ "X-x-xx",
1018
+ "X-x-xxxx",
1019
+ "X.",
1020
+ "X.X",
1021
+ "X.x",
1022
+ "XD",
1023
+ "XDD",
1024
+ "XX",
1025
+ "XX.",
1026
+ "XXX",
1027
+ "XXX-XX",
1028
+ "XXXX",
1029
+ "XXXX-dd",
1030
+ "XXXX.-",
1031
+ "X^XXX",
1032
+ "X_X",
1033
+ "X_x",
1034
+ "Xd",
1035
+ "Xx",
1036
+ "Xx'",
1037
+ "Xx'xxx-xx",
1038
+ "Xx-xxx-Xxxx",
1039
+ "Xx.",
1040
+ "XxXx",
1041
+ "XxXxxxx",
1042
+ "Xxx",
1043
+ "Xxx'",
1044
+ "Xxx-x-xx",
1045
+ "Xxx-x-xxxx",
1046
+ "Xxx-xx",
1047
+ "Xxx-xx-Xxxxx",
1048
+ "Xxx-xxx-Xxxxx",
1049
+ "Xxx.",
1050
+ "Xxxx",
1051
+ "Xxxx-Xxxx",
1052
+ "Xxxx-Xxxxx",
1053
+ "Xxxx-x-Xxxxx",
1054
+ "Xxxx.",
1055
+ "Xxxxx",
1056
+ "Xxxxx'",
1057
+ "Xxxxx'xxx",
1058
+ "Xxxxx-Xxxx",
1059
+ "Xxxxx-Xxxxx",
1060
+ "Xxxxx-Xxxxx-Xxx-Xxxxx",
1061
+ "Xxxxx-x-xx",
1062
+ "Xxxxx-x-xxxx",
1063
+ "Xxxxx-xx-Xxxx",
1064
+ "Xxxxx-xx-Xxxxx",
1065
+ "Xxxxx-xxx-Xxxx",
1066
+ "Xxxxx-xxx-Xxxxx",
1067
+ "Xxxxx-xxxx",
1068
+ "Xxxxx-xxxx-Xxxxx",
1069
+ "Xxxxx\u2019",
1070
+ "Xxxxx\u2019xxx",
1071
+ "Xx\u2019",
1072
+ "Xx\u2019xxx-xx",
1073
+ "X\u2019",
1074
+ "X\u2019XXX-XX",
1075
+ "X\u2019xxx-xx",
1076
+ "Y",
1077
+ "Yasser",
1078
+ "Yemen",
1079
+ "Yohann",
1080
+ "Yougoslavie",
1081
+ "Young",
1082
+ "Z",
1083
+ "Zumkeller",
1084
+ "Z\u00e9lande",
1085
+ "[",
1086
+ "[-:",
1087
+ "[:",
1088
+ "[=",
1089
+ "\\",
1090
+ "\\\")",
1091
+ "\\n",
1092
+ "\\t",
1093
+ "\\x",
1094
+ "]",
1095
+ "]=",
1096
+ "^",
1097
+ "^_^",
1098
+ "^__^",
1099
+ "^___^",
1100
+ "_*)",
1101
+ "_-)",
1102
+ "_.)",
1103
+ "_<)",
1104
+ "_^)",
1105
+ "__-",
1106
+ "__^",
1107
+ "_\u00ac)",
1108
+ "_\u0ca0)",
1109
+ "a",
1110
+ "a-t-elle",
1111
+ "a-t-il",
1112
+ "a-t-on",
1113
+ "a.",
1114
+ "aaf",
1115
+ "aal",
1116
+ "abbas",
1117
+ "abb\u00e9",
1118
+ "abdelaziz",
1119
+ "abdelbaky",
1120
+ "abords",
1121
+ "ab\u00eatir",
1122
+ "acad\u00e9micien",
1123
+ "accepte",
1124
+ "accepter",
1125
+ "accompagn\u00e9",
1126
+ "accord",
1127
+ "accueil",
1128
+ "accueillie",
1129
+ "accusation",
1130
+ "accus\u00e9",
1131
+ "acc\u00e9l\u00e9ration",
1132
+ "ace",
1133
+ "acheter",
1134
+ "achev\u00e9",
1135
+ "ach\u00e8vera",
1136
+ "aco",
1137
+ "acs",
1138
+ "actes",
1139
+ "action",
1140
+ "activit\u00e9",
1141
+ "actuel",
1142
+ "actuelle",
1143
+ "actuellement",
1144
+ "ac\u00e9",
1145
+ "ada",
1146
+ "ade",
1147
+ "adelina",
1148
+ "adh\u00e9rents",
1149
+ "adieux",
1150
+ "adjoint",
1151
+ "administrativement",
1152
+ "administr\u00e9s",
1153
+ "adolescentes",
1154
+ "adopte",
1155
+ "adpa",
1156
+ "adriatique",
1157
+ "ad\u00e9",
1158
+ "ael",
1159
+ "affaires",
1160
+ "affectations",
1161
+ "affection",
1162
+ "affiche",
1163
+ "affin\u00e9s",
1164
+ "affirmait",
1165
+ "affirm\u00e9",
1166
+ "affouage",
1167
+ "afin",
1168
+ "afrl",
1169
+ "age",
1170
+ "agenda",
1171
+ "agents",
1172
+ "agit",
1173
+ "ago",
1174
+ "agressive",
1175
+ "agress\u00e9",
1176
+ "agriculteur",
1177
+ "agriculteurs",
1178
+ "agr\u00e9mentant",
1179
+ "ag\u00e9e",
1180
+ "ai",
1181
+ "aide",
1182
+ "ail",
1183
+ "ailleurs",
1184
+ "aimait",
1185
+ "ain",
1186
+ "ainsi",
1187
+ "air",
1188
+ "ais",
1189
+ "ait",
1190
+ "aix",
1191
+ "aix-en-provence",
1192
+ "ake",
1193
+ "aky",
1194
+ "al",
1195
+ "alain",
1196
+ "album",
1197
+ "ale",
1198
+ "alfons",
1199
+ "algemeen",
1200
+ "alger",
1201
+ "alg\u00e9rie",
1202
+ "alg\u00e9rien",
1203
+ "alice",
1204
+ "aligner",
1205
+ "aliment\u00e9e",
1206
+ "all",
1207
+ "allait",
1208
+ "allemagne",
1209
+ "allemand",
1210
+ "allemands",
1211
+ "aller",
1212
+ "alliance",
1213
+ "alli\u00e9s",
1214
+ "alors",
1215
+ "alsacienne",
1216
+ "alt",
1217
+ "ama",
1218
+ "ambassade",
1219
+ "ambiance",
1220
+ "ame",
1221
+ "ami",
1222
+ "amp",
1223
+ "ams",
1224
+ "amx",
1225
+ "amy",
1226
+ "am\u00e9ricain",
1227
+ "am\u00e9ricains",
1228
+ "an",
1229
+ "an'",
1230
+ "analyse",
1231
+ "ancien",
1232
+ "anciens",
1233
+ "and",
1234
+ "andr\u00e9",
1235
+ "ane",
1236
+ "ang",
1237
+ "angers",
1238
+ "ani",
1239
+ "animation",
1240
+ "anim\u00e9",
1241
+ "anja",
1242
+ "ann",
1243
+ "anniversaire",
1244
+ "annonce",
1245
+ "annonc\u00e9",
1246
+ "annonc\u00e9es",
1247
+ "annul\u00e9",
1248
+ "ann\u00e9e",
1249
+ "ann\u00e9es",
1250
+ "ano",
1251
+ "anormal",
1252
+ "ans",
1253
+ "ant",
1254
+ "anticip\u00e9es",
1255
+ "antinucl\u00e9aire",
1256
+ "anv",
1257
+ "ao\u00fbt",
1258
+ "apaisement",
1259
+ "ape",
1260
+ "apo",
1261
+ "apparaissant",
1262
+ "appartement",
1263
+ "appartient",
1264
+ "appel",
1265
+ "appelleront",
1266
+ "appel\u00e9",
1267
+ "apport\u00e9es",
1268
+ "apprenons",
1269
+ "appr\u00e9ciait",
1270
+ "apr",
1271
+ "apr.",
1272
+ "apr\u00e8s",
1273
+ "apr\u00e8s-midi",
1274
+ "ap\u00e9",
1275
+ "ara",
1276
+ "arafat",
1277
+ "arbitral",
1278
+ "arbour",
1279
+ "archipel",
1280
+ "ard",
1281
+ "ardeur",
1282
+ "are",
1283
+ "argonne",
1284
+ "ari",
1285
+ "arl",
1286
+ "arm",
1287
+ "armen",
1288
+ "armes",
1289
+ "arm\u00e9e",
1290
+ "arm\u00e9es",
1291
+ "arm\u00e9nien",
1292
+ "arrachement",
1293
+ "arrach\u00e9es",
1294
+ "arriv\u00e9",
1295
+ "arr\u00eat",
1296
+ "arr\u00eat\u00e9",
1297
+ "ars",
1298
+ "art",
1299
+ "art-sur-meurthe",
1300
+ "arte",
1301
+ "artiste",
1302
+ "artistique",
1303
+ "aru",
1304
+ "ar\u00e9",
1305
+ "ase",
1306
+ "assembl\u00e9e",
1307
+ "assises",
1308
+ "association",
1309
+ "associ\u00e9",
1310
+ "assurant",
1311
+ "ate",
1312
+ "ats",
1313
+ "attaquant",
1314
+ "attaque",
1315
+ "attaques",
1316
+ "atteindre",
1317
+ "atteint",
1318
+ "attendait",
1319
+ "attendre",
1320
+ "attentat",
1321
+ "attentats",
1322
+ "attente",
1323
+ "attention",
1324
+ "attir\u00e9",
1325
+ "attitude",
1326
+ "attrait",
1327
+ "attribuaient",
1328
+ "au",
1329
+ "au-del\u00e0",
1330
+ "au-dessus",
1331
+ "aube",
1332
+ "aucun",
1333
+ "aucune",
1334
+ "aud",
1335
+ "auditionn\u00e9",
1336
+ "augmentation",
1337
+ "augmente",
1338
+ "augmenter",
1339
+ "augment\u00e9",
1340
+ "aujourd'",
1341
+ "aujourd'hui",
1342
+ "aujourd\u2019",
1343
+ "aujourd\u2019hui",
1344
+ "aul",
1345
+ "aune",
1346
+ "auparavant",
1347
+ "aura",
1348
+ "auront",
1349
+ "aussi",
1350
+ "aussit\u00f4t",
1351
+ "aut",
1352
+ "auteurs",
1353
+ "auto",
1354
+ "automne",
1355
+ "automobile",
1356
+ "autorisant",
1357
+ "autorit\u00e9",
1358
+ "autorit\u00e9s",
1359
+ "autre",
1360
+ "autres",
1361
+ "autriche",
1362
+ "autrichienne",
1363
+ "auxerre",
1364
+ "av",
1365
+ "av.",
1366
+ "avaient",
1367
+ "avait",
1368
+ "avant",
1369
+ "ave",
1370
+ "avec",
1371
+ "avenir",
1372
+ "avenue",
1373
+ "avertie",
1374
+ "aviation",
1375
+ "avide",
1376
+ "avion",
1377
+ "avocats",
1378
+ "avoir",
1379
+ "avons",
1380
+ "avoue",
1381
+ "avr",
1382
+ "avr.",
1383
+ "avril",
1384
+ "axe",
1385
+ "aye",
1386
+ "ays",
1387
+ "aza",
1388
+ "aznar",
1389
+ "azy",
1390
+ "azz",
1391
+ "a\u00e9rienne",
1392
+ "a\u00ebl",
1393
+ "a\u00eet",
1394
+ "a\u00fcs",
1395
+ "b",
1396
+ "b.",
1397
+ "bagdad",
1398
+ "baisse",
1399
+ "bal",
1400
+ "balkans",
1401
+ "ballons",
1402
+ "banale",
1403
+ "bande",
1404
+ "banlieues",
1405
+ "barbel\u00e9s",
1406
+ "barnier",
1407
+ "barret",
1408
+ "bas",
1409
+ "bas\u00e9e",
1410
+ "baudis",
1411
+ "bb\u00e9",
1412
+ "beauregard",
1413
+ "beit",
1414
+ "belfort",
1415
+ "belgique",
1416
+ "belgrade",
1417
+ "belkacem",
1418
+ "ben",
1419
+ "bernard",
1420
+ "bernardi",
1421
+ "besan\u00e7on",
1422
+ "besoin",
1423
+ "bey",
1424
+ "bia",
1425
+ "biais",
1426
+ "biblioth\u00e8que",
1427
+ "bie",
1428
+ "bien",
1429
+ "bike",
1430
+ "bilan",
1431
+ "bis",
1432
+ "blair",
1433
+ "blanche",
1434
+ "blazers",
1435
+ "blazy",
1436
+ "ble",
1437
+ "bless\u00e9",
1438
+ "bless\u00e9s",
1439
+ "blocage",
1440
+ "bois",
1441
+ "bombard\u00e9",
1442
+ "bombe",
1443
+ "bonn",
1444
+ "bonnes",
1445
+ "boom",
1446
+ "bootsy",
1447
+ "bord",
1448
+ "bordeaux",
1449
+ "boris",
1450
+ "boston",
1451
+ "bouche",
1452
+ "boucle",
1453
+ "bouffi",
1454
+ "bouhans",
1455
+ "bourgade",
1456
+ "boussac",
1457
+ "bouteflika",
1458
+ "boycotter",
1459
+ "brabois",
1460
+ "braqu\u00e9",
1461
+ "bras",
1462
+ "bre",
1463
+ "breton",
1464
+ "briollay",
1465
+ "bris\u00e9es",
1466
+ "britannique",
1467
+ "britanniques",
1468
+ "bronchite",
1469
+ "brown",
1470
+ "brut",
1471
+ "bruxelles",
1472
+ "br\u00fblait",
1473
+ "br\u00fbl\u00e9",
1474
+ "budget",
1475
+ "bulls",
1476
+ "bum",
1477
+ "burget",
1478
+ "bus",
1479
+ "bush",
1480
+ "but",
1481
+ "butin",
1482
+ "b\u00e2timent",
1483
+ "b\u00e9e",
1484
+ "b\u00e9n\u00e9ficiaires",
1485
+ "b\u00e9n\u00e9vole",
1486
+ "c",
1487
+ "c'",
1488
+ "c++",
1489
+ "c.",
1490
+ "cachemire",
1491
+ "cadre",
1492
+ "caduc",
1493
+ "caire",
1494
+ "cal",
1495
+ "calan",
1496
+ "camp",
1497
+ "campagne",
1498
+ "camping",
1499
+ "can'",
1500
+ "candidats",
1501
+ "cap",
1502
+ "capitale",
1503
+ "capitalisme",
1504
+ "captivit\u00e9",
1505
+ "caract\u00e9rise",
1506
+ "carambolage",
1507
+ "carlos",
1508
+ "caroline",
1509
+ "carpezat",
1510
+ "carri\u00e8re",
1511
+ "carton",
1512
+ "car\u00e8sche",
1513
+ "casseurs",
1514
+ "cass\u00e9",
1515
+ "catholiques",
1516
+ "cause",
1517
+ "caus\u00e9",
1518
+ "cdu",
1519
+ "ce",
1520
+ "ce>",
1521
+ "cel",
1522
+ "cela",
1523
+ "celle",
1524
+ "celle-ci",
1525
+ "celles",
1526
+ "celles-ci",
1527
+ "celui",
1528
+ "celui-ci",
1529
+ "cem",
1530
+ "centaines",
1531
+ "central",
1532
+ "centrale",
1533
+ "centre",
1534
+ "ceo",
1535
+ "cependant",
1536
+ "cer",
1537
+ "certaines",
1538
+ "ces",
1539
+ "cet",
1540
+ "cette",
1541
+ "cf",
1542
+ "cf.",
1543
+ "chacun",
1544
+ "chalande",
1545
+ "chambre",
1546
+ "championnat",
1547
+ "chancelier",
1548
+ "chang\u00e9",
1549
+ "chantage",
1550
+ "chantier",
1551
+ "chaque",
1552
+ "char",
1553
+ "charge",
1554
+ "charg\u00e9",
1555
+ "charles",
1556
+ "charm",
1557
+ "charte",
1558
+ "chauffeur",
1559
+ "chaussons",
1560
+ "chaussures",
1561
+ "chauss\u00e9e",
1562
+ "che",
1563
+ "chef",
1564
+ "chefs",
1565
+ "cheikh",
1566
+ "chemins",
1567
+ "chenal",
1568
+ "cheville",
1569
+ "chev\u00e8nement",
1570
+ "chez",
1571
+ "chicago",
1572
+ "chiffre",
1573
+ "chiffres",
1574
+ "chirac",
1575
+ "choses",
1576
+ "christian",
1577
+ "christiane",
1578
+ "christophe",
1579
+ "chr\u00e9tienne",
1580
+ "ch\u00e9",
1581
+ "ci",
1582
+ "ci-dessous",
1583
+ "cibles",
1584
+ "cicv",
1585
+ "cie",
1586
+ "cinglante",
1587
+ "cinq",
1588
+ "cintrey",
1589
+ "cisjordanie",
1590
+ "citoyenne",
1591
+ "citoyens",
1592
+ "city",
1593
+ "cit\u00e9",
1594
+ "ci\u00e9",
1595
+ "cle",
1596
+ "clermont",
1597
+ "client",
1598
+ "clins",
1599
+ "clinton",
1600
+ "club",
1601
+ "co-pilote",
1602
+ "cohabitation",
1603
+ "coh\u00e9rence",
1604
+ "coh\u00e9rence\u00bb.-",
1605
+ "collaboration",
1606
+ "collaboratrice",
1607
+ "collabor\u00e9",
1608
+ "collins",
1609
+ "coll\u00e8gues",
1610
+ "comit\u00e9",
1611
+ "comme",
1612
+ "commerciens",
1613
+ "commercy",
1614
+ "commis",
1615
+ "commissaires",
1616
+ "commissariat",
1617
+ "commission",
1618
+ "commun",
1619
+ "commune",
1620
+ "communes",
1621
+ "communiqu\u00e9",
1622
+ "compagnie",
1623
+ "comparaissait",
1624
+ "compara\u00eetre",
1625
+ "comparution",
1626
+ "complet",
1627
+ "complice",
1628
+ "complicit\u00e9",
1629
+ "complot",
1630
+ "compl\u00e8te",
1631
+ "compl\u00e9tement",
1632
+ "composition",
1633
+ "compos\u00e9",
1634
+ "comptait",
1635
+ "compte",
1636
+ "compter",
1637
+ "comptes",
1638
+ "concernant",
1639
+ "concert",
1640
+ "condamnations",
1641
+ "condamn\u00e9",
1642
+ "conditions",
1643
+ "conduisaient",
1644
+ "conduits",
1645
+ "confiance",
1646
+ "confidentiels",
1647
+ "confirme",
1648
+ "confirment",
1649
+ "confirmer",
1650
+ "confirm\u00e9e",
1651
+ "confiserie",
1652
+ "conflit",
1653
+ "conformit\u00e9",
1654
+ "confus",
1655
+ "conf\u00e9rence",
1656
+ "congr\u00e8s",
1657
+ "conjoncture",
1658
+ "connaissent",
1659
+ "conna\u00eet",
1660
+ "connu",
1661
+ "connue",
1662
+ "connus",
1663
+ "conseil",
1664
+ "conseiller",
1665
+ "conseillers",
1666
+ "consentements",
1667
+ "conservatrice",
1668
+ "consistant",
1669
+ "constante",
1670
+ "constitution",
1671
+ "consultations",
1672
+ "cons\u00e9quences",
1673
+ "container",
1674
+ "continuera",
1675
+ "contrat",
1676
+ "contre",
1677
+ "contr\u00f4le",
1678
+ "convaincu",
1679
+ "convention",
1680
+ "convictions",
1681
+ "convolera",
1682
+ "coop\u00e9ration",
1683
+ "coop\u00e9rer",
1684
+ "coordonne",
1685
+ "corde",
1686
+ "correctionnel",
1687
+ "corse",
1688
+ "cou",
1689
+ "coup",
1690
+ "coupable",
1691
+ "coups",
1692
+ "cour",
1693
+ "courant",
1694
+ "coureurs",
1695
+ "cours",
1696
+ "course",
1697
+ "courts",
1698
+ "co\u00e9quipier",
1699
+ "co\u00fbt",
1700
+ "craignaient",
1701
+ "craintes",
1702
+ "cresson",
1703
+ "criminalit\u00e9",
1704
+ "croissance",
1705
+ "cr\u00e8ve",
1706
+ "cr\u00e9ation",
1707
+ "cr\u00e9dit",
1708
+ "cr\u00e9\u00e9",
1709
+ "cr\u00e9\u00e9e",
1710
+ "ct.",
1711
+ "ct\u00e9",
1712
+ "cuisinier",
1713
+ "cun",
1714
+ "cup",
1715
+ "c\u00e8s",
1716
+ "c\u00e9l\u00e9br\u00e9es",
1717
+ "c\u00e9l\u00e9br\u00e9s",
1718
+ "c\u00e9r\u00e9monie",
1719
+ "c\u00e9s",
1720
+ "c\u00f4t\u00e9",
1721
+ "d",
1722
+ "d'",
1723
+ "d)",
1724
+ "d,d",
1725
+ "d,dd",
1726
+ "d-",
1727
+ "d-)",
1728
+ "d-X",
1729
+ "d.",
1730
+ "d.d",
1731
+ "d.ddd",
1732
+ "d.ddd.ddd",
1733
+ "d.x",
1734
+ "dX",
1735
+ "d_d",
1736
+ "d_x",
1737
+ "dad",
1738
+ "daf",
1739
+ "dagblad",
1740
+ "damien",
1741
+ "dan",
1742
+ "danger",
1743
+ "daniel",
1744
+ "danjoutin",
1745
+ "dans",
1746
+ "dansant",
1747
+ "dar",
1748
+ "darbinian",
1749
+ "dat",
1750
+ "date",
1751
+ "dauphins",
1752
+ "dautriche",
1753
+ "day",
1754
+ "dd",
1755
+ "dd,d",
1756
+ "dd.ddd",
1757
+ "dd.ddd.ddd",
1758
+ "dda",
1759
+ "ddd",
1760
+ "ddd.ddd",
1761
+ "dddd",
1762
+ "ddx",
1763
+ "ddxx",
1764
+ "de",
1765
+ "dela",
1766
+ "del\u00e0",
1767
+ "demain",
1768
+ "demande",
1769
+ "demander",
1770
+ "demand\u00e9",
1771
+ "demeurant",
1772
+ "demeure",
1773
+ "demi-finale",
1774
+ "demi-si\u00e8cle",
1775
+ "den",
1776
+ "denis",
1777
+ "depuis",
1778
+ "der",
1779
+ "dernier",
1780
+ "derniers",
1781
+ "derni\u00e8re",
1782
+ "derni\u00e8res",
1783
+ "des",
1784
+ "deseret",
1785
+ "dessous",
1786
+ "dessus",
1787
+ "deux",
1788
+ "deuxi\u00e8me",
1789
+ "devait",
1790
+ "devance",
1791
+ "devant",
1792
+ "devons",
1793
+ "devra",
1794
+ "devraient",
1795
+ "devrait",
1796
+ "dez",
1797
+ "dia",
1798
+ "dialogue",
1799
+ "diawara",
1800
+ "die",
1801
+ "difficult\u00e9",
1802
+ "diffus\u00e9",
1803
+ "diffus\u00e9es",
1804
+ "dim",
1805
+ "dimanche",
1806
+ "diplomates",
1807
+ "directeur",
1808
+ "dirigeant",
1809
+ "dirigeants",
1810
+ "dis",
1811
+ "discussions",
1812
+ "disent",
1813
+ "dispara\u00eetront",
1814
+ "disponibles",
1815
+ "dispositions",
1816
+ "disputer",
1817
+ "disput\u00e9e",
1818
+ "distribution",
1819
+ "dit",
1820
+ "diverses",
1821
+ "dix",
1822
+ "dix-huit",
1823
+ "dizaine",
1824
+ "di\u00e9",
1825
+ "djibril",
1826
+ "documents",
1827
+ "doit",
1828
+ "doivent",
1829
+ "dollars",
1830
+ "domaines",
1831
+ "domicile",
1832
+ "domingues",
1833
+ "dominique",
1834
+ "donner",
1835
+ "donn\u00e9",
1836
+ "dont",
1837
+ "dorsner",
1838
+ "dossier",
1839
+ "douaniers",
1840
+ "double",
1841
+ "douste",
1842
+ "doute",
1843
+ "douze",
1844
+ "douzi\u00e8me",
1845
+ "doyen",
1846
+ "doyenne",
1847
+ "dr",
1848
+ "dr.",
1849
+ "dra",
1850
+ "drappier",
1851
+ "dre",
1852
+ "droit",
1853
+ "dr\u00e9",
1854
+ "dr\u00e9ossi",
1855
+ "du",
1856
+ "duc",
1857
+ "due",
1858
+ "durables",
1859
+ "durant",
1860
+ "durera",
1861
+ "dur\u00e9",
1862
+ "dur\u00e9e",
1863
+ "dus",
1864
+ "dx",
1865
+ "dxx",
1866
+ "d\u00b0",
1867
+ "d\u00e8s",
1868
+ "d\u00e9bloquer",
1869
+ "d\u00e9but",
1870
+ "d\u00e9c",
1871
+ "d\u00e9c.",
1872
+ "d\u00e9celer",
1873
+ "d\u00e9cembre",
1874
+ "d\u00e9centralisation",
1875
+ "d\u00e9chetterie",
1876
+ "d\u00e9cident",
1877
+ "d\u00e9cider",
1878
+ "d\u00e9cision",
1879
+ "d\u00e9clar\u00e9",
1880
+ "d\u00e9contract\u00e9",
1881
+ "d\u00e9couvrant",
1882
+ "d\u00e9crets",
1883
+ "d\u00e9c\u00e9d\u00e9e",
1884
+ "d\u00e9e",
1885
+ "d\u00e9faire",
1886
+ "d\u00e9faite",
1887
+ "d\u00e9fense",
1888
+ "d\u00e9fenseur",
1889
+ "d\u00e9gradations",
1890
+ "d\u00e9grad\u00e9",
1891
+ "d\u00e9j\u00e0",
1892
+ "d\u00e9lib\u00e9rer",
1893
+ "d\u00e9linquance",
1894
+ "d\u00e9loger",
1895
+ "d\u00e9l\u00e9gu\u00e9",
1896
+ "d\u00e9l\u00e9gu\u00e9s",
1897
+ "d\u00e9mission",
1898
+ "d\u00e9missionn\u00e9",
1899
+ "d\u00e9mocrate",
1900
+ "d\u00e9mocratie",
1901
+ "d\u00e9mographique",
1902
+ "d\u00e9m\u00ealer",
1903
+ "d\u00e9noncer",
1904
+ "d\u00e9o",
1905
+ "d\u00e9part",
1906
+ "d\u00e9partements",
1907
+ "d\u00e9pass\u00e9",
1908
+ "d\u00e9placement",
1909
+ "d\u00e9placer",
1910
+ "d\u00e9pla\u00e7ant",
1911
+ "d\u00e9put\u00e9",
1912
+ "d\u00e9put\u00e9s",
1913
+ "d\u00e9roulera",
1914
+ "d\u00e9roul\u00e9es",
1915
+ "d\u00e9roul\u00e9s",
1916
+ "d\u00e9s",
1917
+ "d\u00e9sert",
1918
+ "d\u00e9sesp\u00e9rer",
1919
+ "d\u00e9sormais",
1920
+ "d\u00e9tach\u00e9",
1921
+ "d\u00e9tenus",
1922
+ "d\u00e9troit",
1923
+ "d\u00e9t\u00e9rioration",
1924
+ "d\u00e9\u00e7us",
1925
+ "d\u00fb",
1926
+ "e",
1927
+ "e.",
1928
+ "eLa",
1929
+ "ean",
1930
+ "eau",
1931
+ "eay",
1932
+ "ecouflant",
1933
+ "eddie",
1934
+ "edi",
1935
+ "edith",
1936
+ "eek",
1937
+ "een",
1938
+ "effectuait",
1939
+ "effectuer",
1940
+ "effectuera",
1941
+ "effectu\u00e9",
1942
+ "effraction",
1943
+ "efs",
1944
+ "ehret",
1945
+ "eid",
1946
+ "eil",
1947
+ "ein",
1948
+ "eit",
1949
+ "el",
1950
+ "ela",
1951
+ "ele",
1952
+ "elizabeth",
1953
+ "elle",
1954
+ "elle-m\u00eame",
1955
+ "elles",
1956
+ "elodie",
1957
+ "els",
1958
+ "eltsine",
1959
+ "elvis",
1960
+ "elys\u00e9e",
1961
+ "el\u00e0",
1962
+ "el\u00e9",
1963
+ "emma\u00fcs",
1964
+ "employeur",
1965
+ "employ\u00e9",
1966
+ "em\u00e9",
1967
+ "en",
1968
+ "en-dessous",
1969
+ "enceinte",
1970
+ "encontre",
1971
+ "encore",
1972
+ "end",
1973
+ "enfant",
1974
+ "enfants",
1975
+ "engageaient",
1976
+ "engagement",
1977
+ "enl\u00e8vements",
1978
+ "enqu\u00eate",
1979
+ "enregistre",
1980
+ "ens",
1981
+ "ensemble",
1982
+ "ensuite",
1983
+ "ent",
1984
+ "entorse",
1985
+ "entre",
1986
+ "entrepris",
1987
+ "entreprises",
1988
+ "entretiens",
1989
+ "entr\u00e9e",
1990
+ "enu",
1991
+ "environ",
1992
+ "environnement",
1993
+ "envoy\u00e9",
1994
+ "epinal",
1995
+ "epis",
1996
+ "ept",
1997
+ "era",
1998
+ "ero",
1999
+ "erreur",
2000
+ "ers",
2001
+ "ert",
2002
+ "escalade",
2003
+ "espagne",
2004
+ "espagnol",
2005
+ "espoir",
2006
+ "esprit",
2007
+ "esp\u00e8rent",
2008
+ "esp\u00e9rer",
2009
+ "essai",
2010
+ "essais",
2011
+ "essayer",
2012
+ "essen",
2013
+ "essuy\u00e9",
2014
+ "est",
2015
+ "est-ce",
2016
+ "est-il",
2017
+ "est-t-elle",
2018
+ "est-t-il",
2019
+ "est-t-on",
2020
+ "estelle",
2021
+ "estimant",
2022
+ "estiment",
2023
+ "estim\u00e9",
2024
+ "et",
2025
+ "etang",
2026
+ "etat",
2027
+ "etats-unis",
2028
+ "etc",
2029
+ "etc.",
2030
+ "eth",
2031
+ "etourneaux",
2032
+ "ets",
2033
+ "etz",
2034
+ "et\u00e9",
2035
+ "eu",
2036
+ "euf",
2037
+ "eur",
2038
+ "europe",
2039
+ "europ\u00e9en",
2040
+ "europ\u00e9enne",
2041
+ "europ\u00e9ennes",
2042
+ "eut",
2043
+ "eux",
2044
+ "evidemment",
2045
+ "ev\u00e9",
2046
+ "ews",
2047
+ "ex-Yougoslavie",
2048
+ "ex-pays",
2049
+ "ex-yougoslavie",
2050
+ "exactement",
2051
+ "exactions",
2052
+ "examen",
2053
+ "excellente",
2054
+ "exception",
2055
+ "exercer",
2056
+ "exerc\u00e9",
2057
+ "exhibition",
2058
+ "existait",
2059
+ "explique",
2060
+ "expliquer",
2061
+ "explosion",
2062
+ "explosions",
2063
+ "explos\u00e9",
2064
+ "exportateurs",
2065
+ "exporter",
2066
+ "expression",
2067
+ "exprimer",
2068
+ "extasi\u00e9e",
2069
+ "extermination",
2070
+ "extrader",
2071
+ "extradition",
2072
+ "ext\u00e9rieure",
2073
+ "ex\u00e9cutif",
2074
+ "f",
2075
+ "f.",
2076
+ "f1",
2077
+ "f^ete",
2078
+ "fabius",
2079
+ "faciles",
2080
+ "faiblesse",
2081
+ "faire",
2082
+ "faisait",
2083
+ "fait",
2084
+ "faite",
2085
+ "faits",
2086
+ "famille",
2087
+ "farandole",
2088
+ "fat",
2089
+ "fatwa",
2090
+ "fatwas",
2091
+ "faure",
2092
+ "faut",
2093
+ "favorable",
2094
+ "favoris",
2095
+ "fa\u00e7ade",
2096
+ "fa\u00e7on",
2097
+ "fc",
2098
+ "fein",
2099
+ "femme",
2100
+ "femmes",
2101
+ "fer",
2102
+ "fera",
2103
+ "ferme",
2104
+ "fermer",
2105
+ "ferm\u00e9",
2106
+ "ferm\u00e9e",
2107
+ "fernande",
2108
+ "feront",
2109
+ "ferrari",
2110
+ "festival",
2111
+ "fet",
2112
+ "feu",
2113
+ "ffi",
2114
+ "fi",
2115
+ "fia",
2116
+ "fiat",
2117
+ "fic",
2118
+ "fid\u00e9lit\u00e9",
2119
+ "fie",
2120
+ "fier",
2121
+ "figure",
2122
+ "figurent",
2123
+ "fil",
2124
+ "fillette",
2125
+ "film\u00e9e",
2126
+ "fin",
2127
+ "finale",
2128
+ "financier",
2129
+ "fini",
2130
+ "finlandais",
2131
+ "fisc",
2132
+ "fiscalit\u00e9",
2133
+ "fit",
2134
+ "fitoussi",
2135
+ "fix\u00e9",
2136
+ "fix\u00e9e",
2137
+ "fleischer",
2138
+ "fleuris",
2139
+ "flotte",
2140
+ "fnec",
2141
+ "fois",
2142
+ "fonction",
2143
+ "fonctions",
2144
+ "font",
2145
+ "fontaine",
2146
+ "fontenay",
2147
+ "football",
2148
+ "footing",
2149
+ "force",
2150
+ "forces",
2151
+ "forc\u00e9ment",
2152
+ "formation",
2153
+ "forme",
2154
+ "formel",
2155
+ "fort",
2156
+ "fortement",
2157
+ "fouilles",
2158
+ "fp",
2159
+ "fr",
2160
+ "fracture",
2161
+ "france",
2162
+ "francfort",
2163
+ "fran\u00e7ais",
2164
+ "frappes",
2165
+ "frapp\u00e9",
2166
+ "fraternit\u00e9",
2167
+ "frau",
2168
+ "fre",
2169
+ "frein",
2170
+ "fr\u00e9d\u00e9ric",
2171
+ "fr\u00e9quemment",
2172
+ "fr\u00f4l\u00e9",
2173
+ "fta",
2174
+ "fti",
2175
+ "fum\u00e9e",
2176
+ "funk",
2177
+ "funkoverload",
2178
+ "fureur",
2179
+ "fus",
2180
+ "fut",
2181
+ "future",
2182
+ "fuyards",
2183
+ "f\u00e2cheuses",
2184
+ "f\u00e9d\u00e9ration",
2185
+ "f\u00e9vr",
2186
+ "f\u00e9vr.",
2187
+ "f\u00e9vrier",
2188
+ "f\u00eate",
2189
+ "f\u00eates",
2190
+ "g",
2191
+ "g.",
2192
+ "g8",
2193
+ "gagnez",
2194
+ "gale",
2195
+ "galles",
2196
+ "gar",
2197
+ "garages",
2198
+ "garderie",
2199
+ "gardes",
2200
+ "gare",
2201
+ "garnier",
2202
+ "gauche",
2203
+ "gaulle",
2204
+ "gaye",
2205
+ "gaz",
2206
+ "gaza",
2207
+ "gen",
2208
+ "gendarme",
2209
+ "gendarmerie",
2210
+ "gendarmes",
2211
+ "genou",
2212
+ "gentille",
2213
+ "george",
2214
+ "georges",
2215
+ "ger",
2216
+ "gerhard",
2217
+ "ges",
2218
+ "gestapo",
2219
+ "get",
2220
+ "gibraltar",
2221
+ "gie",
2222
+ "gigantesque",
2223
+ "gilles",
2224
+ "gin",
2225
+ "giromagny",
2226
+ "git",
2227
+ "globale",
2228
+ "gne",
2229
+ "gny",
2230
+ "gn\u00e9",
2231
+ "goetzfrid",
2232
+ "gourdins",
2233
+ "gouvernement",
2234
+ "grand",
2235
+ "grandes",
2236
+ "grandi",
2237
+ "grands",
2238
+ "grandvallet",
2239
+ "grave",
2240
+ "grenade",
2241
+ "grenades",
2242
+ "grise",
2243
+ "groupe",
2244
+ "groupements",
2245
+ "gr\u00e9",
2246
+ "gr\u00fcner",
2247
+ "gue",
2248
+ "guerre",
2249
+ "gu\u00e9",
2250
+ "gu\u00e9rilleros",
2251
+ "gym",
2252
+ "g\u00e9ant",
2253
+ "g\u00e9e",
2254
+ "g\u00e9nial",
2255
+ "g\u00e9n\u00e9ral",
2256
+ "g\u00e9n\u00e9rale",
2257
+ "g\u00e9n\u00e9raux",
2258
+ "g\u00e9rer",
2259
+ "g\u00fcnter",
2260
+ "h",
2261
+ "h.",
2262
+ "habitante",
2263
+ "habitants",
2264
+ "habite",
2265
+ "habitent",
2266
+ "habitu\u00e9s",
2267
+ "habit\u00e9",
2268
+ "hal",
2269
+ "hallyday",
2270
+ "halte",
2271
+ "hamas",
2272
+ "handicap\u00e9",
2273
+ "handicap\u00e9e",
2274
+ "hangar",
2275
+ "hanoun",
2276
+ "hans",
2277
+ "har",
2278
+ "har\u00e9ville-sous-montfort",
2279
+ "hausse",
2280
+ "haut",
2281
+ "haut-fonctionnaire",
2282
+ "hauteur",
2283
+ "hauteurs",
2284
+ "havel",
2285
+ "hef",
2286
+ "hel",
2287
+ "her",
2288
+ "herv\u00e9",
2289
+ "hes",
2290
+ "heure",
2291
+ "heures",
2292
+ "heurt\u00e9",
2293
+ "hez",
2294
+ "hi",
2295
+ "hier",
2296
+ "him",
2297
+ "himalayenne",
2298
+ "hip-hop",
2299
+ "hiver",
2300
+ "homicides",
2301
+ "hommage",
2302
+ "homme",
2303
+ "hommes",
2304
+ "hooligans",
2305
+ "hop",
2306
+ "hospitalis\u00e9",
2307
+ "hui",
2308
+ "huit",
2309
+ "humanitaire",
2310
+ "hypoth\u00e8se",
2311
+ "h\u00e9e",
2312
+ "h\u00e9rimoncourt",
2313
+ "h\u00e9s",
2314
+ "h\u00f4pital",
2315
+ "h\u00f4te",
2316
+ "h\u00f4tel",
2317
+ "i",
2318
+ "i.",
2319
+ "ial",
2320
+ "iam",
2321
+ "ian",
2322
+ "iat",
2323
+ "ibu",
2324
+ "ica",
2325
+ "ice",
2326
+ "ici",
2327
+ "ics",
2328
+ "ict",
2329
+ "ide",
2330
+ "idi",
2331
+ "id\u00e9",
2332
+ "ied",
2333
+ "iel",
2334
+ "ien",
2335
+ "ier",
2336
+ "ies",
2337
+ "ieu",
2338
+ "ifop",
2339
+ "ifs",
2340
+ "ifta",
2341
+ "ika",
2342
+ "ike",
2343
+ "ikh",
2344
+ "il",
2345
+ "ile",
2346
+ "ill",
2347
+ "ils",
2348
+ "ime",
2349
+ "imi",
2350
+ "immigr\u00e9s",
2351
+ "immunit\u00e9",
2352
+ "imm\u00e9diate",
2353
+ "important",
2354
+ "importante",
2355
+ "imposer",
2356
+ "impos\u00e9s",
2357
+ "im\u00e9",
2358
+ "ina",
2359
+ "inaugur\u00e9e",
2360
+ "incendie",
2361
+ "incendies",
2362
+ "incendi\u00e9",
2363
+ "incertains",
2364
+ "incertitude",
2365
+ "incident",
2366
+ "incidents",
2367
+ "inclus",
2368
+ "inconnu",
2369
+ "inconnue",
2370
+ "incursion",
2371
+ "indienne",
2372
+ "indique",
2373
+ "indique-t-elle",
2374
+ "indique-t-il",
2375
+ "indique-t-on",
2376
+ "indiqu\u00e9",
2377
+ "indisponible",
2378
+ "individus",
2379
+ "indo-pakistanais",
2380
+ "industrialis\u00e9es",
2381
+ "industrialis\u00e9s",
2382
+ "industrielle",
2383
+ "industries",
2384
+ "ine",
2385
+ "ing",
2386
+ "ini",
2387
+ "initialement",
2388
+ "initiative",
2389
+ "inn",
2390
+ "innocenter",
2391
+ "inopin\u00e9es",
2392
+ "inq",
2393
+ "inqui\u00e9tude",
2394
+ "ins",
2395
+ "inscriptions",
2396
+ "insee",
2397
+ "installer",
2398
+ "install\u00e9",
2399
+ "institut",
2400
+ "institutions",
2401
+ "ins\u00e9curit\u00e9",
2402
+ "int",
2403
+ "international",
2404
+ "internationale",
2405
+ "interpalestinienne",
2406
+ "interpellation",
2407
+ "interpeller",
2408
+ "interpell\u00e9s",
2409
+ "interroger",
2410
+ "interrog\u00e9es",
2411
+ "intervention",
2412
+ "interviennent",
2413
+ "intifada",
2414
+ "int\u00e9rieur",
2415
+ "investissement",
2416
+ "investissent",
2417
+ "investiture",
2418
+ "invite",
2419
+ "in\u00e9puisable",
2420
+ "ion",
2421
+ "ipe",
2422
+ "ira",
2423
+ "irak",
2424
+ "ire",
2425
+ "irlande",
2426
+ "irs",
2427
+ "irvine",
2428
+ "ir\u00e9",
2429
+ "isabey",
2430
+ "isc",
2431
+ "ise",
2432
+ "isra\u00e9lien",
2433
+ "isra\u00e9lienne",
2434
+ "isra\u00e9liens",
2435
+ "isra\u00e9lo",
2436
+ "isra\u00ebl",
2437
+ "iss",
2438
+ "issue",
2439
+ "is\u00e9",
2440
+ "italie",
2441
+ "ite",
2442
+ "ith",
2443
+ "its",
2444
+ "ity",
2445
+ "it\u00e9",
2446
+ "ium",
2447
+ "ius",
2448
+ "ive",
2449
+ "ivi",
2450
+ "iv\u00e9",
2451
+ "iwa",
2452
+ "ix\u00e9",
2453
+ "i\u00e9e",
2454
+ "i\u00e9s",
2455
+ "j",
2456
+ "j'",
2457
+ "j.",
2458
+ "jacques",
2459
+ "jakarta",
2460
+ "jamais",
2461
+ "james",
2462
+ "janv",
2463
+ "janv.",
2464
+ "janvier",
2465
+ "jardini\u00e8res",
2466
+ "jardins",
2467
+ "jazz",
2468
+ "je",
2469
+ "jean",
2470
+ "jean-paul",
2471
+ "jean-pierre",
2472
+ "jennifer",
2473
+ "jessica",
2474
+ "jet",
2475
+ "jet\u00e9",
2476
+ "jet\u00e9es",
2477
+ "jeudi",
2478
+ "jeudis",
2479
+ "jeune",
2480
+ "jeux",
2481
+ "je\u00fbne",
2482
+ "joachim",
2483
+ "johnny",
2484
+ "jonction",
2485
+ "jor",
2486
+ "jordan",
2487
+ "jose",
2488
+ "jospin",
2489
+ "jour",
2490
+ "journal",
2491
+ "journaux",
2492
+ "journ\u00e9e",
2493
+ "jours",
2494
+ "judiciaire",
2495
+ "juge",
2496
+ "juger",
2497
+ "juifs",
2498
+ "juill",
2499
+ "juill.",
2500
+ "juillet",
2501
+ "juin",
2502
+ "juliette",
2503
+ "jur\u00e9s",
2504
+ "jusqu'",
2505
+ "jusque",
2506
+ "jusque-l\u00e0",
2507
+ "justes",
2508
+ "justice",
2509
+ "justifiait",
2510
+ "justifie",
2511
+ "k",
2512
+ "k.",
2513
+ "kadda",
2514
+ "kalachnikovs",
2515
+ "karl",
2516
+ "kauffmann",
2517
+ "kaufmann",
2518
+ "kelche",
2519
+ "ker",
2520
+ "kfor",
2521
+ "kik",
2522
+ "kinston",
2523
+ "klein",
2524
+ "km",
2525
+ "kok",
2526
+ "kosovo",
2527
+ "kurde",
2528
+ "kursaal",
2529
+ "l",
2530
+ "l'",
2531
+ "l.",
2532
+ "la",
2533
+ "laborantine",
2534
+ "lad",
2535
+ "laden",
2536
+ "laisserai",
2537
+ "lake",
2538
+ "lamy",
2539
+ "lan",
2540
+ "lanc\u00e9",
2541
+ "laneuville-au-rupt",
2542
+ "larch\u00e9",
2543
+ "las",
2544
+ "laura",
2545
+ "laurent",
2546
+ "lav",
2547
+ "lay",
2548
+ "le",
2549
+ "le-",
2550
+ "le.",
2551
+ "leader",
2552
+ "legeay",
2553
+ "lendemain",
2554
+ "lenoncourtois",
2555
+ "lens",
2556
+ "ler",
2557
+ "les",
2558
+ "let",
2559
+ "leur",
2560
+ "leurs",
2561
+ "leviers",
2562
+ "ley",
2563
+ "lib\u00e9ration",
2564
+ "lib\u00e9r\u00e9s",
2565
+ "lic",
2566
+ "lie",
2567
+ "lieu",
2568
+ "ligamentaire",
2569
+ "ligne",
2570
+ "lille",
2571
+ "lionel",
2572
+ "lisieux",
2573
+ "liste",
2574
+ "lit",
2575
+ "litanie",
2576
+ "li\u00e9",
2577
+ "ll.",
2578
+ "lle",
2579
+ "lls",
2580
+ "ll\u00e9",
2581
+ "local",
2582
+ "locales",
2583
+ "localit\u00e9",
2584
+ "location",
2585
+ "locaux",
2586
+ "loin",
2587
+ "loisirs",
2588
+ "lon",
2589
+ "londres",
2590
+ "lorraine",
2591
+ "lors",
2592
+ "lorsqu'",
2593
+ "lorsque",
2594
+ "los",
2595
+ "lot",
2596
+ "loterie",
2597
+ "louise",
2598
+ "low",
2599
+ "lte",
2600
+ "lt\u00e9",
2601
+ "lub",
2602
+ "lui",
2603
+ "lui-m\u00eame",
2604
+ "lundi",
2605
+ "lune",
2606
+ "lunettes",
2607
+ "lure",
2608
+ "lus",
2609
+ "lutter",
2610
+ "luxembourg",
2611
+ "luxeuil-les-bains",
2612
+ "lye",
2613
+ "lynchage",
2614
+ "lyon",
2615
+ "lyonnais",
2616
+ "l\u00e0",
2617
+ "l\u00e9e",
2618
+ "l\u00e9ger",
2619
+ "l\u00e9gislatif",
2620
+ "l\u00e9gislatives",
2621
+ "l\u00e9s",
2622
+ "m",
2623
+ "m.",
2624
+ "maceo",
2625
+ "magny",
2626
+ "mahmoud",
2627
+ "mai",
2628
+ "main",
2629
+ "maine-et-loire",
2630
+ "mains",
2631
+ "maintenant",
2632
+ "maire",
2633
+ "mairie",
2634
+ "mais",
2635
+ "maison",
2636
+ "majdanek",
2637
+ "majeur",
2638
+ "major",
2639
+ "mal",
2640
+ "malgr\u00e9",
2641
+ "mall\u00e9ole",
2642
+ "malone",
2643
+ "manageur",
2644
+ "manches",
2645
+ "mandat",
2646
+ "mandats",
2647
+ "mangin",
2648
+ "maniacs",
2649
+ "manions",
2650
+ "mani\u00e8re",
2651
+ "man\u00e8ge",
2652
+ "man\u0153uvre",
2653
+ "mar",
2654
+ "marcel",
2655
+ "marchant",
2656
+ "marchiani",
2657
+ "mardi",
2658
+ "marge",
2659
+ "maria",
2660
+ "mariage",
2661
+ "mariages",
2662
+ "marie-dani\u00e8le",
2663
+ "mari\u00e9",
2664
+ "mari\u00e9e",
2665
+ "mari\u00e9s",
2666
+ "marque",
2667
+ "marqu\u00e9",
2668
+ "mars",
2669
+ "marseille",
2670
+ "marvin",
2671
+ "mar\u00e9chal",
2672
+ "mas",
2673
+ "massachusetts",
2674
+ "massacres",
2675
+ "matches",
2676
+ "matignon",
2677
+ "matin",
2678
+ "maturit\u00e9",
2679
+ "mat\u00e9riel",
2680
+ "max",
2681
+ "mbe",
2682
+ "mclaren",
2683
+ "me.",
2684
+ "med",
2685
+ "meeting",
2686
+ "meguernes",
2687
+ "meguern\u00e8s",
2688
+ "meilleur",
2689
+ "mel",
2690
+ "membre",
2691
+ "men",
2692
+ "menac\u00e9",
2693
+ "menait",
2694
+ "mental",
2695
+ "mentale",
2696
+ "men\u00e9e",
2697
+ "mer",
2698
+ "mercredi",
2699
+ "mes",
2700
+ "meslot",
2701
+ "messe",
2702
+ "mesures",
2703
+ "met",
2704
+ "mets",
2705
+ "mettre",
2706
+ "meubles",
2707
+ "meurtre",
2708
+ "meuse",
2709
+ "miami",
2710
+ "michael",
2711
+ "michaele",
2712
+ "michel",
2713
+ "mich\u00e8le",
2714
+ "midi",
2715
+ "mieux",
2716
+ "militaire",
2717
+ "militants",
2718
+ "milliards",
2719
+ "milliers",
2720
+ "millions",
2721
+ "milosevic",
2722
+ "mine",
2723
+ "mineurs",
2724
+ "ministre",
2725
+ "ministres",
2726
+ "minist\u00e8re",
2727
+ "minist\u00e9riel",
2728
+ "minute",
2729
+ "minutes",
2730
+ "mis",
2731
+ "mise",
2732
+ "mises",
2733
+ "mission",
2734
+ "mitro",
2735
+ "mitrovica",
2736
+ "mitsubishi",
2737
+ "mlle",
2738
+ "mlle.",
2739
+ "mm",
2740
+ "mm.",
2741
+ "mme",
2742
+ "mme.",
2743
+ "mm\u00e9",
2744
+ "mne",
2745
+ "mn\u00e9",
2746
+ "modifications",
2747
+ "mod\u00e8le",
2748
+ "mohamed",
2749
+ "moins",
2750
+ "mois",
2751
+ "molay",
2752
+ "moment",
2753
+ "monaco",
2754
+ "monde",
2755
+ "mondiale",
2756
+ "mondialisation",
2757
+ "monique",
2758
+ "monod",
2759
+ "monsoreau",
2760
+ "montagnes",
2761
+ "montb\u00e9liard",
2762
+ "montigny-les-metz",
2763
+ "montpellier",
2764
+ "montre",
2765
+ "montrent",
2766
+ "montr\u00e9",
2767
+ "moque",
2768
+ "moque-t-elle",
2769
+ "moque-t-il",
2770
+ "moque-t-on",
2771
+ "moral",
2772
+ "mort",
2773
+ "mortagne",
2774
+ "morts",
2775
+ "moscou",
2776
+ "moscovici",
2777
+ "mosley",
2778
+ "mot",
2779
+ "mousson.-",
2780
+ "mouvement",
2781
+ "moyenne",
2782
+ "mps",
2783
+ "mr",
2784
+ "mr.",
2785
+ "mufti",
2786
+ "mun",
2787
+ "municipal",
2788
+ "municipale",
2789
+ "municipalit\u00e9",
2790
+ "musicien",
2791
+ "musiciens",
2792
+ "musulmans",
2793
+ "m\u00e8tres",
2794
+ "m\u00e9contentes",
2795
+ "m\u00e9diterran\u00e9e",
2796
+ "m\u00e9e",
2797
+ "m\u00e9faits",
2798
+ "m\u00e9tallurgie",
2799
+ "m\u00e9tier",
2800
+ "m\u00e9tiers",
2801
+ "m\u00e9tropole",
2802
+ "m\u00e9t\u00e9orologiques",
2803
+ "m\u00eame",
2804
+ "m\u00eames",
2805
+ "n",
2806
+ "n'",
2807
+ "n'est-ce",
2808
+ "n.",
2809
+ "naa",
2810
+ "nadia",
2811
+ "nager",
2812
+ "nai",
2813
+ "nal",
2814
+ "nancy",
2815
+ "nanc\u00e9ien",
2816
+ "nantes",
2817
+ "naplouse",
2818
+ "nar",
2819
+ "nat",
2820
+ "national",
2821
+ "nationale",
2822
+ "nationaux",
2823
+ "nations",
2824
+ "nature",
2825
+ "naturel",
2826
+ "nay",
2827
+ "nce",
2828
+ "ncu",
2829
+ "ncy",
2830
+ "nc\u00e9",
2831
+ "nda",
2832
+ "nde",
2833
+ "ndi",
2834
+ "nds",
2835
+ "ndu",
2836
+ "nd\u00e9",
2837
+ "ne",
2838
+ "nek",
2839
+ "nel",
2840
+ "ner",
2841
+ "nes",
2842
+ "nettoyage",
2843
+ "neuf",
2844
+ "neuveville-sous-montfort",
2845
+ "news",
2846
+ "nez",
2847
+ "ngt",
2848
+ "ng\u00e9",
2849
+ "nicolas",
2850
+ "nie",
2851
+ "nir",
2852
+ "nis",
2853
+ "nivel",
2854
+ "nja",
2855
+ "nne",
2856
+ "nnu",
2857
+ "nny",
2858
+ "nn\u00e9",
2859
+ "no",
2860
+ "no.",
2861
+ "noces",
2862
+ "nocturne",
2863
+ "nocturnes",
2864
+ "nod",
2865
+ "noir",
2866
+ "nol",
2867
+ "nombreuses",
2868
+ "nombreux",
2869
+ "nomination",
2870
+ "nomm\u00e9",
2871
+ "noms",
2872
+ "non",
2873
+ "nord",
2874
+ "nordine",
2875
+ "norton",
2876
+ "nos",
2877
+ "notamment",
2878
+ "note",
2879
+ "notre",
2880
+ "nou",
2881
+ "noura",
2882
+ "nourriture",
2883
+ "nous",
2884
+ "nouveau",
2885
+ "nouveaux",
2886
+ "nouvelle",
2887
+ "nouvellement",
2888
+ "nouvelles",
2889
+ "nov",
2890
+ "nov.",
2891
+ "novembre",
2892
+ "now",
2893
+ "noy\u00e9e",
2894
+ "nse",
2895
+ "nsi",
2896
+ "nte",
2897
+ "nts",
2898
+ "nt\u00e9",
2899
+ "nucl\u00e9aire",
2900
+ "nue",
2901
+ "nuit",
2902
+ "nuits",
2903
+ "nus",
2904
+ "nv.",
2905
+ "nze",
2906
+ "n\u00b0",
2907
+ "n\u00e8s",
2908
+ "n\u00e9",
2909
+ "n\u00e9cessit\u00e9",
2910
+ "n\u00e9e",
2911
+ "n\u00e9erlandais",
2912
+ "n\u00e9gociations",
2913
+ "n\u00e9s",
2914
+ "n\u2019",
2915
+ "n\u2019est-ce",
2916
+ "o",
2917
+ "o.",
2918
+ "o.0",
2919
+ "o.O",
2920
+ "o.o",
2921
+ "o_0",
2922
+ "o_O",
2923
+ "o_o",
2924
+ "oad",
2925
+ "oasis",
2926
+ "obernai",
2927
+ "objectif",
2928
+ "objet",
2929
+ "objets",
2930
+ "observatoire",
2931
+ "observe",
2932
+ "observ\u00e9es",
2933
+ "obs\u00e8ques",
2934
+ "occasion",
2935
+ "occup\u00e9s",
2936
+ "oct",
2937
+ "oct.",
2938
+ "octobre",
2939
+ "octroyer",
2940
+ "ode",
2941
+ "odi",
2942
+ "oeils",
2943
+ "office",
2944
+ "offices",
2945
+ "officielle",
2946
+ "officiellement",
2947
+ "offriront",
2948
+ "oga",
2949
+ "oid",
2950
+ "oie",
2951
+ "oin",
2952
+ "oir",
2953
+ "ois",
2954
+ "oit",
2955
+ "oix",
2956
+ "ol.",
2957
+ "ole",
2958
+ "olo",
2959
+ "oly",
2960
+ "olympiques",
2961
+ "omar",
2962
+ "oms",
2963
+ "on",
2964
+ "ond",
2965
+ "one",
2966
+ "onn",
2967
+ "ons",
2968
+ "ont",
2969
+ "onu",
2970
+ "ony",
2971
+ "oom",
2972
+ "ope",
2973
+ "opep",
2974
+ "oppose",
2975
+ "opposition",
2976
+ "optimisme",
2977
+ "optimiste",
2978
+ "optimistes",
2979
+ "op\u00e9",
2980
+ "op\u00e9ration",
2981
+ "op\u00e9rationnelle",
2982
+ "op\u00e9rations",
2983
+ "op\u00e9rer",
2984
+ "op\u00e9r\u00e9",
2985
+ "ord",
2986
+ "ordre",
2987
+ "ore",
2988
+ "organisaient",
2989
+ "organisation",
2990
+ "organise",
2991
+ "organiser",
2992
+ "organisme",
2993
+ "organis\u00e9",
2994
+ "organis\u00e9es",
2995
+ "origine",
2996
+ "orl\u00e9ans",
2997
+ "ornain",
2998
+ "ors",
2999
+ "ort",
3000
+ "or\u00e9",
3001
+ "ose",
3002
+ "os\u00e9",
3003
+ "otages",
3004
+ "otan",
3005
+ "ote",
3006
+ "ou",
3007
+ "oud",
3008
+ "oue",
3009
+ "ouest",
3010
+ "ouest-france",
3011
+ "oul",
3012
+ "oun",
3013
+ "oup",
3014
+ "our",
3015
+ "ous",
3016
+ "oussama",
3017
+ "out",
3018
+ "outillage",
3019
+ "outre",
3020
+ "outre-mer",
3021
+ "ouvert",
3022
+ "ouverte",
3023
+ "ouverture",
3024
+ "ouvrir",
3025
+ "ouvri\u00e8re",
3026
+ "oux",
3027
+ "ov.",
3028
+ "ovo",
3029
+ "ovs",
3030
+ "own",
3031
+ "oy\u00e9",
3032
+ "ozy",
3033
+ "o\u00f9",
3034
+ "o\u00fbt",
3035
+ "p",
3036
+ "p.",
3037
+ "paix",
3038
+ "pajero",
3039
+ "pakistan",
3040
+ "pal",
3041
+ "palestine",
3042
+ "palestinien",
3043
+ "palestinienne",
3044
+ "palestiniennes",
3045
+ "palestiniens",
3046
+ "pandraud",
3047
+ "panne",
3048
+ "papier",
3049
+ "par",
3050
+ "parcs",
3051
+ "paris",
3052
+ "parker",
3053
+ "parlement",
3054
+ "parler",
3055
+ "parmentier",
3056
+ "parmi",
3057
+ "parole",
3058
+ "parquet",
3059
+ "part",
3060
+ "partenariat",
3061
+ "parti",
3062
+ "participait",
3063
+ "participer",
3064
+ "particuli\u00e8rement",
3065
+ "partie",
3066
+ "partir",
3067
+ "paru",
3068
+ "parutions",
3069
+ "pas",
3070
+ "pascal",
3071
+ "pasqua",
3072
+ "passants",
3073
+ "passe",
3074
+ "passe-passe",
3075
+ "passe-t-elle",
3076
+ "passe-t-il",
3077
+ "passe-t-on",
3078
+ "pass\u00e9",
3079
+ "pass\u00e9e",
3080
+ "pastorale",
3081
+ "patrouilles",
3082
+ "pays",
3083
+ "paysage",
3084
+ "peine",
3085
+ "peines",
3086
+ "pel",
3087
+ "pendant",
3088
+ "pensant",
3089
+ "pensent",
3090
+ "pentec\u00f4te",
3091
+ "per",
3092
+ "perdu",
3093
+ "permet",
3094
+ "permis",
3095
+ "perp\u00e9tr\u00e9s",
3096
+ "perp\u00e9tuit\u00e9",
3097
+ "persistant",
3098
+ "personne",
3099
+ "personnel",
3100
+ "personnes",
3101
+ "pes",
3102
+ "peser",
3103
+ "petite",
3104
+ "petits",
3105
+ "peu",
3106
+ "peut",
3107
+ "peut-\u00eatre",
3108
+ "peuvent",
3109
+ "pharmacie",
3110
+ "phase",
3111
+ "phe",
3112
+ "philippe",
3113
+ "piccard",
3114
+ "pie",
3115
+ "pied",
3116
+ "pierre",
3117
+ "pierre-alain",
3118
+ "pin",
3119
+ "pioche",
3120
+ "pique-nique",
3121
+ "pis",
3122
+ "piscine",
3123
+ "pi\u00e9g\u00e9es",
3124
+ "pkk",
3125
+ "place",
3126
+ "plaid\u00e9",
3127
+ "plan",
3128
+ "pleine",
3129
+ "plong\u00e9",
3130
+ "plupart",
3131
+ "plus",
3132
+ "plusieurs",
3133
+ "plut\u00f4t",
3134
+ "poche",
3135
+ "podium",
3136
+ "point",
3137
+ "points",
3138
+ "poitiers",
3139
+ "police",
3140
+ "policiers",
3141
+ "politique",
3142
+ "politiques",
3143
+ "pologne",
3144
+ "polyvalente",
3145
+ "pompiers",
3146
+ "pont",
3147
+ "pont-\u00e0-mousson",
3148
+ "pop",
3149
+ "populaire",
3150
+ "population",
3151
+ "porte-parole",
3152
+ "portefeuilles",
3153
+ "portes",
3154
+ "portland",
3155
+ "position",
3156
+ "possible",
3157
+ "poss\u00e8de",
3158
+ "poste",
3159
+ "pos\u00e9",
3160
+ "pour",
3161
+ "pourquoi",
3162
+ "pourrait",
3163
+ "pourront",
3164
+ "poursuit",
3165
+ "poursuite",
3166
+ "pouvoir",
3167
+ "pouvoirs",
3168
+ "pouvons",
3169
+ "pp",
3170
+ "pp.",
3171
+ "ppe",
3172
+ "pp\u00e9",
3173
+ "pr.",
3174
+ "premier",
3175
+ "premiers",
3176
+ "premi\u00e8re",
3177
+ "premi\u00e8res",
3178
+ "prendra",
3179
+ "prendront",
3180
+ "presse",
3181
+ "prestations",
3182
+ "principales",
3183
+ "principe",
3184
+ "principes",
3185
+ "printemps",
3186
+ "pris",
3187
+ "prise",
3188
+ "prises",
3189
+ "prison",
3190
+ "prix",
3191
+ "probable",
3192
+ "probl\u00e8me",
3193
+ "prochain",
3194
+ "prochains",
3195
+ "proche",
3196
+ "proches",
3197
+ "procurent",
3198
+ "procurer",
3199
+ "procureur",
3200
+ "proc\u00e8s",
3201
+ "proc\u00e9dure",
3202
+ "prodi",
3203
+ "produit",
3204
+ "produits",
3205
+ "professionnelle",
3206
+ "profil",
3207
+ "profile",
3208
+ "profit",
3209
+ "profitent",
3210
+ "programme",
3211
+ "progr\u00e8s",
3212
+ "promenade",
3213
+ "prononcer",
3214
+ "prononc\u00e9s",
3215
+ "propose",
3216
+ "propositions",
3217
+ "protec",
3218
+ "protestants",
3219
+ "proust",
3220
+ "prouver",
3221
+ "province",
3222
+ "proximit\u00e9",
3223
+ "prudence",
3224
+ "pr\u00e8s",
3225
+ "pr\u00e9-rentr\u00e9e",
3226
+ "pr\u00e9cipit\u00e9e",
3227
+ "pr\u00e9c\u00e9dent",
3228
+ "pr\u00e9fet",
3229
+ "pr\u00e9sence",
3230
+ "pr\u00e9senter",
3231
+ "pr\u00e9sents",
3232
+ "pr\u00e9server",
3233
+ "pr\u00e9side",
3234
+ "pr\u00e9sidence",
3235
+ "pr\u00e9sident",
3236
+ "pr\u00e9sidentiel",
3237
+ "pr\u00e9sidentielle",
3238
+ "pr\u00e9sider",
3239
+ "pr\u00e9sid\u00e9",
3240
+ "pr\u00e9sum\u00e9",
3241
+ "pr\u00e9vention",
3242
+ "pr\u00e9venus",
3243
+ "pr\u00e9vue",
3244
+ "pr\u00e9vus",
3245
+ "pr\u00eat",
3246
+ "pr\u00f4n\u00e9e",
3247
+ "ps",
3248
+ "pse",
3249
+ "pt.",
3250
+ "pte",
3251
+ "pu",
3252
+ "public",
3253
+ "publics",
3254
+ "publique",
3255
+ "publi\u00e9",
3256
+ "puise",
3257
+ "puisqu'",
3258
+ "puisque",
3259
+ "puissances",
3260
+ "purger",
3261
+ "p\u00e9e",
3262
+ "p\u00e9nal",
3263
+ "p\u00e9ri",
3264
+ "p\u00e9ri-urbaine",
3265
+ "p\u00e9riode",
3266
+ "p\u00e9s",
3267
+ "p\u00e9trole",
3268
+ "q",
3269
+ "q.",
3270
+ "qa\u00efda",
3271
+ "qu'",
3272
+ "qu'est-ce",
3273
+ "qua",
3274
+ "qualifie",
3275
+ "quant",
3276
+ "quart",
3277
+ "quartier",
3278
+ "quatre",
3279
+ "quatri\u00e8me",
3280
+ "que",
3281
+ "quelque",
3282
+ "quelques",
3283
+ "quelques-uns",
3284
+ "question",
3285
+ "qui",
3286
+ "quinquennat",
3287
+ "quinzaine",
3288
+ "quinze",
3289
+ "quitter",
3290
+ "quitt\u00e9",
3291
+ "quotidien",
3292
+ "quotidiens",
3293
+ "qu\u00e9",
3294
+ "qu\u2019",
3295
+ "qu\u2019est-ce",
3296
+ "r",
3297
+ "r.",
3298
+ "rac",
3299
+ "raffarin",
3300
+ "rahimi",
3301
+ "rai",
3302
+ "raison",
3303
+ "rak",
3304
+ "ral",
3305
+ "ralentie",
3306
+ "ralentir",
3307
+ "ralentissement",
3308
+ "rallye",
3309
+ "ramassage",
3310
+ "rambervillers",
3311
+ "rames",
3312
+ "rang",
3313
+ "rappelant",
3314
+ "rappel\u00e9",
3315
+ "rapport",
3316
+ "ras",
3317
+ "rase",
3318
+ "rassur\u00e9",
3319
+ "rat",
3320
+ "rattraper",
3321
+ "rau",
3322
+ "raviv\u00e9",
3323
+ "rayon",
3324
+ "rce",
3325
+ "rcs",
3326
+ "rcy",
3327
+ "rc\u00e9",
3328
+ "rd",
3329
+ "rd'",
3330
+ "rde",
3331
+ "rdi",
3332
+ "rds",
3333
+ "rdu",
3334
+ "rd\u00e9",
3335
+ "rd\u2019",
3336
+ "rebond",
3337
+ "rebonds",
3338
+ "recel",
3339
+ "recensement",
3340
+ "recevait",
3341
+ "recevoir",
3342
+ "recherches",
3343
+ "reconduit",
3344
+ "reconnu",
3345
+ "reconstruction",
3346
+ "refaite",
3347
+ "regarder",
3348
+ "reid",
3349
+ "reine",
3350
+ "rel",
3351
+ "relais",
3352
+ "relie",
3353
+ "religieux",
3354
+ "remis",
3355
+ "remises",
3356
+ "remontent",
3357
+ "remplace",
3358
+ "remport\u00e9",
3359
+ "ren",
3360
+ "rencontre",
3361
+ "rencontr\u00e9",
3362
+ "rend",
3363
+ "rendez",
3364
+ "rendez-vous",
3365
+ "rendu",
3366
+ "rendue",
3367
+ "rendus",
3368
+ "renforcement",
3369
+ "rennes",
3370
+ "renouent",
3371
+ "renouvellement",
3372
+ "renouvel\u00e9e",
3373
+ "rentrant",
3374
+ "rentr\u00e9",
3375
+ "rentr\u00e9e",
3376
+ "repas",
3377
+ "report\u00e9",
3378
+ "repousser",
3379
+ "reprise",
3380
+ "reprises",
3381
+ "reproch\u00e9s",
3382
+ "repr\u00e9sentant",
3383
+ "repr\u00e9senter",
3384
+ "requis",
3385
+ "rer",
3386
+ "res",
3387
+ "rescousse",
3388
+ "respiratoires",
3389
+ "responsabilit\u00e9s",
3390
+ "responsables",
3391
+ "ressemble",
3392
+ "reste",
3393
+ "ret",
3394
+ "retard\u00e9",
3395
+ "retour",
3396
+ "retrait",
3397
+ "retraite",
3398
+ "retransmise",
3399
+ "revenus",
3400
+ "reviendra",
3401
+ "revitaliser",
3402
+ "rey",
3403
+ "re\u00e7us",
3404
+ "rge",
3405
+ "rg\u00e9",
3406
+ "ria",
3407
+ "ric",
3408
+ "richard",
3409
+ "rid",
3410
+ "rie",
3411
+ "rien",
3412
+ "rigueur",
3413
+ "ril",
3414
+ "rin",
3415
+ "rir",
3416
+ "ris",
3417
+ "rit",
3418
+ "rivi\u00e8re",
3419
+ "rix",
3420
+ "ri\u00e9",
3421
+ "rme",
3422
+ "rmi",
3423
+ "rm\u00e9",
3424
+ "rne",
3425
+ "rn\u00e9",
3426
+ "robert",
3427
+ "rod",
3428
+ "roi",
3429
+ "romano",
3430
+ "ron",
3431
+ "rondes",
3432
+ "rop",
3433
+ "ros",
3434
+ "rotorua",
3435
+ "rouleaux",
3436
+ "route",
3437
+ "routi\u00e8re",
3438
+ "rouvrira",
3439
+ "rpr",
3440
+ "rre",
3441
+ "rry",
3442
+ "rse",
3443
+ "rta",
3444
+ "rte",
3445
+ "rti",
3446
+ "rts",
3447
+ "rt\u00e9",
3448
+ "rua",
3449
+ "rue",
3450
+ "rues",
3451
+ "rupture",
3452
+ "russe",
3453
+ "russie",
3454
+ "rut",
3455
+ "rve",
3456
+ "rv\u00e9",
3457
+ "r\u00e8glement",
3458
+ "r\u00e8glements",
3459
+ "r\u00e8s",
3460
+ "r\u00e9aliser",
3461
+ "r\u00e9alis\u00e9",
3462
+ "r\u00e9alis\u00e9es",
3463
+ "r\u00e9alit\u00e9",
3464
+ "r\u00e9clame",
3465
+ "r\u00e9clusion",
3466
+ "r\u00e9e",
3467
+ "r\u00e9formes",
3468
+ "r\u00e9galer",
3469
+ "r\u00e9giment",
3470
+ "r\u00e9gion",
3471
+ "r\u00e9gional",
3472
+ "r\u00e9gionales",
3473
+ "r\u00e9gionalisation",
3474
+ "r\u00e9gionaux",
3475
+ "r\u00e9guler",
3476
+ "r\u00e9guli\u00e8rement",
3477
+ "r\u00e9novation",
3478
+ "r\u00e9nover",
3479
+ "r\u00e9partition",
3480
+ "r\u00e9ponses",
3481
+ "r\u00e9publique",
3482
+ "r\u00e9s",
3483
+ "r\u00e9seau",
3484
+ "r\u00e9seaux",
3485
+ "r\u00e9serves",
3486
+ "r\u00e9serv\u00e9e",
3487
+ "r\u00e9sidents",
3488
+ "r\u00e9solution",
3489
+ "r\u00e9sultats",
3490
+ "r\u00e9tablie",
3491
+ "r\u00e9union",
3492
+ "r\u00e9unira",
3493
+ "r\u00e9ussi",
3494
+ "r\u00e9ussir",
3495
+ "r\u00e9v\u00e8le",
3496
+ "r\u00e9\u00e9",
3497
+ "r\u00e9\u00e9lu",
3498
+ "r\u00eat",
3499
+ "r\u00eave",
3500
+ "r\u00eaver",
3501
+ "s",
3502
+ "s'",
3503
+ "s'est-il",
3504
+ "s.",
3505
+ "sa",
3506
+ "sabine",
3507
+ "sable",
3508
+ "sac",
3509
+ "saccage",
3510
+ "sacs",
3511
+ "sai",
3512
+ "sains",
3513
+ "saint",
3514
+ "saint-amand-sur-ornain",
3515
+ "saint-germain",
3516
+ "saint-gervais",
3517
+ "saint-michel",
3518
+ "saisir",
3519
+ "sait",
3520
+ "sakik",
3521
+ "salari\u00e9s",
3522
+ "salle",
3523
+ "salt",
3524
+ "samedi",
3525
+ "sanaa",
3526
+ "sancey-le-grand",
3527
+ "sanctionn\u00e9",
3528
+ "sanctions",
3529
+ "sangatte",
3530
+ "sans",
3531
+ "sant\u00e9",
3532
+ "sarkozy",
3533
+ "satisfait",
3534
+ "saufs",
3535
+ "sauter",
3536
+ "sauvage",
3537
+ "savoie",
3538
+ "savoir",
3539
+ "saxophoniste",
3540
+ "scandale",
3541
+ "scepticisme",
3542
+ "schreyer",
3543
+ "schroeder",
3544
+ "schr\u00f6der",
3545
+ "sc\u00e8ne",
3546
+ "se",
3547
+ "second",
3548
+ "seconde",
3549
+ "secondes",
3550
+ "secours",
3551
+ "secr\u00e9taire",
3552
+ "section",
3553
+ "sein",
3554
+ "selon",
3555
+ "semaine",
3556
+ "semaines",
3557
+ "semblait",
3558
+ "semble",
3559
+ "semble-t-elle",
3560
+ "semble-t-il",
3561
+ "semble-t-on",
3562
+ "semdim",
3563
+ "semestre",
3564
+ "sem\u00e9",
3565
+ "sen",
3566
+ "senonges",
3567
+ "sensibilit\u00e9s",
3568
+ "sensible",
3569
+ "sept",
3570
+ "sept.",
3571
+ "septembre",
3572
+ "ser",
3573
+ "sera",
3574
+ "serai",
3575
+ "serait",
3576
+ "serbie",
3577
+ "seront",
3578
+ "serveuse",
3579
+ "services",
3580
+ "ses",
3581
+ "seules",
3582
+ "sexuelle",
3583
+ "shi",
3584
+ "si",
3585
+ "sie",
3586
+ "signe",
3587
+ "signes",
3588
+ "sinn",
3589
+ "sir",
3590
+ "sis",
3591
+ "situation",
3592
+ "situ\u00e9e",
3593
+ "siwa",
3594
+ "six",
3595
+ "si\u00e8cle",
3596
+ "slobodan",
3597
+ "sly",
3598
+ "sme",
3599
+ "sncf",
3600
+ "snow",
3601
+ "sochaux",
3602
+ "social",
3603
+ "social-d\u00e9mocrate",
3604
+ "socialiste",
3605
+ "soci\u00e9t\u00e9",
3606
+ "soir",
3607
+ "soir\u00e9e",
3608
+ "soit",
3609
+ "soldat",
3610
+ "soldats",
3611
+ "solo",
3612
+ "solutions",
3613
+ "sommes",
3614
+ "son",
3615
+ "sondage",
3616
+ "sond\u00e9s",
3617
+ "sont",
3618
+ "sorti",
3619
+ "sorties",
3620
+ "souffre",
3621
+ "souhaite",
3622
+ "souhaiterait",
3623
+ "soul",
3624
+ "souligne",
3625
+ "soumis",
3626
+ "sous",
3627
+ "sous-marin",
3628
+ "souvent",
3629
+ "space",
3630
+ "spd",
3631
+ "spectacle",
3632
+ "spectaculaire",
3633
+ "sport",
3634
+ "sp\u00e9cial",
3635
+ "sp\u00e9ciales",
3636
+ "sse",
3637
+ "ssi",
3638
+ "ss\u00e9",
3639
+ "st",
3640
+ "st.",
3641
+ "stage",
3642
+ "statistique",
3643
+ "statutaire",
3644
+ "ste",
3645
+ "ste.",
3646
+ "stevie",
3647
+ "stewart",
3648
+ "stockage",
3649
+ "stone",
3650
+ "stop",
3651
+ "strasbourg",
3652
+ "strict",
3653
+ "structure",
3654
+ "su",
3655
+ "subitement",
3656
+ "substitut",
3657
+ "succession",
3658
+ "sue",
3659
+ "suis",
3660
+ "suit",
3661
+ "suite",
3662
+ "suivaient",
3663
+ "suivants",
3664
+ "suivi",
3665
+ "sujet",
3666
+ "sujets",
3667
+ "suppl\u00e9mentaire",
3668
+ "sup\u00e9rette",
3669
+ "sup\u00e9rieure",
3670
+ "sup\u00e9rieurs",
3671
+ "sur",
3672
+ "surmonter",
3673
+ "surveillance",
3674
+ "sus",
3675
+ "susceptibles",
3676
+ "sylvain",
3677
+ "symbolique",
3678
+ "syst\u00e8mes",
3679
+ "s\u00e9ances",
3680
+ "s\u00e9curis\u00e9",
3681
+ "s\u00e9curit\u00e9",
3682
+ "s\u00e9e",
3683
+ "s\u00e9jours",
3684
+ "s\u00e9nateur",
3685
+ "s\u00e9n\u00e9galais",
3686
+ "s\u00e9paratisme",
3687
+ "s\u00e9paratiste",
3688
+ "s\u00e9rie",
3689
+ "s\u00e9s",
3690
+ "s\u00e9v\u00e9rit\u00e9",
3691
+ "s\u00fbrs",
3692
+ "s\u2019",
3693
+ "s\u2019est-il",
3694
+ "t",
3695
+ "t.",
3696
+ "tabass\u00e9",
3697
+ "tah",
3698
+ "tal",
3699
+ "talent",
3700
+ "tan",
3701
+ "tandis",
3702
+ "tar",
3703
+ "tard",
3704
+ "tas",
3705
+ "tat",
3706
+ "tatouage",
3707
+ "taux",
3708
+ "taxe",
3709
+ "taxes",
3710
+ "tc.",
3711
+ "tchernomyrdine",
3712
+ "tch\u00e8que",
3713
+ "te.",
3714
+ "tec",
3715
+ "techniques",
3716
+ "technologie",
3717
+ "tel",
3718
+ "telegraaf",
3719
+ "temps",
3720
+ "tendances",
3721
+ "tenir",
3722
+ "tentatives",
3723
+ "tenter",
3724
+ "tent\u00e9",
3725
+ "tenu",
3726
+ "ter",
3727
+ "territoire",
3728
+ "territoires",
3729
+ "terrorisme",
3730
+ "terroriste",
3731
+ "terroristes",
3732
+ "tes",
3733
+ "textile",
3734
+ "tgv",
3735
+ "the",
3736
+ "thierry",
3737
+ "tholy",
3738
+ "thomas",
3739
+ "th\u00e8se",
3740
+ "th\u00e9",
3741
+ "th\u00e9odore",
3742
+ "th\u00e9\u00e2tre",
3743
+ "tibia",
3744
+ "tie",
3745
+ "tiendra",
3746
+ "tierc\u00e9",
3747
+ "tiers",
3748
+ "tif",
3749
+ "tin",
3750
+ "tir",
3751
+ "tirailleurs",
3752
+ "tirs",
3753
+ "tir\u00e9",
3754
+ "titres",
3755
+ "titulaire",
3756
+ "toiture",
3757
+ "tomblaine",
3758
+ "tomb\u00e9e",
3759
+ "ton",
3760
+ "tony",
3761
+ "top",
3762
+ "tor",
3763
+ "tortur\u00e9",
3764
+ "totalise",
3765
+ "totalit\u00e9",
3766
+ "touch\u00e9",
3767
+ "toujours",
3768
+ "toulousains",
3769
+ "toulouse",
3770
+ "touques",
3771
+ "tour",
3772
+ "tourisme",
3773
+ "touristique",
3774
+ "tourn\u00e9",
3775
+ "tours",
3776
+ "tous",
3777
+ "tout",
3778
+ "toute",
3779
+ "toutefois",
3780
+ "toutes",
3781
+ "tpi",
3782
+ "tradition",
3783
+ "trafic",
3784
+ "trail",
3785
+ "train",
3786
+ "trait\u00e9",
3787
+ "transfert",
3788
+ "transformateurs",
3789
+ "transitent",
3790
+ "transmission",
3791
+ "travaillait",
3792
+ "travaillant",
3793
+ "travailler",
3794
+ "travailliste",
3795
+ "travaill\u00e9",
3796
+ "travaux",
3797
+ "traversait",
3798
+ "traverse",
3799
+ "tre",
3800
+ "trentaine",
3801
+ "tribu",
3802
+ "tribunal",
3803
+ "triomphalement",
3804
+ "tro",
3805
+ "trois",
3806
+ "troisi\u00e8mes",
3807
+ "tronville",
3808
+ "trop",
3809
+ "troph\u00e9e",
3810
+ "trouble",
3811
+ "troupes",
3812
+ "trouvait",
3813
+ "trouver",
3814
+ "tr\u00e8s",
3815
+ "tr\u00e9",
3816
+ "tr\u00e9s",
3817
+ "tr\u00eave",
3818
+ "tsy",
3819
+ "tte",
3820
+ "tts",
3821
+ "tt\u00e9",
3822
+ "turc",
3823
+ "tut",
3824
+ "tu\u00e9",
3825
+ "tu\u00e9s",
3826
+ "twa",
3827
+ "t\u00e9e",
3828
+ "t\u00e9l",
3829
+ "t\u00e9moignage",
3830
+ "t\u00e9moigne",
3831
+ "t\u00e9s",
3832
+ "t\u00f4t",
3833
+ "u",
3834
+ "u.",
3835
+ "ube",
3836
+ "ude",
3837
+ "udf",
3838
+ "udi",
3839
+ "uel",
3840
+ "uer",
3841
+ "ues",
3842
+ "uet",
3843
+ "ufs",
3844
+ "uge",
3845
+ "uimm",
3846
+ "uimm-88",
3847
+ "uin",
3848
+ "uis",
3849
+ "uit",
3850
+ "ule",
3851
+ "ult\u00e9rieure",
3852
+ "ul\u00e9",
3853
+ "um\u00e9",
3854
+ "un",
3855
+ "unanimit\u00e9",
3856
+ "une",
3857
+ "ung",
3858
+ "uni",
3859
+ "unies",
3860
+ "union",
3861
+ "uniquement",
3862
+ "unit\u00e9",
3863
+ "unk",
3864
+ "uns",
3865
+ "uoi",
3866
+ "upe",
3867
+ "ups",
3868
+ "upt",
3869
+ "ura",
3870
+ "urbaine",
3871
+ "urbanisation",
3872
+ "urc",
3873
+ "ure",
3874
+ "urg",
3875
+ "urgente",
3876
+ "urs",
3877
+ "urt",
3878
+ "ur\u00e9",
3879
+ "usa",
3880
+ "use",
3881
+ "ush",
3882
+ "ust",
3883
+ "us\u00e9",
3884
+ "utah",
3885
+ "ute",
3886
+ "utilisant",
3887
+ "utilise",
3888
+ "uto",
3889
+ "utopie",
3890
+ "ut\u00e9",
3891
+ "uve",
3892
+ "uy\u00e9",
3893
+ "uze",
3894
+ "u\u00e9e",
3895
+ "u\u00e9s",
3896
+ "v",
3897
+ "v.",
3898
+ "v.v",
3899
+ "v_v",
3900
+ "va",
3901
+ "vacances",
3902
+ "vaclav",
3903
+ "val",
3904
+ "val-et-ch\u00e2tillon",
3905
+ "valdoie",
3906
+ "valleroy-aux-saules",
3907
+ "vand\u0153re",
3908
+ "vand\u0153uvre",
3909
+ "vaste",
3910
+ "vec",
3911
+ "vel",
3912
+ "venait",
3913
+ "vendre",
3914
+ "vendredi",
3915
+ "venir",
3916
+ "vente",
3917
+ "ventes",
3918
+ "venu",
3919
+ "venue",
3920
+ "ver",
3921
+ "verheugen",
3922
+ "vernois",
3923
+ "vers",
3924
+ "verts",
3925
+ "ves",
3926
+ "veut",
3927
+ "veuve",
3928
+ "vic",
3929
+ "victime",
3930
+ "victimes",
3931
+ "victoire",
3932
+ "vid\u00e9o",
3933
+ "vie",
3934
+ "vienne",
3935
+ "vigilance",
3936
+ "viktor",
3937
+ "village",
3938
+ "villages",
3939
+ "ville",
3940
+ "villepin",
3941
+ "villes",
3942
+ "vill\u00e9giature",
3943
+ "vin",
3944
+ "vincent",
3945
+ "vingt",
3946
+ "vingtaine",
3947
+ "violation",
3948
+ "violence",
3949
+ "violences",
3950
+ "virale",
3951
+ "vir\u00e9e",
3952
+ "vis",
3953
+ "visage",
3954
+ "visent",
3955
+ "visiblement",
3956
+ "visitent",
3957
+ "vitrine",
3958
+ "vitrines",
3959
+ "void",
3960
+ "voies",
3961
+ "voir",
3962
+ "voire",
3963
+ "voisines",
3964
+ "voisins",
3965
+ "voit",
3966
+ "voiture",
3967
+ "voitures",
3968
+ "voix",
3969
+ "vol",
3970
+ "vol.",
3971
+ "volant",
3972
+ "volontaires",
3973
+ "vont",
3974
+ "vosges",
3975
+ "vous",
3976
+ "voyant",
3977
+ "vr.",
3978
+ "vra",
3979
+ "vre",
3980
+ "vtt",
3981
+ "vu",
3982
+ "vue",
3983
+ "vus",
3984
+ "vy-les-lure",
3985
+ "v\u00e9e",
3986
+ "v\u00e9hicule",
3987
+ "v\u00e9hicules",
3988
+ "v\u00e9lo",
3989
+ "v\u00eatements",
3990
+ "v\u00f4ge",
3991
+ "w",
3992
+ "w.",
3993
+ "was",
3994
+ "week",
3995
+ "weiss",
3996
+ "weyland",
3997
+ "william",
3998
+ "williams",
3999
+ "wim",
4000
+ "wonder",
4001
+ "x",
4002
+ "x'",
4003
+ "x'xxx-xx",
4004
+ "x-x-xx",
4005
+ "x-x-xxxx",
4006
+ "x.",
4007
+ "x.X",
4008
+ "x.d",
4009
+ "x.x",
4010
+ "xD",
4011
+ "xDD",
4012
+ "xX",
4013
+ "xXX",
4014
+ "x_X",
4015
+ "x_d",
4016
+ "x_x",
4017
+ "xd",
4018
+ "xdd",
4019
+ "xes",
4020
+ "xx",
4021
+ "xx'",
4022
+ "xx'xxx-xx",
4023
+ "xx-Xxxxx",
4024
+ "xx-xxxx",
4025
+ "xx.",
4026
+ "xxx",
4027
+ "xxx-x-xx",
4028
+ "xxx-x-xxxx",
4029
+ "xxx-xx",
4030
+ "xxx-xxx",
4031
+ "xxx-xxxx",
4032
+ "xxx.",
4033
+ "xxxx",
4034
+ "xxxx'",
4035
+ "xxxx'xxx",
4036
+ "xxxx-x-xx",
4037
+ "xxxx-x-xxxx",
4038
+ "xxxx-xx",
4039
+ "xxxx-xxx",
4040
+ "xxxx-xxxx",
4041
+ "xxxx.",
4042
+ "xxxx\u00bb.-",
4043
+ "xxxx\u2019",
4044
+ "xxxx\u2019xxx",
4045
+ "xx\u2019",
4046
+ "xx\u2019xxx-xx",
4047
+ "x\u00b0",
4048
+ "x\u00e9e",
4049
+ "x\u2019",
4050
+ "x\u2019xxx-xx",
4051
+ "x\ufe35x",
4052
+ "y",
4053
+ "y.",
4054
+ "yasser",
4055
+ "yemen",
4056
+ "yen",
4057
+ "yer",
4058
+ "yoga",
4059
+ "yohann",
4060
+ "yon",
4061
+ "yougoslave",
4062
+ "yougoslavie",
4063
+ "young",
4064
+ "yse",
4065
+ "y\u00e9e",
4066
+ "z",
4067
+ "z.",
4068
+ "zat",
4069
+ "ziz",
4070
+ "zone",
4071
+ "zumkeller",
4072
+ "z\u00e9lande",
4073
+ "|",
4074
+ "}",
4075
+ "\u00a0",
4076
+ "\u00ab",
4077
+ "\u00ac",
4078
+ "\u00ac_\u00ac",
4079
+ "\u00af",
4080
+ "\u00af\\(x)/\u00af",
4081
+ "\u00af\\(\u30c4)/\u00af",
4082
+ "\u00b0",
4083
+ "\u00b0C.",
4084
+ "\u00b0F.",
4085
+ "\u00b0K.",
4086
+ "\u00b0X.",
4087
+ "\u00b0c.",
4088
+ "\u00b0f.",
4089
+ "\u00b0k.",
4090
+ "\u00b0x.",
4091
+ "\u00bb",
4092
+ "\u00bb.-",
4093
+ "\u00c7ON",
4094
+ "\u00e0",
4095
+ "\u00e2",
4096
+ "\u00e2ge",
4097
+ "\u00e2g\u00e9e",
4098
+ "\u00e4",
4099
+ "\u00e4.",
4100
+ "\u00e7",
4101
+ "\u00e7a",
4102
+ "\u00e7on",
4103
+ "\u00e7us",
4104
+ "\u00e8de",
4105
+ "\u00e8ge",
4106
+ "\u00e8le",
4107
+ "\u00e8me",
4108
+ "\u00e8ne",
4109
+ "\u00e8re",
4110
+ "\u00e8se",
4111
+ "\u00e8te",
4112
+ "\u00e8ve",
4113
+ "\u00e9",
4114
+ "\u00e9c.",
4115
+ "\u00e9chappe",
4116
+ "\u00e9chapper",
4117
+ "\u00e9clipse",
4118
+ "\u00e9conomique",
4119
+ "\u00e9conomiques",
4120
+ "\u00e9cop\u00e9",
4121
+ "\u00e9crou\u00e9s",
4122
+ "\u00e9curies",
4123
+ "\u00e9dition",
4124
+ "\u00e9en",
4125
+ "\u00e9es",
4126
+ "\u00e9galement",
4127
+ "\u00e9gide",
4128
+ "\u00e9glise",
4129
+ "\u00e9gyptien",
4130
+ "\u00e9j\u00e0",
4131
+ "\u00e9labor\u00e9",
4132
+ "\u00e9largissement",
4133
+ "\u00e9lecteurs",
4134
+ "\u00e9lection",
4135
+ "\u00e9lections",
4136
+ "\u00e9lectriques",
4137
+ "\u00e9lev\u00e9",
4138
+ "\u00e9limination",
4139
+ "\u00e9lo",
4140
+ "\u00e9lu",
4141
+ "\u00e9missaire",
4142
+ "\u00e9mission",
4143
+ "\u00e9nergie",
4144
+ "\u00e9pilogue",
4145
+ "\u00e9poque",
4146
+ "\u00e9pousa",
4147
+ "\u00e9pouse",
4148
+ "\u00e9poux",
4149
+ "\u00e9quip\u00e9e",
4150
+ "\u00e9quitables",
4151
+ "\u00e9ri",
4152
+ "\u00e9r\u00e9",
4153
+ "\u00e9tablissait",
4154
+ "\u00e9tage",
4155
+ "\u00e9taient",
4156
+ "\u00e9tait",
4157
+ "\u00e9tape",
4158
+ "\u00e9tat",
4159
+ "\u00e9teinte",
4160
+ "\u00e9trangers",
4161
+ "\u00e9trang\u00e8res",
4162
+ "\u00e9tudes",
4163
+ "\u00e9t\u00e9",
4164
+ "\u00e9valuer",
4165
+ "\u00e9ventuel",
4166
+ "\u00e9videntes",
4167
+ "\u00e9vidents",
4168
+ "\u00e9vitant",
4169
+ "\u00e9viter",
4170
+ "\u00e9vr",
4171
+ "\u00e9\u00e9e",
4172
+ "\u00ea",
4173
+ "\u00eame",
4174
+ "\u00eate",
4175
+ "\u00eatre",
4176
+ "\u00eat\u00e9",
4177
+ "\u00eave",
4178
+ "\u00efda",
4179
+ "\u00f4ge",
4180
+ "\u00f4le",
4181
+ "\u00f4l\u00e9",
4182
+ "\u00f4te",
4183
+ "\u00f4t\u00e9",
4184
+ "\u00f6",
4185
+ "\u00f6.",
4186
+ "\u00fbl\u00e9",
4187
+ "\u00fbne",
4188
+ "\u00fbrs",
4189
+ "\u00fc",
4190
+ "\u00fc.",
4191
+ "\u0153",
4192
+ "\u0153re",
4193
+ "\u0153uvres",
4194
+ "\u0ca0",
4195
+ "\u0ca0_\u0ca0",
4196
+ "\u0ca0\ufe35\u0ca0",
4197
+ "\u2014",
4198
+ "\u2019",
4199
+ "\u2019-(",
4200
+ "\u2019-)",
4201
+ "\u2019\u2019",
4202
+ "\u20ac",
4203
+ "\u2501",
4204
+ "\u253b",
4205
+ "\u253b\u2501\u253b",
4206
+ "\u256f",
4207
+ "\u25a1",
4208
+ "\ufe35",
4209
+ "\uff09"
4210
+ ]
vocab/vectors ADDED
Binary file (128 Bytes). View file
 
vocab/vectors.cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "mode":"default"
3
+ }