nimamegh commited on
Commit
17387ce
1 Parent(s): b107dab

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_pipeline-any-py3-none-any.whl filter=lfs diff=lfs merge=lfs -text
37
+ transformer/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_pipeline
9
+ results:
10
+ - task:
11
+ name: NER
12
+ type: token-classification
13
+ metrics:
14
+ - name: NER Precision
15
+ type: precision
16
+ value: 0.9308734236
17
+ - name: NER Recall
18
+ type: recall
19
+ value: 0.9133822181
20
+ - name: NER F Score
21
+ type: f_score
22
+ value: 0.9220448762
23
+ ---
24
+ | Feature | Description |
25
+ | --- | --- |
26
+ | **Name** | `en_pipeline` |
27
+ | **Version** | `0.0.0` |
28
+ | **spaCy** | `>=3.7.5,<3.8.0` |
29
+ | **Default Pipeline** | `transformer`, `ner` |
30
+ | **Components** | `transformer`, `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`** | `B-LAW`, `B-VIOLATED BY`, `B-VIOLATED ON`, `B-VIOLATION`, `I-LAW`, `I-VIOLATED BY`, `I-VIOLATED ON`, `I-VIOLATION` |
45
+
46
+ </details>
47
+
48
+ ### Accuracy
49
+
50
+ | Type | Score |
51
+ | --- | --- |
52
+ | `ENTS_F` | 92.20 |
53
+ | `ENTS_P` | 93.09 |
54
+ | `ENTS_R` | 91.34 |
55
+ | `TRANSFORMER_LOSS` | 16253.98 |
56
+ | `NER_LOSS` | 13899.54 |
config.cfg ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [paths]
2
+ train = "/content/files_v1.0/train_data.spacy"
3
+ dev = "/content/files_v1.0/test_data.spacy"
4
+ vectors = null
5
+ init_tok2vec = null
6
+
7
+ [system]
8
+ gpu_allocator = "pytorch"
9
+ seed = 0
10
+
11
+ [nlp]
12
+ lang = "en"
13
+ pipeline = ["transformer","ner"]
14
+ batch_size = 16
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 = false
38
+ nO = null
39
+
40
+ [components.ner.model.tok2vec]
41
+ @architectures = "spacy-transformers.TransformerListener.v1"
42
+ grad_factor = 1.0
43
+ pooling = {"@layers":"reduce_mean.v1"}
44
+ upstream = "*"
45
+
46
+ [components.transformer]
47
+ factory = "transformer"
48
+ max_batch_items = 4096
49
+ set_extra_annotations = {"@annotation_setters":"spacy-transformers.null_annotation_setter.v1"}
50
+
51
+ [components.transformer.model]
52
+ @architectures = "spacy-transformers.TransformerModel.v3"
53
+ name = "microsoft/deberta-v3-base"
54
+ mixed_precision = false
55
+
56
+ [components.transformer.model.get_spans]
57
+ @span_getters = "spacy-transformers.strided_spans.v1"
58
+ window = 128
59
+ stride = 96
60
+
61
+ [components.transformer.model.grad_scaler_config]
62
+
63
+ [components.transformer.model.tokenizer_config]
64
+ use_fast = true
65
+
66
+ [components.transformer.model.transformer_config]
67
+
68
+ [corpora]
69
+
70
+ [corpora.dev]
71
+ @readers = "spacy.Corpus.v1"
72
+ path = ${paths.dev}
73
+ max_length = 0
74
+ gold_preproc = false
75
+ limit = 0
76
+ augmenter = null
77
+
78
+ [corpora.train]
79
+ @readers = "spacy.Corpus.v1"
80
+ path = ${paths.train}
81
+ max_length = 0
82
+ gold_preproc = false
83
+ limit = 0
84
+ augmenter = null
85
+
86
+ [training]
87
+ accumulate_gradient = 3
88
+ dev_corpus = "corpora.dev"
89
+ train_corpus = "corpora.train"
90
+ seed = ${system.seed}
91
+ gpu_allocator = ${system.gpu_allocator}
92
+ dropout = 0.1
93
+ patience = 1600
94
+ max_epochs = 0
95
+ max_steps = 20000
96
+ eval_frequency = 200
97
+ frozen_components = []
98
+ annotating_components = []
99
+ before_to_disk = null
100
+ before_update = null
101
+
102
+ [training.batcher]
103
+ @batchers = "spacy.batch_by_padded.v1"
104
+ discard_oversize = true
105
+ size = 2000
106
+ buffer = 256
107
+ get_length = null
108
+
109
+ [training.logger]
110
+ @loggers = "spacy.ConsoleLogger.v1"
111
+ progress_bar = false
112
+
113
+ [training.optimizer]
114
+ @optimizers = "Adam.v1"
115
+ beta1 = 0.9
116
+ beta2 = 0.999
117
+ L2_is_weight_decay = true
118
+ L2 = 0.01
119
+ grad_clip = 1.0
120
+ use_averages = false
121
+ eps = 0.00000001
122
+
123
+ [training.optimizer.learn_rate]
124
+ @schedules = "warmup_linear.v1"
125
+ warmup_steps = 250
126
+ total_steps = 20000
127
+ initial_rate = 0.00005
128
+
129
+ [training.score_weights]
130
+ ents_f = 1.0
131
+ ents_p = 0.0
132
+ ents_r = 0.0
133
+ ents_per_type = null
134
+
135
+ [pretraining]
136
+
137
+ [initialize]
138
+ vectors = ${paths.vectors}
139
+ init_tok2vec = ${paths.init_tok2vec}
140
+ vocab_data = null
141
+ lookups = null
142
+ before_init = null
143
+ after_init = null
144
+
145
+ [initialize.components]
146
+
147
+ [initialize.tokenizer]
en_pipeline-any-py3-none-any.whl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fe2b4909106d66f1f6e5b9bee25e42cdffd7826706fbc07cd6b713f8ed2a0a38
3
+ size 577032794
meta.json ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "lang":"en",
3
+ "name":"pipeline",
4
+ "version":"0.0.0",
5
+ "description":"",
6
+ "author":"",
7
+ "email":"",
8
+ "url":"",
9
+ "license":"",
10
+ "spacy_version":">=3.7.5,<3.8.0",
11
+ "spacy_git_version":"a6d0fc360",
12
+ "vectors":{
13
+ "width":0,
14
+ "vectors":0,
15
+ "keys":0,
16
+ "name":null
17
+ },
18
+ "labels":{
19
+ "transformer":[
20
+
21
+ ],
22
+ "ner":[
23
+ "B-LAW",
24
+ "B-VIOLATED BY",
25
+ "B-VIOLATED ON",
26
+ "B-VIOLATION",
27
+ "I-LAW",
28
+ "I-VIOLATED BY",
29
+ "I-VIOLATED ON",
30
+ "I-VIOLATION"
31
+ ]
32
+ },
33
+ "pipeline":[
34
+ "transformer",
35
+ "ner"
36
+ ],
37
+ "components":[
38
+ "transformer",
39
+ "ner"
40
+ ],
41
+ "disabled":[
42
+
43
+ ],
44
+ "performance":{
45
+ "ents_f":0.9220448762,
46
+ "ents_p":0.9308734236,
47
+ "ents_r":0.9133822181,
48
+ "ents_per_type":{
49
+ "B-VIOLATION":{
50
+ "p":0.9014084507,
51
+ "r":0.9014084507,
52
+ "f":0.9014084507
53
+ },
54
+ "I-VIOLATION":{
55
+ "p":0.9433481859,
56
+ "r":0.9153798641,
57
+ "f":0.929153605
58
+ },
59
+ "B-LAW":{
60
+ "p":0.8888888889,
61
+ "r":0.9302325581,
62
+ "f":0.9090909091
63
+ },
64
+ "I-LAW":{
65
+ "p":0.9406779661,
66
+ "r":0.9652173913,
67
+ "f":0.9527896996
68
+ },
69
+ "B-VIOLATED BY":{
70
+ "p":0.9523809524,
71
+ "r":0.9302325581,
72
+ "f":0.9411764706
73
+ },
74
+ "I-VIOLATED BY":{
75
+ "p":0.9493670886,
76
+ "r":0.9615384615,
77
+ "f":0.9554140127
78
+ },
79
+ "B-VIOLATED ON":{
80
+ "p":0.6829268293,
81
+ "r":0.6511627907,
82
+ "f":0.6666666667
83
+ },
84
+ "I-VIOLATED ON":{
85
+ "p":0.8640776699,
86
+ "r":0.898989899,
87
+ "f":0.8811881188
88
+ }
89
+ },
90
+ "transformer_loss":162.5397746471,
91
+ "ner_loss":138.9954125388
92
+ },
93
+ "requirements":[
94
+ "spacy-transformers>=1.3.5,<1.4.0"
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 (251 kB). View file
 
ner/moves ADDED
@@ -0,0 +1 @@
 
 
1
+ ��moves�d{"0":{},"1":{"I-VIOLATION":6691,"B-VIOLATION":580,"I-LAW":567,"I-VIOLATED ON":391,"I-VIOLATED BY":338,"B-LAW":258,"B-VIOLATED ON":176,"B-VIOLATED BY":176},"2":{"I-VIOLATION":6691,"B-VIOLATION":580,"I-LAW":567,"I-VIOLATED ON":391,"I-VIOLATED BY":338,"B-LAW":258,"B-VIOLATED ON":176,"B-VIOLATED BY":176},"3":{"I-VIOLATION":6691,"B-VIOLATION":580,"I-LAW":567,"I-VIOLATED ON":391,"I-VIOLATED BY":338,"B-LAW":258,"B-VIOLATED ON":176,"B-VIOLATED BY":176},"4":{"I-VIOLATION":6691,"B-VIOLATION":580,"I-LAW":567,"I-VIOLATED ON":391,"I-VIOLATED BY":338,"B-LAW":258,"B-VIOLATED ON":176,"B-VIOLATED BY":176,"":1},"5":{"":1}}�cfg��neg_key�
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�
transformer/cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "max_batch_items":4096
3
+ }
transformer/model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf95a1f5360368a39c66a70fae42e7f788d51e69eb06f9b07b79d33260f66b14
3
+ size 746530274
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,4846 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "\t",
3
+ "\n",
4
+ " ",
5
+ " ",
6
+ " BY",
7
+ " ON",
8
+ "!",
9
+ "\"",
10
+ "$",
11
+ "%",
12
+ "'",
13
+ "''",
14
+ "'-(",
15
+ "'-)",
16
+ "'Cause",
17
+ "'Cos",
18
+ "'Coz",
19
+ "'Cuz",
20
+ "'S",
21
+ "'X",
22
+ "'Xxx",
23
+ "'Xxxxx",
24
+ "'am",
25
+ "'bout",
26
+ "'cause",
27
+ "'cos",
28
+ "'coz",
29
+ "'cuz",
30
+ "'d",
31
+ "'em",
32
+ "'ll",
33
+ "'m",
34
+ "'nuff",
35
+ "'re",
36
+ "'s",
37
+ "'ve",
38
+ "'x",
39
+ "'xx",
40
+ "'xxx",
41
+ "'xxxx",
42
+ "'y",
43
+ "(",
44
+ "(((",
45
+ "(*>",
46
+ "(*_*)",
47
+ "(-8",
48
+ "(-:",
49
+ "(-;",
50
+ "(-_-)",
51
+ "(-d",
52
+ "(._.)",
53
+ "(:",
54
+ "(;",
55
+ "(=",
56
+ "(>_<)",
57
+ "(^_^)",
58
+ "(o:",
59
+ "(x:",
60
+ "(x_x)",
61
+ "(\u00ac_\u00ac)",
62
+ "(\u0ca0_\u0ca0)",
63
+ "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b",
64
+ ")",
65
+ ")))",
66
+ ")-:",
67
+ ")/\u00af",
68
+ "):",
69
+ "*",
70
+ ",",
71
+ "-",
72
+ "-((",
73
+ "-))",
74
+ "-/",
75
+ "-0",
76
+ "-3",
77
+ "-8",
78
+ "-D",
79
+ "-O",
80
+ "-P",
81
+ "-X",
82
+ "-_-",
83
+ "-__-",
84
+ "-d",
85
+ "-o",
86
+ "-p",
87
+ "-x",
88
+ "-|",
89
+ ".",
90
+ ".01",
91
+ ".08",
92
+ ".12",
93
+ ".18",
94
+ ".22",
95
+ ".31",
96
+ ".33",
97
+ ".34",
98
+ ".37",
99
+ ".43",
100
+ ".44",
101
+ ".47",
102
+ ".48",
103
+ ".53",
104
+ ".54",
105
+ ".55",
106
+ ".62",
107
+ ".75",
108
+ ".76",
109
+ ".78",
110
+ ".89",
111
+ ".95",
112
+ ".96",
113
+ ".97",
114
+ ".C.",
115
+ ".D.",
116
+ ".E.",
117
+ ".G.",
118
+ ".H.",
119
+ ".J.",
120
+ ".M.",
121
+ ".Y.",
122
+ "._.",
123
+ ".e.",
124
+ ".g.",
125
+ ".m.",
126
+ ".s.",
127
+ "/",
128
+ "/3",
129
+ "/d",
130
+ "/or",
131
+ "0",
132
+ "0.0",
133
+ "0.o",
134
+ "002",
135
+ "007",
136
+ "00s",
137
+ "0_0",
138
+ "0_o",
139
+ "1",
140
+ "1.08",
141
+ "1.9",
142
+ "10",
143
+ "104.37",
144
+ "10a.m",
145
+ "10a.m.",
146
+ "10p.m",
147
+ "10p.m.",
148
+ "11",
149
+ "11.43",
150
+ "11a.m",
151
+ "11a.m.",
152
+ "11p.m",
153
+ "11p.m.",
154
+ "12",
155
+ "12a.m",
156
+ "12a.m.",
157
+ "12p.m",
158
+ "12p.m.",
159
+ "18.12",
160
+ "18.97",
161
+ "187.01",
162
+ "19.44",
163
+ "19.95",
164
+ "190.48",
165
+ "1960s",
166
+ "1a.m",
167
+ "1a.m.",
168
+ "1p.m",
169
+ "1p.m.",
170
+ "2",
171
+ "2000s",
172
+ "2002",
173
+ "2007",
174
+ "21.18",
175
+ "22.54",
176
+ "2502",
177
+ "28.75",
178
+ "2a.m",
179
+ "2a.m.",
180
+ "2nd",
181
+ "2p.m",
182
+ "2p.m.",
183
+ "3",
184
+ "31.33",
185
+ "33",
186
+ "333",
187
+ "36.53",
188
+ "3892.47",
189
+ "3a.m",
190
+ "3a.m.",
191
+ "3d",
192
+ "3p.m",
193
+ "3p.m.",
194
+ "4",
195
+ "42",
196
+ "44.89",
197
+ "464.34",
198
+ "492nd",
199
+ "4a.m",
200
+ "4a.m.",
201
+ "4p.m",
202
+ "4p.m.",
203
+ "5",
204
+ "502",
205
+ "59.1",
206
+ "5a.m",
207
+ "5a.m.",
208
+ "5p.m",
209
+ "5p.m.",
210
+ "6",
211
+ "6.55",
212
+ "60s",
213
+ "68.76",
214
+ "6a.m",
215
+ "6a.m.",
216
+ "6p.m",
217
+ "6p.m.",
218
+ "7",
219
+ "70",
220
+ "75",
221
+ "79",
222
+ "7a.m",
223
+ "7a.m.",
224
+ "7p.m",
225
+ "7p.m.",
226
+ "8",
227
+ "8)",
228
+ "8-",
229
+ "8-)",
230
+ "8-D",
231
+ "8-d",
232
+ "8.22",
233
+ "81.78",
234
+ "81.9",
235
+ "8D",
236
+ "8a.m",
237
+ "8a.m.",
238
+ "8d",
239
+ "8p.m",
240
+ "8p.m.",
241
+ "9",
242
+ "9.1",
243
+ "97.12",
244
+ "9a.m",
245
+ "9a.m.",
246
+ "9p.m",
247
+ "9p.m.",
248
+ ":",
249
+ ":'(",
250
+ ":')",
251
+ ":'-(",
252
+ ":'-)",
253
+ ":(",
254
+ ":((",
255
+ ":(((",
256
+ ":()",
257
+ ":)",
258
+ ":))",
259
+ ":)))",
260
+ ":*",
261
+ ":-(",
262
+ ":-((",
263
+ ":-(((",
264
+ ":-)",
265
+ ":-))",
266
+ ":-)))",
267
+ ":-*",
268
+ ":-/",
269
+ ":-0",
270
+ ":-3",
271
+ ":->",
272
+ ":-D",
273
+ ":-O",
274
+ ":-P",
275
+ ":-X",
276
+ ":-]",
277
+ ":-d",
278
+ ":-o",
279
+ ":-p",
280
+ ":-x",
281
+ ":-|",
282
+ ":-}",
283
+ ":/",
284
+ ":0",
285
+ ":1",
286
+ ":3",
287
+ ":>",
288
+ ":D",
289
+ ":O",
290
+ ":P",
291
+ ":X",
292
+ ":]",
293
+ ":d",
294
+ ":o",
295
+ ":o)",
296
+ ":p",
297
+ ":x",
298
+ ":x)",
299
+ ":|",
300
+ ":}",
301
+ ":\u2019(",
302
+ ":\u2019)",
303
+ ":\u2019-(",
304
+ ":\u2019-)",
305
+ ";",
306
+ ";)",
307
+ ";-)",
308
+ ";-D",
309
+ ";-X",
310
+ ";-d",
311
+ ";D",
312
+ ";X",
313
+ ";_;",
314
+ ";d",
315
+ "<",
316
+ "<.<",
317
+ "</3",
318
+ "</d",
319
+ "<3",
320
+ "<33",
321
+ "<333",
322
+ "<d",
323
+ "<dd",
324
+ "<ddd",
325
+ "<space>",
326
+ "<xxxx>",
327
+ "=",
328
+ "=(",
329
+ "=)",
330
+ "=/",
331
+ "=3",
332
+ "=D",
333
+ "=X",
334
+ "=[",
335
+ "=]",
336
+ "=d",
337
+ "=|",
338
+ ">",
339
+ ">.<",
340
+ ">.>",
341
+ ">:(",
342
+ ">:o",
343
+ ">:x",
344
+ "><(((*>",
345
+ "?",
346
+ "@",
347
+ "@_@",
348
+ "A",
349
+ "Adm",
350
+ "Adm.",
351
+ "Ai",
352
+ "Ak",
353
+ "Ak.",
354
+ "Ala",
355
+ "Ala.",
356
+ "Alabama",
357
+ "Alaska",
358
+ "Apr",
359
+ "Apr.",
360
+ "April",
361
+ "Are",
362
+ "Ariz",
363
+ "Ariz.",
364
+ "Arizona",
365
+ "Ark",
366
+ "Ark.",
367
+ "Arkansas",
368
+ "Aug",
369
+ "Aug.",
370
+ "August",
371
+ "B",
372
+ "B-LAW",
373
+ "B-VIOLATED BY",
374
+ "B-VIOLATED ON",
375
+ "B-VIOLATION",
376
+ "Bros",
377
+ "Bros.",
378
+ "C",
379
+ "C'm",
380
+ "C++",
381
+ "C.",
382
+ "Ca",
383
+ "Calif",
384
+ "Calif.",
385
+ "California",
386
+ "Can",
387
+ "Cause",
388
+ "Co",
389
+ "Co.",
390
+ "Colo",
391
+ "Colo.",
392
+ "Colorado",
393
+ "Conn",
394
+ "Conn.",
395
+ "Connecticut",
396
+ "Corp",
397
+ "Corp.",
398
+ "Cos",
399
+ "Could",
400
+ "Coz",
401
+ "Cuz",
402
+ "C\u2019m",
403
+ "D",
404
+ "D.",
405
+ "D.C.",
406
+ "Dare",
407
+ "Dec",
408
+ "Dec.",
409
+ "December",
410
+ "Del",
411
+ "Del.",
412
+ "Delaware",
413
+ "Did",
414
+ "Do",
415
+ "Does",
416
+ "Doin",
417
+ "Doin'",
418
+ "Doin\u2019",
419
+ "Dr",
420
+ "Dr.",
421
+ "E",
422
+ "E.G.",
423
+ "E.g",
424
+ "E.g.",
425
+ "F",
426
+ "F.",
427
+ "FALSE",
428
+ "Feb",
429
+ "Feb.",
430
+ "February",
431
+ "Fla",
432
+ "Fla.",
433
+ "Florida",
434
+ "G",
435
+ "Ga",
436
+ "Ga.",
437
+ "Gen",
438
+ "Gen.",
439
+ "Georgia",
440
+ "Goin",
441
+ "Goin'",
442
+ "Goin\u2019",
443
+ "Gon",
444
+ "Got",
445
+ "Gov",
446
+ "Gov.",
447
+ "H",
448
+ "Had",
449
+ "Has",
450
+ "Have",
451
+ "Havin",
452
+ "Havin'",
453
+ "Havin\u2019",
454
+ "He",
455
+ "He's",
456
+ "He\u2019s",
457
+ "How",
458
+ "How's",
459
+ "How\u2019s",
460
+ "I",
461
+ "I-LAW",
462
+ "I-VIOLATED BY",
463
+ "I-VIOLATED ON",
464
+ "I-VIOLATION",
465
+ "I.E.",
466
+ "I.e",
467
+ "I.e.",
468
+ "ION",
469
+ "Ia",
470
+ "Ia.",
471
+ "Id",
472
+ "Id.",
473
+ "Idaho",
474
+ "Ill",
475
+ "Ill.",
476
+ "Illinois",
477
+ "Inc",
478
+ "Inc.",
479
+ "Ind",
480
+ "Ind.",
481
+ "Indiana",
482
+ "Iowa",
483
+ "Is",
484
+ "It",
485
+ "It's",
486
+ "It\u2019s",
487
+ "J",
488
+ "Jan",
489
+ "Jan.",
490
+ "January",
491
+ "Jr",
492
+ "Jr.",
493
+ "Jul",
494
+ "Jul.",
495
+ "July",
496
+ "Jun",
497
+ "Jun.",
498
+ "June",
499
+ "K",
500
+ "K.",
501
+ "Kan",
502
+ "Kan.",
503
+ "Kans",
504
+ "Kans.",
505
+ "Kansas",
506
+ "Kentucky",
507
+ "Ky",
508
+ "Ky.",
509
+ "L",
510
+ "LSE",
511
+ "La",
512
+ "La.",
513
+ "Let",
514
+ "Let's",
515
+ "Let\u2019s",
516
+ "Louisiana",
517
+ "Lovin",
518
+ "Lovin'",
519
+ "Lovin\u2019",
520
+ "Ltd",
521
+ "Ltd.",
522
+ "M",
523
+ "Ma'am",
524
+ "Mar",
525
+ "Mar.",
526
+ "March",
527
+ "Mass",
528
+ "Mass.",
529
+ "Massachusetts",
530
+ "May",
531
+ "Ma\u2019am",
532
+ "Md",
533
+ "Md.",
534
+ "Messrs",
535
+ "Messrs.",
536
+ "Mich",
537
+ "Mich.",
538
+ "Michigan",
539
+ "Might",
540
+ "Minn",
541
+ "Minn.",
542
+ "Minnesota",
543
+ "Miss",
544
+ "Miss.",
545
+ "Mississippi",
546
+ "Mo",
547
+ "Mo.",
548
+ "Mont",
549
+ "Mont.",
550
+ "Mount",
551
+ "Mr",
552
+ "Mr.",
553
+ "Mrs",
554
+ "Mrs.",
555
+ "Ms",
556
+ "Ms.",
557
+ "Mt",
558
+ "Mt.",
559
+ "Must",
560
+ "N",
561
+ "N.C.",
562
+ "N.D.",
563
+ "N.H.",
564
+ "N.J.",
565
+ "N.M.",
566
+ "N.Y.",
567
+ "Neb",
568
+ "Neb.",
569
+ "Nebr",
570
+ "Nebr.",
571
+ "Nebraska",
572
+ "Need",
573
+ "Nev",
574
+ "Nev.",
575
+ "Nevada",
576
+ "New Hampshire",
577
+ "New Jersey",
578
+ "New Mexico",
579
+ "New York",
580
+ "North Carolina",
581
+ "North Dakota",
582
+ "Not",
583
+ "Nothin",
584
+ "Nothin'",
585
+ "Nothin\u2019",
586
+ "Nov",
587
+ "Nov.",
588
+ "November",
589
+ "Nuthin",
590
+ "Nuthin'",
591
+ "Nuthin\u2019",
592
+ "O",
593
+ "O'clock",
594
+ "O.O",
595
+ "O.o",
596
+ "O_O",
597
+ "O_o",
598
+ "Oct",
599
+ "Oct.",
600
+ "October",
601
+ "Okla",
602
+ "Okla.",
603
+ "Oklahoma",
604
+ "Ol",
605
+ "Ol'",
606
+ "Ol\u2019",
607
+ "Ore",
608
+ "Ore.",
609
+ "Oregon",
610
+ "Ought",
611
+ "O\u2019clock",
612
+ "P",
613
+ "Pa",
614
+ "Pa.",
615
+ "Pennsylvania",
616
+ "Ph",
617
+ "Ph.D.",
618
+ "Prof",
619
+ "Prof.",
620
+ "R",
621
+ "ROOT",
622
+ "RUE",
623
+ "Rep",
624
+ "Rep.",
625
+ "Rev",
626
+ "Rev.",
627
+ "S",
628
+ "S.C.",
629
+ "Sen",
630
+ "Sen.",
631
+ "Sep",
632
+ "Sep.",
633
+ "Sept",
634
+ "Sept.",
635
+ "September",
636
+ "Sha",
637
+ "She",
638
+ "She's",
639
+ "She\u2019s",
640
+ "Should",
641
+ "Somethin",
642
+ "Somethin'",
643
+ "Somethin\u2019",
644
+ "South Carolina",
645
+ "St",
646
+ "St.",
647
+ "T",
648
+ "TRUE",
649
+ "Tenn",
650
+ "Tenn.",
651
+ "Tennessee",
652
+ "That",
653
+ "That's",
654
+ "That\u2019s",
655
+ "There",
656
+ "There's",
657
+ "There\u2019s",
658
+ "These",
659
+ "They",
660
+ "This",
661
+ "This's",
662
+ "This\u2019s",
663
+ "Those",
664
+ "V",
665
+ "V.V",
666
+ "V_V",
667
+ "Va",
668
+ "Va.",
669
+ "Virginia",
670
+ "W",
671
+ "Was",
672
+ "Wash",
673
+ "Wash.",
674
+ "Washington",
675
+ "We",
676
+ "Were",
677
+ "What",
678
+ "What's",
679
+ "What\u2019s",
680
+ "When",
681
+ "When's",
682
+ "When\u2019s",
683
+ "Where",
684
+ "Where's",
685
+ "Where\u2019s",
686
+ "Who",
687
+ "Who's",
688
+ "Who\u2019s",
689
+ "Why",
690
+ "Why's",
691
+ "Why\u2019s",
692
+ "Wis",
693
+ "Wis.",
694
+ "Wisconsin",
695
+ "Wo",
696
+ "Would",
697
+ "X'x",
698
+ "X'xxxx",
699
+ "X++",
700
+ "X-XXX",
701
+ "X-XXXX",
702
+ "X-XXXX XX",
703
+ "X.",
704
+ "X.X",
705
+ "X.X.",
706
+ "X.x",
707
+ "X.x.",
708
+ "XD",
709
+ "XDD",
710
+ "XX",
711
+ "XXX",
712
+ "XXXX",
713
+ "X_X",
714
+ "X_x",
715
+ "Xx",
716
+ "Xx'",
717
+ "Xx'x",
718
+ "Xx'xx",
719
+ "Xx.",
720
+ "Xx.X.",
721
+ "Xxx",
722
+ "Xxx'x",
723
+ "Xxx.",
724
+ "Xxxx",
725
+ "Xxxx'",
726
+ "Xxxx'x",
727
+ "Xxxx.",
728
+ "Xxxxx",
729
+ "Xxxxx'",
730
+ "Xxxxx'x",
731
+ "Xxxxx.",
732
+ "Xxxxx\u2019",
733
+ "Xxxxx\u2019x",
734
+ "Xxxx\u2019",
735
+ "Xxxx\u2019x",
736
+ "Xxx\u2019x",
737
+ "Xx\u2019",
738
+ "Xx\u2019x",
739
+ "Xx\u2019xx",
740
+ "X\u2019x",
741
+ "X\u2019xxxx",
742
+ "Y",
743
+ "You",
744
+ "[",
745
+ "[-:",
746
+ "[:",
747
+ "[=",
748
+ "\\",
749
+ "\\\")",
750
+ "\\n",
751
+ "\\t",
752
+ "\\x",
753
+ "]",
754
+ "]=",
755
+ "^",
756
+ "^_^",
757
+ "^__^",
758
+ "^___^",
759
+ "_*)",
760
+ "_-)",
761
+ "_.)",
762
+ "_<)",
763
+ "_^)",
764
+ "__-",
765
+ "__^",
766
+ "_\u00ac)",
767
+ "_\u0ca0)",
768
+ "a",
769
+ "a.",
770
+ "a.m",
771
+ "a.m.",
772
+ "aback",
773
+ "abiding",
774
+ "ability",
775
+ "able",
776
+ "about",
777
+ "above",
778
+ "absolutely",
779
+ "abuse",
780
+ "abuses",
781
+ "academic",
782
+ "academically",
783
+ "access",
784
+ "accessing",
785
+ "accidental",
786
+ "acclaimed",
787
+ "accorded",
788
+ "account",
789
+ "accountability",
790
+ "accountable",
791
+ "accounts",
792
+ "accredited",
793
+ "accrue",
794
+ "accumulated",
795
+ "accurate",
796
+ "accused",
797
+ "accusing",
798
+ "ace",
799
+ "ach",
800
+ "ack",
801
+ "acknowledge",
802
+ "across",
803
+ "act",
804
+ "acting",
805
+ "action",
806
+ "actions",
807
+ "activate",
808
+ "actively",
809
+ "activities",
810
+ "activity",
811
+ "actor",
812
+ "actors",
813
+ "acts",
814
+ "actual",
815
+ "actually",
816
+ "acy",
817
+ "ad",
818
+ "add",
819
+ "added",
820
+ "addiction",
821
+ "addictive",
822
+ "adding",
823
+ "addition",
824
+ "additional",
825
+ "additionally",
826
+ "address",
827
+ "addressed",
828
+ "addresses",
829
+ "addressing",
830
+ "adds",
831
+ "ade",
832
+ "adequate",
833
+ "adequately",
834
+ "adhere",
835
+ "adherence",
836
+ "adhering",
837
+ "adm",
838
+ "adm.",
839
+ "administration",
840
+ "ads",
841
+ "adtech",
842
+ "adult",
843
+ "advanced",
844
+ "advantage",
845
+ "adventure",
846
+ "adversely",
847
+ "advert",
848
+ "advertise",
849
+ "advertised",
850
+ "advertisements",
851
+ "advertisers",
852
+ "advertising",
853
+ "advice",
854
+ "advise",
855
+ "advisers",
856
+ "advisor",
857
+ "advisors",
858
+ "ady",
859
+ "afe",
860
+ "aff",
861
+ "affair",
862
+ "affect",
863
+ "affected",
864
+ "affecting",
865
+ "affordable",
866
+ "aforementioned",
867
+ "aft",
868
+ "after",
869
+ "again",
870
+ "against",
871
+ "age",
872
+ "agencies",
873
+ "agency",
874
+ "agencys",
875
+ "agents",
876
+ "ages",
877
+ "aggravated",
878
+ "aggravating",
879
+ "aggregators",
880
+ "aggressive",
881
+ "aggressively",
882
+ "aggrieved",
883
+ "ago",
884
+ "agree",
885
+ "agreed",
886
+ "agreeing",
887
+ "agreement",
888
+ "agreements",
889
+ "ahead",
890
+ "ai",
891
+ "aid",
892
+ "ail",
893
+ "aim",
894
+ "aimed",
895
+ "ain",
896
+ "air",
897
+ "ait",
898
+ "ak",
899
+ "ak.",
900
+ "ake",
901
+ "aks",
902
+ "aky",
903
+ "ala",
904
+ "ala.",
905
+ "alarming",
906
+ "ale",
907
+ "alert",
908
+ "alerts",
909
+ "alf",
910
+ "alias",
911
+ "alk",
912
+ "all",
913
+ "allegations",
914
+ "alleged",
915
+ "allegedly",
916
+ "alleges",
917
+ "alleging",
918
+ "allergen",
919
+ "allowed",
920
+ "almost",
921
+ "along",
922
+ "already",
923
+ "als",
924
+ "also",
925
+ "alt",
926
+ "alternative",
927
+ "alternatives",
928
+ "always",
929
+ "am",
930
+ "amass",
931
+ "amassing",
932
+ "amazing",
933
+ "ame",
934
+ "american",
935
+ "amm",
936
+ "among",
937
+ "amount",
938
+ "amounts",
939
+ "ams",
940
+ "an",
941
+ "an.",
942
+ "analysts",
943
+ "analytics",
944
+ "and",
945
+ "and/or",
946
+ "ane",
947
+ "angry",
948
+ "ank",
949
+ "announced",
950
+ "annoyance",
951
+ "annoyed",
952
+ "annoying",
953
+ "annual",
954
+ "another",
955
+ "ans",
956
+ "ant",
957
+ "anticipated",
958
+ "anxiety",
959
+ "any",
960
+ "anymore",
961
+ "anyone",
962
+ "anything",
963
+ "apex",
964
+ "app",
965
+ "appalled",
966
+ "appalling",
967
+ "apparently",
968
+ "appear",
969
+ "appears",
970
+ "appenders",
971
+ "applications",
972
+ "applying",
973
+ "appropriate",
974
+ "approval",
975
+ "approved",
976
+ "apps",
977
+ "apr",
978
+ "apr.",
979
+ "april",
980
+ "ar.",
981
+ "archives",
982
+ "ard",
983
+ "are",
984
+ "ariz",
985
+ "ariz.",
986
+ "ark",
987
+ "ark.",
988
+ "arm",
989
+ "armor",
990
+ "arn",
991
+ "around",
992
+ "arrangement",
993
+ "ars",
994
+ "art",
995
+ "artificial",
996
+ "artificially",
997
+ "artists",
998
+ "ary",
999
+ "as",
1000
+ "asbestos",
1001
+ "ase",
1002
+ "ash",
1003
+ "ask",
1004
+ "asked",
1005
+ "asking",
1006
+ "aspiring",
1007
+ "ass",
1008
+ "asserting",
1009
+ "assertions",
1010
+ "assets",
1011
+ "assignments",
1012
+ "assistance",
1013
+ "assistants",
1014
+ "associated",
1015
+ "associates",
1016
+ "association",
1017
+ "assumed",
1018
+ "assurance",
1019
+ "assuring",
1020
+ "ast",
1021
+ "asy",
1022
+ "at",
1023
+ "ata",
1024
+ "ate",
1025
+ "ats",
1026
+ "attempt",
1027
+ "attempted",
1028
+ "attempts",
1029
+ "attendance",
1030
+ "attended",
1031
+ "attention",
1032
+ "attract",
1033
+ "attributed",
1034
+ "audacity",
1035
+ "audience",
1036
+ "audit",
1037
+ "auditions",
1038
+ "audits",
1039
+ "aug",
1040
+ "aug.",
1041
+ "authenticity",
1042
+ "authorities",
1043
+ "authorization",
1044
+ "authorized",
1045
+ "automated",
1046
+ "automatic",
1047
+ "automatically",
1048
+ "availability",
1049
+ "available",
1050
+ "ave",
1051
+ "avid",
1052
+ "aware",
1053
+ "away",
1054
+ "awn",
1055
+ "aws",
1056
+ "ays",
1057
+ "azy",
1058
+ "b",
1059
+ "b-law",
1060
+ "b-violated by",
1061
+ "b-violated on",
1062
+ "b-violation",
1063
+ "b.",
1064
+ "backdated",
1065
+ "backlash",
1066
+ "bad",
1067
+ "bait",
1068
+ "baked",
1069
+ "bal",
1070
+ "balances",
1071
+ "bandwidth",
1072
+ "bank",
1073
+ "banking",
1074
+ "bankruptcy",
1075
+ "barely",
1076
+ "barrage",
1077
+ "base",
1078
+ "based",
1079
+ "basic",
1080
+ "basically",
1081
+ "battery",
1082
+ "battles",
1083
+ "bby",
1084
+ "be",
1085
+ "bear",
1086
+ "because",
1087
+ "become",
1088
+ "bed",
1089
+ "been",
1090
+ "before",
1091
+ "beforehand",
1092
+ "begin",
1093
+ "behavior",
1094
+ "behind",
1095
+ "being",
1096
+ "bel",
1097
+ "believe",
1098
+ "beneficiary",
1099
+ "benefit",
1100
+ "benefits",
1101
+ "ber",
1102
+ "best",
1103
+ "betrayed",
1104
+ "better",
1105
+ "between",
1106
+ "beverage",
1107
+ "beverages",
1108
+ "beyond",
1109
+ "bid",
1110
+ "big",
1111
+ "billing",
1112
+ "bills",
1113
+ "bit",
1114
+ "black",
1115
+ "blaming",
1116
+ "blast",
1117
+ "blasting",
1118
+ "blatant",
1119
+ "blatantly",
1120
+ "ble",
1121
+ "bliley",
1122
+ "blockbuster",
1123
+ "blow",
1124
+ "bly",
1125
+ "board",
1126
+ "boat",
1127
+ "bodies",
1128
+ "body",
1129
+ "bombard",
1130
+ "bombarded",
1131
+ "bombarding",
1132
+ "bonds",
1133
+ "bonuses",
1134
+ "boost",
1135
+ "boosted",
1136
+ "booting",
1137
+ "bor",
1138
+ "bosses",
1139
+ "bot",
1140
+ "both",
1141
+ "bother",
1142
+ "bothering",
1143
+ "bots",
1144
+ "bout",
1145
+ "box",
1146
+ "boxes",
1147
+ "br.",
1148
+ "brand",
1149
+ "brands",
1150
+ "brass",
1151
+ "breach",
1152
+ "breached",
1153
+ "breaches",
1154
+ "breaching",
1155
+ "bread",
1156
+ "breaking",
1157
+ "breaks",
1158
+ "brian",
1159
+ "brightfuture",
1160
+ "brightstar",
1161
+ "bringing",
1162
+ "brink",
1163
+ "broadcasting",
1164
+ "broadcasts",
1165
+ "broke",
1166
+ "broken",
1167
+ "brokerage",
1168
+ "brokers",
1169
+ "bros",
1170
+ "bros.",
1171
+ "brought",
1172
+ "brown",
1173
+ "brunt",
1174
+ "brushed",
1175
+ "bts",
1176
+ "buck",
1177
+ "budget",
1178
+ "builds",
1179
+ "bunch",
1180
+ "burden",
1181
+ "burdened",
1182
+ "bureau",
1183
+ "business",
1184
+ "businesses",
1185
+ "busted",
1186
+ "but",
1187
+ "buy",
1188
+ "buying",
1189
+ "by",
1190
+ "bypassing",
1191
+ "bystander",
1192
+ "c",
1193
+ "c'm",
1194
+ "c++",
1195
+ "c.",
1196
+ "ca",
1197
+ "cahoots",
1198
+ "cal",
1199
+ "calculate",
1200
+ "calculating",
1201
+ "calculations",
1202
+ "calif",
1203
+ "calif.",
1204
+ "california",
1205
+ "call",
1206
+ "called",
1207
+ "calling",
1208
+ "calls",
1209
+ "cam",
1210
+ "cambogia",
1211
+ "came",
1212
+ "campaign",
1213
+ "campaigns",
1214
+ "can",
1215
+ "cancel",
1216
+ "cancelled",
1217
+ "capabilities",
1218
+ "capability",
1219
+ "capacity",
1220
+ "capsule",
1221
+ "card",
1222
+ "cards",
1223
+ "care",
1224
+ "careers",
1225
+ "careful",
1226
+ "carefully",
1227
+ "carelessly",
1228
+ "caring",
1229
+ "carried",
1230
+ "carry",
1231
+ "carrying",
1232
+ "case",
1233
+ "cases",
1234
+ "cast",
1235
+ "casting",
1236
+ "casts",
1237
+ "casually",
1238
+ "categorizing",
1239
+ "cater",
1240
+ "catering",
1241
+ "caught",
1242
+ "cause",
1243
+ "caused",
1244
+ "causes",
1245
+ "causing",
1246
+ "cautious",
1247
+ "cdos",
1248
+ "ce>",
1249
+ "cease",
1250
+ "ced",
1251
+ "cel",
1252
+ "celebrities",
1253
+ "cellular",
1254
+ "center",
1255
+ "centers",
1256
+ "ceo",
1257
+ "cer",
1258
+ "ceremonies",
1259
+ "certain",
1260
+ "certified",
1261
+ "ces",
1262
+ "cfa",
1263
+ "ch.",
1264
+ "challenging",
1265
+ "character",
1266
+ "charge",
1267
+ "charged",
1268
+ "charges",
1269
+ "charging",
1270
+ "charts",
1271
+ "chase",
1272
+ "chat",
1273
+ "cheat",
1274
+ "cheated",
1275
+ "cheaters",
1276
+ "cheats",
1277
+ "checking",
1278
+ "chief",
1279
+ "child",
1280
+ "children",
1281
+ "childrens",
1282
+ "childs",
1283
+ "choice",
1284
+ "choices",
1285
+ "choose",
1286
+ "chose",
1287
+ "chosen",
1288
+ "cinema",
1289
+ "cinemas",
1290
+ "circulating",
1291
+ "circumventing",
1292
+ "cit",
1293
+ "cks",
1294
+ "claim",
1295
+ "claimed",
1296
+ "claiming",
1297
+ "claims",
1298
+ "clan",
1299
+ "class",
1300
+ "classes",
1301
+ "clean",
1302
+ "clear",
1303
+ "clearly",
1304
+ "cleverly",
1305
+ "click",
1306
+ "client",
1307
+ "clients",
1308
+ "clinic",
1309
+ "clinical",
1310
+ "clinics",
1311
+ "clogging",
1312
+ "closed",
1313
+ "club",
1314
+ "clutter",
1315
+ "cluttered",
1316
+ "co",
1317
+ "co.",
1318
+ "code",
1319
+ "codes",
1320
+ "coding",
1321
+ "cola",
1322
+ "collaboration",
1323
+ "collaborations",
1324
+ "collateralized",
1325
+ "collect",
1326
+ "collecting",
1327
+ "collection",
1328
+ "colluded",
1329
+ "colluding",
1330
+ "collusion",
1331
+ "colo",
1332
+ "colo.",
1333
+ "come",
1334
+ "coming",
1335
+ "commerce",
1336
+ "commercial",
1337
+ "commitment",
1338
+ "committed",
1339
+ "common",
1340
+ "communication",
1341
+ "communications",
1342
+ "community",
1343
+ "companies",
1344
+ "company",
1345
+ "companys",
1346
+ "comparable",
1347
+ "compared",
1348
+ "compelled",
1349
+ "compelling",
1350
+ "compensate",
1351
+ "compensated",
1352
+ "compensates",
1353
+ "compensating",
1354
+ "compensation",
1355
+ "compete",
1356
+ "complained",
1357
+ "complaint",
1358
+ "complaints",
1359
+ "complete",
1360
+ "completely",
1361
+ "compliance",
1362
+ "compliant",
1363
+ "complicated",
1364
+ "complications",
1365
+ "comply",
1366
+ "component",
1367
+ "components",
1368
+ "composed",
1369
+ "composition",
1370
+ "compounded",
1371
+ "compounding",
1372
+ "compounds",
1373
+ "comprehensive",
1374
+ "compromise",
1375
+ "compromised",
1376
+ "compulsory",
1377
+ "computer",
1378
+ "computers",
1379
+ "conceal",
1380
+ "concealed",
1381
+ "concealing",
1382
+ "concentration",
1383
+ "concern",
1384
+ "concerned",
1385
+ "concerning",
1386
+ "concerns",
1387
+ "concert",
1388
+ "concluded",
1389
+ "condition",
1390
+ "conditions",
1391
+ "conduct",
1392
+ "conducted",
1393
+ "conducting",
1394
+ "confidential",
1395
+ "confidentiality",
1396
+ "confuse",
1397
+ "confusion",
1398
+ "conglomerate",
1399
+ "conjunction",
1400
+ "conn",
1401
+ "conn.",
1402
+ "connecticut",
1403
+ "connection",
1404
+ "connivance",
1405
+ "consent",
1406
+ "consented",
1407
+ "consequences",
1408
+ "consequently",
1409
+ "consider",
1410
+ "considerable",
1411
+ "considered",
1412
+ "considering",
1413
+ "consistent",
1414
+ "consistently",
1415
+ "console",
1416
+ "consoles",
1417
+ "conspicuous",
1418
+ "conspired",
1419
+ "constant",
1420
+ "constantly",
1421
+ "constituting",
1422
+ "constitution",
1423
+ "constitutional",
1424
+ "consulting",
1425
+ "consumed",
1426
+ "consumer",
1427
+ "consumers",
1428
+ "consuming",
1429
+ "consumption",
1430
+ "contain",
1431
+ "contained",
1432
+ "containing",
1433
+ "content",
1434
+ "contested",
1435
+ "continue",
1436
+ "continued",
1437
+ "continuing",
1438
+ "continuous",
1439
+ "contract",
1440
+ "contractors",
1441
+ "contracts",
1442
+ "contractual",
1443
+ "contravened",
1444
+ "contravening",
1445
+ "contravention",
1446
+ "control",
1447
+ "controversial",
1448
+ "controversy",
1449
+ "cool",
1450
+ "cooperatives",
1451
+ "coordinator",
1452
+ "copies",
1453
+ "coppa",
1454
+ "coppas",
1455
+ "copyright",
1456
+ "copyrighted",
1457
+ "copyrights",
1458
+ "corp",
1459
+ "corp.",
1460
+ "corporate",
1461
+ "corporation",
1462
+ "correct",
1463
+ "corrective",
1464
+ "correctly",
1465
+ "corroborated",
1466
+ "cos",
1467
+ "cost",
1468
+ "costing",
1469
+ "costs",
1470
+ "couch",
1471
+ "could",
1472
+ "count",
1473
+ "countless",
1474
+ "course",
1475
+ "courses",
1476
+ "court",
1477
+ "cover",
1478
+ "coverage",
1479
+ "covertly",
1480
+ "coz",
1481
+ "craftily",
1482
+ "crazy",
1483
+ "create",
1484
+ "created",
1485
+ "creating",
1486
+ "creative",
1487
+ "creators",
1488
+ "credibility",
1489
+ "credit",
1490
+ "crew",
1491
+ "criticism",
1492
+ "critics",
1493
+ "crossed",
1494
+ "crowd",
1495
+ "crr",
1496
+ "crucial",
1497
+ "crunch",
1498
+ "cryptocurrencies",
1499
+ "ct.",
1500
+ "cts",
1501
+ "cur",
1502
+ "currency",
1503
+ "currently",
1504
+ "curriculum",
1505
+ "customer",
1506
+ "customers",
1507
+ "cut",
1508
+ "cutting",
1509
+ "cuz",
1510
+ "cybercriminals",
1511
+ "cybersecurity",
1512
+ "cys",
1513
+ "c\u2019m",
1514
+ "d",
1515
+ "d)",
1516
+ "d-",
1517
+ "d-)",
1518
+ "d-X",
1519
+ "d.",
1520
+ "d.c.",
1521
+ "d.d",
1522
+ "d.dd",
1523
+ "d.x",
1524
+ "dX",
1525
+ "d_d",
1526
+ "d_x",
1527
+ "daily",
1528
+ "dal",
1529
+ "damage",
1530
+ "damaged",
1531
+ "damages",
1532
+ "damaging",
1533
+ "danger",
1534
+ "dap",
1535
+ "dare",
1536
+ "dark",
1537
+ "data",
1538
+ "databases",
1539
+ "date",
1540
+ "dates",
1541
+ "daunting",
1542
+ "day",
1543
+ "dd",
1544
+ "dd.d",
1545
+ "dd.dd",
1546
+ "ddd",
1547
+ "ddd.dd",
1548
+ "dddd",
1549
+ "dddd.dd",
1550
+ "ddddx",
1551
+ "dddxx",
1552
+ "dds",
1553
+ "ddx.x",
1554
+ "ddx.x.",
1555
+ "dea",
1556
+ "deal",
1557
+ "dealing",
1558
+ "dealings",
1559
+ "deals",
1560
+ "debate",
1561
+ "debt",
1562
+ "dec",
1563
+ "dec.",
1564
+ "decade",
1565
+ "decades",
1566
+ "deceitful",
1567
+ "deceive",
1568
+ "deceived",
1569
+ "deceives",
1570
+ "deceiving",
1571
+ "decent",
1572
+ "deception",
1573
+ "deceptive",
1574
+ "deceptively",
1575
+ "decided",
1576
+ "decides",
1577
+ "declaratory",
1578
+ "decrease",
1579
+ "ded",
1580
+ "dedicated",
1581
+ "deducted",
1582
+ "deemed",
1583
+ "deep",
1584
+ "deeply",
1585
+ "defect",
1586
+ "defective",
1587
+ "defects",
1588
+ "defendant",
1589
+ "defendants",
1590
+ "definitely",
1591
+ "del",
1592
+ "del.",
1593
+ "delays",
1594
+ "deleting",
1595
+ "deliberate",
1596
+ "deliberately",
1597
+ "deliver",
1598
+ "delivered",
1599
+ "delivering",
1600
+ "delivery",
1601
+ "demand",
1602
+ "demanding",
1603
+ "den",
1604
+ "denial",
1605
+ "denied",
1606
+ "dent",
1607
+ "denying",
1608
+ "deo",
1609
+ "department",
1610
+ "dependable",
1611
+ "deplete",
1612
+ "depleted",
1613
+ "depleting",
1614
+ "depletion",
1615
+ "deploying",
1616
+ "deployment",
1617
+ "deprived",
1618
+ "depriving",
1619
+ "depth",
1620
+ "der",
1621
+ "derivative",
1622
+ "derivatives",
1623
+ "derived",
1624
+ "des",
1625
+ "described",
1626
+ "descriptions",
1627
+ "deserve",
1628
+ "deserving",
1629
+ "design",
1630
+ "designed",
1631
+ "designing",
1632
+ "desist",
1633
+ "despite",
1634
+ "detailed",
1635
+ "details",
1636
+ "determined",
1637
+ "devaluation",
1638
+ "devalued",
1639
+ "devalues",
1640
+ "devaluing",
1641
+ "developed",
1642
+ "developer",
1643
+ "developers",
1644
+ "development",
1645
+ "device",
1646
+ "devices",
1647
+ "devised",
1648
+ "devising",
1649
+ "devoid",
1650
+ "dge",
1651
+ "dgy",
1652
+ "diabetic",
1653
+ "diagnosis",
1654
+ "diagnostic",
1655
+ "dic",
1656
+ "did",
1657
+ "diet",
1658
+ "difference",
1659
+ "different",
1660
+ "digital",
1661
+ "diluted",
1662
+ "dilutes",
1663
+ "diminished",
1664
+ "dio",
1665
+ "diploma",
1666
+ "direct",
1667
+ "directed",
1668
+ "directly",
1669
+ "director",
1670
+ "directors",
1671
+ "dirty",
1672
+ "disabling",
1673
+ "disappointed",
1674
+ "disappointing",
1675
+ "disappointment",
1676
+ "disburse",
1677
+ "disbursed",
1678
+ "disclose",
1679
+ "disclosed",
1680
+ "disclosing",
1681
+ "disclosure",
1682
+ "disclosures",
1683
+ "discounts",
1684
+ "discover",
1685
+ "discovered",
1686
+ "discovery",
1687
+ "discretion",
1688
+ "discretionary",
1689
+ "discussing",
1690
+ "disgusted",
1691
+ "disheartening",
1692
+ "dishonest",
1693
+ "dishonesty",
1694
+ "dismay",
1695
+ "disorders",
1696
+ "dispatch",
1697
+ "dispatched",
1698
+ "dispatching",
1699
+ "disposing",
1700
+ "disregard",
1701
+ "disregarded",
1702
+ "disregarding",
1703
+ "disregards",
1704
+ "disrespectful",
1705
+ "disrespecting",
1706
+ "disrupt",
1707
+ "disrupted",
1708
+ "disrupting",
1709
+ "disruption",
1710
+ "disruptions",
1711
+ "disruptive",
1712
+ "disrupts",
1713
+ "dissatisfaction",
1714
+ "dissemination",
1715
+ "distinct",
1716
+ "distorting",
1717
+ "distractions",
1718
+ "distress",
1719
+ "distressed",
1720
+ "distressing",
1721
+ "distribute",
1722
+ "distributed",
1723
+ "distributing",
1724
+ "distribution",
1725
+ "distributor",
1726
+ "disturb",
1727
+ "disturbance",
1728
+ "disturbed",
1729
+ "disturbing",
1730
+ "dit",
1731
+ "dj",
1732
+ "dly",
1733
+ "dm.",
1734
+ "dmca",
1735
+ "do",
1736
+ "docs",
1737
+ "doctors",
1738
+ "documents",
1739
+ "dodgy",
1740
+ "doe",
1741
+ "does",
1742
+ "doin",
1743
+ "doin'",
1744
+ "doing",
1745
+ "doin\u2019",
1746
+ "dollar",
1747
+ "dollars",
1748
+ "dom",
1749
+ "done",
1750
+ "dos",
1751
+ "double",
1752
+ "doubt",
1753
+ "doubts",
1754
+ "dow",
1755
+ "down",
1756
+ "download",
1757
+ "downloaded",
1758
+ "downloading",
1759
+ "downright",
1760
+ "dpr",
1761
+ "dr",
1762
+ "dr.",
1763
+ "drain",
1764
+ "drink",
1765
+ "drinks",
1766
+ "drug",
1767
+ "drugs",
1768
+ "dth",
1769
+ "dual",
1770
+ "duallearn3951.62",
1771
+ "dubious",
1772
+ "due",
1773
+ "dumped",
1774
+ "dumping",
1775
+ "duped",
1776
+ "duration",
1777
+ "during",
1778
+ "duties",
1779
+ "dx",
1780
+ "dx.x",
1781
+ "dx.x.",
1782
+ "e",
1783
+ "e's",
1784
+ "e.",
1785
+ "e.g",
1786
+ "e.g.",
1787
+ "each",
1788
+ "ead",
1789
+ "eak",
1790
+ "eal",
1791
+ "eam",
1792
+ "ean",
1793
+ "ear",
1794
+ "earlier",
1795
+ "early",
1796
+ "earned",
1797
+ "earnings",
1798
+ "eas",
1799
+ "easy",
1800
+ "eat",
1801
+ "eating",
1802
+ "eats",
1803
+ "eau",
1804
+ "eb.",
1805
+ "ebr",
1806
+ "ebt",
1807
+ "eby",
1808
+ "ec.",
1809
+ "ecg",
1810
+ "ech",
1811
+ "economic",
1812
+ "economy",
1813
+ "ect",
1814
+ "ed",
1815
+ "edge",
1816
+ "eds",
1817
+ "edtech",
1818
+ "education",
1819
+ "educational",
1820
+ "educators",
1821
+ "eed",
1822
+ "eek",
1823
+ "eel",
1824
+ "eem",
1825
+ "een",
1826
+ "eep",
1827
+ "eer",
1828
+ "ees",
1829
+ "eet",
1830
+ "effect",
1831
+ "effective",
1832
+ "effectively",
1833
+ "effectiveness",
1834
+ "effects",
1835
+ "efficacy",
1836
+ "effort",
1837
+ "eft",
1838
+ "efta",
1839
+ "ega",
1840
+ "egregious",
1841
+ "egy",
1842
+ "ehr",
1843
+ "eir",
1844
+ "either",
1845
+ "el.",
1846
+ "eld",
1847
+ "electronic",
1848
+ "elements",
1849
+ "elf",
1850
+ "eligible",
1851
+ "ell",
1852
+ "elp",
1853
+ "els",
1854
+ "elses",
1855
+ "elsewhere",
1856
+ "elt",
1857
+ "ely",
1858
+ "em",
1859
+ "ema",
1860
+ "email",
1861
+ "emailing",
1862
+ "emails",
1863
+ "embroiled",
1864
+ "eme",
1865
+ "emerged",
1866
+ "emergencies",
1867
+ "emergency",
1868
+ "emotional",
1869
+ "employee",
1870
+ "employees",
1871
+ "employing",
1872
+ "employment",
1873
+ "ems",
1874
+ "en",
1875
+ "en.",
1876
+ "enabled",
1877
+ "end",
1878
+ "endangering",
1879
+ "ended",
1880
+ "endorsing",
1881
+ "endure",
1882
+ "ene",
1883
+ "energy",
1884
+ "enforce",
1885
+ "enforced",
1886
+ "enforcement",
1887
+ "engaged",
1888
+ "engaging",
1889
+ "engineering",
1890
+ "enhance",
1891
+ "enhanced",
1892
+ "enhancing",
1893
+ "enjoy",
1894
+ "enjoyable",
1895
+ "enn",
1896
+ "enough",
1897
+ "enriched",
1898
+ "enriching",
1899
+ "enroll",
1900
+ "enrolled",
1901
+ "enrolling",
1902
+ "enrollment",
1903
+ "ens",
1904
+ "ent",
1905
+ "entering",
1906
+ "entertainment",
1907
+ "entire",
1908
+ "entirely",
1909
+ "entities",
1910
+ "entitled",
1911
+ "entitlement",
1912
+ "entity",
1913
+ "entitys",
1914
+ "environment",
1915
+ "eos",
1916
+ "ep.",
1917
+ "episodes",
1918
+ "eps",
1919
+ "ept",
1920
+ "equally",
1921
+ "equipment",
1922
+ "equivalent",
1923
+ "ere",
1924
+ "erm",
1925
+ "ern",
1926
+ "erosion",
1927
+ "error",
1928
+ "ers",
1929
+ "ert",
1930
+ "ery",
1931
+ "escalated",
1932
+ "ese",
1933
+ "especially",
1934
+ "esrb",
1935
+ "ess",
1936
+ "essential",
1937
+ "essentially",
1938
+ "est",
1939
+ "establish",
1940
+ "established",
1941
+ "estate",
1942
+ "esteemed",
1943
+ "ete",
1944
+ "ethical",
1945
+ "ethics",
1946
+ "ets",
1947
+ "ety",
1948
+ "eula",
1949
+ "ev.",
1950
+ "evade",
1951
+ "eve",
1952
+ "even",
1953
+ "events",
1954
+ "ever",
1955
+ "every",
1956
+ "everyone",
1957
+ "everything",
1958
+ "ews",
1959
+ "exacerbated",
1960
+ "exacerbates",
1961
+ "exacerbating",
1962
+ "exact",
1963
+ "exaggerated",
1964
+ "exaggerating",
1965
+ "excess",
1966
+ "excessive",
1967
+ "exchange",
1968
+ "exchanged",
1969
+ "exchanging",
1970
+ "excited",
1971
+ "excitement",
1972
+ "exclusive",
1973
+ "executed",
1974
+ "executing",
1975
+ "execution",
1976
+ "executive",
1977
+ "executives",
1978
+ "exempt",
1979
+ "exhaustion",
1980
+ "exist",
1981
+ "exorbitant",
1982
+ "expand",
1983
+ "expansion",
1984
+ "expect",
1985
+ "expected",
1986
+ "expecting",
1987
+ "expend",
1988
+ "expense",
1989
+ "expenses",
1990
+ "expensive",
1991
+ "experience",
1992
+ "experiencing",
1993
+ "expired",
1994
+ "explicit",
1995
+ "explicitly",
1996
+ "exploit",
1997
+ "exploited",
1998
+ "exploiting",
1999
+ "expose",
2000
+ "exposed",
2001
+ "exposing",
2002
+ "exposure",
2003
+ "express",
2004
+ "expressed",
2005
+ "expressing",
2006
+ "expressly",
2007
+ "ext",
2008
+ "extended",
2009
+ "extra",
2010
+ "extras",
2011
+ "extremely",
2012
+ "eyebrows",
2013
+ "eze",
2014
+ "e\u2019s",
2015
+ "f",
2016
+ "f.",
2017
+ "fabricated",
2018
+ "fabricating",
2019
+ "face",
2020
+ "faced",
2021
+ "facilitated",
2022
+ "facilitating",
2023
+ "facility",
2024
+ "facing",
2025
+ "fact",
2026
+ "fail",
2027
+ "failed",
2028
+ "failing",
2029
+ "failure",
2030
+ "fair",
2031
+ "fairness",
2032
+ "faith",
2033
+ "fake",
2034
+ "fall",
2035
+ "fallen",
2036
+ "falling",
2037
+ "fallout",
2038
+ "false",
2039
+ "falsehoods",
2040
+ "falsely",
2041
+ "falsified",
2042
+ "families",
2043
+ "family",
2044
+ "famous",
2045
+ "fan",
2046
+ "fancy",
2047
+ "fanreach",
2048
+ "fans",
2049
+ "far",
2050
+ "fast",
2051
+ "faulty",
2052
+ "favored",
2053
+ "favorite",
2054
+ "fax",
2055
+ "fda",
2056
+ "fear",
2057
+ "feature",
2058
+ "features",
2059
+ "features2687.31",
2060
+ "featuring",
2061
+ "feb",
2062
+ "feb.",
2063
+ "fed",
2064
+ "federal",
2065
+ "federally",
2066
+ "fee",
2067
+ "feel",
2068
+ "feeling",
2069
+ "feels",
2070
+ "fees",
2071
+ "fell",
2072
+ "fellow",
2073
+ "felt",
2074
+ "fer",
2075
+ "ferpa",
2076
+ "few",
2077
+ "fewer",
2078
+ "ffs",
2079
+ "fic",
2080
+ "fictional",
2081
+ "fictitious",
2082
+ "figure",
2083
+ "figures",
2084
+ "figuring",
2085
+ "file",
2086
+ "filed",
2087
+ "filing",
2088
+ "fill",
2089
+ "filled",
2090
+ "filling",
2091
+ "film",
2092
+ "films",
2093
+ "finance",
2094
+ "financial",
2095
+ "financially",
2096
+ "find",
2097
+ "fines",
2098
+ "fire",
2099
+ "firm",
2100
+ "firms",
2101
+ "first",
2102
+ "fishy",
2103
+ "fit",
2104
+ "fitness",
2105
+ "five",
2106
+ "fix",
2107
+ "fixed",
2108
+ "fla",
2109
+ "fla.",
2110
+ "flagship",
2111
+ "flaw",
2112
+ "flawed",
2113
+ "fledged",
2114
+ "flick",
2115
+ "flood",
2116
+ "flooded",
2117
+ "flooding",
2118
+ "flsa",
2119
+ "fluctuations",
2120
+ "focusing",
2121
+ "folks",
2122
+ "follow",
2123
+ "followed",
2124
+ "followers",
2125
+ "following",
2126
+ "fooled",
2127
+ "for",
2128
+ "forced",
2129
+ "forcing",
2130
+ "forecasting",
2131
+ "forefront",
2132
+ "form",
2133
+ "former",
2134
+ "forms",
2135
+ "forth",
2136
+ "forthcoming",
2137
+ "forward",
2138
+ "found",
2139
+ "four",
2140
+ "fragrances",
2141
+ "frame",
2142
+ "free",
2143
+ "frequency",
2144
+ "frequently",
2145
+ "friendly",
2146
+ "friends",
2147
+ "from",
2148
+ "front",
2149
+ "frustrating",
2150
+ "frustration",
2151
+ "fsrs",
2152
+ "fta",
2153
+ "fts",
2154
+ "ful",
2155
+ "fulfill",
2156
+ "full",
2157
+ "fully",
2158
+ "fun",
2159
+ "functional",
2160
+ "functionality",
2161
+ "functioning",
2162
+ "fund",
2163
+ "fundamental",
2164
+ "funds",
2165
+ "funneled",
2166
+ "further",
2167
+ "furthermore",
2168
+ "future",
2169
+ "g",
2170
+ "g.",
2171
+ "ga",
2172
+ "ga.",
2173
+ "gain",
2174
+ "gains",
2175
+ "gal",
2176
+ "gambling",
2177
+ "game",
2178
+ "gameassure",
2179
+ "gamenet",
2180
+ "gameplay",
2181
+ "gamer",
2182
+ "gamers",
2183
+ "games",
2184
+ "gameshield",
2185
+ "gametech",
2186
+ "gaming",
2187
+ "gan",
2188
+ "garcinia",
2189
+ "gave",
2190
+ "gdpr",
2191
+ "gears",
2192
+ "ged",
2193
+ "gen",
2194
+ "gen.",
2195
+ "general",
2196
+ "generated",
2197
+ "ger",
2198
+ "ges",
2199
+ "get",
2200
+ "getting",
2201
+ "ggy",
2202
+ "ghost",
2203
+ "ght",
2204
+ "gia",
2205
+ "giant",
2206
+ "giants",
2207
+ "gin",
2208
+ "git",
2209
+ "give",
2210
+ "given",
2211
+ "giving",
2212
+ "glad",
2213
+ "glitch",
2214
+ "global",
2215
+ "globally",
2216
+ "gly",
2217
+ "glycols",
2218
+ "gns",
2219
+ "go",
2220
+ "goals",
2221
+ "goers",
2222
+ "goes",
2223
+ "goin",
2224
+ "goin'",
2225
+ "going",
2226
+ "goin\u2019",
2227
+ "gon",
2228
+ "gone",
2229
+ "gonna",
2230
+ "good",
2231
+ "goods",
2232
+ "got",
2233
+ "gotten",
2234
+ "gov",
2235
+ "gov.",
2236
+ "grade",
2237
+ "grades",
2238
+ "graduation",
2239
+ "gramm",
2240
+ "graphics",
2241
+ "grave",
2242
+ "great",
2243
+ "greatly",
2244
+ "green",
2245
+ "grind",
2246
+ "grinds",
2247
+ "gross",
2248
+ "grossly",
2249
+ "group",
2250
+ "groups",
2251
+ "growing",
2252
+ "growth",
2253
+ "gry",
2254
+ "gth",
2255
+ "gue",
2256
+ "guess",
2257
+ "guidance",
2258
+ "guided",
2259
+ "guidelines",
2260
+ "guild",
2261
+ "guilty",
2262
+ "guise",
2263
+ "guy",
2264
+ "guys",
2265
+ "h",
2266
+ "h.",
2267
+ "hack",
2268
+ "hackers",
2269
+ "had",
2270
+ "half",
2271
+ "halt",
2272
+ "ham",
2273
+ "hampers",
2274
+ "han",
2275
+ "hand",
2276
+ "handed",
2277
+ "handing",
2278
+ "handling",
2279
+ "handovers",
2280
+ "happened",
2281
+ "happening",
2282
+ "happy",
2283
+ "harassing",
2284
+ "hard",
2285
+ "hardware",
2286
+ "hardworking",
2287
+ "harm",
2288
+ "harmful",
2289
+ "harmony",
2290
+ "harvesting",
2291
+ "has",
2292
+ "hassle",
2293
+ "hat",
2294
+ "have",
2295
+ "havin",
2296
+ "havin'",
2297
+ "having",
2298
+ "havin\u2019",
2299
+ "hazardous",
2300
+ "hazards",
2301
+ "he",
2302
+ "he's",
2303
+ "head",
2304
+ "headmaster",
2305
+ "heads",
2306
+ "health",
2307
+ "healthboost",
2308
+ "healthcare",
2309
+ "healthier",
2310
+ "hear",
2311
+ "heard",
2312
+ "heart",
2313
+ "heavily",
2314
+ "hed",
2315
+ "held",
2316
+ "help",
2317
+ "hem",
2318
+ "hen",
2319
+ "her",
2320
+ "here",
2321
+ "hes",
2322
+ "hey",
2323
+ "he\u2019s",
2324
+ "hidden",
2325
+ "hide",
2326
+ "hiding",
2327
+ "high",
2328
+ "higher",
2329
+ "highest",
2330
+ "highlighted",
2331
+ "highly",
2332
+ "hin",
2333
+ "hindered",
2334
+ "hindering",
2335
+ "hip",
2336
+ "hipaa",
2337
+ "his",
2338
+ "hitech",
2339
+ "hly",
2340
+ "hoarding",
2341
+ "hobby",
2342
+ "hod",
2343
+ "holder",
2344
+ "holders",
2345
+ "holding",
2346
+ "holdings",
2347
+ "hollywood",
2348
+ "hom",
2349
+ "hop",
2350
+ "hope",
2351
+ "hopeful",
2352
+ "hopefuls",
2353
+ "horizon",
2354
+ "hospital",
2355
+ "hospitals",
2356
+ "hot",
2357
+ "hours",
2358
+ "house",
2359
+ "houses",
2360
+ "how",
2361
+ "how's",
2362
+ "however",
2363
+ "how\u2019s",
2364
+ "hr",
2365
+ "hts",
2366
+ "huge",
2367
+ "hurting",
2368
+ "hus",
2369
+ "hype",
2370
+ "hyped",
2371
+ "i",
2372
+ "i-law",
2373
+ "i-violated by",
2374
+ "i-violated on",
2375
+ "i-violation",
2376
+ "i.",
2377
+ "i.e",
2378
+ "i.e.",
2379
+ "ia",
2380
+ "ia.",
2381
+ "ial",
2382
+ "ian",
2383
+ "ias",
2384
+ "ibe",
2385
+ "ice",
2386
+ "icfa",
2387
+ "ich",
2388
+ "ick",
2389
+ "ico",
2390
+ "ics",
2391
+ "icy",
2392
+ "id",
2393
+ "id.",
2394
+ "ide",
2395
+ "idea",
2396
+ "identical",
2397
+ "identified",
2398
+ "identify",
2399
+ "identifying",
2400
+ "identities",
2401
+ "identity",
2402
+ "ids",
2403
+ "ied",
2404
+ "ief",
2405
+ "ier",
2406
+ "ies",
2407
+ "iet",
2408
+ "iew",
2409
+ "if",
2410
+ "if.",
2411
+ "ife",
2412
+ "iff",
2413
+ "ift",
2414
+ "ify",
2415
+ "igh",
2416
+ "ign",
2417
+ "ignore",
2418
+ "ignored",
2419
+ "ignoring",
2420
+ "ike",
2421
+ "ild",
2422
+ "ile",
2423
+ "ill",
2424
+ "ill.",
2425
+ "illegal",
2426
+ "illegally",
2427
+ "illegitimate",
2428
+ "illicit",
2429
+ "illicitly",
2430
+ "illinois",
2431
+ "ilm",
2432
+ "ils",
2433
+ "ily",
2434
+ "images",
2435
+ "imbalance",
2436
+ "ime",
2437
+ "immeasurable",
2438
+ "immediate",
2439
+ "immersive",
2440
+ "immunities",
2441
+ "impact",
2442
+ "impacts",
2443
+ "implant",
2444
+ "implement",
2445
+ "implemented",
2446
+ "implementing",
2447
+ "implicated",
2448
+ "implied",
2449
+ "important",
2450
+ "imposed",
2451
+ "imposing",
2452
+ "imposition",
2453
+ "impossible",
2454
+ "impression",
2455
+ "improper",
2456
+ "improperly",
2457
+ "ims",
2458
+ "in",
2459
+ "in'",
2460
+ "inability",
2461
+ "inaccuracies",
2462
+ "inaccurate",
2463
+ "inadequate",
2464
+ "inappropriate",
2465
+ "inbox",
2466
+ "inboxes",
2467
+ "inc",
2468
+ "inc.",
2469
+ "incessantly",
2470
+ "incident",
2471
+ "include",
2472
+ "included",
2473
+ "includes",
2474
+ "including",
2475
+ "inconvenience",
2476
+ "incorporated",
2477
+ "incorporating",
2478
+ "increase",
2479
+ "increased",
2480
+ "increasing",
2481
+ "incredibly",
2482
+ "incur",
2483
+ "incurred",
2484
+ "incurring",
2485
+ "ind",
2486
+ "ind.",
2487
+ "indefinitely",
2488
+ "indemnity",
2489
+ "independence",
2490
+ "independent",
2491
+ "indicates",
2492
+ "indicted",
2493
+ "indiscretion",
2494
+ "individual",
2495
+ "individuals",
2496
+ "inducing",
2497
+ "indulging",
2498
+ "industries",
2499
+ "industry",
2500
+ "industrys",
2501
+ "ine",
2502
+ "ineffective",
2503
+ "infamous",
2504
+ "infiltrate",
2505
+ "infiltrated",
2506
+ "inflate",
2507
+ "inflated",
2508
+ "inflating",
2509
+ "inflation",
2510
+ "influencer",
2511
+ "influencers",
2512
+ "influencing",
2513
+ "influx",
2514
+ "info",
2515
+ "inform",
2516
+ "information",
2517
+ "informed",
2518
+ "informing",
2519
+ "infrastructure",
2520
+ "infringed",
2521
+ "infringement",
2522
+ "infringements",
2523
+ "infringes",
2524
+ "infringing",
2525
+ "ing",
2526
+ "ingredients",
2527
+ "inherent",
2528
+ "inherently",
2529
+ "initial",
2530
+ "initially",
2531
+ "initiating",
2532
+ "injunction",
2533
+ "injunctive",
2534
+ "injury",
2535
+ "injustice",
2536
+ "ink",
2537
+ "inn",
2538
+ "innocent",
2539
+ "innovative",
2540
+ "inquiries",
2541
+ "ins",
2542
+ "insider",
2543
+ "insisting",
2544
+ "installing",
2545
+ "instance",
2546
+ "instead",
2547
+ "institute",
2548
+ "institutes",
2549
+ "institution",
2550
+ "institutions",
2551
+ "instructional",
2552
+ "instrumental",
2553
+ "insulin",
2554
+ "insult",
2555
+ "insurance",
2556
+ "int",
2557
+ "integrated",
2558
+ "integrity",
2559
+ "intellectual",
2560
+ "intelligence",
2561
+ "intended",
2562
+ "intent",
2563
+ "intention",
2564
+ "intentionally",
2565
+ "interactions",
2566
+ "interest",
2567
+ "interested",
2568
+ "interfered",
2569
+ "interference",
2570
+ "interferes",
2571
+ "interfering",
2572
+ "internal",
2573
+ "international",
2574
+ "internet",
2575
+ "into",
2576
+ "introducing",
2577
+ "introductory",
2578
+ "intrusion",
2579
+ "intrusive",
2580
+ "inundation",
2581
+ "invaded",
2582
+ "invading",
2583
+ "invalid",
2584
+ "invasion",
2585
+ "invasive",
2586
+ "inventory",
2587
+ "invest",
2588
+ "investigation",
2589
+ "investigations",
2590
+ "investing",
2591
+ "investment",
2592
+ "investments",
2593
+ "investor",
2594
+ "investors",
2595
+ "invincibility",
2596
+ "involved",
2597
+ "involvement",
2598
+ "involving",
2599
+ "iny",
2600
+ "in\u2019",
2601
+ "iod",
2602
+ "ion",
2603
+ "ior",
2604
+ "ios",
2605
+ "ips",
2606
+ "ipt",
2607
+ "ird",
2608
+ "ire",
2609
+ "irm",
2610
+ "irrelevant",
2611
+ "irresponsible",
2612
+ "irritating",
2613
+ "is",
2614
+ "is.",
2615
+ "ise",
2616
+ "ish",
2617
+ "isk",
2618
+ "ism",
2619
+ "isolated",
2620
+ "iss",
2621
+ "issue",
2622
+ "issues",
2623
+ "issuing",
2624
+ "ist",
2625
+ "it",
2626
+ "it's",
2627
+ "ite",
2628
+ "items",
2629
+ "ith",
2630
+ "its",
2631
+ "itself",
2632
+ "ity",
2633
+ "it\u2019s",
2634
+ "ium",
2635
+ "ive",
2636
+ "iz.",
2637
+ "ize",
2638
+ "j",
2639
+ "j.",
2640
+ "jan",
2641
+ "jan.",
2642
+ "jane",
2643
+ "jeopardizes",
2644
+ "jeopardy",
2645
+ "job",
2646
+ "jobs",
2647
+ "john",
2648
+ "johnson",
2649
+ "joint",
2650
+ "joke",
2651
+ "jor",
2652
+ "journey",
2653
+ "joy",
2654
+ "jp",
2655
+ "jr",
2656
+ "jr.",
2657
+ "jul",
2658
+ "jul.",
2659
+ "july",
2660
+ "jun",
2661
+ "jun.",
2662
+ "junk",
2663
+ "jurisdictions",
2664
+ "just",
2665
+ "justified",
2666
+ "k",
2667
+ "k.",
2668
+ "kan",
2669
+ "kan.",
2670
+ "kans",
2671
+ "kans.",
2672
+ "kay",
2673
+ "ked",
2674
+ "keep",
2675
+ "keeps",
2676
+ "ken",
2677
+ "kept",
2678
+ "kerrigan",
2679
+ "kes",
2680
+ "ket",
2681
+ "kickbacks",
2682
+ "kidney",
2683
+ "kids",
2684
+ "killing",
2685
+ "kind",
2686
+ "kip",
2687
+ "kla",
2688
+ "kly",
2689
+ "knew",
2690
+ "know",
2691
+ "knowing",
2692
+ "knowingly",
2693
+ "knowledge",
2694
+ "known",
2695
+ "knows",
2696
+ "ky",
2697
+ "ky.",
2698
+ "l",
2699
+ "l.",
2700
+ "la",
2701
+ "la.",
2702
+ "label",
2703
+ "labeled",
2704
+ "labeling",
2705
+ "labelled",
2706
+ "labels",
2707
+ "labor",
2708
+ "laborious",
2709
+ "lack",
2710
+ "lacking",
2711
+ "lad",
2712
+ "laden",
2713
+ "lag",
2714
+ "laggy",
2715
+ "lan",
2716
+ "landmark",
2717
+ "language",
2718
+ "lap",
2719
+ "lar",
2720
+ "large",
2721
+ "larger",
2722
+ "last",
2723
+ "late",
2724
+ "lately",
2725
+ "later",
2726
+ "latest",
2727
+ "launched",
2728
+ "launching",
2729
+ "laundering",
2730
+ "lauryl",
2731
+ "law",
2732
+ "laws",
2733
+ "lawsuit",
2734
+ "lawsuits",
2735
+ "lay",
2736
+ "lds",
2737
+ "leach",
2738
+ "lead",
2739
+ "leading",
2740
+ "leads",
2741
+ "leaked",
2742
+ "learn",
2743
+ "learning",
2744
+ "learningreach",
2745
+ "leased",
2746
+ "least",
2747
+ "leave",
2748
+ "leaving",
2749
+ "led",
2750
+ "left",
2751
+ "leg",
2752
+ "legal",
2753
+ "legally",
2754
+ "legit",
2755
+ "legitimacy",
2756
+ "legitimate",
2757
+ "lem",
2758
+ "len",
2759
+ "length",
2760
+ "ler",
2761
+ "les",
2762
+ "less",
2763
+ "lessees",
2764
+ "lessons",
2765
+ "let",
2766
+ "let's",
2767
+ "letdown",
2768
+ "letter",
2769
+ "letters",
2770
+ "let\u2019s",
2771
+ "level",
2772
+ "levels",
2773
+ "levying",
2774
+ "ley",
2775
+ "liable",
2776
+ "libraries",
2777
+ "lic",
2778
+ "licensing",
2779
+ "lid",
2780
+ "lie",
2781
+ "lied",
2782
+ "lies",
2783
+ "lif",
2784
+ "life",
2785
+ "light",
2786
+ "lighter",
2787
+ "like",
2788
+ "liked",
2789
+ "likely",
2790
+ "limit",
2791
+ "limited",
2792
+ "limiting",
2793
+ "lin",
2794
+ "line",
2795
+ "link",
2796
+ "lio",
2797
+ "lions",
2798
+ "list",
2799
+ "listed",
2800
+ "listen",
2801
+ "little",
2802
+ "liver",
2803
+ "lks",
2804
+ "ll",
2805
+ "ll.",
2806
+ "llc",
2807
+ "lls",
2808
+ "lly",
2809
+ "lms",
2810
+ "lo.",
2811
+ "loads",
2812
+ "loan",
2813
+ "locate",
2814
+ "lodged",
2815
+ "logged",
2816
+ "long",
2817
+ "longer",
2818
+ "look",
2819
+ "looked",
2820
+ "looking",
2821
+ "loopholes",
2822
+ "loot",
2823
+ "lose",
2824
+ "losing",
2825
+ "loss",
2826
+ "losses",
2827
+ "lost",
2828
+ "lot",
2829
+ "love",
2830
+ "lovers",
2831
+ "lovin",
2832
+ "lovin'",
2833
+ "loving",
2834
+ "lovin\u2019",
2835
+ "low",
2836
+ "lower",
2837
+ "lsa",
2838
+ "lse",
2839
+ "lso",
2840
+ "ltd",
2841
+ "ltd.",
2842
+ "lth",
2843
+ "lts",
2844
+ "lty",
2845
+ "lub",
2846
+ "luck",
2847
+ "lue",
2848
+ "lum",
2849
+ "lunch",
2850
+ "lure",
2851
+ "lured",
2852
+ "luring",
2853
+ "lus",
2854
+ "lux",
2855
+ "lying",
2856
+ "m",
2857
+ "m.",
2858
+ "ma'am",
2859
+ "mad",
2860
+ "madam",
2861
+ "made",
2862
+ "magazine",
2863
+ "mail",
2864
+ "mailboxes",
2865
+ "mailers",
2866
+ "mailing",
2867
+ "main",
2868
+ "maintain",
2869
+ "maintaining",
2870
+ "major",
2871
+ "majority",
2872
+ "make",
2873
+ "makers",
2874
+ "makes",
2875
+ "making",
2876
+ "mal",
2877
+ "malicious",
2878
+ "malpractice",
2879
+ "man",
2880
+ "managed",
2881
+ "management",
2882
+ "managing",
2883
+ "mandated",
2884
+ "mandating",
2885
+ "manipulate",
2886
+ "manipulated",
2887
+ "manipulating",
2888
+ "manipulation",
2889
+ "manufactured",
2890
+ "manufacturer",
2891
+ "manufacturing",
2892
+ "many",
2893
+ "mar",
2894
+ "mar.",
2895
+ "march",
2896
+ "market",
2897
+ "marketed",
2898
+ "marketer",
2899
+ "marketers",
2900
+ "marketing",
2901
+ "marking",
2902
+ "markups",
2903
+ "mas",
2904
+ "mask",
2905
+ "masked",
2906
+ "mass",
2907
+ "mass.",
2908
+ "massive",
2909
+ "masterminded",
2910
+ "material",
2911
+ "materially",
2912
+ "materials",
2913
+ "matters",
2914
+ "mature",
2915
+ "maximize",
2916
+ "maximizing",
2917
+ "may",
2918
+ "ma\u2019am",
2919
+ "mca",
2920
+ "md",
2921
+ "md.",
2922
+ "me",
2923
+ "meal",
2924
+ "mean",
2925
+ "means",
2926
+ "meant",
2927
+ "measure",
2928
+ "measures",
2929
+ "mechanics",
2930
+ "mechanisms",
2931
+ "med",
2932
+ "medcare",
2933
+ "medhealth",
2934
+ "medical",
2935
+ "medication",
2936
+ "medications",
2937
+ "medico",
2938
+ "medpharm",
2939
+ "medpharms",
2940
+ "medtech",
2941
+ "meet",
2942
+ "meetings",
2943
+ "mega",
2944
+ "member",
2945
+ "members",
2946
+ "membership",
2947
+ "mention",
2948
+ "mentioned",
2949
+ "mer",
2950
+ "merchandise",
2951
+ "merchantability",
2952
+ "mere",
2953
+ "mes",
2954
+ "mess",
2955
+ "messages",
2956
+ "messaging",
2957
+ "messed",
2958
+ "messes",
2959
+ "messing",
2960
+ "messrs",
2961
+ "messrs.",
2962
+ "method",
2963
+ "methods",
2964
+ "methylisothiazolinone",
2965
+ "meticulously",
2966
+ "mi",
2967
+ "mic",
2968
+ "mich",
2969
+ "mich.",
2970
+ "might",
2971
+ "mill",
2972
+ "millennium",
2973
+ "million",
2974
+ "millions",
2975
+ "mimic",
2976
+ "mind",
2977
+ "minimum",
2978
+ "mining",
2979
+ "minn",
2980
+ "minn.",
2981
+ "minor",
2982
+ "minors",
2983
+ "misclassifying",
2984
+ "misconduct",
2985
+ "misfortune",
2986
+ "misinformation",
2987
+ "mislabeled",
2988
+ "mislabeling",
2989
+ "mislead",
2990
+ "misleading",
2991
+ "misleadingly",
2992
+ "misled",
2993
+ "misrepresent",
2994
+ "misrepresentation",
2995
+ "misrepresented",
2996
+ "misrepresenting",
2997
+ "miss",
2998
+ "miss.",
2999
+ "missed",
3000
+ "missing",
3001
+ "missouri",
3002
+ "mistaken",
3003
+ "misuse",
3004
+ "misused",
3005
+ "misusing",
3006
+ "mit",
3007
+ "mm",
3008
+ "mo",
3009
+ "mo.",
3010
+ "mobile",
3011
+ "modernizing",
3012
+ "modification",
3013
+ "mon",
3014
+ "monetary",
3015
+ "money",
3016
+ "mont",
3017
+ "mont.",
3018
+ "month",
3019
+ "monthly",
3020
+ "months",
3021
+ "mor",
3022
+ "more",
3023
+ "moreover",
3024
+ "morgan",
3025
+ "most",
3026
+ "motion",
3027
+ "moved",
3028
+ "movie",
3029
+ "moviegoers",
3030
+ "movies",
3031
+ "moving",
3032
+ "mpt",
3033
+ "mr",
3034
+ "mr.",
3035
+ "mrs",
3036
+ "mrs.",
3037
+ "ms",
3038
+ "ms.",
3039
+ "mt",
3040
+ "mt.",
3041
+ "much",
3042
+ "multiplayer",
3043
+ "multiple",
3044
+ "multitude",
3045
+ "mum",
3046
+ "music",
3047
+ "musicians",
3048
+ "must",
3049
+ "mwa",
3050
+ "my",
3051
+ "n",
3052
+ "n's",
3053
+ "n't",
3054
+ "n.",
3055
+ "n.c.",
3056
+ "n.d.",
3057
+ "n.h.",
3058
+ "n.j.",
3059
+ "n.m.",
3060
+ "n.y.",
3061
+ "na",
3062
+ "nal",
3063
+ "name",
3064
+ "named",
3065
+ "namely",
3066
+ "national",
3067
+ "natural",
3068
+ "naturally",
3069
+ "nature",
3070
+ "nc.",
3071
+ "nce",
3072
+ "nch",
3073
+ "nct",
3074
+ "ncy",
3075
+ "nd.",
3076
+ "nds",
3077
+ "near",
3078
+ "nearly",
3079
+ "neb",
3080
+ "neb.",
3081
+ "nebr",
3082
+ "nebr.",
3083
+ "necessary",
3084
+ "necessitated",
3085
+ "necessitating",
3086
+ "ned",
3087
+ "need",
3088
+ "needs",
3089
+ "negative",
3090
+ "neglected",
3091
+ "neglecting",
3092
+ "negligent",
3093
+ "negligently",
3094
+ "negotiation",
3095
+ "ner",
3096
+ "nerves",
3097
+ "nes",
3098
+ "net",
3099
+ "networks",
3100
+ "neurological",
3101
+ "nev",
3102
+ "nev.",
3103
+ "never",
3104
+ "new",
3105
+ "news",
3106
+ "newsletter",
3107
+ "ney",
3108
+ "nfo",
3109
+ "nge",
3110
+ "ngs",
3111
+ "nia",
3112
+ "nic",
3113
+ "night",
3114
+ "nightmare",
3115
+ "nks",
3116
+ "nly",
3117
+ "nn.",
3118
+ "nny",
3119
+ "no",
3120
+ "non",
3121
+ "none",
3122
+ "nor",
3123
+ "normal",
3124
+ "norms",
3125
+ "not",
3126
+ "notable",
3127
+ "notch",
3128
+ "nothin",
3129
+ "nothin'",
3130
+ "nothing",
3131
+ "nothin\u2019",
3132
+ "notice",
3133
+ "noticed",
3134
+ "notices",
3135
+ "noticing",
3136
+ "notifications",
3137
+ "notify",
3138
+ "notifying",
3139
+ "nov",
3140
+ "nov.",
3141
+ "now",
3142
+ "nowhere",
3143
+ "ns.",
3144
+ "nse",
3145
+ "nst",
3146
+ "nt",
3147
+ "nt.",
3148
+ "nth",
3149
+ "nto",
3150
+ "nts",
3151
+ "nty",
3152
+ "nue",
3153
+ "nuff",
3154
+ "nuisance",
3155
+ "numbers",
3156
+ "numerous",
3157
+ "nurse",
3158
+ "nuthin",
3159
+ "nuthin'",
3160
+ "nuthin\u2019",
3161
+ "nycrr",
3162
+ "nymwa",
3163
+ "nypow",
3164
+ "nys",
3165
+ "n\u2019s",
3166
+ "n\u2019t",
3167
+ "o",
3168
+ "o'clock",
3169
+ "o's",
3170
+ "o.",
3171
+ "o.0",
3172
+ "o.O",
3173
+ "o.o",
3174
+ "o_0",
3175
+ "o_O",
3176
+ "o_o",
3177
+ "oad",
3178
+ "oan",
3179
+ "oar",
3180
+ "oat",
3181
+ "objections",
3182
+ "obligations",
3183
+ "obnoxious",
3184
+ "obs",
3185
+ "observation",
3186
+ "obstinate",
3187
+ "obstructed",
3188
+ "obtain",
3189
+ "obtained",
3190
+ "obtaining",
3191
+ "obvious",
3192
+ "occurred",
3193
+ "occurring",
3194
+ "ock",
3195
+ "ocs",
3196
+ "oct",
3197
+ "oct.",
3198
+ "odds",
3199
+ "ode",
3200
+ "ods",
3201
+ "ody",
3202
+ "oes",
3203
+ "of",
3204
+ "of.",
3205
+ "off",
3206
+ "offense",
3207
+ "offer",
3208
+ "offered",
3209
+ "offering",
3210
+ "offerings",
3211
+ "offers",
3212
+ "office",
3213
+ "officer",
3214
+ "offices",
3215
+ "official",
3216
+ "offshore",
3217
+ "often",
3218
+ "ogy",
3219
+ "ohn",
3220
+ "oid",
3221
+ "oin",
3222
+ "ois",
3223
+ "oit",
3224
+ "okay",
3225
+ "oke",
3226
+ "okla",
3227
+ "okla.",
3228
+ "ol",
3229
+ "ol'",
3230
+ "ola",
3231
+ "old",
3232
+ "ole",
3233
+ "oll",
3234
+ "olo",
3235
+ "ols",
3236
+ "ol\u2019",
3237
+ "oma",
3238
+ "ome",
3239
+ "omy",
3240
+ "on",
3241
+ "once",
3242
+ "ond",
3243
+ "one",
3244
+ "ones",
3245
+ "ong",
3246
+ "ongoing",
3247
+ "online",
3248
+ "only",
3249
+ "onn",
3250
+ "ons",
3251
+ "ont",
3252
+ "onto",
3253
+ "ony",
3254
+ "ood",
3255
+ "ook",
3256
+ "ool",
3257
+ "oon",
3258
+ "oor",
3259
+ "oot",
3260
+ "ope",
3261
+ "operate",
3262
+ "operating",
3263
+ "operation",
3264
+ "operations",
3265
+ "operator",
3266
+ "operators",
3267
+ "opportunities",
3268
+ "opt",
3269
+ "opted",
3270
+ "option",
3271
+ "optional",
3272
+ "or",
3273
+ "orchestrated",
3274
+ "ord",
3275
+ "ordeal",
3276
+ "ordered",
3277
+ "orders",
3278
+ "ore",
3279
+ "ore.",
3280
+ "organic",
3281
+ "organization",
3282
+ "organizations",
3283
+ "oriented",
3284
+ "origin",
3285
+ "original",
3286
+ "originals",
3287
+ "ork",
3288
+ "orm",
3289
+ "orp",
3290
+ "ors",
3291
+ "ort",
3292
+ "ory",
3293
+ "os.",
3294
+ "ose",
3295
+ "oss",
3296
+ "ost",
3297
+ "ote",
3298
+ "oth",
3299
+ "other",
3300
+ "others",
3301
+ "otherwise",
3302
+ "ots",
3303
+ "ought",
3304
+ "oup",
3305
+ "our",
3306
+ "ours",
3307
+ "ous",
3308
+ "out",
3309
+ "outcomes",
3310
+ "outlined",
3311
+ "outrage",
3312
+ "outrageous",
3313
+ "outside",
3314
+ "outta",
3315
+ "ov.",
3316
+ "ove",
3317
+ "over",
3318
+ "overall",
3319
+ "overcharging",
3320
+ "overdraft",
3321
+ "overload",
3322
+ "overlooked",
3323
+ "overseen",
3324
+ "oversight",
3325
+ "overstating",
3326
+ "overtime",
3327
+ "owd",
3328
+ "own",
3329
+ "owner",
3330
+ "owners",
3331
+ "ows",
3332
+ "o\u2019clock",
3333
+ "o\u2019s",
3334
+ "p",
3335
+ "p.",
3336
+ "p.m",
3337
+ "p.m.",
3338
+ "pa",
3339
+ "pa.",
3340
+ "paa",
3341
+ "package",
3342
+ "packaging",
3343
+ "paid",
3344
+ "pain",
3345
+ "painstaking",
3346
+ "pam",
3347
+ "par",
3348
+ "parabens",
3349
+ "parent",
3350
+ "parents",
3351
+ "part",
3352
+ "partaking",
3353
+ "participate",
3354
+ "participating",
3355
+ "participation",
3356
+ "particular",
3357
+ "parties",
3358
+ "partner",
3359
+ "partnership",
3360
+ "party",
3361
+ "pas",
3362
+ "past",
3363
+ "patented",
3364
+ "patient",
3365
+ "patients",
3366
+ "pay",
3367
+ "paying",
3368
+ "payment",
3369
+ "payments",
3370
+ "pays",
3371
+ "ped",
3372
+ "penalties",
3373
+ "penny",
3374
+ "people",
3375
+ "peoples",
3376
+ "per",
3377
+ "perceived",
3378
+ "percentage",
3379
+ "perform",
3380
+ "performance",
3381
+ "performed",
3382
+ "performing",
3383
+ "period",
3384
+ "periodic",
3385
+ "periods",
3386
+ "permissible",
3387
+ "permission",
3388
+ "permissions",
3389
+ "permitted",
3390
+ "permitting",
3391
+ "perpetuated",
3392
+ "persist",
3393
+ "persisted",
3394
+ "persistently",
3395
+ "person",
3396
+ "personal",
3397
+ "personalized",
3398
+ "personally",
3399
+ "persons",
3400
+ "persuasive",
3401
+ "pex",
3402
+ "ph",
3403
+ "ph.d.",
3404
+ "pharmaceutical",
3405
+ "pharmaceuticals",
3406
+ "pharmacies",
3407
+ "pharmacists",
3408
+ "phi",
3409
+ "phone",
3410
+ "photos",
3411
+ "picture",
3412
+ "pictures",
3413
+ "pieces",
3414
+ "piracy",
3415
+ "pirate",
3416
+ "pirated",
3417
+ "place",
3418
+ "placed",
3419
+ "placements",
3420
+ "plagiarism",
3421
+ "plagiarized",
3422
+ "plain",
3423
+ "plaintiff",
3424
+ "plaintiffs",
3425
+ "plan",
3426
+ "planned",
3427
+ "planning",
3428
+ "plans",
3429
+ "plant",
3430
+ "platform",
3431
+ "platforms",
3432
+ "played",
3433
+ "player",
3434
+ "players",
3435
+ "playing",
3436
+ "ple",
3437
+ "pleas",
3438
+ "please",
3439
+ "plus",
3440
+ "ply",
3441
+ "pm",
3442
+ "pocketed",
3443
+ "pocketing",
3444
+ "policies",
3445
+ "policy",
3446
+ "political",
3447
+ "polyethylene",
3448
+ "pon",
3449
+ "poor",
3450
+ "popping",
3451
+ "popular",
3452
+ "populations",
3453
+ "portability",
3454
+ "portfolio",
3455
+ "portfolios",
3456
+ "portion",
3457
+ "portrayal",
3458
+ "poses",
3459
+ "post",
3460
+ "potent",
3461
+ "potential",
3462
+ "potentially",
3463
+ "pouring",
3464
+ "pow",
3465
+ "power",
3466
+ "ppa",
3467
+ "pps",
3468
+ "ppy",
3469
+ "pr.",
3470
+ "practically",
3471
+ "practice",
3472
+ "practices",
3473
+ "pre",
3474
+ "precious",
3475
+ "predominantly",
3476
+ "preference",
3477
+ "preferences",
3478
+ "premature",
3479
+ "premium",
3480
+ "preparation",
3481
+ "preparations",
3482
+ "preparing",
3483
+ "prerecorded",
3484
+ "prescription",
3485
+ "presence",
3486
+ "pretenses",
3487
+ "pretty",
3488
+ "prevent",
3489
+ "prevented",
3490
+ "preventive",
3491
+ "previous",
3492
+ "previously",
3493
+ "prewritten",
3494
+ "prey",
3495
+ "price",
3496
+ "prices",
3497
+ "pricier",
3498
+ "pricing",
3499
+ "primarily",
3500
+ "primary",
3501
+ "principle",
3502
+ "prior",
3503
+ "privacy",
3504
+ "private",
3505
+ "probably",
3506
+ "problem",
3507
+ "problems",
3508
+ "procedure",
3509
+ "proceeding",
3510
+ "proceedings",
3511
+ "process",
3512
+ "processed",
3513
+ "processing",
3514
+ "produced",
3515
+ "producer",
3516
+ "producers",
3517
+ "producing",
3518
+ "product",
3519
+ "production",
3520
+ "productions",
3521
+ "productive",
3522
+ "productivity",
3523
+ "products",
3524
+ "prof",
3525
+ "prof.",
3526
+ "professional",
3527
+ "professionally",
3528
+ "professionals",
3529
+ "professions",
3530
+ "profile",
3531
+ "profiles",
3532
+ "profit",
3533
+ "profitable",
3534
+ "profited",
3535
+ "profiting",
3536
+ "profits",
3537
+ "profound",
3538
+ "program",
3539
+ "programmer",
3540
+ "programs",
3541
+ "progress",
3542
+ "progression",
3543
+ "prohibit",
3544
+ "prohibited",
3545
+ "prohibition",
3546
+ "prohibits",
3547
+ "projected",
3548
+ "projects",
3549
+ "prominent",
3550
+ "promise",
3551
+ "promised",
3552
+ "promises",
3553
+ "promising",
3554
+ "promote",
3555
+ "promoted",
3556
+ "promoter",
3557
+ "promoting",
3558
+ "promotion",
3559
+ "promotional",
3560
+ "promotions",
3561
+ "promptly",
3562
+ "proper",
3563
+ "properly",
3564
+ "property",
3565
+ "prospective",
3566
+ "protect",
3567
+ "protected",
3568
+ "protecting",
3569
+ "protection",
3570
+ "protections",
3571
+ "protects",
3572
+ "protocols",
3573
+ "provide",
3574
+ "provided",
3575
+ "provider",
3576
+ "providers",
3577
+ "providing",
3578
+ "provision",
3579
+ "provisions",
3580
+ "prudent",
3581
+ "psychological",
3582
+ "pt.",
3583
+ "pth",
3584
+ "pts",
3585
+ "public",
3586
+ "publisher",
3587
+ "publishing",
3588
+ "pulled",
3589
+ "pulling",
3590
+ "purchase",
3591
+ "purchased",
3592
+ "purchases",
3593
+ "purchasing",
3594
+ "purely",
3595
+ "purpose",
3596
+ "purposes",
3597
+ "pursuit",
3598
+ "push",
3599
+ "pushing",
3600
+ "pushy",
3601
+ "put",
3602
+ "puts",
3603
+ "putting",
3604
+ "q",
3605
+ "q.",
3606
+ "qualifications",
3607
+ "qualify",
3608
+ "quality",
3609
+ "quantities",
3610
+ "que",
3611
+ "question",
3612
+ "questionable",
3613
+ "questions",
3614
+ "quick",
3615
+ "quickloan",
3616
+ "quickly",
3617
+ "quite",
3618
+ "r",
3619
+ "r.",
3620
+ "rack",
3621
+ "racket",
3622
+ "raise",
3623
+ "raised",
3624
+ "raises",
3625
+ "raising",
3626
+ "ral",
3627
+ "ram",
3628
+ "rampant",
3629
+ "ran",
3630
+ "random",
3631
+ "range",
3632
+ "ranking",
3633
+ "rare",
3634
+ "ras",
3635
+ "rate",
3636
+ "rates",
3637
+ "rather",
3638
+ "rating",
3639
+ "ratings",
3640
+ "rce",
3641
+ "rch",
3642
+ "rds",
3643
+ "rdy",
3644
+ "re",
3645
+ "re.",
3646
+ "reach",
3647
+ "read",
3648
+ "real",
3649
+ "reality",
3650
+ "realized",
3651
+ "really",
3652
+ "reason",
3653
+ "reasons",
3654
+ "rebuttal",
3655
+ "receipt",
3656
+ "receive",
3657
+ "received",
3658
+ "receives",
3659
+ "receiving",
3660
+ "recent",
3661
+ "recently",
3662
+ "reception",
3663
+ "recipient",
3664
+ "recipients",
3665
+ "recklessly",
3666
+ "recognized",
3667
+ "recommended",
3668
+ "record",
3669
+ "recorded",
3670
+ "records",
3671
+ "recruitment",
3672
+ "rectify",
3673
+ "red",
3674
+ "redirecting",
3675
+ "reduced",
3676
+ "reducing",
3677
+ "reduction",
3678
+ "ree",
3679
+ "referred",
3680
+ "refers",
3681
+ "refreshing",
3682
+ "refusal",
3683
+ "refusing",
3684
+ "refuting",
3685
+ "regard",
3686
+ "regarding",
3687
+ "regions",
3688
+ "registry",
3689
+ "regular",
3690
+ "regulation",
3691
+ "regulations",
3692
+ "regulators",
3693
+ "regulatory",
3694
+ "reinforce",
3695
+ "related",
3696
+ "relation",
3697
+ "relationships",
3698
+ "release",
3699
+ "released",
3700
+ "releases",
3701
+ "relentless",
3702
+ "reliability",
3703
+ "reliable",
3704
+ "relied",
3705
+ "relief",
3706
+ "rely",
3707
+ "remains",
3708
+ "remitting",
3709
+ "removed",
3710
+ "ren",
3711
+ "renewal",
3712
+ "renowned",
3713
+ "rentals",
3714
+ "rented",
3715
+ "rep",
3716
+ "rep.",
3717
+ "repair",
3718
+ "repairing",
3719
+ "repeated",
3720
+ "repeatedly",
3721
+ "repeating",
3722
+ "replace",
3723
+ "replaced",
3724
+ "replacement",
3725
+ "replacements",
3726
+ "replacing",
3727
+ "report",
3728
+ "reported",
3729
+ "reportedly",
3730
+ "reporting",
3731
+ "representation",
3732
+ "representations",
3733
+ "representative",
3734
+ "representatives",
3735
+ "represented",
3736
+ "reputable",
3737
+ "reputation",
3738
+ "reputational",
3739
+ "reputed",
3740
+ "request",
3741
+ "requested",
3742
+ "requests",
3743
+ "required",
3744
+ "requirements",
3745
+ "requiring",
3746
+ "requisite",
3747
+ "rer",
3748
+ "res",
3749
+ "rescinded",
3750
+ "resist",
3751
+ "resistance",
3752
+ "resort",
3753
+ "resorting",
3754
+ "resources",
3755
+ "respect",
3756
+ "respected",
3757
+ "respecting",
3758
+ "respond",
3759
+ "responded",
3760
+ "response",
3761
+ "responsible",
3762
+ "responsibly",
3763
+ "rest",
3764
+ "restitution",
3765
+ "restricted",
3766
+ "restricting",
3767
+ "restrictions",
3768
+ "resulted",
3769
+ "resulting",
3770
+ "results",
3771
+ "retailer",
3772
+ "retailers",
3773
+ "retroactive",
3774
+ "return",
3775
+ "returned",
3776
+ "returns",
3777
+ "rev",
3778
+ "rev.",
3779
+ "revealed",
3780
+ "revealing",
3781
+ "revelation",
3782
+ "revenue",
3783
+ "review",
3784
+ "reviewers",
3785
+ "reviews",
3786
+ "revolved",
3787
+ "rew",
3788
+ "rewards",
3789
+ "rey",
3790
+ "rge",
3791
+ "rgy",
3792
+ "riddled",
3793
+ "ridiculous",
3794
+ "rigged",
3795
+ "right",
3796
+ "rightful",
3797
+ "rights",
3798
+ "ril",
3799
+ "ringleader",
3800
+ "rip",
3801
+ "ripped",
3802
+ "rise",
3803
+ "risk",
3804
+ "riskier",
3805
+ "risks",
3806
+ "risky",
3807
+ "riz",
3808
+ "rk.",
3809
+ "rks",
3810
+ "rld",
3811
+ "rly",
3812
+ "rms",
3813
+ "rns",
3814
+ "robust",
3815
+ "rocked",
3816
+ "rof",
3817
+ "rogue",
3818
+ "rol",
3819
+ "role",
3820
+ "rom",
3821
+ "ror",
3822
+ "ros",
3823
+ "rough",
3824
+ "routine",
3825
+ "royalties",
3826
+ "rp.",
3827
+ "rpa",
3828
+ "rry",
3829
+ "rs.",
3830
+ "rse",
3831
+ "rst",
3832
+ "rsy",
3833
+ "rth",
3834
+ "rts",
3835
+ "rty",
3836
+ "rue",
3837
+ "rug",
3838
+ "ruin",
3839
+ "ruining",
3840
+ "ruins",
3841
+ "ruled",
3842
+ "rules",
3843
+ "ruling",
3844
+ "run",
3845
+ "running",
3846
+ "runtime",
3847
+ "rve",
3848
+ "rx13496.96",
3849
+ "rx13804.78",
3850
+ "ryl",
3851
+ "rys",
3852
+ "s",
3853
+ "s's",
3854
+ "s.",
3855
+ "s.c.",
3856
+ "saddened",
3857
+ "safe",
3858
+ "safeguarding",
3859
+ "safeguards",
3860
+ "safely",
3861
+ "safer",
3862
+ "safety",
3863
+ "said",
3864
+ "sal",
3865
+ "sale",
3866
+ "sales",
3867
+ "same",
3868
+ "satisfaction",
3869
+ "satisfactory",
3870
+ "satisfied",
3871
+ "satisfying",
3872
+ "savings",
3873
+ "saw",
3874
+ "say",
3875
+ "saying",
3876
+ "scalping",
3877
+ "scam",
3878
+ "scandal",
3879
+ "scandalous",
3880
+ "scared",
3881
+ "scene",
3882
+ "scenes",
3883
+ "scheme",
3884
+ "schemes",
3885
+ "scholarship",
3886
+ "scholarships",
3887
+ "school",
3888
+ "schools",
3889
+ "scores",
3890
+ "screen",
3891
+ "scrutiny",
3892
+ "sec",
3893
+ "seclusion",
3894
+ "second",
3895
+ "secretly",
3896
+ "sections",
3897
+ "sector",
3898
+ "secure",
3899
+ "securing",
3900
+ "security",
3901
+ "sed",
3902
+ "see",
3903
+ "seeing",
3904
+ "seeking",
3905
+ "seem",
3906
+ "seemed",
3907
+ "seems",
3908
+ "seen",
3909
+ "selection",
3910
+ "sell",
3911
+ "selling",
3912
+ "sells",
3913
+ "seminole",
3914
+ "sen",
3915
+ "sen.",
3916
+ "send",
3917
+ "sender",
3918
+ "sending",
3919
+ "senior",
3920
+ "sense",
3921
+ "sensitive",
3922
+ "sent",
3923
+ "sep",
3924
+ "sep.",
3925
+ "sept",
3926
+ "sept.",
3927
+ "ser",
3928
+ "series",
3929
+ "serious",
3930
+ "seriously",
3931
+ "server",
3932
+ "servers",
3933
+ "service",
3934
+ "services",
3935
+ "ses",
3936
+ "set",
3937
+ "setting",
3938
+ "seven",
3939
+ "several",
3940
+ "severe",
3941
+ "severed",
3942
+ "severely",
3943
+ "sh.",
3944
+ "sha",
3945
+ "shadow",
3946
+ "shady",
3947
+ "shaken",
3948
+ "shaking",
3949
+ "shall",
3950
+ "sham",
3951
+ "shame",
3952
+ "share",
3953
+ "shared",
3954
+ "shares",
3955
+ "sharing",
3956
+ "shattered",
3957
+ "she",
3958
+ "she's",
3959
+ "shell",
3960
+ "shelling",
3961
+ "she\u2019s",
3962
+ "shield",
3963
+ "shift",
3964
+ "shifting",
3965
+ "shifts",
3966
+ "shocked",
3967
+ "shocking",
3968
+ "shockwaves",
3969
+ "shop",
3970
+ "shopping",
3971
+ "short",
3972
+ "shortening",
3973
+ "shorter",
3974
+ "shot",
3975
+ "should",
3976
+ "show",
3977
+ "showing",
3978
+ "shows",
3979
+ "shy",
3980
+ "sic",
3981
+ "side",
3982
+ "sift",
3983
+ "sign",
3984
+ "signed",
3985
+ "significant",
3986
+ "significantly",
3987
+ "signs",
3988
+ "silver",
3989
+ "similar",
3990
+ "simple",
3991
+ "since",
3992
+ "siphoning",
3993
+ "sis",
3994
+ "site",
3995
+ "situation",
3996
+ "situations",
3997
+ "six",
3998
+ "skincare",
3999
+ "skip",
4000
+ "sks",
4001
+ "sky",
4002
+ "skyrocket",
4003
+ "slap",
4004
+ "slapping",
4005
+ "sle",
4006
+ "sliced",
4007
+ "slow",
4008
+ "slowing",
4009
+ "sly",
4010
+ "slyly",
4011
+ "small",
4012
+ "smaller",
4013
+ "smartphone",
4014
+ "smartphones",
4015
+ "smith",
4016
+ "smooth",
4017
+ "sms",
4018
+ "sneak",
4019
+ "sneakily",
4020
+ "sneaky",
4021
+ "so",
4022
+ "sodium",
4023
+ "software",
4024
+ "sold",
4025
+ "sole",
4026
+ "solicitation",
4027
+ "solicitations",
4028
+ "soliciting",
4029
+ "solitude",
4030
+ "solution",
4031
+ "solutionreach",
4032
+ "solutions",
4033
+ "some",
4034
+ "someone",
4035
+ "somethin",
4036
+ "somethin'",
4037
+ "something",
4038
+ "somethin\u2019",
4039
+ "son",
4040
+ "songs",
4041
+ "soon",
4042
+ "sophisticated",
4043
+ "sor",
4044
+ "sorry",
4045
+ "sort",
4046
+ "sorts",
4047
+ "sought",
4048
+ "sound",
4049
+ "source",
4050
+ "sources",
4051
+ "space",
4052
+ "spam",
4053
+ "spamming",
4054
+ "sparked",
4055
+ "spearheaded",
4056
+ "special",
4057
+ "specific",
4058
+ "specifically",
4059
+ "specifications",
4060
+ "specify",
4061
+ "speculative",
4062
+ "spend",
4063
+ "spent",
4064
+ "spiking",
4065
+ "spoils",
4066
+ "sporadically",
4067
+ "spreading",
4068
+ "spying",
4069
+ "squeeze",
4070
+ "srb",
4071
+ "srs",
4072
+ "ss.",
4073
+ "st",
4074
+ "st.",
4075
+ "stability",
4076
+ "staff",
4077
+ "staffs",
4078
+ "stage",
4079
+ "stakeholders",
4080
+ "standard",
4081
+ "standardized",
4082
+ "standards",
4083
+ "stands",
4084
+ "star",
4085
+ "stark",
4086
+ "starlight",
4087
+ "started",
4088
+ "starting",
4089
+ "state",
4090
+ "statements",
4091
+ "states",
4092
+ "status",
4093
+ "statutory",
4094
+ "ste",
4095
+ "steer",
4096
+ "stepping",
4097
+ "steps",
4098
+ "sterilization",
4099
+ "still",
4100
+ "stipulate",
4101
+ "stipulations",
4102
+ "stir",
4103
+ "stock",
4104
+ "stocks",
4105
+ "stole",
4106
+ "stolen",
4107
+ "stop",
4108
+ "storage",
4109
+ "store",
4110
+ "stories",
4111
+ "story",
4112
+ "strain",
4113
+ "strange",
4114
+ "strategies",
4115
+ "strategizing",
4116
+ "strategy",
4117
+ "stream",
4118
+ "streamed",
4119
+ "streaming",
4120
+ "streams",
4121
+ "street",
4122
+ "stress",
4123
+ "stricter",
4124
+ "strictly",
4125
+ "strong",
4126
+ "strongly",
4127
+ "structure",
4128
+ "sts",
4129
+ "stuck",
4130
+ "studded",
4131
+ "student",
4132
+ "students",
4133
+ "studio",
4134
+ "studios",
4135
+ "study",
4136
+ "stuff",
4137
+ "stumbled",
4138
+ "stuttering",
4139
+ "sty",
4140
+ "subject",
4141
+ "subjected",
4142
+ "subpar",
4143
+ "subscribed",
4144
+ "subscribers",
4145
+ "subscribing",
4146
+ "subscription",
4147
+ "subscriptions",
4148
+ "subsequent",
4149
+ "subsequently",
4150
+ "subsidiaries",
4151
+ "subsidiary",
4152
+ "substance",
4153
+ "substances",
4154
+ "substandard",
4155
+ "substantial",
4156
+ "success",
4157
+ "successfully",
4158
+ "such",
4159
+ "sudden",
4160
+ "sue",
4161
+ "suffer",
4162
+ "suffered",
4163
+ "suffering",
4164
+ "sufficient",
4165
+ "suggest",
4166
+ "suggesting",
4167
+ "suitable",
4168
+ "sulfate",
4169
+ "super",
4170
+ "supplement",
4171
+ "supplements",
4172
+ "supply",
4173
+ "supporting",
4174
+ "supposed",
4175
+ "supposedly",
4176
+ "sure",
4177
+ "surfaced",
4178
+ "surge",
4179
+ "surpass",
4180
+ "surprise",
4181
+ "surprising",
4182
+ "suspended",
4183
+ "sustain",
4184
+ "swiftly",
4185
+ "switch",
4186
+ "switching",
4187
+ "synthetic",
4188
+ "system",
4189
+ "systematic",
4190
+ "systematically",
4191
+ "systems",
4192
+ "s\u2019s",
4193
+ "t",
4194
+ "t's",
4195
+ "t.",
4196
+ "ta",
4197
+ "tabloid",
4198
+ "tactic",
4199
+ "tactics",
4200
+ "take",
4201
+ "taken",
4202
+ "takes",
4203
+ "taking",
4204
+ "tal",
4205
+ "talent",
4206
+ "talents",
4207
+ "talk",
4208
+ "tampered",
4209
+ "tar",
4210
+ "target",
4211
+ "targeted",
4212
+ "targeting",
4213
+ "tarnished",
4214
+ "tarnishing",
4215
+ "task",
4216
+ "tasks",
4217
+ "taste",
4218
+ "tch",
4219
+ "tcy",
4220
+ "td.",
4221
+ "teacher",
4222
+ "teachers",
4223
+ "teaching",
4224
+ "team",
4225
+ "tear",
4226
+ "tech",
4227
+ "technical",
4228
+ "technologies",
4229
+ "technology",
4230
+ "ted",
4231
+ "telecommunication",
4232
+ "telecommunications",
4233
+ "telehealth",
4234
+ "telemarketing",
4235
+ "telephone",
4236
+ "tell",
4237
+ "telling",
4238
+ "tells",
4239
+ "tem",
4240
+ "templates",
4241
+ "ten",
4242
+ "tenn",
4243
+ "tenn.",
4244
+ "ter",
4245
+ "term",
4246
+ "terminate",
4247
+ "terminated",
4248
+ "terminating",
4249
+ "terms",
4250
+ "terrible",
4251
+ "tes",
4252
+ "test",
4253
+ "tested",
4254
+ "testers",
4255
+ "testing",
4256
+ "tests",
4257
+ "texas",
4258
+ "text",
4259
+ "textbook",
4260
+ "than",
4261
+ "that",
4262
+ "that's",
4263
+ "that\u2019s",
4264
+ "the",
4265
+ "theater",
4266
+ "theft",
4267
+ "their",
4268
+ "them",
4269
+ "themes",
4270
+ "themselves",
4271
+ "then",
4272
+ "therapeutic",
4273
+ "there",
4274
+ "there's",
4275
+ "thereby",
4276
+ "there\u2019s",
4277
+ "these",
4278
+ "they",
4279
+ "thing",
4280
+ "think",
4281
+ "thinking",
4282
+ "thinks",
4283
+ "third",
4284
+ "this",
4285
+ "this's",
4286
+ "this\u2019s",
4287
+ "those",
4288
+ "though",
4289
+ "thought",
4290
+ "thousands",
4291
+ "threat",
4292
+ "three",
4293
+ "through",
4294
+ "throwing",
4295
+ "ths",
4296
+ "thus",
4297
+ "tic",
4298
+ "ticket",
4299
+ "ticketing",
4300
+ "tickets",
4301
+ "tied",
4302
+ "tier",
4303
+ "ties",
4304
+ "til",
4305
+ "time",
4306
+ "times",
4307
+ "tir",
4308
+ "tired",
4309
+ "tle",
4310
+ "tly",
4311
+ "to",
4312
+ "told",
4313
+ "ton",
4314
+ "tons",
4315
+ "too",
4316
+ "took",
4317
+ "tool",
4318
+ "tools",
4319
+ "top",
4320
+ "tor",
4321
+ "tort",
4322
+ "tos",
4323
+ "total",
4324
+ "totally",
4325
+ "touted",
4326
+ "towards",
4327
+ "tra",
4328
+ "trace",
4329
+ "tracing",
4330
+ "track",
4331
+ "tracking",
4332
+ "tracks",
4333
+ "trade",
4334
+ "traders",
4335
+ "trades",
4336
+ "trading",
4337
+ "traditional",
4338
+ "training",
4339
+ "trampling",
4340
+ "transaction",
4341
+ "transactions",
4342
+ "transfer",
4343
+ "transferring",
4344
+ "transfers",
4345
+ "transmission",
4346
+ "transmitting",
4347
+ "transparency",
4348
+ "transparent",
4349
+ "trauma",
4350
+ "treating",
4351
+ "treatment",
4352
+ "trends",
4353
+ "trick",
4354
+ "tricked",
4355
+ "tricking",
4356
+ "tried",
4357
+ "trouble",
4358
+ "troubling",
4359
+ "true",
4360
+ "truly",
4361
+ "trust",
4362
+ "trusted",
4363
+ "trustworthiness",
4364
+ "truth",
4365
+ "try",
4366
+ "trying",
4367
+ "tryna",
4368
+ "tta",
4369
+ "tty",
4370
+ "tuition",
4371
+ "tunes",
4372
+ "turn",
4373
+ "turned",
4374
+ "turnover",
4375
+ "turns",
4376
+ "tus",
4377
+ "tutoring",
4378
+ "tv",
4379
+ "twist",
4380
+ "twisting",
4381
+ "two",
4382
+ "typically",
4383
+ "tys",
4384
+ "t\u2019s",
4385
+ "u",
4386
+ "u.",
4387
+ "ual",
4388
+ "ubt",
4389
+ "uch",
4390
+ "uck",
4391
+ "uct",
4392
+ "udap",
4393
+ "ude",
4394
+ "udy",
4395
+ "ued",
4396
+ "ues",
4397
+ "uff",
4398
+ "ug.",
4399
+ "uge",
4400
+ "ugh",
4401
+ "ugs",
4402
+ "uin",
4403
+ "uit",
4404
+ "ul.",
4405
+ "ula",
4406
+ "uld",
4407
+ "ule",
4408
+ "ull",
4409
+ "uls",
4410
+ "ult",
4411
+ "uly",
4412
+ "uma",
4413
+ "un.",
4414
+ "unacceptable",
4415
+ "unapproved",
4416
+ "unauthorized",
4417
+ "unauthorizedly",
4418
+ "unaware",
4419
+ "unbelievable",
4420
+ "unbreakable",
4421
+ "uncompensated",
4422
+ "uncovered",
4423
+ "und",
4424
+ "under",
4425
+ "underage",
4426
+ "underlying",
4427
+ "undermines",
4428
+ "underway",
4429
+ "underwhelming",
4430
+ "undetected",
4431
+ "undisclosed",
4432
+ "undue",
4433
+ "une",
4434
+ "unearned",
4435
+ "unearthed",
4436
+ "unethical",
4437
+ "unexpected",
4438
+ "unfair",
4439
+ "unfolded",
4440
+ "unforeseen",
4441
+ "unfortunate",
4442
+ "unfortunately",
4443
+ "ung",
4444
+ "unidentified",
4445
+ "uniform",
4446
+ "uninvited",
4447
+ "union",
4448
+ "unionized",
4449
+ "unique",
4450
+ "united",
4451
+ "units",
4452
+ "universal",
4453
+ "university",
4454
+ "universitys",
4455
+ "unjust",
4456
+ "unjustifiable",
4457
+ "unjustified",
4458
+ "unjustly",
4459
+ "unk",
4460
+ "unknowingly",
4461
+ "unknown",
4462
+ "unlawful",
4463
+ "unlawfully",
4464
+ "unlisted",
4465
+ "unmentioned",
4466
+ "unmerited",
4467
+ "unnamed",
4468
+ "unnatural",
4469
+ "unnecessary",
4470
+ "unpaid",
4471
+ "unprecedented",
4472
+ "unprofessional",
4473
+ "unqualified",
4474
+ "unregulated",
4475
+ "unrelated",
4476
+ "unrequested",
4477
+ "unsatisfactory",
4478
+ "unscrupulous",
4479
+ "unsettling",
4480
+ "unsolicited",
4481
+ "unstable",
4482
+ "unsubscribe",
4483
+ "unsubscribed",
4484
+ "unsuitability",
4485
+ "unsuitable",
4486
+ "unsuspecting",
4487
+ "unt",
4488
+ "until",
4489
+ "unusable",
4490
+ "unveiled",
4491
+ "unwanted",
4492
+ "unwarranted",
4493
+ "unwelcome",
4494
+ "unwilling",
4495
+ "unwitting",
4496
+ "up",
4497
+ "upcoming",
4498
+ "updates",
4499
+ "upfront",
4500
+ "upgrades",
4501
+ "upholding",
4502
+ "uploading",
4503
+ "upon",
4504
+ "uproar",
4505
+ "ups",
4506
+ "upset",
4507
+ "upsold",
4508
+ "upt",
4509
+ "urb",
4510
+ "ure",
4511
+ "urge",
4512
+ "urgent",
4513
+ "uri",
4514
+ "urn",
4515
+ "urs",
4516
+ "urt",
4517
+ "ury",
4518
+ "us",
4519
+ "usa",
4520
+ "usage",
4521
+ "use",
4522
+ "used",
4523
+ "user",
4524
+ "users",
4525
+ "uses",
4526
+ "ush",
4527
+ "using",
4528
+ "ust",
4529
+ "usually",
4530
+ "ute",
4531
+ "uth",
4532
+ "utilized",
4533
+ "utilizing",
4534
+ "uts",
4535
+ "utter",
4536
+ "utterly",
4537
+ "uys",
4538
+ "v",
4539
+ "v.",
4540
+ "v.s",
4541
+ "v.s.",
4542
+ "v.v",
4543
+ "v_v",
4544
+ "va",
4545
+ "va.",
4546
+ "val",
4547
+ "validated",
4548
+ "validating",
4549
+ "valuable",
4550
+ "value",
4551
+ "values",
4552
+ "variable",
4553
+ "variety",
4554
+ "various",
4555
+ "vaults",
4556
+ "ve",
4557
+ "ved",
4558
+ "vel",
4559
+ "ven",
4560
+ "ver",
4561
+ "version",
4562
+ "versions",
4563
+ "ves",
4564
+ "via",
4565
+ "vials",
4566
+ "vicariously",
4567
+ "victimized",
4568
+ "victims",
4569
+ "vid",
4570
+ "video",
4571
+ "videos",
4572
+ "vie",
4573
+ "viewers",
4574
+ "viewing",
4575
+ "vigilant",
4576
+ "vin",
4577
+ "violated",
4578
+ "violates",
4579
+ "violating",
4580
+ "violation",
4581
+ "violations",
4582
+ "violent",
4583
+ "virtual",
4584
+ "visibility",
4585
+ "visual",
4586
+ "vital",
4587
+ "volatile",
4588
+ "voyager",
4589
+ "vs",
4590
+ "vs.",
4591
+ "vulnerable",
4592
+ "w",
4593
+ "w's",
4594
+ "w.",
4595
+ "w/o",
4596
+ "wage",
4597
+ "waivers",
4598
+ "wal",
4599
+ "wall",
4600
+ "wallet",
4601
+ "want",
4602
+ "wanted",
4603
+ "wants",
4604
+ "warn",
4605
+ "warned",
4606
+ "warning",
4607
+ "warnings",
4608
+ "warranties",
4609
+ "warranty",
4610
+ "was",
4611
+ "wash",
4612
+ "wash.",
4613
+ "wastage",
4614
+ "waste",
4615
+ "wasted",
4616
+ "wastes",
4617
+ "wasting",
4618
+ "watch",
4619
+ "watched",
4620
+ "watching",
4621
+ "water",
4622
+ "wave",
4623
+ "way",
4624
+ "we",
4625
+ "wear",
4626
+ "web",
4627
+ "website",
4628
+ "websites",
4629
+ "wed",
4630
+ "week",
4631
+ "weekly",
4632
+ "weight",
4633
+ "weird",
4634
+ "welfare",
4635
+ "well",
4636
+ "wellness",
4637
+ "went",
4638
+ "wer",
4639
+ "were",
4640
+ "what",
4641
+ "what's",
4642
+ "what\u2019s",
4643
+ "when",
4644
+ "when's",
4645
+ "when\u2019s",
4646
+ "where",
4647
+ "where's",
4648
+ "where\u2019s",
4649
+ "which",
4650
+ "while",
4651
+ "who",
4652
+ "who's",
4653
+ "whole",
4654
+ "wholesome",
4655
+ "whom",
4656
+ "whose",
4657
+ "who\u2019s",
4658
+ "why",
4659
+ "why's",
4660
+ "why\u2019s",
4661
+ "widely",
4662
+ "wider",
4663
+ "widespread",
4664
+ "will",
4665
+ "willfully",
4666
+ "win",
4667
+ "wiring",
4668
+ "wis",
4669
+ "wis.",
4670
+ "with",
4671
+ "withdrawing",
4672
+ "withdrawn",
4673
+ "withheld",
4674
+ "withholding",
4675
+ "within",
4676
+ "without",
4677
+ "wo",
4678
+ "woes",
4679
+ "wondering",
4680
+ "work",
4681
+ "worked",
4682
+ "workers",
4683
+ "working",
4684
+ "workplace",
4685
+ "works",
4686
+ "world",
4687
+ "worried",
4688
+ "worse",
4689
+ "worsened",
4690
+ "worst",
4691
+ "worth",
4692
+ "would",
4693
+ "wow",
4694
+ "write",
4695
+ "writing",
4696
+ "written",
4697
+ "wrong",
4698
+ "wrongdoing",
4699
+ "wrongfully",
4700
+ "wrongly",
4701
+ "wth",
4702
+ "w\u2019s",
4703
+ "x",
4704
+ "x'",
4705
+ "x'x",
4706
+ "x'xxxx",
4707
+ "x.",
4708
+ "x.X",
4709
+ "x.d",
4710
+ "x.x",
4711
+ "x.x.",
4712
+ "x/x",
4713
+ "xD",
4714
+ "xDD",
4715
+ "xX",
4716
+ "xXX",
4717
+ "x_X",
4718
+ "x_d",
4719
+ "x_x",
4720
+ "xas",
4721
+ "xd",
4722
+ "xdd",
4723
+ "xed",
4724
+ "xes",
4725
+ "xx",
4726
+ "xx'",
4727
+ "xx'x",
4728
+ "xx'xx",
4729
+ "xx.",
4730
+ "xxdddd.dd",
4731
+ "xxx",
4732
+ "xxx'x",
4733
+ "xxx/xx",
4734
+ "xxxx",
4735
+ "xxxx'",
4736
+ "xxxx'x",
4737
+ "xxxxdddd.dd",
4738
+ "xxxx\u2019",
4739
+ "xxxx\u2019x",
4740
+ "xxx\u2019x",
4741
+ "xx\u2019",
4742
+ "xx\u2019x",
4743
+ "xx\u2019xx",
4744
+ "xyz",
4745
+ "x\u2019",
4746
+ "x\u2019x",
4747
+ "x\u2019xxxx",
4748
+ "x\ufe35x",
4749
+ "y",
4750
+ "y'",
4751
+ "y's",
4752
+ "y.",
4753
+ "ya",
4754
+ "yal",
4755
+ "year",
4756
+ "years",
4757
+ "yed",
4758
+ "yee",
4759
+ "yer",
4760
+ "yes",
4761
+ "yet",
4762
+ "yield",
4763
+ "yly",
4764
+ "yna",
4765
+ "you",
4766
+ "young",
4767
+ "your",
4768
+ "ype",
4769
+ "y\u2019",
4770
+ "y\u2019s",
4771
+ "z",
4772
+ "z.",
4773
+ "zed",
4774
+ "zes",
4775
+ "zon",
4776
+ "|",
4777
+ "}",
4778
+ "\u00a0",
4779
+ "\u00ac",
4780
+ "\u00ac_\u00ac",
4781
+ "\u00af",
4782
+ "\u00af\\(x)/\u00af",
4783
+ "\u00af\\(\u30c4)/\u00af",
4784
+ "\u00b0",
4785
+ "\u00b0C.",
4786
+ "\u00b0F.",
4787
+ "\u00b0K.",
4788
+ "\u00b0X.",
4789
+ "\u00b0c.",
4790
+ "\u00b0f.",
4791
+ "\u00b0k.",
4792
+ "\u00b0x.",
4793
+ "\u00e4",
4794
+ "\u00e4.",
4795
+ "\u00f6",
4796
+ "\u00f6.",
4797
+ "\u00fc",
4798
+ "\u00fc.",
4799
+ "\u0ca0",
4800
+ "\u0ca0_\u0ca0",
4801
+ "\u0ca0\ufe35\u0ca0",
4802
+ "\u2014",
4803
+ "\u2018",
4804
+ "\u2018S",
4805
+ "\u2018X",
4806
+ "\u2018s",
4807
+ "\u2018x",
4808
+ "\u2019",
4809
+ "\u2019-(",
4810
+ "\u2019-)",
4811
+ "\u2019Cause",
4812
+ "\u2019Cos",
4813
+ "\u2019Coz",
4814
+ "\u2019Cuz",
4815
+ "\u2019S",
4816
+ "\u2019X",
4817
+ "\u2019Xxx",
4818
+ "\u2019Xxxxx",
4819
+ "\u2019am",
4820
+ "\u2019bout",
4821
+ "\u2019cause",
4822
+ "\u2019cos",
4823
+ "\u2019coz",
4824
+ "\u2019cuz",
4825
+ "\u2019d",
4826
+ "\u2019em",
4827
+ "\u2019ll",
4828
+ "\u2019m",
4829
+ "\u2019nuff",
4830
+ "\u2019re",
4831
+ "\u2019s",
4832
+ "\u2019ve",
4833
+ "\u2019x",
4834
+ "\u2019xx",
4835
+ "\u2019xxx",
4836
+ "\u2019xxxx",
4837
+ "\u2019y",
4838
+ "\u2019\u2019",
4839
+ "\u2501",
4840
+ "\u253b",
4841
+ "\u253b\u2501\u253b",
4842
+ "\u256f",
4843
+ "\u25a1",
4844
+ "\ufe35",
4845
+ "\uff09"
4846
+ ]
vocab/vectors ADDED
Binary file (128 Bytes). View file
 
vocab/vectors.cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "mode":"default"
3
+ }