aryan10022001 commited on
Commit
98dc315
1 Parent(s): a11d4a5

Update spaCy pipeline

Browse files
.gitattributes CHANGED
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ en_predii_ner-any-py3-none-any.whl filter=lfs diff=lfs merge=lfs -text
37
+ tok2vec/model filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - spacy
4
+ - token-classification
5
+ language:
6
+ - en
7
+ model-index:
8
+ - name: en_predii_ner
9
+ results:
10
+ - task:
11
+ name: NER
12
+ type: token-classification
13
+ metrics:
14
+ - name: NER Precision
15
+ type: precision
16
+ value: 0.8568965517
17
+ - name: NER Recall
18
+ type: recall
19
+ value: 0.7729393468
20
+ - name: NER F Score
21
+ type: f_score
22
+ value: 0.8127555192
23
+ ---
24
+ | Feature | Description |
25
+ | --- | --- |
26
+ | **Name** | `en_predii_ner` |
27
+ | **Version** | `0.0.0` |
28
+ | **spaCy** | `>=3.7.4,<3.8.0` |
29
+ | **Default Pipeline** | `tok2vec`, `ner` |
30
+ | **Components** | `tok2vec`, `ner` |
31
+ | **Vectors** | 0 keys, 0 unique vectors (0 dimensions) |
32
+ | **Sources** | n/a |
33
+ | **License** | n/a |
34
+ | **Author** | [n/a]() |
35
+
36
+ ### Label Scheme
37
+
38
+ <details>
39
+
40
+ <summary>View label scheme (8 labels for 1 components)</summary>
41
+
42
+ | Component | Labels |
43
+ | --- | --- |
44
+ | **`ner`** | `CHASSIS TYPE`, `COMPONENT`, `CORRECTIVE ACTION`, `FAILURE ISSUE`, `MANUFACTURER`, `PARTS`, `PROCESS`, `VEHICLE MODEL` |
45
+
46
+ </details>
47
+
48
+ ### Accuracy
49
+
50
+ | Type | Score |
51
+ | --- | --- |
52
+ | `ENTS_F` | 81.28 |
53
+ | `ENTS_P` | 85.69 |
54
+ | `ENTS_R` | 77.29 |
55
+ | `TOK2VEC_LOSS` | 74793.71 |
56
+ | `NER_LOSS` | 798047.72 |
config.cfg ADDED
@@ -0,0 +1,145 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ vectors = {"@vectors":"spacy.Vectors.v1"}
21
+
22
+ [components]
23
+
24
+ [components.ner]
25
+ factory = "ner"
26
+ incorrect_spans_key = null
27
+ moves = null
28
+ scorer = {"@scorers":"spacy.ner_scorer.v1"}
29
+ update_with_oracle_cut_size = 100
30
+
31
+ [components.ner.model]
32
+ @architectures = "spacy.TransitionBasedParser.v2"
33
+ state_type = "ner"
34
+ extra_state_tokens = false
35
+ hidden_width = 64
36
+ maxout_pieces = 2
37
+ use_upper = true
38
+ nO = null
39
+
40
+ [components.ner.model.tok2vec]
41
+ @architectures = "spacy.Tok2VecListener.v1"
42
+ width = ${components.tok2vec.model.encode.width}
43
+ upstream = "*"
44
+
45
+ [components.tok2vec]
46
+ factory = "tok2vec"
47
+
48
+ [components.tok2vec.model]
49
+ @architectures = "spacy.Tok2Vec.v2"
50
+
51
+ [components.tok2vec.model.embed]
52
+ @architectures = "spacy.MultiHashEmbed.v2"
53
+ width = ${components.tok2vec.model.encode.width}
54
+ attrs = ["NORM","PREFIX","SUFFIX","SHAPE"]
55
+ rows = [5000,1000,2500,2500]
56
+ include_static_vectors = false
57
+
58
+ [components.tok2vec.model.encode]
59
+ @architectures = "spacy.MaxoutWindowEncoder.v2"
60
+ width = 96
61
+ depth = 4
62
+ window_size = 1
63
+ maxout_pieces = 3
64
+
65
+ [corpora]
66
+
67
+ [corpora.dev]
68
+ @readers = "spacy.Corpus.v1"
69
+ path = ${paths.dev}
70
+ max_length = 0
71
+ gold_preproc = false
72
+ limit = 0
73
+ augmenter = null
74
+
75
+ [corpora.train]
76
+ @readers = "spacy.Corpus.v1"
77
+ path = ${paths.train}
78
+ max_length = 0
79
+ gold_preproc = false
80
+ limit = 0
81
+ augmenter = null
82
+
83
+ [training]
84
+ dev_corpus = "corpora.dev"
85
+ train_corpus = "corpora.train"
86
+ seed = ${system.seed}
87
+ gpu_allocator = ${system.gpu_allocator}
88
+ dropout = 0.1
89
+ accumulate_gradient = 1
90
+ patience = 1600
91
+ max_epochs = 0
92
+ max_steps = 20000
93
+ eval_frequency = 200
94
+ frozen_components = []
95
+ annotating_components = []
96
+ before_to_disk = null
97
+ before_update = null
98
+
99
+ [training.batcher]
100
+ @batchers = "spacy.batch_by_words.v1"
101
+ discard_oversize = false
102
+ tolerance = 0.2
103
+ get_length = null
104
+
105
+ [training.batcher.size]
106
+ @schedules = "compounding.v1"
107
+ start = 100
108
+ stop = 1000
109
+ compound = 1.001
110
+ t = 0.0
111
+
112
+ [training.logger]
113
+ @loggers = "spacy.ConsoleLogger.v1"
114
+ progress_bar = false
115
+
116
+ [training.optimizer]
117
+ @optimizers = "Adam.v1"
118
+ beta1 = 0.9
119
+ beta2 = 0.999
120
+ L2_is_weight_decay = true
121
+ L2 = 0.01
122
+ grad_clip = 1.0
123
+ use_averages = false
124
+ eps = 0.00000001
125
+ learn_rate = 0.001
126
+
127
+ [training.score_weights]
128
+ ents_f = 1.0
129
+ ents_p = 0.0
130
+ ents_r = 0.0
131
+ ents_per_type = null
132
+
133
+ [pretraining]
134
+
135
+ [initialize]
136
+ vectors = ${paths.vectors}
137
+ init_tok2vec = ${paths.init_tok2vec}
138
+ vocab_data = null
139
+ lookups = null
140
+ before_init = null
141
+ after_init = null
142
+
143
+ [initialize.components]
144
+
145
+ [initialize.tokenizer]
en_predii_ner-any-py3-none-any.whl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7483ca1a962a7c4f87cf8272f9b0b0791f5c6cf17eca2da160acaa0ac6cacc7f
3
+ size 5712787
meta.json ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lang":"en",
3
+ "name":"predii_ner",
4
+ "version":"0.0.0",
5
+ "description":"",
6
+ "author":"",
7
+ "email":"",
8
+ "url":"",
9
+ "license":"",
10
+ "spacy_version":">=3.7.4,<3.8.0",
11
+ "spacy_git_version":"bff8725f4",
12
+ "vectors":{
13
+ "width":0,
14
+ "vectors":0,
15
+ "keys":0,
16
+ "name":null
17
+ },
18
+ "labels":{
19
+ "tok2vec":[
20
+
21
+ ],
22
+ "ner":[
23
+ "CHASSIS TYPE",
24
+ "COMPONENT",
25
+ "CORRECTIVE ACTION",
26
+ "FAILURE ISSUE",
27
+ "MANUFACTURER",
28
+ "PARTS",
29
+ "PROCESS",
30
+ "VEHICLE MODEL"
31
+ ]
32
+ },
33
+ "pipeline":[
34
+ "tok2vec",
35
+ "ner"
36
+ ],
37
+ "components":[
38
+ "tok2vec",
39
+ "ner"
40
+ ],
41
+ "disabled":[
42
+
43
+ ],
44
+ "performance":{
45
+ "ents_f":0.8127555192,
46
+ "ents_p":0.8568965517,
47
+ "ents_r":0.7729393468,
48
+ "ents_per_type":{
49
+ "MANUFACTURER":{
50
+ "p":0.9444444444,
51
+ "r":0.9622641509,
52
+ "f":0.953271028
53
+ },
54
+ "COMPONENT":{
55
+ "p":0.8120300752,
56
+ "r":0.8120300752,
57
+ "f":0.8120300752
58
+ },
59
+ "VEHICLE MODEL":{
60
+ "p":0.8039215686,
61
+ "r":0.8039215686,
62
+ "f":0.8039215686
63
+ },
64
+ "FAILURE ISSUE":{
65
+ "p":0.8633093525,
66
+ "r":0.7692307692,
67
+ "f":0.813559322
68
+ },
69
+ "CORRECTIVE ACTION":{
70
+ "p":0.8691588785,
71
+ "r":0.6241610738,
72
+ "f":0.7265625
73
+ },
74
+ "CHASSIS TYPE":{
75
+ "p":0.8936170213,
76
+ "r":0.9545454545,
77
+ "f":0.9230769231
78
+ },
79
+ "PROCESS":{
80
+ "p":1.0,
81
+ "r":1.0,
82
+ "f":1.0
83
+ },
84
+ "PARTS":{
85
+ "p":0.8205128205,
86
+ "r":0.6808510638,
87
+ "f":0.7441860465
88
+ }
89
+ },
90
+ "tok2vec_loss":747.9370691416,
91
+ "ner_loss":7980.4772103899
92
+ },
93
+ "requirements":[
94
+
95
+ ]
96
+ }
ner/cfg ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "moves":null,
3
+ "update_with_oracle_cut_size":100,
4
+ "multitasks":[
5
+
6
+ ],
7
+ "min_action_freq":1,
8
+ "learn_tokens":false,
9
+ "beam_width":1,
10
+ "beam_density":0.0,
11
+ "beam_update_prob":0.0,
12
+ "incorrect_spans_key":null
13
+ }
ner/model ADDED
Binary file (135 kB). View file
 
