ShahzainHaider commited on
Commit
8ce5e48
·
1 Parent(s): c11535f

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -40,3 +40,4 @@ app/images/idcards/d.jpg filter=lfs diff=lfs merge=lfs -text
40
  app/images/idcards/driving[[:space:]]licence[[:space:]]backside[[:space:]]image.jpg filter=lfs diff=lfs merge=lfs -text
41
  app/images/idcards/driving[[:space:]]licence[[:space:]]frontside[[:space:]]image.jpg filter=lfs diff=lfs merge=lfs -text
42
  app/images/idcards/front.jpg filter=lfs diff=lfs merge=lfs -text
 
 
40
  app/images/idcards/driving[[:space:]]licence[[:space:]]backside[[:space:]]image.jpg filter=lfs diff=lfs merge=lfs -text
41
  app/images/idcards/driving[[:space:]]licence[[:space:]]frontside[[:space:]]image.jpg filter=lfs diff=lfs merge=lfs -text
42
  app/images/idcards/front.jpg filter=lfs diff=lfs merge=lfs -text
43
+ app/NER/model-best/tok2vec/model filter=lfs diff=lfs merge=lfs -text
__pycache__/deploy.cpython-38.pyc ADDED
Binary file (2.42 kB). View file
 
app/NER/NER.py ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import spacy
2
+ from spacy.tokens import DocBin
3
+ from tqdm import tqdm
4
+ from app.ocr_engine.ocr import OCR
5
+ from paddleocr import PaddleOCR
6
+
7
+ nlp_ner = spacy.load("app/NER/model-best")
8
+ nlp = spacy.blank("en") # load a new spacy model
9
+ db = DocBin() # create a DocBin object
10
+ ocr = PaddleOCR(use_angle_cls=True, lang='en') # need to run only once to download and load model into memory
11
+
12
+ def name_entity_recognizer(img_path, dictionary):
13
+ try:
14
+ ocr_list = []
15
+ ocr_list = ocr.ocr(img_path, cls=True)
16
+ text = ""
17
+ for word in ocr_list:
18
+ for line in word:
19
+ text += line[1][0] + '\n'
20
+
21
+ doc = nlp_ner(text)
22
+ for entity in doc.ents:
23
+ print(entity.text, entity.label_)
24
+ dictionary[entity.label_] = entity.text
25
+
26
+
27
+ return dictionary, True, ocr_list
28
+ except Exception as e:
29
+ print("[Exception in name_entity_recognizer] : ", str(e))
30
+ return dictionary, False, ocr_list
31
+ # spacy.displacy.render(doc, style="ent", jupyter=True)
app/NER/__pycache__/NER.cpython-38.pyc ADDED
Binary file (965 Bytes). View file
 
app/NER/model-best/config.cfg ADDED
@@ -0,0 +1,144 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [paths]
2
+ train = "./training_data.spacy"
3
+ dev = "./training_data.spacy"
4
+ vectors = null
5
+ init_tok2vec = null
6
+
7
+ [system]
8
+ gpu_allocator = null
9
+ seed = 0
10
+
11
+ [nlp]
12
+ lang = "en"
13
+ pipeline = ["tok2vec","ner"]
14
+ batch_size = 1000
15
+ disabled = []
16
+ before_creation = null
17
+ after_creation = null
18
+ after_pipeline_creation = null
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.Tok2VecListener.v1"
41
+ width = ${components.tok2vec.model.encode.width}
42
+ upstream = "*"
43
+
44
+ [components.tok2vec]
45
+ factory = "tok2vec"
46
+
47
+ [components.tok2vec.model]
48
+ @architectures = "spacy.Tok2Vec.v2"
49
+
50
+ [components.tok2vec.model.embed]
51
+ @architectures = "spacy.MultiHashEmbed.v2"
52
+ width = ${components.tok2vec.model.encode.width}
53
+ attrs = ["NORM","PREFIX","SUFFIX","SHAPE"]
54
+ rows = [5000,1000,2500,2500]
55
+ include_static_vectors = false
56
+
57
+ [components.tok2vec.model.encode]
58
+ @architectures = "spacy.MaxoutWindowEncoder.v2"
59
+ width = 96
60
+ depth = 4
61
+ window_size = 1
62
+ maxout_pieces = 3
63
+
64
+ [corpora]
65
+
66
+ [corpora.dev]
67
+ @readers = "spacy.Corpus.v1"
68
+ path = ${paths.dev}
69
+ max_length = 0
70
+ gold_preproc = false
71
+ limit = 0
72
+ augmenter = null
73
+
74
+ [corpora.train]
75
+ @readers = "spacy.Corpus.v1"
76
+ path = ${paths.train}
77
+ max_length = 0
78
+ gold_preproc = false
79
+ limit = 0
80
+ augmenter = null
81
+
82
+ [training]
83
+ dev_corpus = "corpora.dev"
84
+ train_corpus = "corpora.train"
85
+ seed = ${system.seed}
86
+ gpu_allocator = ${system.gpu_allocator}
87
+ dropout = 0.1
88
+ accumulate_gradient = 1
89
+ patience = 1600
90
+ max_epochs = 0
91
+ max_steps = 20000
92
+ eval_frequency = 200
93
+ frozen_components = []
94
+ annotating_components = []
95
+ before_to_disk = null
96
+ before_update = null
97
+
98
+ [training.batcher]
99
+ @batchers = "spacy.batch_by_words.v1"
100
+ discard_oversize = false
101
+ tolerance = 0.2
102
+ get_length = null
103
+
104
+ [training.batcher.size]
105
+ @schedules = "compounding.v1"
106
+ start = 100
107
+ stop = 1000
108
+ compound = 1.001
109
+ t = 0.0
110
+
111
+ [training.logger]
112
+ @loggers = "spacy.ConsoleLogger.v1"
113
+ progress_bar = false
114
+
115
+ [training.optimizer]
116
+ @optimizers = "Adam.v1"
117
+ beta1 = 0.9
118
+ beta2 = 0.999
119
+ L2_is_weight_decay = true
120
+ L2 = 0.01
121
+ grad_clip = 1.0
122
+ use_averages = false
123
+ eps = 0.00000001
124
+ learn_rate = 0.001
125
+
126
+ [training.score_weights]
127
+ ents_f = 1.0
128
+ ents_p = 0.0
129
+ ents_r = 0.0
130
+ ents_per_type = null
131
+
132
+ [pretraining]
133
+
134
+ [initialize]
135
+ vectors = ${paths.vectors}
136
+ init_tok2vec = ${paths.init_tok2vec}
137
+ vocab_data = null
138
+ lookups = null
139
+ before_init = null
140
+ after_init = null
141
+
142
+ [initialize.components]
143
+
144
+ [initialize.tokenizer]
app/NER/model-best/meta.json ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lang":"en",
3
+ "name":"pipeline",
4
+ "version":"0.0.0",
5
+ "spacy_version":">=3.5.3,<3.6.0",
6
+ "description":"",
7
+ "author":"",
8
+ "email":"",
9
+ "url":"",
10
+ "license":"",
11
+ "spacy_git_version":"Unknown",
12
+ "vectors":{
13
+ "width":0,
14
+ "vectors":0,
15
+ "keys":0,
16
+ "name":null,
17
+ "mode":"default"
18
+ },
19
+ "labels":{
20
+ "tok2vec":[
21
+
22
+ ],
23
+ "ner":[
24
+ "COUNTRY",
25
+ "DOB",
26
+ "DOCUMENT NUMBER",
27
+ "GENDER",
28
+ "NAME"
29
+ ]
30
+ },
31
+ "pipeline":[
32
+ "tok2vec",
33
+ "ner"
34
+ ],
35
+ "components":[
36
+ "tok2vec",
37
+ "ner"
38
+ ],
39
+ "disabled":[
40
+
41
+ ],
42
+ "performance":{
43
+ "ents_f":0.9238653001,
44
+ "ents_p":0.9131693198,
45
+ "ents_r":0.9348148148,
46
+ "ents_per_type":{
47
+ "COUNTRY":{
48
+ "p":0.8895027624,
49
+ "r":0.9096045198,
50
+ "f":0.8994413408
51
+ },
52
+ "NAME":{
53
+ "p":0.8896103896,
54
+ "r":0.9256756757,
55
+ "f":0.9072847682
56
+ },
57
+ "DOB":{
58
+ "p":0.9692982456,
59
+ "r":0.9692982456,
60
+ "f":0.9692982456
61
+ },
62
+ "GENDER":{
63
+ "p":0.8837209302,
64
+ "r":0.95,
65
+ "f":0.9156626506
66
+ },
67
+ "DOCUMENT NUMBER":{
68
+ "p":0.8705882353,
69
+ "r":0.9024390244,
70
+ "f":0.8862275449
71
+ }
72
+ },
73
+ "tok2vec_loss":146.4440149354,
74
+ "ner_loss":2517.651363954
75
+ }
76
+ }
app/NER/model-best/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
+ }
app/NER/model-best/ner/model ADDED
Binary file (132 kB). View file
 
