Sharukesh commited on
Commit
7fc57ed
1 Parent(s): 78be4f0

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: 1.0
17
+ - name: NER Recall
18
+ type: recall
19
+ value: 1.0
20
+ - name: NER F Score
21
+ type: f_score
22
+ value: 1.0
23
+ ---
24
+ | Feature | Description |
25
+ | --- | --- |
26
+ | **Name** | `en_pipeline` |
27
+ | **Version** | `0.0.0` |
28
+ | **spaCy** | `>=3.7.6,<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 (6 labels for 1 components)</summary>
41
+
42
+ | Component | Labels |
43
+ | --- | --- |
44
+ | **`ner`** | `CHEMICAL COMPOUND`, `MATERIAL`, `METHOD`, `NUMERICAL VALUE`, `PROPERTY`, `UNITS` |
45
+
46
+ </details>
47
+
48
+ ### Accuracy
49
+
50
+ | Type | Score |
51
+ | --- | --- |
52
+ | `ENTS_F` | 100.00 |
53
+ | `ENTS_P` | 100.00 |
54
+ | `ENTS_R` | 100.00 |
55
+ | `TRANSFORMER_LOSS` | 610.86 |
56
+ | `NER_LOSS` | 638.41 |
config.cfg ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [paths]
2
+ train = null
3
+ dev = null
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 = 128
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 = "roberta-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]
config.json ADDED
@@ -0,0 +1,143 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "paths": {
3
+ "train": "null",
4
+ "dev": "null",
5
+ "vectors": "null",
6
+ "init_tok2vec": "null"
7
+ },
8
+ "system": {
9
+ "gpu_allocator": "\"pytorch\"",
10
+ "seed": "0"
11
+ },
12
+ "nlp": {
13
+ "lang": "\"en\"",
14
+ "pipeline": "[\"transformer\",\"ner\"]",
15
+ "batch_size": "128",
16
+ "disabled": "[]",
17
+ "before_creation": "null",
18
+ "after_creation": "null",
19
+ "after_pipeline_creation": "null",
20
+ "tokenizer": "{\"@tokenizers\":\"spacy.Tokenizer.v1\"}",
21
+ "vectors": "{\"@vectors\":\"spacy.Vectors.v1\"}"
22
+ },
23
+ "components": {},
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": "\"roberta-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
+ "components.transformer.model.tokenizer_config": {
63
+ "use_fast": "true"
64
+ },
65
+ "components.transformer.model.transformer_config": {},
66
+ "corpora": {},
67
+ "corpora.dev": {
68
+ "@readers": "\"spacy.Corpus.v1\"",
69
+ "path": "${paths.dev}",
70
+ "max_length": "0",
71
+ "gold_preproc": "false",
72
+ "limit": "0",
73
+ "augmenter": "null"
74
+ },
75
+ "corpora.train": {
76
+ "@readers": "\"spacy.Corpus.v1\"",
77
+ "path": "${paths.train}",
78
+ "max_length": "0",
79
+ "gold_preproc": "false",
80
+ "limit": "0",
81
+ "augmenter": "null"
82
+ },
83
+ "training": {
84
+ "accumulate_gradient": "3",
85
+ "dev_corpus": "\"corpora.dev\"",
86
+ "train_corpus": "\"corpora.train\"",
87
+ "seed": "${system.seed}",
88
+ "gpu_allocator": "${system.gpu_allocator}",
89
+ "dropout": "0.1",
90
+ "patience": "1600",
91
+ "max_epochs": "0",
92
+ "max_steps": "20000",
93
+ "eval_frequency": "200",
94
+ "frozen_components": "[]",
95
+ "annotating_components": "[]",
96
+ "before_to_disk": "null",
97
+ "before_update": "null"
98
+ },
99
+ "training.batcher": {
100
+ "@batchers": "\"spacy.batch_by_padded.v1\"",
101
+ "discard_oversize": "true",
102
+ "size": "2000",
103
+ "buffer": "256",
104
+ "get_length": "null"
105
+ },
106
+ "training.logger": {
107
+ "@loggers": "\"spacy.ConsoleLogger.v1\"",
108
+ "progress_bar": "false"
109
+ },
110
+ "training.optimizer": {
111
+ "@optimizers": "\"Adam.v1\"",
112
+ "beta1": "0.9",
113
+ "beta2": "0.999",
114
+ "l2_is_weight_decay": "true",
115
+ "l2": "0.01",
116
+ "grad_clip": "1.0",
117
+ "use_averages": "false",
118
+ "eps": "0.00000001"
119
+ },
120
+ "training.optimizer.learn_rate": {
121
+ "@schedules": "\"warmup_linear.v1\"",
122
+ "warmup_steps": "250",
123
+ "total_steps": "20000",
124
+ "initial_rate": "0.00005"
125
+ },
126
+ "training.score_weights": {
127
+ "ents_f": "1.0",
128
+ "ents_p": "0.0",
129
+ "ents_r": "0.0",
130
+ "ents_per_type": "null"
131
+ },
132
+ "pretraining": {},
133
+ "initialize": {
134
+ "vectors": "${paths.vectors}",
135
+ "init_tok2vec": "${paths.init_tok2vec}",
136
+ "vocab_data": "null",
137
+ "lookups": "null",
138
+ "before_init": "null",
139
+ "after_init": "null"
140
+ },
141
+ "initialize.components": {},
142
+ "initialize.tokenizer": {}
143
+ }
en_pipeline-any-py3-none-any.whl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:266eef371c68460dee375b77b829869c0370704390a88f0199eb187f3bc7c6c9
3
+ size 426741855
meta.json ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.6,<3.8.0",
11
+ "spacy_git_version":"319e025",
12
+ "vectors":{
13
+ "width":0,
14
+ "vectors":0,
15
+ "keys":0,
16
+ "name":null
17
+ },
18
+ "labels":{
19
+ "transformer":[
20
+
21
+ ],
22
+ "ner":[
23
+ "CHEMICAL COMPOUND",
24
+ "MATERIAL",
25
+ "METHOD",
26
+ "NUMERICAL VALUE",
27
+ "PROPERTY",
28
+ "UNITS"
29
+ ]
30
+ },
31
+ "pipeline":[
32
+ "transformer",
33
+ "ner"
34
+ ],
35
+ "components":[
36
+ "transformer",
37
+ "ner"
38
+ ],
39
+ "disabled":[
40
+
41
+ ],
42
+ "performance":{
43
+ "ents_f":1.0,
44
+ "ents_p":1.0,
45
+ "ents_r":1.0,
46
+ "ents_per_type":{
47
+ "CHEMICAL COMPOUND":{
48
+ "p":1.0,
49
+ "r":1.0,
50
+ "f":1.0
51
+ },
52
+ "METHOD":{
53
+ "p":1.0,
54
+ "r":1.0,
55
+ "f":1.0
56
+ },
57
+ "PROPERTY":{
58
+ "p":1.0,
59
+ "r":1.0,
60
+ "f":1.0
61
+ },
62
+ "MATERIAL":{
63
+ "p":1.0,
64
+ "r":1.0,
65
+ "f":1.0
66
+ },
67
+ "NUMERICAL VALUE":{
68
+ "p":1.0,
69
+ "r":1.0,
70
+ "f":1.0
71
+ },
72
+ "UNITS":{
73
+ "p":1.0,
74
+ "r":1.0,
75
+ "f":1.0
76
+ }
77
+ },
78
+ "transformer_loss":6.1086364723,
79
+ "ner_loss":6.38411658
80
+ },
81
+ "requirements":[
82
+ "spacy-transformers>=1.3.5,<1.4.0"
83
+ ]
84
+ }
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 (239 kB). View file
 
ner/moves ADDED
@@ -0,0 +1 @@
 
 
1
+ ��moves��{"0":{},"1":{"PROPERTY":641,"METHOD":357,"MATERIAL":349,"CHEMICAL COMPOUND":287,"NUMERICAL VALUE":133,"UNITS":118},"2":{"PROPERTY":641,"METHOD":357,"MATERIAL":349,"CHEMICAL COMPOUND":287,"NUMERICAL VALUE":133,"UNITS":118},"3":{"PROPERTY":641,"METHOD":357,"MATERIAL":349,"CHEMICAL COMPOUND":287,"NUMERICAL VALUE":133,"UNITS":118},"4":{"PROPERTY":641,"METHOD":357,"MATERIAL":349,"CHEMICAL COMPOUND":287,"NUMERICAL VALUE":133,"UNITS":118,"":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:913557c7a5a7aa7e535030f657f4452084a4bed277276065c6067ddba36576da
3
+ size 502025449
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,3533 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "\t",
3
+ "\n",
4
+ " ",
5
+ " ",
6
+ "\"",
7
+ "$",
8
+ "%",
9
+ "'",
10
+ "''",
11
+ "'-(",
12
+ "'-)",
13
+ "'Cause",
14
+ "'Cos",
15
+ "'Coz",
16
+ "'Cuz",
17
+ "'S",
18
+ "'X",
19
+ "'Xxx",
20
+ "'Xxxxx",
21
+ "'am",
22
+ "'bout",
23
+ "'cause",
24
+ "'cos",
25
+ "'coz",
26
+ "'cuz",
27
+ "'d",
28
+ "'em",
29
+ "'ll",
30
+ "'m",
31
+ "'nuff",
32
+ "'re",
33
+ "'s",
34
+ "'ve",
35
+ "'x",
36
+ "'xx",
37
+ "'xxx",
38
+ "'xxxx",
39
+ "'y",
40
+ "(",
41
+ "(((",
42
+ "(*>",
43
+ "(*_*)",
44
+ "(-8",
45
+ "(-:",
46
+ "(-;",
47
+ "(-_-)",
48
+ "(-d",
49
+ "(._.)",
50
+ "(:",
51
+ "(;",
52
+ "(=",
53
+ "(>_<)",
54
+ "(Cr",
55
+ "(Mo",
56
+ "(Nb",
57
+ "(^_^)",
58
+ "(cr",
59
+ "(mo",
60
+ "(nb",
61
+ "(o:",
62
+ "(x:",
63
+ "(x_x)",
64
+ "(\u00ac_\u00ac)",
65
+ "(\u0ca0_\u0ca0)",
66
+ "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b",
67
+ ")",
68
+ ")))",
69
+ ")-:",
70
+ ")/\u00af",
71
+ "):",
72
+ "*",
73
+ "+",
74
+ ",",
75
+ ",Ltd",
76
+ ",Xxx",
77
+ ",ltd",
78
+ ",xxx",
79
+ "-",
80
+ "-((",
81
+ "-))",
82
+ "-/",
83
+ "-0",
84
+ "-3",
85
+ "-8",
86
+ "-D",
87
+ "-O",
88
+ "-P",
89
+ "-X",
90
+ "-_-",
91
+ "-__-",
92
+ "-d",
93
+ "-o",
94
+ "-p",
95
+ "-x",
96
+ "-|",
97
+ ".",
98
+ ".02",
99
+ ".03",
100
+ ".04",
101
+ ".05",
102
+ ".06",
103
+ ".08",
104
+ ".09",
105
+ ".10",
106
+ ".11",
107
+ ".23",
108
+ ".28",
109
+ ".34",
110
+ ".38",
111
+ ".41",
112
+ ".45",
113
+ ".49",
114
+ ".50",
115
+ ".52",
116
+ ".60",
117
+ ".62",
118
+ ".65",
119
+ ".68",
120
+ ".71",
121
+ ".75",
122
+ ".78",
123
+ ".79",
124
+ ".80",
125
+ ".82",
126
+ ".83",
127
+ ".89",
128
+ ".90",
129
+ ".91",
130
+ ".92",
131
+ ".93",
132
+ ".95",
133
+ ".96",
134
+ ".98",
135
+ ".99",
136
+ ".C.",
137
+ ".D.",
138
+ ".E.",
139
+ ".G.",
140
+ ".H.",
141
+ ".J.",
142
+ ".M.",
143
+ ".V.",
144
+ ".Y.",
145
+ "._.",
146
+ ".e.",
147
+ ".g.",
148
+ ".m.",
149
+ ".s.",
150
+ ".v.",
151
+ "/",
152
+ "/3",
153
+ "/d",
154
+ "/or",
155
+ "0",
156
+ "0.0",
157
+ "0.03",
158
+ "0.05",
159
+ "0.06",
160
+ "0.09",
161
+ "0.1",
162
+ "0.10",
163
+ "0.10/0.08",
164
+ "0.17/0.05",
165
+ "0.18/0.11",
166
+ "0.2",
167
+ "0.239",
168
+ "0.28",
169
+ "0.38",
170
+ "0.4",
171
+ "0.41",
172
+ "0.45",
173
+ "0.5",
174
+ "0.52",
175
+ "0.60",
176
+ "0.65",
177
+ "0.68",
178
+ "0.8",
179
+ "0.94Ni0.09",
180
+ "0.94ni0.09",
181
+ "0.98",
182
+ "0.o",
183
+ "000",
184
+ "023",
185
+ "024",
186
+ "0_0",
187
+ "0_o",
188
+ "0\u2212x",
189
+ "1",
190
+ "1.0",
191
+ "1.05",
192
+ "1.2",
193
+ "1.23",
194
+ "1.28",
195
+ "1.34",
196
+ "1.38",
197
+ "1.4",
198
+ "1.49",
199
+ "1.5",
200
+ "1.6",
201
+ "1.62",
202
+ "1.6\u20131.8",
203
+ "1.78",
204
+ "1.79",
205
+ "1.8",
206
+ "1.82",
207
+ "1.89",
208
+ "1.90",
209
+ "1.91",
210
+ "10",
211
+ "10.23",
212
+ "10.92",
213
+ "103.93",
214
+ "105",
215
+ "10a.m",
216
+ "10a.m.",
217
+ "10p.m",
218
+ "10p.m.",
219
+ "11",
220
+ "116.3",
221
+ "117.4",
222
+ "11a.m",
223
+ "11a.m.",
224
+ "11p.m",
225
+ "11p.m.",
226
+ "12",
227
+ "12a.m",
228
+ "12a.m.",
229
+ "12p.m",
230
+ "12p.m.",
231
+ "13",
232
+ "14.02",
233
+ "14.89",
234
+ "15",
235
+ "150",
236
+ "16",
237
+ "17.96",
238
+ "173.4",
239
+ "178",
240
+ "1800",
241
+ "1a.m",
242
+ "1a.m.",
243
+ "1p.m",
244
+ "1p.m.",
245
+ "2",
246
+ "2.5",
247
+ "2.50",
248
+ "2.75",
249
+ "2.78",
250
+ "2.79",
251
+ "2.83",
252
+ "2.99",
253
+ "20",
254
+ "20.0",
255
+ "2000",
256
+ "2023",
257
+ "2024",
258
+ "21",
259
+ "227",
260
+ "239",
261
+ "25",
262
+ "268",
263
+ "269.7",
264
+ "277",
265
+ "28",
266
+ "298",
267
+ "2a.m",
268
+ "2a.m.",
269
+ "2p.m",
270
+ "2p.m.",
271
+ "3",
272
+ "3.4",
273
+ "3.80",
274
+ "30",
275
+ "300",
276
+ "300\u2013470",
277
+ "31.04",
278
+ "325",
279
+ "328",
280
+ "33",
281
+ "333",
282
+ "3a.m",
283
+ "3a.m.",
284
+ "3p.m",
285
+ "3p.m.",
286
+ "4",
287
+ "400",
288
+ "42.82",
289
+ "46.89",
290
+ "470",
291
+ "4a.m",
292
+ "4a.m.",
293
+ "4p.m",
294
+ "4p.m.",
295
+ "5",
296
+ "5.5",
297
+ "50",
298
+ "52.71",
299
+ "5H6",
300
+ "5a.m",
301
+ "5a.m.",
302
+ "5h6",
303
+ "5p.m",
304
+ "5p.m.",
305
+ "6",
306
+ "6.1",
307
+ "6.3",
308
+ "6.49",
309
+ "6.50",
310
+ "60",
311
+ "65",
312
+ "6a.m",
313
+ "6a.m.",
314
+ "6p.m",
315
+ "6p.m.",
316
+ "7",
317
+ "7.4",
318
+ "7.8",
319
+ "7a.m",
320
+ "7a.m.",
321
+ "7p.m",
322
+ "7p.m.",
323
+ "8",
324
+ "8)",
325
+ "8-",
326
+ "8-)",
327
+ "8-D",
328
+ "8-d",
329
+ "800",
330
+ "8D",
331
+ "8a.m",
332
+ "8a.m.",
333
+ "8d",
334
+ "8p.m",
335
+ "8p.m.",
336
+ "9",
337
+ "9.3",
338
+ "9.7",
339
+ "97",
340
+ "98",
341
+ "99",
342
+ "9a.m",
343
+ "9a.m.",
344
+ "9p.m",
345
+ "9p.m.",
346
+ ":",
347
+ ":'(",
348
+ ":')",
349
+ ":'-(",
350
+ ":'-)",
351
+ ":(",
352
+ ":((",
353
+ ":(((",
354
+ ":()",
355
+ ":)",
356
+ ":))",
357
+ ":)))",
358
+ ":*",
359
+ ":-(",
360
+ ":-((",
361
+ ":-(((",
362
+ ":-)",
363
+ ":-))",
364
+ ":-)))",
365
+ ":-*",
366
+ ":-/",
367
+ ":-0",
368
+ ":-3",
369
+ ":->",
370
+ ":-D",
371
+ ":-O",
372
+ ":-P",
373
+ ":-X",
374
+ ":-]",
375
+ ":-d",
376
+ ":-o",
377
+ ":-p",
378
+ ":-x",
379
+ ":-|",
380
+ ":-}",
381
+ ":/",
382
+ ":0",
383
+ ":1",
384
+ ":3",
385
+ ":>",
386
+ ":D",
387
+ ":O",
388
+ ":P",
389
+ ":X",
390
+ ":]",
391
+ ":d",
392
+ ":o",
393
+ ":o)",
394
+ ":p",
395
+ ":x",
396
+ ":x)",
397
+ ":|",
398
+ ":}",
399
+ ":\u2019(",
400
+ ":\u2019)",
401
+ ":\u2019-(",
402
+ ":\u2019-)",
403
+ ";",
404
+ ";)",
405
+ ";-)",
406
+ ";-D",
407
+ ";-X",
408
+ ";-d",
409
+ ";D",
410
+ ";X",
411
+ ";_;",
412
+ ";d",
413
+ "<",
414
+ "<.<",
415
+ "</3",
416
+ "</d",
417
+ "<3",
418
+ "<33",
419
+ "<333",
420
+ "<d",
421
+ "<dd",
422
+ "<ddd",
423
+ "<space>",
424
+ "<xxxx>",
425
+ "=",
426
+ "=(",
427
+ "=)",
428
+ "=/",
429
+ "=3",
430
+ "=D",
431
+ "=X",
432
+ "=[",
433
+ "=]",
434
+ "=d",
435
+ "=|",
436
+ ">",
437
+ ">.<",
438
+ ">.>",
439
+ ">:(",
440
+ ">:o",
441
+ ">:x",
442
+ "><(((*>",
443
+ "@",
444
+ "@CF",
445
+ "@_@",
446
+ "@cf",
447
+ "A",
448
+ "AB",
449
+ "AB2",
450
+ "ABSTRACT",
451
+ "ACT",
452
+ "Abstract",
453
+ "Acta",
454
+ "Additionally",
455
+ "Adm",
456
+ "Adm.",
457
+ "Advanced",
458
+ "After",
459
+ "Ah",
460
+ "Ai",
461
+ "Ak",
462
+ "Ak.",
463
+ "Al0.05(TiVNb)0.95",
464
+ "Ala",
465
+ "Ala.",
466
+ "Alabama",
467
+ "Alaska",
468
+ "All",
469
+ "American",
470
+ "Among",
471
+ "And",
472
+ "Apr",
473
+ "Apr.",
474
+ "April",
475
+ "Are",
476
+ "Ariz",
477
+ "Ariz.",
478
+ "Arizona",
479
+ "Ark",
480
+ "Ark.",
481
+ "Arkansas",
482
+ "As",
483
+ "Aug",
484
+ "Aug.",
485
+ "August",
486
+ "Author(s",
487
+ "Authors",
488
+ "B",
489
+ "B.V.",
490
+ "BCC",
491
+ "BCC)-type",
492
+ "BN",
493
+ "Based",
494
+ "Bayesian",
495
+ "Be",
496
+ "Body",
497
+ "Both",
498
+ "Bros",
499
+ "Bros.",
500
+ "By",
501
+ "C",
502
+ "C'm",
503
+ "C++",
504
+ "C.",
505
+ "C14",
506
+ "CDB",
507
+ "CHEMICAL COMPOUND",
508
+ "CMs",
509
+ "CTs",
510
+ "Ca",
511
+ "Calif",
512
+ "Calif.",
513
+ "California",
514
+ "Can",
515
+ "Cantor",
516
+ "Cause",
517
+ "Ce",
518
+ "Central",
519
+ "Chemical",
520
+ "Chemistry",
521
+ "Chongqing",
522
+ "Co",
523
+ "Co.",
524
+ "Coincidence",
525
+ "Colo",
526
+ "Colo.",
527
+ "Colorado",
528
+ "Combined",
529
+ "Compare",
530
+ "Compared",
531
+ "Composition",
532
+ "Conn",
533
+ "Conn.",
534
+ "Connecticut",
535
+ "Consequently",
536
+ "Corp",
537
+ "Corp.",
538
+ "Cos",
539
+ "Could",
540
+ "Coz",
541
+ "Cr",
542
+ "Cr1",
543
+ "Cr1.5",
544
+ "CrN",
545
+ "Cu",
546
+ "Cuz",
547
+ "C\u2019m",
548
+ "D",
549
+ "D.",
550
+ "D.C.",
551
+ "DES",
552
+ "Daiichi",
553
+ "Dare",
554
+ "Dec",
555
+ "Dec.",
556
+ "December",
557
+ "Del",
558
+ "Del.",
559
+ "Delaware",
560
+ "Did",
561
+ "Do",
562
+ "Does",
563
+ "Doin",
564
+ "Doin'",
565
+ "Doin\u2019",
566
+ "Doppler",
567
+ "Dr",
568
+ "Dr.",
569
+ "E",
570
+ "E.G.",
571
+ "E.g",
572
+ "E.g.",
573
+ "EAs",
574
+ "EC=",
575
+ "EMs",
576
+ "Ea(Cr",
577
+ "Ea(Mo",
578
+ "Ea(Nb",
579
+ "Electrochemical",
580
+ "Elsevier",
581
+ "Essential",
582
+ "Even",
583
+ "Examples",
584
+ "Existing",
585
+ "Experimental",
586
+ "F",
587
+ "F.",
588
+ "FCC",
589
+ "FT",
590
+ "Fe",
591
+ "Fe1.5",
592
+ "FeCoNiCrN",
593
+ "FeMnCoCr",
594
+ "Feb",
595
+ "Feb.",
596
+ "February",
597
+ "Figure",
598
+ "Finally",
599
+ "Firstly",
600
+ "Fla",
601
+ "Fla.",
602
+ "Florida",
603
+ "For",
604
+ "From",
605
+ "Fukushima",
606
+ "Furthermore",
607
+ "G",
608
+ "GPa",
609
+ "Ga",
610
+ "Ga.",
611
+ "Gen",
612
+ "Gen.",
613
+ "Georgia",
614
+ "GmbH.",
615
+ "Goin",
616
+ "Goin'",
617
+ "Goin\u2019",
618
+ "Gon",
619
+ "Got",
620
+ "Gov",
621
+ "Gov.",
622
+ "Graphical",
623
+ "H",
624
+ "H-",
625
+ "H2",
626
+ "HEA",
627
+ "HEA@CF",
628
+ "HEAs",
629
+ "HEM",
630
+ "HEMs",
631
+ "HER",
632
+ "HOD",
633
+ "HOR",
634
+ "HPT",
635
+ "Had",
636
+ "Has",
637
+ "Have",
638
+ "Havin",
639
+ "Havin'",
640
+ "Havin\u2019",
641
+ "He",
642
+ "He's",
643
+ "Here",
644
+ "Herein",
645
+ "He\u2019s",
646
+ "Hf",
647
+ "High",
648
+ "How",
649
+ "How's",
650
+ "However",
651
+ "How\u2019s",
652
+ "I",
653
+ "I.E.",
654
+ "I.e",
655
+ "I.e.",
656
+ "IAL",
657
+ "IGC",
658
+ "IR",
659
+ "ITS",
660
+ "Ia",
661
+ "Ia.",
662
+ "Id",
663
+ "Id.",
664
+ "Idaho",
665
+ "Ill",
666
+ "Ill.",
667
+ "Illinois",
668
+ "In",
669
+ "Inc",
670
+ "Inc.",
671
+ "Ind",
672
+ "Ind.",
673
+ "Indiana",
674
+ "Iowa",
675
+ "IrPdPtRhRu",
676
+ "Is",
677
+ "Isotherm",
678
+ "It",
679
+ "It's",
680
+ "It\u2019s",
681
+ "J",
682
+ "Jan",
683
+ "Jan.",
684
+ "Jander",
685
+ "January",
686
+ "Jr",
687
+ "Jr.",
688
+ "Jul",
689
+ "Jul.",
690
+ "July",
691
+ "Jun",
692
+ "Jun.",
693
+ "June",
694
+ "J\u00b7K\u22121\u00b7mol\u22121",
695
+ "K",
696
+ "K.",
697
+ "KOH",
698
+ "Kan",
699
+ "Kan.",
700
+ "Kans",
701
+ "Kans.",
702
+ "Kansas",
703
+ "Kentucky",
704
+ "Kubas",
705
+ "Ky",
706
+ "Ky.",
707
+ "K\u22121",
708
+ "L",
709
+ "LDH",
710
+ "LDH@PHEA",
711
+ "LLC",
712
+ "LUE",
713
+ "La",
714
+ "La.",
715
+ "LaNi5H6",
716
+ "Laser",
717
+ "Laves",
718
+ "Let",
719
+ "Let's",
720
+ "Let\u2019s",
721
+ "Louisiana",
722
+ "Lovin",
723
+ "Lovin'",
724
+ "Lovin\u2019",
725
+ "Ltd",
726
+ "Ltd.",
727
+ "M",
728
+ "MATERIAL",
729
+ "MEA",
730
+ "MEAs",
731
+ "METHOD",
732
+ "MOFs",
733
+ "MPa",
734
+ "MXenes",
735
+ "Ma'am",
736
+ "Mar",
737
+ "Mar.",
738
+ "March",
739
+ "Mass",
740
+ "Mass.",
741
+ "Massachusetts",
742
+ "Materialia",
743
+ "Materials",
744
+ "May",
745
+ "Ma\u2019am",
746
+ "Md",
747
+ "Md.",
748
+ "Media",
749
+ "Messrs",
750
+ "Messrs.",
751
+ "Mg",
752
+ "Mg2",
753
+ "Mg2NiH4",
754
+ "MgH2",
755
+ "Mgx(TiVCrNb)100\u2212x",
756
+ "Mich",
757
+ "Mich.",
758
+ "Michigan",
759
+ "Might",
760
+ "Minn",
761
+ "Minn.",
762
+ "Minnesota",
763
+ "Miss",
764
+ "Miss.",
765
+ "Mississippi",
766
+ "Mn",
767
+ "Mn1",
768
+ "Mn1.5",
769
+ "Mo",
770
+ "Mo.",
771
+ "Mont",
772
+ "Mont.",
773
+ "Moreover",
774
+ "Mount",
775
+ "Mox",
776
+ "Mr",
777
+ "Mr.",
778
+ "Mrs",
779
+ "Mrs.",
780
+ "Ms",
781
+ "Ms.",
782
+ "Mt",
783
+ "Mt.",
784
+ "Must",
785
+ "N",
786
+ "N.C.",
787
+ "N.D.",
788
+ "N.H.",
789
+ "N.J.",
790
+ "N.M.",
791
+ "N.Y.",
792
+ "NCTs",
793
+ "NF",
794
+ "NNM",
795
+ "NPs",
796
+ "NUMERICAL VALUE",
797
+ "NaCl",
798
+ "Nanomaterials",
799
+ "Nature",
800
+ "Nb",
801
+ "Ne",
802
+ "Neb",
803
+ "Neb.",
804
+ "Nebr",
805
+ "Nebr.",
806
+ "Nebraska",
807
+ "Need",
808
+ "Nev",
809
+ "Nev.",
810
+ "Nevada",
811
+ "New Hampshire",
812
+ "New Jersey",
813
+ "New Mexico",
814
+ "New York",
815
+ "Ni",
816
+ "Ni2",
817
+ "NiCoFeCu",
818
+ "Nix",
819
+ "Non",
820
+ "North Carolina",
821
+ "North Dakota",
822
+ "Not",
823
+ "Notably",
824
+ "Nothin",
825
+ "Nothin'",
826
+ "Nothin\u2019",
827
+ "Nov",
828
+ "Nov.",
829
+ "November",
830
+ "Nuthin",
831
+ "Nuthin'",
832
+ "Nuthin\u2019",
833
+ "O",
834
+ "O'clock",
835
+ "O.O",
836
+ "O.o",
837
+ "OER",
838
+ "OFs",
839
+ "O_O",
840
+ "O_o",
841
+ "Oct",
842
+ "Oct.",
843
+ "October",
844
+ "Okla",
845
+ "Okla.",
846
+ "Oklahoma",
847
+ "Ol",
848
+ "Ol'",
849
+ "Ol\u2019",
850
+ "On",
851
+ "One",
852
+ "Ore",
853
+ "Ore.",
854
+ "Oregon",
855
+ "Ought",
856
+ "Owing",
857
+ "O\u2019clock",
858
+ "P",
859
+ "PAS",
860
+ "PCI",
861
+ "PCMs",
862
+ "PCT",
863
+ "PDF",
864
+ "PGM",
865
+ "PHEA",
866
+ "PROPERTY",
867
+ "Pa",
868
+ "Pa.",
869
+ "Pennsylvania",
870
+ "Ph",
871
+ "Ph.D.",
872
+ "Positron",
873
+ "Press",
874
+ "Pressure",
875
+ "Prof",
876
+ "Prof.",
877
+ "Properties",
878
+ "Pt",
879
+ "Publishing",
880
+ "R",
881
+ "RBM",
882
+ "ROOT",
883
+ "RTY",
884
+ "Raman",
885
+ "Recently",
886
+ "Remarkably",
887
+ "Rep",
888
+ "Rep.",
889
+ "Rev",
890
+ "Rev.",
891
+ "Royal",
892
+ "S",
893
+ "S.C.",
894
+ "SO4",
895
+ "SS",
896
+ "Science",
897
+ "Science+Business",
898
+ "Sen",
899
+ "Sen.",
900
+ "Sep",
901
+ "Sep.",
902
+ "Sept",
903
+ "Sept.",
904
+ "September",
905
+ "Sha",
906
+ "She",
907
+ "She's",
908
+ "She\u2019s",
909
+ "Should",
910
+ "Sievert",
911
+ "Society",
912
+ "Somethin",
913
+ "Somethin'",
914
+ "Somethin\u2019",
915
+ "South",
916
+ "South Carolina",
917
+ "Springer",
918
+ "St",
919
+ "St.",
920
+ "Subsequently",
921
+ "Such",
922
+ "Surprisingly",
923
+ "Synchrotron",
924
+ "T",
925
+ "TM",
926
+ "Technology",
927
+ "Tenn",
928
+ "Tenn.",
929
+ "Tennessee",
930
+ "That",
931
+ "That's",
932
+ "That\u2019s",
933
+ "The",
934
+ "Their",
935
+ "There",
936
+ "There's",
937
+ "There\u2019s",
938
+ "Thermodynamic",
939
+ "These",
940
+ "They",
941
+ "This",
942
+ "This's",
943
+ "This\u2019s",
944
+ "Those",
945
+ "Ti",
946
+ "Ti0.5Zr0.5(Mn1",
947
+ "Ti0.75Zr0.25)1.05Mn0.8CrTM0.2",
948
+ "Ti1.0Zr1.0Fe1.0Mn1.0Cr1.0V1.0",
949
+ "Ti1.0Zr1.0Fe1.0Mn1.0Cr1.5V0.5",
950
+ "Ti1.0Zr1.0Fe1.0Mn1.5Cr1.0V0.5",
951
+ "Ti1.0Zr1.0Fe1.5Mn1.0Cr1.0V0.5",
952
+ "Ti32.5V27.5Zr7.5Nb32.5",
953
+ "Ti32.5V27.5Zr7.5Nb32.5)0.91Ni0.09",
954
+ "TiFeH2",
955
+ "TiMo",
956
+ "TiV2ZrCrMnFeNi",
957
+ "TiVCrNb",
958
+ "TiVZrNb",
959
+ "TiZrMoMnFeNi",
960
+ "TiZrWMnFeNi",
961
+ "TiZrXMnFeNi",
962
+ "To",
963
+ "Tritium",
964
+ "Tsinghua",
965
+ "U",
966
+ "UND",
967
+ "UNITS",
968
+ "UST",
969
+ "University",
970
+ "V",
971
+ "V.V",
972
+ "V1.0",
973
+ "VCH",
974
+ "VEC=",
975
+ "VNbCrMoMn",
976
+ "V_V",
977
+ "Va",
978
+ "Va.",
979
+ "Virginia",
980
+ "W",
981
+ "Was",
982
+ "Wash",
983
+ "Wash.",
984
+ "Washington",
985
+ "We",
986
+ "Were",
987
+ "Wh",
988
+ "What",
989
+ "What's",
990
+ "What\u2019s",
991
+ "When",
992
+ "When's",
993
+ "When\u2019s",
994
+ "Where",
995
+ "Where's",
996
+ "Where\u2019s",
997
+ "While",
998
+ "Who",
999
+ "Who's",
1000
+ "Who\u2019s",
1001
+ "Why",
1002
+ "Why's",
1003
+ "Why\u2019s",
1004
+ "Wiley",
1005
+ "Wis",
1006
+ "Wis.",
1007
+ "Wisconsin",
1008
+ "With",
1009
+ "Wo",
1010
+ "Would",
1011
+ "X'x",
1012
+ "X'xxxx",
1013
+ "X++",
1014
+ "X-",
1015
+ "X.",
1016
+ "X.X",
1017
+ "X.X.",
1018
+ "X.x",
1019
+ "X.x.",
1020
+ "XD",
1021
+ "XDD",
1022
+ "XRD",
1023
+ "XX",
1024
+ "XXX",
1025
+ "XXX)-xxxx",
1026
+ "XXX=",
1027
+ "XXX@XX",
1028
+ "XXX@XXXX",
1029
+ "XXXX",
1030
+ "XXXX XXXX",
1031
+ "XXXx",
1032
+ "XXd",
1033
+ "XXx",
1034
+ "XXxXxXxXx",
1035
+ "XXxxxx",
1036
+ "X_X",
1037
+ "X_x",
1038
+ "Xd",
1039
+ "Xd.d",
1040
+ "Xdd",
1041
+ "Xx",
1042
+ "Xx'",
1043
+ "Xx'x",
1044
+ "Xx'xx",
1045
+ "Xx(Xx",
1046
+ "Xx.",
1047
+ "Xx.X.",
1048
+ "XxXXxXx",
1049
+ "XxXd",
1050
+ "XxXdXxXxXxXxXx",
1051
+ "XxXx",
1052
+ "XxXxXXxXxXx",
1053
+ "XxXxXd",
1054
+ "XxXxXxXx",
1055
+ "XxXxXxXxX",
1056
+ "XxXxXxXxXx",
1057
+ "XxXxXxXxXxXx",
1058
+ "XxXxd",
1059
+ "XxXxdXd",
1060
+ "Xxd",
1061
+ "Xxd.d",
1062
+ "Xxd.dXxd.d(Xxd",
1063
+ "Xxd.dXxd.dXxd.dXxd.dXxd.dXd.d",
1064
+ "Xxd.dd(XxXXx)d.dd",
1065
+ "Xxd.ddXxd.dd)d.ddXxd.dXxXXd.d",
1066
+ "XxdXxXd",
1067
+ "Xxdd.dXdd.dXxd.dXxdd.d",
1068
+ "Xxdd.dXdd.dXxd.dXxdd.d)d.ddXxd.dd",
1069
+ "Xxx",
1070
+ "Xxx'x",
1071
+ "Xxx(XxXXxXx)ddd\u2212x",
1072
+ "Xxx.",
1073
+ "XxxX.",
1074
+ "Xxxx",
1075
+ "Xxxx'",
1076
+ "Xxxx'x",
1077
+ "Xxxx.",
1078
+ "Xxxxx",
1079
+ "Xxxxx'",
1080
+ "Xxxxx'x",
1081
+ "Xxxxx(x",
1082
+ "Xxxxx+Xxxxx",
1083
+ "Xxxxx.",
1084
+ "Xxxxx\u2019",
1085
+ "Xxxxx\u2019x",
1086
+ "Xxxx\u2019",
1087
+ "Xxxx\u2019x",
1088
+ "Xxx\u2019x",
1089
+ "Xx\u2019",
1090
+ "Xx\u2019x",
1091
+ "Xx\u2019xx",
1092
+ "X\u00b7X\u2212d\u00b7xxx\u2212d",
1093
+ "X\u2019x",
1094
+ "X\u2019xxxx",
1095
+ "X\u2212d",
1096
+ "Y",
1097
+ "You",
1098
+ "Youke",
1099
+ "Z",
1100
+ "Zr",
1101
+ "ZrH2",
1102
+ "ZrNi",
1103
+ "ZrNi2",
1104
+ "[",
1105
+ "[-:",
1106
+ "[:",
1107
+ "[=",
1108
+ "\\",
1109
+ "\\\")",
1110
+ "\\n",
1111
+ "\\t",
1112
+ "\\x",
1113
+ "]",
1114
+ "]=",
1115
+ "^",
1116
+ "^_^",
1117
+ "^__^",
1118
+ "^___^",
1119
+ "_*)",
1120
+ "_-)",
1121
+ "_.)",
1122
+ "_<)",
1123
+ "_^)",
1124
+ "__-",
1125
+ "__^",
1126
+ "_\u00ac)",
1127
+ "_\u0ca0)",
1128
+ "a",
1129
+ "a.",
1130
+ "a.m",
1131
+ "a.m.",
1132
+ "aCl",
1133
+ "ab",
1134
+ "ab-/desorption",
1135
+ "ab2",
1136
+ "about",
1137
+ "above",
1138
+ "absorb",
1139
+ "absorbed",
1140
+ "absorbing",
1141
+ "absorbs",
1142
+ "absorption",
1143
+ "abstract",
1144
+ "accidents",
1145
+ "accompanied",
1146
+ "ace",
1147
+ "ach",
1148
+ "achieve",
1149
+ "achieved",
1150
+ "achieves",
1151
+ "achieving",
1152
+ "acidic",
1153
+ "ack",
1154
+ "across",
1155
+ "act",
1156
+ "acta",
1157
+ "activation",
1158
+ "active",
1159
+ "actively",
1160
+ "activities",
1161
+ "activity",
1162
+ "acts",
1163
+ "added",
1164
+ "adding",
1165
+ "addition",
1166
+ "additionally",
1167
+ "additively",
1168
+ "addresses",
1169
+ "addressing",
1170
+ "ade",
1171
+ "adjustable",
1172
+ "adm",
1173
+ "adm.",
1174
+ "ads",
1175
+ "adsorption",
1176
+ "advanced",
1177
+ "advancing",
1178
+ "advantages",
1179
+ "afe",
1180
+ "affinity",
1181
+ "after",
1182
+ "age",
1183
+ "ah",
1184
+ "ahead",
1185
+ "ai",
1186
+ "aided",
1187
+ "ail",
1188
+ "ain",
1189
+ "air",
1190
+ "ak",
1191
+ "ak.",
1192
+ "ake",
1193
+ "al0.05(tivnb)0.95",
1194
+ "ala",
1195
+ "ala.",
1196
+ "ale",
1197
+ "algorithms",
1198
+ "alkaline",
1199
+ "all",
1200
+ "alloy",
1201
+ "alloying",
1202
+ "alloys",
1203
+ "alm",
1204
+ "almost",
1205
+ "als",
1206
+ "also",
1207
+ "alt",
1208
+ "am",
1209
+ "ambient",
1210
+ "ambitious",
1211
+ "ame",
1212
+ "ameliorate",
1213
+ "american",
1214
+ "ammonia",
1215
+ "among",
1216
+ "amount",
1217
+ "amounts",
1218
+ "an",
1219
+ "an.",
1220
+ "analysis",
1221
+ "analyzing",
1222
+ "and",
1223
+ "and/or",
1224
+ "annealing",
1225
+ "annihilation",
1226
+ "ano",
1227
+ "anode",
1228
+ "ans",
1229
+ "ant",
1230
+ "anticipated",
1231
+ "anvil",
1232
+ "any",
1233
+ "ape",
1234
+ "apparatus",
1235
+ "apparent",
1236
+ "appear",
1237
+ "application",
1238
+ "applications",
1239
+ "applied",
1240
+ "applying",
1241
+ "approach",
1242
+ "approaches",
1243
+ "appropriate",
1244
+ "apr",
1245
+ "apr.",
1246
+ "ar.",
1247
+ "arc",
1248
+ "ard",
1249
+ "are",
1250
+ "area",
1251
+ "areal",
1252
+ "argon",
1253
+ "ariz",
1254
+ "ariz.",
1255
+ "ark",
1256
+ "ark.",
1257
+ "ars",
1258
+ "art",
1259
+ "ary",
1260
+ "as",
1261
+ "ascribed",
1262
+ "ase",
1263
+ "ash",
1264
+ "aspects",
1265
+ "ass",
1266
+ "assembled",
1267
+ "assembly",
1268
+ "assisted",
1269
+ "associated",
1270
+ "ast",
1271
+ "asy",
1272
+ "at",
1273
+ "at.%",
1274
+ "ata",
1275
+ "ate",
1276
+ "atmosphere",
1277
+ "atmospheric",
1278
+ "atom",
1279
+ "atomic",
1280
+ "atoms",
1281
+ "attempt",
1282
+ "attention",
1283
+ "attracted",
1284
+ "attractive",
1285
+ "attributed",
1286
+ "aug",
1287
+ "aug.",
1288
+ "author(s",
1289
+ "authors",
1290
+ "available",
1291
+ "ave",
1292
+ "avenue",
1293
+ "avy",
1294
+ "ays",
1295
+ "b",
1296
+ "b.",
1297
+ "b.v.",
1298
+ "bH.",
1299
+ "bal",
1300
+ "ball",
1301
+ "band",
1302
+ "bar",
1303
+ "bas",
1304
+ "based",
1305
+ "basis",
1306
+ "batteries",
1307
+ "battery",
1308
+ "bayesian",
1309
+ "bcc",
1310
+ "bcc)-type",
1311
+ "be",
1312
+ "because",
1313
+ "become",
1314
+ "bed",
1315
+ "been",
1316
+ "before",
1317
+ "behavior",
1318
+ "behaviors",
1319
+ "behind",
1320
+ "beneficial",
1321
+ "benefit",
1322
+ "ber",
1323
+ "bes",
1324
+ "best",
1325
+ "better",
1326
+ "between",
1327
+ "bh.",
1328
+ "bibliometric",
1329
+ "bic",
1330
+ "bifunctional",
1331
+ "binding",
1332
+ "biocompatibility",
1333
+ "bit",
1334
+ "ble",
1335
+ "block",
1336
+ "bly",
1337
+ "bn",
1338
+ "body",
1339
+ "bon",
1340
+ "bonds",
1341
+ "boosting",
1342
+ "boron",
1343
+ "both",
1344
+ "boundaries",
1345
+ "bout",
1346
+ "br.",
1347
+ "breaking",
1348
+ "bred",
1349
+ "bring",
1350
+ "bringing",
1351
+ "broaden",
1352
+ "broadened",
1353
+ "broadening",
1354
+ "bros",
1355
+ "bros.",
1356
+ "bulk",
1357
+ "but",
1358
+ "by",
1359
+ "c",
1360
+ "c'm",
1361
+ "c++",
1362
+ "c.",
1363
+ "c14",
1364
+ "ca",
1365
+ "cal",
1366
+ "calculated",
1367
+ "calculation",
1368
+ "calculations",
1369
+ "calif",
1370
+ "calif.",
1371
+ "called",
1372
+ "can",
1373
+ "candidate",
1374
+ "candidates",
1375
+ "cantor",
1376
+ "capabilities",
1377
+ "capability",
1378
+ "capacitance",
1379
+ "capacities",
1380
+ "capacity",
1381
+ "capital",
1382
+ "carbon",
1383
+ "carried",
1384
+ "case",
1385
+ "cast",
1386
+ "catalysis",
1387
+ "catalyst",
1388
+ "catalysts",
1389
+ "catalytic",
1390
+ "catalyzed",
1391
+ "cause",
1392
+ "caused",
1393
+ "cay",
1394
+ "cdb",
1395
+ "ce",
1396
+ "ce>",
1397
+ "ced",
1398
+ "cell",
1399
+ "cells",
1400
+ "centered",
1401
+ "central",
1402
+ "ces",
1403
+ "ch.",
1404
+ "challenge",
1405
+ "challenges",
1406
+ "change",
1407
+ "changes",
1408
+ "channel",
1409
+ "channels",
1410
+ "characteristics",
1411
+ "charging",
1412
+ "chemical",
1413
+ "chemical compound",
1414
+ "chemisorption",
1415
+ "chemistry",
1416
+ "chi",
1417
+ "chongqing",
1418
+ "class",
1419
+ "cle",
1420
+ "clean",
1421
+ "clearly",
1422
+ "closing",
1423
+ "cloth",
1424
+ "cm-2",
1425
+ "cm2",
1426
+ "cms",
1427
+ "cm\u22122",
1428
+ "co",
1429
+ "co.",
1430
+ "coarse",
1431
+ "coating",
1432
+ "coatings",
1433
+ "coefficient",
1434
+ "coincidence",
1435
+ "colo",
1436
+ "colo.",
1437
+ "combined",
1438
+ "come",
1439
+ "comes",
1440
+ "commercial",
1441
+ "commonly",
1442
+ "compact",
1443
+ "companies",
1444
+ "comparative",
1445
+ "compare",
1446
+ "compared",
1447
+ "compatibility",
1448
+ "complex",
1449
+ "component",
1450
+ "components",
1451
+ "composed",
1452
+ "composite",
1453
+ "composition",
1454
+ "compositional",
1455
+ "compositions",
1456
+ "comprehensive",
1457
+ "concentration",
1458
+ "concerns",
1459
+ "condensation",
1460
+ "conditions",
1461
+ "conducive",
1462
+ "conducting",
1463
+ "conductivity",
1464
+ "configuration",
1465
+ "confirm",
1466
+ "conn",
1467
+ "conn.",
1468
+ "consequently",
1469
+ "considerably",
1470
+ "considerations",
1471
+ "considered",
1472
+ "considering",
1473
+ "consistent",
1474
+ "constitutes",
1475
+ "constitution",
1476
+ "constructing",
1477
+ "contaminated",
1478
+ "content",
1479
+ "contributed",
1480
+ "contributes",
1481
+ "control",
1482
+ "controllable",
1483
+ "controlling",
1484
+ "conventional",
1485
+ "conversion",
1486
+ "cooling",
1487
+ "core",
1488
+ "corp",
1489
+ "corp.",
1490
+ "correlated",
1491
+ "corrosion",
1492
+ "cos",
1493
+ "cost",
1494
+ "could",
1495
+ "coz",
1496
+ "cr",
1497
+ "cr1",
1498
+ "cr1.5",
1499
+ "creating",
1500
+ "critical",
1501
+ "critically",
1502
+ "crn",
1503
+ "crucial",
1504
+ "cryogenic",
1505
+ "crystal",
1506
+ "crystallinity",
1507
+ "crystallize",
1508
+ "ct.",
1509
+ "cta",
1510
+ "cts",
1511
+ "cu",
1512
+ "cubic",
1513
+ "current",
1514
+ "currently",
1515
+ "curves",
1516
+ "cus",
1517
+ "cuz",
1518
+ "cycle",
1519
+ "cycles",
1520
+ "cyclic",
1521
+ "cycling",
1522
+ "c\u2019m",
1523
+ "d",
1524
+ "d)",
1525
+ "d-",
1526
+ "d-)",
1527
+ "d-X",
1528
+ "d.",
1529
+ "d.c.",
1530
+ "d.d",
1531
+ "d.dd",
1532
+ "d.dd/d.dd",
1533
+ "d.ddXxd.dd",
1534
+ "d.ddd",
1535
+ "d.ddxxd.dd",
1536
+ "d.d\u2013d.d",
1537
+ "d.x",
1538
+ "dX",
1539
+ "d_d",
1540
+ "d_x",
1541
+ "daiichi",
1542
+ "dare",
1543
+ "data",
1544
+ "days",
1545
+ "dd",
1546
+ "dd.d",
1547
+ "dd.dd",
1548
+ "ddd",
1549
+ "ddd.d",
1550
+ "ddd.dd",
1551
+ "dddd",
1552
+ "ddd\u2013ddd",
1553
+ "ddx.x",
1554
+ "ddx.x.",
1555
+ "de",
1556
+ "de-/hydrogenation",
1557
+ "dec",
1558
+ "dec.",
1559
+ "decay",
1560
+ "decomposition",
1561
+ "decorate",
1562
+ "decrease",
1563
+ "decreased",
1564
+ "decreases",
1565
+ "decreasing",
1566
+ "ded",
1567
+ "deep",
1568
+ "defects",
1569
+ "defined",
1570
+ "deformation",
1571
+ "degradation",
1572
+ "dehydrided",
1573
+ "dehydriding",
1574
+ "dehydrogenated",
1575
+ "dehydrogenation",
1576
+ "del",
1577
+ "del.",
1578
+ "demand",
1579
+ "demanded",
1580
+ "demands",
1581
+ "demonstrate",
1582
+ "demonstrating",
1583
+ "den",
1584
+ "dendrite",
1585
+ "dendrites",
1586
+ "dendritic",
1587
+ "density",
1588
+ "depends",
1589
+ "der",
1590
+ "des",
1591
+ "design",
1592
+ "designed",
1593
+ "designing",
1594
+ "desirable",
1595
+ "desorbed",
1596
+ "desorbs",
1597
+ "desorption",
1598
+ "destabilization",
1599
+ "detach",
1600
+ "detail",
1601
+ "determined",
1602
+ "deuterium",
1603
+ "develop",
1604
+ "developing",
1605
+ "development",
1606
+ "device",
1607
+ "dia",
1608
+ "diamond",
1609
+ "dic",
1610
+ "did",
1611
+ "difference",
1612
+ "differences",
1613
+ "different",
1614
+ "difficult",
1615
+ "diffraction",
1616
+ "diffuse",
1617
+ "diffusion",
1618
+ "dihydride",
1619
+ "dihydrides",
1620
+ "diluted",
1621
+ "dioxide",
1622
+ "direction",
1623
+ "directions",
1624
+ "discovered",
1625
+ "discuss",
1626
+ "discussed",
1627
+ "dislocations",
1628
+ "dispersed",
1629
+ "dispersion",
1630
+ "dispersive",
1631
+ "displaying",
1632
+ "disproportionation",
1633
+ "dissociation",
1634
+ "dissolved",
1635
+ "distance",
1636
+ "distinct",
1637
+ "distortion",
1638
+ "distribution",
1639
+ "diverse",
1640
+ "dly",
1641
+ "dm.",
1642
+ "do",
1643
+ "does",
1644
+ "doin",
1645
+ "doin'",
1646
+ "doing",
1647
+ "doin\u2019",
1648
+ "doped",
1649
+ "doping",
1650
+ "doppler",
1651
+ "double",
1652
+ "dox",
1653
+ "dr",
1654
+ "dr.",
1655
+ "driven",
1656
+ "dual",
1657
+ "due",
1658
+ "during",
1659
+ "dx.x",
1660
+ "dx.x.",
1661
+ "e",
1662
+ "e's",
1663
+ "e.",
1664
+ "e.g",
1665
+ "e.g.",
1666
+ "eCu",
1667
+ "eH2",
1668
+ "eNi",
1669
+ "ea(cr",
1670
+ "ea(mo",
1671
+ "ea(nb",
1672
+ "ead",
1673
+ "eal",
1674
+ "ean",
1675
+ "ear",
1676
+ "eas",
1677
+ "easier",
1678
+ "easily",
1679
+ "easy",
1680
+ "eat",
1681
+ "eau",
1682
+ "eb.",
1683
+ "ebr",
1684
+ "eby",
1685
+ "ec.",
1686
+ "ec=",
1687
+ "economic",
1688
+ "ect",
1689
+ "ecu",
1690
+ "eds",
1691
+ "eed",
1692
+ "een",
1693
+ "eep",
1694
+ "eet",
1695
+ "effect",
1696
+ "effective",
1697
+ "effectively",
1698
+ "effects",
1699
+ "efficiency",
1700
+ "efficient",
1701
+ "egy",
1702
+ "eh2",
1703
+ "ein",
1704
+ "eir",
1705
+ "el.",
1706
+ "eld",
1707
+ "electrical",
1708
+ "electrocatalyst",
1709
+ "electrocatalysts",
1710
+ "electrocatalytic",
1711
+ "electrochemical",
1712
+ "electrochemically",
1713
+ "electrode",
1714
+ "electrodes",
1715
+ "electrolyte",
1716
+ "electrolytes",
1717
+ "electron",
1718
+ "electronegativity",
1719
+ "electronic",
1720
+ "electrons",
1721
+ "element",
1722
+ "elemental",
1723
+ "elements",
1724
+ "elevated",
1725
+ "elf",
1726
+ "ell",
1727
+ "elp",
1728
+ "els",
1729
+ "elsevier",
1730
+ "ely",
1731
+ "em",
1732
+ "emerge",
1733
+ "emerged",
1734
+ "emerging",
1735
+ "emi",
1736
+ "emission",
1737
+ "emphasizing",
1738
+ "empirical",
1739
+ "employing",
1740
+ "ems",
1741
+ "en",
1742
+ "en.",
1743
+ "enabled",
1744
+ "encapsulated",
1745
+ "end",
1746
+ "ene",
1747
+ "energy",
1748
+ "enhance",
1749
+ "enhanced",
1750
+ "enhancement",
1751
+ "enhances",
1752
+ "enhancing",
1753
+ "eni",
1754
+ "enn",
1755
+ "enough",
1756
+ "ens",
1757
+ "ensure",
1758
+ "ensures",
1759
+ "ent",
1760
+ "enthalpy",
1761
+ "entropy",
1762
+ "environment",
1763
+ "environmental",
1764
+ "environments",
1765
+ "ep.",
1766
+ "epitomized",
1767
+ "ept",
1768
+ "equiatomic",
1769
+ "equivalent",
1770
+ "ere",
1771
+ "erm",
1772
+ "ero",
1773
+ "ers",
1774
+ "ert",
1775
+ "ery",
1776
+ "ese",
1777
+ "especially",
1778
+ "ess",
1779
+ "essential",
1780
+ "est",
1781
+ "estimated",
1782
+ "etc",
1783
+ "etching",
1784
+ "ets",
1785
+ "ety",
1786
+ "eutectic",
1787
+ "ev.",
1788
+ "evaluate",
1789
+ "eve",
1790
+ "even",
1791
+ "evolution",
1792
+ "examined",
1793
+ "examines",
1794
+ "example",
1795
+ "examples",
1796
+ "exceeding",
1797
+ "exceeds",
1798
+ "excellent",
1799
+ "exceptional",
1800
+ "exclusive",
1801
+ "exhibit",
1802
+ "exhibited",
1803
+ "exhibits",
1804
+ "existing",
1805
+ "expanded",
1806
+ "expanding",
1807
+ "experimental",
1808
+ "experiments",
1809
+ "explain",
1810
+ "exploration",
1811
+ "explored",
1812
+ "exploring",
1813
+ "exposure",
1814
+ "ext",
1815
+ "extended",
1816
+ "extension",
1817
+ "extremely",
1818
+ "e\u2019s",
1819
+ "f",
1820
+ "f.",
1821
+ "fabricated",
1822
+ "face",
1823
+ "faces",
1824
+ "facile",
1825
+ "facilitate",
1826
+ "facilitates",
1827
+ "fact",
1828
+ "factor",
1829
+ "factors",
1830
+ "famous",
1831
+ "far",
1832
+ "fast",
1833
+ "favorable",
1834
+ "favors",
1835
+ "fcc",
1836
+ "fe",
1837
+ "fe1.5",
1838
+ "features",
1839
+ "feb",
1840
+ "feb.",
1841
+ "feconicrn",
1842
+ "femncocr",
1843
+ "fer",
1844
+ "few",
1845
+ "fic",
1846
+ "field",
1847
+ "fields",
1848
+ "figure",
1849
+ "final",
1850
+ "finally",
1851
+ "findings",
1852
+ "fine",
1853
+ "first",
1854
+ "firstly",
1855
+ "fit",
1856
+ "fla",
1857
+ "fla.",
1858
+ "flattening",
1859
+ "foam",
1860
+ "focal",
1861
+ "focus",
1862
+ "focuses",
1863
+ "focusing",
1864
+ "followed",
1865
+ "for",
1866
+ "form",
1867
+ "formation",
1868
+ "formed",
1869
+ "formidable",
1870
+ "forming",
1871
+ "formulation",
1872
+ "forward",
1873
+ "found",
1874
+ "four",
1875
+ "fraction",
1876
+ "frameworks",
1877
+ "from",
1878
+ "ft",
1879
+ "fuel",
1880
+ "fukushima",
1881
+ "ful",
1882
+ "fulfill",
1883
+ "full",
1884
+ "fulltext",
1885
+ "function",
1886
+ "functional",
1887
+ "functionalities",
1888
+ "further",
1889
+ "furthermore",
1890
+ "fusion",
1891
+ "future",
1892
+ "g",
1893
+ "g-1",
1894
+ "g.",
1895
+ "gH2",
1896
+ "ga",
1897
+ "ga.",
1898
+ "gap",
1899
+ "gas",
1900
+ "gaseous",
1901
+ "ged",
1902
+ "gen",
1903
+ "gen.",
1904
+ "generating",
1905
+ "generation",
1906
+ "ger",
1907
+ "ges",
1908
+ "gh2",
1909
+ "ght",
1910
+ "given",
1911
+ "giving",
1912
+ "gle",
1913
+ "global",
1914
+ "gly",
1915
+ "gmbh.",
1916
+ "goin",
1917
+ "goin'",
1918
+ "going",
1919
+ "goin\u2019",
1920
+ "gon",
1921
+ "gonna",
1922
+ "good",
1923
+ "got",
1924
+ "gov",
1925
+ "gov.",
1926
+ "governing",
1927
+ "gpa",
1928
+ "grade",
1929
+ "gradient",
1930
+ "gradual",
1931
+ "gradually",
1932
+ "grain",
1933
+ "grains",
1934
+ "graphene",
1935
+ "graphical",
1936
+ "gravimetric",
1937
+ "great",
1938
+ "greatly",
1939
+ "green",
1940
+ "group",
1941
+ "growing",
1942
+ "grown",
1943
+ "growth",
1944
+ "guidance",
1945
+ "guide",
1946
+ "h",
1947
+ "h-",
1948
+ "h-1",
1949
+ "h.",
1950
+ "h2",
1951
+ "hRu",
1952
+ "had",
1953
+ "han",
1954
+ "has",
1955
+ "hat",
1956
+ "have",
1957
+ "havin",
1958
+ "havin'",
1959
+ "having",
1960
+ "havin\u2019",
1961
+ "he",
1962
+ "he's",
1963
+ "hea",
1964
+ "hea@cf",
1965
+ "heas",
1966
+ "heat",
1967
+ "heavier",
1968
+ "heavy",
1969
+ "hed",
1970
+ "help",
1971
+ "hem",
1972
+ "hems",
1973
+ "hen",
1974
+ "her",
1975
+ "here",
1976
+ "herein",
1977
+ "hereinafter",
1978
+ "hes",
1979
+ "hexagonal",
1980
+ "hey",
1981
+ "he\u2019s",
1982
+ "hf",
1983
+ "hierarchically",
1984
+ "high",
1985
+ "higher",
1986
+ "highest",
1987
+ "highlights",
1988
+ "highly",
1989
+ "hin",
1990
+ "hints",
1991
+ "his",
1992
+ "hly",
1993
+ "hms",
1994
+ "hno",
1995
+ "hod",
1996
+ "holds",
1997
+ "hor",
1998
+ "how",
1999
+ "how's",
2000
+ "however",
2001
+ "how\u2019s",
2002
+ "hpt",
2003
+ "hru",
2004
+ "hts",
2005
+ "hua",
2006
+ "hus",
2007
+ "hybrids",
2008
+ "hydride",
2009
+ "hydrides",
2010
+ "hydrocarbons",
2011
+ "hydrogen",
2012
+ "hydrogenated",
2013
+ "hydrogenation",
2014
+ "hydroxide",
2015
+ "hysteresis",
2016
+ "i",
2017
+ "i.",
2018
+ "i.e",
2019
+ "i.e.",
2020
+ "iH4",
2021
+ "iMo",
2022
+ "ia",
2023
+ "ia.",
2024
+ "ial",
2025
+ "ian",
2026
+ "ice",
2027
+ "ich",
2028
+ "ics",
2029
+ "ict",
2030
+ "id",
2031
+ "id.",
2032
+ "ide",
2033
+ "identify",
2034
+ "ids",
2035
+ "ied",
2036
+ "ier",
2037
+ "ies",
2038
+ "iew",
2039
+ "if.",
2040
+ "ify",
2041
+ "igc",
2042
+ "igh",
2043
+ "ign",
2044
+ "ike",
2045
+ "ile",
2046
+ "ill",
2047
+ "ill.",
2048
+ "ily",
2049
+ "ima",
2050
+ "ime",
2051
+ "immense",
2052
+ "imo",
2053
+ "impact",
2054
+ "impacts",
2055
+ "implementing",
2056
+ "importance",
2057
+ "important",
2058
+ "improve",
2059
+ "improved",
2060
+ "improvement",
2061
+ "improves",
2062
+ "improving",
2063
+ "in",
2064
+ "in'",
2065
+ "inc",
2066
+ "inc.",
2067
+ "include",
2068
+ "including",
2069
+ "incorporating",
2070
+ "incorporation",
2071
+ "increase",
2072
+ "increased",
2073
+ "increases",
2074
+ "increasing",
2075
+ "increasingly",
2076
+ "ind",
2077
+ "ind.",
2078
+ "indicate",
2079
+ "indicated",
2080
+ "induced",
2081
+ "inducing",
2082
+ "industrial",
2083
+ "industries",
2084
+ "industry",
2085
+ "ine",
2086
+ "inert",
2087
+ "influence",
2088
+ "information",
2089
+ "ing",
2090
+ "initial",
2091
+ "inn",
2092
+ "innovation",
2093
+ "innovative",
2094
+ "input",
2095
+ "inputs",
2096
+ "ins",
2097
+ "inside",
2098
+ "insights",
2099
+ "inspire",
2100
+ "int",
2101
+ "integration",
2102
+ "intensive",
2103
+ "interaction",
2104
+ "interdendritic",
2105
+ "interest",
2106
+ "interesting",
2107
+ "interfacial",
2108
+ "intermetallic",
2109
+ "interphase",
2110
+ "interpretable",
2111
+ "interstitial",
2112
+ "into",
2113
+ "intrinsic",
2114
+ "introduce",
2115
+ "introduced",
2116
+ "introduction",
2117
+ "investigated",
2118
+ "investigation",
2119
+ "investments",
2120
+ "involvement",
2121
+ "in\u2019",
2122
+ "ion",
2123
+ "ionization",
2124
+ "ior",
2125
+ "ios",
2126
+ "ir",
2127
+ "ire",
2128
+ "irm",
2129
+ "irpdptrhru",
2130
+ "irradiation",
2131
+ "is",
2132
+ "is.",
2133
+ "ise",
2134
+ "ish",
2135
+ "ism",
2136
+ "isotherm",
2137
+ "isotherms",
2138
+ "isotope",
2139
+ "isotopes",
2140
+ "iss",
2141
+ "issues",
2142
+ "it",
2143
+ "it's",
2144
+ "ite",
2145
+ "ith",
2146
+ "its",
2147
+ "itu",
2148
+ "ity",
2149
+ "it\u2019s",
2150
+ "ium",
2151
+ "ive",
2152
+ "iz.",
2153
+ "ize",
2154
+ "j",
2155
+ "j.",
2156
+ "jan",
2157
+ "jan.",
2158
+ "jander",
2159
+ "jor",
2160
+ "jr",
2161
+ "jr.",
2162
+ "jul",
2163
+ "jul.",
2164
+ "jun",
2165
+ "jun.",
2166
+ "j\u00b7k\u22121\u00b7mol\u22121",
2167
+ "k",
2168
+ "k.",
2169
+ "kJ",
2170
+ "kJ\u00b7mol\u22121",
2171
+ "kWh-1",
2172
+ "kan",
2173
+ "kan.",
2174
+ "kans",
2175
+ "kans.",
2176
+ "ked",
2177
+ "kel",
2178
+ "kes",
2179
+ "key",
2180
+ "kg-1",
2181
+ "kinetic",
2182
+ "kinetics",
2183
+ "kj",
2184
+ "kj\u00b7mol\u22121",
2185
+ "kla",
2186
+ "kly",
2187
+ "known",
2188
+ "koh",
2189
+ "kubas",
2190
+ "kwh-1",
2191
+ "ky",
2192
+ "ky.",
2193
+ "k\u22121",
2194
+ "l",
2195
+ "l.",
2196
+ "la",
2197
+ "la.",
2198
+ "lack",
2199
+ "landscape",
2200
+ "landscapes",
2201
+ "lani5h6",
2202
+ "lar",
2203
+ "large",
2204
+ "largely",
2205
+ "larger",
2206
+ "laser",
2207
+ "latest",
2208
+ "lattice",
2209
+ "laves",
2210
+ "law",
2211
+ "layered",
2212
+ "ldh",
2213
+ "ldh@phea",
2214
+ "lds",
2215
+ "leads",
2216
+ "learning",
2217
+ "least",
2218
+ "leave",
2219
+ "led",
2220
+ "lem",
2221
+ "ler",
2222
+ "les",
2223
+ "less",
2224
+ "let",
2225
+ "let's",
2226
+ "let\u2019s",
2227
+ "level",
2228
+ "lex",
2229
+ "ley",
2230
+ "lia",
2231
+ "lic",
2232
+ "licence",
2233
+ "lid",
2234
+ "lif",
2235
+ "light",
2236
+ "like",
2237
+ "likewise",
2238
+ "limit",
2239
+ "limitations",
2240
+ "liquid",
2241
+ "ll",
2242
+ "ll.",
2243
+ "llc",
2244
+ "lls",
2245
+ "lly",
2246
+ "lo.",
2247
+ "loaded",
2248
+ "located",
2249
+ "long",
2250
+ "looking",
2251
+ "looks",
2252
+ "lop",
2253
+ "loss",
2254
+ "lovin",
2255
+ "lovin'",
2256
+ "loving",
2257
+ "lovin\u2019",
2258
+ "low",
2259
+ "lower",
2260
+ "lowered",
2261
+ "loy",
2262
+ "lpy",
2263
+ "lso",
2264
+ "ltd",
2265
+ "ltd.",
2266
+ "lti",
2267
+ "lts",
2268
+ "lue",
2269
+ "lus",
2270
+ "lve",
2271
+ "l\u22121",
2272
+ "m",
2273
+ "m-2",
2274
+ "m.",
2275
+ "mA",
2276
+ "mAh",
2277
+ "mV",
2278
+ "ma",
2279
+ "ma'am",
2280
+ "machine",
2281
+ "madam",
2282
+ "magnesium",
2283
+ "magnitude",
2284
+ "mah",
2285
+ "main",
2286
+ "mainly",
2287
+ "major",
2288
+ "make",
2289
+ "makes",
2290
+ "making",
2291
+ "mal",
2292
+ "man",
2293
+ "management",
2294
+ "manufactured",
2295
+ "mapping",
2296
+ "mar",
2297
+ "mar.",
2298
+ "markedly",
2299
+ "martensite",
2300
+ "martensitic",
2301
+ "mass",
2302
+ "mass.",
2303
+ "material",
2304
+ "materialia",
2305
+ "materials",
2306
+ "matrix",
2307
+ "may",
2308
+ "ma\u2019am",
2309
+ "md",
2310
+ "md.",
2311
+ "mea",
2312
+ "mean",
2313
+ "meas",
2314
+ "measured",
2315
+ "measurements",
2316
+ "mechanical",
2317
+ "mechanically",
2318
+ "mechanism",
2319
+ "mechanisms",
2320
+ "med",
2321
+ "media",
2322
+ "medium",
2323
+ "meet",
2324
+ "meeting",
2325
+ "melting",
2326
+ "merit",
2327
+ "mes",
2328
+ "messrs",
2329
+ "messrs.",
2330
+ "metal",
2331
+ "metallic",
2332
+ "metastable",
2333
+ "method",
2334
+ "methods",
2335
+ "meticulous",
2336
+ "mg",
2337
+ "mg2",
2338
+ "mg2nih4",
2339
+ "mgh2",
2340
+ "mgx(tivcrnb)100\u2212x",
2341
+ "mic",
2342
+ "mich",
2343
+ "mich.",
2344
+ "microscopy",
2345
+ "microstructure",
2346
+ "might",
2347
+ "milled",
2348
+ "milling",
2349
+ "min",
2350
+ "minn",
2351
+ "minn.",
2352
+ "mismatch",
2353
+ "miss",
2354
+ "miss.",
2355
+ "mit",
2356
+ "mixed",
2357
+ "mixing",
2358
+ "mly",
2359
+ "mn",
2360
+ "mn1",
2361
+ "mn1.5",
2362
+ "mo",
2363
+ "mo.",
2364
+ "model",
2365
+ "modification",
2366
+ "modified",
2367
+ "modulus",
2368
+ "mofs",
2369
+ "molecules",
2370
+ "molten",
2371
+ "molybdenum",
2372
+ "mol\u22121",
2373
+ "momentary",
2374
+ "mont",
2375
+ "mont.",
2376
+ "months",
2377
+ "more",
2378
+ "moreover",
2379
+ "morphological",
2380
+ "morphology",
2381
+ "most",
2382
+ "mox",
2383
+ "mpa",
2384
+ "mpt",
2385
+ "mr",
2386
+ "mr.",
2387
+ "mrs",
2388
+ "mrs.",
2389
+ "ms",
2390
+ "ms.",
2391
+ "mt",
2392
+ "mt.",
2393
+ "much",
2394
+ "multi",
2395
+ "multielement",
2396
+ "multiphase",
2397
+ "multiple",
2398
+ "multistage",
2399
+ "multivalent",
2400
+ "must",
2401
+ "mv",
2402
+ "mxenes",
2403
+ "m\u22122",
2404
+ "n",
2405
+ "n's",
2406
+ "n't",
2407
+ "n.",
2408
+ "n.c.",
2409
+ "n.d.",
2410
+ "n.h.",
2411
+ "n.j.",
2412
+ "n.m.",
2413
+ "n.y.",
2414
+ "na",
2415
+ "nacl",
2416
+ "nal",
2417
+ "nano",
2418
+ "nanofabrication",
2419
+ "nanofibers",
2420
+ "nanomaterials",
2421
+ "nanoparticles",
2422
+ "nanoparticulate",
2423
+ "nanoscale",
2424
+ "nanotechnology",
2425
+ "nanotubes",
2426
+ "nature",
2427
+ "nb",
2428
+ "nc.",
2429
+ "nce",
2430
+ "nct",
2431
+ "ncts",
2432
+ "ncy",
2433
+ "nd.",
2434
+ "nds",
2435
+ "ne",
2436
+ "neb",
2437
+ "neb.",
2438
+ "nebr",
2439
+ "nebr.",
2440
+ "necessity",
2441
+ "ned",
2442
+ "need",
2443
+ "needed",
2444
+ "nel",
2445
+ "nes",
2446
+ "networks",
2447
+ "neutron",
2448
+ "nev",
2449
+ "nev.",
2450
+ "nevertheless",
2451
+ "new",
2452
+ "next",
2453
+ "nf",
2454
+ "nge",
2455
+ "ngs",
2456
+ "ni",
2457
+ "nia",
2458
+ "nic",
2459
+ "nickel",
2460
+ "nicofecu",
2461
+ "nitride",
2462
+ "nitrogen",
2463
+ "nix",
2464
+ "nly",
2465
+ "nm",
2466
+ "nn.",
2467
+ "nnm",
2468
+ "noble",
2469
+ "non",
2470
+ "nonmetallic",
2471
+ "not",
2472
+ "notably",
2473
+ "noted",
2474
+ "nothin",
2475
+ "nothin'",
2476
+ "nothing",
2477
+ "nothin\u2019",
2478
+ "nov",
2479
+ "nov.",
2480
+ "novel",
2481
+ "nps",
2482
+ "ns.",
2483
+ "nse",
2484
+ "nt",
2485
+ "nt.",
2486
+ "nto",
2487
+ "nts",
2488
+ "nty",
2489
+ "nuclear",
2490
+ "nucleation",
2491
+ "nue",
2492
+ "nuff",
2493
+ "numerical value",
2494
+ "nuthin",
2495
+ "nuthin'",
2496
+ "nuthin\u2019",
2497
+ "n\u2019s",
2498
+ "n\u2019t",
2499
+ "o",
2500
+ "o'clock",
2501
+ "o's",
2502
+ "o.",
2503
+ "o.0",
2504
+ "o.O",
2505
+ "o.o",
2506
+ "oCr",
2507
+ "oMn",
2508
+ "o_0",
2509
+ "o_O",
2510
+ "o_o",
2511
+ "oam",
2512
+ "objective",
2513
+ "observations",
2514
+ "observed",
2515
+ "obtained",
2516
+ "occurs",
2517
+ "ock",
2518
+ "ocr",
2519
+ "oct",
2520
+ "oct.",
2521
+ "ode",
2522
+ "ods",
2523
+ "ody",
2524
+ "oer",
2525
+ "oes",
2526
+ "of",
2527
+ "of.",
2528
+ "off",
2529
+ "offering",
2530
+ "ofs",
2531
+ "ogy",
2532
+ "oin",
2533
+ "okla",
2534
+ "okla.",
2535
+ "oks",
2536
+ "ol",
2537
+ "ol'",
2538
+ "old",
2539
+ "ole",
2540
+ "olo",
2541
+ "ols",
2542
+ "ol\u2019",
2543
+ "ome",
2544
+ "omn",
2545
+ "oms",
2546
+ "on",
2547
+ "ond",
2548
+ "one",
2549
+ "ong",
2550
+ "ongoing",
2551
+ "only",
2552
+ "onn",
2553
+ "ons",
2554
+ "onset",
2555
+ "ont",
2556
+ "ood",
2557
+ "oom",
2558
+ "oor",
2559
+ "ope",
2560
+ "opens",
2561
+ "operating",
2562
+ "opportunities",
2563
+ "opposite",
2564
+ "optimism",
2565
+ "optimization",
2566
+ "optimize",
2567
+ "optimized",
2568
+ "optimizing",
2569
+ "opy",
2570
+ "or",
2571
+ "orb",
2572
+ "order",
2573
+ "ordering",
2574
+ "ore",
2575
+ "ore.",
2576
+ "organic",
2577
+ "organizational",
2578
+ "ork",
2579
+ "orm",
2580
+ "orp",
2581
+ "ors",
2582
+ "ort",
2583
+ "ory",
2584
+ "os.",
2585
+ "ose",
2586
+ "oss",
2587
+ "ost",
2588
+ "ote",
2589
+ "oth",
2590
+ "other",
2591
+ "ought",
2592
+ "oup",
2593
+ "our",
2594
+ "ous",
2595
+ "out",
2596
+ "outlined",
2597
+ "outlines",
2598
+ "outstanding",
2599
+ "ov.",
2600
+ "ove",
2601
+ "over",
2602
+ "overall",
2603
+ "overcome",
2604
+ "overpotential",
2605
+ "overpotentials",
2606
+ "owing",
2607
+ "own",
2608
+ "ows",
2609
+ "oxidation",
2610
+ "oxygen",
2611
+ "oys",
2612
+ "o\u2019clock",
2613
+ "o\u2019s",
2614
+ "p",
2615
+ "p.",
2616
+ "p.m",
2617
+ "p.m.",
2618
+ "pa",
2619
+ "pa.",
2620
+ "pair",
2621
+ "pal",
2622
+ "paper",
2623
+ "par",
2624
+ "parameter",
2625
+ "parameters",
2626
+ "part",
2627
+ "participate",
2628
+ "particle",
2629
+ "particular",
2630
+ "particularly",
2631
+ "pas",
2632
+ "pathways",
2633
+ "patterns",
2634
+ "pci",
2635
+ "pcms",
2636
+ "pct",
2637
+ "pdf",
2638
+ "ped",
2639
+ "per",
2640
+ "performance",
2641
+ "performed",
2642
+ "perspective",
2643
+ "pes",
2644
+ "pgm",
2645
+ "ph",
2646
+ "ph.d.",
2647
+ "phase",
2648
+ "phases",
2649
+ "phea",
2650
+ "photocatalytic",
2651
+ "photoelectron",
2652
+ "physicochemical",
2653
+ "physisorption",
2654
+ "plastic",
2655
+ "plateau",
2656
+ "platinum",
2657
+ "ple",
2658
+ "pm",
2659
+ "point",
2660
+ "points",
2661
+ "pollutants",
2662
+ "poor",
2663
+ "porous",
2664
+ "positron",
2665
+ "possessed",
2666
+ "possesses",
2667
+ "possibility",
2668
+ "potential",
2669
+ "powder",
2670
+ "power",
2671
+ "pr.",
2672
+ "practical",
2673
+ "pragmatic",
2674
+ "pre",
2675
+ "precipitation",
2676
+ "precise",
2677
+ "precisely",
2678
+ "predict",
2679
+ "predictions",
2680
+ "preferential",
2681
+ "preferentially",
2682
+ "preparation",
2683
+ "prepared",
2684
+ "present",
2685
+ "presented",
2686
+ "presents",
2687
+ "press",
2688
+ "pressure",
2689
+ "prevents",
2690
+ "prime",
2691
+ "principal",
2692
+ "pristine",
2693
+ "problem",
2694
+ "process",
2695
+ "processed",
2696
+ "processes",
2697
+ "processing",
2698
+ "produced",
2699
+ "products",
2700
+ "prof",
2701
+ "prof.",
2702
+ "progress",
2703
+ "prolongs",
2704
+ "promising",
2705
+ "promote",
2706
+ "properties",
2707
+ "property",
2708
+ "proportion",
2709
+ "proposed",
2710
+ "prospective",
2711
+ "prospects",
2712
+ "protection",
2713
+ "protium",
2714
+ "prototype",
2715
+ "provide",
2716
+ "provided",
2717
+ "provides",
2718
+ "providing",
2719
+ "proximity",
2720
+ "pt",
2721
+ "pt.",
2722
+ "published",
2723
+ "publishing",
2724
+ "pure",
2725
+ "put",
2726
+ "pyrolysis",
2727
+ "q",
2728
+ "q.",
2729
+ "que",
2730
+ "quickly",
2731
+ "r",
2732
+ "r(s",
2733
+ "r.",
2734
+ "rH2",
2735
+ "rNb",
2736
+ "rNi",
2737
+ "raise",
2738
+ "ral",
2739
+ "raman",
2740
+ "ramping",
2741
+ "range",
2742
+ "ranging",
2743
+ "rapidly",
2744
+ "rate",
2745
+ "rates",
2746
+ "ray",
2747
+ "rbm",
2748
+ "rbs",
2749
+ "rce",
2750
+ "rch",
2751
+ "rds",
2752
+ "re",
2753
+ "re.",
2754
+ "rea",
2755
+ "reabsorb",
2756
+ "reach",
2757
+ "reaches",
2758
+ "reaction",
2759
+ "reactions",
2760
+ "reactive",
2761
+ "reactor",
2762
+ "realm",
2763
+ "reasonably",
2764
+ "rebonding",
2765
+ "recent",
2766
+ "recently",
2767
+ "red",
2768
+ "redox",
2769
+ "reduce",
2770
+ "reduced",
2771
+ "reduces",
2772
+ "reducing",
2773
+ "reduction",
2774
+ "ree",
2775
+ "referred",
2776
+ "refinement",
2777
+ "refines",
2778
+ "refractory",
2779
+ "regulating",
2780
+ "regulation",
2781
+ "related",
2782
+ "relative",
2783
+ "relaxing",
2784
+ "release",
2785
+ "relevant",
2786
+ "remains",
2787
+ "remarkable",
2788
+ "remarkably",
2789
+ "remediation",
2790
+ "removal",
2791
+ "rep",
2792
+ "rep.",
2793
+ "replacement",
2794
+ "report",
2795
+ "reported",
2796
+ "represent",
2797
+ "require",
2798
+ "requirements",
2799
+ "requires",
2800
+ "res",
2801
+ "research",
2802
+ "reserved",
2803
+ "resistance",
2804
+ "respectively",
2805
+ "result",
2806
+ "resulting",
2807
+ "results",
2808
+ "retaining",
2809
+ "rev",
2810
+ "rev.",
2811
+ "reveal",
2812
+ "revealed",
2813
+ "reversibility",
2814
+ "reversible",
2815
+ "review",
2816
+ "reviewed",
2817
+ "revolutionized",
2818
+ "revolutions",
2819
+ "rge",
2820
+ "rgy",
2821
+ "ric",
2822
+ "rich",
2823
+ "rights",
2824
+ "rising",
2825
+ "rit",
2826
+ "rix",
2827
+ "riz",
2828
+ "rk.",
2829
+ "rks",
2830
+ "rly",
2831
+ "rms",
2832
+ "rnb",
2833
+ "rns",
2834
+ "robust",
2835
+ "robustness",
2836
+ "rof",
2837
+ "rol",
2838
+ "role",
2839
+ "rom",
2840
+ "ron",
2841
+ "room",
2842
+ "ros",
2843
+ "route",
2844
+ "royal",
2845
+ "rp.",
2846
+ "rs.",
2847
+ "rse",
2848
+ "rst",
2849
+ "rty",
2850
+ "s",
2851
+ "s's",
2852
+ "s.",
2853
+ "s.c.",
2854
+ "safe",
2855
+ "safely",
2856
+ "sal",
2857
+ "salt",
2858
+ "same",
2859
+ "sample",
2860
+ "samples",
2861
+ "satisfactory",
2862
+ "satisfy",
2863
+ "saturated",
2864
+ "scalability",
2865
+ "scale",
2866
+ "scaled",
2867
+ "scanning",
2868
+ "scarcity",
2869
+ "scenarios",
2870
+ "science",
2871
+ "science+business",
2872
+ "scientific",
2873
+ "scope",
2874
+ "screening",
2875
+ "sea",
2876
+ "seawater",
2877
+ "second",
2878
+ "seconds",
2879
+ "sed",
2880
+ "see",
2881
+ "selective",
2882
+ "self",
2883
+ "semi",
2884
+ "sen",
2885
+ "sen.",
2886
+ "sep",
2887
+ "sep.",
2888
+ "separate",
2889
+ "separated",
2890
+ "separation",
2891
+ "separator",
2892
+ "sept",
2893
+ "sept.",
2894
+ "ser",
2895
+ "series",
2896
+ "service",
2897
+ "ses",
2898
+ "set",
2899
+ "several",
2900
+ "sfy",
2901
+ "sh.",
2902
+ "sha",
2903
+ "shall",
2904
+ "she",
2905
+ "she's",
2906
+ "she\u2019s",
2907
+ "shortcomings",
2908
+ "should",
2909
+ "show",
2910
+ "showed",
2911
+ "showing",
2912
+ "shown",
2913
+ "shows",
2914
+ "sic",
2915
+ "sievert",
2916
+ "significant",
2917
+ "significantly",
2918
+ "simple",
2919
+ "simulated",
2920
+ "single",
2921
+ "sis",
2922
+ "sites",
2923
+ "situ",
2924
+ "size",
2925
+ "sized",
2926
+ "sizes",
2927
+ "slope",
2928
+ "sluggish",
2929
+ "small",
2930
+ "smart",
2931
+ "sms",
2932
+ "so",
2933
+ "so4",
2934
+ "society",
2935
+ "solid",
2936
+ "solution",
2937
+ "solutions",
2938
+ "solve",
2939
+ "somethin",
2940
+ "somethin'",
2941
+ "something",
2942
+ "somethin\u2019",
2943
+ "sorbents",
2944
+ "sorption",
2945
+ "source",
2946
+ "south",
2947
+ "space",
2948
+ "sparked",
2949
+ "species",
2950
+ "specific",
2951
+ "specifically",
2952
+ "spectra",
2953
+ "spectroscopy",
2954
+ "speeds",
2955
+ "splitting",
2956
+ "spotlight",
2957
+ "spotlighting",
2958
+ "springer",
2959
+ "srs",
2960
+ "ss",
2961
+ "ss.",
2962
+ "st",
2963
+ "st.",
2964
+ "stabilities",
2965
+ "stability",
2966
+ "stable",
2967
+ "stages",
2968
+ "star",
2969
+ "starting",
2970
+ "state",
2971
+ "states",
2972
+ "ste",
2973
+ "step",
2974
+ "still",
2975
+ "stoichiometric",
2976
+ "storage",
2977
+ "store",
2978
+ "stored",
2979
+ "straightforward",
2980
+ "strategies",
2981
+ "strategy",
2982
+ "strengthening",
2983
+ "stress",
2984
+ "stresses",
2985
+ "stressing",
2986
+ "stringent",
2987
+ "strong",
2988
+ "strongly",
2989
+ "structural",
2990
+ "structure",
2991
+ "structures",
2992
+ "sts",
2993
+ "studied",
2994
+ "study",
2995
+ "subsequently",
2996
+ "substituting",
2997
+ "substitution",
2998
+ "substrate",
2999
+ "substrates",
3000
+ "successful",
3001
+ "successfully",
3002
+ "such",
3003
+ "suffer",
3004
+ "suggest",
3005
+ "suitable",
3006
+ "summarized",
3007
+ "summarizes",
3008
+ "summary",
3009
+ "supercapacitors",
3010
+ "supplied",
3011
+ "supported",
3012
+ "suppressed",
3013
+ "surface",
3014
+ "surpassing",
3015
+ "surprisingly",
3016
+ "sustainability",
3017
+ "sustainable",
3018
+ "synchrotron",
3019
+ "synergistic",
3020
+ "synthesis",
3021
+ "synthesize",
3022
+ "synthesized",
3023
+ "synthesizing",
3024
+ "system",
3025
+ "systematically",
3026
+ "systems",
3027
+ "s\u2019s",
3028
+ "s\u22121",
3029
+ "t",
3030
+ "t's",
3031
+ "t.",
3032
+ "t.%",
3033
+ "ta",
3034
+ "tal",
3035
+ "tar",
3036
+ "targets",
3037
+ "tch",
3038
+ "td.",
3039
+ "technique",
3040
+ "techno",
3041
+ "technologies",
3042
+ "technology",
3043
+ "ted",
3044
+ "tem",
3045
+ "temperature",
3046
+ "temperatures",
3047
+ "ten",
3048
+ "tenn",
3049
+ "tenn.",
3050
+ "tep",
3051
+ "ter",
3052
+ "term",
3053
+ "tes",
3054
+ "than",
3055
+ "that",
3056
+ "that's",
3057
+ "that\u2019s",
3058
+ "the",
3059
+ "their",
3060
+ "them",
3061
+ "then",
3062
+ "theoretic",
3063
+ "theoretical",
3064
+ "theoretically",
3065
+ "theory",
3066
+ "there",
3067
+ "there's",
3068
+ "thereby",
3069
+ "therefore",
3070
+ "there\u2019s",
3071
+ "thermal",
3072
+ "thermodynamic",
3073
+ "thermodynamics",
3074
+ "thermogravimetric",
3075
+ "these",
3076
+ "they",
3077
+ "this",
3078
+ "this's",
3079
+ "this\u2019s",
3080
+ "those",
3081
+ "though",
3082
+ "thousands",
3083
+ "three",
3084
+ "through",
3085
+ "throughput",
3086
+ "ths",
3087
+ "thus",
3088
+ "ti",
3089
+ "ti0.5zr0.5(mn1",
3090
+ "ti0.75zr0.25)1.05mn0.8crtm0.2",
3091
+ "ti1.0zr1.0fe1.0mn1.0cr1.0v1.0",
3092
+ "ti1.0zr1.0fe1.0mn1.0cr1.5v0.5",
3093
+ "ti1.0zr1.0fe1.0mn1.5cr1.0v0.5",
3094
+ "ti1.0zr1.0fe1.5mn1.0cr1.0v0.5",
3095
+ "ti32.5v27.5zr7.5nb32.5",
3096
+ "ti32.5v27.5zr7.5nb32.5)0.91ni0.09",
3097
+ "tic",
3098
+ "tifeh2",
3099
+ "time",
3100
+ "times",
3101
+ "timo",
3102
+ "tiv2zrcrmnfeni",
3103
+ "tivcrnb",
3104
+ "tivzrnb",
3105
+ "tizrmomnfeni",
3106
+ "tizrwmnfeni",
3107
+ "tizrxmnfeni",
3108
+ "tly",
3109
+ "tm",
3110
+ "to",
3111
+ "tolerance",
3112
+ "tom",
3113
+ "tons",
3114
+ "tools",
3115
+ "tor",
3116
+ "torsion",
3117
+ "totally",
3118
+ "towards",
3119
+ "tra",
3120
+ "trace",
3121
+ "tradeoff",
3122
+ "traditional",
3123
+ "transfer",
3124
+ "transformation",
3125
+ "transformed",
3126
+ "transition",
3127
+ "transmitting",
3128
+ "transport",
3129
+ "transportation",
3130
+ "trapped",
3131
+ "treatment",
3132
+ "tree",
3133
+ "tremendous",
3134
+ "trend",
3135
+ "trends",
3136
+ "trials",
3137
+ "tritiated",
3138
+ "tritium",
3139
+ "try",
3140
+ "tsinghua",
3141
+ "tunable",
3142
+ "tuned",
3143
+ "tus",
3144
+ "twenty",
3145
+ "twins",
3146
+ "two",
3147
+ "type",
3148
+ "types",
3149
+ "t\u2019s",
3150
+ "u",
3151
+ "u.",
3152
+ "ual",
3153
+ "uce",
3154
+ "uch",
3155
+ "ude",
3156
+ "udy",
3157
+ "uel",
3158
+ "ues",
3159
+ "uff",
3160
+ "ug.",
3161
+ "ugh",
3162
+ "uid",
3163
+ "uke",
3164
+ "ul.",
3165
+ "uld",
3166
+ "ulk",
3167
+ "ull",
3168
+ "ult",
3169
+ "ultrahigh",
3170
+ "ultrasonic",
3171
+ "un.",
3172
+ "und",
3173
+ "under",
3174
+ "underlying",
3175
+ "underscores",
3176
+ "understanding",
3177
+ "unfavorable",
3178
+ "uniformity",
3179
+ "uniformly",
3180
+ "unique",
3181
+ "units",
3182
+ "universal",
3183
+ "university",
3184
+ "unlimited",
3185
+ "unt",
3186
+ "up",
3187
+ "uptake",
3188
+ "ure",
3189
+ "urgently",
3190
+ "urs",
3191
+ "us",
3192
+ "use",
3193
+ "used",
3194
+ "using",
3195
+ "uss",
3196
+ "ust",
3197
+ "usually",
3198
+ "ute",
3199
+ "uth",
3200
+ "uts",
3201
+ "v",
3202
+ "v.",
3203
+ "v.s",
3204
+ "v.s.",
3205
+ "v.v",
3206
+ "v1.0",
3207
+ "v_v",
3208
+ "va",
3209
+ "va.",
3210
+ "vacancies",
3211
+ "vacancy",
3212
+ "val",
3213
+ "valence",
3214
+ "valuable",
3215
+ "value",
3216
+ "values",
3217
+ "variety",
3218
+ "various",
3219
+ "vastly",
3220
+ "vch",
3221
+ "ve",
3222
+ "vec=",
3223
+ "vector",
3224
+ "ved",
3225
+ "vehicles",
3226
+ "vel",
3227
+ "ven",
3228
+ "ver",
3229
+ "verified",
3230
+ "versatile",
3231
+ "versatility",
3232
+ "ves",
3233
+ "via",
3234
+ "vicinity",
3235
+ "view",
3236
+ "vil",
3237
+ "vin",
3238
+ "visible",
3239
+ "vnbcrmomn",
3240
+ "volumetric",
3241
+ "vs",
3242
+ "vs.",
3243
+ "w",
3244
+ "w's",
3245
+ "w.",
3246
+ "w/o",
3247
+ "was",
3248
+ "wash",
3249
+ "wash.",
3250
+ "waste",
3251
+ "wastewater",
3252
+ "water",
3253
+ "we",
3254
+ "wear",
3255
+ "wed",
3256
+ "well",
3257
+ "wer",
3258
+ "were",
3259
+ "wh",
3260
+ "what",
3261
+ "what's",
3262
+ "what\u2019s",
3263
+ "when",
3264
+ "when's",
3265
+ "when\u2019s",
3266
+ "where",
3267
+ "where's",
3268
+ "where\u2019s",
3269
+ "which",
3270
+ "while",
3271
+ "who",
3272
+ "who's",
3273
+ "whole",
3274
+ "whose",
3275
+ "who\u2019s",
3276
+ "why",
3277
+ "why's",
3278
+ "why\u2019s",
3279
+ "wide",
3280
+ "widely",
3281
+ "wiley",
3282
+ "will",
3283
+ "wire",
3284
+ "wis",
3285
+ "wis.",
3286
+ "with",
3287
+ "within",
3288
+ "without",
3289
+ "wo",
3290
+ "work",
3291
+ "would",
3292
+ "wt",
3293
+ "wt%",
3294
+ "wth",
3295
+ "w\u2019s",
3296
+ "x",
3297
+ "x'",
3298
+ "x'x",
3299
+ "x'xxxx",
3300
+ "x.",
3301
+ "x.X",
3302
+ "x.d",
3303
+ "x.x",
3304
+ "x.x.",
3305
+ "x/x",
3306
+ "xD",
3307
+ "xDD",
3308
+ "xFex)Cr1",
3309
+ "xMox",
3310
+ "xNix",
3311
+ "xX",
3312
+ "xXX",
3313
+ "xXx",
3314
+ "xXx-d",
3315
+ "xXxx",
3316
+ "xXxx)Xxd",
3317
+ "xX\u00b7xxx\u2212d",
3318
+ "x_X",
3319
+ "x_d",
3320
+ "x_x",
3321
+ "xd",
3322
+ "xd.d",
3323
+ "xdd",
3324
+ "xed",
3325
+ "xfex)cr1",
3326
+ "xmox",
3327
+ "xnix",
3328
+ "xrd",
3329
+ "xx",
3330
+ "xx%",
3331
+ "xx'",
3332
+ "xx'x",
3333
+ "xx'xx",
3334
+ "xx(xx",
3335
+ "xx-/xxxx",
3336
+ "xx-d",
3337
+ "xx.",
3338
+ "xx.%",
3339
+ "xxd",
3340
+ "xxd.d",
3341
+ "xxd.dd(xxxx)d.dd",
3342
+ "xxd.ddxxd.dd)d.ddxxd.dxxxxd.d",
3343
+ "xxd.dxxd.d(xxd",
3344
+ "xxd.dxxd.dxxd.dxxd.dxxd.dxd.d",
3345
+ "xxdd.dxdd.dxxd.dxxdd.d",
3346
+ "xxdd.dxdd.dxxd.dxxdd.d)d.ddxxd.dd",
3347
+ "xxx",
3348
+ "xxx'x",
3349
+ "xxx(xxxx)ddd\u2212x",
3350
+ "xxx)-xxxx",
3351
+ "xxx-d",
3352
+ "xxx.",
3353
+ "xxx/xx",
3354
+ "xxx=",
3355
+ "xxx@xx",
3356
+ "xxx@xxxx",
3357
+ "xxxd",
3358
+ "xxxdxxxx",
3359
+ "xxxx",
3360
+ "xxxx'",
3361
+ "xxxx'x",
3362
+ "xxxx(x",
3363
+ "xxxx)xxd",
3364
+ "xxxx+xxxx",
3365
+ "xxxx.",
3366
+ "xxxxd",
3367
+ "xxxxdxd",
3368
+ "xxxx\u2019",
3369
+ "xxxx\u2019x",
3370
+ "xxx\u2019x",
3371
+ "xxx\u2212d",
3372
+ "xx\u00b7xxx\u2212d",
3373
+ "xx\u00bcd.d",
3374
+ "xx\u00bcddd",
3375
+ "xx\u2019",
3376
+ "xx\u2019x",
3377
+ "xx\u2019xx",
3378
+ "xx\u2212d",
3379
+ "x\u00b7x\u2212d\u00b7xxx\u2212d",
3380
+ "x\u2019",
3381
+ "x\u2019x",
3382
+ "x\u2019xxxx",
3383
+ "x\u2212d",
3384
+ "x\ufe35x",
3385
+ "y",
3386
+ "y'",
3387
+ "y's",
3388
+ "y.",
3389
+ "yal",
3390
+ "years",
3391
+ "yield",
3392
+ "you",
3393
+ "youke",
3394
+ "ype",
3395
+ "yst",
3396
+ "yte",
3397
+ "y\u2019",
3398
+ "y\u2019s",
3399
+ "z",
3400
+ "z.",
3401
+ "zed",
3402
+ "zeolites",
3403
+ "zero",
3404
+ "zes",
3405
+ "zr",
3406
+ "zrh2",
3407
+ "zrni",
3408
+ "zrni2",
3409
+ "|",
3410
+ "}",
3411
+ "\u00a0",
3412
+ "\u00a9",
3413
+ "\u00ac",
3414
+ "\u00ac_\u00ac",
3415
+ "\u00af",
3416
+ "\u00af\\(x)/\u00af",
3417
+ "\u00af\\(\u30c4)/\u00af",
3418
+ "\u00b0",
3419
+ "\u00b0C.",
3420
+ "\u00b0F.",
3421
+ "\u00b0K.",
3422
+ "\u00b0X.",
3423
+ "\u00b0c.",
3424
+ "\u00b0f.",
3425
+ "\u00b0k.",
3426
+ "\u00b0x.",
3427
+ "\u00c2",
3428
+ "\u00e2",
3429
+ "\u00e2\u02c6\u00bc178",
3430
+ "\u00e2\u02c6\u00bc277",
3431
+ "\u00e2\u02c6\u00bc5.5",
3432
+ "\u00e4",
3433
+ "\u00e4.",
3434
+ "\u00f6",
3435
+ "\u00f6.",
3436
+ "\u00fc",
3437
+ "\u00fc.",
3438
+ "\u03a9",
3439
+ "\u03c9",
3440
+ "\u0ca0",
3441
+ "\u0ca0_\u0ca0",
3442
+ "\u0ca0\ufe35\u0ca0",
3443
+ "\u200b",
3444
+ "\u200b+",
3445
+ "\u200b0.5",
3446
+ "\u200b20.0",
3447
+ "\u200bH2SO4",
3448
+ "\u200bK",
3449
+ "\u200bM",
3450
+ "\u200bX",
3451
+ "\u200bXdXXd",
3452
+ "\u200bcm2",
3453
+ "\u200bcm\u22122",
3454
+ "\u200bd.d",
3455
+ "\u200bdd.d",
3456
+ "\u200bh2so4",
3457
+ "\u200bk",
3458
+ "\u200bm",
3459
+ "\u200bmA",
3460
+ "\u200bmV",
3461
+ "\u200bma",
3462
+ "\u200bmv",
3463
+ "\u200bs\u22121",
3464
+ "\u200bx",
3465
+ "\u200bxX",
3466
+ "\u200bxdxxd",
3467
+ "\u200bxx",
3468
+ "\u200bxxd",
3469
+ "\u200bxx\u2212d",
3470
+ "\u200bx\u2212d",
3471
+ "\u200b\u00d7",
3472
+ "\u2013",
3473
+ "\u2014",
3474
+ "\u2018",
3475
+ "\u2018S",
3476
+ "\u2018X",
3477
+ "\u2018s",
3478
+ "\u2018x",
3479
+ "\u2019",
3480
+ "\u2019-(",
3481
+ "\u2019-)",
3482
+ "\u2019Cause",
3483
+ "\u2019Cos",
3484
+ "\u2019Coz",
3485
+ "\u2019Cuz",
3486
+ "\u2019S",
3487
+ "\u2019X",
3488
+ "\u2019Xxx",
3489
+ "\u2019Xxxxx",
3490
+ "\u2019am",
3491
+ "\u2019bout",
3492
+ "\u2019cause",
3493
+ "\u2019cos",
3494
+ "\u2019coz",
3495
+ "\u2019cuz",
3496
+ "\u2019d",
3497
+ "\u2019em",
3498
+ "\u2019ll",
3499
+ "\u2019m",
3500
+ "\u2019nuff",
3501
+ "\u2019re",
3502
+ "\u2019s",
3503
+ "\u2019ve",
3504
+ "\u2019x",
3505
+ "\u2019xx",
3506
+ "\u2019xxx",
3507
+ "\u2019xxxx",
3508
+ "\u2019y",
3509
+ "\u2019\u2019",
3510
+ "\u201c",
3511
+ "\u201d",
3512
+ "\u2192",
3513
+ "\u2206",
3514
+ "\u2206H",
3515
+ "\u2206S",
3516
+ "\u2206X",
3517
+ "\u2206h",
3518
+ "\u2206s",
3519
+ "\u2206x",
3520
+ "\u223c",
3521
+ "\u223c1",
3522
+ "\u223c107.8",
3523
+ "\u223c109.3",
3524
+ "\u223cd",
3525
+ "\u223cddd.d",
3526
+ "\u2501",
3527
+ "\u253b",
3528
+ "\u253b\u2501\u253b",
3529
+ "\u256f",
3530
+ "\u25a1",
3531
+ "\ufe35",
3532
+ "\uff09"
3533
+ ]
vocab/vectors ADDED
Binary file (128 Bytes). View file
 
vocab/vectors.cfg ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "mode":"default"
3
+ }