ner/moves ADDED
@@ -0,0 +1 @@
 
 
1
+ ��moves�l{"0":{},"1":{"FAILURE ISSUE":603,"COMPONENT":563,"CORRECTIVE ACTION":558,"VEHICLE MODEL":182,"MANUFACTURER":162,"CHASSIS TYPE":162,"PARTS":120,"PROCESS":32},"2":{"FAILURE ISSUE":603,"COMPONENT":563,"CORRECTIVE ACTION":558,"VEHICLE MODEL":182,"MANUFACTURER":162,"CHASSIS TYPE":162,"PARTS":120,"PROCESS":32},"3":{"FAILURE ISSUE":603,"COMPONENT":563,"CORRECTIVE ACTION":558,"VEHICLE MODEL":182,"MANUFACTURER":162,"CHASSIS TYPE":162,"PARTS":120,"PROCESS":32},"4":{"FAILURE ISSUE":603,"COMPONENT":563,"CORRECTIVE ACTION":558,"VEHICLE MODEL":182,"MANUFACTURER":162,"CHASSIS TYPE":162,"PARTS":120,"PROCESS":32,"":1},"5":{"":1}}�cfg��neg_key�
tok2vec/cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+
3
+ }
tok2vec/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bfe9d32d93687b8e7744707acf35caf542afff97fd818337f8a4995f6b387825
3
+ size 6009091
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�
vocab/key2row ADDED
@@ -0,0 +1 @@
 
 
1
+
vocab/lookups.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76be8b528d0075f7aae98d6fa57a6d3c83ae480a8469e668d7b0af968995ac71
3
+ size 1
vocab/strings.json ADDED
@@ -0,0 +1,2754 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "\t",
3
+ "\n",
4
+ "\r",
5
+ " ",
6
+ " ",
7
+ " ",
8
+ " ",
9
+ " ",
10
+ " ",
11
+ " ",
12
+ " ",
13
+ "\"",
14
+ "'",
15
+ "''",
16
+ "'-(",
17
+ "'-)",
18
+ "'Cause",
19
+ "'Cos",
20
+ "'Coz",
21
+ "'Cuz",
22
+ "'S",
23
+ "'X",
24
+ "'Xxx",
25
+ "'Xxxxx",
26
+ "'am",
27
+ "'bout",
28
+ "'cause",
29
+ "'cos",
30
+ "'coz",
31
+ "'cuz",
32
+ "'d",
33
+ "'em",
34
+ "'ll",
35
+ "'m",
36
+ "'nuff",
37
+ "'re",
38
+ "'s",
39
+ "'ve",
40
+ "'x",
41
+ "'xx",
42
+ "'xxx",
43
+ "'xxxx",
44
+ "'y",
45
+ "(",
46
+ "(((",
47
+ "(*>",
48
+ "(*_*)",
49
+ "(-8",
50
+ "(-:",
51
+ "(-;",
52
+ "(-_-)",
53
+ "(-d",
54
+ "(._.)",
55
+ "(:",
56
+ "(;",
57
+ "(=",
58
+ "(>_<)",
59
+ "(^_^)",
60
+ "(o:",
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
+ "-0",
78
+ "-22",
79
+ "-3",
80
+ "-52",
81
+ "-8",
82
+ "-D",
83
+ "-O",
84
+ "-P",
85
+ "-X",
86
+ "-_-",
87
+ "-__-",
88
+ "-d",
89
+ "-o",
90
+ "-p",
91
+ "-x",
92
+ "-|",
93
+ ".",
94
+ ".ALSO",
95
+ ".C.",
96
+ ".D.",
97
+ ".E.",
98
+ ".G.",
99
+ ".H.",
100
+ ".IF",
101
+ ".J.",
102
+ ".M.",
103
+ ".ON",
104
+ ".XXXX",
105
+ ".Y.",
106
+ "._.",
107
+ ".also",
108
+ ".e.",
109
+ ".g.",
110
+ ".if",
111
+ ".m.",
112
+ ".on",
113
+ ".s.",
114
+ ".xxxx",
115
+ "/",
116
+ "/3",
117
+ "/d",
118
+ "/or",
119
+ "0",
120
+ "0.0",
121
+ "0.o",
122
+ "000",
123
+ "0001.ALSO",
124
+ "0001.also",
125
+ "001",
126
+ "002",
127
+ "003",
128
+ "006",
129
+ "02",
130
+ "0712",
131
+ "0712.FREIGHTLINER",
132
+ "0712.freightliner",
133
+ "0_0",
134
+ "0_o",
135
+ "1",
136
+ "10",
137
+ "106",
138
+ "10a.m",
139
+ "10a.m.",
140
+ "10p.m",
141
+ "10p.m.",
142
+ "11",
143
+ "11a.m",
144
+ "11a.m.",
145
+ "11p.m",
146
+ "11p.m.",
147
+ "12",
148
+ "12V/24V/48V",
149
+ "12a.m",
150
+ "12a.m.",
151
+ "12p.m",
152
+ "12p.m.",
153
+ "12v/24v/48v",
154
+ "153",
155
+ "16",
156
+ "17",
157
+ "1777",
158
+ "1777.ALSO",
159
+ "1777.also",
160
+ "18",
161
+ "1994",
162
+ "1999",
163
+ "1a.m",
164
+ "1a.m.",
165
+ "1p.m",
166
+ "1p.m.",
167
+ "2",
168
+ "20,500",
169
+ "2000",
170
+ "2001",
171
+ "2002",
172
+ "20021106",
173
+ "2003",
174
+ "2006",
175
+ "201",
176
+ "21",
177
+ "22,000",
178
+ "2242",
179
+ "225",
180
+ "226",
181
+ "236",
182
+ "242",
183
+ "28",
184
+ "282",
185
+ "289",
186
+ "2a.m",
187
+ "2a.m.",
188
+ "2p.m",
189
+ "2p.m.",
190
+ "3",
191
+ "327",
192
+ "33",
193
+ "333",
194
+ "352",
195
+ "353",
196
+ "3795",
197
+ "391",
198
+ "398",
199
+ "3a.m",
200
+ "3a.m.",
201
+ "3p.m",
202
+ "3p.m.",
203
+ "4",
204
+ "400",
205
+ "4201",
206
+ "4201.ALSO",
207
+ "4201.also",
208
+ "4236",
209
+ "424",
210
+ "436",
211
+ "478",
212
+ "48V",
213
+ "48v",
214
+ "4a.m",
215
+ "4a.m.",
216
+ "4p.m",
217
+ "4p.m.",
218
+ "5",
219
+ "500",
220
+ "545",
221
+ "547",
222
+ "5558",
223
+ "558",
224
+ "574.HEIL",
225
+ "574.heil",
226
+ "591",
227
+ "5a.m",
228
+ "5a.m.",
229
+ "5p.m",
230
+ "5p.m.",
231
+ "6",
232
+ "643",
233
+ "6545",
234
+ "6545.CUSTOMERS",
235
+ "6545.customers",
236
+ "685",
237
+ "6913",
238
+ "6a.m",
239
+ "6a.m.",
240
+ "6p.m",
241
+ "6p.m.",
242
+ "7",
243
+ "712",
244
+ "7332.ALSO",
245
+ "7332.also",
246
+ "777",
247
+ "795",
248
+ "7a.m",
249
+ "7a.m.",
250
+ "7p.m",
251
+ "7p.m.",
252
+ "8",
253
+ "8)",
254
+ "8-",
255
+ "8-)",
256
+ "8-D",
257
+ "8-d",
258
+ "800",
259
+ "822",
260
+ "8226",
261
+ "861",
262
+ "866",
263
+ "888",
264
+ "8D",
265
+ "8a.m",
266
+ "8a.m.",
267
+ "8d",
268
+ "8p.m",
269
+ "8p.m.",
270
+ "9",
271
+ "913",
272
+ "9153",
273
+ "927",
274
+ "940",
275
+ "994",
276
+ "999",
277
+ "9a.m",
278
+ "9a.m.",
279
+ "9p.m",
280
+ "9p.m.",
281
+ ":",
282
+ ":'(",
283
+ ":')",
284
+ ":'-(",
285
+ ":'-)",
286
+ ":(",
287
+ ":((",
288
+ ":(((",
289
+ ":()",
290
+ ":)",
291
+ ":))",
292
+ ":)))",
293
+ ":*",
294
+ ":-(",
295
+ ":-((",
296
+ ":-(((",
297
+ ":-)",
298
+ ":-))",
299
+ ":-)))",
300
+ ":-*",
301
+ ":-/",
302
+ ":-0",
303
+ ":-3",
304
+ ":->",
305
+ ":-D",
306
+ ":-O",
307
+ ":-P",
308
+ ":-X",
309
+ ":-]",
310
+ ":-d",
311
+ ":-o",
312
+ ":-p",
313
+ ":-x",
314
+ ":-|",
315
+ ":-}",
316
+ ":/",
317
+ ":0",
318
+ ":1",
319
+ ":3",
320
+ ":>",
321
+ ":D",
322
+ ":O",
323
+ ":P",
324
+ ":X",
325
+ ":]",
326
+ ":d",
327
+ ":o",
328
+ ":o)",
329
+ ":p",
330
+ ":x",
331
+ ":x)",
332
+ ":|",
333
+ ":}",
334
+ ":\u2019(",
335
+ ":\u2019)",
336
+ ":\u2019-(",
337
+ ":\u2019-)",
338
+ ";",
339
+ ";)",
340
+ ";-)",
341
+ ";-D",
342
+ ";-X",
343
+ ";-d",
344
+ ";D",
345
+ ";X",
346
+ ";_;",
347
+ ";d",
348
+ "<",
349
+ "<.<",
350
+ "</3",
351
+ "</d",
352
+ "<3",
353
+ "<33",
354
+ "<333",
355
+ "<d",
356
+ "<dd",
357
+ "<ddd",
358
+ "<space>",
359
+ "<xxxx>",
360
+ "=",
361
+ "=(",
362
+ "=)",
363
+ "=/",
364
+ "=3",
365
+ "=D",
366
+ "=X",
367
+ "=[",
368
+ "=]",
369
+ "=d",
370
+ "=|",
371
+ ">",
372
+ ">.<",
373
+ ">.>",
374
+ ">:(",
375
+ ">:o",
376
+ ">:x",
377
+ "><(((*>",
378
+ "@",
379
+ "@_@",
380
+ "A",
381
+ "ABILITY",
382
+ "ABRUPT",
383
+ "ACCELERATOR",
384
+ "ACE",
385
+ "ACH",
386
+ "ACK",
387
+ "ACO",
388
+ "ACT",
389
+ "ADD",
390
+ "ADDITION",
391
+ "ADDITIONAL",
392
+ "ADE",
393
+ "ADMINISTRATION",
394
+ "ADMIRAL",
395
+ "ADS",
396
+ "AFFECTED",
397
+ "AFT",
398
+ "AGAINST",
399
+ "AGE",
400
+ "AGREED",
401
+ "AIL",
402
+ "AIN",
403
+ "AIR",
404
+ "AKE",
405
+ "ALL",
406
+ "ALLOW",
407
+ "ALS",
408
+ "ALSO",
409
+ "AME",
410
+ "AMERICAN",
411
+ "AMP",
412
+ "AMPLIFICATION",
413
+ "AMS",
414
+ "AN",
415
+ "AND",
416
+ "ANY",
417
+ "APPLICATION",
418
+ "ARCING",
419
+ "ARD",
420
+ "ARE",
421
+ "ARK",
422
+ "ARS",
423
+ "ART",
424
+ "ARY",
425
+ "AS",
426
+ "ASH",
427
+ "ASS",
428
+ "AT",
429
+ "AT-545",
430
+ "ATE",
431
+ "ATTACH",
432
+ "ATTACHES",
433
+ "ATTACHING",
434
+ "ATTACHMENTS",
435
+ "AUTHORISED",
436
+ "AUTHORIZED",
437
+ "AUTO",
438
+ "AUXILIARY",
439
+ "AVE",
440
+ "AXLE",
441
+ "Adm",
442
+ "Adm.",
443
+ "Ai",
444
+ "Ak",
445
+ "Ak.",
446
+ "Ala",
447
+ "Ala.",
448
+ "Alabama",
449
+ "Alaska",
450
+ "American",
451
+ "Apr",
452
+ "Apr.",
453
+ "April",
454
+ "Are",
455
+ "Ariz",
456
+ "Ariz.",
457
+ "Arizona",
458
+ "Ark",
459
+ "Ark.",
460
+ "Arkansas",
461
+ "Aug",
462
+ "Aug.",
463
+ "August",
464
+ "B",
465
+ "BAR",
466
+ "BATTERY",
467
+ "BCO",
468
+ "BE",
469
+ "BEARING",
470
+ "BECOME",
471
+ "BEGAN",
472
+ "BEGIN",
473
+ "BENDIX",
474
+ "BER",
475
+ "BESIDES",
476
+ "BETWEEN",
477
+ "BIRD",
478
+ "BLE",
479
+ "BLOCKAGE",
480
+ "BLOCKED",
481
+ "BLUE",
482
+ "BLY",
483
+ "BODY",
484
+ "BOOT",
485
+ "BOTH",
486
+ "BOTTOM",
487
+ "BOTTOMING",
488
+ "BOX",
489
+ "BOX.LONG",
490
+ "BRAKE",
491
+ "BRAKES",
492
+ "BRAKING",
493
+ "BREAK",
494
+ "BROKEN",
495
+ "BUILT",
496
+ "BUMPY",
497
+ "BUS",
498
+ "BUSES",
499
+ "BY",
500
+ "Bird",
501
+ "Blue",
502
+ "Body",
503
+ "Bros",
504
+ "Bros.",
505
+ "C",
506
+ "C'm",
507
+ "C++",
508
+ "C-7",
509
+ "C.",
510
+ "CABLE",
511
+ "CABLES",
512
+ "CAL",
513
+ "CALIFORNIA",
514
+ "CAN",
515
+ "CAR",
516
+ "CAUSE",
517
+ "CAUSING",
518
+ "CED",
519
+ "CERTAIN",
520
+ "CHANCE",
521
+ "CHARGE",
522
+ "CHASSIS",
523
+ "CHASSIS TYPE",
524
+ "CHASSIS.CONDITIONS",
525
+ "CHECK",
526
+ "CKS",
527
+ "CLAMP",
528
+ "CLASS",
529
+ "CLE",
530
+ "CLEVIS",
531
+ "CLIPS",
532
+ "CNG",
533
+ "CO",
534
+ "COACH",
535
+ "COACHES",
536
+ "COALESCING",
537
+ "COLLAPSE",
538
+ "COLLECTED",
539
+ "COMBUSTIBLE",
540
+ "COMPANY",
541
+ "COMPARTMENT",
542
+ "COMPONENT",
543
+ "COMPRESSOR",
544
+ "CONDITION",
545
+ "CONDITIONS",
546
+ "CONNECT",
547
+ "CONTACT",
548
+ "CONTINUOUSLY",
549
+ "CONTROL",
550
+ "CONTROLFREIGHTLINER",
551
+ "CONTROLS",
552
+ "COOLING",
553
+ "CORP",
554
+ "CORP.MFR",
555
+ "CORPORATION",
556
+ "CORRECTIVE ACTION",
557
+ "COULD",
558
+ "CRACK",
559
+ "CRACKING",
560
+ "CRACKS",
561
+ "CRASH",
562
+ "CRASH.DEALERS",
563
+ "CUMMINS",
564
+ "CUR",
565
+ "CUS",
566
+ "CUSTOMERS",
567
+ "Ca",
568
+ "Calif",
569
+ "Calif.",
570
+ "California",
571
+ "Can",
572
+ "Cause",
573
+ "Co",
574
+ "Co.",
575
+ "Colo",
576
+ "Colo.",
577
+ "Colorado",
578
+ "Company",
579
+ "Conn",
580
+ "Conn.",
581
+ "Connecticut",
582
+ "Corp",
583
+ "Corp.",
584
+ "Cos",
585
+ "Could",
586
+ "Coz",
587
+ "Cuz",
588
+ "C\u2019m",
589
+ "D",
590
+ "D.",
591
+ "D.C.",
592
+ "DAMAGE",
593
+ "DAMAGED",
594
+ "DASH",
595
+ "DASH-2",
596
+ "DAY",
597
+ "DEALER",
598
+ "DEALERS",
599
+ "DECEMBER",
600
+ "DED",
601
+ "DEL",
602
+ "DELIVERY",
603
+ "DER",
604
+ "DES",
605
+ "DESIGN",
606
+ "DETERMINE",
607
+ "DEVELOP",
608
+ "DIESEL",
609
+ "DISCHARGE",
610
+ "DIX",
611
+ "DL",
612
+ "DLE",
613
+ "DO",
614
+ "DOLLY",
615
+ "DOT",
616
+ "DRIVER",
617
+ "DUE",
618
+ "DURING",
619
+ "Dare",
620
+ "Dec",
621
+ "Dec.",
622
+ "December",
623
+ "Del",
624
+ "Del.",
625
+ "Delaware",
626
+ "Did",
627
+ "Do",
628
+ "Does",
629
+ "Doin",
630
+ "Doin'",
631
+ "Doin\u2019",
632
+ "Dr",
633
+ "Dr.",
634
+ "E",
635
+ "E.G.",
636
+ "E.g",
637
+ "E.g.",
638
+ "EAD",
639
+ "EAK",
640
+ "EAR",
641
+ "EAT",
642
+ "ECK",
643
+ "ECT",
644
+ "EDY",
645
+ "EED",
646
+ "EEL",
647
+ "EEN",
648
+ "EFT",
649
+ "EGB",
650
+ "EIL",
651
+ "EIR",
652
+ "EITHER",
653
+ "ELD",
654
+ "ELECTRICAL",
655
+ "ELECTRONIC",
656
+ "ELS",
657
+ "ELY",
658
+ "EMC",
659
+ "EMERGENCY",
660
+ "END",
661
+ "ENDEAVOR",
662
+ "ENDS",
663
+ "ENGINE",
664
+ "ENGINES",
665
+ "ENT",
666
+ "EQUIPPED",
667
+ "ERE",
668
+ "ERM",
669
+ "ERS",
670
+ "ERY",
671
+ "ESE",
672
+ "ESS",
673
+ "ETY",
674
+ "EVENTUALLY",
675
+ "EWR282",
676
+ "EXCEED",
677
+ "EXCESSIVE",
678
+ "EXCESSIVELY",
679
+ "EXHAUST",
680
+ "EXISTING",
681
+ "EXISTS",
682
+ "EXPECTED",
683
+ "EXPOSED",
684
+ "EXTENSION",
685
+ "EXTERNAL",
686
+ "F",
687
+ "F.",
688
+ "F53",
689
+ "FAIL",
690
+ "FAILURE",
691
+ "FAILURE ISSUE",
692
+ "FEATURES",
693
+ "FEBRUARY",
694
+ "FIC",
695
+ "FILTER",
696
+ "FIRE",
697
+ "FITTING",
698
+ "FITTINGS",
699
+ "FL-398",
700
+ "FLOOR",
701
+ "FOCUS",
702
+ "FOR",
703
+ "FORD",
704
+ "FOUR",
705
+ "FRACTURE",
706
+ "FRAME",
707
+ "FRAME.SUCH",
708
+ "FREE",
709
+ "FREIGHTLINER",
710
+ "FROM",
711
+ "FUEL",
712
+ "Feb",
713
+ "Feb.",
714
+ "February",
715
+ "Fla",
716
+ "Fla.",
717
+ "Florida",
718
+ "Ford",
719
+ "G",
720
+ "GAN",
721
+ "GAS",
722
+ "GASOLINE",
723
+ "GED",
724
+ "GER",
725
+ "GES",
726
+ "GHT",
727
+ "GIN",
728
+ "GO",
729
+ "GOV",
730
+ "GROSS",
731
+ "GROUND",
732
+ "GVWR",
733
+ "Ga",
734
+ "Ga.",
735
+ "Gen",
736
+ "Gen.",
737
+ "Georgia",
738
+ "Goin",
739
+ "Goin'",
740
+ "Goin\u2019",
741
+ "Gon",
742
+ "Got",
743
+ "Gov",
744
+ "Gov.",
745
+ "H",
746
+ "H-2",
747
+ "HAND",
748
+ "HAS",
749
+ "HAT",
750
+ "HAVE",
751
+ "HEAT",
752
+ "HEIL",
753
+ "HEN",
754
+ "HER",
755
+ "HES",
756
+ "HEY",
757
+ "HIGH",
758
+ "HIGHWAY",
759
+ "HIN",
760
+ "HIS",
761
+ "HOLIDAY",
762
+ "HOMES",
763
+ "HONDA",
764
+ "HOTLINE",
765
+ "HTTP://WWW.SAFERCAR.GOV",
766
+ "HUB",
767
+ "Had",
768
+ "Has",
769
+ "Have",
770
+ "Havin",
771
+ "Havin'",
772
+ "Havin\u2019",
773
+ "He",
774
+ "He's",
775
+ "He\u2019s",
776
+ "Honda",
777
+ "How",
778
+ "How's",
779
+ "How\u2019s",
780
+ "I",
781
+ "I.E.",
782
+ "I.e",
783
+ "I.e.",
784
+ "IAL",
785
+ "ICE",
786
+ "ICH",
787
+ "ICK",
788
+ "IDE",
789
+ "IDLE",
790
+ "IED",
791
+ "IES",
792
+ "IF",
793
+ "IFT",
794
+ "IFY",
795
+ "IGH",
796
+ "IGN",
797
+ "IGNITION",
798
+ "IIF",
799
+ "ILE",
800
+ "ILL",
801
+ "ILLUMINATE",
802
+ "ILT",
803
+ "IME",
804
+ "IN",
805
+ "INC",
806
+ "INC.MFR",
807
+ "INC.ON",
808
+ "INCLUDING",
809
+ "INCORPORATED",
810
+ "INCREASING",
811
+ "INDUSTRIES",
812
+ "INE",
813
+ "ING",
814
+ "INJURY",
815
+ "INS",
816
+ "INSPECT",
817
+ "INSTALL",
818
+ "INSTALLED",
819
+ "INSTRUCTIONS",
820
+ "INSUFFICIENT",
821
+ "INSULATION",
822
+ "INT",
823
+ "INTEGRITY",
824
+ "INTERNAL",
825
+ "INTERNATIONAL",
826
+ "INVOLVES",
827
+ "ION",
828
+ "IOR",
829
+ "IPS",
830
+ "IRD",
831
+ "IRE",
832
+ "IS",
833
+ "ISB",
834
+ "ISK",
835
+ "IT",
836
+ "ITH",
837
+ "ITS",
838
+ "ITY",
839
+ "IVE",
840
+ "Ia",
841
+ "Ia.",
842
+ "Id",
843
+ "Id.",
844
+ "Idaho",
845
+ "Ill",
846
+ "Ill.",
847
+ "Illinois",
848
+ "Inc",
849
+ "Inc.",
850
+ "Incorporated",
851
+ "Ind",
852
+ "Ind.",
853
+ "Indiana",
854
+ "Iowa",
855
+ "Is",
856
+ "It",
857
+ "It's",
858
+ "It\u2019s",
859
+ "J",
860
+ "JANUARY",
861
+ "JULY",
862
+ "JUNCTION",
863
+ "Jan",
864
+ "Jan.",
865
+ "January",
866
+ "Jr",
867
+ "Jr.",
868
+ "Jul",
869
+ "Jul.",
870
+ "July",
871
+ "Jun",
872
+ "Jun.",
873
+ "June",
874
+ "K",
875
+ "K.",
876
+ "KED",
877
+ "KEN",
878
+ "KES",
879
+ "KIT",
880
+ "Kan",
881
+ "Kan.",
882
+ "Kans",
883
+ "Kans.",
884
+ "Kansas",
885
+ "Kentucky",
886
+ "Ky",
887
+ "Ky.",
888
+ "L",
889
+ "LARGER",
890
+ "LAY",
891
+ "LDS",
892
+ "LEAD",
893
+ "LED",
894
+ "LEFT",
895
+ "LEM",
896
+ "LER",
897
+ "LES",
898
+ "LIGHT",
899
+ "LINE",
900
+ "LINES",
901
+ "LINKAGE",
902
+ "LINKAGES",
903
+ "LLC",
904
+ "LLY",
905
+ "LOADING",
906
+ "LOCATED",
907
+ "LONG",
908
+ "LOOSE",
909
+ "LOP",
910
+ "LOSE",
911
+ "LOSS",
912
+ "LOW",
913
+ "LSO",
914
+ "LUE",
915
+ "LVE",
916
+ "La",
917
+ "La.",
918
+ "Let",
919
+ "Let's",
920
+ "Let\u2019s",
921
+ "Louisiana",
922
+ "Lovin",
923
+ "Lovin'",
924
+ "Lovin\u2019",
925
+ "Ltd",
926
+ "Ltd.",
927
+ "M",
928
+ "MANUAL",
929
+ "MANUFACTURED",
930
+ "MANUFACTURER",
931
+ "MATERIALS",
932
+ "MAY",
933
+ "MECHANICAL",
934
+ "MELTING",
935
+ "MERITOR",
936
+ "MES",
937
+ "MFR",
938
+ "MISALIGNED",
939
+ "MISROUTED",
940
+ "MISSING",
941
+ "MISSING.OWNER",
942
+ "MOBILITY",
943
+ "MODELS",
944
+ "MOLDING",
945
+ "MONACO",
946
+ "MONARCH",
947
+ "MOTOR",
948
+ "MOTORCYCLE",
949
+ "MOTORCYCLES",
950
+ "MPY",
951
+ "MT643",
952
+ "Ma'am",
953
+ "Mar",
954
+ "Mar.",
955
+ "March",
956
+ "Mass",
957
+ "Mass.",
958
+ "Massachusetts",
959
+ "May",
960
+ "Ma\u2019am",
961
+ "Md",
962
+ "Md.",
963
+ "Messrs",
964
+ "Messrs.",
965
+ "Mich",
966
+ "Mich.",
967
+ "Michigan",
968
+ "Might",
969
+ "Minn",
970
+ "Minn.",
971
+ "Minnesota",
972
+ "Miss",
973
+ "Miss.",
974
+ "Mississippi",
975
+ "Mo",
976
+ "Mo.",
977
+ "Mont",
978
+ "Mont.",
979
+ "Motor",
980
+ "Mount",
981
+ "Mr",
982
+ "Mr.",
983
+ "Mrs",
984
+ "Mrs.",
985
+ "Ms",
986
+ "Ms.",
987
+ "Mt",
988
+ "Mt.",
989
+ "Must",
990
+ "N",
991
+ "N.C.",
992
+ "N.D.",
993
+ "N.H.",
994
+ "N.J.",
995
+ "N.M.",
996
+ "N.Y.",
997
+ "NAL",
998
+ "NATIONAL",
999
+ "NCE",
1000
+ "NCY",
1001
+ "NDA",
1002
+ "NDS",
1003
+ "NEAR",
1004
+ "NECESSARY",
1005
+ "NED",
1006
+ "NEEDED",
1007
+ "NER",
1008
+ "NES",
1009
+ "NETWORK",
1010
+ "NEW",
1011
+ "NGS",
1012
+ "NIA",
1013
+ "NIC",
1014
+ "NIT",
1015
+ "NO",
1016
+ "NOT",
1017
+ "NOTIFICATION",
1018
+ "NOTIFY",
1019
+ "NOVEMBER",
1020
+ "NST",
1021
+ "NTS",
1022
+ "NUMBER",
1023
+ "Neb",
1024
+ "Neb.",
1025
+ "Nebr",
1026
+ "Nebr.",
1027
+ "Nebraska",
1028
+ "Need",
1029
+ "Nev",
1030
+ "Nev.",
1031
+ "Nevada",
1032
+ "New Hampshire",
1033
+ "New Jersey",
1034
+ "New Mexico",
1035
+ "New York",
1036
+ "North Carolina",
1037
+ "North Dakota",
1038
+ "Not",
1039
+ "Nothin",
1040
+ "Nothin'",
1041
+ "Nothin\u2019",
1042
+ "Nov",
1043
+ "Nov.",
1044
+ "November",
1045
+ "Nuthin",
1046
+ "Nuthin'",
1047
+ "Nuthin\u2019",
1048
+ "O",
1049
+ "O'clock",
1050
+ "O.O",
1051
+ "O.o",
1052
+ "OCCUR",
1053
+ "OCTOBER",
1054
+ "ODI",
1055
+ "ODY",
1056
+ "OF",
1057
+ "OIL",
1058
+ "OKE",
1059
+ "OLS",
1060
+ "OME",
1061
+ "ON",
1062
+ "ONCERTAIN",
1063
+ "ONE",
1064
+ "ONG",
1065
+ "ONS",
1066
+ "OOL",
1067
+ "OOR",
1068
+ "OOT",
1069
+ "OPEN",
1070
+ "OPERATED",
1071
+ "OR",
1072
+ "ORD",
1073
+ "ORK",
1074
+ "ORP",
1075
+ "ORT",
1076
+ "OSE",
1077
+ "OSS",
1078
+ "OTE",
1079
+ "OTH",
1080
+ "OUR",
1081
+ "OUS",
1082
+ "OUT",
1083
+ "OVE",
1084
+ "OWNER",
1085
+ "OWNERS",
1086
+ "O_O",
1087
+ "O_o",
1088
+ "Oct",
1089
+ "Oct.",
1090
+ "October",
1091
+ "Okla",
1092
+ "Okla.",
1093
+ "Oklahoma",
1094
+ "Ol",
1095
+ "Ol'",
1096
+ "Ol\u2019",
1097
+ "One",
1098
+ "Ore",
1099
+ "Ore.",
1100
+ "Oregon",
1101
+ "Ought",
1102
+ "O\u2019clock",
1103
+ "P",
1104
+ "PACCAR",
1105
+ "PARK",
1106
+ "PARTIALLY",
1107
+ "PARTS",
1108
+ "PASSENGER",
1109
+ "PED",
1110
+ "PEDALS",
1111
+ "PEN",
1112
+ "PENETRATION",
1113
+ "PER",
1114
+ "PETERBILT",
1115
+ "PLACED",
1116
+ "PLATE",
1117
+ "PLATE.IF",
1118
+ "POINT",
1119
+ "PON",
1120
+ "PORT",
1121
+ "POSSIBILITY",
1122
+ "POSSIBLY",
1123
+ "POTENTIAL",
1124
+ "POTENTIALLY",
1125
+ "POTENTIOMETER",
1126
+ "POUND",
1127
+ "POWER",
1128
+ "PRESSURE",
1129
+ "PRIMARY",
1130
+ "PRIOR",
1131
+ "PROBLEM",
1132
+ "PROCESS",
1133
+ "PROCESS.SUCH",
1134
+ "PROGRESS",
1135
+ "PROMOTE",
1136
+ "PROPER",
1137
+ "PROVIDED",
1138
+ "PSE",
1139
+ "PULL",
1140
+ "PURAGUARD",
1141
+ "PUSH",
1142
+ "Pa",
1143
+ "Pa.",
1144
+ "Pennsylvania",
1145
+ "Ph",
1146
+ "Ph.D.",
1147
+ "Prof",
1148
+ "Prof.",
1149
+ "R",
1150
+ "RAIL",
1151
+ "RAL",
1152
+ "RAMBLER",
1153
+ "RATING",
1154
+ "RCE",
1155
+ "RCH",
1156
+ "REAR",
1157
+ "REASONABLE",
1158
+ "RECALL",
1159
+ "RECEIVE",
1160
+ "RECOMMENDS",
1161
+ "RED",
1162
+ "REE",
1163
+ "REINFORCE",
1164
+ "RELAY",
1165
+ "RELEASED",
1166
+ "RELEASED.WHEN",
1167
+ "REMEDY",
1168
+ "REMOVE",
1169
+ "REPAIR",
1170
+ "REPEATED",
1171
+ "REPLACE",
1172
+ "REPLACED",
1173
+ "RER",
1174
+ "REROUTED",
1175
+ "RES",
1176
+ "RESULT",
1177
+ "RESULTING",
1178
+ "RETAINING",
1179
+ "RETURN",
1180
+ "RGE",
1181
+ "RIDE",
1182
+ "RIDING",
1183
+ "RISK",
1184
+ "ROADS",
1185
+ "ROL",
1186
+ "ROM",
1187
+ "ROOT",
1188
+ "RSE",
1189
+ "RT-52",
1190
+ "RTS",
1191
+ "RUB",
1192
+ "Rep",
1193
+ "Rep.",
1194
+ "Rev",
1195
+ "Rev.",
1196
+ "S",
1197
+ "S.C.",
1198
+ "SAD",
1199
+ "SAFETY",
1200
+ "SCHOOL",
1201
+ "SECURING",
1202
+ "SED",
1203
+ "SEL",
1204
+ "SEPARATE",
1205
+ "SEPARATED",
1206
+ "SEPTEMBER",
1207
+ "SEQUENCING",
1208
+ "SERIOUS",
1209
+ "SERVICE",
1210
+ "SES",
1211
+ "SHAFT",
1212
+ "SHIFT",
1213
+ "SHORT",
1214
+ "SHOULD",
1215
+ "SILVER",
1216
+ "SIS",
1217
+ "SLOW",
1218
+ "SLY",
1219
+ "SMOKE",
1220
+ "SOR",
1221
+ "SPEED",
1222
+ "SPOKES",
1223
+ "SS",
1224
+ "START",
1225
+ "STEEL",
1226
+ "STEERABLE",
1227
+ "STICK",
1228
+ "STICKS",
1229
+ "STREETCARS",
1230
+ "STRESS",
1231
+ "STRUCTURE",
1232
+ "STS",
1233
+ "STUD",
1234
+ "SUCH",
1235
+ "SUE",
1236
+ "SUFFICIENT",
1237
+ "SUPPLIED",
1238
+ "SUPPORT",
1239
+ "SUSPENSION",
1240
+ "SUSPENSIONS",
1241
+ "SWORD",
1242
+ "SYSTEM",
1243
+ "SYSTEM:12V/24V/48V",
1244
+ "Sen",
1245
+ "Sen.",
1246
+ "Sep",
1247
+ "Sep.",
1248
+ "Sept",
1249
+ "Sept.",
1250
+ "September",
1251
+ "Sha",
1252
+ "She",
1253
+ "She's",
1254
+ "She\u2019s",
1255
+ "Should",
1256
+ "Somethin",
1257
+ "Somethin'",
1258
+ "Somethin\u2019",
1259
+ "South Carolina",
1260
+ "St",
1261
+ "St.",
1262
+ "T",
1263
+ "TAKE",
1264
+ "TAL",
1265
+ "TC-7",
1266
+ "TEC",
1267
+ "TED",
1268
+ "TEM",
1269
+ "TEMPERATURES",
1270
+ "TER",
1271
+ "TERM",
1272
+ "TERMINAL",
1273
+ "THAT",
1274
+ "THE",
1275
+ "THEIR",
1276
+ "THERE",
1277
+ "THESE",
1278
+ "THEY",
1279
+ "THIS",
1280
+ "THROTTLE",
1281
+ "THROTTLECONTROL",
1282
+ "THROUGH",
1283
+ "TIGHTENING",
1284
+ "TIRE",
1285
+ "TLE",
1286
+ "TO",
1287
+ "TOM",
1288
+ "TOR",
1289
+ "TOTAL",
1290
+ "TRAFFIC",
1291
+ "TRAILER",
1292
+ "TRAILERS",
1293
+ "TRAIN",
1294
+ "TRANSMISSION",
1295
+ "TRANSMISSIONS",
1296
+ "TRUCK",
1297
+ "TRUCKS",
1298
+ "TRUSS",
1299
+ "TTY",
1300
+ "TUD",
1301
+ "TURN",
1302
+ "TWO",
1303
+ "Tenn",
1304
+ "Tenn.",
1305
+ "Tennessee",
1306
+ "That",
1307
+ "That's",
1308
+ "That\u2019s",
1309
+ "There",
1310
+ "There's",
1311
+ "There\u2019s",
1312
+ "These",
1313
+ "They",
1314
+ "This",
1315
+ "This's",
1316
+ "This\u2019s",
1317
+ "Those",
1318
+ "U",
1319
+ "UAL",
1320
+ "UCH",
1321
+ "UCK",
1322
+ "UEL",
1323
+ "UGH",
1324
+ "ULD",
1325
+ "ULL",
1326
+ "ULT",
1327
+ "ULY",
1328
+ "UNATTENDED",
1329
+ "UND",
1330
+ "UNDER",
1331
+ "UNIT",
1332
+ "UPGRADE",
1333
+ "UPGRADED",
1334
+ "UPON",
1335
+ "UPT",
1336
+ "URE",
1337
+ "URN",
1338
+ "URY",
1339
+ "USE",
1340
+ "USH",
1341
+ "USS",
1342
+ "UST",
1343
+ "UTO",
1344
+ "V",
1345
+ "V.V",
1346
+ "VACATIONER",
1347
+ "VALVE",
1348
+ "VALVE.PACCAR",
1349
+ "VALVES",
1350
+ "VEHICLE",
1351
+ "VEHICLE MODEL",
1352
+ "VEHICLES",
1353
+ "VER",
1354
+ "VES",
1355
+ "VIBRATE",
1356
+ "VIS",
1357
+ "VOR",
1358
+ "VWR",
1359
+ "V_V",
1360
+ "Va",
1361
+ "Va.",
1362
+ "Virginia",
1363
+ "W",
1364
+ "W-22",
1365
+ "WABCO",
1366
+ "WARNING",
1367
+ "WARNING.DEALERS",
1368
+ "WAS",
1369
+ "WAY",
1370
+ "WEAKEN",
1371
+ "WEAR",
1372
+ "WEIGHT",
1373
+ "WELD",
1374
+ "WELDING",
1375
+ "WELDS",
1376
+ "WER",
1377
+ "WHEEL",
1378
+ "WHEELS",
1379
+ "WHEN",
1380
+ "WHERE",
1381
+ "WHICH",
1382
+ "WHILE",
1383
+ "WHO",
1384
+ "WILL",
1385
+ "WILLIAMS",
1386
+ "WING",
1387
+ "WIRING",
1388
+ "WITH",
1389
+ "WITHIN",
1390
+ "WITHOUT",
1391
+ "WITHSTAND",
1392
+ "WORKHORSE",
1393
+ "WOULD",
1394
+ "Was",
1395
+ "Wash",
1396
+ "Wash.",
1397
+ "Washington",
1398
+ "We",
1399
+ "Were",
1400
+ "What",
1401
+ "What's",
1402
+ "What\u2019s",
1403
+ "When",
1404
+ "When's",
1405
+ "When\u2019s",
1406
+ "Where",
1407
+ "Where's",
1408
+ "Where\u2019s",
1409
+ "Who",
1410
+ "Who's",
1411
+ "Who\u2019s",
1412
+ "Why",
1413
+ "Why's",
1414
+ "Why\u2019s",
1415
+ "Wis",
1416
+ "Wis.",
1417
+ "Wisconsin",
1418
+ "Wo",
1419
+ "Would",
1420
+ "X'x",
1421
+ "X'xxxx",
1422
+ "X++",
1423
+ "X-dd",
1424
+ "X.",
1425
+ "X.X",
1426
+ "X.X.",
1427
+ "X.x",
1428
+ "X.x.",
1429
+ "XD",
1430
+ "XDD",
1431
+ "XLE",
1432
+ "XX",
1433
+ "XX-d",
1434
+ "XX-dd",
1435
+ "XX-ddd",
1436
+ "XXX",
1437
+ "XXX.XX",
1438
+ "XXX.XXX",
1439
+ "XXX.XXXX",
1440
+ "XXXX",
1441
+ "XXXX XXXX",
1442
+ "XXXX-d",
1443
+ "XXXX.XX",
1444
+ "XXXX.XXX",
1445
+ "XXXX.XXXX",
1446
+ "XXXX://XXX.XXXX.XXX",
1447
+ "XXXX:ddX/ddX/ddX",
1448
+ "XXXddd",
1449
+ "XXddd",
1450
+ "X_X",
1451
+ "X_x",
1452
+ "Xdd",
1453
+ "Xx",
1454
+ "Xx'",
1455
+ "Xx'x",
1456
+ "Xx'xx",
1457
+ "Xx.",
1458
+ "Xx.X.",
1459
+ "Xxx",
1460
+ "Xxx'x",
1461
+ "Xxx.",
1462
+ "Xxxx",
1463
+ "Xxxx'",
1464
+ "Xxxx'x",
1465
+ "Xxxx.",
1466
+ "Xxxxx",
1467
+ "Xxxxx'",
1468
+ "Xxxxx'x",
1469
+ "Xxxxx.",
1470
+ "Xxxxx\u2019",
1471
+ "Xxxxx\u2019x",
1472
+ "Xxxx\u2019",
1473
+ "Xxxx\u2019x",
1474
+ "Xxx\u2019x",
1475
+ "Xx\u2019",
1476
+ "Xx\u2019x",
1477
+ "Xx\u2019xx",
1478
+ "X\u2019x",
1479
+ "X\u2019xxxx",
1480
+ "Y",
1481
+ "YPE",
1482
+ "You",
1483
+ "Z",
1484
+ "ZED",
1485
+ "ZETEC",
1486
+ "[",
1487
+ "[-:",
1488
+ "[:",
1489
+ "[=",
1490
+ "\\",
1491
+ "\\\")",
1492
+ "\\n",
1493
+ "\\t",
1494
+ "\\x",
1495
+ "]",
1496
+ "]=",
1497
+ "^",
1498
+ "^_^",
1499
+ "^__^",
1500
+ "^___^",
1501
+ "_*)",
1502
+ "_-)",
1503
+ "_.)",
1504
+ "_<)",
1505
+ "_^)",
1506
+ "__-",
1507
+ "__^",
1508
+ "_\u00ac)",
1509
+ "_\u0ca0)",
1510
+ "a",
1511
+ "a.",
1512
+ "a.m",
1513
+ "a.m.",
1514
+ "ability",
1515
+ "about",
1516
+ "abrupt",
1517
+ "accelerator",
1518
+ "ace",
1519
+ "ach",
1520
+ "ack",
1521
+ "aco",
1522
+ "act",
1523
+ "add",
1524
+ "addition",
1525
+ "additional",
1526
+ "ade",
1527
+ "adm",
1528
+ "adm.",
1529
+ "administration",
1530
+ "admiral",
1531
+ "ads",
1532
+ "affected",
1533
+ "aft",
1534
+ "against",
1535
+ "age",
1536
+ "agreed",
1537
+ "ai",
1538
+ "ail",
1539
+ "ain",
1540
+ "air",
1541
+ "ak",
1542
+ "ak.",
1543
+ "ake",
1544
+ "ala",
1545
+ "ala.",
1546
+ "all",
1547
+ "allow",
1548
+ "als",
1549
+ "also",
1550
+ "am",
1551
+ "ame",
1552
+ "american",
1553
+ "amp",
1554
+ "amplification",
1555
+ "ams",
1556
+ "an",
1557
+ "an.",
1558
+ "and",
1559
+ "and/or",
1560
+ "ans",
1561
+ "any",
1562
+ "application",
1563
+ "apr",
1564
+ "apr.",
1565
+ "ar.",
1566
+ "arcing",
1567
+ "ard",
1568
+ "are",
1569
+ "ariz",
1570
+ "ariz.",
1571
+ "ark",
1572
+ "ark.",
1573
+ "ars",
1574
+ "art",
1575
+ "ary",
1576
+ "as",
1577
+ "ash",
1578
+ "ass",
1579
+ "at",
1580
+ "at-545",
1581
+ "ate",
1582
+ "attach",
1583
+ "attaches",
1584
+ "attaching",
1585
+ "attachments",
1586
+ "aug",
1587
+ "aug.",
1588
+ "authorised",
1589
+ "authorized",
1590
+ "auto",
1591
+ "auxiliary",
1592
+ "ave",
1593
+ "axle",
1594
+ "b",
1595
+ "b.",
1596
+ "bar",
1597
+ "battery",
1598
+ "bco",
1599
+ "be",
1600
+ "bearing",
1601
+ "because",
1602
+ "become",
1603
+ "began",
1604
+ "begin",
1605
+ "bendix",
1606
+ "ber",
1607
+ "besides",
1608
+ "between",
1609
+ "bird",
1610
+ "ble",
1611
+ "blockage",
1612
+ "blocked",
1613
+ "blue",
1614
+ "bly",
1615
+ "body",
1616
+ "boot",
1617
+ "both",
1618
+ "bottom",
1619
+ "bottoming",
1620
+ "bout",
1621
+ "box",
1622
+ "box.long",
1623
+ "br.",
1624
+ "brake",
1625
+ "brakes",
1626
+ "braking",
1627
+ "break",
1628
+ "broken",
1629
+ "bros",
1630
+ "bros.",
1631
+ "built",
1632
+ "bumpy",
1633
+ "bus",
1634
+ "buses",
1635
+ "by",
1636
+ "c",
1637
+ "c'm",
1638
+ "c++",
1639
+ "c-7",
1640
+ "c.",
1641
+ "ca",
1642
+ "cable",
1643
+ "cables",
1644
+ "cal",
1645
+ "calif",
1646
+ "calif.",
1647
+ "california",
1648
+ "can",
1649
+ "car",
1650
+ "cause",
1651
+ "causing",
1652
+ "ce>",
1653
+ "ced",
1654
+ "certain",
1655
+ "ch.",
1656
+ "chance",
1657
+ "charge",
1658
+ "chassis",
1659
+ "chassis type",
1660
+ "chassis.conditions",
1661
+ "check",
1662
+ "cks",
1663
+ "clamp",
1664
+ "class",
1665
+ "cle",
1666
+ "clevis",
1667
+ "clips",
1668
+ "cng",
1669
+ "co",
1670
+ "co.",
1671
+ "coach",
1672
+ "coaches",
1673
+ "coalescing",
1674
+ "collapse",
1675
+ "collected",
1676
+ "colo",
1677
+ "colo.",
1678
+ "combustible",
1679
+ "come",
1680
+ "company",
1681
+ "compartment",
1682
+ "component",
1683
+ "compressor",
1684
+ "condition",
1685
+ "conditions",
1686
+ "conn",
1687
+ "conn.",
1688
+ "connect",
1689
+ "contact",
1690
+ "continuously",
1691
+ "control",
1692
+ "controlfreightliner",
1693
+ "controls",
1694
+ "cooling",
1695
+ "corp",
1696
+ "corp.",
1697
+ "corp.mfr",
1698
+ "corporation",
1699
+ "corrective action",
1700
+ "cos",
1701
+ "could",
1702
+ "coz",
1703
+ "crack",
1704
+ "cracking",
1705
+ "cracks",
1706
+ "crash",
1707
+ "crash.dealers",
1708
+ "ct.",
1709
+ "cummins",
1710
+ "cur",
1711
+ "cus",
1712
+ "customers",
1713
+ "cuz",
1714
+ "c\u2019m",
1715
+ "d",
1716
+ "d)",
1717
+ "d-",
1718
+ "d-)",
1719
+ "d-X",
1720
+ "d.",
1721
+ "d.c.",
1722
+ "d.d",
1723
+ "d.x",
1724
+ "dX",
1725
+ "d_d",
1726
+ "d_x",
1727
+ "damage",
1728
+ "damaged",
1729
+ "dare",
1730
+ "dash",
1731
+ "dash-2",
1732
+ "date",
1733
+ "day",
1734
+ "dd",
1735
+ "dd,ddd",
1736
+ "ddX/ddX/ddX",
1737
+ "ddd",
1738
+ "ddd.XXXX",
1739
+ "ddd.xxxx",
1740
+ "dddd",
1741
+ "dddd.XXXX",
1742
+ "dddd.xxxx",
1743
+ "ddx.x",
1744
+ "ddx.x.",
1745
+ "ddx/ddx/ddx",
1746
+ "dealer",
1747
+ "dealers",
1748
+ "dec",
1749
+ "dec.",
1750
+ "december",
1751
+ "ded",
1752
+ "del",
1753
+ "del.",
1754
+ "delivery",
1755
+ "der",
1756
+ "des",
1757
+ "design",
1758
+ "determine",
1759
+ "develop",
1760
+ "did",
1761
+ "diesel",
1762
+ "discharge",
1763
+ "dix",
1764
+ "dl",
1765
+ "dle",
1766
+ "dm.",
1767
+ "do",
1768
+ "does",
1769
+ "doin",
1770
+ "doin'",
1771
+ "doing",
1772
+ "doin\u2019",
1773
+ "dolly",
1774
+ "dot",
1775
+ "dr",
1776
+ "dr.",
1777
+ "driver",
1778
+ "due",
1779
+ "during",
1780
+ "dx.x",
1781
+ "dx.x.",
1782
+ "e",
1783
+ "e's",
1784
+ "e.",
1785
+ "e.g",
1786
+ "e.g.",
1787
+ "ead",
1788
+ "eak",
1789
+ "ear",
1790
+ "eat",
1791
+ "eb.",
1792
+ "ebr",
1793
+ "ec.",
1794
+ "eck",
1795
+ "ect",
1796
+ "edy",
1797
+ "eed",
1798
+ "eel",
1799
+ "een",
1800
+ "eft",
1801
+ "egb",
1802
+ "eil",
1803
+ "eir",
1804
+ "either",
1805
+ "el.",
1806
+ "eld",
1807
+ "electrical",
1808
+ "electronic",
1809
+ "els",
1810
+ "ely",
1811
+ "em",
1812
+ "emc",
1813
+ "emergency",
1814
+ "en",
1815
+ "en.",
1816
+ "end",
1817
+ "endeavor",
1818
+ "ends",
1819
+ "engine",
1820
+ "engines",
1821
+ "enn",
1822
+ "enough",
1823
+ "ent",
1824
+ "ep.",
1825
+ "ept",
1826
+ "equipped",
1827
+ "ere",
1828
+ "erm",
1829
+ "ers",
1830
+ "ery",
1831
+ "ese",
1832
+ "ess",
1833
+ "ety",
1834
+ "ev.",
1835
+ "eventually",
1836
+ "ewr282",
1837
+ "exceed",
1838
+ "excessive",
1839
+ "excessively",
1840
+ "exhaust",
1841
+ "existing",
1842
+ "exists",
1843
+ "expected",
1844
+ "exposed",
1845
+ "extension",
1846
+ "external",
1847
+ "e\u2019s",
1848
+ "f",
1849
+ "f.",
1850
+ "f53",
1851
+ "fail",
1852
+ "failure",
1853
+ "failure issue",
1854
+ "features",
1855
+ "feb",
1856
+ "feb.",
1857
+ "february",
1858
+ "fic",
1859
+ "filter",
1860
+ "fire",
1861
+ "fitting",
1862
+ "fittings",
1863
+ "fl-398",
1864
+ "fla",
1865
+ "fla.",
1866
+ "floor",
1867
+ "focus",
1868
+ "for",
1869
+ "ford",
1870
+ "four",
1871
+ "fracture",
1872
+ "frame",
1873
+ "frame.such",
1874
+ "free",
1875
+ "freightliner",
1876
+ "from",
1877
+ "fuel",
1878
+ "g",
1879
+ "g.",
1880
+ "ga",
1881
+ "ga.",
1882
+ "gan",
1883
+ "gas",
1884
+ "gasoline",
1885
+ "ged",
1886
+ "gen",
1887
+ "gen.",
1888
+ "ger",
1889
+ "ges",
1890
+ "ght",
1891
+ "gin",
1892
+ "go",
1893
+ "goin",
1894
+ "goin'",
1895
+ "going",
1896
+ "goin\u2019",
1897
+ "gon",
1898
+ "gonna",
1899
+ "got",
1900
+ "gov",
1901
+ "gov.",
1902
+ "gross",
1903
+ "ground",
1904
+ "gvwr",
1905
+ "h",
1906
+ "h-2",
1907
+ "h.",
1908
+ "had",
1909
+ "hand",
1910
+ "has",
1911
+ "hat",
1912
+ "have",
1913
+ "havin",
1914
+ "havin'",
1915
+ "having",
1916
+ "havin\u2019",
1917
+ "he",
1918
+ "he's",
1919
+ "heat",
1920
+ "heil",
1921
+ "hen",
1922
+ "her",
1923
+ "hes",
1924
+ "hey",
1925
+ "he\u2019s",
1926
+ "high",
1927
+ "highway",
1928
+ "hin",
1929
+ "his",
1930
+ "holiday",
1931
+ "homes",
1932
+ "honda",
1933
+ "hotline",
1934
+ "how",
1935
+ "how's",
1936
+ "how\u2019s",
1937
+ "http://www.safercar.gov",
1938
+ "hub",
1939
+ "i",
1940
+ "i.",
1941
+ "i.e",
1942
+ "i.e.",
1943
+ "ia",
1944
+ "ia.",
1945
+ "ial",
1946
+ "ice",
1947
+ "ich",
1948
+ "ick",
1949
+ "id",
1950
+ "id.",
1951
+ "ide",
1952
+ "idle",
1953
+ "ied",
1954
+ "ies",
1955
+ "if",
1956
+ "if.",
1957
+ "ift",
1958
+ "ify",
1959
+ "igh",
1960
+ "ign",
1961
+ "ignition",
1962
+ "iif",
1963
+ "ile",
1964
+ "ill",
1965
+ "ill.",
1966
+ "illuminate",
1967
+ "ilt",
1968
+ "ime",
1969
+ "in",
1970
+ "in'",
1971
+ "inc",
1972
+ "inc.",
1973
+ "inc.mfr",
1974
+ "inc.on",
1975
+ "including",
1976
+ "incorporated",
1977
+ "increasing",
1978
+ "ind",
1979
+ "ind.",
1980
+ "industries",
1981
+ "ine",
1982
+ "ing",
1983
+ "injury",
1984
+ "inn",
1985
+ "ins",
1986
+ "inspect",
1987
+ "install",
1988
+ "installed",
1989
+ "instructions",
1990
+ "insufficient",
1991
+ "insulation",
1992
+ "int",
1993
+ "integrity",
1994
+ "internal",
1995
+ "international",
1996
+ "involves",
1997
+ "in\u2019",
1998
+ "ion",
1999
+ "ior",
2000
+ "ips",
2001
+ "ird",
2002
+ "ire",
2003
+ "is",
2004
+ "is.",
2005
+ "isb",
2006
+ "isk",
2007
+ "iss",
2008
+ "it",
2009
+ "it's",
2010
+ "ith",
2011
+ "its",
2012
+ "ity",
2013
+ "it\u2019s",
2014
+ "ive",
2015
+ "iz.",
2016
+ "j",
2017
+ "j.",
2018
+ "jan",
2019
+ "jan.",
2020
+ "january",
2021
+ "jr",
2022
+ "jr.",
2023
+ "jul",
2024
+ "jul.",
2025
+ "july",
2026
+ "jun",
2027
+ "jun.",
2028
+ "junction",
2029
+ "k",
2030
+ "k.",
2031
+ "kan",
2032
+ "kan.",
2033
+ "kans",
2034
+ "kans.",
2035
+ "ked",
2036
+ "ken",
2037
+ "kes",
2038
+ "kit",
2039
+ "kla",
2040
+ "ky",
2041
+ "ky.",
2042
+ "l",
2043
+ "l.",
2044
+ "la",
2045
+ "la.",
2046
+ "larger",
2047
+ "lay",
2048
+ "lds",
2049
+ "lead",
2050
+ "led",
2051
+ "left",
2052
+ "lem",
2053
+ "ler",
2054
+ "les",
2055
+ "let",
2056
+ "let's",
2057
+ "let\u2019s",
2058
+ "lif",
2059
+ "light",
2060
+ "line",
2061
+ "lines",
2062
+ "linkage",
2063
+ "linkages",
2064
+ "ll",
2065
+ "ll.",
2066
+ "llc",
2067
+ "lly",
2068
+ "lo.",
2069
+ "loading",
2070
+ "located",
2071
+ "long",
2072
+ "loose",
2073
+ "lop",
2074
+ "lose",
2075
+ "loss",
2076
+ "lovin",
2077
+ "lovin'",
2078
+ "loving",
2079
+ "lovin\u2019",
2080
+ "low",
2081
+ "lso",
2082
+ "ltd",
2083
+ "ltd.",
2084
+ "lue",
2085
+ "lve",
2086
+ "m",
2087
+ "m.",
2088
+ "ma'am",
2089
+ "madam",
2090
+ "manual",
2091
+ "manufactured",
2092
+ "manufacturer",
2093
+ "mar",
2094
+ "mar.",
2095
+ "mass",
2096
+ "mass.",
2097
+ "materials",
2098
+ "may",
2099
+ "ma\u2019am",
2100
+ "md",
2101
+ "md.",
2102
+ "mechanical",
2103
+ "melting",
2104
+ "meritor",
2105
+ "mes",
2106
+ "messrs",
2107
+ "messrs.",
2108
+ "mfr",
2109
+ "mich",
2110
+ "mich.",
2111
+ "might",
2112
+ "minn",
2113
+ "minn.",
2114
+ "misaligned",
2115
+ "misrouted",
2116
+ "miss",
2117
+ "miss.",
2118
+ "missing",
2119
+ "missing.owner",
2120
+ "mo",
2121
+ "mo.",
2122
+ "mobility",
2123
+ "models",
2124
+ "molding",
2125
+ "monaco",
2126
+ "monarch",
2127
+ "mont",
2128
+ "mont.",
2129
+ "motor",
2130
+ "motorcycle",
2131
+ "motorcycles",
2132
+ "mpy",
2133
+ "mr",
2134
+ "mr.",
2135
+ "mrs",
2136
+ "mrs.",
2137
+ "ms",
2138
+ "ms.",
2139
+ "mt",
2140
+ "mt.",
2141
+ "mt643",
2142
+ "must",
2143
+ "n",
2144
+ "n's",
2145
+ "n't",
2146
+ "n.",
2147
+ "n.c.",
2148
+ "n.d.",
2149
+ "n.h.",
2150
+ "n.j.",
2151
+ "n.m.",
2152
+ "n.y.",
2153
+ "na",
2154
+ "nal",
2155
+ "national",
2156
+ "nc.",
2157
+ "nce",
2158
+ "ncy",
2159
+ "nd.",
2160
+ "nda",
2161
+ "nds",
2162
+ "near",
2163
+ "neb",
2164
+ "neb.",
2165
+ "nebr",
2166
+ "nebr.",
2167
+ "necessary",
2168
+ "ned",
2169
+ "need",
2170
+ "needed",
2171
+ "ner",
2172
+ "nes",
2173
+ "network",
2174
+ "nev",
2175
+ "nev.",
2176
+ "new",
2177
+ "ngs",
2178
+ "nia",
2179
+ "nic",
2180
+ "nit",
2181
+ "nn.",
2182
+ "no",
2183
+ "not",
2184
+ "nothin",
2185
+ "nothin'",
2186
+ "nothing",
2187
+ "nothin\u2019",
2188
+ "notification",
2189
+ "notify",
2190
+ "nov",
2191
+ "nov.",
2192
+ "november",
2193
+ "ns.",
2194
+ "nst",
2195
+ "nt",
2196
+ "nt.",
2197
+ "nts",
2198
+ "nuff",
2199
+ "nuthin",
2200
+ "nuthin'",
2201
+ "nuthin\u2019",
2202
+ "n\u2019s",
2203
+ "n\u2019t",
2204
+ "o",
2205
+ "o'clock",
2206
+ "o's",
2207
+ "o.",
2208
+ "o.0",
2209
+ "o.O",
2210
+ "o.o",
2211
+ "o_0",
2212
+ "o_O",
2213
+ "o_o",
2214
+ "occur",
2215
+ "ock",
2216
+ "oct",
2217
+ "oct.",
2218
+ "october",
2219
+ "odi",
2220
+ "ody",
2221
+ "oes",
2222
+ "of",
2223
+ "of.",
2224
+ "oil",
2225
+ "oin",
2226
+ "oke",
2227
+ "okla",
2228
+ "okla.",
2229
+ "ol",
2230
+ "ol'",
2231
+ "old",
2232
+ "olo",
2233
+ "ols",
2234
+ "ol\u2019",
2235
+ "ome",
2236
+ "on",
2237
+ "oncertain",
2238
+ "one",
2239
+ "ong",
2240
+ "onn",
2241
+ "ons",
2242
+ "ont",
2243
+ "ool",
2244
+ "oor",
2245
+ "oot",
2246
+ "open",
2247
+ "operated",
2248
+ "or",
2249
+ "ord",
2250
+ "ore",
2251
+ "ore.",
2252
+ "ork",
2253
+ "orp",
2254
+ "ort",
2255
+ "os.",
2256
+ "ose",
2257
+ "oss",
2258
+ "ote",
2259
+ "oth",
2260
+ "ought",
2261
+ "our",
2262
+ "ous",
2263
+ "out",
2264
+ "ov.",
2265
+ "ove",
2266
+ "owner",
2267
+ "owners",
2268
+ "o\u2019clock",
2269
+ "o\u2019s",
2270
+ "p",
2271
+ "p.",
2272
+ "p.m",
2273
+ "p.m.",
2274
+ "pa",
2275
+ "pa.",
2276
+ "paccar",
2277
+ "park",
2278
+ "part",
2279
+ "partially",
2280
+ "parts",
2281
+ "passenger",
2282
+ "ped",
2283
+ "pedals",
2284
+ "pen",
2285
+ "penetration",
2286
+ "per",
2287
+ "peterbilt",
2288
+ "ph",
2289
+ "ph.d.",
2290
+ "placed",
2291
+ "plate",
2292
+ "plate.if",
2293
+ "pm",
2294
+ "point",
2295
+ "pon",
2296
+ "port",
2297
+ "possibility",
2298
+ "possibly",
2299
+ "potential",
2300
+ "potentially",
2301
+ "potentiometer",
2302
+ "pound",
2303
+ "power",
2304
+ "pr.",
2305
+ "pressure",
2306
+ "primary",
2307
+ "prior",
2308
+ "problem",
2309
+ "process",
2310
+ "process.such",
2311
+ "prof",
2312
+ "prof.",
2313
+ "progress",
2314
+ "promote",
2315
+ "proper",
2316
+ "provided",
2317
+ "pse",
2318
+ "pt.",
2319
+ "pull",
2320
+ "puraguard",
2321
+ "push",
2322
+ "q",
2323
+ "q.",
2324
+ "r",
2325
+ "r.",
2326
+ "rail",
2327
+ "ral",
2328
+ "rambler",
2329
+ "rating",
2330
+ "rce",
2331
+ "rch",
2332
+ "re",
2333
+ "re.",
2334
+ "rear",
2335
+ "reasonable",
2336
+ "recall",
2337
+ "receive",
2338
+ "recommends",
2339
+ "red",
2340
+ "ree",
2341
+ "reinforce",
2342
+ "relay",
2343
+ "released",
2344
+ "released.when",
2345
+ "remedy",
2346
+ "remove",
2347
+ "rep",
2348
+ "rep.",
2349
+ "repair",
2350
+ "repeated",
2351
+ "replace",
2352
+ "replaced",
2353
+ "rerouted",
2354
+ "res",
2355
+ "result",
2356
+ "resulting",
2357
+ "retaining",
2358
+ "return",
2359
+ "rev",
2360
+ "rev.",
2361
+ "rge",
2362
+ "ride",
2363
+ "riding",
2364
+ "risk",
2365
+ "riz",
2366
+ "rk.",
2367
+ "roads",
2368
+ "rof",
2369
+ "rol",
2370
+ "rom",
2371
+ "ros",
2372
+ "rp.",
2373
+ "rs.",
2374
+ "rse",
2375
+ "rt-52",
2376
+ "rts",
2377
+ "rub",
2378
+ "s",
2379
+ "s's",
2380
+ "s.",
2381
+ "s.c.",
2382
+ "sad",
2383
+ "safety",
2384
+ "school",
2385
+ "securing",
2386
+ "sed",
2387
+ "sel",
2388
+ "sen",
2389
+ "sen.",
2390
+ "sep",
2391
+ "sep.",
2392
+ "separate",
2393
+ "separated",
2394
+ "sept",
2395
+ "sept.",
2396
+ "september",
2397
+ "sequencing",
2398
+ "serious",
2399
+ "service",
2400
+ "ses",
2401
+ "sh.",
2402
+ "sha",
2403
+ "shaft",
2404
+ "shall",
2405
+ "she",
2406
+ "she's",
2407
+ "she\u2019s",
2408
+ "shift",
2409
+ "short",
2410
+ "should",
2411
+ "silver",
2412
+ "sis",
2413
+ "slow",
2414
+ "sly",
2415
+ "smoke",
2416
+ "somethin",
2417
+ "somethin'",
2418
+ "something",
2419
+ "somethin\u2019",
2420
+ "sor",
2421
+ "space",
2422
+ "speed",
2423
+ "spokes",
2424
+ "srs",
2425
+ "ss",
2426
+ "ss.",
2427
+ "st",
2428
+ "st.",
2429
+ "start",
2430
+ "steel",
2431
+ "steerable",
2432
+ "stick",
2433
+ "sticks",
2434
+ "streetcars",
2435
+ "stress",
2436
+ "structure",
2437
+ "sts",
2438
+ "stud",
2439
+ "such",
2440
+ "sufficient",
2441
+ "supplied",
2442
+ "support",
2443
+ "suspension",
2444
+ "suspensions",
2445
+ "sword",
2446
+ "system",
2447
+ "system:12v/24v/48v",
2448
+ "s\u2019s",
2449
+ "t",
2450
+ "t's",
2451
+ "t.",
2452
+ "ta",
2453
+ "take",
2454
+ "tal",
2455
+ "tc-7",
2456
+ "td.",
2457
+ "tec",
2458
+ "ted",
2459
+ "tem",
2460
+ "temperatures",
2461
+ "tenn",
2462
+ "tenn.",
2463
+ "ter",
2464
+ "term",
2465
+ "terminal",
2466
+ "that",
2467
+ "that's",
2468
+ "that\u2019s",
2469
+ "the",
2470
+ "their",
2471
+ "them",
2472
+ "there",
2473
+ "there's",
2474
+ "there\u2019s",
2475
+ "these",
2476
+ "they",
2477
+ "this",
2478
+ "this's",
2479
+ "this\u2019s",
2480
+ "those",
2481
+ "throttle",
2482
+ "throttlecontrol",
2483
+ "through",
2484
+ "tightening",
2485
+ "time",
2486
+ "tire",
2487
+ "tle",
2488
+ "to",
2489
+ "tom",
2490
+ "tor",
2491
+ "total",
2492
+ "traffic",
2493
+ "trailer",
2494
+ "trailers",
2495
+ "train",
2496
+ "transmission",
2497
+ "transmissions",
2498
+ "truck",
2499
+ "trucks",
2500
+ "truss",
2501
+ "tty",
2502
+ "tud",
2503
+ "turn",
2504
+ "two",
2505
+ "t\u2019s",
2506
+ "u",
2507
+ "u.",
2508
+ "ual",
2509
+ "uch",
2510
+ "uck",
2511
+ "uel",
2512
+ "uff",
2513
+ "ug.",
2514
+ "ugh",
2515
+ "ul.",
2516
+ "uld",
2517
+ "ull",
2518
+ "ult",
2519
+ "uly",
2520
+ "un.",
2521
+ "unattended",
2522
+ "und",
2523
+ "under",
2524
+ "unit",
2525
+ "upgrade",
2526
+ "upgraded",
2527
+ "upon",
2528
+ "upt",
2529
+ "ure",
2530
+ "urn",
2531
+ "ury",
2532
+ "us",
2533
+ "use",
2534
+ "ush",
2535
+ "uss",
2536
+ "ust",
2537
+ "uto",
2538
+ "v",
2539
+ "v.",
2540
+ "v.s",
2541
+ "v.s.",
2542
+ "v.v",
2543
+ "v_v",
2544
+ "va",
2545
+ "va.",
2546
+ "vacationer",
2547
+ "valve",
2548
+ "valve.paccar",
2549
+ "valves",
2550
+ "ve",
2551
+ "vehicle",
2552
+ "vehicle model",
2553
+ "vehicles",
2554
+ "ver",
2555
+ "ves",
2556
+ "vibrate",
2557
+ "vin",
2558
+ "vis",
2559
+ "vor",
2560
+ "vs",
2561
+ "vs.",
2562
+ "vwr",
2563
+ "w",
2564
+ "w's",
2565
+ "w-22",
2566
+ "w.",
2567
+ "w/o",
2568
+ "wabco",
2569
+ "warning",
2570
+ "warning.dealers",
2571
+ "was",
2572
+ "wash",
2573
+ "wash.",
2574
+ "way",
2575
+ "we",
2576
+ "weaken",
2577
+ "wear",
2578
+ "weight",
2579
+ "weld",
2580
+ "welding",
2581
+ "welds",
2582
+ "wer",
2583
+ "were",
2584
+ "what",
2585
+ "what's",
2586
+ "what\u2019s",
2587
+ "wheel",
2588
+ "wheels",
2589
+ "when",
2590
+ "when's",
2591
+ "when\u2019s",
2592
+ "where",
2593
+ "where's",
2594
+ "where\u2019s",
2595
+ "which",
2596
+ "while",
2597
+ "who",
2598
+ "who's",
2599
+ "who\u2019s",
2600
+ "why",
2601
+ "why's",
2602
+ "why\u2019s",
2603
+ "will",
2604
+ "williams",
2605
+ "wing",
2606
+ "wiring",
2607
+ "wis",
2608
+ "wis.",
2609
+ "with",
2610
+ "within",
2611
+ "without",
2612
+ "withstand",
2613
+ "wo",
2614
+ "workhorse",
2615
+ "would",
2616
+ "w\u2019s",
2617
+ "x",
2618
+ "x'",
2619
+ "x'x",
2620
+ "x'xxxx",
2621
+ "x-dd",
2622
+ "x.",
2623
+ "x.X",
2624
+ "x.d",
2625
+ "x.x",
2626
+ "x.x.",
2627
+ "x/x",
2628
+ "xD",
2629
+ "xDD",
2630
+ "xX",
2631
+ "xXX",
2632
+ "x_X",
2633
+ "x_d",
2634
+ "x_x",
2635
+ "xd",
2636
+ "xdd",
2637
+ "xle",
2638
+ "xx",
2639
+ "xx'",
2640
+ "xx'x",
2641
+ "xx'xx",
2642
+ "xx-d",
2643
+ "xx-dd",
2644
+ "xx-ddd",
2645
+ "xx.",
2646
+ "xxddd",
2647
+ "xxx",
2648
+ "xxx'x",
2649
+ "xxx.xx",
2650
+ "xxx.xxx",
2651
+ "xxx.xxxx",
2652
+ "xxx/xx",
2653
+ "xxxddd",
2654
+ "xxxx",
2655
+ "xxxx'",
2656
+ "xxxx'x",
2657
+ "xxxx-d",
2658
+ "xxxx.xx",
2659
+ "xxxx.xxx",
2660
+ "xxxx.xxxx",
2661
+ "xxxx://xxx.xxxx.xxx",
2662
+ "xxxx:ddx/ddx/ddx",
2663
+ "xxxx\u2019",
2664
+ "xxxx\u2019x",
2665
+ "xxx\u2019x",
2666
+ "xx\u2019",
2667
+ "xx\u2019x",
2668
+ "xx\u2019xx",
2669
+ "x\u2019",
2670
+ "x\u2019x",
2671
+ "x\u2019xxxx",
2672
+ "x\ufe35x",
2673
+ "y",
2674
+ "y'",
2675
+ "y's",
2676
+ "y.",
2677
+ "you",
2678
+ "y\u2019",
2679
+ "y\u2019s",
2680
+ "z",
2681
+ "z.",
2682
+ "zed",
2683
+ "zetec",
2684
+ "|",
2685
+ "}",
2686
+ "\u00a0",
2687
+ "\u00ac",
2688
+ "\u00ac_\u00ac",
2689
+ "\u00af",
2690
+ "\u00af\\(x)/\u00af",
2691
+ "\u00af\\(\u30c4)/\u00af",
2692
+ "\u00b0",
2693
+ "\u00b0C.",
2694
+ "\u00b0F.",
2695
+ "\u00b0K.",
2696
+ "\u00b0X.",
2697
+ "\u00b0c.",
2698
+ "\u00b0f.",
2699
+ "\u00b0k.",
2700
+ "\u00b0x.",
2701
+ "\u00e4",
2702
+ "\u00e4.",
2703
+ "\u00f6",
2704
+ "\u00f6.",
2705
+ "\u00fc",
2706
+ "\u00fc.",
2707
+ "\u0ca0",
2708
+ "\u0ca0_\u0ca0",
2709
+ "\u0ca0\ufe35\u0ca0",
2710
+ "\u2014",
2711
+ "\u2018",
2712
+ "\u2018S",
2713
+ "\u2018X",
2714
+ "\u2018s",
2715
+ "\u2018x",
2716
+ "\u2019",
2717
+ "\u2019-(",
2718
+ "\u2019-)",
2719
+ "\u2019Cause",
2720
+ "\u2019Cos",
2721
+ "\u2019Coz",
2722
+ "\u2019Cuz",
2723
+ "\u2019S",
2724
+ "\u2019X",
2725
+ "\u2019Xxx",
2726
+ "\u2019Xxxxx",
2727
+ "\u2019am",
2728
+ "\u2019bout",
2729
+ "\u2019cause",
2730
+ "\u2019cos",
2731
+ "\u2019coz",
2732
+ "\u2019cuz",
2733
+ "\u2019d",
2734
+ "\u2019em",
2735
+ "\u2019ll",
2736
+ "\u2019m",
2737
+ "\u2019nuff",
2738
+ "\u2019re",
2739
+ "\u2019s",
2740
+ "\u2019ve",
2741
+ "\u2019x",
2742
+ "\u2019xx",
2743
+ "\u2019xxx",
2744
+ "\u2019xxxx",
2745
+ "\u2019y",
2746
+ "\u2019\u2019",
2747
+ "\u2501",
2748
+ "\u253b",
2749
+ "\u253b\u2501\u253b",
2750
+ "\u256f",
2751
+ "\u25a1",
2752
+ "\ufe35",
2753
+ "\uff09"
2754
+ ]
vocab/vectors ADDED
Binary file (128 Bytes). View file
 
vocab/vectors.cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "mode":"default"
3
+ }