app/NER/model-best/ner/moves ADDED
@@ -0,0 +1 @@
 
 
1
+ ��moves�D{"0":{},"1":{"DOB":419,"NAME":259,"COUNTRY":216,"DOCUMENT NUMBER":161,"GENDER":40},"2":{"DOB":419,"NAME":259,"COUNTRY":216,"DOCUMENT NUMBER":161,"GENDER":40},"3":{"DOB":419,"NAME":259,"COUNTRY":216,"DOCUMENT NUMBER":161,"GENDER":40},"4":{"DOB":419,"NAME":259,"COUNTRY":216,"DOCUMENT NUMBER":161,"GENDER":40,"":1},"5":{"":1}}�cfg��neg_key�
app/NER/model-best/tok2vec/cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+
3
+ }
app/NER/model-best/tok2vec/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f387d275038876a0f7051fc91e64184446b48f3dd099832ef90ac0e806a8afc5
3
+ size 6009091
app/NER/model-best/tokenizer ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ ��prefix_search� �^§|^%|^=|^—|^–|^\+(?![0-9])|^…|^……|^,|^:|^;|^\!|^\?|^¿|^؟|^¡|^\(|^\)|^\[|^\]|^\{|^\}|^<|^>|^_|^#|^\*|^&|^。|^?|^!|^,|^、|^;|^:|^~|^·|^।|^،|^۔|^؛|^٪|^\.\.+|^…|^\'|^"|^”|^“|^`|^‘|^´|^’|^‚|^,|^„|^»|^«|^「|^」|^『|^』|^(|^)|^〔|^〕|^【|^】|^《|^》|^〈|^〉|^〈|^〉|^⟦|^⟧|^\$|^£|^€|^¥|^฿|^US\$|^C\$|^A\$|^₽|^﷼|^₴|^₠|^₡|^₢|^₣|^₤|^₥|^₦|^₧|^₨|^₩|^₪|^₫|^€|^₭|^₮|^₯|^₰|^₱|^₲|^₳|^₴|^₵|^₶|^₷|^₸|^₹|^₺|^₻|^₼|^₽|^₾|^₿|^[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]�suffix_search�2�…$|……$|,$|:$|;$|\!$|\?$|¿$|؟$|¡$|\($|\)$|\[$|\]$|\{$|\}$|<$|>$|_$|#$|\*$|&$|。$|?$|!$|,$|、$|;$|:$|~$|·$|।$|،$|۔$|؛$|٪$|\.\.+$|…$|\'$|"$|”$|“$|`$|‘$|´$|’$|‚$|,$|„$|»$|«$|「$|」$|『$|』$|($|)$|〔$|〕$|【$|】$|《$|》$|〈$|〉$|〈$|〉$|⟦$|⟧$|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]$|'s$|'S$|’s$|’S$|—$|–$|(?<=[0-9])\+$|(?<=°[FfCcKk])\.$|(?<=[0-9])(?:\$|£|€|¥|฿|US\$|C\$|A\$|₽|﷼|₴|₠|₡|₢|₣|₤|₥|₦|₧|₨|₩|₪|₫|€|₭|₮|₯|₰|₱|₲|₳|₴|₵|₶|₷|₸|₹|₺|₻|₼|₽|₾|₿)$|(?<=[0-9])(?:km|km²|km³|m|m²|m³|dm|dm²|dm³|cm|cm²|cm³|mm|mm²|mm³|ha|µm|nm|yd|in|ft|kg|g|mg|µg|t|lb|oz|m/s|km/h|kmh|mph|hPa|Pa|mbar|mb|MB|kb|KB|gb|GB|tb|TB|T|G|M|K|%|км|км²|км³|м|м²|м³|дм|дм²|дм³|см|см²|см³|мм|мм²|мм³|нм|кг|г|мг|м/с|км/ч|кПа|Па|мбар|Кб|КБ|кб|Мб|МБ|мб|Гб|ГБ|гб|Тб|ТБ|тбكم|كم²|كم³|م|م²|م³|سم|سم²|سم³|مم|مم²|مم³|كم|غرام|جرام|جم|كغ|ملغ|كوب|اكواب)$|(?<=[0-9a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F%²\-\+…|……|,|:|;|\!|\?|¿|؟|¡|\(|\)|\[|\]|\{|\}|<|>|_|#|\*|&|。|?|!|,|、|;|:|~|·|।|،|۔|؛|٪(?:\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧)])\.$|(?<=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F][A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])\.$�infix_finditer�>�\.\.+|…|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]|(?<=[0-9])[+\-\*^](?=[0-9-])|(?<=[a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-яәөүҗңһα-ωάέίόώήύа-щюяіїєґѓѕјљњќѐѝ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧])\.(?=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEЁА-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌΏΉΎА-ЩЮЯІЇЄҐЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"”“`‘´’‚,„»«「」『』()〔〕【】《》〈〉〈〉⟦⟧])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F]),(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])(?:-|–|—|--|---|——|~)(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])[:<>=/](?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-яЁА-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήύΑ-ΩΆΈΊΌΏΉΎа-щюяіїєґА-ЩЮЯІЇЄҐѓѕјљњќѐѝЃЅЈЉЊЌЀЍ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])�token_match��url_match�
2
+ ��A�
3
+ � ��A� �'��A�'�''��A�''�'Cause��A�'CauseC�because�'Cos��A�'CosC�because�'Coz��A�'CozC�because�'Cuz��A�'CuzC�because�'S��A�'SC�'s�'bout��A�'boutC�about�'cause��A�'causeC�because�'cos��A�'cosC�because�'coz��A�'cozC�because�'cuz��A�'cuzC�because�'d��A�'d�'em��A�'emC�them�'ll��A�'llC�will�'nuff��A�'nuffC�enough�'re��A�'reC�are�'s��A�'sC�'s�(*_*)��A�(*_*)�(-8��A�(-8�(-:��A�(-:�(-;��A�(-;�(-_-)��A�(-_-)�(._.)��A�(._.)�(:��A�(:�(;��A�(;�(=��A�(=�(>_<)��A�(>_<)�(^_^)��A�(^_^)�(o:��A�(o:�(¬_¬)��A�(¬_¬)�(ಠ_ಠ)��A�(ಠ_ಠ)�(╯°□°)╯︵┻━┻��A�(╯°□°)╯︵┻━┻�)-:��A�)-:�):��A�):�-_-��A�-_-�-__-��A�-__-�._.��A�._.�0.0��A�0.0�0.o��A�0.o�0_0��A�0_0�0_o��A�0_o�10a.m.��A�10�A�a.m.C�a.m.�10am��A�10�A�amC�a.m.�10p.m.��A�10�A�p.m.C�p.m.�10pm��A�10�A�pmC�p.m.�11a.m.��A�11�A�a.m.C�a.m.�11am��A�11�A�amC�a.m.�11p.m.��A�11�A�p.m.C�p.m.�11pm��A�11�A�pmC�p.m.�12a.m.��A�12�A�a.m.C�a.m.�12am��A�12�A�amC�a.m.�12p.m.��A�12�A�p.m.C�p.m.�12pm��A�12�A�pmC�p.m.�1a.m.��A�1�A�a.m.C�a.m.�1am��A�1�A�amC�a.m.�1p.m.��A�1�A�p.m.C�p.m.�1pm��A�1�A�pmC�p.m.�2a.m.��A�2�A�a.m.C�a.m.�2am��A�2�A�amC�a.m.�2p.m.��A�2�A�p.m.C�p.m.�2pm��A�2�A�pmC�p.m.�3a.m.��A�3�A�a.m.C�a.m.�3am��A�3�A�amC�a.m.�3p.m.��A�3�A�p.m.C�p.m.�3pm��A�3�A�pmC�p.m.�4a.m.��A�4�A�a.m.C�a.m.�4am��A�4�A�amC�a.m.�4p.m.��A�4�A�p.m.C�p.m.�4pm��A�4�A�pmC�p.m.�5a.m.��A�5�A�a.m.C�a.m.�5am��A�5�A�amC�a.m.�5p.m.��A�5�A�p.m.C�p.m.�5pm��A�5�A�pmC�p.m.�6a.m.��A�6�A�a.m.C�a.m.�6am��A�6�A�amC�a.m.�6p.m.��A�6�A�p.m.C�p.m.�6pm��A�6�A�pmC�p.m.�7a.m.��A�7�A�a.m.C�a.m.�7am��A�7�A�amC�a.m.�7p.m.��A�7�A�p.m.C�p.m.�7pm��A�7�A�pmC�p.m.�8)��A�8)�8-)��A�8-)�8-D��A�8-D�8D��A�8D�8a.m.��A�8�A�a.m.C�a.m.�8am��A�8�A�amC�a.m.�8p.m.��A�8�A�p.m.C�p.m.�8pm��A�8�A�pmC�p.m.�9a.m.��A�9�A�a.m.C�a.m.�9am��A�9�A�amC�a.m.�9p.m.��A�9�A�p.m.C�p.m.�9pm��A�9�A�pmC�p.m.�:'(��A�:'(�:')��A�:')�:'-(��A�:'-(�:'-)��A�:'-)�:(��A�:(�:((��A�:((�:(((��A�:(((�:()��A�:()�:)��A�:)�:))��A�:))�:)))��A�:)))�:*��A�:*�:-(��A�:-(�:-((��A�:-((�:-(((��A�:-(((�:-)��A�:-)�:-))��A�:-))�:-)))��A�:-)))�:-*��A�:-*�:-/��A�:-/�:-0��A�:-0�:-3��A�:-3�:->��A�:->�:-D��A�:-D�:-O��A�:-O�:-P��A�:-P�:-X��A�:-X�:-]��A�:-]�:-o��A�:-o�:-p��A�:-p�:-x��A�:-x�:-|��A�:-|�:-}��A�:-}�:/��A�:/�:0��A�:0�:1��A�:1�:3��A�:3�:>��A�:>�:D��A�:D�:O��A�:O�:P��A�:P�:X��A�:X�:]��A�:]�:o��A�:o�:o)��A�:o)�:p��A�:p�:x��A�:x�:|��A�:|�:}��A�:}�:’(��A�:’(�:’)��A�:’)�:’-(��A�:’-(�:’-)��A�:’-)�;)��A�;)�;-)��A�;-)�;-D��A�;-D�;D��A�;D�;_;��A�;_;�<.<��A�<.<�</3��A�</3�<3��A�<3�<33��A�<33�<333��A�<333�<space>��A�<space>�=(��A�=(�=)��A�=)�=/��A�=/�=3��A�=3�=D��A�=D�=[��A�=[�=]��A�=]�=|��A�=|�>.<��A�>.<�>.>��A�>.>�>:(��A�>:(�>:o��A�>:o�><(((*>��A�><(((*>�@_@��A�@_@�Adm.��A�Adm.�Ain't��A�Ai�A�n'tC�not�Aint��A�Ai�A�ntC�not�Ain’t��A�Ai�A�n’tC�not�Ak.��A�Ak.C�Alaska�Ala.��A�Ala.C�Alabama�Apr.��A�Apr.C�April�Aren't��A�AreC�are�A�n'tC�not�Arent��A�AreC�are�A�ntC�not�Aren’t��A�AreC�are�A�n’tC�not�Ariz.��A�Ariz.C�Arizona�Ark.��A�Ark.C�Arkansas�Aug.��A�Aug.C�August�Bros.��A�Bros.�C'mon��A�C'mC�come�A�on�C++��A�C++�Calif.��A�Calif.C�California�Can't��A�CaC�can�A�n'tC�not�Can't've��A�CaC�can�A�n'tC�not�A�'veC�have�Cannot��A�CanC�can�A�not�Cant��A�CaC�can�A�ntC�not�Cantve��A�CaC�can�A�ntC�not�A�veC�have�Can’t��A�CaC�can�A�n’tC�not�Can’t’ve��A�CaC�can�A�n’tC�not�A�’veC�have�Co.��A�Co.�Colo.��A�Colo.C�Colorado�Conn.��A�Conn.C�Connecticut�Corp.��A�Corp.�Could've��A�CouldC�could�A�'ve�Couldn't��A�CouldC�could�A�n'tC�not�Couldn't've��A�CouldC�could�A�n'tC�not�A�'veC�have�Couldnt��A�CouldC�could�A�ntC�not�Couldntve��A�CouldC�could�A�ntC�not�A�veC�have�Couldn’t��A�CouldC�could�A�n’tC�not�Couldn’t’ve��A�CouldC�could�A�n’tC�not�A�’veC�have�Couldve��A�CouldC�could�A�ve�Could’ve��A�CouldC�could�A�’ve�C’mon��A�C’mC�come�A�on�D.C.��A�D.C.�Daren't��A�DareC�dare�A�n'tC�not�Darent��A�DareC�dare�A�ntC�not�Daren’t��A�DareC�dare�A�n’tC�not�Dec.��A�Dec.C�December�Del.��A�Del.C�Delaware�Didn't��A�DidC�do�A�n'tC�not�Didn't've��A�DidC�do�A�n'tC�not�A�'veC�have�Didnt��A�DidC�do�A�ntC�not�Didntve��A�DidC�do�A�ntC�not�A�veC�have�Didn’t��A�DidC�do�A�n’tC�not�Didn’t’ve��A�DidC�do�A�n’tC�not�A�’veC�have�Doesn't��A�DoesC�does�A�n'tC�not�Doesn't've��A�DoesC�does�A�n'tC�not�A�'veC�have�Doesnt��A�DoesC�does�A�ntC�not�Doesntve��A�DoesC�does�A�ntC�not�A�veC�have�Doesn’t��A�DoesC�does�A�n’tC�not�Doesn’t’ve��A�DoesC�does�A�n’tC�not�A�’veC�have�Doin��A�DoinC�doing�Doin'��A�Doin'C�doing�Doin’��A�Doin’C�doing�Don't��A�DoC�do�A�n'tC�not�Don't've��A�DoC�do�A�n'tC�not�A�'veC�have�Dont��A�DoC�do�A�ntC�not�Dontve��A�DoC�do�A�ntC�not�A�veC�have�Don’t��A�DoC�do�A�n’tC�not�Don’t’ve��A�DoC�do�A�n’tC�not�A�’veC�have�Dr.��A�Dr.�E.G.��A�E.G.�E.g.��A�E.g.�Feb.��A�Feb.C�February�Fla.��A�Fla.C�Florida�Ga.��A�Ga.C�Georgia�Gen.��A�Gen.�Goin��A�GoinC�going�Goin'��A�Goin'C�going�Goin’��A�Goin’C�going�Gonna��A�GonC�going�A�naC�to�Gotta��A�GotC�got�A�taC�to�Gov.��A�Gov.�Hadn't��A�HadC�have�A�n'tC�not�Hadn't've��A�HadC�have�A�n'tC�not�A�'veC�have�Hadnt��A�HadC�have�A�ntC�not�Hadntve��A�HadC�have�A�ntC�not�A�veC�have�Hadn’t��A�HadC�have�A�n’tC�not�Hadn’t’ve��A�HadC�have�A�n’tC�not�A�’veC�have�Hasn't��A�HasC�has�A�n'tC�not�Hasnt��A�HasC�has�A�ntC�not�Hasn’t��A�HasC�has�A�n’tC�not�Haven't��A�HaveC�have�A�n'tC�not�Havent��A�HaveC�have�A�ntC�not�Haven’t��A�HaveC�have�A�n’tC�not�Havin��A�HavinC�having�Havin'��A�Havin'C�having�Havin’��A�Havin’C�having�He'd��A�HeC�he�A�'dC�'d�He'd've��A�HeC�he�A�'dC�would�A�'veC�have�He'll��A�HeC�he�A�'llC�will�He'll've��A�HeC�he�A�'llC�will�A�'veC�have�He's��A�HeC�he�A�'sC�'s�Hed��A�HeC�he�A�dC�'d�Hedve��A�HeC�he�A�dC�would�A�veC�have�Hellve��A�HeC�he�A�llC�will�A�veC�have�Hes��A�HeC�he�A�s�He’d��A�HeC�he�A�’dC�'d�He’d’ve��A�HeC�he�A�’dC�would�A�’veC�have�He’ll��A�HeC�he�A�’llC�will�He’ll’ve��A�HeC�he�A�’llC�will�A�’veC�have�He’s��A�HeC�he�A�’sC�'s�How'd��A�HowC�how�A�'dC�'d�How'd've��A�HowC�how�A�'dC�would�A�'veC�have�How'd'y��A�HowC�how�A�'d�A�'yC�you�How'll��A�HowC�how�A�'llC�will�How'll've��A�HowC�how�A�'llC�will�A�'veC�have�How're��A�HowC�how�A�'reC�are�How's��A�HowC�how�A�'sC�'s�How've��A�HowC�how�A�'ve�Howd��A�HowC�how�A�dC�'d�Howdve��A�HowC�how�A�dC�would�A�veC�have�Howll��A�HowC�how�A�llC�will�Howllve��A�HowC�how�A�llC�will�A�veC�have�Howre��A�HowC�how�A�reC�are�Hows��A�HowC�how�A�s�Howve��A�How�A�veC�have�How’d��A�HowC�how�A�’dC�'d�How’d’ve��A�HowC�how�A�’dC�would�A�’veC�have�How’d’y��A�HowC�how�A�’d�A�’yC�you�How’ll��A�HowC�how�A�’llC�will�How’ll’ve��A�HowC�how�A�’llC�will�A�’veC�have�How’re��A�HowC�how�A�’reC�are�How’s��A�HowC�how�A�’sC�'s�How’ve��A�HowC�how�A�’ve�I'd��A�IC�i�A�'dC�'d�I'd've��A�IC�i�A�'dC�would�A�'veC�have�I'll��A�IC�i�A�'llC�will�I'll've��A�IC�i�A�'llC�will�A�'veC�have�I'm��A�IC�i�A�'mC�am�I'ma��A�IC�i�A�'mC�am�A�aC�gonna�I've��A�IC�i�A�'veC�have�I.E.��A�I.E.�I.e.��A�I.e.�Ia.��A�Ia.C�Iowa�Id��A�IC�i�A�dC�'d�Id.��A�Id.C�Idaho�Idve��A�IC�i�A�dC�would�A�veC�have�Ill.��A�Ill.C�Illinois�Illve��A�IC�i�A�llC�will�A�veC�have�Im��A�IC�i�A�m�Ima��A�IC�i�A�mC�am�A�aC�gonna�Inc.��A�Inc.�Ind.��A�Ind.C�Indiana�Isn't��A�IsC�is�A�n'tC�not�Isnt��A�IsC�is�A�ntC�not�Isn’t��A�IsC�is�A�n’tC�not�It'd��A�ItC�it�A�'dC�'d�It'd've��A�ItC�it�A�'dC�would�A�'veC�have�It'll��A�ItC�it�A�'llC�will�It'll've��A�ItC�it�A�'llC�will�A�'veC�have�It's��A�ItC�it�A�'sC�'s�Itd��A�ItC�it�A�dC�'d�Itdve��A�ItC�it�A�dC�would�A�veC�have�Itll��A�ItC�it�A�llC�will�Itllve��A�ItC�it�A�llC�will�A�veC�have�It’d��A�ItC�it�A�’dC�'d�It’d’ve��A�ItC�it�A�’dC�would�A�’veC�have�It’ll��A�ItC�it�A�’llC�will�It’ll’ve��A�ItC�it�A�’llC�will�A�’veC�have�It’s��A�ItC�it�A�’sC�'s�Ive��A�IC�i�A�veC�have�I’d��A�IC�i�A�’dC�'d�I’d’ve��A�IC�i�A�’dC�would�A�’veC�have�I’ll��A�IC�i�A�’llC�will�I’ll’ve��A�IC�i�A�’llC�will�A�’veC�have�I’m��A�IC�i�A�’mC�am�I’ma��A�IC�i�A�’mC�am�A�aC�gonna�I’ve��A�IC�i�A�’veC�have�Jan.��A�Jan.C�January�Jr.��A�Jr.�Jul.��A�Jul.C�July�Jun.��A�Jun.C�June�Kan.��A�Kan.C�Kansas�Kans.��A�Kans.C�Kansas�Ky.��A�Ky.C�Kentucky�La.��A�La.C�Louisiana�Let's��A�LetC�let�A�'sC�us�Let’s��A�LetC�let�A�’sC�us�Lovin��A�LovinC�loving�Lovin'��A�Lovin'C�loving�Lovin’��A�Lovin’C�loving�Ltd.��A�Ltd.�Ma'am��A�Ma'amC�madam�Mar.��A�Mar.C�March�Mass.��A�Mass.C�Massachusetts�Mayn't��A�MayC�may�A�n'tC�not�Mayn't've��A�MayC�may�A�n'tC�not�A�'veC�have�Maynt��A�MayC�may�A�ntC�not�Mayntve��A�MayC�may�A�ntC�not�A�veC�have�Mayn’t��A�MayC�may�A�n’tC�not�Mayn’t’ve��A�MayC�may�A�n’tC�not�A�’veC�have�Ma’am��A�Ma’amC�madam�Md.��A�Md.�Messrs.��A�Messrs.�Mich.��A�Mich.C�Michigan�Might've��A�MightC�might�A�'ve�Mightn't��A�MightC�might�A�n'tC�not�Mightn't've��A�MightC�might�A�n'tC�not�A�'veC�have�Mightnt��A�MightC�might�A�ntC�not�Mightntve��A�MightC�might�A�ntC�not�A�veC�have�Mightn’t��A�MightC�might�A�n’tC�not�Mightn’t’ve��A�MightC�might�A�n’tC�not�A�’veC�have�Mightve��A�MightC�might�A�ve�Might’ve��A�MightC�might�A�’ve�Minn.��A�Minn.C�Minnesota�Miss.��A�Miss.C�Mississippi�Mo.��A�Mo.�Mont.��A�Mont.�Mr.��A�Mr.�Mrs.��A�Mrs.�Ms.��A�Ms.�Mt.��A�Mt.C�Mount�Must've��A�MustC�must�A�'ve�Mustn't��A�MustC�must�A�n'tC�not�Mustn't've��A�MustC�must�A�n'tC�not�A�'veC�have�Mustnt��A�MustC�must�A�ntC�not�Mustntve��A�MustC�must�A�ntC�not�A�veC�have�Mustn’t��A�MustC�must�A�n’tC�not�Mustn’t’ve��A�MustC�must�A�n’tC�not�A�’veC�have�Mustve��A�MustC�must�A�ve�Must’ve��A�MustC�must�A�’ve�N.C.��A�N.C.C�North Carolina�N.D.��A�N.D.C�North Dakota�N.H.��A�N.H.C�New Hampshire�N.J.��A�N.J.C�New Jersey�N.M.��A�N.M.C�New Mexico�N.Y.��A�N.Y.C�New York�Neb.��A�Neb.C�Nebraska�Nebr.��A�Nebr.C�Nebraska�Needn't��A�NeedC�need�A�n'tC�not�Needn't've��A�NeedC�need�A�n'tC�not�A�'veC�have�Neednt��A�NeedC�need�A�ntC�not�Needntve��A�NeedC�need�A�ntC�not�A�veC�have�Needn’t��A�NeedC�need�A�n’tC�not�Needn’t’ve��A�NeedC�need�A�n’tC�not�A�’veC�have�Nev.��A�Nev.C�Nevada�Not've��A�NotC�not�A�'veC�have�Nothin��A�NothinC�nothing�Nothin'��A�Nothin'C�nothing�Nothin’��A�Nothin’C�nothing�Notve��A�NotC�not�A�veC�have�Not’ve��A�NotC�not�A�’veC�have�Nov.��A�Nov.C�November�Nuthin��A�NuthinC�nothing�Nuthin'��A�Nuthin'C�nothing�Nuthin’��A�Nuthin’C�nothing�O'clock��A�O'clockC�o'clock�O.O��A�O.O�O.o��A�O.o�O_O��A�O_O�O_o��A�O_o�Oct.��A�Oct.C�October�Okla.��A�Okla.C�Oklahoma�Ol��A�OlC�old�Ol'��A�Ol'C�old�Ol’��A�Ol’C�old�Ore.��A�Ore.C�Oregon�Oughtn't��A�OughtC�ought�A�n'tC�not�Oughtn't've��A�OughtC�ought�A�n'tC�not�A�'veC�have�Oughtnt��A�OughtC�ought�A�ntC�not�Oughtntve��A�OughtC�ought�A�ntC�not�A�veC�have�Oughtn’t��A�OughtC�ought�A�n’tC�not�Oughtn’t’ve��A�OughtC�ought�A�n’tC�not�A�’veC�have�O’clock��A�O’clockC�o'clock�Pa.��A�Pa.C�Pennsylvania�Ph.D.��A�Ph.D.�Prof.��A�Prof.�Rep.��A�Rep.�Rev.��A�Rev.�S.C.��A�S.C.C�South Carolina�Sen.��A�Sen.�Sep.��A�Sep.C�September�Sept.��A�Sept.C�September�Shan't��A�ShaC�shall�A�n'tC�not�Shan't've��A�ShaC�shall�A�n'tC�not�A�'veC�have�Shant��A�ShaC�shall�A�ntC�not�Shantve��A�ShaC�shall�A�ntC�not�A�veC�have�Shan’t��A�ShaC�shall�A�n’tC�not�Shan’t’ve��A�ShaC�shall�A�n’tC�not�A�’veC�have�She'd��A�SheC�she�A�'dC�'d�She'd've��A�SheC�she�A�'dC�would�A�'veC�have�She'll��A�SheC�she�A�'llC�will�She'll've��A�SheC�she�A�'llC�will�A�'veC�have�She's��A�SheC�she�A�'sC�'s�Shedve��A�SheC�she�A�dC�would�A�veC�have�Shellve��A�SheC�she�A�llC�will�A�veC�have�Shes��A�SheC�she�A�s�She’d��A�SheC�she�A�’dC�'d�She’d’ve��A�SheC�she�A�’dC�would�A�’veC�have�She’ll��A�SheC�she�A�’llC�will�She’ll’ve��A�SheC�she�A�’llC�will�A�’veC�have�She’s��A�SheC�she�A�’sC�'s�Should've��A�ShouldC�should�A�'ve�Shouldn't��A�ShouldC�should�A�n'tC�not�Shouldn't've��A�ShouldC�should�A�n'tC�not�A�'veC�have�Shouldnt��A�ShouldC�should�A�ntC�not�Shouldntve��A�ShouldC�should�A�ntC�not�A�veC�have�Shouldn’t��A�ShouldC�should�A�n’tC�not�Shouldn’t’ve��A�ShouldC�should�A�n’tC�not�A�’veC�have�Shouldve��A�ShouldC�should�A�ve�Should’ve��A�ShouldC�should�A�’ve�Somethin��A�SomethinC�something�Somethin'��A�Somethin'C�something�Somethin’��A�Somethin’C�something�St.��A�St.�Tenn.��A�Tenn.C�Tennessee�That'd��A�ThatC�that�A�'dC�'d�That'd've��A�ThatC�that�A�'dC�would�A�'veC�have�That'll��A�ThatC�that�A�'llC�will�That'll've��A�ThatC�that�A�'llC�will�A�'veC�have�That's��A�ThatC�that�A�'sC�'s�Thatd��A�ThatC�that�A�dC�'d�Thatdve��A�ThatC�that�A�dC�would�A�veC�have�Thatll��A�ThatC�that�A�llC�will�Thatllve��A�ThatC�that�A�llC�will�A�veC�have�Thats��A�ThatC�that�A�s�That’d��A�ThatC�that�A�’dC�'d�That’d’ve��A�ThatC�that�A�’dC�would�A�’veC�have�That’ll��A�ThatC�that�A�’llC�will�That’ll’ve��A�ThatC�that�A�’llC�will�A�’veC�have�That’s��A�ThatC�that�A�’sC�'s�There'd��A�ThereC�there�A�'dC�'d�There'd've��A�ThereC�there�A�'dC�would�A�'veC�have�There'll��A�ThereC�there�A�'llC�will�There'll've��A�ThereC�there�A�'llC�will�A�'veC�have�There're��A�ThereC�there�A�'reC�are�There's��A�ThereC�there�A�'sC�'s�There've��A�ThereC�there�A�'ve�Thered��A�ThereC�there�A�dC�'d�Theredve��A�ThereC�there�A�dC�would�A�veC�have�Therell��A�ThereC�there�A�llC�will�Therellve��A�ThereC�there�A�llC�will�A�veC�have�Therere��A�ThereC�there�A�reC�are�Theres��A�ThereC�there�A�s�Thereve��A�There�A�veC�have�There’d��A�ThereC�there�A�’dC�'d�There’d’ve��A�ThereC�there�A�’dC�would�A�’veC�have�There’ll��A�ThereC�there�A�’llC�will�There’ll’ve��A�ThereC�there�A�’llC�will�A�’veC�have�There’re��A�ThereC�there�A�’reC�are�There’s��A�ThereC�there�A�’sC�'s�There’ve��A�ThereC�there�A�’ve�These'd��A�TheseC�these�A�'dC�'d�These'd've��A�TheseC�these�A�'dC�would�A�'veC�have�These'll��A�TheseC�these�A�'llC�will�These'll've��A�TheseC�these�A�'llC�will�A�'veC�have�These're��A�TheseC�these�A�'reC�are�These've��A�TheseC�these�A�'ve�Thesed��A�TheseC�these�A�dC�'d�Thesedve��A�TheseC�these�A�dC�would�A�veC�have�Thesell��A�TheseC�these�A�llC�will�Thesellve��A�TheseC�these�A�llC�will�A�veC�have�Thesere��A�TheseC�these�A�reC�are�Theseve��A�These�A�veC�have�These’d��A�TheseC�these�A�’dC�'d�These’d’ve��A�TheseC�these�A�’dC�would�A�’veC�have�These’ll��A�TheseC�these�A�’llC�will�These’ll’ve��A�TheseC�these�A�’llC�will�A�’veC�have�These’re��A�TheseC�these�A�’reC�are�These’ve��A�TheseC�these�A�’ve�They'd��A�TheyC�they�A�'dC�'d�They'd've��A�TheyC�they�A�'dC�would�A�'veC�have�They'll��A�TheyC�they�A�'llC�will�They'll've��A�TheyC�they�A�'llC�will�A�'veC�have�They're��A�TheyC�they�A�'reC�are�They've��A�TheyC�they�A�'veC�have�Theyd��A�TheyC�they�A�dC�'d�Theydve��A�TheyC�they�A�dC�would�A�veC�have�Theyll��A�TheyC�they�A�llC�will�Theyllve��A�TheyC�they�A�llC�will�A�veC�have�Theyre��A�TheyC�they�A�reC�are�Theyve��A�TheyC�they�A�veC�have�They’d��A�TheyC�they�A�’dC�'d�They’d’ve��A�TheyC�they�A�’dC�would�A�’veC�have�They’ll��A�TheyC�they�A�’llC�will�They’ll’ve��A�TheyC�they�A�’llC�will�A�’veC�have�They’re��A�TheyC�they�A�’reC�are�They’ve��A�TheyC�they�A�’veC�have�This'd��A�ThisC�this�A�'dC�'d�This'd've��A�ThisC�this�A�'dC�would�A�'veC�have�This'll��A�ThisC�this�A�'llC�will�This'll've��A�ThisC�this�A�'llC�will�A�'veC�have�This's��A�ThisC�this�A�'sC�'s�Thisd��A�ThisC�this�A�dC�'d�Thisdve��A�ThisC�this�A�dC�would�A�veC�have�Thisll��A�ThisC�this�A�llC�will�Thisllve��A�ThisC�this�A�llC�will�A�veC�have�Thiss��A�ThisC�this�A�s�This’d��A�ThisC�this�A�’dC�'d�This’d’ve��A�ThisC�this�A�’dC�would�A�’veC�have�This’ll��A�ThisC�this�A�’llC�will�This’ll’ve��A�ThisC�this�A�’llC�will�A�’veC�have�This’s��A�ThisC�this�A�’sC�'s�Those'd��A�ThoseC�those�A�'dC�'d�Those'd've��A�ThoseC�those�A�'dC�would�A�'veC�have�Those'll��A�ThoseC�those�A�'llC�will�Those'll've��A�ThoseC�those�A�'llC�will�A�'veC�have�Those're��A�ThoseC�those�A�'reC�are�Those've��A�ThoseC�those�A�'ve�Thosed��A�ThoseC�those�A�dC�'d�Thosedve��A�ThoseC�those�A�dC�would�A�veC�have�Thosell��A�ThoseC�those�A�llC�will�Thosellve��A�ThoseC�those�A�llC�will�A�veC�have�Thosere��A�ThoseC�those�A�reC�are�Thoseve��A�Those�A�veC�have�Those’d��A�ThoseC�those�A�’dC�'d�Those’d’ve��A�ThoseC�those�A�’dC�would�A�’veC�have�Those’ll��A�ThoseC�those�A�’llC�will�Those’ll’ve��A�ThoseC�those�A�’llC�will�A�’veC�have�Those’re��A�ThoseC�those�A�’reC�are�Those’ve��A�ThoseC�those�A�’ve�V.V��A�V.V�V_V��A�V_V�Va.��A�Va.C�Virginia�Wash.��A�Wash.C�Washington�Wasn't��A�WasC�was�A�n'tC�not�Wasnt��A�WasC�was�A�ntC�not�Wasn’t��A�WasC�was�A�n’tC�not�We'd��A�WeC�we�A�'dC�'d�We'd've��A�WeC�we�A�'dC�would�A�'veC�have�We'll��A�WeC�we�A�'llC�will�We'll've��A�WeC�we�A�'llC�will�A�'veC�have�We're��A�WeC�we�A�'reC�are�We've��A�WeC�we�A�'veC�have�Wed��A�WeC�we�A�dC�'d�Wedve��A�WeC�we�A�dC�would�A�veC�have�Wellve��A�WeC�we�A�llC�will�A�veC�have�Weren't��A�WereC�were�A�n'tC�not�Werent��A�WereC�were�A�ntC�not�Weren’t��A�WereC�were�A�n’tC�not�Weve��A�WeC�we�A�veC�have�We’d��A�WeC�we�A�’dC�'d�We’d’ve��A�WeC�we�A�’dC�would�A�’veC�have�We’ll��A�WeC�we�A�’llC�will�We’ll’ve��A�WeC�we�A�’llC�will�A�’veC�have�We’re��A�WeC�we�A�’reC�are�We’ve��A�WeC�we�A�’veC�have�What'd��A�WhatC�what�A�'dC�'d�What'd've��A�WhatC�what�A�'dC�would�A�'veC�have�What'll��A�WhatC�what�A�'llC�will�What'll've��A�WhatC�what�A�'llC�will�A�'veC�have�What're��A�WhatC�what�A�'reC�are�What's��A�WhatC�what�A�'sC�'s�What've��A�WhatC�what�A�'ve�Whatd��A�WhatC�what�A�dC�'d�Whatdve��A�WhatC�what�A�dC�would�A�veC�have�Whatll��A�WhatC�what�A�llC�will�Whatllve��A�WhatC�what�A�llC�will�A�veC�have�Whatre��A�WhatC�what�A�reC�are�Whats��A�WhatC�what�A�s�Whatve��A�What�A�veC�have�What’d��A�WhatC�what�A�’dC�'d�What’d’ve��A�WhatC�what�A�’dC�would�A�’veC�have�What’ll��A�WhatC�what�A�’llC�will�What’ll’ve��A�WhatC�what�A�’llC�will�A�’veC�have�What’re��A�WhatC�what�A�’reC�are�What’s��A�WhatC�what�A�’sC�'s�What’ve��A�WhatC�what�A�’ve�When'd��A�WhenC�when�A�'dC�'d�When'd've��A�WhenC�when�A�'dC�would�A�'veC�have�When'll��A�WhenC�when�A�'llC�will�When'll've��A�WhenC�when�A�'llC�will�A�'veC�have�When're��A�WhenC�when�A�'reC�are�When's��A�WhenC�when�A�'sC�'s�When've��A�WhenC�when�A�'ve�Whend��A�WhenC�when�A�dC�'d�Whendve��A�WhenC�when�A�dC�would�A�veC�have�Whenll��A�WhenC�when�A�llC�will�Whenllve��A�WhenC�when�A�llC�will�A�veC�have�Whenre��A�WhenC�when�A�reC�are�Whens��A�WhenC�when�A�s�Whenve��A�When�A�veC�have�When’d��A�WhenC�when�A�’dC�'d�When’d’ve��A�WhenC�when�A�’dC�would�A�’veC�have�When’ll��A�WhenC�when�A�’llC�will�When’ll’ve��A�WhenC�when�A�’llC�will�A�’veC�have�When’re��A�WhenC�when�A�’reC�are�When’s��A�WhenC�when�A�’sC�'s�When’ve��A�WhenC�when�A�’ve�Where'd��A�WhereC�where�A�'dC�'d�Where'd've��A�WhereC�where�A�'dC�would�A�'veC�have�Where'll��A�WhereC�where�A�'llC�will�Where'll've��A�WhereC�where�A�'llC�will�A�'veC�have�Where're��A�WhereC�where�A�'reC�are�Where's��A�WhereC�where�A�'sC�'s�Where've��A�WhereC�where�A�'ve�Whered��A�WhereC�where�A�dC�'d�Wheredve��A�WhereC�where�A�dC�would�A�veC�have�Wherell��A�WhereC�where�A�llC�will�Wherellve��A�WhereC�where�A�llC�will�A�veC�have�Wherere��A�WhereC�where�A�reC�are�Wheres��A�WhereC�where�A�s�Whereve��A�Where�A�veC�have�Where’d��A�WhereC�where�A�’dC�'d�Where’d’ve��A�WhereC�where�A�’dC�would�A�’veC�have�Where’ll��A�WhereC�where�A�’llC�will�Where’ll’ve��A�WhereC�where�A�’llC�will�A�’veC�have�Where’re��A�WhereC�where�A�’reC�are�Where’s��A�WhereC�where�A�’sC�'s�Where’ve��A�WhereC�where�A�’ve�Who'd��A�WhoC�who�A�'dC�'d�Who'd've��A�WhoC�who�A�'dC�would�A�'veC�have�Who'll��A�WhoC�who�A�'llC�will�Who'll've��A�WhoC�who�A�'llC�will�A�'veC�have�Who're��A�WhoC�who�A�'reC�are�Who's��A�WhoC�who�A�'sC�'s�Who've��A�WhoC�who�A�'ve�Whod��A�WhoC�who�A�dC�'d�Whodve��A�WhoC�who�A�dC�would�A�veC�have�Wholl��A�WhoC�who�A�llC�will�Whollve��A�WhoC�who�A�llC�will�A�veC�have�Whos��A�WhoC�who�A�s�Whove��A�Who�A�veC�have�Who’d��A�WhoC�who�A�’dC�'d�Who’d’ve��A�WhoC�who�A�’dC�would�A�’veC�have�Who’ll��A�WhoC�who�A�’llC�will�Who’ll’ve��A�WhoC�who�A�’llC�will�A�’veC�have�Who’re��A�WhoC�who�A�’reC�are�Who’s��A�WhoC�who�A�’sC�'s�Who’ve��A�WhoC�who�A�’ve�Why'd��A�WhyC�why�A�'dC�'d�Why'd've��A�WhyC�why�A�'dC�would�A�'veC�have�Why'll��A�WhyC�why�A�'llC�will�Why'll've��A�WhyC�why�A�'llC�will�A�'veC�have�Why're��A�WhyC�why�A�'reC�are�Why's��A�WhyC�why�A�'sC�'s�Why've��A�WhyC�why�A�'ve�Whyd��A�WhyC�why�A�dC�'d�Whydve��A�WhyC�why�A�dC�would�A�veC�have�Whyll��A�WhyC�why�A�llC�will�Whyllve��A�WhyC�why�A�llC�will�A�veC�have�Whyre��A�WhyC�why�A�reC�are�Whys��A�WhyC�why�A�s�Whyve��A�Why�A�veC�have�Why’d��A�WhyC�why�A�’dC�'d�Why’d’ve��A�WhyC�why�A�’dC�would�A�’veC�have�Why’ll��A�WhyC�why�A�’llC�will�Why’ll’ve��A�WhyC�why�A�’llC�will�A�’veC�have�Why’re��A�WhyC�why�A�’reC�are�Why’s��A�WhyC�why�A�’sC�'s�Why’ve��A�WhyC�why�A�’ve�Wis.��A�Wis.C�Wisconsin�Won't��A�WoC�will�A�n'tC�not�Won't've��A�WoC�will�A�n'tC�not�A�'veC�have�Wont��A�WoC�will�A�ntC�not�Wontve��A�WoC�will�A�ntC�not�A�veC�have�Won’t��A�WoC�will�A�n’tC�not�Won’t’ve��A�WoC�will�A�n’tC�not�A�’veC�have�Would've��A�WouldC�would�A�'ve�Wouldn't��A�WouldC�would�A�n'tC�not�Wouldn't've��A�WouldC�would�A�n'tC�not�A�'veC�have�Wouldnt��A�WouldC�would�A�ntC�not�Wouldntve��A�WouldC�would�A�ntC�not�A�veC�have�Wouldn’t��A�WouldC�would�A�n’tC�not�Wouldn’t’ve��A�WouldC�would�A�n’tC�not�A�’veC�have�Wouldve��A�WouldC�would�A�ve�Would’ve��A�WouldC�would�A�’ve�XD��A�XD�XDD��A�XDD�You'd��A�YouC�you�A�'dC�'d�You'd've��A�YouC�you�A�'dC�would�A�'veC�have�You'll��A�YouC�you�A�'llC�will�You'll've��A�YouC�you�A�'llC�will�A�'veC�have�You're��A�YouC�you�A�'reC�are�You've��A�YouC�you�A�'veC�have�Youd��A�YouC�you�A�dC�'d�Youdve��A�YouC�you�A�dC�would�A�veC�have�Youll��A�YouC�you�A�llC�will�Youllve��A�YouC�you�A�llC�will�A�veC�have�Youre��A�YouC�you�A�reC�are�Youve��A�YouC�you�A�veC�have�You’d��A�YouC�you�A�’dC�'d�You’d’ve��A�YouC�you�A�’dC�would�A�’veC�have�You’ll��A�YouC�you�A�’llC�will�You’ll’ve��A�YouC�you�A�’llC�will�A�’veC�have�You’re��A�YouC�you�A�’reC�are�You’ve��A�YouC�you�A�’veC�have�[-:��A�[-:�[:��A�[:�[=��A�[=�\")��A�\")�\n��A�\n�\t��A�\t�]=��A�]=�^_^��A�^_^�^__^��A�^__^�^___^��A�^___^�a.��A�a.�a.m.��A�a.m.�ain't��A�ai�A�n'tC�not�aint��A�ai�A�ntC�not�ain’t��A�ai�A�n’tC�not�and/or��A�and/orC�and/or�aren't��A�areC�are�A�n'tC�not�arent��A�areC�are�A�ntC�not�aren’t��A�areC�are�A�n’tC�not�b.��A�b.�c'mon��A�c'mC�come�A�on�c.��A�c.�can't��A�caC�can�A�n'tC�not�can't've��A�caC�can�A�n'tC�not�A�'veC�have�cannot��A�can�A�not�cant��A�caC�can�A�ntC�not�cantve��A�caC�can�A�ntC�not�A�veC�have�can’t��A�caC�can�A�n’tC�not�can’t’ve��A�caC�can�A�n’tC�not�A�’veC�have�co.��A�co.�could've��A�couldC�could�A�'ve�couldn't��A�couldC�could�A�n'tC�not�couldn't've��A�couldC�could�A�n'tC�not�A�'veC�have�couldnt��A�couldC�could�A�ntC�not�couldntve��A�couldC�could�A�ntC�not�A�veC�have�couldn’t��A�couldC�could�A�n’tC�not�couldn’t’ve��A�couldC�could�A�n’tC�not�A�’veC�have�couldve��A�couldC�could�A�ve�could’ve��A�couldC�could�A�’ve�c’mon��A�c’mC�come�A�on�d.��A�d.�daren't��A�dareC�dare�A�n'tC�not�darent��A�dareC�dare�A�ntC�not�daren’t��A�dareC�dare�A�n’tC�not�didn't��A�didC�do�A�n'tC�not�didn't've��A�didC�do�A�n'tC�not�A�'veC�have�didnt��A�didC�do�A�ntC�not�didntve��A�didC�do�A�ntC�not�A�veC�have�didn’t��A�didC�do�A�n’tC�not�didn’t’ve��A�didC�do�A�n’tC�not�A�’veC�have�doesn't��A�doesC�does�A�n'tC�not�doesn't've��A�doesC�does�A�n'tC�not�A�'veC�have�doesnt��A�doesC�does�A�ntC�not�doesntve��A�doesC�does�A�ntC�not�A�veC�have�doesn’t��A�doesC�does�A�n’tC�not�doesn’t’ve��A�doesC�does�A�n’tC�not�A�’veC�have�doin��A�doinC�doing�doin'��A�doin'C�doing�doin’��A�doin’C�doing�don't��A�doC�do�A�n'tC�not�don't've��A�doC�do�A�n'tC�not�A�'veC�have�dont��A�doC�do�A�ntC�not�dontve��A�doC�do�A�ntC�not�A�veC�have�don’t��A�doC�do�A�n’tC�not�don’t’ve��A�doC�do�A�n’tC�not�A�’veC�have�e.��A�e.�e.g.��A�e.g.�em��A�emC�them�f.��A�f.�g.��A�g.�goin��A�goinC�going�goin'��A�goin'C�going�goin’��A�goin’C�going�gonna��A�gonC�going�A�naC�to�gotta��A�got�A�taC�to�h.��A�h.�hadn't��A�hadC�have�A�n'tC�not�hadn't've��A�hadC�have�A�n'tC�not�A�'veC�have�hadnt��A�hadC�have�A�ntC�not�hadntve��A�hadC�have�A�ntC�not�A�veC�have�hadn’t��A�hadC�have�A�n’tC�not�hadn’t’ve��A�hadC�have�A�n’tC�not�A�’veC�have�hasn't��A�hasC�has�A�n'tC�not�hasnt��A�hasC�has�A�ntC�not�hasn’t��A�hasC�has�A�n’tC�not�haven't��A�haveC�have�A�n'tC�not�havent��A�haveC�have�A�ntC�not�haven’t��A�haveC�have�A�n’tC�not�havin��A�havinC�having�havin'��A�havin'C�having�havin’��A�havin’C�having�he'd��A�heC�he�A�'dC�'d�he'd've��A�heC�he�A�'dC�would�A�'veC�have�he'll��A�heC�he�A�'llC�will�he'll've��A�heC�he�A�'llC�will�A�'veC�have�he's��A�heC�he�A�'sC�'s�hed��A�heC�he�A�dC�'d�hedve��A�heC�he�A�dC�would�A�veC�have�hellve��A�heC�he�A�llC�will�A�veC�have�hes��A�heC�he�A�s�he’d��A�heC�he�A�’dC�'d�he’d’ve��A�heC�he�A�’dC�would�A�’veC�have�he’ll��A�heC�he�A�’llC�will�he’ll’ve��A�heC�he�A�’llC�will�A�’veC�have�he’s��A�heC�he�A�’sC�'s�how'd��A�howC�how�A�'dC�'d�how'd've��A�howC�how�A�'dC�would�A�'veC�have�how'd'y��A�how�A�'d�A�'yC�you�how'll��A�howC�how�A�'llC�will�how'll've��A�howC�how�A�'llC�will�A�'veC�have�how're��A�howC�how�A�'reC�are�how's��A�howC�how�A�'sC�'s�how've��A�howC�how�A�'ve�howd��A�howC�how�A�dC�'d�howdve��A�howC�how�A�dC�would�A�veC�have�howll��A�howC�how�A�llC�will�howllve��A�howC�how�A�llC�will�A�veC�have�howre��A�howC�how�A�reC�are�hows��A�howC�how�A�s�howve��A�how�A�veC�have�how’d��A�howC�how�A�’dC�'d�how’d’ve��A�howC�how�A���dC�would�A�’veC�have�how’d’y��A�how�A�’d�A�’yC�you�how’ll��A�howC�how�A�’llC�will�how’ll’ve��A�howC�how�A�’llC�will�A�’veC�have�how’re��A�howC�how�A�’reC�are�how’s��A�howC�how�A�’sC�'s�how’ve��A�howC�how�A�’ve�i'd��A�iC�i�A�'dC�'d�i'd've��A�iC�i�A�'dC�would�A�'veC�have�i'll��A�iC�i�A�'llC�will�i'll've��A�iC�i�A�'llC�will�A�'veC�have�i'm��A�iC�i�A�'mC�am�i'ma��A�iC�i�A�'mC�am�A�aC�gonna�i've��A�iC�i�A�'veC�have�i.��A�i.�i.e.��A�i.e.�id��A�iC�i�A�dC�'d�idve��A�iC�i�A�dC�would�A�veC�have�illve��A�iC�i�A�llC�will�A�veC�have�im��A�iC�i�A�m�ima��A�iC�i�A�mC�am�A�aC�gonna�isn't��A�isC�is�A�n'tC�not�isnt��A�isC�is�A�ntC�not�isn’t��A�isC�is�A�n’tC�not�it'd��A�itC�it�A�'dC�'d�it'd've��A�itC�it�A�'dC�would�A�'veC�have�it'll��A�itC�it�A�'llC�will�it'll've��A�itC�it�A�'llC�will�A�'veC�have�it's��A�itC�it�A�'sC�'s�itd��A�itC�it�A�dC�'d�itdve��A�itC�it�A�dC�would�A�veC�have�itll��A�itC�it�A�llC�will�itllve��A�itC�it�A�llC�will�A�veC�have�it’d��A�itC�it�A�’dC�'d�it’d’ve��A�itC�it�A�’dC�would�A�’veC�have�it’ll��A�itC�it�A�’llC�will�it’ll’ve��A�itC�it�A�’llC�will�A�’veC�have�it’s��A�itC�it�A�’sC�'s�ive��A�iC�i�A�veC�have�i’d��A�iC�i�A�’dC�'d�i’d’ve��A�iC�i�A�’dC�would�A�’veC�have�i’ll��A�iC�i�A�’llC�will�i’ll’ve��A�iC�i�A�’llC�will�A�’veC�have�i’m��A�iC�i�A�’mC�am�i’ma��A�iC�i�A�’mC�am�A�aC�gonna�i’ve��A�iC�i�A�’veC�have�j.��A�j.�k.��A�k.�l.��A�l.�let's��A�let�A�'sC�us�let’s��A�let�A�’sC�us�ll��A�llC�will�lovin��A�lovinC�loving�lovin'��A�lovin'C�loving�lovin’��A�lovin’C�loving�m.��A�m.�ma'am��A�ma'amC�madam�mayn't��A�mayC�may�A�n'tC�not�mayn't've��A�mayC�may�A�n'tC�not�A�'veC�have�maynt��A�mayC�may�A�ntC�not�mayntve��A�mayC�may�A�ntC�not�A�veC�have�mayn’t��A�mayC�may�A�n’tC�not�mayn’t’ve��A�mayC�may�A�n’tC�not�A�’veC�have�ma’am��A�ma’amC�madam�might've��A�mightC�might�A�'ve�mightn't��A�mightC�might�A�n'tC�not�mightn't've��A�mightC�might�A�n'tC�not�A�'veC�have�mightnt��A�mightC�might�A�ntC�not�mightntve��A�mightC�might�A�ntC�not�A�veC�have�mightn’t��A�mightC�might�A�n’tC�not�mightn’t’ve��A�mightC�might�A�n’tC�not�A�’veC�have�mightve��A�mightC�might�A�ve�might’ve��A�mightC�might�A�’ve�must've��A�mustC�must�A�'ve�mustn't��A�mustC�must�A�n'tC�not�mustn't've��A�mustC�must�A�n'tC�not�A�'veC�have�mustnt��A�mustC�must�A�ntC�not�mustntve��A�mustC�must�A�ntC�not�A�veC�have�mustn’t��A�mustC�must�A�n’tC�not�mustn’t’ve��A�mustC�must�A�n’tC�not�A�’veC�have�mustve��A�mustC�must�A�ve�must’ve��A�mustC�must�A�’ve�n.��A�n.�needn't��A�needC�need�A�n'tC�not�needn't've��A�needC�need�A�n'tC�not�A�'veC�have�neednt��A�needC�need�A�ntC�not�needntve��A�needC�need�A�ntC�not�A�veC�have�needn’t��A�needC�need�A�n’tC�not�needn’t’ve��A�needC�need�A�n’tC�not�A�’veC�have�not've��A�not�A�'veC�have�nothin��A�nothinC�nothing�nothin'��A�nothin'C�nothing�nothin’��A�nothin’C�nothing�notve��A�not�A�veC�have�not’ve��A�not�A�’veC�have�nuff��A�nuffC�enough�nuthin��A�nuthinC�nothing�nuthin'��A�nuthin'C�nothing�nuthin’��A�nuthin’C�nothing�o'clock��A�o'clockC�o'clock�o.��A�o.�o.0��A�o.0�o.O��A�o.O�o.o��A�o.o�o_0��A�o_0�o_O��A�o_O�o_o��A�o_o�ol��A�olC�old�ol'��A�ol'C�old�ol’��A�ol’C�old�oughtn't��A�oughtC�ought�A�n'tC�not�oughtn't've��A�oughtC�ought�A�n'tC�not�A�'veC�have�oughtnt��A�oughtC�ought�A�ntC�not�oughtntve��A�oughtC�ought�A�ntC�not�A�veC�have�oughtn’t��A�oughtC�ought�A�n’tC�not�oughtn’t’ve��A�oughtC�ought�A�n’tC�not�A�’veC�have�o’clock��A�o’clockC�o'clock�p.��A�p.�p.m.��A�p.m.�q.��A�q.�r.��A�r.�s.��A�s.�shan't��A�shaC�shall�A�n'tC�not�shan't've��A�shaC�shall�A�n'tC�not�A�'veC�have�shant��A�shaC�shall�A�ntC�not�shantve��A�shaC�shall�A�ntC�not�A�veC�have�shan’t��A�shaC�shall�A�n’tC�not�shan’t’ve��A�shaC�shall�A�n’tC�not�A�’veC�have�she'd��A�sheC�she�A�'dC�'d�she'd've��A�sheC�she�A�'dC�would�A�'veC�have�she'll��A�sheC�she�A�'llC�will�she'll've��A�sheC�she�A�'llC�will�A�'veC�have�she's��A�sheC�she�A�'sC�'s�shedve��A�sheC�she�A�dC�would�A�veC�have�shellve��A�sheC�she�A�llC�will�A�veC�have�shes��A�sheC�she�A�s�she’d��A�sheC�she�A�’dC�'d�she’d’ve��A�sheC�she�A�’dC�would�A�’veC�have�she’ll��A�sheC�she�A�’llC�will�she’ll’ve��A�sheC�she�A�’llC�will�A�’veC�have�she’s��A�sheC�she�A�’sC�'s�should've��A�shouldC�should�A�'ve�shouldn't��A�shouldC�should�A�n'tC�not�shouldn't've��A�shouldC�should�A�n'tC�not�A�'veC�have�shouldnt��A�shouldC�should�A�ntC�not�shouldntve��A�shouldC�should�A�ntC�not�A�veC�have�shouldn’t��A�shouldC�should�A�n’tC�not�shouldn’t’ve��A�shouldC�should�A�n’tC�not�A�’veC�have�shouldve��A�shouldC�should�A�ve�should’ve��A�shouldC�should�A�’ve�somethin��A�somethinC�something�somethin'��A�somethin'C�something�somethin’��A�somethin’C�something�t.��A�t.�that'd��A�thatC�that�A�'dC�'d�that'd've��A�thatC�that�A�'dC�would�A�'veC�have�that'll��A�thatC�that�A�'llC�will�that'll've��A�thatC�that�A�'llC�will�A�'veC�have�that's��A�thatC�that�A�'sC�'s�thatd��A�thatC�that�A�dC�'d�thatdve��A�thatC�that�A�dC�would�A�veC�have�thatll��A�thatC�that�A�llC�will�thatllve��A�thatC�that�A�llC�will�A�veC�have�thats��A�thatC�that�A�s�that’d��A�thatC�that�A�’dC�'d�that’d’ve��A�thatC�that�A�’dC�would�A�’veC�have�that’ll��A�thatC�that�A�’llC�will�that’ll’ve��A�thatC�that�A�’llC�will�A�’veC�have�that’s��A�thatC�that�A�’sC�'s�there'd��A�thereC�there�A�'dC�'d�there'd've��A�thereC�there�A�'dC�would�A�'veC�have�there'll��A�thereC�there�A�'llC�will�there'll've��A�thereC�there�A�'llC�will�A�'veC�have�there're��A�thereC�there�A�'reC�are�there's��A�thereC�there�A�'sC�'s�there've��A�thereC�there�A�'ve�thered��A�thereC�there�A�dC�'d�theredve��A�thereC�there�A�dC�would�A�veC�have�therell��A�thereC�there�A�llC�will�therellve��A�thereC�there�A�llC�will�A�veC�have�therere��A�thereC�there�A�reC�are�theres��A�thereC�there�A�s�thereve��A�there�A�veC�have�there’d��A�thereC�there�A�’dC�'d�there’d’ve��A�thereC�there�A�’dC�would�A�’veC�have�there’ll��A�thereC�there�A�’llC�will�there’ll’ve��A�thereC�there�A�’llC�will�A�’veC�have�there’re��A�thereC�there�A�’reC�are�there’s��A�thereC�there�A�’sC�'s�there’ve��A�thereC�there�A�’ve�these'd��A�theseC�these�A�'dC�'d�these'd've��A�theseC�these�A�'dC�would�A�'veC�have�these'll��A�theseC�these�A�'llC�will�these'll've��A�theseC�these�A�'llC�will�A�'veC�have�these're��A�theseC�these�A�'reC�are�these've��A�theseC�these�A�'ve�thesed��A�theseC�these�A�dC�'d�thesedve��A�theseC�these�A�dC�would�A�veC�have�thesell��A�theseC�these�A�llC�will�thesellve��A�theseC�these�A�llC�will�A�veC�have�thesere��A�theseC�these�A�reC�are�theseve��A�these�A�veC�have�these’d��A�theseC�these�A�’dC�'d�these’d’ve��A�theseC�these�A�’dC�would�A�’veC�have�these’ll��A�theseC�these�A�’llC�will�these’ll’ve��A�theseC�these�A�’llC�will�A�’veC�have�these’re��A�theseC�these�A�’reC�are�these’ve��A�theseC�these�A�’ve�they'd��A�theyC�they�A�'dC�'d�they'd've��A�theyC�they�A�'dC�would�A�'veC�have�they'll��A�theyC�they�A�'llC�will�they'll've��A�theyC�they�A�'llC�will�A�'veC�have�they're��A�theyC�they�A�'reC�are�they've��A�theyC�they�A�'veC�have�theyd��A�theyC�they�A�dC�'d�theydve��A�theyC�they�A�dC�would�A�veC�have�theyll��A�theyC�they�A�llC�will�theyllve��A�theyC�they�A�llC�will�A�veC�have�theyre��A�theyC�they�A�reC�are�theyve��A�theyC�they�A�veC�have�they’d��A�theyC�they�A�’dC�'d�they’d’ve��A�theyC�they�A�’dC�would�A�’veC�have�they’ll��A�theyC�they�A�’llC�will�they’ll’ve��A�theyC�they�A�’llC�will�A�’veC�have�they’re��A�theyC�they�A�’reC�are�they’ve��A�theyC�they�A�’veC�have�this'd��A�thisC�this�A�'dC�'d�this'd've��A�thisC�this�A�'dC�would�A�'veC�have�this'll��A�thisC�this�A�'llC�will�this'll've��A�thisC�this�A�'llC�will�A�'veC�have�this's��A�thisC�this�A�'sC�'s�thisd��A�thisC�this�A�dC�'d�thisdve��A�thisC�this�A�dC�would�A�veC�have�thisll��A�thisC�this�A�llC�will�thisllve��A�thisC�this�A�llC�will�A�veC�have�thiss��A�thisC�this�A�s�this’d��A�thisC�this�A�’dC�'d�this’d’ve��A�thisC�this�A�’dC�would�A�’veC�have�this’ll��A�thisC�this�A�’llC�will�this’ll’ve��A�thisC�this�A�’llC�will�A�’veC�have�this’s��A�thisC�this�A�’sC�'s�those'd��A�thoseC�those�A�'dC�'d�those'd've��A�thoseC�those�A�'dC�would�A�'veC�have�those'll��A�thoseC�those�A�'llC�will�those'll've��A�thoseC�those�A�'llC�will�A�'veC�have�those're��A�thoseC�those�A�'reC�are�those've��A�thoseC�those�A�'ve�thosed��A�thoseC�those�A�dC�'d�thosedve��A�thoseC�those�A�dC�would�A�veC�have�thosell��A�thoseC�those�A�llC�will�thosellve��A�thoseC�those�A�llC�will�A�veC�have�thosere��A�thoseC�those�A�reC�are�thoseve��A�those�A�veC�have�those’d��A�thoseC�those�A�’dC�'d�those’d’ve��A�thoseC�those�A�’dC�would�A�’veC�have�those’ll��A�thoseC�those�A�’llC�will�those’ll’ve��A�thoseC�those�A�’llC�will�A�’veC�have�those’re��A�thoseC�those�A�’reC�are�those’ve��A�thoseC�those�A�’ve�u.��A�u.�v.��A�v.�v.s.��A�v.s.�v.v��A�v.v�v_v��A�v_v�vs.��A�vs.�w.��A�w.�w/o��A�w/oC�without�wasn't��A�wasC�was�A�n'tC�not�wasnt��A�wasC�was�A�ntC�not�wasn’t��A�wasC�was�A�n’tC�not�we'd��A�weC�we�A�'dC�'d�we'd've��A�weC�we�A�'dC�would�A�'veC�have�we'll��A�weC�we�A�'llC�will�we'll've��A�weC�we�A�'llC�will�A�'veC�have�we're��A�weC�we�A�'reC�are�we've��A�weC�we�A�'veC�have�wed��A�weC�we�A�dC�'d�wedve��A�weC�we�A�dC�would�A�veC�have�wellve��A�weC�we�A�llC�will�A�veC�have�weren't��A�wereC�were�A�n'tC�not�werent��A�wereC�were�A�ntC�not�weren’t��A�wereC�were�A�n’tC�not�weve��A�weC�we�A�veC�have�we’d��A�weC�we�A�’dC�'d�we’d’ve��A�weC�we�A�’dC�would�A�’veC�have�we’ll��A�weC�we�A�’llC�will�we’ll’ve��A�weC�we�A�’llC�will�A�’veC�have�we’re��A�weC�we�A�’reC�are�we’ve��A�weC�we�A�’veC�have�what'd��A�whatC�what�A�'dC�'d�what'd've��A�whatC�what�A�'dC�would�A�'veC�have�what'll��A�whatC�what�A�'llC�will�what'll've��A�whatC�what�A�'llC�will�A�'veC�have�what're��A�whatC�what�A�'reC�are�what's��A�whatC�what�A�'sC�'s�what've��A�whatC�what�A�'ve�whatd��A�whatC�what�A�dC�'d�whatdve��A�whatC�what�A�dC�would�A�veC�have�whatll��A�whatC�what�A�llC�will�whatllve��A�whatC�what�A�llC�will�A�veC�have�whatre��A�whatC�what�A�reC�are�whats��A�whatC�what�A�s�whatve��A�what�A�veC�have�what’d��A�whatC�what�A�’dC�'d�what’d’ve��A�whatC�what�A�’dC�would�A�’veC�have�what’ll��A�whatC�what�A�’llC�will�what’ll’ve��A�whatC�what�A�’llC�will�A�’veC�have�what’re��A�whatC�what�A�’reC�are�what’s��A�whatC�what�A�’sC�'s�what’ve��A�whatC�what�A�’ve�when'd��A�whenC�when�A�'dC�'d�when'd've��A�whenC�when�A�'dC�would�A�'veC�have�when'll��A�whenC�when�A�'llC�will�when'll've��A�whenC�when�A�'llC�will�A�'veC�have�when're��A�whenC�when�A�'reC�are�when's��A�whenC�when�A�'sC�'s�when've��A�whenC�when�A�'ve�whend��A�whenC�when�A�dC�'d�whendve��A�whenC�when�A�dC�would�A�veC�have�whenll��A�whenC�when�A�llC�will�whenllve��A�whenC�when�A�llC�will�A�veC�have�whenre��A�whenC�when�A�reC�are�whens��A�whenC�when�A�s�whenve��A�when�A�veC�have�when’d��A�whenC�when�A�’dC�'d�when’d’ve��A�whenC�when�A�’dC�would�A�’veC�have�when’ll��A�whenC�when�A�’llC�will�when’ll’ve��A�whenC�when�A�’llC�will�A�’veC�have�when’re��A�whenC�when�A�’reC�are�when’s��A�whenC�when�A�’sC�'s�when’ve��A�whenC�when�A�’ve�where'd��A�whereC�where�A�'dC�'d�where'd've��A�whereC�where�A�'dC�would�A�'veC�have�where'll��A�whereC�where�A�'llC�will�where'll've��A�whereC�where�A�'llC�will�A�'veC�have�where're��A�whereC�where�A�'reC�are�where's��A�whereC�where�A�'sC�'s�where've��A�whereC�where�A�'ve�whered��A�whereC�where�A�dC�'d�wheredve��A�whereC�where�A�dC�would�A�veC�have�wherell��A�whereC�where�A�llC�will�wherellve��A�whereC�where�A�llC�will�A�veC�have�wherere��A�whereC�where�A�reC�are�wheres��A�whereC�where�A�s�whereve��A�where�A�veC�have�where’d��A�whereC�where�A�’dC�'d�where’d’ve��A�whereC�where�A�’dC�would�A�’veC�have�where’ll��A�whereC�where�A�’llC�will�where’ll’ve��A�whereC�where�A�’llC�will�A�’veC�have�where’re��A�whereC�where�A�’reC�are�where’s��A�whereC�where�A�’sC�'s�where’ve��A�whereC�where�A�’ve�who'd��A�whoC�who�A�'dC�'d�who'd've��A�whoC�who�A�'dC�would�A�'veC�have�who'll��A�whoC�who�A�'llC�will�who'll've��A�whoC�who�A�'llC�will�A�'veC�have�who're��A�whoC�who�A�'reC�are�who's��A�whoC�who�A�'sC�'s�who've��A�whoC�who�A�'ve�whod��A�whoC�who�A�dC�'d�whodve��A�whoC�who�A�dC�would�A�veC�have�wholl��A�whoC�who�A�llC�will�whollve��A�whoC�who�A�llC�will�A�veC�have�whos��A�whoC�who�A�s�whove��A�who�A�veC�have�who’d��A�whoC�who�A�’dC�'d�who’d’ve��A�whoC�who�A�’dC�would�A�’veC�have�who’ll��A�whoC�who�A�’llC�will�who’ll’ve��A�whoC�who�A�’llC�will�A�’veC�have�who’re��A�whoC�who�A�’reC�are�who’s��A�whoC�who�A�’sC�'s�who’ve��A�whoC�who�A�’ve�why'd��A�whyC�why�A�'dC�'d�why'd've��A�whyC�why�A�'dC�would�A�'veC�have�why'll��A�whyC�why�A�'llC�will�why'll've��A�whyC�why�A�'llC�will�A�'veC�have�why're��A�whyC�why�A�'reC�are�why's��A�whyC�why�A�'sC�'s�why've��A�whyC�why�A�'ve�whyd��A�whyC�why�A�dC�'d�whydve��A�whyC�why�A�dC�would�A�veC�have�whyll��A�whyC�why�A�llC�will�whyllve��A�whyC�why�A�llC�will�A�veC�have�whyre��A�whyC�why�A�reC�are�whys��A�whyC�why�A�s�whyve��A�why�A�veC�have�why’d��A�whyC�why�A�’dC�'d�why’d’ve��A�whyC�why�A�’dC�would�A�’veC�have�why’ll��A�whyC�why�A�’llC�will�why’ll’ve��A�whyC�why�A�’llC�will�A�’veC�have�why’re��A�whyC�why�A�’reC�are�why’s��A�whyC�why�A�’sC�'s�why’ve��A�whyC�why�A�’ve�won't��A�woC�will�A�n'tC�not�won't've��A�woC�will�A�n'tC�not�A�'veC�have�wont��A�woC�will�A�ntC�not�wontve��A�woC�will�A�ntC�not�A�veC�have�won’t��A�woC�will�A�n’tC�not�won’t’ve��A�woC�will�A�n’tC�not�A�’veC�have�would've��A�wouldC�would�A�'ve�wouldn't��A�wouldC�would�A�n'tC�not�wouldn't've��A�wouldC�would�A�n'tC�not�A�'veC�have�wouldnt��A�wouldC�would�A�ntC�not�wouldntve��A�wouldC�would�A�ntC�not�A�veC�have�wouldn’t��A�wouldC�would�A�n’tC�not�wouldn’t’ve��A�wouldC�would�A�n’tC�not�A�’veC�have�wouldve��A�wouldC�would�A�ve�would’ve��A�wouldC�would�A�’ve�x.��A�x.�xD��A�xD�xDD��A�xDD�y'all��A�y'C�you�A�all�y.��A�y.�yall��A�yC�you�A�all�you'd��A�youC�you�A�'dC�'d�you'd've��A�youC�you�A�'dC�would�A�'veC�have�you'll��A�youC�you�A�'llC�will�you'll've��A�youC�you�A�'llC�will�A�'veC�have�you're��A�youC�you�A�'reC�are�you've��A�youC�you�A�'veC�have�youd��A�youC�you�A�dC�'d�youdve��A�youC�you�A�dC�would�A�veC�have�youll��A�youC�you�A�llC�will�youllve��A�youC�you�A�llC�will�A�veC�have�youre��A�youC�you�A�reC�are�youve��A�youC�you�A�veC�have�you’d��A�youC�you�A�’dC�'d�you’d’ve��A�youC�you�A�’dC�would�A�’veC�have�you’ll��A�youC�you�A�’llC�will�you’ll’ve��A�youC�you�A�’llC�will�A�’veC�have�you’re��A�youC�you�A�’reC�are�you’ve��A�youC�you�A�’veC�have�y’all��A�y’C�you�A�all�z.��A�z.� ��A� C� �¯\(ツ)/¯��A�¯\(ツ)/¯�°C.��A�°�A�C�A�.�°F.��A�°�A�F�A�.�°K.��A�°�A�K�A�.�°c.��A�°�A�c�A�.�°f.��A�°�A�f�A�.�°k.��A�°�A�k�A�.�ä.��A�ä.�ö.��A�ö.�ü.��A�ü.�ಠ_ಠ��A�ಠ_ಠ�ಠ︵ಠ��A�ಠ︵ಠ�—��A�—�‘S��A�‘SC�'s�‘s��A�‘sC�'s�’��A�’�’Cause��A�’CauseC�because�’Cos��A�’CosC�because�’Coz��A�’CozC�because�’Cuz��A�’CuzC�because�’S��A�’SC�'s�’bout��A�’boutC�about�’cause��A�’causeC�because�’cos��A�’cosC�because�’coz��A�’cozC�because�’cuz��A�’cuzC�because�’d��A�’d�’em��A�’emC�them�’ll��A�’llC�will�’nuff��A�’nuffC�enough�’re��A�’reC�are�’s��A�’sC�'s�’’��A�’’�faster_heuristics�
app/NER/model-best/vocab/key2row ADDED
@@ -0,0 +1 @@
 
 
1
+
app/NER/model-best/vocab/lookups.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76be8b528d0075f7aae98d6fa57a6d3c83ae480a8469e668d7b0af968995ac71
3
+ size 1
app/NER/model-best/vocab/strings.json ADDED
@@ -0,0 +1,6200 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "\t",
3
+ "\n",
4
+ " ",
5
+ " ",
6
+ "!",
7
+ "\"",
8
+ "\"de",
9
+ "'",
10
+ "''",
11
+ "'-(",
12
+ "'-)",
13
+ "'Cause",
14
+ "'Cos",
15
+ "'Coz",
16
+ "'Cuz",
17
+ "'S",
18
+ "'X",
19
+ "'Xxx",
20
+ "'Xxxxx",
21
+ "'am",
22
+ "'bout",
23
+ "'cause",
24
+ "'cos",
25
+ "'coz",
26
+ "'cuz",
27
+ "'d",
28
+ "'de",
29
+ "'em",
30
+ "'ll",
31
+ "'m",
32
+ "'nuff",
33
+ "'re",
34
+ "'s",
35
+ "'ve",
36
+ "'x",
37
+ "'xx",
38
+ "'xxx",
39
+ "'xxxx",
40
+ "'y",
41
+ "(",
42
+ "(((",
43
+ "(*>",
44
+ "(*_*)",
45
+ "(-8",
46
+ "(-:",
47
+ "(-;",
48
+ "(-_-)",
49
+ "(-d",
50
+ "(._.)",
51
+ "(:",
52
+ "(;",
53
+ "(=",
54
+ "(>_<)",
55
+ "(NT",
56
+ "(ST",
57
+ "(^_^)",
58
+ "(nt",
59
+ "(o:",
60
+ "(st",
61
+ "(x:",
62
+ "(x_x)",
63
+ "(\u00ac_\u00ac)",
64
+ "(\u0ca0_\u0ca0)",
65
+ "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b",
66
+ ")",
67
+ ")))",
68
+ ")-:",
69
+ ")/\u00af",
70
+ "):",
71
+ "*",
72
+ "+",
73
+ ",",
74
+ "-",
75
+ "-((",
76
+ "-))",
77
+ "--",
78
+ "-/",
79
+ "-0",
80
+ "-06",
81
+ "-09",
82
+ "-3",
83
+ "-30",
84
+ "-48",
85
+ "-8",
86
+ "-D",
87
+ "-O",
88
+ "-P",
89
+ "-Regieug",
90
+ "-U",
91
+ "-X",
92
+ "-Xxxxx",
93
+ "-_-",
94
+ "-__-",
95
+ "-d",
96
+ "-o",
97
+ "-p",
98
+ "-regieug",
99
+ "-u",
100
+ "-x",
101
+ "-xxxx",
102
+ "-|",
103
+ ".",
104
+ ".01",
105
+ ".05",
106
+ ".19",
107
+ ".21",
108
+ ".45",
109
+ ".67",
110
+ ".6p",
111
+ ".AM",
112
+ ".C.",
113
+ ".D.",
114
+ ".E.",
115
+ ".G.",
116
+ ".H.",
117
+ ".J.",
118
+ ".M.",
119
+ ".NY",
120
+ ".PY",
121
+ ".SA",
122
+ ".Venh",
123
+ ".XY",
124
+ ".Xxxx",
125
+ ".Y.",
126
+ "._.",
127
+ ".am",
128
+ ".de",
129
+ ".e.",
130
+ ".g.",
131
+ ".in",
132
+ ".m.",
133
+ ".ny",
134
+ ".on",
135
+ ".py",
136
+ ".s.",
137
+ ".sa",
138
+ ".venh",
139
+ ".xxxx",
140
+ ".xy",
141
+ "/",
142
+ "//t",
143
+ "/3",
144
+ "/57",
145
+ "/66",
146
+ "/DOB09/12/1997",
147
+ "/MA1",
148
+ "/MARS",
149
+ "/MARS14",
150
+ "/Mae",
151
+ "/National",
152
+ "/NationalIDCard",
153
+ "/NatonalDCard",
154
+ "/Signature|Signature",
155
+ "/XXXX",
156
+ "/XXXXdd",
157
+ "/XXXdd/dd/dddd",
158
+ "/XXd",
159
+ "/Xxx",
160
+ "/Xxxx",
161
+ "/Xxxxx",
162
+ "/XxxxxXXXxxx",
163
+ "/XxxxxXXxxx",
164
+ "/Xxxxx|Xxxxx",
165
+ "/Year",
166
+ "/d",
167
+ "/dob09/12/1997",
168
+ "/ma1",
169
+ "/mae",
170
+ "/mars",
171
+ "/mars14",
172
+ "/national",
173
+ "/nationalidcard",
174
+ "/natonaldcard",
175
+ "/or",
176
+ "/signature|signature",
177
+ "/xxd",
178
+ "/xxx",
179
+ "/xxxdd/dd/dddd",
180
+ "/xxxx",
181
+ "/xxxxdd",
182
+ "/xxxx|xxxx",
183
+ "/year",
184
+ "0",
185
+ "0.0",
186
+ "0.83.560064",
187
+ "0.o",
188
+ "00",
189
+ "00.01.01",
190
+ "000",
191
+ "0000",
192
+ "00000000",
193
+ "000000000",
194
+ "000000000000",
195
+ "0000000000000",
196
+ "000000001",
197
+ "0001",
198
+ "0001607",
199
+ "001",
200
+ "001469427",
201
+ "0018",
202
+ "00188560",
203
+ "002",
204
+ "003",
205
+ "004",
206
+ "005",
207
+ "005774744001",
208
+ "008",
209
+ "009",
210
+ "01",
211
+ "01.01.1977",
212
+ "01.01.2028IC",
213
+ "01.01.2028ic",
214
+ "01.07.2023",
215
+ "01.08.2031",
216
+ "01/04/2016",
217
+ "01/11/1966",
218
+ "01/11/66",
219
+ "01/12/1967",
220
+ "01/12/2022",
221
+ "010",
222
+ "0100",
223
+ "0100170",
224
+ "01011994",
225
+ "01082021",
226
+ "011",
227
+ "01102027",
228
+ "012",
229
+ "012028",
230
+ "01234567890",
231
+ "01234567890000259",
232
+ "013",
233
+ "014",
234
+ "015",
235
+ "016",
236
+ "017",
237
+ "018",
238
+ "019",
239
+ "0190",
240
+ "01JAN1990",
241
+ "01jan1990",
242
+ "02",
243
+ "02.01.2018",
244
+ "02.08.2019",
245
+ "02.08.2029",
246
+ "02/21/1984",
247
+ "02/21/2021",
248
+ "020",
249
+ "02002486",
250
+ "02023",
251
+ "021",
252
+ "022",
253
+ "02222",
254
+ "023",
255
+ "024",
256
+ "025",
257
+ "026",
258
+ "027",
259
+ "028",
260
+ "029",
261
+ "03",
262
+ "03.01.2000",
263
+ "03.12.1969",
264
+ "03/07/2022",
265
+ "03/14/19764bEXP03/14/2023",
266
+ "03/14/19764bexp03/14/2023",
267
+ "03/16/2018",
268
+ "03/162018",
269
+ "03/19/2018",
270
+ "030",
271
+ "031",
272
+ "031990",
273
+ "04",
274
+ "04101072",
275
+ "04200",
276
+ "05",
277
+ "05700",
278
+ "05Feb2018",
279
+ "05feb2018",
280
+ "06",
281
+ "06.01.1000",
282
+ "06.01.2000",
283
+ "06.01.3000",
284
+ "0602",
285
+ "064",
286
+ "065",
287
+ "068",
288
+ "06b2008",
289
+ "07",
290
+ "07/04/1970",
291
+ "071990",
292
+ "072",
293
+ "073",
294
+ "0773344",
295
+ "079",
296
+ "07Aug",
297
+ "07aug",
298
+ "08",
299
+ "08.032022",
300
+ "08.10.1981",
301
+ "08/12/2032(NT",
302
+ "08/12/2032(nt",
303
+ "08/15/1957",
304
+ "08/15/2022",
305
+ "08/15/57",
306
+ "0801",
307
+ "08041973DEUTSCH",
308
+ "08041973deutsch",
309
+ "082029",
310
+ "089",
311
+ "09",
312
+ "09.02.2031",
313
+ "09.07.2000",
314
+ "09.10.1972",
315
+ "09.MFO",
316
+ "09.mfo",
317
+ "09/12/2022",
318
+ "0Ib",
319
+ "0_0",
320
+ "0_o",
321
+ "0b",
322
+ "0ib",
323
+ "0o81987",
324
+ "1",
325
+ "1.0",
326
+ "1.67",
327
+ "1.SIMMONS",
328
+ "1.VENCKU5",
329
+ "1.simmons",
330
+ "1.vencku5",
331
+ "10",
332
+ "10.01.2012",
333
+ "10.01.2022",
334
+ "10.12.2028",
335
+ "10/15/2015",
336
+ "10/31/2029",
337
+ "100",
338
+ "1000174480",
339
+ "10051970",
340
+ "1009",
341
+ "101",
342
+ "102",
343
+ "105",
344
+ "107",
345
+ "10MFO",
346
+ "10a.m",
347
+ "10a.m.",
348
+ "10mfo",
349
+ "10p.m",
350
+ "10p.m.",
351
+ "11",
352
+ "11.05",
353
+ "11//141V",
354
+ "11//141v",
355
+ "11022030",
356
+ "111",
357
+ "115",
358
+ "1174106626",
359
+ "118",
360
+ "11JUN",
361
+ "11a.m",
362
+ "11a.m.",
363
+ "11jun",
364
+ "11p.m",
365
+ "11p.m.",
366
+ "12",
367
+ "12.08.1964",
368
+ "12.081983",
369
+ "12.12.2002",
370
+ "12/01/1998",
371
+ "12/03/2013",
372
+ "12/08/196",
373
+ "12/08/2021",
374
+ "12/12/1979",
375
+ "12/12/2026",
376
+ "120",
377
+ "1208197",
378
+ "1208198",
379
+ "121068",
380
+ "12222",
381
+ "123",
382
+ "123.45",
383
+ "12308/15/2018",
384
+ "1234",
385
+ "12345111",
386
+ "123456",
387
+ "1234567",
388
+ "123456789",
389
+ "123MAIN",
390
+ "123NORTHSTREET",
391
+ "123STATEST",
392
+ "123main",
393
+ "123northstreet",
394
+ "123statest",
395
+ "128",
396
+ "129",
397
+ "12ESTRNONE",
398
+ "12I08X1983",
399
+ "12May",
400
+ "12May1975",
401
+ "12RESTNONE",
402
+ "12a.m",
403
+ "12a.m.",
404
+ "12estrnone",
405
+ "12i08x1983",
406
+ "12may",
407
+ "12may1975",
408
+ "12p.m",
409
+ "12p.m.",
410
+ "12restnone",
411
+ "13",
412
+ "13.071990",
413
+ "13.12.2021",
414
+ "130479",
415
+ "1310",
416
+ "132",
417
+ "14",
418
+ "14.765.118",
419
+ "140",
420
+ "141",
421
+ "146",
422
+ "15",
423
+ "15.01.2003",
424
+ "15.09.1990",
425
+ "15/09/2015",
426
+ "15/5/2029",
427
+ "15283412",
428
+ "156",
429
+ "157eb1961",
430
+ "15EXM",
431
+ "15SEXF",
432
+ "15exm",
433
+ "15sexf",
434
+ "16",
435
+ "16(2",
436
+ "16.10.1972",
437
+ "16/5/2019",
438
+ "160",
439
+ "164745",
440
+ "166",
441
+ "16HGT5",
442
+ "16hgt5",
443
+ "16on",
444
+ "17",
445
+ "170",
446
+ "1701",
447
+ "17020214578654",
448
+ "171716945",
449
+ "1759",
450
+ "175cmCoLBIx",
451
+ "175cmcolbix",
452
+ "177",
453
+ "179",
454
+ "179CM",
455
+ "179cm",
456
+ "17ENERO2026",
457
+ "17WGT150Ib",
458
+ "17enero2026",
459
+ "17wgt150ib",
460
+ "18",
461
+ "18.01.2018",
462
+ "18.01.2028",
463
+ "180",
464
+ "180EC1999",
465
+ "180ec1999",
466
+ "18EYES",
467
+ "18EYESBLU",
468
+ "18F",
469
+ "18eyes",
470
+ "18eyesblu",
471
+ "18f",
472
+ "19",
473
+ "190",
474
+ "1906LANA",
475
+ "1906lana",
476
+ "190ct2024",
477
+ "191",
478
+ "1947",
479
+ "1952",
480
+ "196",
481
+ "1964",
482
+ "1965",
483
+ "197",
484
+ "1973",
485
+ "1975",
486
+ "1976",
487
+ "1977",
488
+ "198",
489
+ "1980",
490
+ "1983",
491
+ "1987.-09",
492
+ "1988",
493
+ "1997",
494
+ "19C",
495
+ "19HAR",
496
+ "19Oct2008",
497
+ "19c",
498
+ "19har",
499
+ "19oct2008",
500
+ "1F1",
501
+ "1IH",
502
+ "1SAMPLE",
503
+ "1a.m",
504
+ "1a.m.",
505
+ "1f1",
506
+ "1ih",
507
+ "1p.m",
508
+ "1p.m.",
509
+ "1sample",
510
+ "1z",
511
+ "2",
512
+ "2.JULIET",
513
+ "2.juliet",
514
+ "20",
515
+ "20.06.2001",
516
+ "20.06.2027",
517
+ "200",
518
+ "200000907",
519
+ "2001",
520
+ "2002",
521
+ "2004",
522
+ "2009",
523
+ "201",
524
+ "2010",
525
+ "2012",
526
+ "2013",
527
+ "2014",
528
+ "2015",
529
+ "2019",
530
+ "2020",
531
+ "2021",
532
+ "2023",
533
+ "2024",
534
+ "2025",
535
+ "2025CRIMNALSTICE",
536
+ "2025crimnalstice",
537
+ "2027",
538
+ "2030",
539
+ "2031",
540
+ "205",
541
+ "21",
542
+ "213MAYO008",
543
+ "213mayo008",
544
+ "215",
545
+ "216",
546
+ "218",
547
+ "21AGO1988",
548
+ "21May-2017",
549
+ "21ago1988",
550
+ "21may-2017",
551
+ "22",
552
+ "222",
553
+ "23",
554
+ "23.11.1994",
555
+ "2303",
556
+ "234",
557
+ "2345ANYWHERE",
558
+ "2345anywhere",
559
+ "234606",
560
+ "237",
561
+ "23APR",
562
+ "23apr",
563
+ "24",
564
+ "24.01.2015",
565
+ "24.04.2017",
566
+ "24.04.2027",
567
+ "241",
568
+ "242",
569
+ "24MAR",
570
+ "24mar",
571
+ "25",
572
+ "25.01.2005",
573
+ "250b",
574
+ "2573965",
575
+ "259",
576
+ "26",
577
+ "26.08.2016",
578
+ "26.08.2026",
579
+ "26/08/1973",
580
+ "260291",
581
+ "261120",
582
+ "27",
583
+ "27.03.2028",
584
+ "27.06.2011",
585
+ "27.06.2018",
586
+ "27.06.2028",
587
+ "2700.2018",
588
+ "28",
589
+ "28/10/1961",
590
+ "283",
591
+ "2832107",
592
+ "28321079",
593
+ "28NOV",
594
+ "28nov",
595
+ "29.06.2021",
596
+ "29.06.2031",
597
+ "290341",
598
+ "291",
599
+ "2AVERY",
600
+ "2JANE",
601
+ "2JENNIFERAMY",
602
+ "2KAI",
603
+ "2M2",
604
+ "2MAY1974",
605
+ "2UA",
606
+ "2a.m",
607
+ "2a.m.",
608
+ "2avery",
609
+ "2jane",
610
+ "2jenniferamy",
611
+ "2kai",
612
+ "2m2",
613
+ "2may1974",
614
+ "2p.m",
615
+ "2p.m.",
616
+ "2ua",
617
+ "3",
618
+ "3.21.04.1989",
619
+ "3/241",
620
+ "30.01.2015",
621
+ "30.01.2025",
622
+ "30.11.1972",
623
+ "30/01/1990",
624
+ "30/07/1996",
625
+ "30/07/1998",
626
+ "30/11/2016",
627
+ "30/11/2022",
628
+ "300395",
629
+ "303",
630
+ "31",
631
+ "31.10.2020",
632
+ "31.12.1981",
633
+ "31/03/2019",
634
+ "310",
635
+ "31102026",
636
+ "314",
637
+ "319",
638
+ "31Dec2024",
639
+ "31FIR",
640
+ "31dec2024",
641
+ "31fir",
642
+ "329.06.1995LITHUANIA",
643
+ "329.06.1995lithuania",
644
+ "33",
645
+ "333",
646
+ "33332222",
647
+ "339",
648
+ "34",
649
+ "341",
650
+ "344",
651
+ "352",
652
+ "35SM",
653
+ "35sm",
654
+ "367",
655
+ "370",
656
+ "3892",
657
+ "395",
658
+ "398",
659
+ "3D",
660
+ "3DOB",
661
+ "3OE",
662
+ "3TR",
663
+ "3Y",
664
+ "3Y8",
665
+ "3a.m",
666
+ "3a.m.",
667
+ "3d",
668
+ "3dob",
669
+ "3oe",
670
+ "3p.m",
671
+ "3p.m.",
672
+ "3tr",
673
+ "3y",
674
+ "3y8",
675
+ "4",
676
+ "401",
677
+ "402",
678
+ "407",
679
+ "407,Sfs",
680
+ "407,sfs",
681
+ "407.e",
682
+ "410",
683
+ "412",
684
+ "417",
685
+ "41V",
686
+ "41v",
687
+ "42101",
688
+ "4210172798777",
689
+ "42201",
690
+ "42401",
691
+ "4242",
692
+ "42618310",
693
+ "427",
694
+ "428478",
695
+ "4329177",
696
+ "444",
697
+ "4444",
698
+ "45.5",
699
+ "456",
700
+ "4567",
701
+ "456BLOOMINGTONAVE",
702
+ "456bloomingtonave",
703
+ "46.25.11.2073",
704
+ "463",
705
+ "47401",
706
+ "4753",
707
+ "478",
708
+ "479",
709
+ "480",
710
+ "485",
711
+ "486",
712
+ "488",
713
+ "4895",
714
+ "4936",
715
+ "497",
716
+ "4Expires07/04/2025",
717
+ "4SH",
718
+ "4a",
719
+ "4a.04.01.2020",
720
+ "4a.05.07.20054b",
721
+ "4a.m",
722
+ "4a.m.",
723
+ "4a26.11.2013",
724
+ "4aISS",
725
+ "4aS123",
726
+ "4aiss",
727
+ "4as123",
728
+ "4b",
729
+ "4b.31.10.2023",
730
+ "4c",
731
+ "4d",
732
+ "4expires07/04/2025",
733
+ "4p.m",
734
+ "4p.m.",
735
+ "4sh",
736
+ "5",
737
+ "5.5",
738
+ "5.6p",
739
+ "50%(RGB/8",
740
+ "50%(rgb/8",
741
+ "500",
742
+ "5000",
743
+ "500234578801234",
744
+ "500F85002",
745
+ "500f85002",
746
+ "501",
747
+ "506",
748
+ "507",
749
+ "508",
750
+ "50b",
751
+ "51",
752
+ "5164706",
753
+ "5218",
754
+ "534",
755
+ "53705",
756
+ "546497",
757
+ "5485",
758
+ "54b",
759
+ "55417",
760
+ "560",
761
+ "562",
762
+ "564651352",
763
+ "567",
764
+ "568",
765
+ "5843",
766
+ "5843216619644815",
767
+ "58468465808A4552163C563479215696712<648649",
768
+ "58468465808a4552163c563479215696712<648649",
769
+ "5978",
770
+ "598",
771
+ "5DDOTNJR2015101514185981",
772
+ "5Ib",
773
+ "5SM",
774
+ "5a.m",
775
+ "5a.m.",
776
+ "5ddotnjr2015101514185981",
777
+ "5ib",
778
+ "5p.m",
779
+ "5p.m.",
780
+ "5sm",
781
+ "6",
782
+ "6(2",
783
+ "6000",
784
+ "602",
785
+ "606",
786
+ "607",
787
+ "611",
788
+ "612",
789
+ "626",
790
+ "63.21",
791
+ "631",
792
+ "63787918",
793
+ "646823",
794
+ "649",
795
+ "65",
796
+ "6501",
797
+ "654",
798
+ "6598",
799
+ "670",
800
+ "671012672",
801
+ "672",
802
+ "6795",
803
+ "68063717717",
804
+ "6a.m",
805
+ "6a.m.",
806
+ "6on",
807
+ "6p.m",
808
+ "6p.m.",
809
+ "7",
810
+ "7.Sfs",
811
+ "7.e",
812
+ "7.sfs",
813
+ "700",
814
+ "701",
815
+ "705",
816
+ "706",
817
+ "7065",
818
+ "7109094F111231AUT<<<<<<<<<<<<0",
819
+ "7109094f111231aut<<<<<<<<<<<<0",
820
+ "717",
821
+ "723",
822
+ "732",
823
+ "74",
824
+ "7407",
825
+ "745",
826
+ "753",
827
+ "759",
828
+ "777",
829
+ "789",
830
+ "795",
831
+ "7974",
832
+ "7a.m",
833
+ "7a.m.",
834
+ "7p.m",
835
+ "7p.m.",
836
+ "8",
837
+ "8)",
838
+ "8-",
839
+ "8-)",
840
+ "8-D",
841
+ "8-d",
842
+ "8.60064",
843
+ "8000",
844
+ "801",
845
+ "802",
846
+ "80927488",
847
+ "81.544.670",
848
+ "81010200141",
849
+ "8101028M2501305P0L810102001410",
850
+ "8101028m2501305p0l810102001410",
851
+ "815",
852
+ "823",
853
+ "83",
854
+ "843",
855
+ "84802",
856
+ "866",
857
+ "867367",
858
+ "8673674936",
859
+ "87",
860
+ "88",
861
+ "88888866",
862
+ "890",
863
+ "8901234567890",
864
+ "892",
865
+ "895",
866
+ "899",
867
+ "8D",
868
+ "8IC",
869
+ "8JL",
870
+ "8W205",
871
+ "8a.m",
872
+ "8a.m.",
873
+ "8a0.on",
874
+ "8d",
875
+ "8ic",
876
+ "8jl",
877
+ "8p.m",
878
+ "8p.m.",
879
+ "8w205",
880
+ "9",
881
+ "9.999.999",
882
+ "9.AM",
883
+ "9.am",
884
+ "90008",
885
+ "900146",
886
+ "907",
887
+ "910GOVERNMENT.STREET",
888
+ "910government.street",
889
+ "9159B3916",
890
+ "9159b3916",
891
+ "916",
892
+ "918",
893
+ "925732",
894
+ "9336611",
895
+ "936",
896
+ "938568",
897
+ "945",
898
+ "947",
899
+ "950439998631",
900
+ "952",
901
+ "957",
902
+ "961",
903
+ "962507",
904
+ "964",
905
+ "965",
906
+ "966",
907
+ "967",
908
+ "969",
909
+ "970",
910
+ "972",
911
+ "973",
912
+ "974",
913
+ "975",
914
+ "976",
915
+ "977",
916
+ "978",
917
+ "979",
918
+ "980",
919
+ "981",
920
+ "983",
921
+ "984",
922
+ "985",
923
+ "987",
924
+ "988",
925
+ "989",
926
+ "990",
927
+ "993",
928
+ "994",
929
+ "995",
930
+ "996",
931
+ "997",
932
+ "998",
933
+ "999",
934
+ "99Q",
935
+ "99q",
936
+ "9CM",
937
+ "9Class",
938
+ "9TT",
939
+ "9a.m",
940
+ "9a.m.",
941
+ "9class",
942
+ "9cm",
943
+ "9p.m",
944
+ "9p.m.",
945
+ "9tt",
946
+ ":",
947
+ ":'(",
948
+ ":')",
949
+ ":'-(",
950
+ ":'-)",
951
+ ":(",
952
+ ":((",
953
+ ":(((",
954
+ ":()",
955
+ ":)",
956
+ ":))",
957
+ ":)))",
958
+ ":*",
959
+ ":-(",
960
+ ":-((",
961
+ ":-(((",
962
+ ":-)",
963
+ ":-))",
964
+ ":-)))",
965
+ ":-*",
966
+ ":-/",
967
+ ":-0",
968
+ ":-3",
969
+ ":->",
970
+ ":-D",
971
+ ":-O",
972
+ ":-P",
973
+ ":-X",
974
+ ":-]",
975
+ ":-d",
976
+ ":-o",
977
+ ":-p",
978
+ ":-x",
979
+ ":-|",
980
+ ":-}",
981
+ ":/",
982
+ ":0",
983
+ ":09",
984
+ ":1",
985
+ ":13",
986
+ ":26",
987
+ ":3",
988
+ ":>",
989
+ ":D",
990
+ ":O",
991
+ ":P",
992
+ ":X",
993
+ ":]",
994
+ ":d",
995
+ ":o",
996
+ ":o)",
997
+ ":p",
998
+ ":x",
999
+ ":x)",
1000
+ ":|",
1001
+ ":}",
1002
+ ":\u2019(",
1003
+ ":\u2019)",
1004
+ ":\u2019-(",
1005
+ ":\u2019-)",
1006
+ ";",
1007
+ ";)",
1008
+ ";-)",
1009
+ ";-D",
1010
+ ";-X",
1011
+ ";-d",
1012
+ ";D",
1013
+ ";X",
1014
+ ";_;",
1015
+ ";d",
1016
+ "<",
1017
+ "<.<",
1018
+ "</3",
1019
+ "</d",
1020
+ "<3",
1021
+ "<33",
1022
+ "<333",
1023
+ "<<0",
1024
+ "<d",
1025
+ "<dd",
1026
+ "<ddd",
1027
+ "<space>",
1028
+ "<xxxx>",
1029
+ "=",
1030
+ "=(",
1031
+ "=)",
1032
+ "=/",
1033
+ "=3",
1034
+ "=D",
1035
+ "=X",
1036
+ "=[",
1037
+ "=]",
1038
+ "=d",
1039
+ "=|",
1040
+ ">",
1041
+ ">.<",
1042
+ ">.>",
1043
+ ">:(",
1044
+ ">:o",
1045
+ ">:x",
1046
+ "><(((*>",
1047
+ "@",
1048
+ "@_@",
1049
+ "A",
1050
+ "A123",
1051
+ "A123456",
1052
+ "A123456789",
1053
+ "A18F",
1054
+ "A52",
1055
+ "AADHAAR",
1056
+ "AAO",
1057
+ "AAR",
1058
+ "ABDULMAZID",
1059
+ "ABS1",
1060
+ "ACE",
1061
+ "ACH",
1062
+ "ADDRESS",
1063
+ "ADE",
1064
+ "ADO",
1065
+ "ADOOCSS",
1066
+ "AFRiN",
1067
+ "AFT",
1068
+ "AGE",
1069
+ "AHA",
1070
+ "AIM",
1071
+ "AIN",
1072
+ "AIR",
1073
+ "AIS",
1074
+ "AIT",
1075
+ "AKA",
1076
+ "ALA",
1077
+ "ALBANY.NY",
1078
+ "ALE",
1079
+ "ALEXANDER",
1080
+ "ALT",
1081
+ "AM",
1082
+ "AMA",
1083
+ "AMBITOS",
1084
+ "AME",
1085
+ "AMERICA",
1086
+ "AMS",
1087
+ "AMY",
1088
+ "ANA",
1089
+ "AND",
1090
+ "ANE",
1091
+ "ANGABEN",
1092
+ "ANI",
1093
+ "ANMERKUNGEN",
1094
+ "ANN",
1095
+ "ANY",
1096
+ "ANYTOWN",
1097
+ "APELLIDOS",
1098
+ "APELLIDOSY",
1099
+ "APR",
1100
+ "APR56",
1101
+ "ARA",
1102
+ "ARC",
1103
+ "ARD",
1104
+ "ARGENTINA",
1105
+ "ARI",
1106
+ "ARO",
1107
+ "ARS",
1108
+ "ART",
1109
+ "ARTA",
1110
+ "ARTDESTITELSITYPE",
1111
+ "AS",
1112
+ "ASAPORTE",
1113
+ "ASS",
1114
+ "ASST",
1115
+ "ATA",
1116
+ "ATE",
1117
+ "ATH",
1118
+ "ATLAS",
1119
+ "ATZ",
1120
+ "AUFENTHALTSERLAUBNIS",
1121
+ "AUFENTHALTSTITEL",
1122
+ "AUG",
1123
+ "AUL",
1124
+ "AUN",
1125
+ "AUS",
1126
+ "AUSTRIA",
1127
+ "AUSTRIACARTE",
1128
+ "AUSWEISERSATZ",
1129
+ "AUT",
1130
+ "AVE",
1131
+ "AWA",
1132
+ "AWY",
1133
+ "AYA",
1134
+ "AYO",
1135
+ "AYS",
1136
+ "Aagen",
1137
+ "Add",
1138
+ "Address",
1139
+ "AdiMuhammet",
1140
+ "AdjustmentsStyles",
1141
+ "Adm",
1142
+ "Adm.",
1143
+ "Afrin",
1144
+ "Age",
1145
+ "Ai",
1146
+ "Ak",
1147
+ "Ak.",
1148
+ "Akhta",
1149
+ "Akhtar",
1150
+ "Ala",
1151
+ "Ala.",
1152
+ "Alabama",
1153
+ "Alaska",
1154
+ "Albanian",
1155
+ "Amit",
1156
+ "Amy",
1157
+ "An",
1158
+ "Anando",
1159
+ "Anna",
1160
+ "Apellido",
1161
+ "Apellidos",
1162
+ "Apr",
1163
+ "Apr-06",
1164
+ "Apr.",
1165
+ "Apr2003",
1166
+ "April",
1167
+ "Are",
1168
+ "Ariz",
1169
+ "Ariz.",
1170
+ "Arizona",
1171
+ "Ark",
1172
+ "Ark.",
1173
+ "Arkansas",
1174
+ "Ass",
1175
+ "Assinatura",
1176
+ "Atha",
1177
+ "Atiw1",
1178
+ "Aug",
1179
+ "Aug.",
1180
+ "August",
1181
+ "Authority",
1182
+ "B",
1183
+ "B.G.",
1184
+ "B/8",
1185
+ "B1",
1186
+ "B1315:13",
1187
+ "B15995",
1188
+ "BAILEATHA",
1189
+ "BAL",
1190
+ "BARBARAEPIGMENIA",
1191
+ "BARNEY",
1192
+ "BAS",
1193
+ "BCV8W3Y8",
1194
+ "BD",
1195
+ "BE",
1196
+ "BEA",
1197
+ "BEL",
1198
+ "BELGIE",
1199
+ "BELGIEN",
1200
+ "BELGIQUE",
1201
+ "BELGIUM",
1202
+ "BELISARIO",
1203
+ "BEN",
1204
+ "BENJAMIN",
1205
+ "BER",
1206
+ "BERLIN",
1207
+ "BERLINI",
1208
+ "BESCHV",
1209
+ "BH",
1210
+ "BHREITHEIPLACE",
1211
+ "BI5RI998IRIB-9IRI",
1212
+ "BIA",
1213
+ "BIRTH",
1214
+ "BIRTHDATE",
1215
+ "BIRTHILIEU",
1216
+ "BIS",
1217
+ "BIx",
1218
+ "BLU",
1219
+ "BNE",
1220
+ "BNR",
1221
+ "BOGOTA",
1222
+ "BRASIL",
1223
+ "BRAUN",
1224
+ "BREITHEIDATE",
1225
+ "BRITISHCITIZEN",
1226
+ "BRO",
1227
+ "BROJOSOBNE",
1228
+ "BROWN",
1229
+ "BS1",
1230
+ "BSTE",
1231
+ "BUNDESREPUBGIKDEUTSCHLAND",
1232
+ "BUNDESREPUBLIK",
1233
+ "BUNDESREPUBLIKDEUTSCHLAND",
1234
+ "BUNDESREPUBLKDEUTSCHLAND",
1235
+ "BUNDESREPUBOKDEUTSCHLAND",
1236
+ "Baile",
1237
+ "Bangalore",
1238
+ "Bangladesh",
1239
+ "Bata",
1240
+ "Bate",
1241
+ "Bbs",
1242
+ "Bhagaban",
1243
+ "Birth",
1244
+ "Birth/",
1245
+ "Birth01",
1246
+ "Birth12Aug",
1247
+ "Birth18DEC1999",
1248
+ "Birth1985",
1249
+ "Blanco",
1250
+ "Blood",
1251
+ "Bolivariano",
1252
+ "Bond",
1253
+ "Br",
1254
+ "British",
1255
+ "Bros",
1256
+ "Bros.",
1257
+ "Bruijn",
1258
+ "BurosuAfrin",
1259
+ "C",
1260
+ "C'm",
1261
+ "C++",
1262
+ "C.",
1263
+ "C.DVLA",
1264
+ "C.IV-21.112.215",
1265
+ "C9534128",
1266
+ "CADEDRENOYOUED",
1267
+ "CALIFORNIA",
1268
+ "CAN",
1269
+ "CARC",
1270
+ "CARD",
1271
+ "CARDACARTEDIDENTITE",
1272
+ "CARDIFF",
1273
+ "CARDYCARTEDIDENTITE",
1274
+ "CARO",
1275
+ "CARON",
1276
+ "CARTADIDENTITA",
1277
+ "CARTADIDENTITACARTAD'IDENTITAD",
1278
+ "CARTADIDENTITACARTADIDENTITAD",
1279
+ "CARTADIDENTITAD",
1280
+ "CARTAICARD",
1281
+ "CARTE",
1282
+ "CARTED'IDENTITE",
1283
+ "CARTEDIDENTITE",
1284
+ "CARTEDIDENTTTE",
1285
+ "CARTEDIOENTITE",
1286
+ "CASADO",
1287
+ "CAYSC",
1288
+ "CCEL",
1289
+ "CE/",
1290
+ "CEALBANIA",
1291
+ "CEDULA",
1292
+ "CEDULADEIDENTIDAD",
1293
+ "CEL",
1294
+ "CENTIN",
1295
+ "CENTITY",
1296
+ "CENTRAL",
1297
+ "CENTROAMERICA",
1298
+ "CESKA",
1299
+ "CH",
1300
+ "CHA",
1301
+ "CHE",
1302
+ "CHILE",
1303
+ "CHUJANDAMA",
1304
+ "CHV",
1305
+ "CHgStJ",
1306
+ "CIA",
1307
+ "CIO",
1308
+ "CIR",
1309
+ "CISLODOKLADUVDOCUMENT",
1310
+ "CITIZEDCARD",
1311
+ "CITIZENSHIP/",
1312
+ "CITY",
1313
+ "CITYOK73102",
1314
+ "CIUDADANIA",
1315
+ "CIUDADANiA*MED",
1316
+ "CIVIL",
1317
+ "CIVILEIDENTIFICACION",
1318
+ "CIVILID",
1319
+ "CLASS",
1320
+ "CLASSA",
1321
+ "CLASSD",
1322
+ "CLIATH",
1323
+ "CMOHAMED",
1324
+ "CMU",
1325
+ "COBURG",
1326
+ "COF",
1327
+ "COF1IH",
1328
+ "COI:09",
1329
+ "COL",
1330
+ "COLONY",
1331
+ "COM",
1332
+ "COMMODORE",
1333
+ "CONDUCIR",
1334
+ "CONFEDERATION",
1335
+ "CONFEDERAZIONE",
1336
+ "CONFEDERAZIONESVIZZERA",
1337
+ "CONFEDERAZIUN",
1338
+ "CONFEDERAZIUNSVIZRA",
1339
+ "COUNTRY",
1340
+ "COV",
1341
+ "CRE",
1342
+ "CROATIA",
1343
+ "CSS",
1344
+ "CUI",
1345
+ "CZECHREPUBLIC",
1346
+ "Ca",
1347
+ "Caaaat",
1348
+ "Caducidad",
1349
+ "Calif",
1350
+ "Calif.",
1351
+ "California",
1352
+ "Can",
1353
+ "Canada",
1354
+ "Canao",
1355
+ "Card",
1356
+ "Carolina",
1357
+ "Carteira",
1358
+ "Catle",
1359
+ "Cause",
1360
+ "Cd",
1361
+ "Church",
1362
+ "Circle",
1363
+ "Citizen",
1364
+ "CitizenCard",
1365
+ "CiviI1D",
1366
+ "Civil",
1367
+ "Cliath",
1368
+ "Cls:5",
1369
+ "Cnico",
1370
+ "Cns",
1371
+ "Co",
1372
+ "Co.",
1373
+ "Colo",
1374
+ "Colo.",
1375
+ "Colony",
1376
+ "Colorado",
1377
+ "Columbia",
1378
+ "Conn",
1379
+ "Conn.",
1380
+ "Connecticut",
1381
+ "CoritnyeigCoonetotwoy",
1382
+ "Corp",
1383
+ "Corp.",
1384
+ "Cos",
1385
+ "Could",
1386
+ "Country",
1387
+ "Countryof",
1388
+ "Coz",
1389
+ "CuL",
1390
+ "Cui",
1391
+ "Cuttig",
1392
+ "Cuz",
1393
+ "C\u2019m",
1394
+ "D",
1395
+ "D'ALLEMAGNE",
1396
+ "D'AUTRICHE",
1397
+ "D'EXPIRATION",
1398
+ "D'IDENTITE",
1399
+ "D'UISAGE",
1400
+ "D-48",
1401
+ "D.",
1402
+ "D.0.B.19",
1403
+ "D.C",
1404
+ "D.C.",
1405
+ "D.C.(CUNDINAMARCA",
1406
+ "D.C.20500",
1407
+ "D.O.B",
1408
+ "D23145890",
1409
+ "D2H6862M2",
1410
+ "D3241407",
1411
+ "DA",
1412
+ "DAD",
1413
+ "DAIRY",
1414
+ "DALLEMAGNE",
1415
+ "DANIELA",
1416
+ "DAR",
1417
+ "DASCOEIRER",
1418
+ "DATA",
1419
+ "DATADLNASCITA",
1420
+ "DATAWYDANIA",
1421
+ "DATEDENAISSANCE",
1422
+ "DATEOEN",
1423
+ "DATEOF",
1424
+ "DATEOFBIRTH/",
1425
+ "DATEOFISSUE",
1426
+ "DATUM",
1427
+ "DATUMNAROZENI",
1428
+ "DATUMVYDANI",
1429
+ "DAUTRICHE",
1430
+ "DAVID",
1431
+ "DC00000",
1432
+ "DD123XWX",
1433
+ "DDENTITE",
1434
+ "DE",
1435
+ "DEBESIDENT",
1436
+ "DECHILE",
1437
+ "DECOLOMBIA",
1438
+ "DEEMISION",
1439
+ "DEIDENTIDAD",
1440
+ "DEIDENTIFICACIONY",
1441
+ "DELAPAZCALE",
1442
+ "DELCARMEN",
1443
+ "DELECUADOR",
1444
+ "DELINRANCE",
1445
+ "DELP",
1446
+ "DELPERU",
1447
+ "DELTITULA",
1448
+ "DEM",
1449
+ "DEN",
1450
+ "DENAISSANCE",
1451
+ "DENTIFICATION",
1452
+ "DENTITATSKARTE",
1453
+ "DENTITY",
1454
+ "DENTITYOARI",
1455
+ "DEO",
1456
+ "DER",
1457
+ "DES",
1458
+ "DEUTOPIA",
1459
+ "DEUTSCH",
1460
+ "DEUTSCHLAND",
1461
+ "DEndNONE",
1462
+ "DF",
1463
+ "DI",
1464
+ "DIA",
1465
+ "DIDENTITAPCARTADIDENTIIAD",
1466
+ "DIDENTITE",
1467
+ "DIRECCION",
1468
+ "DISTRICT",
1469
+ "DKA0221463",
1470
+ "DL",
1471
+ "DL#123456789",
1472
+ "DL1234562",
1473
+ "DLM",
1474
+ "DLNASCITA",
1475
+ "DNAMarkersJK42RG28",
1476
+ "DNN",
1477
+ "DNo",
1478
+ "DO",
1479
+ "DO/",
1480
+ "DOB",
1481
+ "DOB07/04/1970",
1482
+ "DOB26/08/1973",
1483
+ "DOB:23/03/1981",
1484
+ "DOCUMENT NUMBER",
1485
+ "DOCUMENTO",
1486
+ "DOCUMENTONACIONALDEIOENTIFICACION",
1487
+ "DODATE",
1488
+ "DOE",
1489
+ "DOI",
1490
+ "DOI09/12/2022",
1491
+ "DOM",
1492
+ "DOMINGO",
1493
+ "DOMINICANA",
1494
+ "DON'TLEAVEHOMEWITHOUTIT",
1495
+ "DONCR",
1496
+ "DONO",
1497
+ "DONOR",
1498
+ "DOR",
1499
+ "DOS",
1500
+ "DPl",
1501
+ "DRIVE",
1502
+ "DRIVER",
1503
+ "DRIVERLICENSE",
1504
+ "DRIVING",
1505
+ "DRIVINGLICENCE",
1506
+ "DRMERLKNSI",
1507
+ "DRTVERLICENSE",
1508
+ "DRZAVLJANSTVO/",
1509
+ "DSE",
1510
+ "DUBLIN",
1511
+ "DUODASTUS",
1512
+ "DUSAGE",
1513
+ "DVLA",
1514
+ "DVR",
1515
+ "DZ",
1516
+ "Dairy",
1517
+ "Daniyal",
1518
+ "Dare",
1519
+ "Das",
1520
+ "Date",
1521
+ "Date:18/01/2013",
1522
+ "Datedexpiration",
1523
+ "Dateof",
1524
+ "DateofBirth",
1525
+ "Dateofaxbiry",
1526
+ "Dato",
1527
+ "Datof",
1528
+ "Datr",
1529
+ "Datumrodena",
1530
+ "David",
1531
+ "De",
1532
+ "Dec",
1533
+ "Dec.",
1534
+ "December",
1535
+ "Del",
1536
+ "Del.",
1537
+ "Delaware",
1538
+ "Department",
1539
+ "Devi",
1540
+ "Dg",
1541
+ "Did",
1542
+ "Do",
1543
+ "DoB",
1544
+ "Documento",
1545
+ "Doe7",
1546
+ "Does",
1547
+ "Dof",
1548
+ "Dogum",
1549
+ "Doin",
1550
+ "Doin'",
1551
+ "Doin\u2019",
1552
+ "Dot",
1553
+ "Dotecnirthy",
1554
+ "Dr",
1555
+ "Dr.",
1556
+ "Driving",
1557
+ "DteofNrth",
1558
+ "Dtl",
1559
+ "Duadonsonco",
1560
+ "Dur",
1561
+ "E",
1562
+ "E(S",
1563
+ "E.G.",
1564
+ "E.g",
1565
+ "E.g.",
1566
+ "E1399534",
1567
+ "E2017",
1568
+ "E27",
1569
+ "EAR",
1570
+ "ECIMCN",
1571
+ "ECK",
1572
+ "ECS",
1573
+ "ECUATORIANA",
1574
+ "EDI",
1575
+ "EDO",
1576
+ "EET",
1577
+ "EGO",
1578
+ "EI",
1579
+ "EID",
1580
+ "EIDGENOSSENSCHAFT",
1581
+ "EIG",
1582
+ "EIREANNACH",
1583
+ "EIREIRELANDIRLANDE",
1584
+ "EIS",
1585
+ "EIT",
1586
+ "EKA",
1587
+ "ELA",
1588
+ "ELE",
1589
+ "ELECTORAL",
1590
+ "ELIZABETH",
1591
+ "ELLE1817283",
1592
+ "ELP",
1593
+ "EMSION",
1594
+ "EN",
1595
+ "ENDNONE",
1596
+ "ENERO",
1597
+ "ENG",
1598
+ "ENI",
1599
+ "ENN",
1600
+ "ENO",
1601
+ "ENS",
1602
+ "ENT",
1603
+ "EOF",
1604
+ "EPH",
1605
+ "EPHRAIM",
1606
+ "EPO",
1607
+ "EPT",
1608
+ "ER",
1609
+ "ER/",
1610
+ "ERA",
1611
+ "ERE",
1612
+ "ERG",
1613
+ "ERIKA",
1614
+ "ERO",
1615
+ "ERS",
1616
+ "ERU",
1617
+ "ERY",
1618
+ "ESPECIMEN",
1619
+ "ESS",
1620
+ "EST",
1621
+ "ESTADO",
1622
+ "ETD",
1623
+ "ETERNOFT",
1624
+ "ETH",
1625
+ "EUNDESREPUBLIKDEUTSCHLAND",
1626
+ "EWS",
1627
+ "EXE",
1628
+ "EXF",
1629
+ "EXHRACION",
1630
+ "EXI",
1631
+ "EXM",
1632
+ "EXO",
1633
+ "EXPIRES",
1634
+ "EXPIRY",
1635
+ "EXTRANIERO",
1636
+ "EYE",
1637
+ "EYEENN",
1638
+ "EYES",
1639
+ "Ecpiry",
1640
+ "Edit",
1641
+ "Elsa",
1642
+ "Emision",
1643
+ "Eorpach",
1644
+ "Erika",
1645
+ "Estabura",
1646
+ "Estado",
1647
+ "Este",
1648
+ "European",
1649
+ "Exe",
1650
+ "Expecico",
1651
+ "Expedicion",
1652
+ "Expeos",
1653
+ "Expiratio",
1654
+ "Expiration",
1655
+ "Expires",
1656
+ "Expiry",
1657
+ "EyesBRO",
1658
+ "F",
1659
+ "F.",
1660
+ "F//t",
1661
+ "F1",
1662
+ "FBDERALREPUBLICOFGERMANYREPUBLIQUEFEDERALED'ALLEMAGNE",
1663
+ "FECHA",
1664
+ "FECHADE",
1665
+ "FECHADENACMU",
1666
+ "FECHADEVENCIMENTO",
1667
+ "FEDERAL",
1668
+ "FEDERALE",
1669
+ "FEDERALED'ALLEMAGNE",
1670
+ "FEDERALREPUBLICOF",
1671
+ "FEDERALREPUBLICOFGERMANYREPUBLIQUE",
1672
+ "FEDERALREPUBLICOFGERMANYVREPUBUOUEFEDERALEDALLEMAGNE",
1673
+ "FEDERATIVA",
1674
+ "FEIDHMIDATE",
1675
+ "FEMENENG",
1676
+ "FEMENINO",
1677
+ "FERNANDAANTONIA",
1678
+ "FExpedicion23FEB2015",
1679
+ "FIF",
1680
+ "FILA",
1681
+ "FIR",
1682
+ "FIRMADELTITULAR",
1683
+ "FIRST",
1684
+ "FIZ",
1685
+ "FORM-7",
1686
+ "FRA",
1687
+ "FRANCAISE",
1688
+ "FREEMAN",
1689
+ "FROM",
1690
+ "FVencimiento:26",
1691
+ "Father",
1692
+ "FatherWane",
1693
+ "Feb",
1694
+ "Feb.",
1695
+ "February",
1696
+ "Fecha",
1697
+ "Feche",
1698
+ "Feng",
1699
+ "File",
1700
+ "Filter",
1701
+ "Fiorida",
1702
+ "Firma",
1703
+ "Fla",
1704
+ "Fla.",
1705
+ "Florida",
1706
+ "Forenames",
1707
+ "France",
1708
+ "Fuhrerausweis",
1709
+ "G",
1710
+ "G28",
1711
+ "G612",
1712
+ "GABLER",
1713
+ "GALLOWAY",
1714
+ "GAN",
1715
+ "GAR",
1716
+ "GARCIA",
1717
+ "GDCO00O01",
1718
+ "GEB.GABLER",
1719
+ "GEBURTSDATUM",
1720
+ "GEBURTSDATUM/",
1721
+ "GEN",
1722
+ "GENDER",
1723
+ "GENERAL",
1724
+ "GERMANY",
1725
+ "GERMANY7REPUBLIQUE",
1726
+ "GESCHLECHT/",
1727
+ "GHT",
1728
+ "GIBRALTAR",
1729
+ "GIE",
1730
+ "GIVEN",
1731
+ "GLASS",
1732
+ "GNE",
1733
+ "GOMEZ",
1734
+ "GON",
1735
+ "GOVERNMENT",
1736
+ "GOVERNMENTOFINDIA",
1737
+ "GOitig.bis/Date",
1738
+ "GROVE",
1739
+ "GT-06",
1740
+ "GT5",
1741
+ "GUATEMAL",
1742
+ "GUATEMALA",
1743
+ "GUATEMALA.CENTROAMERICA",
1744
+ "GUS",
1745
+ "GV",
1746
+ "GVEN",
1747
+ "GZROIO3OE",
1748
+ "Ga",
1749
+ "Ga.",
1750
+ "GallleMane",
1751
+ "Ganchf",
1752
+ "Gandhi",
1753
+ "Ganguly",
1754
+ "Geburtsdatum",
1755
+ "Geburtsname",
1756
+ "Geburtsoriace",
1757
+ "Geburtsort",
1758
+ "GeburtsortPiace",
1759
+ "Geburtstag",
1760
+ "Gen",
1761
+ "Gen.",
1762
+ "GendentaSountryok",
1763
+ "Gender",
1764
+ "GenderCountry",
1765
+ "Genders",
1766
+ "Gendeta",
1767
+ "Genter",
1768
+ "Georgia",
1769
+ "Geschlecht",
1770
+ "Given",
1771
+ "Givon",
1772
+ "Gobierno",
1773
+ "Goin",
1774
+ "Goin'",
1775
+ "Goin\u2019",
1776
+ "Gon",
1777
+ "Gopal",
1778
+ "Got",
1779
+ "Gouvernement",
1780
+ "Gov",
1781
+ "Gov.",
1782
+ "Govemmet",
1783
+ "Govermment",
1784
+ "Government",
1785
+ "Grant",
1786
+ "Guitig",
1787
+ "Gultig",
1788
+ "H",
1789
+ "HAMBURG",
1790
+ "HAMZA",
1791
+ "HAR",
1792
+ "HEDIDSNDTEYIOONTITYCAAO",
1793
+ "HEIGHT",
1794
+ "HER",
1795
+ "HETH",
1796
+ "HND",
1797
+ "HOA",
1798
+ "HOD",
1799
+ "HOFFMANN",
1800
+ "HOLDER'SSIGNATURE",
1801
+ "HON",
1802
+ "HONDURAS",
1803
+ "HRH",
1804
+ "HRR",
1805
+ "HRT",
1806
+ "HRV",
1807
+ "HRVATSKA",
1808
+ "HT/",
1809
+ "HU3",
1810
+ "HUA",
1811
+ "HULLHU3",
1812
+ "Habib",
1813
+ "Had",
1814
+ "Hae",
1815
+ "Haer",
1816
+ "Haider",
1817
+ "Hamza",
1818
+ "Harris",
1819
+ "Has",
1820
+ "HatherNome",
1821
+ "Have",
1822
+ "Havin",
1823
+ "Havin'",
1824
+ "Havin\u2019",
1825
+ "He",
1826
+ "He's",
1827
+ "Help",
1828
+ "Henderson",
1829
+ "He\u2019s",
1830
+ "Hogajnte",
1831
+ "Hoider",
1832
+ "Holder",
1833
+ "Holders",
1834
+ "Hotder",
1835
+ "How",
1836
+ "How's",
1837
+ "How\u2019s",
1838
+ "Hsi",
1839
+ "I",
1840
+ "I.E.",
1841
+ "I.V.M.11ABS.2",
1842
+ "I.e",
1843
+ "I.e.",
1844
+ "I0S101999Q",
1845
+ "I1D",
1846
+ "IA/",
1847
+ "IAD",
1848
+ "IAR",
1849
+ "ICA",
1850
+ "ICE",
1851
+ "ICH",
1852
+ "ICK",
1853
+ "ICT",
1854
+ "IDAUTOO0OO9993",
1855
+ "IDCard",
1856
+ "IDENTIDAD",
1857
+ "IDENTIDADE",
1858
+ "IDENTIFICACION",
1859
+ "IDENTIFICACIONYCEDULACION",
1860
+ "IDENTIFICATION",
1861
+ "IDENTIFICATTOXCARD",
1862
+ "IDENTITATSKARTE",
1863
+ "IDENTITEITSKAART",
1864
+ "IDENTITY",
1865
+ "IDENTITYCARD",
1866
+ "IDENTITYCARDACARTED'IDENTITE",
1867
+ "IDENTITYCARDCARTEDIDENTITE",
1868
+ "IDENTITYCARDICARTED'IDENTITE",
1869
+ "IDENTITYCARDNUMBER",
1870
+ "IDENTITYICARD",
1871
+ "IDENTTTEITSEAART",
1872
+ "IDNO:3015147785899",
1873
+ "IDO",
1874
+ "IEN",
1875
+ "IET",
1876
+ "IEU",
1877
+ "IFF",
1878
+ "IHHRT",
1879
+ "IJK",
1880
+ "IKA",
1881
+ "IKU",
1882
+ "ILA",
1883
+ "ILE",
1884
+ "ILL",
1885
+ "IMAGEBROKER",
1886
+ "IME",
1887
+ "IMEINAME/",
1888
+ "INA",
1889
+ "INC",
1890
+ "IND",
1891
+ "INDIANUNION",
1892
+ "INE",
1893
+ "ING",
1894
+ "INI",
1895
+ "INO",
1896
+ "ION",
1897
+ "IP",
1898
+ "IP/",
1899
+ "IPOZZC900160",
1900
+ "IRARRAZABAL",
1901
+ "IRH",
1902
+ "IRI",
1903
+ "IRISH04BEA",
1904
+ "IRL",
1905
+ "IRY",
1906
+ "ISE",
1907
+ "ISKAZNICE/",
1908
+ "ISLAMIC",
1909
+ "ISLAMICREPUBLICOEPAKISTAN",
1910
+ "ISLAMIG",
1911
+ "ISS",
1912
+ "IST",
1913
+ "IT6",
1914
+ "ITA",
1915
+ "ITE",
1916
+ "ITI",
1917
+ "ITO",
1918
+ "ITY",
1919
+ "IUM",
1920
+ "IUN",
1921
+ "IVA",
1922
+ "IVE",
1923
+ "Ia",
1924
+ "Ia.",
1925
+ "Ib",
1926
+ "Id",
1927
+ "Id.",
1928
+ "Idaho",
1929
+ "Identidad",
1930
+ "Identidade",
1931
+ "Identification",
1932
+ "Identity",
1933
+ "Ig-",
1934
+ "Ill",
1935
+ "Ill.",
1936
+ "Illinois",
1937
+ "Image",
1938
+ "Ime",
1939
+ "Inc",
1940
+ "Inc.",
1941
+ "Ind",
1942
+ "Ind.",
1943
+ "India",
1944
+ "Indiana",
1945
+ "Inhaberes",
1946
+ "Inhaberin",
1947
+ "Inhabers",
1948
+ "Iowa",
1949
+ "Is",
1950
+ "Ismail",
1951
+ "Issue",
1952
+ "Issued",
1953
+ "Issued:10/01/2017",
1954
+ "It",
1955
+ "It's",
1956
+ "Italy",
1957
+ "It\u2019s",
1958
+ "J",
1959
+ "JAMES",
1960
+ "JAN",
1961
+ "JBK-8448237",
1962
+ "JD",
1963
+ "JHON",
1964
+ "JLY",
1965
+ "JMENO",
1966
+ "JOECRE",
1967
+ "JOHN",
1968
+ "JOSEPH",
1969
+ "JOSHUA",
1970
+ "JUN",
1971
+ "JUN26",
1972
+ "JUNTA",
1973
+ "JURGEN",
1974
+ "JUSTICA",
1975
+ "JVRNAME",
1976
+ "Ja[e",
1977
+ "James",
1978
+ "Jan",
1979
+ "Jan.",
1980
+ "January",
1981
+ "JbbJle",
1982
+ "Jean",
1983
+ "Jignature",
1984
+ "Jle",
1985
+ "John",
1986
+ "Jones",
1987
+ "Jr",
1988
+ "Jr.",
1989
+ "Jul",
1990
+ "Jul.",
1991
+ "July",
1992
+ "Jun",
1993
+ "Jun.",
1994
+ "June",
1995
+ "June,1970",
1996
+ "K",
1997
+ "K.",
1998
+ "K.AUS",
1999
+ "KA52",
2000
+ "KA5220220016216",
2001
+ "KA560064",
2002
+ "KAI",
2003
+ "KAMEN",
2004
+ "KANSAS",
2005
+ "KAR",
2006
+ "KARNATAKA",
2007
+ "KARTEGOLTIG",
2008
+ "KARTHIKSEKAR",
2009
+ "KARTI",
2010
+ "KAZ",
2011
+ "KEID.PY",
2012
+ "KER",
2013
+ "KIE",
2014
+ "KINGDOM",
2015
+ "KMOTWGTEYE",
2016
+ "KONINKRIJK",
2017
+ "KORTID",
2018
+ "KOWALSKIJAN",
2019
+ "KS",
2020
+ "KU5",
2021
+ "KUS",
2022
+ "KUWAIT",
2023
+ "KWT",
2024
+ "Kamala",
2025
+ "Kan",
2026
+ "Kan.",
2027
+ "Kans",
2028
+ "Kans.",
2029
+ "Kansas",
2030
+ "Karnataka,560064",
2031
+ "Karnataka.560064",
2032
+ "Kayit",
2033
+ "Kentucky",
2034
+ "Khan",
2035
+ "Kind",
2036
+ "Kisi",
2037
+ "Kumar",
2038
+ "Ky",
2039
+ "Ky.",
2040
+ "L",
2041
+ "L01X00T47",
2042
+ "L712Z68JL",
2043
+ "LAR",
2044
+ "LAS",
2045
+ "LATIKA",
2046
+ "LATIKAYASMIN",
2047
+ "LAURA",
2048
+ "LAUREN",
2049
+ "LDARASJAUTHORITYIAUTORITE",
2050
+ "LDE",
2051
+ "LDI",
2052
+ "LEE",
2053
+ "LELLERBY",
2054
+ "LEM",
2055
+ "LER",
2056
+ "LGO",
2057
+ "LIC",
2058
+ "LICENCE",
2059
+ "LICENCEONd",
2060
+ "LICENCIA",
2061
+ "LICENSE",
2062
+ "LICENSEBIRTH",
2063
+ "LID",
2064
+ "LIK",
2065
+ "LIN",
2066
+ "LIS",
2067
+ "LLE",
2068
+ "LLi",
2069
+ "LMV",
2070
+ "LPA",
2071
+ "LRCENS",
2072
+ "LSIKWT",
2073
+ "LTY",
2074
+ "LUBECK",
2075
+ "LUGAR",
2076
+ "LUGARDENACMENTO",
2077
+ "La",
2078
+ "La.",
2079
+ "Lakh",
2080
+ "Layer",
2081
+ "Let",
2082
+ "Let's",
2083
+ "Let\u2019s",
2084
+ "Licemse",
2085
+ "Licence",
2086
+ "Licencing",
2087
+ "Licenza",
2088
+ "Licu",
2089
+ "Lien",
2090
+ "Lienhard*ysN",
2091
+ "Lieu",
2092
+ "Lieude",
2093
+ "Limitaciones",
2094
+ "Lin",
2095
+ "Liselotte",
2096
+ "Lleu",
2097
+ "Local",
2098
+ "London",
2099
+ "Louisiana",
2100
+ "Lovin",
2101
+ "Lovin'",
2102
+ "Lovin\u2019",
2103
+ "Low",
2104
+ "Ltd",
2105
+ "Ltd.",
2106
+ "Lugar",
2107
+ "M",
2108
+ "M-7",
2109
+ "M.DLM",
2110
+ "M2",
2111
+ "MA1",
2112
+ "MAA",
2113
+ "MADISON",
2114
+ "MAG",
2115
+ "MAHALLi",
2116
+ "MAI",
2117
+ "MAL",
2118
+ "MALE",
2119
+ "MAN",
2120
+ "MAR",
2121
+ "MARIA",
2122
+ "MARIANNEMARTHA",
2123
+ "MARIE",
2124
+ "MARIT6",
2125
+ "MARKUS",
2126
+ "MARQUEZ",
2127
+ "MARTIN",
2128
+ "MARTINA",
2129
+ "MARTINAMMRIA",
2130
+ "MARTINEZ",
2131
+ "MAS",
2132
+ "MATHER",
2133
+ "MATTHEWS",
2134
+ "MAY",
2135
+ "MAY2005",
2136
+ "MAY7MAI",
2137
+ "MAYO",
2138
+ "MB",
2139
+ "MCN",
2140
+ "MCWOG",
2141
+ "ME/",
2142
+ "MEA",
2143
+ "MECLiSi",
2144
+ "MED",
2145
+ "MEN",
2146
+ "MEOOINDTONTRTCO",
2147
+ "MER",
2148
+ "MERCOSUR",
2149
+ "MES",
2150
+ "MEZ",
2151
+ "MFO",
2152
+ "MGABLER",
2153
+ "MHR",
2154
+ "MIC",
2155
+ "MICHELLE",
2156
+ "MIEJSCE",
2157
+ "MIG",
2158
+ "MILL",
2159
+ "MIN",
2160
+ "MINDAUGUS",
2161
+ "MINISTERIO",
2162
+ "MINNEAPOLIS",
2163
+ "MINNeSOTA",
2164
+ "MISTO",
2165
+ "MIT",
2166
+ "MITI",
2167
+ "MM",
2168
+ "MN",
2169
+ "MNNONE",
2170
+ "MOHAMEDKOYACHRIKU",
2171
+ "MONTEVIDEO",
2172
+ "MOTOR",
2173
+ "MOTORIST",
2174
+ "MPL",
2175
+ "MS2",
2176
+ "MST.WARSZAWY",
2177
+ "MUESTRA",
2178
+ "MUSTERFRAU",
2179
+ "MUSTERFRAU<<ISOLDE",
2180
+ "MUSTERMANN",
2181
+ "MUSTERORT",
2182
+ "MZA",
2183
+ "Ma'am",
2184
+ "MaM",
2185
+ "Mae",
2186
+ "Mainland",
2187
+ "Maino",
2188
+ "Male",
2189
+ "Maltir",
2190
+ "Mane",
2191
+ "Mar",
2192
+ "Mar.",
2193
+ "March",
2194
+ "Mass",
2195
+ "Mass.",
2196
+ "MassNae",
2197
+ "Massachusetts",
2198
+ "Mather",
2199
+ "Max",
2200
+ "May",
2201
+ "Ma\u2019am",
2202
+ "Md",
2203
+ "Md.",
2204
+ "Mehboob",
2205
+ "Mells",
2206
+ "Messrs",
2207
+ "Messrs.",
2208
+ "MiF",
2209
+ "Mich",
2210
+ "Mich.",
2211
+ "Michigan",
2212
+ "Might",
2213
+ "Mill",
2214
+ "Ministerio",
2215
+ "Minn",
2216
+ "Minn.",
2217
+ "Minnesota",
2218
+ "Miss",
2219
+ "Miss.",
2220
+ "Mississippi",
2221
+ "Mo",
2222
+ "Mo.",
2223
+ "Mohamed",
2224
+ "Mohammed",
2225
+ "Monika",
2226
+ "Mont",
2227
+ "Mont.",
2228
+ "Mother",
2229
+ "Mount",
2230
+ "Moutinho",
2231
+ "Mr",
2232
+ "Mr.",
2233
+ "Mrs",
2234
+ "Mrs.",
2235
+ "Ms",
2236
+ "Ms.",
2237
+ "Mt",
2238
+ "Mt.",
2239
+ "Mubeen",
2240
+ "Muhammad",
2241
+ "Muneeb",
2242
+ "Must",
2243
+ "Mustermann",
2244
+ "Muzzamil",
2245
+ "My",
2246
+ "N",
2247
+ "N\"de",
2248
+ "N'de",
2249
+ "N.C.",
2250
+ "N.D.",
2251
+ "N.H.",
2252
+ "N.J.",
2253
+ "N.M.",
2254
+ "N.Y.",
2255
+ "N26",
2256
+ "NACIMENTO",
2257
+ "NACIMIENTO",
2258
+ "NACIONAL",
2259
+ "NACIONALDEIDENTIDAD",
2260
+ "NACIONALDELAS",
2261
+ "NACIONALIDAD",
2262
+ "NAISSANCE",
2263
+ "NAISUNTACHTNATIONALITYJNATIONALITE",
2264
+ "NAL",
2265
+ "NAME",
2266
+ "NAME(S",
2267
+ "NAMEN",
2268
+ "NAMENOMCOGNOMENUM",
2269
+ "NAMENOMCOGNOMENUM.SURNAME",
2270
+ "NAMENOMLCOGNOMENUM",
2271
+ "NAMES",
2272
+ "NAROZENI",
2273
+ "NAS",
2274
+ "NASCDATE",
2275
+ "NASCHIENTSCHA",
2276
+ "NASCITA",
2277
+ "NATIONALIDCARD",
2278
+ "NATIONALIDENTIFICATION",
2279
+ "NATIONALITY",
2280
+ "NCE",
2281
+ "NCONSED",
2282
+ "NCR",
2283
+ "NCarteICaraN",
2284
+ "NDE",
2285
+ "NDNONE",
2286
+ "NDS",
2287
+ "NE",
2288
+ "NEAR",
2289
+ "NEDERLANDEN",
2290
+ "NEDERLANDSE",
2291
+ "NELAMANGALA",
2292
+ "NEOLLTY",
2293
+ "NER",
2294
+ "NET",
2295
+ "NEW",
2296
+ "NEY",
2297
+ "NEZ",
2298
+ "NGO",
2299
+ "NIA",
2300
+ "NICK",
2301
+ "NID",
2302
+ "NIDNo",
2303
+ "NIEMANN",
2304
+ "NIS",
2305
+ "NL",
2306
+ "NLDI",
2307
+ "NO",
2308
+ "NO.99800398",
2309
+ "NO4411963345166",
2310
+ "NOM",
2311
+ "NOMBRES",
2312
+ "NOMEINAME",
2313
+ "NONE",
2314
+ "NOR",
2315
+ "NOREG",
2316
+ "NORGA",
2317
+ "NORGE",
2318
+ "NOT",
2319
+ "NOV",
2320
+ "NPCC",
2321
+ "NRegistre",
2322
+ "NSE",
2323
+ "NSI",
2324
+ "NTA",
2325
+ "NTE",
2326
+ "NTO",
2327
+ "NUIP",
2328
+ "NUMBER/",
2329
+ "NUMBERINUMERO",
2330
+ "NUMER",
2331
+ "NUMERDOWODU",
2332
+ "NUMERO",
2333
+ "Naciments",
2334
+ "Nacimiento",
2335
+ "NacimintoOae",
2336
+ "Nacionalidad",
2337
+ "Nacionatidad",
2338
+ "Nacionatidade",
2339
+ "Nadeem",
2340
+ "Nae",
2341
+ "Namc",
2342
+ "Name",
2343
+ "NameRahul",
2344
+ "Nanpe",
2345
+ "Nanre",
2346
+ "Naresh",
2347
+ "Nascimenta",
2348
+ "National",
2349
+ "NationalD",
2350
+ "NationalIDCard",
2351
+ "Nationalidentity",
2352
+ "Nationalite",
2353
+ "Nationality",
2354
+ "Nationality/",
2355
+ "Nationalte",
2356
+ "Nationalty",
2357
+ "Nationat",
2358
+ "NationattuNabionao",
2359
+ "Natleem",
2360
+ "Natlona",
2361
+ "Natlonalile",
2362
+ "Natonai",
2363
+ "Ncl",
2364
+ "NeIdentidade",
2365
+ "Near",
2366
+ "Neb",
2367
+ "Neb.",
2368
+ "Nebr",
2369
+ "Nebr.",
2370
+ "Nebraska",
2371
+ "Nederlandse",
2372
+ "Need",
2373
+ "Net",
2374
+ "Neunem",
2375
+ "Nev",
2376
+ "Nev.",
2377
+ "Nevada",
2378
+ "New",
2379
+ "New Hampshire",
2380
+ "New Jersey",
2381
+ "New Mexico",
2382
+ "New York",
2383
+ "Nguyen",
2384
+ "Nilesh",
2385
+ "No",
2386
+ "Nom",
2387
+ "Nombre",
2388
+ "NombreNace",
2389
+ "Nombres",
2390
+ "Nome",
2391
+ "Nor",
2392
+ "Norsk",
2393
+ "North",
2394
+ "North Carolina",
2395
+ "North Dakota",
2396
+ "Norweglan",
2397
+ "Not",
2398
+ "Nothin",
2399
+ "Nothin'",
2400
+ "Nothin\u2019",
2401
+ "Nov",
2402
+ "Nov-30",
2403
+ "Nov.",
2404
+ "November",
2405
+ "Nowak",
2406
+ "Nro.de",
2407
+ "NsciniddNtt",
2408
+ "Ntt",
2409
+ "Number",
2410
+ "Numero",
2411
+ "NummerNumberNumero",
2412
+ "Nummer|",
2413
+ "Nummer|Number|Numero",
2414
+ "Nuthin",
2415
+ "Nuthin'",
2416
+ "Nuthin\u2019",
2417
+ "Nuurber",
2418
+ "O",
2419
+ "O'SULLIVAN",
2420
+ "O'clock",
2421
+ "O.B",
2422
+ "O.C",
2423
+ "O.O",
2424
+ "O.o",
2425
+ "O01",
2426
+ "OB0181985",
2427
+ "OBCANSKY",
2428
+ "OBYWATELSTWO",
2429
+ "OCUPCIONESTUDIANTE",
2430
+ "ODU",
2431
+ "OE",
2432
+ "OEN",
2433
+ "OENICUEID",
2434
+ "OF",
2435
+ "OFBIRH",
2436
+ "OFCOLUMBIA",
2437
+ "OFEXPIRYI",
2438
+ "OFEXPIRYIDATE",
2439
+ "OFINDIA",
2440
+ "OFISSUE",
2441
+ "OFISSUEIDATE",
2442
+ "OFT",
2443
+ "OFTHENETHERLANDS",
2444
+ "OHN",
2445
+ "OIMAGEBROKER",
2446
+ "OKLAHOMA",
2447
+ "OL/",
2448
+ "OM",
2449
+ "OMA",
2450
+ "OME",
2451
+ "OMS",
2452
+ "ONATCATE",
2453
+ "ONCARD",
2454
+ "ONE",
2455
+ "ONETD",
2456
+ "ONO",
2457
+ "ONS",
2458
+ "ONY",
2459
+ "ONd",
2460
+ "OOU",
2461
+ "OPA",
2462
+ "OR,97314",
2463
+ "ORE",
2464
+ "OREASSEXISEXE",
2465
+ "OREGON",
2466
+ "ORENOM(SNOMEPRENUM(SFIRSTNAME(S",
2467
+ "ORGAN",
2468
+ "ORI",
2469
+ "ORIENTALDELURUGUAY",
2470
+ "ORK",
2471
+ "ORT",
2472
+ "OS1",
2473
+ "OSOBISTEGO",
2474
+ "OSOBNAISKAZNICA",
2475
+ "OST",
2476
+ "OSTERREICH",
2477
+ "OSY",
2478
+ "OT",
2479
+ "OTA",
2480
+ "OTI",
2481
+ "OTO",
2482
+ "OTOSTOC",
2483
+ "OUE",
2484
+ "OUW",
2485
+ "OVE",
2486
+ "OWLDOREPUBLICA",
2487
+ "OWN",
2488
+ "OZM",
2489
+ "O_O",
2490
+ "O_o",
2491
+ "Oae",
2492
+ "Observatory",
2493
+ "Oct",
2494
+ "Oct.",
2495
+ "October",
2496
+ "Of",
2497
+ "Oifig",
2498
+ "Okla",
2499
+ "Okla.",
2500
+ "Oklahoma",
2501
+ "Ol",
2502
+ "Ol'",
2503
+ "Ol\u2019",
2504
+ "Ore",
2505
+ "Ore.",
2506
+ "Oregon",
2507
+ "Ought",
2508
+ "Overl",
2509
+ "O\u2019clock",
2510
+ "P",
2511
+ "PAGE",
2512
+ "PAGE27",
2513
+ "PAIS",
2514
+ "PAK!STAN",
2515
+ "PAKISTAN",
2516
+ "PANISTAN",
2517
+ "PARA",
2518
+ "PARIS",
2519
+ "PASS",
2520
+ "PASSPORI",
2521
+ "PASSPORTICA.COM",
2522
+ "PASSPORTICAINC",
2523
+ "PASTPASSPORTIPASSEPORT",
2524
+ "PAUL",
2525
+ "PAYS",
2526
+ "PAsSProof",
2527
+ "PCC",
2528
+ "PECHA",
2529
+ "PER",
2530
+ "PERMANENT",
2531
+ "PERMIT",
2532
+ "PERSONALAUSWEIS",
2533
+ "PERSONALAUSWEISREPUBLIKOSTERREICH",
2534
+ "PERSONALAUSWERS",
2535
+ "PERSONALIEN",
2536
+ "PERSONAS",
2537
+ "PESELPERSONALNUMBER",
2538
+ "PETER",
2539
+ "PHOTO",
2540
+ "PIA",
2541
+ "PICHINCHA",
2542
+ "PIR",
2543
+ "PIS",
2544
+ "PLACE",
2545
+ "PLACECS",
2546
+ "PLACEOF",
2547
+ "PLATNOST",
2548
+ "PLE",
2549
+ "PODPISDRZITELE",
2550
+ "POHLAVIYSEX",
2551
+ "POLSKIE",
2552
+ "POS1",
2553
+ "POTPIS",
2554
+ "PRAHA",
2555
+ "PRENUM(ST",
2556
+ "PREZIME",
2557
+ "PREZYDENT",
2558
+ "PRIJMENI",
2559
+ "PRUKAZ",
2560
+ "Pa",
2561
+ "Pa.",
2562
+ "Pakistan",
2563
+ "Palistan",
2564
+ "ParentsIndia",
2565
+ "Pennsylvania",
2566
+ "Peonle",
2567
+ "People",
2568
+ "Permis",
2569
+ "Permiss",
2570
+ "Peter",
2571
+ "Ph",
2572
+ "Ph.D.",
2573
+ "Philippe",
2574
+ "Phlle",
2575
+ "Ping",
2576
+ "Pitntan",
2577
+ "Place",
2578
+ "Plastificade",
2579
+ "Poco",
2580
+ "Poder",
2581
+ "Pond",
2582
+ "Poople",
2583
+ "Popular",
2584
+ "Potpis",
2585
+ "Pranotnbres",
2586
+ "Prbncens",
2587
+ "Prenom(s",
2588
+ "Prenoms",
2589
+ "President",
2590
+ "PrezimerBurnom",
2591
+ "Primer",
2592
+ "Print",
2593
+ "Pro",
2594
+ "Prof",
2595
+ "Prof.",
2596
+ "Pronoms",
2597
+ "Proof",
2598
+ "Prorarob",
2599
+ "Q",
2600
+ "QUE",
2601
+ "QUEVEDO",
2602
+ "QUITO",
2603
+ "Qate",
2604
+ "Qlveo",
2605
+ "R",
2606
+ "R56",
2607
+ "RAC",
2608
+ "RADAR",
2609
+ "RAFNER",
2610
+ "RAHMAN",
2611
+ "RAK",
2612
+ "RAL",
2613
+ "RAN",
2614
+ "RAS",
2615
+ "RAU",
2616
+ "RAss",
2617
+ "RBY",
2618
+ "RCA",
2619
+ "RD",
2620
+ "RE/",
2621
+ "RECISTRO",
2622
+ "REG",
2623
+ "REGISTRO",
2624
+ "REMARKS",
2625
+ "REN",
2626
+ "REPUBIIQUE",
2627
+ "REPUBLIC",
2628
+ "REPUBLICA",
2629
+ "REPUBLICADECHILE",
2630
+ "REPUBLICADELECUADOR",
2631
+ "REPUBLIK",
2632
+ "REPUBLIKA",
2633
+ "REPUBLIOUE",
2634
+ "REPUBLIQUE",
2635
+ "REPUBLIQUEFEDERALE",
2636
+ "REPUBUIC",
2637
+ "REPURHIQUE",
2638
+ "RER",
2639
+ "RES",
2640
+ "RESIDENCE",
2641
+ "RESIDENT",
2642
+ "RESTREPO",
2643
+ "RESTRICTION",
2644
+ "RGA",
2645
+ "RGE",
2646
+ "RH",
2647
+ "RIA",
2648
+ "RICANY",
2649
+ "RIE",
2650
+ "RIO",
2651
+ "RIS",
2652
+ "RKS",
2653
+ "RMA",
2654
+ "RNONE",
2655
+ "RODENIA/",
2656
+ "ROM",
2657
+ "ROMANA",
2658
+ "ROMANARAHMAN",
2659
+ "RON",
2660
+ "ROOT",
2661
+ "ROSENBERG",
2662
+ "ROYAUME",
2663
+ "RP",
2664
+ "RSAMUND",
2665
+ "RST",
2666
+ "RTA",
2667
+ "RTE",
2668
+ "RTH",
2669
+ "RTI",
2670
+ "RUATECUNTLA",
2671
+ "RUMANA",
2672
+ "RUN",
2673
+ "RYI",
2674
+ "Rafay",
2675
+ "Rafio",
2676
+ "Rajiv",
2677
+ "Rajput",
2678
+ "Regular",
2679
+ "Rep",
2680
+ "Rep.",
2681
+ "Republic",
2682
+ "Republica",
2683
+ "Restrictions",
2684
+ "Restrictionsl",
2685
+ "Rev",
2686
+ "Rev.",
2687
+ "RiN",
2688
+ "RiskLow",
2689
+ "Robellia",
2690
+ "Rre",
2691
+ "Rs",
2692
+ "Rua",
2693
+ "Rudolf",
2694
+ "Rule",
2695
+ "Rural",
2696
+ "S",
2697
+ "S.2",
2698
+ "S.C.",
2699
+ "S0004156",
2700
+ "S14",
2701
+ "SALEM",
2702
+ "SAMESORAEIHOA",
2703
+ "SAMPL",
2704
+ "SAMPLE",
2705
+ "SAMPLECARD",
2706
+ "SANTO",
2707
+ "SAS",
2708
+ "SC",
2709
+ "SCE",
2710
+ "SCH",
2711
+ "SCHWEIZERISCHE",
2712
+ "SCHWEIZERISCHEEIDGENOSSENSCHAFT",
2713
+ "SCI",
2714
+ "SCONSIN",
2715
+ "SDOA1234567890112670319180",
2716
+ "SED",
2717
+ "SEE",
2718
+ "SEKAR",
2719
+ "SEP",
2720
+ "SEPT",
2721
+ "SEPT2006.BOGOTAD.C",
2722
+ "SERALT",
2723
+ "SERVICIO",
2724
+ "SERVIGESCARD",
2725
+ "SEX",
2726
+ "SEXI",
2727
+ "SEXO",
2728
+ "SEXOFANGREBESTADOCMLSOLTERO",
2729
+ "SHAHRIAR",
2730
+ "SHEBOYGAN",
2731
+ "SHQIPERISE",
2732
+ "SIGNATURE/",
2733
+ "SIL",
2734
+ "SILVIA",
2735
+ "SIMMONS89136AK9TT",
2736
+ "SIN",
2737
+ "SINUISIGNATUREISIGNATURE",
2738
+ "SK",
2739
+ "SKA",
2740
+ "SKY",
2741
+ "SLAMIC",
2742
+ "SLIMANI",
2743
+ "SLOINNETSURNAMEINOM",
2744
+ "SOLTERO",
2745
+ "SON",
2746
+ "SPECI2021",
2747
+ "SPECIMEN",
2748
+ "SPECMEN",
2749
+ "SPOL/",
2750
+ "SR",
2751
+ "SRTTIO",
2752
+ "SSA",
2753
+ "SSD",
2754
+ "SSE",
2755
+ "SST",
2756
+ "SSTENBYEN",
2757
+ "ST",
2758
+ "STAATSANGEHORIGKEIT",
2759
+ "STAESOFAHRCA",
2760
+ "STATE",
2761
+ "STATES",
2762
+ "STATNIOBCANSTVI",
2763
+ "STE",
2764
+ "STEVEN",
2765
+ "STEWART",
2766
+ "STO",
2767
+ "STREET",
2768
+ "STS",
2769
+ "STUT",
2770
+ "SUASCRAPUWLROFPAKISTAN",
2771
+ "SUE",
2772
+ "SUISSE",
2773
+ "SUR",
2774
+ "SURNAME",
2775
+ "SURNAME/",
2776
+ "SURNAMES",
2777
+ "SURNAVE",
2778
+ "SVIZRA",
2779
+ "SVIZZERA",
2780
+ "SWISS",
2781
+ "Salvador",
2782
+ "Sample",
2783
+ "Sarkar",
2784
+ "Schoeffel",
2785
+ "Segundo",
2786
+ "SeinSampl",
2787
+ "Select",
2788
+ "Sen",
2789
+ "Sen.",
2790
+ "Sep",
2791
+ "Sep.",
2792
+ "Sept",
2793
+ "Sept.",
2794
+ "September",
2795
+ "Ser",
2796
+ "Sex",
2797
+ "Sex/",
2798
+ "SexFHgt:5",
2799
+ "SexM",
2800
+ "Sexe",
2801
+ "Sexo",
2802
+ "Sfs",
2803
+ "Sha",
2804
+ "Shafgat",
2805
+ "Shahiain",
2806
+ "Shahzain",
2807
+ "She",
2808
+ "She's",
2809
+ "Shefkete",
2810
+ "Shehuain",
2811
+ "She\u2019s",
2812
+ "Shgiptare",
2813
+ "Shn",
2814
+ "Should",
2815
+ "Shufti",
2816
+ "Sign",
2817
+ "Signature",
2818
+ "Singh",
2819
+ "Sionature",
2820
+ "Slo",
2821
+ "Smooth",
2822
+ "So9",
2823
+ "Sobrenome",
2824
+ "Sojli",
2825
+ "Somethin",
2826
+ "Somethin'",
2827
+ "Somethin\u2019",
2828
+ "Sonia",
2829
+ "South",
2830
+ "South Carolina",
2831
+ "Soyad",
2832
+ "Specimen",
2833
+ "Spol",
2834
+ "Sred",
2835
+ "Srichar",
2836
+ "St",
2837
+ "St.",
2838
+ "StJ",
2839
+ "StaatsangehBrigkeit",
2840
+ "StaatsangehOrigkei",
2841
+ "StaatsangehOrigkeit",
2842
+ "StaatsangehOrigkoiuNationality/",
2843
+ "Staatsangehorigkeit",
2844
+ "Staatsangehorigkeit?Nationality",
2845
+ "State",
2846
+ "States",
2847
+ "Stay",
2848
+ "Stewart",
2849
+ "Surname",
2850
+ "Surnamo",
2851
+ "Surrame",
2852
+ "Sved",
2853
+ "Syed",
2854
+ "T",
2855
+ "T09",
2856
+ "T2",
2857
+ "T22000129",
2858
+ "T22001341",
2859
+ "T36",
2860
+ "T47",
2861
+ "T52400179",
2862
+ "T602301F1",
2863
+ "TAD",
2864
+ "TAMANI",
2865
+ "TAN",
2866
+ "TANITIM",
2867
+ "TAR",
2868
+ "TCO",
2869
+ "TE",
2870
+ "TED",
2871
+ "TEDERALREPUBLICOFGERMANYIREPUBLIQUE",
2872
+ "TEGUCIGALPA",
2873
+ "TEL",
2874
+ "TER",
2875
+ "TERCERA",
2876
+ "TERMIN",
2877
+ "TES",
2878
+ "TEST",
2879
+ "TEST**NOMBRES",
2880
+ "TESTAPELLIDO",
2881
+ "TESTAPELLIDOI",
2882
+ "TEvoes",
2883
+ "TH/",
2884
+ "THA",
2885
+ "THE",
2886
+ "THENETHERLANDS",
2887
+ "THOMAS",
2888
+ "THR",
2889
+ "THROUGHOUTINDIA",
2890
+ "TIA",
2891
+ "TID",
2892
+ "TIG",
2893
+ "TIM",
2894
+ "TIN",
2895
+ "TIO",
2896
+ "TIRYCOUNTRYPAYS",
2897
+ "TIT",
2898
+ "TLA",
2899
+ "TLIT6",
2900
+ "TOC",
2901
+ "TON",
2902
+ "TOPEKA",
2903
+ "TOR",
2904
+ "TOS",
2905
+ "TOWN",
2906
+ "TRA",
2907
+ "TRANSPORTDEPARTMENT",
2908
+ "TRO",
2909
+ "TRY",
2910
+ "TT",
2911
+ "TTE",
2912
+ "TUM",
2913
+ "TUR",
2914
+ "TUS",
2915
+ "TUSAINM(NEACHA)IFORENAVE(SIPRENOMS",
2916
+ "TUT",
2917
+ "TVI",
2918
+ "TWO",
2919
+ "Tarihi",
2920
+ "Tarjeta",
2921
+ "Tenn",
2922
+ "Tenn.",
2923
+ "Tennessee",
2924
+ "Terrorist",
2925
+ "That",
2926
+ "That's",
2927
+ "That\u2019s",
2928
+ "Thelede",
2929
+ "TheneeSamolonesd",
2930
+ "There",
2931
+ "There's",
2932
+ "There\u2019s",
2933
+ "These",
2934
+ "They",
2935
+ "Thi",
2936
+ "Thierry",
2937
+ "This",
2938
+ "This's",
2939
+ "This\u2019s",
2940
+ "Those",
2941
+ "Tilar",
2942
+ "Tipo",
2943
+ "Tirana",
2944
+ "Titutar",
2945
+ "TmaS",
2946
+ "Town",
2947
+ "Tr",
2948
+ "TrOt.n",
2949
+ "Transporte",
2950
+ "Tsui",
2951
+ "Turkman",
2952
+ "Type",
2953
+ "U",
2954
+ "U.SA",
2955
+ "UAY",
2956
+ "UED",
2957
+ "UEZ",
2958
+ "UIC",
2959
+ "UIO",
2960
+ "UIP",
2961
+ "UK",
2962
+ "ULA",
2963
+ "ULE",
2964
+ "UM/",
2965
+ "UME",
2966
+ "UMHR",
2967
+ "UND",
2968
+ "UNITED",
2969
+ "UNITEDKINGDOM",
2970
+ "UNITEDSTATES",
2971
+ "UNTEDRWOOOU",
2972
+ "URA",
2973
+ "URE",
2974
+ "URG",
2975
+ "URODZENIA",
2976
+ "URUGUAYA",
2977
+ "URY",
2978
+ "USA",
2979
+ "USMHON<<<<<<<<DOB",
2980
+ "UT",
2981
+ "UTOPA",
2982
+ "UTOPIA",
2983
+ "UTOPIATUTOPIA",
2984
+ "UZORAK",
2985
+ "Ud",
2986
+ "Uinced",
2987
+ "Ullah",
2988
+ "Under",
2989
+ "Uniaue",
2990
+ "Union",
2991
+ "Unique",
2992
+ "Unterschnft",
2993
+ "Unterschrift",
2994
+ "Unterschrift.derInhaberin",
2995
+ "V",
2996
+ "V.V",
2997
+ "V01X0OT47",
2998
+ "V11",
2999
+ "VALID",
3000
+ "VALIDADEIEXPIR",
3001
+ "VALIDTILL",
3002
+ "VALLADARES",
3003
+ "VAN",
3004
+ "VAO",
3005
+ "VD",
3006
+ "VEN",
3007
+ "VENCIMIENTO",
3008
+ "VENK390590BC97DT36",
3009
+ "VER",
3010
+ "VETERAN",
3011
+ "VIA",
3012
+ "VICTORIA",
3013
+ "VID",
3014
+ "VIL",
3015
+ "VLA",
3016
+ "VO/",
3017
+ "VORNAME(NIPRENOM(S)NOME",
3018
+ "VORNAME(NTPRENOM(SNOME(PRENUM(SGIVEN",
3019
+ "VP",
3020
+ "VRIJEDI",
3021
+ "VYCHOD",
3022
+ "VZOR",
3023
+ "V_V",
3024
+ "Va",
3025
+ "Va.",
3026
+ "Venezuela",
3027
+ "Verificacion",
3028
+ "Viee",
3029
+ "View",
3030
+ "Vijedi",
3031
+ "Virginia",
3032
+ "Vomamen",
3033
+ "Vornaman",
3034
+ "Vorname(n",
3035
+ "Vornamen",
3036
+ "Vornamon",
3037
+ "W",
3038
+ "WALTER",
3039
+ "WARSZAWA",
3040
+ "WASHINGTON",
3041
+ "WAUT",
3042
+ "WAY",
3043
+ "WAZNOSCI",
3044
+ "WBT09",
3045
+ "WCARD",
3046
+ "WEIGHTHAIR",
3047
+ "WGT",
3048
+ "WI",
3049
+ "WILLIAMS",
3050
+ "WISCONSIN",
3051
+ "WLLIAMS",
3052
+ "WMUSTERMANN",
3053
+ "WMiF",
3054
+ "WOG",
3055
+ "WOLVERHAMPTONWV3OUW",
3056
+ "WULE",
3057
+ "WYDAJACYISSUINGAUTHORITY",
3058
+ "Was",
3059
+ "Wash",
3060
+ "Wash.",
3061
+ "Washington",
3062
+ "Wdoni",
3063
+ "We",
3064
+ "Were",
3065
+ "Wg130Ib",
3066
+ "What",
3067
+ "What's",
3068
+ "What\u2019s",
3069
+ "When",
3070
+ "When's",
3071
+ "When\u2019s",
3072
+ "Where",
3073
+ "Where's",
3074
+ "Where\u2019s",
3075
+ "Whittingham",
3076
+ "Who",
3077
+ "Who's",
3078
+ "Who\u2019s",
3079
+ "Why",
3080
+ "Why's",
3081
+ "Why\u2019s",
3082
+ "Willeke",
3083
+ "Window",
3084
+ "Wis",
3085
+ "Wis.",
3086
+ "Wisconsin",
3087
+ "Wo",
3088
+ "Would",
3089
+ "X\"xx",
3090
+ "X'XXXX",
3091
+ "X'x",
3092
+ "X'xx",
3093
+ "X'xxxx",
3094
+ "X++",
3095
+ "X-dd",
3096
+ "X.",
3097
+ "X.X",
3098
+ "X.X.",
3099
+ "X.X.(XXXX",
3100
+ "X.X.X",
3101
+ "X.X.X.ddXXX.d",
3102
+ "X.X.dddd",
3103
+ "X.XX",
3104
+ "X.XX-dd.ddd.ddd",
3105
+ "X.XXX",
3106
+ "X.XXXX",
3107
+ "X.XY",
3108
+ "X.d.X.dd",
3109
+ "X.x",
3110
+ "X.x.",
3111
+ "X//x",
3112
+ "X0001001",
3113
+ "XD",
3114
+ "XDD",
3115
+ "XEX",
3116
+ "XF",
3117
+ "XK",
3118
+ "XOE",
3119
+ "XWX",
3120
+ "XX",
3121
+ "XX#dddd",
3122
+ "XX,dddd",
3123
+ "XX-dd",
3124
+ "XX.dddd",
3125
+ "XX/",
3126
+ "XXX",
3127
+ "XXX!XXXX",
3128
+ "XXX'XXXX",
3129
+ "XXX-dddd",
3130
+ "XXX.XXXX",
3131
+ "XXX:dd",
3132
+ "XXX:dd/dd/dddd",
3133
+ "XXXX",
3134
+ "XXXX XXXX",
3135
+ "XXXX'XXXX",
3136
+ "XXXX(X",
3137
+ "XXXX(XX",
3138
+ "XXXX(XXXX(X)XXXX",
3139
+ "XXXX(XXXX(XXXX(X",
3140
+ "XXXX(XXXX(XXXX(XXXX(XXXX",
3141
+ "XXXX(XXXX)XXXX(XXXX",
3142
+ "XXXX**XXXX",
3143
+ "XXXX-d",
3144
+ "XXXX.XX",
3145
+ "XXXX.XXX",
3146
+ "XXXX.XXXX",
3147
+ "XXXX/",
3148
+ "XXXX:dddd",
3149
+ "XXXX<<<<XXX",
3150
+ "XXXX<<XXXX",
3151
+ "XXXXd",
3152
+ "XXXXdXX",
3153
+ "XXXXdXXX",
3154
+ "XXXXdXXXX",
3155
+ "XXXXdXXdddd",
3156
+ "XXXXdd",
3157
+ "XXXXddXXX",
3158
+ "XXXXddXdd",
3159
+ "XXXXdddd",
3160
+ "XXXXdddd.XXXX.X",
3161
+ "XXXXddddXXdXX",
3162
+ "XXXXddddXXddXXdd",
3163
+ "XXXXx",
3164
+ "XXXXxX*XXX",
3165
+ "XXXXxXXXX",
3166
+ "XXXXxXx",
3167
+ "XXXXxxxxXXddXXdd",
3168
+ "XXXd",
3169
+ "XXXdXX",
3170
+ "XXXdXXX",
3171
+ "XXXdXdXd",
3172
+ "XXXdd",
3173
+ "XXXdd/dd/dddd",
3174
+ "XXXdddXdd",
3175
+ "XXXdddd",
3176
+ "XXXxX",
3177
+ "XXXxxx",
3178
+ "XXdXXdddXXXX-dXXX",
3179
+ "XXdd",
3180
+ "XXdddXXX",
3181
+ "XXdddd",
3182
+ "XXx",
3183
+ "XXxX",
3184
+ "XXxXXxxxx",
3185
+ "XXxXxX",
3186
+ "XXxx",
3187
+ "XXxxXXXX",
3188
+ "XXxxxx",
3189
+ "XXxxxx.xxx/Xxxx",
3190
+ "XXxxxx:dd",
3191
+ "XXxxxxXXxxxX",
3192
+ "XXxxxxddXXXdddd",
3193
+ "X_X",
3194
+ "X_x",
3195
+ "Xd",
3196
+ "XdXXXXddXXXXd",
3197
+ "XdXddddX",
3198
+ "XdXddddXd",
3199
+ "XddX",
3200
+ "XddXdXXdd",
3201
+ "XddXddXdd",
3202
+ "Xddd",
3203
+ "XdddXddXX",
3204
+ "Xdddd",
3205
+ "Xdddd:dd",
3206
+ "XddddXd",
3207
+ "Xx",
3208
+ "Xx'",
3209
+ "Xx'x",
3210
+ "Xx'xx",
3211
+ "Xx.",
3212
+ "Xx.X.",
3213
+ "XxX",
3214
+ "XxXx.x",
3215
+ "XxXxxxx",
3216
+ "Xx[x",
3217
+ "Xxd",
3218
+ "XxdddXx",
3219
+ "Xxx",
3220
+ "Xxx'x",
3221
+ "Xxx-dd",
3222
+ "Xxx.",
3223
+ "Xxx.xx",
3224
+ "Xxx/",
3225
+ "Xxx:d",
3226
+ "XxxX",
3227
+ "XxxXXxx:d",
3228
+ "XxxXxx",
3229
+ "XxxXxxxx",
3230
+ "Xxxd",
3231
+ "Xxxdddd",
3232
+ "Xxxx",
3233
+ "Xxxx'",
3234
+ "Xxxx'x",
3235
+ "Xxxx,dddd",
3236
+ "Xxxx.",
3237
+ "Xxxx:dd/dd/dddd",
3238
+ "XxxxXXX",
3239
+ "XxxxXdX",
3240
+ "XxxxXxx",
3241
+ "XxxxXxxxx",
3242
+ "Xxxxd",
3243
+ "Xxxxx",
3244
+ "Xxxxx'",
3245
+ "Xxxxx'x",
3246
+ "Xxxxx(x",
3247
+ "Xxxxx*xxX",
3248
+ "Xxxxx,dddd",
3249
+ "Xxxxx.",
3250
+ "Xxxxx.dddd",
3251
+ "Xxxxx.xxxXxxxx",
3252
+ "Xxxxx/",
3253
+ "Xxxxx:dd/dd/dddd",
3254
+ "Xxxxx?Xxxxx",
3255
+ "XxxxxX",
3256
+ "XxxxxXXXxxx",
3257
+ "XxxxxXxx",
3258
+ "XxxxxXxxx",
3259
+ "XxxxxXxxxx",
3260
+ "XxxxxXxxxxXxxxx",
3261
+ "XxxxxXxxxxXxxxx/",
3262
+ "Xxxxxdd",
3263
+ "XxxxxddXXXdddd",
3264
+ "XxxxxddXxx",
3265
+ "Xxxxxdddd",
3266
+ "Xxxxx|",
3267
+ "Xxxxx|Xxxxx|Xxxxx",
3268
+ "Xxxxx\u2019",
3269
+ "Xxxxx\u2019x",
3270
+ "Xxxx\u2019",
3271
+ "Xxxx\u2019x",
3272
+ "Xxx\u2019x",
3273
+ "Xx\u2019",
3274
+ "Xx\u2019x",
3275
+ "Xx\u2019xx",
3276
+ "X\u2019x",
3277
+ "X\u2019xxxx",
3278
+ "Y",
3279
+ "YASMIN",
3280
+ "YASMINE",
3281
+ "YBRO",
3282
+ "YEN",
3283
+ "YES",
3284
+ "YORK",
3285
+ "YOTI",
3286
+ "YPE",
3287
+ "YSC",
3288
+ "YZX211V11",
3289
+ "Ya",
3290
+ "Yluce",
3291
+ "You",
3292
+ "Younus",
3293
+ "Z",
3294
+ "Z3XWMX12XWMS2",
3295
+ "ZA0000089",
3296
+ "ZEN",
3297
+ "ZID",
3298
+ "ZOR",
3299
+ "ZRA",
3300
+ "ZZC",
3301
+ "[",
3302
+ "[-:",
3303
+ "[:",
3304
+ "[=",
3305
+ "\\",
3306
+ "\\\")",
3307
+ "\\n",
3308
+ "\\t",
3309
+ "\\x",
3310
+ "]",
3311
+ "]=",
3312
+ "^",
3313
+ "^_^",
3314
+ "^__^",
3315
+ "^___^",
3316
+ "_*)",
3317
+ "_-)",
3318
+ "_.)",
3319
+ "_<)",
3320
+ "_^)",
3321
+ "__-",
3322
+ "__^",
3323
+ "_\u00ac)",
3324
+ "_\u0ca0)",
3325
+ "a",
3326
+ "a.",
3327
+ "a.m",
3328
+ "a.m.",
3329
+ "a123",
3330
+ "a123456",
3331
+ "a123456789",
3332
+ "a18f",
3333
+ "a52",
3334
+ "a[e",
3335
+ "a]MUSTERMANN",
3336
+ "a]Name",
3337
+ "a]mustermann",
3338
+ "a]name",
3339
+ "aaa",
3340
+ "aadhaar",
3341
+ "aagen",
3342
+ "aam",
3343
+ "aao",
3344
+ "aar",
3345
+ "aat",
3346
+ "abdulmazid",
3347
+ "abe",
3348
+ "about",
3349
+ "abs1",
3350
+ "ace",
3351
+ "ach",
3352
+ "ada",
3353
+ "add",
3354
+ "address",
3355
+ "ade",
3356
+ "adimuhammet",
3357
+ "adjustment",
3358
+ "adjustmentsstyles",
3359
+ "adm",
3360
+ "adm.",
3361
+ "ado",
3362
+ "adoocss",
3363
+ "aeinun",
3364
+ "aele",
3365
+ "aer",
3366
+ "afgifte",
3367
+ "afrin",
3368
+ "aft",
3369
+ "age",
3370
+ "aha",
3371
+ "aho",
3372
+ "ai",
3373
+ "ail",
3374
+ "aim",
3375
+ "ain",
3376
+ "air",
3377
+ "ais",
3378
+ "ait",
3379
+ "ak",
3380
+ "ak.",
3381
+ "aka",
3382
+ "akh",
3383
+ "akhta",
3384
+ "akhtar",
3385
+ "alD",
3386
+ "ala",
3387
+ "ala.",
3388
+ "alamy-2F32BNR",
3389
+ "alamy-2f32bnr",
3390
+ "albanian",
3391
+ "albany.ny",
3392
+ "ald",
3393
+ "ale",
3394
+ "alexander",
3395
+ "all",
3396
+ "alt",
3397
+ "aly",
3398
+ "am",
3399
+ "ama",
3400
+ "ambitos",
3401
+ "amc",
3402
+ "ame",
3403
+ "amenihiR(9igaton",
3404
+ "amenihir(9igaton",
3405
+ "america",
3406
+ "amit",
3407
+ "amo",
3408
+ "ams",
3409
+ "amy",
3410
+ "an",
3411
+ "an.",
3412
+ "ana",
3413
+ "anando",
3414
+ "and",
3415
+ "and/or",
3416
+ "ane",
3417
+ "angaben",
3418
+ "ani",
3419
+ "anmerkungen",
3420
+ "ann",
3421
+ "anna",
3422
+ "ano",
3423
+ "anonKamolla",
3424
+ "anonkamolla",
3425
+ "ans",
3426
+ "ant",
3427
+ "any",
3428
+ "anytown",
3429
+ "apellido",
3430
+ "apellidos",
3431
+ "apellidosy",
3432
+ "apr",
3433
+ "apr-06",
3434
+ "apr.",
3435
+ "apr2003",
3436
+ "apr56",
3437
+ "ar.",
3438
+ "ara",
3439
+ "arc",
3440
+ "ard",
3441
+ "are",
3442
+ "aret",
3443
+ "argentina",
3444
+ "ari",
3445
+ "ariz",
3446
+ "ariz.",
3447
+ "ark",
3448
+ "ark.",
3449
+ "aro",
3450
+ "ars",
3451
+ "art",
3452
+ "arta",
3453
+ "artdestitelsitype",
3454
+ "as",
3455
+ "asaporte",
3456
+ "ash",
3457
+ "ass",
3458
+ "assinatura",
3459
+ "asst",
3460
+ "at",
3461
+ "ata",
3462
+ "ate",
3463
+ "ath",
3464
+ "atha",
3465
+ "atiw1",
3466
+ "atlas",
3467
+ "ato",
3468
+ "atr",
3469
+ "atz",
3470
+ "aue",
3471
+ "aufenthaltserlaubnis",
3472
+ "aufenthaltstitel",
3473
+ "aug",
3474
+ "aug.",
3475
+ "aul",
3476
+ "aun",
3477
+ "aus",
3478
+ "austria",
3479
+ "austriacarte",
3480
+ "ausweisersatz",
3481
+ "aut",
3482
+ "authority",
3483
+ "ave",
3484
+ "awa",
3485
+ "awy",
3486
+ "awy1",
3487
+ "ay",
3488
+ "aya",
3489
+ "ayer",
3490
+ "ayo",
3491
+ "ays",
3492
+ "b",
3493
+ "b.",
3494
+ "b.g.",
3495
+ "b/8",
3496
+ "b1",
3497
+ "b1315:13",
3498
+ "b15995",
3499
+ "bPasanna",
3500
+ "b]Geburtsname",
3501
+ "b]geburtsname",
3502
+ "baile",
3503
+ "baileatha",
3504
+ "bal",
3505
+ "ban",
3506
+ "bangalore",
3507
+ "bangladesh",
3508
+ "barbaraepigmenia",
3509
+ "barney",
3510
+ "bas",
3511
+ "bata",
3512
+ "bate",
3513
+ "bbs",
3514
+ "bcv8w3y8",
3515
+ "bd",
3516
+ "be",
3517
+ "bea",
3518
+ "bearer",
3519
+ "bearerSignature",
3520
+ "bearersignature",
3521
+ "because",
3522
+ "bel",
3523
+ "belgie",
3524
+ "belgien",
3525
+ "belgique",
3526
+ "belgium",
3527
+ "belisario",
3528
+ "ben",
3529
+ "benjamin",
3530
+ "ber",
3531
+ "berlin",
3532
+ "berlini",
3533
+ "beschv",
3534
+ "bh",
3535
+ "bhagaban",
3536
+ "bhreitheiplace",
3537
+ "bi5ri998irib-9iri",
3538
+ "bia",
3539
+ "bib",
3540
+ "bild",
3541
+ "birth",
3542
+ "birth/",
3543
+ "birth01",
3544
+ "birth12aug",
3545
+ "birth18dec1999",
3546
+ "birth1985",
3547
+ "birthDate",
3548
+ "birthdate",
3549
+ "birthilieu",
3550
+ "birth|",
3551
+ "bis",
3552
+ "bix",
3553
+ "blanco",
3554
+ "blle",
3555
+ "blood",
3556
+ "bls",
3557
+ "blu",
3558
+ "bne",
3559
+ "bnr",
3560
+ "bogota",
3561
+ "bolivariano",
3562
+ "bond",
3563
+ "bornSonia",
3564
+ "bornsonia",
3565
+ "bout",
3566
+ "bpasanna",
3567
+ "br",
3568
+ "br.",
3569
+ "brare",
3570
+ "brasil",
3571
+ "braun",
3572
+ "bre",
3573
+ "breitheidate",
3574
+ "british",
3575
+ "britishcitizen",
3576
+ "bro",
3577
+ "brojosobne",
3578
+ "bros",
3579
+ "bros.",
3580
+ "brown",
3581
+ "brth",
3582
+ "brtneude",
3583
+ "bruijn",
3584
+ "bs1",
3585
+ "bste",
3586
+ "bui",
3587
+ "bundesrepubgikdeutschland",
3588
+ "bundesrepublik",
3589
+ "bundesrepublikdeutschland",
3590
+ "bundesrepublkdeutschland",
3591
+ "bundesrepubokdeutschland",
3592
+ "burosuafrin",
3593
+ "by",
3594
+ "c",
3595
+ "c'm",
3596
+ "c++",
3597
+ "c.",
3598
+ "c.dvla",
3599
+ "c.iv-21.112.215",
3600
+ "c/0",
3601
+ "c9534128",
3602
+ "ca",
3603
+ "caaaat",
3604
+ "cadedrenoyoued",
3605
+ "caducidad",
3606
+ "cal",
3607
+ "calif",
3608
+ "calif.",
3609
+ "california",
3610
+ "can",
3611
+ "canada",
3612
+ "canao",
3613
+ "canga",
3614
+ "carc",
3615
+ "card",
3616
+ "cardacartedidentite",
3617
+ "cardiff",
3618
+ "cardycartedidentite",
3619
+ "caro",
3620
+ "carolina",
3621
+ "caron",
3622
+ "cartadidentita",
3623
+ "cartadidentitacartad'identitad",
3624
+ "cartadidentitacartadidentitad",
3625
+ "cartadidentitad",
3626
+ "cartaicard",
3627
+ "carte",
3628
+ "carted'identite",
3629
+ "cartedidentite",
3630
+ "cartedidenttte",
3631
+ "cartedioentite",
3632
+ "carteira",
3633
+ "casado",
3634
+ "catle",
3635
+ "cause",
3636
+ "caysc",
3637
+ "ccel",
3638
+ "cd",
3639
+ "ce/",
3640
+ "ce>",
3641
+ "cealbania",
3642
+ "ced",
3643
+ "cedula",
3644
+ "ceduladeidentidad",
3645
+ "cel",
3646
+ "centin",
3647
+ "centity",
3648
+ "central",
3649
+ "centroamerica",
3650
+ "ceska",
3651
+ "ch",
3652
+ "ch.",
3653
+ "cha",
3654
+ "che",
3655
+ "chf",
3656
+ "chgstj",
3657
+ "chile",
3658
+ "cht",
3659
+ "chujandama",
3660
+ "church",
3661
+ "chv",
3662
+ "cia",
3663
+ "cio",
3664
+ "cir",
3665
+ "circle",
3666
+ "cislodokladuvdocument",
3667
+ "citizedcard",
3668
+ "citizen",
3669
+ "citizencard",
3670
+ "citizenship/",
3671
+ "city",
3672
+ "cityok73102",
3673
+ "citzenaho",
3674
+ "ciudadania",
3675
+ "ciudadania*med",
3676
+ "civii1d",
3677
+ "civil",
3678
+ "civileidentificacion",
3679
+ "civilid",
3680
+ "class",
3681
+ "classa",
3682
+ "classd",
3683
+ "cle",
3684
+ "cliath",
3685
+ "cls:5",
3686
+ "cm",
3687
+ "cmohamed",
3688
+ "cmu",
3689
+ "cnico",
3690
+ "cns",
3691
+ "co",
3692
+ "co.",
3693
+ "coburg",
3694
+ "cof",
3695
+ "cof1ih",
3696
+ "coi:09",
3697
+ "col",
3698
+ "colo",
3699
+ "colo.",
3700
+ "colony",
3701
+ "color",
3702
+ "columbia",
3703
+ "com",
3704
+ "come",
3705
+ "commodore",
3706
+ "conducir",
3707
+ "conduir",
3708
+ "condurre",
3709
+ "confederation",
3710
+ "confederazione",
3711
+ "confederazionesvizzera",
3712
+ "confederaziun",
3713
+ "confederaziunsvizra",
3714
+ "conn",
3715
+ "conn.",
3716
+ "copy",
3717
+ "copy3",
3718
+ "coritnyeigcoonetotwoy",
3719
+ "corp",
3720
+ "corp.",
3721
+ "cos",
3722
+ "could",
3723
+ "country",
3724
+ "countryof",
3725
+ "cov",
3726
+ "coz",
3727
+ "cr",
3728
+ "cre",
3729
+ "croatia",
3730
+ "css",
3731
+ "ct.",
3732
+ "cui",
3733
+ "cul",
3734
+ "cuttig",
3735
+ "cuz",
3736
+ "czechrepublic",
3737
+ "c\u2019m",
3738
+ "d",
3739
+ "d'allemagne",
3740
+ "d'autriche",
3741
+ "d'expiration",
3742
+ "d'identite",
3743
+ "d'uisage",
3744
+ "d)",
3745
+ "d-",
3746
+ "d-)",
3747
+ "d-48",
3748
+ "d-X",
3749
+ "d.",
3750
+ "d.0.b.19",
3751
+ "d.XX",
3752
+ "d.XXXX",
3753
+ "d.XXXXd",
3754
+ "d.Xxx",
3755
+ "d.c",
3756
+ "d.c.",
3757
+ "d.c.(cundinamarca",
3758
+ "d.c.20500",
3759
+ "d.d",
3760
+ "d.dd",
3761
+ "d.dd.dd.dddd",
3762
+ "d.dd.dddd",
3763
+ "d.ddd.ddd",
3764
+ "d.dddd",
3765
+ "d.dx",
3766
+ "d.o.b",
3767
+ "d.x",
3768
+ "d.xx",
3769
+ "d.xxx",
3770
+ "d.xxxx",
3771
+ "d.xxxxd",
3772
+ "d/ddd",
3773
+ "d23145890",
3774
+ "d2h6862m2",
3775
+ "d3241407",
3776
+ "dIg-",
3777
+ "dX",
3778
+ "dXX",
3779
+ "dXXX",
3780
+ "dXXXX",
3781
+ "dXXXXdddd",
3782
+ "dXXXdddd",
3783
+ "dXddd",
3784
+ "dXxxxx",
3785
+ "dXxxxxdd/dd/dddd",
3786
+ "d_d",
3787
+ "d_x",
3788
+ "da",
3789
+ "dad",
3790
+ "dairy",
3791
+ "dallemagne",
3792
+ "daniela",
3793
+ "daniyal",
3794
+ "dantHy",
3795
+ "danthy",
3796
+ "dar",
3797
+ "dare",
3798
+ "das",
3799
+ "dascoeirer",
3800
+ "data",
3801
+ "datadlnascita",
3802
+ "datawydania",
3803
+ "date",
3804
+ "date:18/01/2013",
3805
+ "datedenaissance",
3806
+ "datedexpiration",
3807
+ "dateoen",
3808
+ "dateof",
3809
+ "dateofaxbiry",
3810
+ "dateofbirth",
3811
+ "dateofbirth/",
3812
+ "dateofissue",
3813
+ "dato",
3814
+ "datof",
3815
+ "datr",
3816
+ "datum",
3817
+ "datumnarozeni",
3818
+ "datumrodena",
3819
+ "datumvan",
3820
+ "datumvydani",
3821
+ "dautriche",
3822
+ "david",
3823
+ "dc00000",
3824
+ "dd",
3825
+ "dd%(XXX/d",
3826
+ "dd%(xxx/d",
3827
+ "dd(d",
3828
+ "dd.XXX",
3829
+ "dd.d",
3830
+ "dd.dd",
3831
+ "dd.dd.dd",
3832
+ "dd.dd.dd.dddd",
3833
+ "dd.dd.dddd",
3834
+ "dd.dd.ddddXX",
3835
+ "dd.dd.ddddxx",
3836
+ "dd.ddd.ddd",
3837
+ "dd.dddd",
3838
+ "dd.xxx",
3839
+ "dd//dddX",
3840
+ "dd//dddx",
3841
+ "dd/d/dddd",
3842
+ "dd/dd/dd",
3843
+ "dd/dd/ddd",
3844
+ "dd/dd/dddd",
3845
+ "dd/dd/dddd(XX",
3846
+ "dd/dd/dddd(xx",
3847
+ "dd/dd/ddddxXXXdd/dd/dddd",
3848
+ "dd/dd/ddddxxxxdd/dd/dddd",
3849
+ "dd/dddd",
3850
+ "dd123xwx",
3851
+ "ddX",
3852
+ "ddXX",
3853
+ "ddXXX",
3854
+ "ddXXXX",
3855
+ "ddXXXXdddd",
3856
+ "ddXXXd",
3857
+ "ddXXXdddXx",
3858
+ "ddXXXdddd",
3859
+ "ddXddXdddd",
3860
+ "ddXxx",
3861
+ "ddXxx-dddd",
3862
+ "ddXxxdddd",
3863
+ "ddd",
3864
+ "ddd,Xxx",
3865
+ "ddd,xxx",
3866
+ "ddd.dd",
3867
+ "ddd.dd.ddddXXXX",
3868
+ "ddd.dd.ddddxxxx",
3869
+ "ddd.x",
3870
+ "dddXX",
3871
+ "dddXXXX",
3872
+ "dddXXXX.XXXX",
3873
+ "dddXXXXddd",
3874
+ "dddXXdddd",
3875
+ "dddXdddd",
3876
+ "dddd",
3877
+ "dddd.-dd",
3878
+ "dddd.dddd",
3879
+ "dddd/dd/dddd",
3880
+ "ddddXXXX",
3881
+ "ddddXdddd",
3882
+ "ddddXddddXXX<<<<d",
3883
+ "ddddXddddXdXdddd",
3884
+ "ddddXddddXdddd<dddd",
3885
+ "ddddxdddd",
3886
+ "ddddxddddxdddd<dddd",
3887
+ "ddddxddddxdxdddd",
3888
+ "ddddxddddxxx<<<<d",
3889
+ "ddddxxxx",
3890
+ "dddx",
3891
+ "dddxdddd",
3892
+ "dddxx",
3893
+ "dddxxXxXXXx",
3894
+ "dddxxdddd",
3895
+ "dddxxxx",
3896
+ "dddxxxx.xxxx",
3897
+ "dddxxxxddd",
3898
+ "ddentite",
3899
+ "ddx",
3900
+ "ddx.x",
3901
+ "ddx.x.",
3902
+ "ddxdddd",
3903
+ "ddxddxdddd",
3904
+ "ddxx",
3905
+ "ddxxx",
3906
+ "ddxxx-dddd",
3907
+ "ddxxxd",
3908
+ "ddxxxdddd",
3909
+ "ddxxxdddxx",
3910
+ "ddxxxx",
3911
+ "ddxxxxdddd",
3912
+ "de",
3913
+ "dea",
3914
+ "debe",
3915
+ "debesident",
3916
+ "dec",
3917
+ "dec.",
3918
+ "dechile",
3919
+ "decolombia",
3920
+ "deemision",
3921
+ "degee",
3922
+ "deidentidad",
3923
+ "deidentificaciony",
3924
+ "del",
3925
+ "del.",
3926
+ "delapazcale",
3927
+ "delcarmen",
3928
+ "delecuador",
3929
+ "delinrance",
3930
+ "delivrance",
3931
+ "delp",
3932
+ "delperu",
3933
+ "deltitula",
3934
+ "dem",
3935
+ "den",
3936
+ "denaissance",
3937
+ "dendnone",
3938
+ "dentification",
3939
+ "dentitatskarte",
3940
+ "dentity",
3941
+ "dentityoari",
3942
+ "deo",
3943
+ "department",
3944
+ "der",
3945
+ "derInhaberin",
3946
+ "derinhaberin",
3947
+ "des",
3948
+ "desInbaber",
3949
+ "desinbaber",
3950
+ "deutopia",
3951
+ "deutsch",
3952
+ "deutschland",
3953
+ "devi",
3954
+ "dex",
3955
+ "df",
3956
+ "dg",
3957
+ "dhi",
3958
+ "di",
3959
+ "dia",
3960
+ "did",
3961
+ "didentitapcartadidentiiad",
3962
+ "didentite",
3963
+ "dig",
3964
+ "dig-",
3965
+ "direccion",
3966
+ "district",
3967
+ "dit",
3968
+ "dka0221463",
3969
+ "dl",
3970
+ "dl#123456789",
3971
+ "dl1234562",
3972
+ "dlm",
3973
+ "dlnascita",
3974
+ "dm.",
3975
+ "dnamarkersjk42rg28",
3976
+ "dnn",
3977
+ "dno",
3978
+ "do",
3979
+ "do/",
3980
+ "dob",
3981
+ "dob07/04/1970",
3982
+ "dob26/08/1973",
3983
+ "dob:23/03/1981",
3984
+ "document number",
3985
+ "documentno",
3986
+ "documentnummer",
3987
+ "documento",
3988
+ "documentonacionaldeioentificacion",
3989
+ "dodate",
3990
+ "doe",
3991
+ "doe7",
3992
+ "does",
3993
+ "dof",
3994
+ "dogum",
3995
+ "dohjle",
3996
+ "doi",
3997
+ "doi09/12/2022",
3998
+ "doin",
3999
+ "doin'",
4000
+ "doing",
4001
+ "doin\u2019",
4002
+ "dom",
4003
+ "domingo",
4004
+ "dominicana",
4005
+ "don",
4006
+ "don'tleavehomewithoutit",
4007
+ "doncr",
4008
+ "dono",
4009
+ "donor",
4010
+ "dor",
4011
+ "dos",
4012
+ "dot",
4013
+ "dotecnirthy",
4014
+ "dow",
4015
+ "dpl",
4016
+ "dr",
4017
+ "dr.",
4018
+ "drive",
4019
+ "driver",
4020
+ "driverlicense",
4021
+ "driving",
4022
+ "drivinglicence",
4023
+ "drmerlknsi",
4024
+ "drtverlicense",
4025
+ "drzavljanstvo/",
4026
+ "dse",
4027
+ "dteofnrth",
4028
+ "dtl",
4029
+ "du",
4030
+ "duadonsonco",
4031
+ "dublin",
4032
+ "duodastus",
4033
+ "dur",
4034
+ "dusage",
4035
+ "dutitulaire",
4036
+ "dvla",
4037
+ "dvr",
4038
+ "dx",
4039
+ "dx.dd.dd.dddd",
4040
+ "dx.dd.dd.ddddx",
4041
+ "dx.x",
4042
+ "dx.x.",
4043
+ "dxXXX",
4044
+ "dxXddd",
4045
+ "dxd.xx",
4046
+ "dxdd.dd.dddd",
4047
+ "dxddd",
4048
+ "dxdddd",
4049
+ "dxx",
4050
+ "dxxddd",
4051
+ "dxxx",
4052
+ "dxxxdddd",
4053
+ "dxxxx",
4054
+ "dxxxxdd/dd/dddd",
4055
+ "dxxxxdddd",
4056
+ "dz",
4057
+ "e",
4058
+ "e's",
4059
+ "e(n",
4060
+ "e(s",
4061
+ "e.",
4062
+ "e.g",
4063
+ "e.g.",
4064
+ "e10/31/1990",
4065
+ "e1399534",
4066
+ "e2017",
4067
+ "e27",
4068
+ "eO+",
4069
+ "ean",
4070
+ "ear",
4071
+ "eb.",
4072
+ "ebe",
4073
+ "ebr",
4074
+ "ebui",
4075
+ "ec.",
4076
+ "ecimcn",
4077
+ "eck",
4078
+ "ecpiry",
4079
+ "ecs",
4080
+ "ect",
4081
+ "ecuatoriana",
4082
+ "ede",
4083
+ "edi",
4084
+ "edit",
4085
+ "edo",
4086
+ "eeb",
4087
+ "eed",
4088
+ "eem",
4089
+ "een",
4090
+ "ees",
4091
+ "eet",
4092
+ "ego",
4093
+ "ei",
4094
+ "eid",
4095
+ "eidgenossenschaft",
4096
+ "eig",
4097
+ "eih",
4098
+ "ein",
4099
+ "eireannach",
4100
+ "eireirelandirlande",
4101
+ "eis",
4102
+ "eit",
4103
+ "eka",
4104
+ "eke",
4105
+ "el",
4106
+ "el.",
4107
+ "ela",
4108
+ "ele",
4109
+ "electoral",
4110
+ "elizabeth",
4111
+ "elle1817283",
4112
+ "elp",
4113
+ "elsa",
4114
+ "em",
4115
+ "emaD",
4116
+ "emad",
4117
+ "emision",
4118
+ "emo",
4119
+ "emsion",
4120
+ "en",
4121
+ "en.",
4122
+ "ena",
4123
+ "ence",
4124
+ "endnone",
4125
+ "enero",
4126
+ "eng",
4127
+ "enh",
4128
+ "eni",
4129
+ "enn",
4130
+ "eno",
4131
+ "enough",
4132
+ "ens",
4133
+ "ent",
4134
+ "eo+",
4135
+ "eof",
4136
+ "eorpach",
4137
+ "eos",
4138
+ "eot",
4139
+ "ep.",
4140
+ "epecicion",
4141
+ "eph",
4142
+ "ephraim",
4143
+ "epo",
4144
+ "ept",
4145
+ "er",
4146
+ "er/",
4147
+ "erN",
4148
+ "era",
4149
+ "ere",
4150
+ "erg",
4151
+ "erika",
4152
+ "erl",
4153
+ "ern",
4154
+ "ero",
4155
+ "ers",
4156
+ "eru",
4157
+ "ery",
4158
+ "er|",
4159
+ "esd",
4160
+ "ese",
4161
+ "esh",
4162
+ "eso",
4163
+ "especimen",
4164
+ "ess",
4165
+ "est",
4166
+ "estabura",
4167
+ "estado",
4168
+ "este",
4169
+ "et",
4170
+ "eta",
4171
+ "etd",
4172
+ "ete",
4173
+ "eternoft",
4174
+ "eth",
4175
+ "eu",
4176
+ "eug",
4177
+ "eundesrepublikdeutschland",
4178
+ "european",
4179
+ "ev.",
4180
+ "eve",
4181
+ "evi",
4182
+ "ews",
4183
+ "ex/",
4184
+ "exM",
4185
+ "exe",
4186
+ "exf",
4187
+ "exhracion",
4188
+ "exi",
4189
+ "exm",
4190
+ "exo",
4191
+ "expecico",
4192
+ "expedicion",
4193
+ "expeos",
4194
+ "expiratio",
4195
+ "expiration",
4196
+ "expires",
4197
+ "expiry",
4198
+ "expiry/",
4199
+ "expiryl",
4200
+ "extraniero",
4201
+ "eye",
4202
+ "eyeenn",
4203
+ "eyes",
4204
+ "eyesbro",
4205
+ "e\u2019s",
4206
+ "f",
4207
+ "f.",
4208
+ "f//t",
4209
+ "f1",
4210
+ "fT6",
4211
+ "faaa",
4212
+ "father",
4213
+ "fatherwane",
4214
+ "fay",
4215
+ "fbderalrepublicofgermanyrepubliquefederaled'allemagne",
4216
+ "feb",
4217
+ "feb.",
4218
+ "fecha",
4219
+ "fechade",
4220
+ "fechadenacmu",
4221
+ "fechadevencimento",
4222
+ "feche",
4223
+ "federal",
4224
+ "federale",
4225
+ "federaled'allemagne",
4226
+ "federalrepublicof",
4227
+ "federalrepublicofgermanyrepublique",
4228
+ "federalrepublicofgermanyvrepubuouefederaledallemagne",
4229
+ "federativa",
4230
+ "feidhmidate",
4231
+ "fel",
4232
+ "femeneng",
4233
+ "femenino",
4234
+ "feng",
4235
+ "fernandaantonia",
4236
+ "fexpedicion23feb2015",
4237
+ "fif",
4238
+ "fig",
4239
+ "fila",
4240
+ "file",
4241
+ "filter",
4242
+ "fio",
4243
+ "fiorida",
4244
+ "fir",
4245
+ "firma",
4246
+ "firmadeltitular",
4247
+ "first",
4248
+ "fiz",
4249
+ "fla",
4250
+ "fla.",
4251
+ "forenames",
4252
+ "form-7",
4253
+ "fra",
4254
+ "francaise",
4255
+ "france",
4256
+ "freeman",
4257
+ "from",
4258
+ "ft6",
4259
+ "fte",
4260
+ "fti",
4261
+ "fuhrerausweis",
4262
+ "fvencimiento:26",
4263
+ "g",
4264
+ "g.",
4265
+ "g28",
4266
+ "g612",
4267
+ "gMale",
4268
+ "ga",
4269
+ "ga.",
4270
+ "gabler",
4271
+ "gallg",
4272
+ "galllemane",
4273
+ "galloway",
4274
+ "gan",
4275
+ "ganchf",
4276
+ "gandhi",
4277
+ "ganguly",
4278
+ "gar",
4279
+ "garcia",
4280
+ "gat",
4281
+ "gdco00o01",
4282
+ "ge",
4283
+ "geb.gabler",
4284
+ "geboortedatum",
4285
+ "geburtsdatum",
4286
+ "geburtsdatum/",
4287
+ "geburtsname",
4288
+ "geburtsoriace",
4289
+ "geburtsort",
4290
+ "geburtsortpiace",
4291
+ "geburtstag",
4292
+ "gee",
4293
+ "geldig",
4294
+ "gen",
4295
+ "gen.",
4296
+ "gendentasountryok",
4297
+ "gender",
4298
+ "gendercountry",
4299
+ "genders",
4300
+ "gendeta",
4301
+ "general",
4302
+ "genter",
4303
+ "germany",
4304
+ "germany7republique",
4305
+ "ges",
4306
+ "geschlecht",
4307
+ "geschlecht/",
4308
+ "geslacht",
4309
+ "gettyimages",
4310
+ "ght",
4311
+ "gibraltar",
4312
+ "gie",
4313
+ "given",
4314
+ "givon",
4315
+ "glass",
4316
+ "gmale",
4317
+ "gne",
4318
+ "gobierno",
4319
+ "goin",
4320
+ "goin'",
4321
+ "going",
4322
+ "goin\u2019",
4323
+ "goitig.bis/date",
4324
+ "gomez",
4325
+ "gon",
4326
+ "gonna",
4327
+ "gopal",
4328
+ "got",
4329
+ "gouvernement",
4330
+ "gov",
4331
+ "gov.",
4332
+ "govemmet",
4333
+ "govermment",
4334
+ "government",
4335
+ "governmentofindia",
4336
+ "grant",
4337
+ "grove",
4338
+ "gt-06",
4339
+ "gt5",
4340
+ "guatemal",
4341
+ "guatemala",
4342
+ "guatemala.centroamerica",
4343
+ "guitig",
4344
+ "gultig",
4345
+ "gum",
4346
+ "gus",
4347
+ "gv",
4348
+ "gven",
4349
+ "gzroio3oe",
4350
+ "h",
4351
+ "h.",
4352
+ "h01",
4353
+ "habib",
4354
+ "had",
4355
+ "hae",
4356
+ "haer",
4357
+ "haider",
4358
+ "ham",
4359
+ "hamburg",
4360
+ "hamza",
4361
+ "han",
4362
+ "handtekening",
4363
+ "har",
4364
+ "harris",
4365
+ "has",
4366
+ "hat",
4367
+ "hathernome",
4368
+ "have",
4369
+ "havin",
4370
+ "havin'",
4371
+ "having",
4372
+ "havin\u2019",
4373
+ "he",
4374
+ "he's",
4375
+ "hedidsndteyioontitycaao",
4376
+ "height",
4377
+ "help",
4378
+ "help@uidai.gov.in",
4379
+ "hen",
4380
+ "henderson",
4381
+ "her",
4382
+ "heth",
4383
+ "hey",
4384
+ "he\u2019s",
4385
+ "hin",
4386
+ "hina",
4387
+ "hip",
4388
+ "his",
4389
+ "hlle",
4390
+ "hnd",
4391
+ "hoa",
4392
+ "hod",
4393
+ "hoe",
4394
+ "hoffmann",
4395
+ "hogajnte",
4396
+ "hoider",
4397
+ "holder",
4398
+ "holder'ssignature",
4399
+ "holders",
4400
+ "hon",
4401
+ "honduras",
4402
+ "hotder",
4403
+ "how",
4404
+ "how's",
4405
+ "how\u2019s",
4406
+ "hrh",
4407
+ "hrr",
4408
+ "hrt",
4409
+ "hrv",
4410
+ "hrvatska",
4411
+ "hsi",
4412
+ "ht/",
4413
+ "hta",
4414
+ "hu3",
4415
+ "hua",
4416
+ "hul",
4417
+ "hullhu3",
4418
+ "i",
4419
+ "i.",
4420
+ "i.e",
4421
+ "i.e.",
4422
+ "i.v.m.11abs.2",
4423
+ "i0s101999q",
4424
+ "i1d",
4425
+ "iSi",
4426
+ "ia",
4427
+ "ia.",
4428
+ "ia/",
4429
+ "iad",
4430
+ "ian",
4431
+ "iar",
4432
+ "iau",
4433
+ "ib",
4434
+ "ica",
4435
+ "ice",
4436
+ "ich",
4437
+ "ick",
4438
+ "ico",
4439
+ "ict",
4440
+ "icu",
4441
+ "id",
4442
+ "id.",
4443
+ "ida",
4444
+ "idautoo0oo9993",
4445
+ "idcard",
4446
+ "identidad",
4447
+ "identidade",
4448
+ "identificacion",
4449
+ "identificacionycedulacion",
4450
+ "identification",
4451
+ "identificattoxcard",
4452
+ "identitatskarte",
4453
+ "identiteitskaart",
4454
+ "identity",
4455
+ "identityMumber",
4456
+ "identityNunneroy",
4457
+ "identitycard",
4458
+ "identitycardacarted'identite",
4459
+ "identitycardcartedidentite",
4460
+ "identitycardicarted'identite",
4461
+ "identitycardnumber",
4462
+ "identityicard",
4463
+ "identitymumber",
4464
+ "identitynunneroy",
4465
+ "identtteitseaart",
4466
+ "identy",
4467
+ "idno:3015147785899",
4468
+ "ido",
4469
+ "iee",
4470
+ "ien",
4471
+ "iet",
4472
+ "ieu",
4473
+ "iew",
4474
+ "if.",
4475
+ "iff",
4476
+ "ift",
4477
+ "ig-",
4478
+ "ign",
4479
+ "ihhrt",
4480
+ "ihi",
4481
+ "ijk",
4482
+ "ijn",
4483
+ "ika",
4484
+ "iku",
4485
+ "ila",
4486
+ "ild",
4487
+ "ile",
4488
+ "ill",
4489
+ "ill.",
4490
+ "image",
4491
+ "imagebroker",
4492
+ "ime",
4493
+ "imeiname/",
4494
+ "impreso",
4495
+ "in'",
4496
+ "ina",
4497
+ "inc",
4498
+ "inc.",
4499
+ "ind",
4500
+ "ind.",
4501
+ "india",
4502
+ "indianunion",
4503
+ "ine",
4504
+ "inenion",
4505
+ "ing",
4506
+ "inhaberes",
4507
+ "inhaberin",
4508
+ "inhabers",
4509
+ "ini",
4510
+ "inn",
4511
+ "ino",
4512
+ "int",
4513
+ "in\u2019",
4514
+ "ion",
4515
+ "ip",
4516
+ "ip/",
4517
+ "ipo",
4518
+ "ipozzc900160",
4519
+ "ira",
4520
+ "irarrazabal",
4521
+ "ire",
4522
+ "irh",
4523
+ "iri",
4524
+ "irish04bea",
4525
+ "irl",
4526
+ "irm",
4527
+ "irth",
4528
+ "iry",
4529
+ "is",
4530
+ "is.",
4531
+ "ise",
4532
+ "ish",
4533
+ "isi",
4534
+ "iskaznice/",
4535
+ "islamic",
4536
+ "islamicrepublicoepakistan",
4537
+ "islamig",
4538
+ "ismail",
4539
+ "iss",
4540
+ "issue",
4541
+ "issued",
4542
+ "issued:10/01/2017",
4543
+ "ist",
4544
+ "it",
4545
+ "it's",
4546
+ "it6",
4547
+ "ita",
4548
+ "italy",
4549
+ "ite",
4550
+ "ith",
4551
+ "iti",
4552
+ "ito",
4553
+ "ity",
4554
+ "it\u2019s",
4555
+ "ium",
4556
+ "iun",
4557
+ "iva",
4558
+ "ive",
4559
+ "iw1",
4560
+ "iz.",
4561
+ "j",
4562
+ "j.",
4563
+ "ja[e",
4564
+ "james",
4565
+ "jan",
4566
+ "jan.",
4567
+ "jbbjle",
4568
+ "jbk-8448237",
4569
+ "jd",
4570
+ "jean",
4571
+ "jhon",
4572
+ "jignature",
4573
+ "jiv",
4574
+ "jle",
4575
+ "jli",
4576
+ "jly",
4577
+ "jmeno",
4578
+ "joecre",
4579
+ "john",
4580
+ "jones",
4581
+ "joseph",
4582
+ "joshua",
4583
+ "jr",
4584
+ "jr.",
4585
+ "jul",
4586
+ "jul.",
4587
+ "jun",
4588
+ "jun.",
4589
+ "jun26",
4590
+ "june,1970",
4591
+ "junta",
4592
+ "jurgen",
4593
+ "justica",
4594
+ "jvrname",
4595
+ "k",
4596
+ "k.",
4597
+ "k.aus",
4598
+ "ka52",
4599
+ "ka5220220016216",
4600
+ "ka560064",
4601
+ "kai",
4602
+ "kamala",
4603
+ "kamen",
4604
+ "kan",
4605
+ "kan.",
4606
+ "kans",
4607
+ "kans.",
4608
+ "kansas",
4609
+ "kar",
4610
+ "karnataka",
4611
+ "karnataka,560064",
4612
+ "karnataka.560064",
4613
+ "kartegoltig",
4614
+ "karthiksekar",
4615
+ "karti",
4616
+ "kayit",
4617
+ "kaz",
4618
+ "kei",
4619
+ "keid.py",
4620
+ "ker",
4621
+ "kg",
4622
+ "khan",
4623
+ "kie",
4624
+ "kind",
4625
+ "kingdom",
4626
+ "kisi",
4627
+ "kla",
4628
+ "kmotwgteye",
4629
+ "koBbs",
4630
+ "kobbs",
4631
+ "koninkrijk",
4632
+ "kortid",
4633
+ "kowalskijan",
4634
+ "ks",
4635
+ "ku5",
4636
+ "kumar",
4637
+ "kus",
4638
+ "kuwait",
4639
+ "kwt",
4640
+ "ky",
4641
+ "ky.",
4642
+ "l",
4643
+ "l.",
4644
+ "l01x00t47",
4645
+ "l712z68jl",
4646
+ "lI",
4647
+ "la",
4648
+ "la.",
4649
+ "lah",
4650
+ "lakh",
4651
+ "lan",
4652
+ "lar",
4653
+ "las",
4654
+ "latika",
4655
+ "latikayasmin",
4656
+ "lattulaire",
4657
+ "laura",
4658
+ "lauren",
4659
+ "layer",
4660
+ "lb",
4661
+ "lbe",
4662
+ "ldarasjauthorityiautorite",
4663
+ "lde",
4664
+ "ldentification",
4665
+ "ldentity",
4666
+ "ldi",
4667
+ "ldu",
4668
+ "lee",
4669
+ "lellerby",
4670
+ "lem",
4671
+ "ler",
4672
+ "les",
4673
+ "let",
4674
+ "let's",
4675
+ "let\u2019s",
4676
+ "leu",
4677
+ "leve",
4678
+ "lgo",
4679
+ "li",
4680
+ "lia",
4681
+ "lic",
4682
+ "licemse",
4683
+ "licence",
4684
+ "licenceond",
4685
+ "licencia",
4686
+ "licencing",
4687
+ "license",
4688
+ "licensebirth",
4689
+ "licenza",
4690
+ "licu",
4691
+ "lid",
4692
+ "lien",
4693
+ "lienhard*ysn",
4694
+ "lieu",
4695
+ "lieude",
4696
+ "lif",
4697
+ "lik",
4698
+ "limitaciones",
4699
+ "lin",
4700
+ "lis",
4701
+ "liselotte",
4702
+ "ll",
4703
+ "ll.",
4704
+ "lla",
4705
+ "lle",
4706
+ "lleu",
4707
+ "llg",
4708
+ "lli",
4709
+ "lls",
4710
+ "lmv",
4711
+ "lo.",
4712
+ "local",
4713
+ "lonatvreot",
4714
+ "london",
4715
+ "lor",
4716
+ "lovin",
4717
+ "lovin'",
4718
+ "loving",
4719
+ "lovin\u2019",
4720
+ "low",
4721
+ "lpa",
4722
+ "lrcens",
4723
+ "lsa",
4724
+ "lsikwt",
4725
+ "ltblle",
4726
+ "ltd",
4727
+ "ltd.",
4728
+ "lte",
4729
+ "lty",
4730
+ "lubeck",
4731
+ "lugar",
4732
+ "lugardenacmento",
4733
+ "m",
4734
+ "m(s",
4735
+ "m-7",
4736
+ "m.",
4737
+ "m.dlm",
4738
+ "m2",
4739
+ "ma'am",
4740
+ "ma1",
4741
+ "maD",
4742
+ "maS",
4743
+ "maa",
4744
+ "mad",
4745
+ "madam",
4746
+ "madison",
4747
+ "mae",
4748
+ "mag",
4749
+ "mahalli",
4750
+ "mai",
4751
+ "mainland",
4752
+ "maino",
4753
+ "mal",
4754
+ "male",
4755
+ "maltir",
4756
+ "mam",
4757
+ "man",
4758
+ "mane",
4759
+ "manischar",
4760
+ "mar",
4761
+ "mar.",
4762
+ "maria",
4763
+ "mariannemartha",
4764
+ "marie",
4765
+ "marit6",
4766
+ "markus",
4767
+ "marquez",
4768
+ "martin",
4769
+ "martina",
4770
+ "martinammria",
4771
+ "martinez",
4772
+ "mas",
4773
+ "mass",
4774
+ "mass.",
4775
+ "massnae",
4776
+ "mather",
4777
+ "matthews",
4778
+ "max",
4779
+ "may",
4780
+ "may2005",
4781
+ "may7mai",
4782
+ "mayo",
4783
+ "ma\u2019am",
4784
+ "mb",
4785
+ "mcn",
4786
+ "mcwog",
4787
+ "md",
4788
+ "md.",
4789
+ "me/",
4790
+ "mea",
4791
+ "meclisi",
4792
+ "med",
4793
+ "mehboob",
4794
+ "mells",
4795
+ "men",
4796
+ "meooindtontrtco",
4797
+ "mer",
4798
+ "mercosur",
4799
+ "mes",
4800
+ "messrs",
4801
+ "messrs.",
4802
+ "met",
4803
+ "mez",
4804
+ "mfo",
4805
+ "mgabler",
4806
+ "mhr",
4807
+ "mic",
4808
+ "mich",
4809
+ "mich.",
4810
+ "michelle",
4811
+ "miejsce",
4812
+ "mif",
4813
+ "mig",
4814
+ "might",
4815
+ "mil",
4816
+ "mill",
4817
+ "min",
4818
+ "mindaugus",
4819
+ "ministerio",
4820
+ "minn",
4821
+ "minn.",
4822
+ "minneapolis",
4823
+ "minnesota",
4824
+ "mis",
4825
+ "miss",
4826
+ "miss.",
4827
+ "misto",
4828
+ "mit",
4829
+ "miti",
4830
+ "mll",
4831
+ "mm",
4832
+ "mn",
4833
+ "mnnone",
4834
+ "mo",
4835
+ "mo.",
4836
+ "mohamed",
4837
+ "mohamedkoyachriku",
4838
+ "mohammed",
4839
+ "mon",
4840
+ "monika",
4841
+ "mont",
4842
+ "mont.",
4843
+ "montevideo",
4844
+ "mother",
4845
+ "motor",
4846
+ "motorist",
4847
+ "moutinho",
4848
+ "mpl",
4849
+ "mr",
4850
+ "mr.",
4851
+ "mrs",
4852
+ "mrs.",
4853
+ "ms",
4854
+ "ms.",
4855
+ "ms2",
4856
+ "mse",
4857
+ "mst.warszawy",
4858
+ "mt",
4859
+ "mt.",
4860
+ "mu",
4861
+ "mubeen",
4862
+ "muestra",
4863
+ "muhammad",
4864
+ "muneeb",
4865
+ "must",
4866
+ "musterfrau",
4867
+ "musterfrau<<isolde",
4868
+ "mustermann",
4869
+ "musterort",
4870
+ "muzzamil",
4871
+ "my",
4872
+ "mza",
4873
+ "n",
4874
+ "n\"de",
4875
+ "n'de",
4876
+ "n's",
4877
+ "n't",
4878
+ "n.",
4879
+ "n.c.",
4880
+ "n.d.",
4881
+ "n.h.",
4882
+ "n.j.",
4883
+ "n.m.",
4884
+ "n.y.",
4885
+ "n26",
4886
+ "nDof",
4887
+ "na",
4888
+ "naam",
4889
+ "nacimento",
4890
+ "naciments",
4891
+ "nacimiento",
4892
+ "nacimintooae",
4893
+ "nacional",
4894
+ "nacionaldeidentidad",
4895
+ "nacionaldelas",
4896
+ "nacionalidad",
4897
+ "nacionatidad",
4898
+ "nacionatidade",
4899
+ "nadeem",
4900
+ "nae",
4901
+ "nai",
4902
+ "naissance",
4903
+ "naisuntachtnationalityjnationalite",
4904
+ "naiyChice",
4905
+ "naiychice",
4906
+ "nal",
4907
+ "nalssance",
4908
+ "namc",
4909
+ "name",
4910
+ "name(s",
4911
+ "namen",
4912
+ "namenomcognomenum",
4913
+ "namenomcognomenum.surname",
4914
+ "namenomlcognomenum",
4915
+ "namerahul",
4916
+ "names",
4917
+ "names)1",
4918
+ "nanpe",
4919
+ "nanre",
4920
+ "nao",
4921
+ "naresh",
4922
+ "narozeni",
4923
+ "nas",
4924
+ "nascdate",
4925
+ "naschientscha",
4926
+ "nascimenta",
4927
+ "nascita",
4928
+ "nat",
4929
+ "nateen",
4930
+ "national",
4931
+ "nationalNatonalHegisterN",
4932
+ "nationald",
4933
+ "nationalidcard",
4934
+ "nationalidentification",
4935
+ "nationalidentity",
4936
+ "nationalite",
4937
+ "nationaliteit",
4938
+ "nationality",
4939
+ "nationality/",
4940
+ "nationalnatonalhegistern",
4941
+ "nationalte",
4942
+ "nationalty",
4943
+ "nationat",
4944
+ "nationattunabionao",
4945
+ "natleem",
4946
+ "natlona",
4947
+ "natlonalile",
4948
+ "natonai",
4949
+ "nc",
4950
+ "nc.",
4951
+ "ncarteicaran",
4952
+ "nce",
4953
+ "ncl",
4954
+ "nco",
4955
+ "nconsed",
4956
+ "ncr",
4957
+ "nd.",
4958
+ "nde",
4959
+ "ndnone",
4960
+ "ndo",
4961
+ "ndof",
4962
+ "nds",
4963
+ "ne",
4964
+ "near",
4965
+ "neb",
4966
+ "neb.",
4967
+ "nebr",
4968
+ "nebr.",
4969
+ "nederlanden",
4970
+ "nederlandse",
4971
+ "need",
4972
+ "neidentidade",
4973
+ "nelamangala",
4974
+ "nem",
4975
+ "neollty",
4976
+ "ner",
4977
+ "nes",
4978
+ "net",
4979
+ "neunem",
4980
+ "nev",
4981
+ "nev.",
4982
+ "new",
4983
+ "ney",
4984
+ "nez",
4985
+ "nft",
4986
+ "nga",
4987
+ "ngh",
4988
+ "ngo",
4989
+ "nguyen",
4990
+ "nho",
4991
+ "nia",
4992
+ "nick",
4993
+ "nid",
4994
+ "nidno",
4995
+ "niemann",
4996
+ "nihzain",
4997
+ "nilesh",
4998
+ "nis",
4999
+ "nl",
5000
+ "nldi",
5001
+ "nle",
5002
+ "nmad",
5003
+ "nn.",
5004
+ "nna",
5005
+ "no",
5006
+ "no.99800398",
5007
+ "no4411963345166",
5008
+ "nom",
5009
+ "nombre",
5010
+ "nombrenace",
5011
+ "nombres",
5012
+ "nome",
5013
+ "nomeiname",
5014
+ "none",
5015
+ "nor",
5016
+ "noreg",
5017
+ "norga",
5018
+ "norge",
5019
+ "norsk",
5020
+ "north",
5021
+ "norweglan",
5022
+ "not",
5023
+ "nothin",
5024
+ "nothin'",
5025
+ "nothing",
5026
+ "nothin\u2019",
5027
+ "nov",
5028
+ "nov-30",
5029
+ "nov.",
5030
+ "nowak",
5031
+ "npcc",
5032
+ "npe",
5033
+ "nre",
5034
+ "nregistre",
5035
+ "nro.de",
5036
+ "nrymll",
5037
+ "ns.",
5038
+ "nsciniddntt",
5039
+ "nse",
5040
+ "nsi",
5041
+ "nsl",
5042
+ "nsy",
5043
+ "nt",
5044
+ "nt.",
5045
+ "nta",
5046
+ "nte",
5047
+ "nto",
5048
+ "nts",
5049
+ "ntt",
5050
+ "nty",
5051
+ "nuff",
5052
+ "nuip",
5053
+ "number/",
5054
+ "numberinumero",
5055
+ "numer",
5056
+ "numerdowodu",
5057
+ "numero",
5058
+ "nummernumbernumero",
5059
+ "nummer|",
5060
+ "nummer|number|numero",
5061
+ "nun",
5062
+ "nurmber",
5063
+ "nus",
5064
+ "nuthin",
5065
+ "nuthin'",
5066
+ "nuthin\u2019",
5067
+ "nuurber",
5068
+ "nza",
5069
+ "n\u2019s",
5070
+ "n\u2019t",
5071
+ "o",
5072
+ "o'clock",
5073
+ "o's",
5074
+ "o'sullivan",
5075
+ "o.",
5076
+ "o.0",
5077
+ "o.O",
5078
+ "o.b",
5079
+ "o.c",
5080
+ "o.o",
5081
+ "o01",
5082
+ "o_0",
5083
+ "o_O",
5084
+ "o_o",
5085
+ "oae",
5086
+ "ob0181985",
5087
+ "obcansky",
5088
+ "observatory",
5089
+ "obywatelstwo",
5090
+ "ock",
5091
+ "oco",
5092
+ "oct",
5093
+ "oct.",
5094
+ "ocupcionestudiante",
5095
+ "odu",
5096
+ "oe",
5097
+ "oe7",
5098
+ "oen",
5099
+ "oenicueid",
5100
+ "oes",
5101
+ "of",
5102
+ "of.",
5103
+ "ofbirh",
5104
+ "ofcolumbia",
5105
+ "ofexpiryi",
5106
+ "ofexpiryidate",
5107
+ "ofindia",
5108
+ "ofissue",
5109
+ "ofissueidate",
5110
+ "oft",
5111
+ "ofthenetherlands",
5112
+ "ohn",
5113
+ "oifig",
5114
+ "oimagebroker",
5115
+ "oin",
5116
+ "okla",
5117
+ "okla.",
5118
+ "oklahoma",
5119
+ "okr",
5120
+ "ol",
5121
+ "ol'",
5122
+ "ol/",
5123
+ "old",
5124
+ "olf",
5125
+ "olk",
5126
+ "olo",
5127
+ "ol\u2019",
5128
+ "om",
5129
+ "oma",
5130
+ "ome",
5131
+ "oms",
5132
+ "on",
5133
+ "ona",
5134
+ "onatcate",
5135
+ "oncard",
5136
+ "ond",
5137
+ "one",
5138
+ "onetd",
5139
+ "ong",
5140
+ "oni",
5141
+ "onn",
5142
+ "ono",
5143
+ "ons",
5144
+ "onsy",
5145
+ "ont",
5146
+ "ony",
5147
+ "oob",
5148
+ "ood",
5149
+ "oof",
5150
+ "oou",
5151
+ "opa",
5152
+ "opy",
5153
+ "or",
5154
+ "or,97314",
5155
+ "ore",
5156
+ "ore.",
5157
+ "oreassexisexe",
5158
+ "oregon",
5159
+ "orenom(snomeprenum(sfirstname(s",
5160
+ "organ",
5161
+ "ori",
5162
+ "orientaldeluruguay",
5163
+ "ork",
5164
+ "orp",
5165
+ "ort",
5166
+ "ory",
5167
+ "os.",
5168
+ "os1",
5169
+ "ose",
5170
+ "osobistego",
5171
+ "osobnaiskaznica",
5172
+ "ost",
5173
+ "osterreich",
5174
+ "osy",
5175
+ "ot",
5176
+ "ota",
5177
+ "oth",
5178
+ "oti",
5179
+ "oto",
5180
+ "otostoc",
5181
+ "oue",
5182
+ "ought",
5183
+ "oumtry",
5184
+ "out",
5185
+ "ouw",
5186
+ "ov.",
5187
+ "ove",
5188
+ "overl",
5189
+ "ovest",
5190
+ "owldorepublica",
5191
+ "own",
5192
+ "ozm",
5193
+ "o\u2019clock",
5194
+ "o\u2019s",
5195
+ "p",
5196
+ "p.",
5197
+ "p.m",
5198
+ "p.m.",
5199
+ "pa",
5200
+ "pa.",
5201
+ "page",
5202
+ "page27",
5203
+ "pais",
5204
+ "pak!stan",
5205
+ "pakistan",
5206
+ "pal",
5207
+ "palistan",
5208
+ "panistan",
5209
+ "papel",
5210
+ "para",
5211
+ "parentsindia",
5212
+ "paris",
5213
+ "pass",
5214
+ "passpori",
5215
+ "passportica.com",
5216
+ "passporticainc",
5217
+ "passproof",
5218
+ "pastpassportipasseport",
5219
+ "paul",
5220
+ "pays",
5221
+ "pcc",
5222
+ "pecha",
5223
+ "pel",
5224
+ "peonle",
5225
+ "people",
5226
+ "per",
5227
+ "permanent",
5228
+ "permis",
5229
+ "permiss",
5230
+ "permit",
5231
+ "perosuee(Ortede",
5232
+ "perosuee(ortede",
5233
+ "personalausweis",
5234
+ "personalausweisrepublikosterreich",
5235
+ "personalauswers",
5236
+ "personalien",
5237
+ "personas",
5238
+ "peselpersonalnumber",
5239
+ "peter",
5240
+ "ph",
5241
+ "ph.d.",
5242
+ "phenpeih",
5243
+ "philippe",
5244
+ "phlle",
5245
+ "photo",
5246
+ "pia",
5247
+ "pichincha",
5248
+ "ping",
5249
+ "pir",
5250
+ "pis",
5251
+ "pith",
5252
+ "pitntan",
5253
+ "place",
5254
+ "placecs",
5255
+ "placeof",
5256
+ "plastificade",
5257
+ "platnost",
5258
+ "ple",
5259
+ "pm",
5260
+ "pny",
5261
+ "poco",
5262
+ "poder",
5263
+ "podpisdrzitele",
5264
+ "pohlaviysex",
5265
+ "pol",
5266
+ "polskie",
5267
+ "pond",
5268
+ "poople",
5269
+ "popular",
5270
+ "pos1",
5271
+ "potpis",
5272
+ "ppe",
5273
+ "pr.",
5274
+ "praha",
5275
+ "pranotnbres",
5276
+ "prbncens",
5277
+ "prenom(s",
5278
+ "prenoms",
5279
+ "prenum(st",
5280
+ "president",
5281
+ "prezime",
5282
+ "prezimerburnom",
5283
+ "prezydent",
5284
+ "prijmeni",
5285
+ "primer",
5286
+ "print",
5287
+ "pro",
5288
+ "prof",
5289
+ "prof.",
5290
+ "pronoms",
5291
+ "proof",
5292
+ "prorarob",
5293
+ "prukaz",
5294
+ "pt.",
5295
+ "put",
5296
+ "py3",
5297
+ "q",
5298
+ "q.",
5299
+ "q4",
5300
+ "qate",
5301
+ "qlveo",
5302
+ "que",
5303
+ "quevedo",
5304
+ "quito",
5305
+ "r",
5306
+ "r.",
5307
+ "r56",
5308
+ "raN",
5309
+ "rac",
5310
+ "radar",
5311
+ "rafay",
5312
+ "rafio",
5313
+ "rafner",
5314
+ "rahman",
5315
+ "rajiv",
5316
+ "rajput",
5317
+ "rak",
5318
+ "ral",
5319
+ "ran",
5320
+ "ras",
5321
+ "rass",
5322
+ "rau",
5323
+ "rby",
5324
+ "rca",
5325
+ "rch",
5326
+ "rd",
5327
+ "re",
5328
+ "re.",
5329
+ "re/",
5330
+ "recistro",
5331
+ "red",
5332
+ "reg",
5333
+ "registro",
5334
+ "regular",
5335
+ "remarks",
5336
+ "ren",
5337
+ "rennames",
5338
+ "rep",
5339
+ "rep.",
5340
+ "repubiique",
5341
+ "republic",
5342
+ "republica",
5343
+ "republicadechile",
5344
+ "republicadelecuador",
5345
+ "republik",
5346
+ "republika",
5347
+ "republioue",
5348
+ "republique",
5349
+ "republiquefederale",
5350
+ "repubuic",
5351
+ "repurhique",
5352
+ "rer",
5353
+ "res",
5354
+ "residence",
5355
+ "resident",
5356
+ "restrepo",
5357
+ "restriction",
5358
+ "restrictions",
5359
+ "restrictionsl",
5360
+ "ret",
5361
+ "rev",
5362
+ "rev.",
5363
+ "rga",
5364
+ "rge",
5365
+ "rh",
5366
+ "ria",
5367
+ "ricany",
5368
+ "rie",
5369
+ "rin",
5370
+ "rio",
5371
+ "ris",
5372
+ "risklow",
5373
+ "riz",
5374
+ "rk.",
5375
+ "rks",
5376
+ "rma",
5377
+ "rno",
5378
+ "rnone",
5379
+ "rob",
5380
+ "robellia",
5381
+ "rodenia/",
5382
+ "rof",
5383
+ "rom",
5384
+ "romana",
5385
+ "romanarahman",
5386
+ "ron",
5387
+ "ros",
5388
+ "rosenberg",
5389
+ "rosrue",
5390
+ "roy",
5391
+ "royaume",
5392
+ "rp",
5393
+ "rp.",
5394
+ "rre",
5395
+ "rry",
5396
+ "rs",
5397
+ "rs.",
5398
+ "rsamund",
5399
+ "rsk",
5400
+ "rst",
5401
+ "rta",
5402
+ "rte",
5403
+ "rth",
5404
+ "rti",
5405
+ "rua",
5406
+ "ruatecuntla",
5407
+ "rudolf",
5408
+ "rue",
5409
+ "rule",
5410
+ "rumana",
5411
+ "run",
5412
+ "rural",
5413
+ "ry/",
5414
+ "ryi",
5415
+ "ryl",
5416
+ "s",
5417
+ "s's",
5418
+ "s)1",
5419
+ "s.",
5420
+ "s.2",
5421
+ "s.c.",
5422
+ "s0004156",
5423
+ "s14",
5424
+ "s:5",
5425
+ "sSinnature",
5426
+ "sakwehoe",
5427
+ "salem",
5428
+ "salvador",
5429
+ "samesoraeihoa",
5430
+ "sampl",
5431
+ "sample",
5432
+ "samplecard",
5433
+ "santo",
5434
+ "sarkar",
5435
+ "sas",
5436
+ "sc",
5437
+ "sce",
5438
+ "sch",
5439
+ "schoeffel",
5440
+ "schweizerische",
5441
+ "schweizerischeeidgenossenschaft",
5442
+ "sci",
5443
+ "sconsin",
5444
+ "sd",
5445
+ "sdoa1234567890112670319180",
5446
+ "sed",
5447
+ "see",
5448
+ "segundo",
5449
+ "seinsampl",
5450
+ "sekar",
5451
+ "select",
5452
+ "sen",
5453
+ "sen.",
5454
+ "sep",
5455
+ "sep.",
5456
+ "sept",
5457
+ "sept.",
5458
+ "sept2006.bogotad.c",
5459
+ "ser",
5460
+ "seralt",
5461
+ "servicio",
5462
+ "servigescard",
5463
+ "sex",
5464
+ "sex/",
5465
+ "sexe",
5466
+ "sexfhgt:5",
5467
+ "sexi",
5468
+ "sexm",
5469
+ "sexo",
5470
+ "sexofangrebestadocmlsoltero",
5471
+ "sfs",
5472
+ "sh.",
5473
+ "sha",
5474
+ "shafgat",
5475
+ "shahiain",
5476
+ "shahriar",
5477
+ "shahzain",
5478
+ "shall",
5479
+ "she",
5480
+ "she's",
5481
+ "sheboygan",
5482
+ "shefkete",
5483
+ "shehuain",
5484
+ "she\u2019s",
5485
+ "shgiptare",
5486
+ "shn",
5487
+ "should",
5488
+ "shqiperise",
5489
+ "shufti",
5490
+ "sia",
5491
+ "sign",
5492
+ "signature",
5493
+ "signature/",
5494
+ "sil",
5495
+ "silvia",
5496
+ "simmons89136ak9tt",
5497
+ "sin",
5498
+ "singh",
5499
+ "sinuisignatureisignature",
5500
+ "sionature",
5501
+ "sipees",
5502
+ "sk",
5503
+ "ska",
5504
+ "sky",
5505
+ "slamic",
5506
+ "slimani",
5507
+ "slo",
5508
+ "sloinnetsurnameinom",
5509
+ "smooth",
5510
+ "so9",
5511
+ "sobrenome",
5512
+ "sojli",
5513
+ "soltero",
5514
+ "somethin",
5515
+ "somethin'",
5516
+ "something",
5517
+ "somethin\u2019",
5518
+ "son",
5519
+ "sonia",
5520
+ "south",
5521
+ "soyad",
5522
+ "space",
5523
+ "speci2021",
5524
+ "specimen",
5525
+ "specmen",
5526
+ "spol",
5527
+ "spol/",
5528
+ "sr",
5529
+ "sred",
5530
+ "srichar",
5531
+ "srs",
5532
+ "srttio",
5533
+ "ss.",
5534
+ "ssa",
5535
+ "ssd",
5536
+ "sse",
5537
+ "ssinnature",
5538
+ "sst",
5539
+ "sstenbyen",
5540
+ "st",
5541
+ "st.",
5542
+ "staatsangehbrigkeit",
5543
+ "staatsangehorigkei",
5544
+ "staatsangehorigkeit",
5545
+ "staatsangehorigkeit?nationality",
5546
+ "staatsangehorigkoiunationality/",
5547
+ "staesofahrca",
5548
+ "state",
5549
+ "states",
5550
+ "statniobcanstvi",
5551
+ "stay",
5552
+ "ste",
5553
+ "steven",
5554
+ "stewart",
5555
+ "stj",
5556
+ "sto",
5557
+ "street",
5558
+ "sts",
5559
+ "stut",
5560
+ "suDare",
5561
+ "suascrapuwlrofpakistan",
5562
+ "sudare",
5563
+ "sue",
5564
+ "sui",
5565
+ "suisse",
5566
+ "sur",
5567
+ "surname",
5568
+ "surname/",
5569
+ "surnames",
5570
+ "surnamo",
5571
+ "surnave",
5572
+ "surrame",
5573
+ "sved",
5574
+ "svizra",
5575
+ "svizzera",
5576
+ "swiss",
5577
+ "syed",
5578
+ "s\u2019s",
5579
+ "t",
5580
+ "t's",
5581
+ "t(o",
5582
+ "t.",
5583
+ "t.n",
5584
+ "t09",
5585
+ "t2",
5586
+ "t22000129",
5587
+ "t22001341",
5588
+ "t2RESTRICTIONS",
5589
+ "t2restrictions",
5590
+ "t36",
5591
+ "t47",
5592
+ "t52400179",
5593
+ "t602301f1",
5594
+ "t:5",
5595
+ "tAontas",
5596
+ "tHy",
5597
+ "ta",
5598
+ "tad",
5599
+ "tag",
5600
+ "tamani",
5601
+ "tan",
5602
+ "tanitim",
5603
+ "taontas",
5604
+ "tar",
5605
+ "tarihi",
5606
+ "tarjeta",
5607
+ "tas",
5608
+ "tay",
5609
+ "tco",
5610
+ "td.",
5611
+ "tdentity",
5612
+ "te",
5613
+ "ted",
5614
+ "tederalrepublicofgermanyirepublique",
5615
+ "tegucigalpa",
5616
+ "tel",
5617
+ "tenn",
5618
+ "tenn.",
5619
+ "ter",
5620
+ "tercera",
5621
+ "termin",
5622
+ "terrorist",
5623
+ "tes",
5624
+ "test",
5625
+ "test**nombres",
5626
+ "testapellido",
5627
+ "testapellidoi",
5628
+ "tevoes",
5629
+ "th/",
5630
+ "tha",
5631
+ "that",
5632
+ "that's",
5633
+ "that\u2019s",
5634
+ "the",
5635
+ "thelede",
5636
+ "them",
5637
+ "theneesamolonesd",
5638
+ "thenetherlands",
5639
+ "there",
5640
+ "there's",
5641
+ "there\u2019s",
5642
+ "these",
5643
+ "they",
5644
+ "thi",
5645
+ "thierry",
5646
+ "this",
5647
+ "this's",
5648
+ "this\u2019s",
5649
+ "thomas",
5650
+ "those",
5651
+ "thr",
5652
+ "throughoutindia",
5653
+ "thy",
5654
+ "th|",
5655
+ "tia",
5656
+ "tiau",
5657
+ "tid",
5658
+ "tig",
5659
+ "tilar",
5660
+ "tilutor",
5661
+ "tim",
5662
+ "tin",
5663
+ "tio",
5664
+ "tipo",
5665
+ "tir",
5666
+ "tirana",
5667
+ "tirm",
5668
+ "tirycountrypays",
5669
+ "tit",
5670
+ "titulaire",
5671
+ "titulaireldu",
5672
+ "titulatre",
5673
+ "titutar",
5674
+ "tla",
5675
+ "tle",
5676
+ "tlit6",
5677
+ "tmas",
5678
+ "tn",
5679
+ "tno",
5680
+ "to",
5681
+ "toDatfExpny",
5682
+ "toc",
5683
+ "todatfexpny",
5684
+ "tof",
5685
+ "ton",
5686
+ "ton7Name",
5687
+ "ton7name",
5688
+ "topeka",
5689
+ "tor",
5690
+ "tos",
5691
+ "tot",
5692
+ "town",
5693
+ "tr",
5694
+ "tra",
5695
+ "transportdepartment",
5696
+ "transporte",
5697
+ "tre",
5698
+ "tro",
5699
+ "trot.n",
5700
+ "try",
5701
+ "tsui",
5702
+ "tt",
5703
+ "tte",
5704
+ "ttuaire",
5705
+ "tum",
5706
+ "tur",
5707
+ "turkman",
5708
+ "tus",
5709
+ "tusainm(neacha)iforenave(siprenoms",
5710
+ "tut",
5711
+ "tvi",
5712
+ "two",
5713
+ "ty/",
5714
+ "type",
5715
+ "typeO+",
5716
+ "typeo+",
5717
+ "t\u2019s",
5718
+ "u",
5719
+ "u.",
5720
+ "u.sa",
5721
+ "uay",
5722
+ "uce",
5723
+ "ud",
5724
+ "ude",
5725
+ "ued",
5726
+ "uez",
5727
+ "uff",
5728
+ "ug.",
5729
+ "uic",
5730
+ "uinced",
5731
+ "uio",
5732
+ "uip",
5733
+ "uir",
5734
+ "uk",
5735
+ "ul.",
5736
+ "ula",
5737
+ "uld",
5738
+ "ule",
5739
+ "ullah",
5740
+ "ullstein",
5741
+ "uly",
5742
+ "um/",
5743
+ "ume",
5744
+ "umhr",
5745
+ "un.",
5746
+ "und",
5747
+ "under",
5748
+ "uniaue",
5749
+ "union",
5750
+ "unique",
5751
+ "united",
5752
+ "unitedkingdom",
5753
+ "unitedstates",
5754
+ "untedrwooou",
5755
+ "unterschnft",
5756
+ "unterschrift",
5757
+ "unterschrift.derinhaberin",
5758
+ "ur",
5759
+ "ura",
5760
+ "ure",
5761
+ "urg",
5762
+ "urodzenia",
5763
+ "uruguaya",
5764
+ "ury",
5765
+ "us",
5766
+ "usa",
5767
+ "use",
5768
+ "usmhon<<<<<<<<dob",
5769
+ "ust",
5770
+ "ut",
5771
+ "uth",
5772
+ "utopa",
5773
+ "utopia",
5774
+ "utopiatutopia",
5775
+ "uzorak",
5776
+ "uzoslo",
5777
+ "v",
5778
+ "v.",
5779
+ "v.s",
5780
+ "v.s.",
5781
+ "v.v",
5782
+ "v01x0ot47",
5783
+ "v11",
5784
+ "v_v",
5785
+ "va",
5786
+ "va.",
5787
+ "vahrby",
5788
+ "valid",
5789
+ "validadeiexpir",
5790
+ "validtill",
5791
+ "valladares",
5792
+ "van",
5793
+ "vao",
5794
+ "vd",
5795
+ "ve",
5796
+ "ved",
5797
+ "vemo",
5798
+ "ven",
5799
+ "vencimiento",
5800
+ "venezuela",
5801
+ "venk390590bc97dt36",
5802
+ "venyuperptit.edeenpong",
5803
+ "veo",
5804
+ "ver",
5805
+ "verificacion",
5806
+ "veteran",
5807
+ "via",
5808
+ "victoria",
5809
+ "vid",
5810
+ "viee",
5811
+ "view",
5812
+ "vijedi",
5813
+ "vil",
5814
+ "vin",
5815
+ "vla",
5816
+ "vo/",
5817
+ "vomamen",
5818
+ "von",
5819
+ "voornamen",
5820
+ "vornaman",
5821
+ "vorname(n",
5822
+ "vorname(niprenom(s)nome",
5823
+ "vorname(ntprenom(snome(prenum(sgiven",
5824
+ "vornamen",
5825
+ "vornamon",
5826
+ "vp",
5827
+ "vrijedi",
5828
+ "vs",
5829
+ "vs.",
5830
+ "vychod",
5831
+ "vzor",
5832
+ "w",
5833
+ "w's",
5834
+ "w.",
5835
+ "w/o",
5836
+ "w185Ib",
5837
+ "w185ib",
5838
+ "w51.0",
5839
+ "wWW",
5840
+ "wak",
5841
+ "walter",
5842
+ "warszawa",
5843
+ "was",
5844
+ "wash",
5845
+ "wash.",
5846
+ "washington",
5847
+ "waut",
5848
+ "way",
5849
+ "waznosci",
5850
+ "wbt09",
5851
+ "wcard",
5852
+ "wdoni",
5853
+ "we",
5854
+ "weighthair",
5855
+ "were",
5856
+ "wg130ib",
5857
+ "wgt",
5858
+ "what",
5859
+ "what's",
5860
+ "what\u2019s",
5861
+ "when",
5862
+ "when's",
5863
+ "when\u2019s",
5864
+ "where",
5865
+ "where's",
5866
+ "where\u2019s",
5867
+ "whittingham",
5868
+ "who",
5869
+ "who's",
5870
+ "who\u2019s",
5871
+ "why",
5872
+ "why's",
5873
+ "why\u2019s",
5874
+ "wi",
5875
+ "will",
5876
+ "willeke",
5877
+ "williams",
5878
+ "window",
5879
+ "wis",
5880
+ "wis.",
5881
+ "wisconsin",
5882
+ "without",
5883
+ "wlliams",
5884
+ "wmif",
5885
+ "wmustermann",
5886
+ "wo",
5887
+ "woT140",
5888
+ "wog",
5889
+ "wolverhamptonwv3ouw",
5890
+ "worship",
5891
+ "worth",
5892
+ "wot140",
5893
+ "would",
5894
+ "woy",
5895
+ "wule",
5896
+ "www",
5897
+ "www.buyrealpassportonline.com",
5898
+ "www.uida",
5899
+ "www.uidai.gov.in",
5900
+ "wy1",
5901
+ "wydajacyissuingauthority",
5902
+ "w\u2019s",
5903
+ "x",
5904
+ "x\"xx",
5905
+ "x'",
5906
+ "x'x",
5907
+ "x'xx",
5908
+ "x'xxxx",
5909
+ "x(x",
5910
+ "x-dd",
5911
+ "x.",
5912
+ "x.X",
5913
+ "x.d",
5914
+ "x.d.x.dd",
5915
+ "x.x",
5916
+ "x.x.",
5917
+ "x.x.(xxxx",
5918
+ "x.x.dddd",
5919
+ "x.x.x",
5920
+ "x.x.x.ddxxx.d",
5921
+ "x.xx",
5922
+ "x.xx-dd.ddd.ddd",
5923
+ "x.xxx",
5924
+ "x.xxxx",
5925
+ "x.xy",
5926
+ "x//x",
5927
+ "x/d",
5928
+ "x/x",
5929
+ "x0001001",
5930
+ "xD",
5931
+ "xDD",
5932
+ "xX",
5933
+ "xXX",
5934
+ "xXd",
5935
+ "xXx-",
5936
+ "xXxx",
5937
+ "xXxxx",
5938
+ "xXxxxx",
5939
+ "x]XXXX",
5940
+ "x]Xxxx",
5941
+ "x]Xxxxx",
5942
+ "x]xxxx",
5943
+ "x_X",
5944
+ "x_d",
5945
+ "x_x",
5946
+ "xd",
5947
+ "xdXXXX",
5948
+ "xdd",
5949
+ "xdd.d",
5950
+ "xdd/dd/dddd",
5951
+ "xddd",
5952
+ "xdddXx",
5953
+ "xdddd",
5954
+ "xdddd:dd",
5955
+ "xddddxd",
5956
+ "xdddxddxx",
5957
+ "xdddxx",
5958
+ "xddx",
5959
+ "xddxddxdd",
5960
+ "xddxdxxdd",
5961
+ "xdxddddx",
5962
+ "xdxddddxd",
5963
+ "xdxxxx",
5964
+ "xdxxxxddxxxxd",
5965
+ "xex",
5966
+ "xf",
5967
+ "xk",
5968
+ "xoe",
5969
+ "xwx",
5970
+ "xx",
5971
+ "xx#dddd",
5972
+ "xx'",
5973
+ "xx'x",
5974
+ "xx'xx",
5975
+ "xx,dddd",
5976
+ "xx-dd",
5977
+ "xx.",
5978
+ "xx.dddd",
5979
+ "xx/",
5980
+ "xxXddd",
5981
+ "xxXxx",
5982
+ "xxXxxx",
5983
+ "xxXxxxXxxxx",
5984
+ "xx[x",
5985
+ "xxd",
5986
+ "xxdd",
5987
+ "xxdddd",
5988
+ "xxdddxx",
5989
+ "xxdddxxx",
5990
+ "xxdxxdddxxxx-dxxx",
5991
+ "xxx",
5992
+ "xxx!xxxx",
5993
+ "xxx'x",
5994
+ "xxx'xxxx",
5995
+ "xxx-",
5996
+ "xxx-dd",
5997
+ "xxx-dddd",
5998
+ "xxx.xx",
5999
+ "xxx.xxxx",
6000
+ "xxx.xxxx.xxx",
6001
+ "xxx.xxxx.xxx.xx",
6002
+ "xxx/",
6003
+ "xxx/xx",
6004
+ "xxx:d",
6005
+ "xxx:dd",
6006
+ "xxx:dd/dd/dddd",
6007
+ "xxxX",
6008
+ "xxxXxxxx",
6009
+ "xxxd",
6010
+ "xxxdXxxx",
6011
+ "xxxdd",
6012
+ "xxxdd/dd/dddd",
6013
+ "xxxddd",
6014
+ "xxxdddd",
6015
+ "xxxdddxdd",
6016
+ "xxxdxdxd",
6017
+ "xxxdxx",
6018
+ "xxxdxxx",
6019
+ "xxxdxxxx",
6020
+ "xxxx",
6021
+ "xxxx'",
6022
+ "xxxx'x",
6023
+ "xxxx'xxxx",
6024
+ "xxxx(Xxxxx",
6025
+ "xxxx(dxxxx",
6026
+ "xxxx(x",
6027
+ "xxxx(xx",
6028
+ "xxxx(xxxx",
6029
+ "xxxx(xxxx(x)xxxx",
6030
+ "xxxx(xxxx(xxxx(x",
6031
+ "xxxx(xxxx(xxxx(xxxx(xxxx",
6032
+ "xxxx(xxxx)xxxx(xxxx",
6033
+ "xxxx)d",
6034
+ "xxxx**xxxx",
6035
+ "xxxx*xxx",
6036
+ "xxxx+",
6037
+ "xxxx,dddd",
6038
+ "xxxx-d",
6039
+ "xxxx-dXddXXX",
6040
+ "xxxx-dxddxxx",
6041
+ "xxxx.dddd",
6042
+ "xxxx.x",
6043
+ "xxxx.xx",
6044
+ "xxxx.xxx",
6045
+ "xxxx.xxx/xxxx",
6046
+ "xxxx.xxxx",
6047
+ "xxxx/",
6048
+ "xxxx:d",
6049
+ "xxxx:dd",
6050
+ "xxxx:dd/dd/dddd",
6051
+ "xxxx:dddd",
6052
+ "xxxx<<<<xxx",
6053
+ "xxxx<<xxxx",
6054
+ "xxxx?xxxx",
6055
+ "xxxx@xxxx.xxx.xx",
6056
+ "xxxxX(dxxxx",
6057
+ "xxxxX+",
6058
+ "xxxxXx",
6059
+ "xxxxXxxx",
6060
+ "xxxxXxxxx",
6061
+ "xxxxXxxxxXxxxxX",
6062
+ "xxxxd",
6063
+ "xxxxdd",
6064
+ "xxxxdddd",
6065
+ "xxxxdddd.xxxx.x",
6066
+ "xxxxddddxxddxxdd",
6067
+ "xxxxddddxxdxx",
6068
+ "xxxxddxdd",
6069
+ "xxxxddxxdd",
6070
+ "xxxxddxxx",
6071
+ "xxxxddxxxdddd",
6072
+ "xxxxdx",
6073
+ "xxxxdxx",
6074
+ "xxxxdxxdddd",
6075
+ "xxxxdxxx",
6076
+ "xxxxdxxxx",
6077
+ "xxxx|",
6078
+ "xxxx|xxxx|xxxx",
6079
+ "xxxx\u2019",
6080
+ "xxxx\u2019x",
6081
+ "xxx\u2019x",
6082
+ "xx\u2019",
6083
+ "xx\u2019x",
6084
+ "xx\u2019xx",
6085
+ "x\u2019",
6086
+ "x\u2019x",
6087
+ "x\u2019xxxx",
6088
+ "x\ufe35x",
6089
+ "y",
6090
+ "y'",
6091
+ "y's",
6092
+ "y.",
6093
+ "ya",
6094
+ "yad",
6095
+ "yal",
6096
+ "yasmin",
6097
+ "yasmine",
6098
+ "ybro",
6099
+ "yed",
6100
+ "yen",
6101
+ "yer",
6102
+ "yes",
6103
+ "ygar",
6104
+ "yit",
6105
+ "yluce",
6106
+ "yof",
6107
+ "yok",
6108
+ "york",
6109
+ "yoti",
6110
+ "you",
6111
+ "younus",
6112
+ "ype",
6113
+ "ysN",
6114
+ "ysc",
6115
+ "ysn",
6116
+ "yzx211v11",
6117
+ "y\u2019",
6118
+ "y\u2019s",
6119
+ "z",
6120
+ "z.",
6121
+ "z3xwmx12xwms2",
6122
+ "za0000089",
6123
+ "zen",
6124
+ "zid",
6125
+ "zor",
6126
+ "zra",
6127
+ "zzU319",
6128
+ "zzc",
6129
+ "zzu319",
6130
+ "|",
6131
+ "}",
6132
+ "\u00a0",
6133
+ "\u00ac",
6134
+ "\u00ac_\u00ac",
6135
+ "\u00af",
6136
+ "\u00af\\(x)/\u00af",
6137
+ "\u00af\\(\u30c4)/\u00af",
6138
+ "\u00b0",
6139
+ "\u00b0C.",
6140
+ "\u00b0F.",
6141
+ "\u00b0K.",
6142
+ "\u00b0X.",
6143
+ "\u00b0c.",
6144
+ "\u00b0f.",
6145
+ "\u00b0k.",
6146
+ "\u00b0x.",
6147
+ "\u00e4",
6148
+ "\u00e4.",
6149
+ "\u00f6",
6150
+ "\u00f6.",
6151
+ "\u00fc",
6152
+ "\u00fc.",
6153
+ "\u0ca0",
6154
+ "\u0ca0_\u0ca0",
6155
+ "\u0ca0\ufe35\u0ca0",
6156
+ "\u2014",
6157
+ "\u2018",
6158
+ "\u2018S",
6159
+ "\u2018X",
6160
+ "\u2018s",
6161
+ "\u2018x",
6162
+ "\u2019",
6163
+ "\u2019-(",
6164
+ "\u2019-)",
6165
+ "\u2019Cause",
6166
+ "\u2019Cos",
6167
+ "\u2019Coz",
6168
+ "\u2019Cuz",
6169
+ "\u2019S",
6170
+ "\u2019X",
6171
+ "\u2019Xxx",
6172
+ "\u2019Xxxxx",
6173
+ "\u2019am",
6174
+ "\u2019bout",
6175
+ "\u2019cause",
6176
+ "\u2019cos",
6177
+ "\u2019coz",
6178
+ "\u2019cuz",
6179
+ "\u2019d",
6180
+ "\u2019em",
6181
+ "\u2019ll",
6182
+ "\u2019m",
6183
+ "\u2019nuff",
6184
+ "\u2019re",
6185
+ "\u2019s",
6186
+ "\u2019ve",
6187
+ "\u2019x",
6188
+ "\u2019xx",
6189
+ "\u2019xxx",
6190
+ "\u2019xxxx",
6191
+ "\u2019y",
6192
+ "\u2019\u2019",
6193
+ "\u2501",
6194
+ "\u253b",
6195
+ "\u253b\u2501\u253b",
6196
+ "\u256f",
6197
+ "\u25a1",
6198
+ "\ufe35",
6199
+ "\uff09"
6200
+ ]
app/NER/model-best/vocab/vectors ADDED
Binary file (128 Bytes). View file
 
app/NER/model-best/vocab/vectors.cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "mode":"default"
3
+ }
app/__pycache__/functions.cpython-38.pyc ADDED
Binary file (1.69 kB). View file
 
app/extract_gender/__pycache__/gender_extractor.cpython-38.pyc CHANGED
Binary files a/app/extract_gender/__pycache__/gender_extractor.cpython-38.pyc and b/app/extract_gender/__pycache__/gender_extractor.cpython-38.pyc differ
 
app/extract_gender/gender_extractor.py CHANGED
@@ -6,17 +6,22 @@ def gender_extract(ocr_list):
6
  for word in words.split():
7
  word = word.upper()
8
  if word in gender_labels:
 
9
  return True, word, ocr_list
10
  elif "FEMALE" in word:
 
11
  gender = 'F'
12
  return True, gender, ocr_list
13
  elif "MALE" in word:
 
14
  gender = 'M'
15
  return True, gender, ocr_list
16
  elif "FEMENINO" in word:
 
17
  gender = "F"
18
  return True, gender, ocr_list
19
  elif "MASCULINA" in word:
 
20
  gender = "M"
21
  return True, gender, ocr_list
22
 
 
6
  for word in words.split():
7
  word = word.upper()
8
  if word in gender_labels:
9
+ # ocr_list.pop(word)
10
  return True, word, ocr_list
11
  elif "FEMALE" in word:
12
+ # ocr_list.pop(word)
13
  gender = 'F'
14
  return True, gender, ocr_list
15
  elif "MALE" in word:
16
+ # ocr_list.pop(word)
17
  gender = 'M'
18
  return True, gender, ocr_list
19
  elif "FEMENINO" in word:
20
+ # ocr_list.pop(word)
21
  gender = "F"
22
  return True, gender, ocr_list
23
  elif "MASCULINA" in word:
24
+ # ocr_list.pop(word)
25
  gender = "M"
26
  return True, gender, ocr_list
27
 
app/functions.py ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from PIL import Image, ImageFilter
2
+ import cv2
3
+ import pandas as pd
4
+
5
+ def get_index(string, substring):
6
+
7
+ start_index = string.find(substring) # Starting index of "shahzain"
8
+ end_index = start_index + len(substring) # Ending index of "shahzain"
9
+
10
+ return int(start_index), int(end_index)
11
+
12
+ def get_latest_value_from_csv(search_key):
13
+ try:
14
+ output_dict = {}
15
+ df = pd.read_csv("/content/log.csv")
16
+ filtered_df = df[df["OCR Extracted Text"] == search_key]
17
+ # Sort the filtered DataFrame by the timestamp column in descending order
18
+ sorted_df = filtered_df.sort_values("timestamp", ascending=False)
19
+ if not filtered_df.empty:
20
+ # Extract the latest row
21
+ latest_row = sorted_df.iloc[0]
22
+ # Print the values of specific columns that are not null
23
+ columns_to_print = ["NAME", "DOB", "GENDER", "COUNTRY", "DOCUMENT NUMBER"]
24
+ for column in columns_to_print:
25
+ if pd.notnull(latest_row[column]):
26
+ output_dict[column] = latest_row[column]
27
+ print("Training data from user", output_dict)
28
+ else:
29
+ print("Annotated Data Not Found")
30
+
31
+ return True, output_dict
32
+ except Exception as e:
33
+ print("Exception in e ", str(e))
34
+ return False, output_dict
35
+
36
+ def image_enhacement(file_path):
37
+
38
+ image = Image.open(file_path)
39
+ upscaled_image = image.resize((image.width*2, image.height*2), resample=Image.Resampling.BILINEAR)
40
+ sharpened_image = upscaled_image.filter(ImageFilter.SHARPEN)
41
+ sharpened_image.save(file_path)
42
+
43
+ sharpened_image = cv2.imread(file_path)
44
+ smoothed_image = cv2.GaussianBlur(sharpened_image, (5, 5), 0) # Apply smoothing
45
+
46
+ # Set the desired output level range
47
+ output_min = 55
48
+ output_max = 255
49
+
50
+ # Calculate the minimum and maximum pixel values in the image
51
+ # min_value = np.min(image)
52
+ # max_value = np.max(image)
53
+
54
+ normalized_image = cv2.normalize(smoothed_image, None, output_min, output_max, cv2.NORM_MINMAX) # Normalize the image to the desired output level range
55
+ cv2.imwrite(file_path, normalized_image)
app/images/idcards/input.jpg CHANGED
app/training_data/annotated_data.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "classes": [
3
+ "NAME",
4
+ "COUNTRY",
5
+ "GENDER",
6
+ "DOB",
7
+ "DOCUMENT NUMBER"
8
+ ],
9
+ "annotations": [
10
+ [
11
+ "PAKISTAN Nationalldentity Card ISLAMIC REPUBLIC OF PAKISTAN Name Muhammad Owais Siddiqui Father Name Zia Ud Din Siddiqui Country of Stay Gender M Pakistan Identity Number Date of Birth 42201-1177064-3 11.08.2001 Date of Expiry Date of Issue 24.09.2019 24.09.2029 Holder's Signature",
12
+ {
13
+ "entities": [
14
+ [
15
+ 65,
16
+ 88,
17
+ "NAME"
18
+ ],
19
+ [
20
+ 185,
21
+ 200,
22
+ "DOCUMENT NUMBER"
23
+ ]
24
+ ]
25
+ }
26
+ ]
27
+ ]
28
+ }
deploy.py CHANGED
@@ -1,22 +1,26 @@
1
  import gradio as gr
2
- import numpy as np
3
  from app.extract_country.country_dictionary import find_country
4
  from app.extract_dates.date_engine import date_extractor
5
  from app.extract_gender.gender_extractor import gender_extract
6
  from app.extract_identity_number.doc_number_extractor import doc_number
7
- from app.ocr_engine.ocr import OCR
8
- from paddleocr import PaddleOCR
9
- from app.layoutLM_api.api import custom_ocr
10
  import cv2
11
- from PIL import Image, ImageFilter
 
12
 
13
 
14
- def ocr(image_input, webcam_input, card_type_input):
 
15
 
16
- file_path = 'app/images/idcards/input.jpg'
 
 
 
 
 
 
17
 
18
- print("image_input : ", type(image_input))
19
- print("Webcam Image : ", type(webcam_input))
20
 
21
  if image_input is not None and image_input.any():
22
  print("In input image")
@@ -25,80 +29,161 @@ def ocr(image_input, webcam_input, card_type_input):
25
  else:
26
  print("In webcam")
27
  cv2.imwrite(file_path, cv2.flip(webcam_input, 1))
28
-
29
- image = Image.open(file_path)
30
- upscaled_image = image.resize((image.width*2, image.height*2), resample=Image.Resampling.BILINEAR)
31
- sharpened_image = upscaled_image.filter(ImageFilter.SHARPEN)
32
- sharpened_image.save(file_path)
33
-
34
- sharpened_image = cv2.imread(file_path)
35
- # Apply smoothing
36
- smoothed_image = cv2.GaussianBlur(sharpened_image, (5, 5), 0)
37
- # Set the desired output level range
38
- output_min = 55
39
- output_max = 255
40
-
41
- # Calculate the minimum and maximum pixel values in the image
42
- min_value = np.min(image)
43
- max_value = np.max(image)
44
-
45
- # Normalize the image to the desired output level range
46
- normalized_image = cv2.normalize(smoothed_image, None, output_min, output_max, cv2.NORM_MINMAX)
47
-
48
 
49
- # Save the upscaled, smoothed, and sharpened image
50
- cv2.imwrite(file_path, normalized_image)
 
51
 
52
- # print(type(input_img))
53
- ocr = PaddleOCR(use_angle_cls=True, lang='en') # need to run only once to download and load model into memory
 
 
54
 
55
- # with open(file_path, "wb+") as file_object:
56
- # file_object.write(input_img.file.read())
57
-
58
- dictionary = custom_ocr(file_path, card_type_input)
59
-
60
- if '' in list(dictionary.values()):
61
  print("Missing value found in Dic")
62
-
63
- extract_text = []
64
- result = ocr.ocr(file_path, cls=True)
65
 
66
- extract_text = [line[1][0] for res in result for line in res]
67
- print("extract_text", extract_text)
68
-
69
- if len(dictionary['gender']) == 0:
70
  print("Gender Missing")
71
  gender_found, gender, ocr_list = gender_extract(extract_text)
72
-
73
- dictionary["gender"] = gender if gender_found else None
74
 
75
- if len(dictionary['dob']) == 0:
 
 
76
  print("Dob Missing")
77
  dob_found, dob, ocr_list = date_extractor(extract_text)
78
 
79
- dictionary["dob"] = dob if dob_found else None
80
 
81
- if len(dictionary['country']) == 0:
82
  print("Country Missing")
83
  country_found, country, ocr_list = find_country(extract_text)
84
  dictionary["country"] = country if country_found else None
85
 
86
- if len(dictionary['document_number']) == 0:
87
  print("document Number missing")
88
 
89
  document_number_found, document_number, ocr_list = doc_number(extract_text)
90
- dictionary["document_number"] = document_number if document_number_found else None
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
91
 
 
92
 
93
- print("Updated Dict ",dictionary)
94
- response = {"Status" : 200, "OCR" : dictionary}
95
- return response
96
-
97
- # Define the input objects
98
- image_input = gr.inputs.Image(label="Upload Image")
99
- webcam_input = gr.inputs.Image(label="Webcam", source="webcam")
100
- card_type_input = gr.inputs.Dropdown(["passport", "id_card"], label="Card Type")
101
 
102
- # Create the Gradio interface
103
- interface = gr.Interface(fn=ocr, inputs=[image_input, webcam_input, card_type_input], outputs="json")
104
- interface.launch()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  import gradio as gr
2
+ from app.NER.NER import name_entity_recognizer
3
  from app.extract_country.country_dictionary import find_country
4
  from app.extract_dates.date_engine import date_extractor
5
  from app.extract_gender.gender_extractor import gender_extract
6
  from app.extract_identity_number.doc_number_extractor import doc_number
 
 
 
7
  import cv2
8
+ from app.functions import get_index, get_latest_value_from_csv, image_enhacement
9
+ import json
10
 
11
 
12
+ def ocr(card_type_input, image_input, webcam_input):
13
+ global dictionary
14
 
15
+ dictionary = {
16
+ "NAME": "",
17
+ "DOB": "",
18
+ "COUNTRY": "",
19
+ "GENDER": "",
20
+ "DOCUMENT NUMBER": "",
21
+ }
22
 
23
+ file_path = "app/images/idcards/input.jpg"
 
24
 
25
  if image_input is not None and image_input.any():
26
  print("In input image")
 
29
  else:
30
  print("In webcam")
31
  cv2.imwrite(file_path, cv2.flip(webcam_input, 1))
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
 
33
+ image_enhacement(file_path)
34
+ # print("file_path", file_path)
35
+ dictionary, NER_check, result = name_entity_recognizer(file_path, dictionary)
36
 
37
+ extract_text = []
38
+ extract_text = [line[1][0] for res in result for line in res]
39
+ extract_text = " ".join(extract_text)
40
+ print("extract_text", extract_text)
41
 
42
+ if "" in list(dictionary.values()):
 
 
 
 
 
43
  print("Missing value found in Dic")
 
 
 
44
 
45
+ if len(dictionary["GENDER"]) == 0:
 
 
 
46
  print("Gender Missing")
47
  gender_found, gender, ocr_list = gender_extract(extract_text)
 
 
48
 
49
+ dictionary["GENDER"] = gender if gender_found else None
50
+
51
+ if len(dictionary["DOB"]) == 0:
52
  print("Dob Missing")
53
  dob_found, dob, ocr_list = date_extractor(extract_text)
54
 
55
+ dictionary["DOB"] = dob if dob_found else None
56
 
57
+ if len(dictionary["COUNTRY"]) == 0:
58
  print("Country Missing")
59
  country_found, country, ocr_list = find_country(extract_text)
60
  dictionary["country"] = country if country_found else None
61
 
62
+ if len(dictionary["DOCUMENT NUMBER"]) == 0:
63
  print("document Number missing")
64
 
65
  document_number_found, document_number, ocr_list = doc_number(extract_text)
66
+ dictionary["DOCUMENT NUMBER"] = (
67
+ document_number if document_number_found else None
68
+ )
69
+
70
+ # bool_check , training_data = get_latest_value_from_csv(extract_text)
71
+ # print(training_data)
72
+ print("Updated Dict ", dictionary)
73
+ response = {"Status": 200, "OCR": dictionary}
74
+ return response, extract_text
75
+
76
+
77
+ def save_traning_data(
78
+ name_input, dob_input, country_input, gender_input, doc_num_input,string_output
79
+ ):
80
+ print(name_input, dob_input, country_input, gender_input, doc_num_input)
81
+ print("Saving data")
82
+ # print(string_output)
83
+ entities_list = []
84
+
85
+ if name_input:
86
+ entry = []
87
+ start_index, end_index = get_index(string_output, name_input)
88
+ entry.append(start_index)
89
+ entry.append(end_index)
90
+
91
+ entry.append("NAME")
92
 
93
+ entities_list.append(entry)
94
 
95
+ if dob_input:
96
+ entry = []
97
+ start_index, end_index = get_index(string_output, dob_input)
98
+ entry.append(start_index)
99
+ entry.append(end_index)
100
+ entry.append("DOB")
 
 
101
 
102
+ entities_list.append(entry)
103
+
104
+ if country_input:
105
+ entry = []
106
+ start_index, end_index = get_index(string_output, country_input)
107
+ entry.append(start_index)
108
+ entry.append(end_index)
109
+ entry.append("COUNTRY")
110
+
111
+ entities_list.append(entry)
112
+
113
+ if gender_input:
114
+ entry = []
115
+ start_index, end_index = get_index(string_output, gender_input)
116
+ entry.append(start_index)
117
+ entry.append(end_index)
118
+ entry.append("GENDER")
119
+
120
+ entities_list.append(entry)
121
+
122
+ if doc_num_input:
123
+ entry = []
124
+ start_index, end_index = get_index(string_output, doc_num_input)
125
+ entry.append(start_index)
126
+ entry.append(end_index)
127
+ entry.append("DOCUMENT NUMBER")
128
+
129
+ entities_list.append(entry)
130
+ print("entities_list" , entities_list)
131
+
132
+ with open("app/training_data/annotated_data.json") as f:
133
+ data = json.load(f)
134
+
135
+ new_list = [
136
+ string_output,
137
+ {
138
+ "entities": entities_list
139
+ }
140
+ ]
141
+
142
+ annotations = data["annotations"]
143
+ annotations.append(new_list)
144
+
145
+ with open('app/training_data/annotated_data.json', 'w') as file:
146
+ json.dump(data, file)
147
+
148
+ # text = "PAKISTAN Nationalldentity Card ISLAMIC REPUBLIC OF PAKISTAN Name Muhammad Owais Siddiqui Father Name Zia Ud Din Siddiqui Country of Stay Gender M Pakistan Identity Number Date of Birth 42201-1177064-3 11.08.2001 Date of Expiry Date of Issue 24.09.2019 24.09.2029 Holder's Signature"
149
+ # save_traning_data(
150
+ # "Muhammad Owais Siddiqui", "Card", "REPUBLIC", "PAKISTAN", "Nationalldentity",text
151
+ # )
152
+
153
+ with gr.Blocks() as interface:
154
+ with gr.Row():
155
+ with gr.Column():
156
+ card_type_input = gr.inputs.Dropdown(
157
+ ["passport", "id_card"], label="Card Type", default="id_card"
158
+ )
159
+ image_input = gr.inputs.Image(label="Upload Image")
160
+ webcam_input = gr.inputs.Image(label="Webcam", source="webcam")
161
+ with gr.Column():
162
+ # Define the output components
163
+ json_output = gr.outputs.JSON(label="JSON Output")
164
+ string_output = gr.outputs.Textbox(label="OCR Extracted Text")
165
+ ocr_btn = gr.Button("Process OCR")
166
+
167
+ name_input = gr.inputs.Textbox(label="NAME", optional=True, type="text")
168
+ dob_input = gr.inputs.Textbox(label="DOB", optional=True, type="text")
169
+ country_input = gr.inputs.Textbox(
170
+ label="COUNTRY", optional=True, type="text"
171
+ )
172
+ gender_input = gr.inputs.Textbox(label="GENDER", optional=True, type="text")
173
+ doc_num_input = gr.inputs.Textbox(
174
+ label="DOCUMENT NUMBER", optional=True, type="text"
175
+ )
176
+ save_btn = gr.Button("Save Data")
177
+
178
+ ocr_btn.click(
179
+ fn=ocr,
180
+ inputs=[card_type_input, image_input, webcam_input],
181
+ outputs=[json_output, string_output],
182
+ )
183
+
184
+ save_btn.click(
185
+ fn=save_traning_data,
186
+ inputs=[name_input, dob_input, country_input, gender_input, doc_num_input,string_output],
187
+ )
188
+
189
+ interface.launch(share=True, show_tips=True, debug=True)
requirements.txt CHANGED
@@ -17,16 +17,19 @@ azure-mgmt-rdbms==10.1.0
17
  azure-mgmt-resource==23.0.0
18
  azure-mgmt-subscription==3.1.1
19
  Babel==2.12.1
 
20
  bce-python-sdk==0.8.83
21
  bcrypt==4.0.1
22
  beautifulsoup4==4.12.2
23
  bidict==0.22.1
24
  blinker==1.6.2
 
25
  boto3==1.26.142
26
  botocore==1.29.142
27
  Brotli==1.0.9
28
  butler-sdk==1.0.0
29
  cachetools==5.3.0
 
30
  certifi==2023.5.7
31
  cffi==1.15.1
32
  charset-normalizer==3.1.0
@@ -34,11 +37,13 @@ click==8.1.3
34
  cmake==3.26.3
35
  colorama==0.4.6
36
  colorlog==6.7.0
 
37
  contourpy==1.0.7
38
  cryptography==40.0.2
39
  cssselect==1.2.0
40
  cssutils==2.6.0
41
  cycler==0.11.0
 
42
  Cython==0.29.34
43
  datasets==2.12.0
44
  decorator==5.1.1
@@ -102,6 +107,7 @@ jmespath==1.0.1
102
  joblib==1.2.0
103
  jsonschema==4.17.3
104
  kiwisolver==1.4.4
 
105
  lanms-neo==1.0.2
106
  lazy_loader==0.2
107
  ldap3==2.9.1
@@ -122,6 +128,7 @@ msal-extensions==1.0.0
122
  msrest==0.7.1
123
  multidict==6.0.4
124
  multiprocess==0.70.12.2
 
125
  networkx==3.1
126
  numpy==1.24.3
127
  oauthlib==3.2.2
@@ -140,6 +147,7 @@ paddlepaddle==2.4.2
140
  pandas==2.0.1
141
  paramiko==3.1.0
142
  passlib==1.7.4
 
143
  pdf2docx==0.5.6
144
  pdf2image==1.16.3
145
  Pillow==9.5.0
@@ -147,6 +155,7 @@ pkgutil_resolve_name==1.3.10
147
  Polygon3==3.0.9.1
148
  portalocker==2.7.0
149
  premailer==3.10.0
 
150
  protobuf==3.19.6
151
  psutil==5.9.5
152
  psycopg==3.1.8
@@ -198,15 +207,21 @@ sentencepiece==0.1.99
198
  seqeval==1.2.2
199
  shapely==2.0.1
200
  six==1.16.0
 
201
  sniffio==1.3.0
202
  soupsieve==2.4.1
 
 
 
203
  speaklater3==1.4
204
  SQLAlchemy==2.0.15
205
  sqlparse==0.4.4
 
206
  sshtunnel==0.4.0
207
  starlette==0.27.0
208
  sympy==1.12
209
  termcolor==2.3.0
 
210
  threadpoolctl==3.1.0
211
  tifffile==2023.4.12
212
  tokenizers==0.13.3
@@ -216,7 +231,7 @@ tqdm==4.65.0
216
  transformers==4.29.2
217
  triton==2.0.0
218
  tritonclient==2.33.0
219
- typer==0.9.0
220
  typing_extensions==4.5.0
221
  tzdata==2023.3
222
  ua-parser==0.16.1
@@ -226,6 +241,7 @@ urllib3==1.26.16
226
  user-agents==2.2.0
227
  uvicorn==0.22.0
228
  visualdl==2.4.2
 
229
  websockets==11.0.3
230
  Werkzeug==2.2.3
231
  WTForms==3.0.1
 
17
  azure-mgmt-resource==23.0.0
18
  azure-mgmt-subscription==3.1.1
19
  Babel==2.12.1
20
+ backports.zoneinfo==0.2.1
21
  bce-python-sdk==0.8.83
22
  bcrypt==4.0.1
23
  beautifulsoup4==4.12.2
24
  bidict==0.22.1
25
  blinker==1.6.2
26
+ blis==0.7.9
27
  boto3==1.26.142
28
  botocore==1.29.142
29
  Brotli==1.0.9
30
  butler-sdk==1.0.0
31
  cachetools==5.3.0
32
+ catalogue==2.0.8
33
  certifi==2023.5.7
34
  cffi==1.15.1
35
  charset-normalizer==3.1.0
 
37
  cmake==3.26.3
38
  colorama==0.4.6
39
  colorlog==6.7.0
40
+ confection==0.0.4
41
  contourpy==1.0.7
42
  cryptography==40.0.2
43
  cssselect==1.2.0
44
  cssutils==2.6.0
45
  cycler==0.11.0
46
+ cymem==2.0.7
47
  Cython==0.29.34
48
  datasets==2.12.0
49
  decorator==5.1.1
 
107
  joblib==1.2.0
108
  jsonschema==4.17.3
109
  kiwisolver==1.4.4
110
+ langcodes==3.3.0
111
  lanms-neo==1.0.2
112
  lazy_loader==0.2
113
  ldap3==2.9.1
 
128
  msrest==0.7.1
129
  multidict==6.0.4
130
  multiprocess==0.70.12.2
131
+ murmurhash==1.0.9
132
  networkx==3.1
133
  numpy==1.24.3
134
  oauthlib==3.2.2
 
147
  pandas==2.0.1
148
  paramiko==3.1.0
149
  passlib==1.7.4
150
+ pathy==0.10.1
151
  pdf2docx==0.5.6
152
  pdf2image==1.16.3
153
  Pillow==9.5.0
 
155
  Polygon3==3.0.9.1
156
  portalocker==2.7.0
157
  premailer==3.10.0
158
+ preshed==3.0.8
159
  protobuf==3.19.6
160
  psutil==5.9.5
161
  psycopg==3.1.8
 
207
  seqeval==1.2.2
208
  shapely==2.0.1
209
  six==1.16.0
210
+ smart-open==6.3.0
211
  sniffio==1.3.0
212
  soupsieve==2.4.1
213
+ spacy==3.5.3
214
+ spacy-legacy==3.0.12
215
+ spacy-loggers==1.0.4
216
  speaklater3==1.4
217
  SQLAlchemy==2.0.15
218
  sqlparse==0.4.4
219
+ srsly==2.4.6
220
  sshtunnel==0.4.0
221
  starlette==0.27.0
222
  sympy==1.12
223
  termcolor==2.3.0
224
+ thinc==8.1.10
225
  threadpoolctl==3.1.0
226
  tifffile==2023.4.12
227
  tokenizers==0.13.3
 
231
  transformers==4.29.2
232
  triton==2.0.0
233
  tritonclient==2.33.0
234
+ typer==0.7.0
235
  typing_extensions==4.5.0
236
  tzdata==2023.3
237
  ua-parser==0.16.1
 
241
  user-agents==2.2.0
242
  uvicorn==0.22.0
243
  visualdl==2.4.2
244
+ wasabi==1.1.2
245
  websockets==11.0.3
246
  Werkzeug==2.2.3
247
  WTForms==3.0.1
run.py ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from deploy import ocr_btn
3
+ import pandas as pd
4
+
5
+
6
+ with gr.Blocks() as demo:
7
+ image_input = gr.inputs.Image(label="Upload Image")
8
+ webcam_input = gr.inputs.Image(label="Webcam", source="webcam")
9
+ card_type_input = gr.inputs.Dropdown(["passport", "id_card"], label="Card Type", default="id_card")
10
+
11
+ # column_names = ["name", "dob", "gender", "country", "doc_num"]
12
+ # input_table = gr.inputs.Table(columns=column_names)
13
+ data = {
14
+ "Name": ["John", "Emma", "Michael"],
15
+ "Age": [25, 30, 35],
16
+ "Country": ["USA", "Canada", "UK"]
17
+ }
18
+ df = pd.DataFrame(data)
19
+
20
+ table_input = gr.inputs.Table(headers=list(df.columns), row_count=len(df), default_data=df.values.tolist())
21
+
22
+
23
+ # Define the output components
24
+ json_output = gr.outputs.JSON(label="JSON Output")
25
+ string_output = gr.outputs.Textbox(label="OCR Extracted Text")
26
+
27
+ # Create the Gradio interface
28
+ interface = gr.Interface(fn=ocr_btn, inputs=[card_type_input,image_input,webcam_input], outputs=[json_output, string_output])
29
+ interface.launch(share=True)
30
+
31
+ if __name__ == "__main__":
32
+ demo.launch()