Update spaCy pipeline
Browse files- .gitattributes +2 -0
- README.md +56 -0
- config.cfg +145 -0
- en_pipeline-any-py3-none-any.whl +3 -0
- meta.json +66 -0
- ner/cfg +13 -0
- ner/model +0 -0
- ner/moves +1 -0
- tokenizer +3 -0
- transformer/cfg +3 -0
- transformer/model +3 -0
- vocab/key2row +1 -0
- vocab/lookups.bin +3 -0
- vocab/strings.json +3953 -0
- vocab/vectors +0 -0
- vocab/vectors.cfg +3 -0
.gitattributes
CHANGED
|
@@ -32,3 +32,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
| 32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
en_pipeline-any-py3-none-any.whl filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
transformer/model filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- spacy
|
| 4 |
+
- token-classification
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
model-index:
|
| 8 |
+
- name: en_pipeline
|
| 9 |
+
results:
|
| 10 |
+
- task:
|
| 11 |
+
name: NER
|
| 12 |
+
type: token-classification
|
| 13 |
+
metrics:
|
| 14 |
+
- name: NER Precision
|
| 15 |
+
type: precision
|
| 16 |
+
value: 0.8416666667
|
| 17 |
+
- name: NER Recall
|
| 18 |
+
type: recall
|
| 19 |
+
value: 0.808
|
| 20 |
+
- name: NER F Score
|
| 21 |
+
type: f_score
|
| 22 |
+
value: 0.8244897959
|
| 23 |
+
---
|
| 24 |
+
| Feature | Description |
|
| 25 |
+
| --- | --- |
|
| 26 |
+
| **Name** | `en_pipeline` |
|
| 27 |
+
| **Version** | `0.0.0` |
|
| 28 |
+
| **spaCy** | `>=3.4.4,<3.5.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 (3 labels for 1 components)</summary>
|
| 41 |
+
|
| 42 |
+
| Component | Labels |
|
| 43 |
+
| --- | --- |
|
| 44 |
+
| **`ner`** | `Cryptocurrency`, `ORG`, `PER` |
|
| 45 |
+
|
| 46 |
+
</details>
|
| 47 |
+
|
| 48 |
+
### Accuracy
|
| 49 |
+
|
| 50 |
+
| Type | Score |
|
| 51 |
+
| --- | --- |
|
| 52 |
+
| `ENTS_F` | 82.45 |
|
| 53 |
+
| `ENTS_P` | 84.17 |
|
| 54 |
+
| `ENTS_R` | 80.80 |
|
| 55 |
+
| `TRANSFORMER_LOSS` | 727.79 |
|
| 56 |
+
| `NER_LOSS` | 1327.85 |
|
config.cfg
ADDED
|
@@ -0,0 +1,145 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[paths]
|
| 2 |
+
train = "./train.spacy"
|
| 3 |
+
dev = "./test.spacy"
|
| 4 |
+
vectors = null
|
| 5 |
+
init_tok2vec = null
|
| 6 |
+
|
| 7 |
+
[system]
|
| 8 |
+
gpu_allocator = "pytorch"
|
| 9 |
+
seed = 0
|
| 10 |
+
|
| 11 |
+
[nlp]
|
| 12 |
+
lang = "en"
|
| 13 |
+
pipeline = ["transformer","ner"]
|
| 14 |
+
batch_size = 128
|
| 15 |
+
disabled = []
|
| 16 |
+
before_creation = null
|
| 17 |
+
after_creation = null
|
| 18 |
+
after_pipeline_creation = null
|
| 19 |
+
tokenizer = {"@tokenizers":"spacy.Tokenizer.v1"}
|
| 20 |
+
|
| 21 |
+
[components]
|
| 22 |
+
|
| 23 |
+
[components.ner]
|
| 24 |
+
factory = "ner"
|
| 25 |
+
incorrect_spans_key = null
|
| 26 |
+
moves = null
|
| 27 |
+
scorer = {"@scorers":"spacy.ner_scorer.v1"}
|
| 28 |
+
update_with_oracle_cut_size = 100
|
| 29 |
+
|
| 30 |
+
[components.ner.model]
|
| 31 |
+
@architectures = "spacy.TransitionBasedParser.v2"
|
| 32 |
+
state_type = "ner"
|
| 33 |
+
extra_state_tokens = false
|
| 34 |
+
hidden_width = 64
|
| 35 |
+
maxout_pieces = 2
|
| 36 |
+
use_upper = false
|
| 37 |
+
nO = null
|
| 38 |
+
|
| 39 |
+
[components.ner.model.tok2vec]
|
| 40 |
+
@architectures = "spacy-transformers.TransformerListener.v1"
|
| 41 |
+
grad_factor = 1.0
|
| 42 |
+
pooling = {"@layers":"reduce_mean.v1"}
|
| 43 |
+
upstream = "*"
|
| 44 |
+
|
| 45 |
+
[components.transformer]
|
| 46 |
+
factory = "transformer"
|
| 47 |
+
max_batch_items = 4096
|
| 48 |
+
set_extra_annotations = {"@annotation_setters":"spacy-transformers.null_annotation_setter.v1"}
|
| 49 |
+
|
| 50 |
+
[components.transformer.model]
|
| 51 |
+
@architectures = "spacy-transformers.TransformerModel.v3"
|
| 52 |
+
name = "roberta-base"
|
| 53 |
+
mixed_precision = false
|
| 54 |
+
|
| 55 |
+
[components.transformer.model.get_spans]
|
| 56 |
+
@span_getters = "spacy-transformers.strided_spans.v1"
|
| 57 |
+
window = 128
|
| 58 |
+
stride = 96
|
| 59 |
+
|
| 60 |
+
[components.transformer.model.grad_scaler_config]
|
| 61 |
+
|
| 62 |
+
[components.transformer.model.tokenizer_config]
|
| 63 |
+
use_fast = true
|
| 64 |
+
|
| 65 |
+
[components.transformer.model.transformer_config]
|
| 66 |
+
|
| 67 |
+
[corpora]
|
| 68 |
+
|
| 69 |
+
[corpora.dev]
|
| 70 |
+
@readers = "spacy.Corpus.v1"
|
| 71 |
+
path = ${paths.dev}
|
| 72 |
+
max_length = 0
|
| 73 |
+
gold_preproc = false
|
| 74 |
+
limit = 0
|
| 75 |
+
augmenter = null
|
| 76 |
+
|
| 77 |
+
[corpora.train]
|
| 78 |
+
@readers = "spacy.Corpus.v1"
|
| 79 |
+
path = ${paths.train}
|
| 80 |
+
max_length = 0
|
| 81 |
+
gold_preproc = false
|
| 82 |
+
limit = 0
|
| 83 |
+
augmenter = null
|
| 84 |
+
|
| 85 |
+
[training]
|
| 86 |
+
accumulate_gradient = 3
|
| 87 |
+
dev_corpus = "corpora.dev"
|
| 88 |
+
train_corpus = "corpora.train"
|
| 89 |
+
seed = ${system.seed}
|
| 90 |
+
gpu_allocator = ${system.gpu_allocator}
|
| 91 |
+
dropout = 0.1
|
| 92 |
+
patience = 1600
|
| 93 |
+
max_epochs = 0
|
| 94 |
+
max_steps = 20000
|
| 95 |
+
eval_frequency = 200
|
| 96 |
+
frozen_components = []
|
| 97 |
+
annotating_components = []
|
| 98 |
+
before_to_disk = null
|
| 99 |
+
|
| 100 |
+
[training.batcher]
|
| 101 |
+
@batchers = "spacy.batch_by_padded.v1"
|
| 102 |
+
discard_oversize = true
|
| 103 |
+
size = 2000
|
| 104 |
+
buffer = 256
|
| 105 |
+
get_length = null
|
| 106 |
+
|
| 107 |
+
[training.logger]
|
| 108 |
+
@loggers = "spacy.ConsoleLogger.v1"
|
| 109 |
+
progress_bar = false
|
| 110 |
+
|
| 111 |
+
[training.optimizer]
|
| 112 |
+
@optimizers = "Adam.v1"
|
| 113 |
+
beta1 = 0.9
|
| 114 |
+
beta2 = 0.999
|
| 115 |
+
L2_is_weight_decay = true
|
| 116 |
+
L2 = 0.01
|
| 117 |
+
grad_clip = 1.0
|
| 118 |
+
use_averages = false
|
| 119 |
+
eps = 0.00000001
|
| 120 |
+
|
| 121 |
+
[training.optimizer.learn_rate]
|
| 122 |
+
@schedules = "warmup_linear.v1"
|
| 123 |
+
warmup_steps = 250
|
| 124 |
+
total_steps = 20000
|
| 125 |
+
initial_rate = 0.00005
|
| 126 |
+
|
| 127 |
+
[training.score_weights]
|
| 128 |
+
ents_f = 1.0
|
| 129 |
+
ents_p = 0.0
|
| 130 |
+
ents_r = 0.0
|
| 131 |
+
ents_per_type = null
|
| 132 |
+
|
| 133 |
+
[pretraining]
|
| 134 |
+
|
| 135 |
+
[initialize]
|
| 136 |
+
vectors = ${paths.vectors}
|
| 137 |
+
init_tok2vec = ${paths.init_tok2vec}
|
| 138 |
+
vocab_data = null
|
| 139 |
+
lookups = null
|
| 140 |
+
before_init = null
|
| 141 |
+
after_init = null
|
| 142 |
+
|
| 143 |
+
[initialize.components]
|
| 144 |
+
|
| 145 |
+
[initialize.tokenizer]
|
en_pipeline-any-py3-none-any.whl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9548e69e587498934bfee302e1ebcdcdafcc3dd2303a859d0278115cf69e5175
|
| 3 |
+
size 425499843
|
meta.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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.4.4,<3.5.0",
|
| 11 |
+
"spacy_git_version":"Unknown",
|
| 12 |
+
"vectors":{
|
| 13 |
+
"width":0,
|
| 14 |
+
"vectors":0,
|
| 15 |
+
"keys":0,
|
| 16 |
+
"name":null
|
| 17 |
+
},
|
| 18 |
+
"labels":{
|
| 19 |
+
"transformer":[
|
| 20 |
+
|
| 21 |
+
],
|
| 22 |
+
"ner":[
|
| 23 |
+
"Cryptocurrency",
|
| 24 |
+
"ORG",
|
| 25 |
+
"PER"
|
| 26 |
+
]
|
| 27 |
+
},
|
| 28 |
+
"pipeline":[
|
| 29 |
+
"transformer",
|
| 30 |
+
"ner"
|
| 31 |
+
],
|
| 32 |
+
"components":[
|
| 33 |
+
"transformer",
|
| 34 |
+
"ner"
|
| 35 |
+
],
|
| 36 |
+
"disabled":[
|
| 37 |
+
|
| 38 |
+
],
|
| 39 |
+
"performance":{
|
| 40 |
+
"ents_f":0.8244897959,
|
| 41 |
+
"ents_p":0.8416666667,
|
| 42 |
+
"ents_r":0.808,
|
| 43 |
+
"ents_per_type":{
|
| 44 |
+
"ORG":{
|
| 45 |
+
"p":0.6666666667,
|
| 46 |
+
"r":0.4375,
|
| 47 |
+
"f":0.5283018868
|
| 48 |
+
},
|
| 49 |
+
"Cryptocurrency":{
|
| 50 |
+
"p":0.8863636364,
|
| 51 |
+
"r":0.9512195122,
|
| 52 |
+
"f":0.9176470588
|
| 53 |
+
},
|
| 54 |
+
"PER":{
|
| 55 |
+
"p":0.8181818182,
|
| 56 |
+
"r":0.8181818182,
|
| 57 |
+
"f":0.8181818182
|
| 58 |
+
}
|
| 59 |
+
},
|
| 60 |
+
"transformer_loss":7.2778955509,
|
| 61 |
+
"ner_loss":13.2785245254
|
| 62 |
+
},
|
| 63 |
+
"requirements":[
|
| 64 |
+
"spacy-transformers>=1.2.1,<1.3.0"
|
| 65 |
+
]
|
| 66 |
+
}
|
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 (220 kB). View file
|
|
|
ner/moves
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
��moves��{"0":{},"1":{"ORG":144,"Cryptocurrency":95,"PER":81},"2":{"ORG":144,"Cryptocurrency":95,"PER":81},"3":{"ORG":144,"Cryptocurrency":95,"PER":81},"4":{"ORG":144,"Cryptocurrency":95,"PER":81,"":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�2y…$|……$|,$|:$|;$|\!$|\?$|¿$|؟$|¡$|\($|\)$|\[$|\]$|\{$|\}$|<$|>$|_$|#$|\*$|&$|。$|?$|!$|,$|、$|;$|:$|~$|·$|।$|،$|۔$|؛$|٪$|\.\.+$|…$|\'$|"$|”$|“$|`$|‘$|´$|’$|‚$|,$|„$|»$|«$|「$|」$|『$|』$|($|)$|〔$|〕$|【$|】$|《$|》$|〈$|〉$|[\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:70e09321bc2ffb7f34d96cb0c028bee0d6ff04528ac7d61a8e11dce7751c3419
|
| 3 |
+
size 502030690
|
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,3953 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
"\t",
|
| 3 |
+
"\n",
|
| 4 |
+
" ",
|
| 5 |
+
" ",
|
| 6 |
+
"!",
|
| 7 |
+
"\"",
|
| 8 |
+
"#",
|
| 9 |
+
"$",
|
| 10 |
+
"%",
|
| 11 |
+
"&",
|
| 12 |
+
"'",
|
| 13 |
+
"''",
|
| 14 |
+
"'-(",
|
| 15 |
+
"'-)",
|
| 16 |
+
"'Altcoin",
|
| 17 |
+
"'Big",
|
| 18 |
+
"'Cause",
|
| 19 |
+
"'Cos",
|
| 20 |
+
"'Coz",
|
| 21 |
+
"'Cuz",
|
| 22 |
+
"'Hopium",
|
| 23 |
+
"'It",
|
| 24 |
+
"'Optimistic",
|
| 25 |
+
"'S",
|
| 26 |
+
"'X",
|
| 27 |
+
"'Xx",
|
| 28 |
+
"'Xxx",
|
| 29 |
+
"'Xxxxx",
|
| 30 |
+
"'altcoin",
|
| 31 |
+
"'am",
|
| 32 |
+
"'big",
|
| 33 |
+
"'bout",
|
| 34 |
+
"'cause",
|
| 35 |
+
"'cos",
|
| 36 |
+
"'coz",
|
| 37 |
+
"'cuz",
|
| 38 |
+
"'d",
|
| 39 |
+
"'em",
|
| 40 |
+
"'final",
|
| 41 |
+
"'hopium",
|
| 42 |
+
"'it",
|
| 43 |
+
"'itch",
|
| 44 |
+
"'ll",
|
| 45 |
+
"'m",
|
| 46 |
+
"'nuff",
|
| 47 |
+
"'optimistic",
|
| 48 |
+
"'re",
|
| 49 |
+
"'s",
|
| 50 |
+
"'uncertainty",
|
| 51 |
+
"'ve",
|
| 52 |
+
"'x",
|
| 53 |
+
"'xx",
|
| 54 |
+
"'xxx",
|
| 55 |
+
"'xxxx",
|
| 56 |
+
"'y",
|
| 57 |
+
"(",
|
| 58 |
+
"(((",
|
| 59 |
+
"(*>",
|
| 60 |
+
"(*_*)",
|
| 61 |
+
"(-8",
|
| 62 |
+
"(-:",
|
| 63 |
+
"(-;",
|
| 64 |
+
"(-_-)",
|
| 65 |
+
"(-d",
|
| 66 |
+
"(._.)",
|
| 67 |
+
"(:",
|
| 68 |
+
"(;",
|
| 69 |
+
"(=",
|
| 70 |
+
"(>_<)",
|
| 71 |
+
"(^_^)",
|
| 72 |
+
"(o:",
|
| 73 |
+
"(x:",
|
| 74 |
+
"(x_x)",
|
| 75 |
+
"(\u00ac_\u00ac)",
|
| 76 |
+
"(\u0ca0_\u0ca0)",
|
| 77 |
+
"(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b",
|
| 78 |
+
")",
|
| 79 |
+
")))",
|
| 80 |
+
")-:",
|
| 81 |
+
")/\u00af",
|
| 82 |
+
"):",
|
| 83 |
+
"*",
|
| 84 |
+
"+",
|
| 85 |
+
",",
|
| 86 |
+
"-",
|
| 87 |
+
"-((",
|
| 88 |
+
"-))",
|
| 89 |
+
"-/",
|
| 90 |
+
"-0",
|
| 91 |
+
"-3",
|
| 92 |
+
"-8",
|
| 93 |
+
"-D",
|
| 94 |
+
"-O",
|
| 95 |
+
"-P",
|
| 96 |
+
"-X",
|
| 97 |
+
"-X-",
|
| 98 |
+
"-_-",
|
| 99 |
+
"-__-",
|
| 100 |
+
"-d",
|
| 101 |
+
"-o",
|
| 102 |
+
"-p",
|
| 103 |
+
"-x",
|
| 104 |
+
"-x-",
|
| 105 |
+
"-|",
|
| 106 |
+
".",
|
| 107 |
+
"...",
|
| 108 |
+
".30",
|
| 109 |
+
".5K",
|
| 110 |
+
".5k",
|
| 111 |
+
".7k",
|
| 112 |
+
".C.",
|
| 113 |
+
".D.",
|
| 114 |
+
".E.",
|
| 115 |
+
".G.",
|
| 116 |
+
".H.",
|
| 117 |
+
".J.",
|
| 118 |
+
".M.",
|
| 119 |
+
".S.",
|
| 120 |
+
".Swoosh",
|
| 121 |
+
".Xxxxx",
|
| 122 |
+
".Y.",
|
| 123 |
+
"._.",
|
| 124 |
+
".e.",
|
| 125 |
+
".g.",
|
| 126 |
+
".io",
|
| 127 |
+
".m.",
|
| 128 |
+
".s.",
|
| 129 |
+
".swoosh",
|
| 130 |
+
".xxxx",
|
| 131 |
+
"/",
|
| 132 |
+
"/3",
|
| 133 |
+
"/d",
|
| 134 |
+
"/or",
|
| 135 |
+
"0",
|
| 136 |
+
"0.0",
|
| 137 |
+
"0.30",
|
| 138 |
+
"0.o",
|
| 139 |
+
"000",
|
| 140 |
+
"00M",
|
| 141 |
+
"00m",
|
| 142 |
+
"021",
|
| 143 |
+
"022",
|
| 144 |
+
"023",
|
| 145 |
+
"0_0",
|
| 146 |
+
"0_o",
|
| 147 |
+
"1",
|
| 148 |
+
"1,000",
|
| 149 |
+
"1,750,000,000",
|
| 150 |
+
"1.3",
|
| 151 |
+
"1.5",
|
| 152 |
+
"1.6",
|
| 153 |
+
"10",
|
| 154 |
+
"100",
|
| 155 |
+
"100M",
|
| 156 |
+
"100m",
|
| 157 |
+
"10a.m",
|
| 158 |
+
"10a.m.",
|
| 159 |
+
"10p.m",
|
| 160 |
+
"10p.m.",
|
| 161 |
+
"11",
|
| 162 |
+
"110",
|
| 163 |
+
"113",
|
| 164 |
+
"11a.m",
|
| 165 |
+
"11a.m.",
|
| 166 |
+
"11p.m",
|
| 167 |
+
"11p.m.",
|
| 168 |
+
"12",
|
| 169 |
+
"12a.m",
|
| 170 |
+
"12a.m.",
|
| 171 |
+
"12p.m",
|
| 172 |
+
"12p.m.",
|
| 173 |
+
"14",
|
| 174 |
+
"15",
|
| 175 |
+
"16.5K",
|
| 176 |
+
"16.5k",
|
| 177 |
+
"177",
|
| 178 |
+
"17K",
|
| 179 |
+
"17k",
|
| 180 |
+
"191",
|
| 181 |
+
"1970s",
|
| 182 |
+
"1a.m",
|
| 183 |
+
"1a.m.",
|
| 184 |
+
"1p.m",
|
| 185 |
+
"1p.m.",
|
| 186 |
+
"2",
|
| 187 |
+
"200",
|
| 188 |
+
"200,000",
|
| 189 |
+
"2000",
|
| 190 |
+
"2008-Style",
|
| 191 |
+
"2008-style",
|
| 192 |
+
"200M",
|
| 193 |
+
"200m",
|
| 194 |
+
"2021",
|
| 195 |
+
"2022",
|
| 196 |
+
"2023",
|
| 197 |
+
"20M",
|
| 198 |
+
"20m",
|
| 199 |
+
"24",
|
| 200 |
+
"25",
|
| 201 |
+
"250,000",
|
| 202 |
+
"259",
|
| 203 |
+
"27,000,000",
|
| 204 |
+
"28",
|
| 205 |
+
"2a.m",
|
| 206 |
+
"2a.m.",
|
| 207 |
+
"2p.m",
|
| 208 |
+
"2p.m.",
|
| 209 |
+
"3",
|
| 210 |
+
"3-week",
|
| 211 |
+
"3.4",
|
| 212 |
+
"3.7k",
|
| 213 |
+
"31",
|
| 214 |
+
"315,259",
|
| 215 |
+
"33",
|
| 216 |
+
"333",
|
| 217 |
+
"378",
|
| 218 |
+
"380",
|
| 219 |
+
"389,233,378",
|
| 220 |
+
"3AC",
|
| 221 |
+
"3a.m",
|
| 222 |
+
"3a.m.",
|
| 223 |
+
"3ac",
|
| 224 |
+
"3p.m",
|
| 225 |
+
"3p.m.",
|
| 226 |
+
"4",
|
| 227 |
+
"4,500",
|
| 228 |
+
"4.8",
|
| 229 |
+
"40,000",
|
| 230 |
+
"400",
|
| 231 |
+
"400M",
|
| 232 |
+
"400m",
|
| 233 |
+
"477",
|
| 234 |
+
"4a.m",
|
| 235 |
+
"4a.m.",
|
| 236 |
+
"4p.m",
|
| 237 |
+
"4p.m.",
|
| 238 |
+
"5",
|
| 239 |
+
"5,000",
|
| 240 |
+
"50",
|
| 241 |
+
"500",
|
| 242 |
+
"50K",
|
| 243 |
+
"50k",
|
| 244 |
+
"5a.m",
|
| 245 |
+
"5a.m.",
|
| 246 |
+
"5p.m",
|
| 247 |
+
"5p.m.",
|
| 248 |
+
"6",
|
| 249 |
+
"617",
|
| 250 |
+
"6a.m",
|
| 251 |
+
"6a.m.",
|
| 252 |
+
"6p.m",
|
| 253 |
+
"6p.m.",
|
| 254 |
+
"7",
|
| 255 |
+
"7,000",
|
| 256 |
+
"700,000,000,000",
|
| 257 |
+
"70s",
|
| 258 |
+
"75",
|
| 259 |
+
"7a.m",
|
| 260 |
+
"7a.m.",
|
| 261 |
+
"7p.m",
|
| 262 |
+
"7p.m.",
|
| 263 |
+
"8",
|
| 264 |
+
"8)",
|
| 265 |
+
"8-",
|
| 266 |
+
"8-)",
|
| 267 |
+
"8-D",
|
| 268 |
+
"8-d",
|
| 269 |
+
"80",
|
| 270 |
+
"87,000",
|
| 271 |
+
"8D",
|
| 272 |
+
"8a.m",
|
| 273 |
+
"8a.m.",
|
| 274 |
+
"8d",
|
| 275 |
+
"8p.m",
|
| 276 |
+
"8p.m.",
|
| 277 |
+
"9",
|
| 278 |
+
"9,000,000,000",
|
| 279 |
+
"90",
|
| 280 |
+
"900",
|
| 281 |
+
"97",
|
| 282 |
+
"9a.m",
|
| 283 |
+
"9a.m.",
|
| 284 |
+
"9p.m",
|
| 285 |
+
"9p.m.",
|
| 286 |
+
":",
|
| 287 |
+
":'(",
|
| 288 |
+
":')",
|
| 289 |
+
":'-(",
|
| 290 |
+
":'-)",
|
| 291 |
+
":(",
|
| 292 |
+
":((",
|
| 293 |
+
":(((",
|
| 294 |
+
":()",
|
| 295 |
+
":)",
|
| 296 |
+
":))",
|
| 297 |
+
":)))",
|
| 298 |
+
":*",
|
| 299 |
+
":-(",
|
| 300 |
+
":-((",
|
| 301 |
+
":-(((",
|
| 302 |
+
":-)",
|
| 303 |
+
":-))",
|
| 304 |
+
":-)))",
|
| 305 |
+
":-*",
|
| 306 |
+
":-/",
|
| 307 |
+
":-0",
|
| 308 |
+
":-3",
|
| 309 |
+
":->",
|
| 310 |
+
":-D",
|
| 311 |
+
":-O",
|
| 312 |
+
":-P",
|
| 313 |
+
":-X",
|
| 314 |
+
":-]",
|
| 315 |
+
":-d",
|
| 316 |
+
":-o",
|
| 317 |
+
":-p",
|
| 318 |
+
":-x",
|
| 319 |
+
":-|",
|
| 320 |
+
":-}",
|
| 321 |
+
":/",
|
| 322 |
+
":0",
|
| 323 |
+
":1",
|
| 324 |
+
":3",
|
| 325 |
+
":>",
|
| 326 |
+
":D",
|
| 327 |
+
":O",
|
| 328 |
+
":P",
|
| 329 |
+
":X",
|
| 330 |
+
":]",
|
| 331 |
+
":d",
|
| 332 |
+
":o",
|
| 333 |
+
":o)",
|
| 334 |
+
":p",
|
| 335 |
+
":x",
|
| 336 |
+
":x)",
|
| 337 |
+
":|",
|
| 338 |
+
":}",
|
| 339 |
+
":\u2019(",
|
| 340 |
+
":\u2019)",
|
| 341 |
+
":\u2019-(",
|
| 342 |
+
":\u2019-)",
|
| 343 |
+
";",
|
| 344 |
+
";)",
|
| 345 |
+
";-)",
|
| 346 |
+
";-D",
|
| 347 |
+
";-X",
|
| 348 |
+
";-d",
|
| 349 |
+
";D",
|
| 350 |
+
";X",
|
| 351 |
+
";_;",
|
| 352 |
+
";d",
|
| 353 |
+
"<",
|
| 354 |
+
"<.<",
|
| 355 |
+
"</3",
|
| 356 |
+
"</d",
|
| 357 |
+
"<3",
|
| 358 |
+
"<33",
|
| 359 |
+
"<333",
|
| 360 |
+
"<d",
|
| 361 |
+
"<dd",
|
| 362 |
+
"<ddd",
|
| 363 |
+
"<space>",
|
| 364 |
+
"<xxxx>",
|
| 365 |
+
"=",
|
| 366 |
+
"=(",
|
| 367 |
+
"=)",
|
| 368 |
+
"=/",
|
| 369 |
+
"=3",
|
| 370 |
+
"=D",
|
| 371 |
+
"=X",
|
| 372 |
+
"=[",
|
| 373 |
+
"=]",
|
| 374 |
+
"=d",
|
| 375 |
+
"=|",
|
| 376 |
+
">",
|
| 377 |
+
">.<",
|
| 378 |
+
">.>",
|
| 379 |
+
">:(",
|
| 380 |
+
">:o",
|
| 381 |
+
">:x",
|
| 382 |
+
"><(((*>",
|
| 383 |
+
"?",
|
| 384 |
+
"@",
|
| 385 |
+
"@_@",
|
| 386 |
+
"A",
|
| 387 |
+
"AAX",
|
| 388 |
+
"ADA",
|
| 389 |
+
"ALGO",
|
| 390 |
+
"ANYONE",
|
| 391 |
+
"AOs",
|
| 392 |
+
"ARE",
|
| 393 |
+
"ATH",
|
| 394 |
+
"ATOM",
|
| 395 |
+
"AVAX",
|
| 396 |
+
"About",
|
| 397 |
+
"Abruptly",
|
| 398 |
+
"Absorb",
|
| 399 |
+
"Accidentally",
|
| 400 |
+
"According",
|
| 401 |
+
"Accurate",
|
| 402 |
+
"Acquire",
|
| 403 |
+
"Acquisition",
|
| 404 |
+
"Activated",
|
| 405 |
+
"Additional",
|
| 406 |
+
"Address",
|
| 407 |
+
"Adidas",
|
| 408 |
+
"Adm",
|
| 409 |
+
"Adm.",
|
| 410 |
+
"Advice",
|
| 411 |
+
"Affected",
|
| 412 |
+
"After",
|
| 413 |
+
"Again",
|
| 414 |
+
"Agencies",
|
| 415 |
+
"Agency",
|
| 416 |
+
"Ago",
|
| 417 |
+
"Ai",
|
| 418 |
+
"Ak",
|
| 419 |
+
"Ak.",
|
| 420 |
+
"Ala",
|
| 421 |
+
"Ala.",
|
| 422 |
+
"Alabama",
|
| 423 |
+
"Alameda",
|
| 424 |
+
"Alaska",
|
| 425 |
+
"Alden",
|
| 426 |
+
"Alex",
|
| 427 |
+
"Algorand",
|
| 428 |
+
"All",
|
| 429 |
+
"All-Time",
|
| 430 |
+
"Allegations",
|
| 431 |
+
"Almost",
|
| 432 |
+
"Altcoin",
|
| 433 |
+
"Altcoins",
|
| 434 |
+
"Americas",
|
| 435 |
+
"Amicus",
|
| 436 |
+
"Amid",
|
| 437 |
+
"Analysis",
|
| 438 |
+
"Analyst",
|
| 439 |
+
"Analysts",
|
| 440 |
+
"Analytics",
|
| 441 |
+
"Ancient",
|
| 442 |
+
"And",
|
| 443 |
+
"Anthony",
|
| 444 |
+
"Ape",
|
| 445 |
+
"Apes",
|
| 446 |
+
"Appear",
|
| 447 |
+
"Appearance",
|
| 448 |
+
"Apr",
|
| 449 |
+
"Apr.",
|
| 450 |
+
"April",
|
| 451 |
+
"Are",
|
| 452 |
+
"Area",
|
| 453 |
+
"Argentina",
|
| 454 |
+
"Argentina\u2019s",
|
| 455 |
+
"Ariz",
|
| 456 |
+
"Ariz.",
|
| 457 |
+
"Arizona",
|
| 458 |
+
"Ark",
|
| 459 |
+
"Ark.",
|
| 460 |
+
"Arkansas",
|
| 461 |
+
"Armstrong",
|
| 462 |
+
"Army",
|
| 463 |
+
"Arrows",
|
| 464 |
+
"As",
|
| 465 |
+
"Asia",
|
| 466 |
+
"Assange",
|
| 467 |
+
"Assembling",
|
| 468 |
+
"Asset",
|
| 469 |
+
"Assets",
|
| 470 |
+
"Attack",
|
| 471 |
+
"Attention",
|
| 472 |
+
"Attorney",
|
| 473 |
+
"Aug",
|
| 474 |
+
"Aug.",
|
| 475 |
+
"August",
|
| 476 |
+
"Author",
|
| 477 |
+
"Avalanche",
|
| 478 |
+
"Avoid",
|
| 479 |
+
"Away",
|
| 480 |
+
"B",
|
| 481 |
+
"BAYC-FTX",
|
| 482 |
+
"BDC",
|
| 483 |
+
"BNB\u2019s",
|
| 484 |
+
"BONK",
|
| 485 |
+
"BTC",
|
| 486 |
+
"BULLISH",
|
| 487 |
+
"BUY",
|
| 488 |
+
"Back",
|
| 489 |
+
"Bad",
|
| 490 |
+
"Bahamas",
|
| 491 |
+
"Bahamian",
|
| 492 |
+
"Balance",
|
| 493 |
+
"Bank",
|
| 494 |
+
"Banking",
|
| 495 |
+
"Bankman",
|
| 496 |
+
"Bankman-Fried",
|
| 497 |
+
"Bankrupt",
|
| 498 |
+
"Bankruptcy",
|
| 499 |
+
"Banks",
|
| 500 |
+
"Barry",
|
| 501 |
+
"Base",
|
| 502 |
+
"Be",
|
| 503 |
+
"Beach",
|
| 504 |
+
"Bear",
|
| 505 |
+
"Bearish",
|
| 506 |
+
"Become",
|
| 507 |
+
"Becomes",
|
| 508 |
+
"Beef",
|
| 509 |
+
"Been",
|
| 510 |
+
"Before",
|
| 511 |
+
"Being",
|
| 512 |
+
"Believes",
|
| 513 |
+
"Ben",
|
| 514 |
+
"Benzema",
|
| 515 |
+
"Best",
|
| 516 |
+
"Best-Selling",
|
| 517 |
+
"Big",
|
| 518 |
+
"Bigger",
|
| 519 |
+
"Biggest",
|
| 520 |
+
"Billion",
|
| 521 |
+
"Billionaire",
|
| 522 |
+
"Binance",
|
| 523 |
+
"Binance.US\u2019s",
|
| 524 |
+
"Birthday",
|
| 525 |
+
"Bitcoin",
|
| 526 |
+
"Bitvo",
|
| 527 |
+
"Black",
|
| 528 |
+
"Blasts",
|
| 529 |
+
"Bleed",
|
| 530 |
+
"BlockFi",
|
| 531 |
+
"Blockchain",
|
| 532 |
+
"Bloomberg",
|
| 533 |
+
"Bonk",
|
| 534 |
+
"Bonkers",
|
| 535 |
+
"Boost",
|
| 536 |
+
"Bored",
|
| 537 |
+
"Bottom",
|
| 538 |
+
"Brace",
|
| 539 |
+
"Brad",
|
| 540 |
+
"Bradley",
|
| 541 |
+
"Brand",
|
| 542 |
+
"Break",
|
| 543 |
+
"Breakout",
|
| 544 |
+
"Brevan",
|
| 545 |
+
"Brian",
|
| 546 |
+
"Brief",
|
| 547 |
+
"Bring",
|
| 548 |
+
"Bros",
|
| 549 |
+
"Bros.",
|
| 550 |
+
"Bukele",
|
| 551 |
+
"Bull",
|
| 552 |
+
"Bullish",
|
| 553 |
+
"Bulls",
|
| 554 |
+
"Burns",
|
| 555 |
+
"But",
|
| 556 |
+
"Buterin",
|
| 557 |
+
"Buy",
|
| 558 |
+
"Buying",
|
| 559 |
+
"Buys",
|
| 560 |
+
"By",
|
| 561 |
+
"B\u2019s",
|
| 562 |
+
"C",
|
| 563 |
+
"C'm",
|
| 564 |
+
"C++",
|
| 565 |
+
"C.",
|
| 566 |
+
"CBDC",
|
| 567 |
+
"CEO",
|
| 568 |
+
"CEX",
|
| 569 |
+
"COO",
|
| 570 |
+
"CRO",
|
| 571 |
+
"CZ",
|
| 572 |
+
"Ca",
|
| 573 |
+
"Calif",
|
| 574 |
+
"Calif.",
|
| 575 |
+
"California",
|
| 576 |
+
"Called",
|
| 577 |
+
"Cameron",
|
| 578 |
+
"Can",
|
| 579 |
+
"Canaan",
|
| 580 |
+
"Candidate",
|
| 581 |
+
"Can\u2019",
|
| 582 |
+
"Can\u2019t",
|
| 583 |
+
"Capital",
|
| 584 |
+
"Cardano",
|
| 585 |
+
"Case",
|
| 586 |
+
"Catapult",
|
| 587 |
+
"Caught",
|
| 588 |
+
"Cause",
|
| 589 |
+
"Causing",
|
| 590 |
+
"Celsius",
|
| 591 |
+
"Celsius\u2019",
|
| 592 |
+
"Central",
|
| 593 |
+
"Chain",
|
| 594 |
+
"Chainlink",
|
| 595 |
+
"Chamath",
|
| 596 |
+
"Change",
|
| 597 |
+
"Changpeng",
|
| 598 |
+
"Charles",
|
| 599 |
+
"Charts",
|
| 600 |
+
"Circulating",
|
| 601 |
+
"Clarity",
|
| 602 |
+
"Classic",
|
| 603 |
+
"Cleansing",
|
| 604 |
+
"Client",
|
| 605 |
+
"Clients",
|
| 606 |
+
"Clog",
|
| 607 |
+
"Club",
|
| 608 |
+
"Co",
|
| 609 |
+
"Co-Founder",
|
| 610 |
+
"Co.",
|
| 611 |
+
"Coin",
|
| 612 |
+
"CoinKite",
|
| 613 |
+
"CoinShares",
|
| 614 |
+
"Coinbase",
|
| 615 |
+
"Coinbase\u2019s",
|
| 616 |
+
"Cold",
|
| 617 |
+
"Collapse",
|
| 618 |
+
"Collapsed",
|
| 619 |
+
"Colo",
|
| 620 |
+
"Colo.",
|
| 621 |
+
"Colorado",
|
| 622 |
+
"Com",
|
| 623 |
+
"Comeback",
|
| 624 |
+
"Commission",
|
| 625 |
+
"Community",
|
| 626 |
+
"Concerning",
|
| 627 |
+
"Concerns",
|
| 628 |
+
"Confidence",
|
| 629 |
+
"Confirmed",
|
| 630 |
+
"Congressman",
|
| 631 |
+
"Conn",
|
| 632 |
+
"Conn.",
|
| 633 |
+
"Connecticut",
|
| 634 |
+
"Connections",
|
| 635 |
+
"Consolidates",
|
| 636 |
+
"Conspired",
|
| 637 |
+
"Contagion",
|
| 638 |
+
"Contagion\u2019s",
|
| 639 |
+
"Continues",
|
| 640 |
+
"Contract",
|
| 641 |
+
"Control",
|
| 642 |
+
"Conversion",
|
| 643 |
+
"Core",
|
| 644 |
+
"Corp",
|
| 645 |
+
"Corp.",
|
| 646 |
+
"Corrections",
|
| 647 |
+
"Correlation",
|
| 648 |
+
"Cos",
|
| 649 |
+
"Could",
|
| 650 |
+
"Coz",
|
| 651 |
+
"Crash",
|
| 652 |
+
"Crashes",
|
| 653 |
+
"Created",
|
| 654 |
+
"Creator",
|
| 655 |
+
"Creditors",
|
| 656 |
+
"Crime",
|
| 657 |
+
"Crippled",
|
| 658 |
+
"Cristiano",
|
| 659 |
+
"Criticize",
|
| 660 |
+
"Cronos",
|
| 661 |
+
"CrossTower",
|
| 662 |
+
"Crypto",
|
| 663 |
+
"Crypto.com",
|
| 664 |
+
"CryptoCom",
|
| 665 |
+
"Cryptocurrency",
|
| 666 |
+
"Cryptos",
|
| 667 |
+
"Cuban",
|
| 668 |
+
"Cumberland",
|
| 669 |
+
"Cup",
|
| 670 |
+
"Currency",
|
| 671 |
+
"Curse",
|
| 672 |
+
"Curve",
|
| 673 |
+
"Customers",
|
| 674 |
+
"Cuts",
|
| 675 |
+
"Cuz",
|
| 676 |
+
"C\u2019m",
|
| 677 |
+
"D",
|
| 678 |
+
"D.",
|
| 679 |
+
"D.C.",
|
| 680 |
+
"DAOs",
|
| 681 |
+
"DEX",
|
| 682 |
+
"DO",
|
| 683 |
+
"DOGE",
|
| 684 |
+
"DOJ",
|
| 685 |
+
"DOT",
|
| 686 |
+
"Daily",
|
| 687 |
+
"Dare",
|
| 688 |
+
"Data",
|
| 689 |
+
"Dave",
|
| 690 |
+
"David",
|
| 691 |
+
"Days",
|
| 692 |
+
"DeFi",
|
| 693 |
+
"Deal",
|
| 694 |
+
"Deals",
|
| 695 |
+
"Debacle",
|
| 696 |
+
"Dec",
|
| 697 |
+
"Dec.",
|
| 698 |
+
"December",
|
| 699 |
+
"Decent",
|
| 700 |
+
"Decline",
|
| 701 |
+
"Dee",
|
| 702 |
+
"Deflationary",
|
| 703 |
+
"Del",
|
| 704 |
+
"Del.",
|
| 705 |
+
"Delaware",
|
| 706 |
+
"Demands",
|
| 707 |
+
"Democrats",
|
| 708 |
+
"Denies",
|
| 709 |
+
"Deposits",
|
| 710 |
+
"Deserves",
|
| 711 |
+
"Despite",
|
| 712 |
+
"Destruction",
|
| 713 |
+
"Details",
|
| 714 |
+
"Detained",
|
| 715 |
+
"Developers",
|
| 716 |
+
"Did",
|
| 717 |
+
"Didn\u2019t",
|
| 718 |
+
"Differently",
|
| 719 |
+
"Digital",
|
| 720 |
+
"Direction",
|
| 721 |
+
"Director",
|
| 722 |
+
"Disarray",
|
| 723 |
+
"District",
|
| 724 |
+
"Divergence",
|
| 725 |
+
"Diverges",
|
| 726 |
+
"Do",
|
| 727 |
+
"Does",
|
| 728 |
+
"Dogecoin",
|
| 729 |
+
"Doin",
|
| 730 |
+
"Doin'",
|
| 731 |
+
"Doin\u2019",
|
| 732 |
+
"Dollar",
|
| 733 |
+
"Don\u2019t",
|
| 734 |
+
"Doom",
|
| 735 |
+
"Dormant",
|
| 736 |
+
"Dose",
|
| 737 |
+
"Double-digit",
|
| 738 |
+
"Down",
|
| 739 |
+
"Doxed",
|
| 740 |
+
"Dozens",
|
| 741 |
+
"Dr",
|
| 742 |
+
"Dr.",
|
| 743 |
+
"Drastic",
|
| 744 |
+
"Draws",
|
| 745 |
+
"Drops",
|
| 746 |
+
"Due",
|
| 747 |
+
"Dumped",
|
| 748 |
+
"E",
|
| 749 |
+
"E.G.",
|
| 750 |
+
"E.g",
|
| 751 |
+
"E.g.",
|
| 752 |
+
"EP",
|
| 753 |
+
"ETF",
|
| 754 |
+
"ETH",
|
| 755 |
+
"Earn",
|
| 756 |
+
"Ecosystem",
|
| 757 |
+
"Eden",
|
| 758 |
+
"Edward",
|
| 759 |
+
"El",
|
| 760 |
+
"Elon",
|
| 761 |
+
"Emails",
|
| 762 |
+
"Embarrassing",
|
| 763 |
+
"Empire",
|
| 764 |
+
"Engagement",
|
| 765 |
+
"England",
|
| 766 |
+
"Ep",
|
| 767 |
+
"Ep.",
|
| 768 |
+
"Ether",
|
| 769 |
+
"Ether-Bitcoin",
|
| 770 |
+
"Ethereum",
|
| 771 |
+
"Ethereum\u2019s",
|
| 772 |
+
"Eve",
|
| 773 |
+
"Even",
|
| 774 |
+
"Evil",
|
| 775 |
+
"Exchange",
|
| 776 |
+
"Exchanges",
|
| 777 |
+
"Expect",
|
| 778 |
+
"Experience",
|
| 779 |
+
"Experiences",
|
| 780 |
+
"Experts",
|
| 781 |
+
"Explains",
|
| 782 |
+
"F",
|
| 783 |
+
"F.",
|
| 784 |
+
"FIT",
|
| 785 |
+
"FKT",
|
| 786 |
+
"FOMC",
|
| 787 |
+
"FTT",
|
| 788 |
+
"FTX",
|
| 789 |
+
"FTX-like",
|
| 790 |
+
"FTX.com",
|
| 791 |
+
"FTX\u2019s",
|
| 792 |
+
"FTs",
|
| 793 |
+
"FUD",
|
| 794 |
+
"Facing",
|
| 795 |
+
"Fade",
|
| 796 |
+
"Failed",
|
| 797 |
+
"Failure",
|
| 798 |
+
"Fake",
|
| 799 |
+
"Faking",
|
| 800 |
+
"Fallout",
|
| 801 |
+
"Falls",
|
| 802 |
+
"Feb",
|
| 803 |
+
"Feb.",
|
| 804 |
+
"February",
|
| 805 |
+
"Fed",
|
| 806 |
+
"Federal",
|
| 807 |
+
"Fee",
|
| 808 |
+
"Filing",
|
| 809 |
+
"Filings",
|
| 810 |
+
"Finance",
|
| 811 |
+
"Firm",
|
| 812 |
+
"First",
|
| 813 |
+
"Fla",
|
| 814 |
+
"Fla.",
|
| 815 |
+
"Flipped",
|
| 816 |
+
"Florida",
|
| 817 |
+
"Flying",
|
| 818 |
+
"Following",
|
| 819 |
+
"For",
|
| 820 |
+
"Force",
|
| 821 |
+
"Forecast",
|
| 822 |
+
"Foreign",
|
| 823 |
+
"Former",
|
| 824 |
+
"Forms",
|
| 825 |
+
"Forward",
|
| 826 |
+
"Founder",
|
| 827 |
+
"Fraud",
|
| 828 |
+
"Free",
|
| 829 |
+
"Freeing",
|
| 830 |
+
"Friday",
|
| 831 |
+
"Fried",
|
| 832 |
+
"From",
|
| 833 |
+
"Fronts\u2019",
|
| 834 |
+
"Ftx",
|
| 835 |
+
"Fund",
|
| 836 |
+
"Fundraising",
|
| 837 |
+
"Funds",
|
| 838 |
+
"Future",
|
| 839 |
+
"G",
|
| 840 |
+
"GBTC",
|
| 841 |
+
"GMX",
|
| 842 |
+
"GPU",
|
| 843 |
+
"Ga",
|
| 844 |
+
"Ga.",
|
| 845 |
+
"Gain",
|
| 846 |
+
"Gale",
|
| 847 |
+
"Game",
|
| 848 |
+
"Gate",
|
| 849 |
+
"Gate.io",
|
| 850 |
+
"Gen",
|
| 851 |
+
"Gen.",
|
| 852 |
+
"Genesis",
|
| 853 |
+
"Gensler-FTX",
|
| 854 |
+
"Georgia",
|
| 855 |
+
"Get",
|
| 856 |
+
"Gets",
|
| 857 |
+
"Giants",
|
| 858 |
+
"Give",
|
| 859 |
+
"Glassnode",
|
| 860 |
+
"Goes",
|
| 861 |
+
"Goin",
|
| 862 |
+
"Goin'",
|
| 863 |
+
"Goin\u2019",
|
| 864 |
+
"Gokhshtein",
|
| 865 |
+
"Gon",
|
| 866 |
+
"Got",
|
| 867 |
+
"Gov",
|
| 868 |
+
"Gov.",
|
| 869 |
+
"Government",
|
| 870 |
+
"Grabbed",
|
| 871 |
+
"Gravity",
|
| 872 |
+
"Group",
|
| 873 |
+
"Growth",
|
| 874 |
+
"Guilty",
|
| 875 |
+
"H",
|
| 876 |
+
"HIB",
|
| 877 |
+
"HIS",
|
| 878 |
+
"HOW",
|
| 879 |
+
"HUGE",
|
| 880 |
+
"Hack",
|
| 881 |
+
"Hacked",
|
| 882 |
+
"Hacker",
|
| 883 |
+
"Had",
|
| 884 |
+
"Happen",
|
| 885 |
+
"Happened",
|
| 886 |
+
"Happens",
|
| 887 |
+
"Happy",
|
| 888 |
+
"Has",
|
| 889 |
+
"Hates",
|
| 890 |
+
"Have",
|
| 891 |
+
"Havin",
|
| 892 |
+
"Havin'",
|
| 893 |
+
"Havin\u2019",
|
| 894 |
+
"He",
|
| 895 |
+
"He's",
|
| 896 |
+
"Headache",
|
| 897 |
+
"Helium",
|
| 898 |
+
"Here",
|
| 899 |
+
"Here\u2019s",
|
| 900 |
+
"He\u2019s",
|
| 901 |
+
"Highs",
|
| 902 |
+
"Hinman",
|
| 903 |
+
"His",
|
| 904 |
+
"Historic",
|
| 905 |
+
"Holders",
|
| 906 |
+
"Holds",
|
| 907 |
+
"Hong",
|
| 908 |
+
"Hopium",
|
| 909 |
+
"Horrendous",
|
| 910 |
+
"Hoskinson",
|
| 911 |
+
"Hours",
|
| 912 |
+
"House",
|
| 913 |
+
"How",
|
| 914 |
+
"How's",
|
| 915 |
+
"Howard",
|
| 916 |
+
"How\u2019s",
|
| 917 |
+
"Huge",
|
| 918 |
+
"Human",
|
| 919 |
+
"Huobi",
|
| 920 |
+
"Hurt",
|
| 921 |
+
"I",
|
| 922 |
+
"I.E.",
|
| 923 |
+
"I.e",
|
| 924 |
+
"I.e.",
|
| 925 |
+
"ISH",
|
| 926 |
+
"Ia",
|
| 927 |
+
"Ia.",
|
| 928 |
+
"Iceberg",
|
| 929 |
+
"Id",
|
| 930 |
+
"Id.",
|
| 931 |
+
"Idaho",
|
| 932 |
+
"If",
|
| 933 |
+
"Ikigai",
|
| 934 |
+
"Ill",
|
| 935 |
+
"Ill.",
|
| 936 |
+
"Illinois",
|
| 937 |
+
"Impact",
|
| 938 |
+
"Implosion\ufffc",
|
| 939 |
+
"In",
|
| 940 |
+
"Inc",
|
| 941 |
+
"Inc.",
|
| 942 |
+
"Increase",
|
| 943 |
+
"Ind",
|
| 944 |
+
"Ind.",
|
| 945 |
+
"India",
|
| 946 |
+
"Indian",
|
| 947 |
+
"Indiana",
|
| 948 |
+
"Indonesia",
|
| 949 |
+
"Industry",
|
| 950 |
+
"Infancy",
|
| 951 |
+
"Inflation",
|
| 952 |
+
"Inflows",
|
| 953 |
+
"Inspect",
|
| 954 |
+
"Intentions",
|
| 955 |
+
"Interest",
|
| 956 |
+
"International",
|
| 957 |
+
"Into",
|
| 958 |
+
"Inu",
|
| 959 |
+
"Inu-Themed",
|
| 960 |
+
"Invest",
|
| 961 |
+
"Investigation",
|
| 962 |
+
"Investment",
|
| 963 |
+
"Investor",
|
| 964 |
+
"Investors",
|
| 965 |
+
"Iowa",
|
| 966 |
+
"Is",
|
| 967 |
+
"Issues",
|
| 968 |
+
"It",
|
| 969 |
+
"It's",
|
| 970 |
+
"Its",
|
| 971 |
+
"It\u2019s",
|
| 972 |
+
"J",
|
| 973 |
+
"JAMES",
|
| 974 |
+
"JOR",
|
| 975 |
+
"Jan",
|
| 976 |
+
"Jan.",
|
| 977 |
+
"January",
|
| 978 |
+
"Japanese",
|
| 979 |
+
"Jr",
|
| 980 |
+
"Jr.",
|
| 981 |
+
"Jul",
|
| 982 |
+
"Jul.",
|
| 983 |
+
"July",
|
| 984 |
+
"Jun",
|
| 985 |
+
"Jun.",
|
| 986 |
+
"June",
|
| 987 |
+
"Juno",
|
| 988 |
+
"Just",
|
| 989 |
+
"K",
|
| 990 |
+
"K.",
|
| 991 |
+
"Kan",
|
| 992 |
+
"Kan.",
|
| 993 |
+
"Kans",
|
| 994 |
+
"Kans.",
|
| 995 |
+
"Kansas",
|
| 996 |
+
"Kentucky",
|
| 997 |
+
"Kevin",
|
| 998 |
+
"Knew",
|
| 999 |
+
"Kong",
|
| 1000 |
+
"Kraken",
|
| 1001 |
+
"Ky",
|
| 1002 |
+
"Ky.",
|
| 1003 |
+
"K\u2019s",
|
| 1004 |
+
"L",
|
| 1005 |
+
"LAVISH",
|
| 1006 |
+
"LDO",
|
| 1007 |
+
"LGO",
|
| 1008 |
+
"LTC",
|
| 1009 |
+
"LUNA",
|
| 1010 |
+
"LUNC",
|
| 1011 |
+
"La",
|
| 1012 |
+
"La.",
|
| 1013 |
+
"Largest",
|
| 1014 |
+
"Last",
|
| 1015 |
+
"Late",
|
| 1016 |
+
"Later",
|
| 1017 |
+
"Latest",
|
| 1018 |
+
"Launches",
|
| 1019 |
+
"Lawmakers",
|
| 1020 |
+
"Laws",
|
| 1021 |
+
"Layoffs",
|
| 1022 |
+
"Leaders",
|
| 1023 |
+
"Leading",
|
| 1024 |
+
"Learn",
|
| 1025 |
+
"Leaves",
|
| 1026 |
+
"Led",
|
| 1027 |
+
"Less",
|
| 1028 |
+
"Lessons",
|
| 1029 |
+
"Let",
|
| 1030 |
+
"Let's",
|
| 1031 |
+
"Let\u2019s",
|
| 1032 |
+
"Liabilities",
|
| 1033 |
+
"Lido",
|
| 1034 |
+
"Light",
|
| 1035 |
+
"Lining",
|
| 1036 |
+
"Liquid",
|
| 1037 |
+
"Liquidity",
|
| 1038 |
+
"Litecoin",
|
| 1039 |
+
"Long",
|
| 1040 |
+
"Look",
|
| 1041 |
+
"Looking",
|
| 1042 |
+
"Looks",
|
| 1043 |
+
"Loses",
|
| 1044 |
+
"Louisiana",
|
| 1045 |
+
"Love\u2019",
|
| 1046 |
+
"Lovin",
|
| 1047 |
+
"Lovin'",
|
| 1048 |
+
"Lovin\u2019",
|
| 1049 |
+
"Lows",
|
| 1050 |
+
"Ltd",
|
| 1051 |
+
"Ltd.",
|
| 1052 |
+
"Luna",
|
| 1053 |
+
"Lyn",
|
| 1054 |
+
"M",
|
| 1055 |
+
"MAJOR",
|
| 1056 |
+
"MATIC",
|
| 1057 |
+
"MES",
|
| 1058 |
+
"Ma'am",
|
| 1059 |
+
"Machine",
|
| 1060 |
+
"Macro",
|
| 1061 |
+
"Magic",
|
| 1062 |
+
"Maintain",
|
| 1063 |
+
"Major",
|
| 1064 |
+
"Make",
|
| 1065 |
+
"Make-or-Break",
|
| 1066 |
+
"Makes",
|
| 1067 |
+
"Making",
|
| 1068 |
+
"Managing",
|
| 1069 |
+
"Manchester",
|
| 1070 |
+
"Manhattan",
|
| 1071 |
+
"Mar",
|
| 1072 |
+
"Mar.",
|
| 1073 |
+
"March",
|
| 1074 |
+
"Mark",
|
| 1075 |
+
"Market",
|
| 1076 |
+
"Marketplace",
|
| 1077 |
+
"Markets",
|
| 1078 |
+
"Mass",
|
| 1079 |
+
"Mass.",
|
| 1080 |
+
"Massachusetts",
|
| 1081 |
+
"May",
|
| 1082 |
+
"Ma\u2019am",
|
| 1083 |
+
"Md",
|
| 1084 |
+
"Md.",
|
| 1085 |
+
"Means",
|
| 1086 |
+
"Meltdown",
|
| 1087 |
+
"Memecoin",
|
| 1088 |
+
"Merge",
|
| 1089 |
+
"Merten",
|
| 1090 |
+
"Mess",
|
| 1091 |
+
"Messi",
|
| 1092 |
+
"Messrs",
|
| 1093 |
+
"Messrs.",
|
| 1094 |
+
"Met",
|
| 1095 |
+
"Method",
|
| 1096 |
+
"Mich",
|
| 1097 |
+
"Mich.",
|
| 1098 |
+
"Michael",
|
| 1099 |
+
"Michel",
|
| 1100 |
+
"Michigan",
|
| 1101 |
+
"MicroStrategy",
|
| 1102 |
+
"Might",
|
| 1103 |
+
"Million",
|
| 1104 |
+
"Miners",
|
| 1105 |
+
"Minn",
|
| 1106 |
+
"Minn.",
|
| 1107 |
+
"Minnesota",
|
| 1108 |
+
"Miss",
|
| 1109 |
+
"Miss.",
|
| 1110 |
+
"Missing.",
|
| 1111 |
+
"Mississippi",
|
| 1112 |
+
"Mistake",
|
| 1113 |
+
"Mo",
|
| 1114 |
+
"Mo.",
|
| 1115 |
+
"Monday",
|
| 1116 |
+
"MoneyGram",
|
| 1117 |
+
"Mont",
|
| 1118 |
+
"Mont.",
|
| 1119 |
+
"Month",
|
| 1120 |
+
"Months",
|
| 1121 |
+
"More",
|
| 1122 |
+
"Most",
|
| 1123 |
+
"Mount",
|
| 1124 |
+
"Mounts",
|
| 1125 |
+
"Mover",
|
| 1126 |
+
"Moves",
|
| 1127 |
+
"Mr",
|
| 1128 |
+
"Mr.",
|
| 1129 |
+
"Mrs",
|
| 1130 |
+
"Mrs.",
|
| 1131 |
+
"Ms",
|
| 1132 |
+
"Ms.",
|
| 1133 |
+
"Mt",
|
| 1134 |
+
"Mt.",
|
| 1135 |
+
"Mulls",
|
| 1136 |
+
"Musk",
|
| 1137 |
+
"Must",
|
| 1138 |
+
"Mystery",
|
| 1139 |
+
"N",
|
| 1140 |
+
"N'T",
|
| 1141 |
+
"N.C.",
|
| 1142 |
+
"N.D.",
|
| 1143 |
+
"N.H.",
|
| 1144 |
+
"N.J.",
|
| 1145 |
+
"N.M.",
|
| 1146 |
+
"N.Y.",
|
| 1147 |
+
"NFT",
|
| 1148 |
+
"NFTs",
|
| 1149 |
+
"NOT",
|
| 1150 |
+
"NYT",
|
| 1151 |
+
"Near",
|
| 1152 |
+
"Nearly",
|
| 1153 |
+
"Neb",
|
| 1154 |
+
"Neb.",
|
| 1155 |
+
"Nebr",
|
| 1156 |
+
"Nebr.",
|
| 1157 |
+
"Nebraska",
|
| 1158 |
+
"Need",
|
| 1159 |
+
"Needs",
|
| 1160 |
+
"Network",
|
| 1161 |
+
"Nev",
|
| 1162 |
+
"Nev.",
|
| 1163 |
+
"Nevada",
|
| 1164 |
+
"New",
|
| 1165 |
+
"New Hampshire",
|
| 1166 |
+
"New Jersey",
|
| 1167 |
+
"New Mexico",
|
| 1168 |
+
"New York",
|
| 1169 |
+
"News",
|
| 1170 |
+
"Next",
|
| 1171 |
+
"Nicholas",
|
| 1172 |
+
"Nifty",
|
| 1173 |
+
"Nike",
|
| 1174 |
+
"Nike\u2019s",
|
| 1175 |
+
"Ninepoint",
|
| 1176 |
+
"North Carolina",
|
| 1177 |
+
"North Dakota",
|
| 1178 |
+
"Not",
|
| 1179 |
+
"Nothin",
|
| 1180 |
+
"Nothin'",
|
| 1181 |
+
"Nothing",
|
| 1182 |
+
"Nothin\u2019",
|
| 1183 |
+
"Nouriel",
|
| 1184 |
+
"Nov",
|
| 1185 |
+
"Nov.",
|
| 1186 |
+
"November",
|
| 1187 |
+
"Now",
|
| 1188 |
+
"Number",
|
| 1189 |
+
"Nuthin",
|
| 1190 |
+
"Nuthin'",
|
| 1191 |
+
"Nuthin\u2019",
|
| 1192 |
+
"O",
|
| 1193 |
+
"O'clock",
|
| 1194 |
+
"O.O",
|
| 1195 |
+
"O.o",
|
| 1196 |
+
"OGE",
|
| 1197 |
+
"OMC",
|
| 1198 |
+
"ONE",
|
| 1199 |
+
"ONK",
|
| 1200 |
+
"O_O",
|
| 1201 |
+
"O_o",
|
| 1202 |
+
"Objective",
|
| 1203 |
+
"Oct",
|
| 1204 |
+
"Oct.",
|
| 1205 |
+
"October",
|
| 1206 |
+
"Of",
|
| 1207 |
+
"Off",
|
| 1208 |
+
"Offers",
|
| 1209 |
+
"Office",
|
| 1210 |
+
"Offload",
|
| 1211 |
+
"Okla",
|
| 1212 |
+
"Okla.",
|
| 1213 |
+
"Oklahoma",
|
| 1214 |
+
"Ol",
|
| 1215 |
+
"Ol'",
|
| 1216 |
+
"Oliver",
|
| 1217 |
+
"Ol\u2019",
|
| 1218 |
+
"On",
|
| 1219 |
+
"On-Chain",
|
| 1220 |
+
"One",
|
| 1221 |
+
"Only",
|
| 1222 |
+
"Open",
|
| 1223 |
+
"Optimistic",
|
| 1224 |
+
"Ore",
|
| 1225 |
+
"Ore.",
|
| 1226 |
+
"Oregon",
|
| 1227 |
+
"Other",
|
| 1228 |
+
"Ought",
|
| 1229 |
+
"Out",
|
| 1230 |
+
"Over",
|
| 1231 |
+
"Overall",
|
| 1232 |
+
"Overnight",
|
| 1233 |
+
"O\u2019Leary",
|
| 1234 |
+
"O\u2019clock",
|
| 1235 |
+
"P",
|
| 1236 |
+
"PER",
|
| 1237 |
+
"PPI",
|
| 1238 |
+
"PROFIT",
|
| 1239 |
+
"Pa",
|
| 1240 |
+
"Pa.",
|
| 1241 |
+
"Palihapitiya",
|
| 1242 |
+
"Panther",
|
| 1243 |
+
"Partners",
|
| 1244 |
+
"Past",
|
| 1245 |
+
"Path",
|
| 1246 |
+
"Paxos",
|
| 1247 |
+
"Paying",
|
| 1248 |
+
"Payments",
|
| 1249 |
+
"Pennsylvania",
|
| 1250 |
+
"Perspective",
|
| 1251 |
+
"Peter",
|
| 1252 |
+
"Ph",
|
| 1253 |
+
"Ph.D.",
|
| 1254 |
+
"Piece",
|
| 1255 |
+
"Pilot",
|
| 1256 |
+
"Planners",
|
| 1257 |
+
"Platform",
|
| 1258 |
+
"Play",
|
| 1259 |
+
"Pleads",
|
| 1260 |
+
"Poland",
|
| 1261 |
+
"Police",
|
| 1262 |
+
"Polkadot",
|
| 1263 |
+
"Polygon",
|
| 1264 |
+
"Polygon\u2019s",
|
| 1265 |
+
"Pompliano",
|
| 1266 |
+
"Ponzi",
|
| 1267 |
+
"Popular",
|
| 1268 |
+
"Popularity",
|
| 1269 |
+
"Potential",
|
| 1270 |
+
"Pre",
|
| 1271 |
+
"Pre-Fee",
|
| 1272 |
+
"Preaches",
|
| 1273 |
+
"Prediction",
|
| 1274 |
+
"Predictions",
|
| 1275 |
+
"Predicts",
|
| 1276 |
+
"Prepared",
|
| 1277 |
+
"Presidential",
|
| 1278 |
+
"Pressure",
|
| 1279 |
+
"Price",
|
| 1280 |
+
"Prices",
|
| 1281 |
+
"Primary",
|
| 1282 |
+
"Prior",
|
| 1283 |
+
"Privacy",
|
| 1284 |
+
"Probed",
|
| 1285 |
+
"Prof",
|
| 1286 |
+
"Prof.",
|
| 1287 |
+
"Projects",
|
| 1288 |
+
"Proof",
|
| 1289 |
+
"Proof-of-Reserve",
|
| 1290 |
+
"Proof-of-Reserves",
|
| 1291 |
+
"Protocol",
|
| 1292 |
+
"Providers",
|
| 1293 |
+
"Puff",
|
| 1294 |
+
"Pushed",
|
| 1295 |
+
"Pushes",
|
| 1296 |
+
"Q",
|
| 1297 |
+
"Q3",
|
| 1298 |
+
"QNT",
|
| 1299 |
+
"Quant",
|
| 1300 |
+
"Queue",
|
| 1301 |
+
"R",
|
| 1302 |
+
"ROOT",
|
| 1303 |
+
"RSI",
|
| 1304 |
+
"RTFKT",
|
| 1305 |
+
"Rallies",
|
| 1306 |
+
"Rally",
|
| 1307 |
+
"Rate",
|
| 1308 |
+
"Ratio",
|
| 1309 |
+
"Reaches",
|
| 1310 |
+
"Reason",
|
| 1311 |
+
"Rebounds",
|
| 1312 |
+
"Recession",
|
| 1313 |
+
"Recover",
|
| 1314 |
+
"Recovered",
|
| 1315 |
+
"Recovery",
|
| 1316 |
+
"Regulators",
|
| 1317 |
+
"Relief",
|
| 1318 |
+
"Removal",
|
| 1319 |
+
"Remove",
|
| 1320 |
+
"Rep",
|
| 1321 |
+
"Rep.",
|
| 1322 |
+
"Repayment",
|
| 1323 |
+
"Report",
|
| 1324 |
+
"Reports",
|
| 1325 |
+
"Represent",
|
| 1326 |
+
"Research",
|
| 1327 |
+
"Reserves",
|
| 1328 |
+
"Resistance",
|
| 1329 |
+
"Results",
|
| 1330 |
+
"Returns",
|
| 1331 |
+
"Rev",
|
| 1332 |
+
"Rev.",
|
| 1333 |
+
"Reveals",
|
| 1334 |
+
"Revenue",
|
| 1335 |
+
"Review",
|
| 1336 |
+
"Revolution",
|
| 1337 |
+
"Rich",
|
| 1338 |
+
"Rights",
|
| 1339 |
+
"Ripple",
|
| 1340 |
+
"Rise",
|
| 1341 |
+
"Rises",
|
| 1342 |
+
"Risk",
|
| 1343 |
+
"Rivals",
|
| 1344 |
+
"Robinhood",
|
| 1345 |
+
"Ronaldo",
|
| 1346 |
+
"Roubini",
|
| 1347 |
+
"Royal",
|
| 1348 |
+
"Rugpull",
|
| 1349 |
+
"Rush",
|
| 1350 |
+
"Russian",
|
| 1351 |
+
"S",
|
| 1352 |
+
"S.C.",
|
| 1353 |
+
"SBF",
|
| 1354 |
+
"SEC",
|
| 1355 |
+
"SHIB",
|
| 1356 |
+
"SHIB\u2019s",
|
| 1357 |
+
"SMA",
|
| 1358 |
+
"SOL",
|
| 1359 |
+
"Saga",
|
| 1360 |
+
"Salvador",
|
| 1361 |
+
"Sam",
|
| 1362 |
+
"Satoshi",
|
| 1363 |
+
"Save",
|
| 1364 |
+
"Savor",
|
| 1365 |
+
"Saylor",
|
| 1366 |
+
"Says",
|
| 1367 |
+
"Scam",
|
| 1368 |
+
"Scaramucci",
|
| 1369 |
+
"Schiff",
|
| 1370 |
+
"Scientific",
|
| 1371 |
+
"Secret",
|
| 1372 |
+
"Securities",
|
| 1373 |
+
"See",
|
| 1374 |
+
"Sees",
|
| 1375 |
+
"Seizes",
|
| 1376 |
+
"Self",
|
| 1377 |
+
"Self-proclaimed",
|
| 1378 |
+
"Sell",
|
| 1379 |
+
"Sen",
|
| 1380 |
+
"Sen.",
|
| 1381 |
+
"Senate",
|
| 1382 |
+
"Sends",
|
| 1383 |
+
"Sense",
|
| 1384 |
+
"Sep",
|
| 1385 |
+
"Sep.",
|
| 1386 |
+
"Separate",
|
| 1387 |
+
"Sept",
|
| 1388 |
+
"Sept.",
|
| 1389 |
+
"September",
|
| 1390 |
+
"Serial",
|
| 1391 |
+
"Serum",
|
| 1392 |
+
"Set",
|
| 1393 |
+
"Settlement",
|
| 1394 |
+
"Seven",
|
| 1395 |
+
"Several",
|
| 1396 |
+
"Sha",
|
| 1397 |
+
"Shadier",
|
| 1398 |
+
"Share",
|
| 1399 |
+
"Shares",
|
| 1400 |
+
"Shark",
|
| 1401 |
+
"She",
|
| 1402 |
+
"She's",
|
| 1403 |
+
"Sheet",
|
| 1404 |
+
"Sherman",
|
| 1405 |
+
"She\u2019s",
|
| 1406 |
+
"Shiba",
|
| 1407 |
+
"Short-Term",
|
| 1408 |
+
"Should",
|
| 1409 |
+
"Showing",
|
| 1410 |
+
"Shows",
|
| 1411 |
+
"Shuts",
|
| 1412 |
+
"Shutting",
|
| 1413 |
+
"Signs",
|
| 1414 |
+
"Silbert",
|
| 1415 |
+
"Silver",
|
| 1416 |
+
"Since",
|
| 1417 |
+
"Skybridge",
|
| 1418 |
+
"Skyrockets",
|
| 1419 |
+
"Slammed",
|
| 1420 |
+
"Small",
|
| 1421 |
+
"Snowden",
|
| 1422 |
+
"Soars",
|
| 1423 |
+
"Solana",
|
| 1424 |
+
"Somethin",
|
| 1425 |
+
"Somethin'",
|
| 1426 |
+
"Somethin\u2019",
|
| 1427 |
+
"South Carolina",
|
| 1428 |
+
"Space",
|
| 1429 |
+
"Spike",
|
| 1430 |
+
"Split",
|
| 1431 |
+
"Sponsorship",
|
| 1432 |
+
"Spot",
|
| 1433 |
+
"St",
|
| 1434 |
+
"St.",
|
| 1435 |
+
"Staff",
|
| 1436 |
+
"Staking",
|
| 1437 |
+
"Start",
|
| 1438 |
+
"State",
|
| 1439 |
+
"Stay",
|
| 1440 |
+
"Still",
|
| 1441 |
+
"Stock",
|
| 1442 |
+
"Stocks",
|
| 1443 |
+
"Storage",
|
| 1444 |
+
"Strategist",
|
| 1445 |
+
"Strong",
|
| 1446 |
+
"Su",
|
| 1447 |
+
"Submits",
|
| 1448 |
+
"Suddenly",
|
| 1449 |
+
"Summary",
|
| 1450 |
+
"Support",
|
| 1451 |
+
"Suppressed",
|
| 1452 |
+
"Surges",
|
| 1453 |
+
"Survive",
|
| 1454 |
+
"Suspends",
|
| 1455 |
+
"Suspension",
|
| 1456 |
+
"Switch",
|
| 1457 |
+
"S\u2019s",
|
| 1458 |
+
"T",
|
| 1459 |
+
"THIS",
|
| 1460 |
+
"TIC",
|
| 1461 |
+
"TOM",
|
| 1462 |
+
"TOP",
|
| 1463 |
+
"Take",
|
| 1464 |
+
"Tanks",
|
| 1465 |
+
"Tank\u2019s",
|
| 1466 |
+
"Tapscott",
|
| 1467 |
+
"Targets",
|
| 1468 |
+
"Tax",
|
| 1469 |
+
"Team",
|
| 1470 |
+
"Tech",
|
| 1471 |
+
"Tell",
|
| 1472 |
+
"Tenn",
|
| 1473 |
+
"Tenn.",
|
| 1474 |
+
"Tennessee",
|
| 1475 |
+
"Terminates",
|
| 1476 |
+
"Terra",
|
| 1477 |
+
"Than",
|
| 1478 |
+
"That",
|
| 1479 |
+
"That's",
|
| 1480 |
+
"That\u2019s",
|
| 1481 |
+
"The",
|
| 1482 |
+
"Their",
|
| 1483 |
+
"Themed",
|
| 1484 |
+
"There",
|
| 1485 |
+
"There's",
|
| 1486 |
+
"There\u2019s",
|
| 1487 |
+
"These",
|
| 1488 |
+
"They",
|
| 1489 |
+
"Thing",
|
| 1490 |
+
"This",
|
| 1491 |
+
"This's",
|
| 1492 |
+
"This\u2019s",
|
| 1493 |
+
"Those",
|
| 1494 |
+
"Thoughts",
|
| 1495 |
+
"Three",
|
| 1496 |
+
"Tied",
|
| 1497 |
+
"Ties",
|
| 1498 |
+
"Time",
|
| 1499 |
+
"Tip",
|
| 1500 |
+
"To",
|
| 1501 |
+
"Tokens",
|
| 1502 |
+
"Tokensoft",
|
| 1503 |
+
"Too",
|
| 1504 |
+
"Tool",
|
| 1505 |
+
"Top",
|
| 1506 |
+
"Touching",
|
| 1507 |
+
"TradFi",
|
| 1508 |
+
"Trade",
|
| 1509 |
+
"Trader",
|
| 1510 |
+
"Trading",
|
| 1511 |
+
"Trailer",
|
| 1512 |
+
"Trial",
|
| 1513 |
+
"Triangle",
|
| 1514 |
+
"Tron",
|
| 1515 |
+
"Trust",
|
| 1516 |
+
"Truth",
|
| 1517 |
+
"Tuesday",
|
| 1518 |
+
"Tuesday\u2019s",
|
| 1519 |
+
"Turbulence",
|
| 1520 |
+
"Turn",
|
| 1521 |
+
"Turning",
|
| 1522 |
+
"Turns",
|
| 1523 |
+
"Tweets",
|
| 1524 |
+
"Twitter",
|
| 1525 |
+
"Two",
|
| 1526 |
+
"U",
|
| 1527 |
+
"U.S.",
|
| 1528 |
+
"UGE",
|
| 1529 |
+
"UK",
|
| 1530 |
+
"UK\u2019s",
|
| 1531 |
+
"UNA",
|
| 1532 |
+
"UNC",
|
| 1533 |
+
"US",
|
| 1534 |
+
"Ukraine",
|
| 1535 |
+
"Under",
|
| 1536 |
+
"Understand",
|
| 1537 |
+
"Uniswap",
|
| 1538 |
+
"United",
|
| 1539 |
+
"Unknown",
|
| 1540 |
+
"Unpacking",
|
| 1541 |
+
"Until",
|
| 1542 |
+
"Up",
|
| 1543 |
+
"Urges",
|
| 1544 |
+
"Use",
|
| 1545 |
+
"User",
|
| 1546 |
+
"Users",
|
| 1547 |
+
"V",
|
| 1548 |
+
"V.V",
|
| 1549 |
+
"VAX",
|
| 1550 |
+
"V_V",
|
| 1551 |
+
"Va",
|
| 1552 |
+
"Va.",
|
| 1553 |
+
"Venture",
|
| 1554 |
+
"Victim",
|
| 1555 |
+
"Virginia",
|
| 1556 |
+
"Visa",
|
| 1557 |
+
"Vitalik",
|
| 1558 |
+
"Volume",
|
| 1559 |
+
"Volumes",
|
| 1560 |
+
"Voyager",
|
| 1561 |
+
"W",
|
| 1562 |
+
"WE",
|
| 1563 |
+
"WHY",
|
| 1564 |
+
"Wake",
|
| 1565 |
+
"Wallet",
|
| 1566 |
+
"Wallets",
|
| 1567 |
+
"Want",
|
| 1568 |
+
"War",
|
| 1569 |
+
"War-torn",
|
| 1570 |
+
"Warning",
|
| 1571 |
+
"Warns",
|
| 1572 |
+
"Was",
|
| 1573 |
+
"Wash",
|
| 1574 |
+
"Wash.",
|
| 1575 |
+
"Washington",
|
| 1576 |
+
"Watch",
|
| 1577 |
+
"Way",
|
| 1578 |
+
"Ways",
|
| 1579 |
+
"We",
|
| 1580 |
+
"Weak",
|
| 1581 |
+
"Weakening",
|
| 1582 |
+
"Web3",
|
| 1583 |
+
"Week",
|
| 1584 |
+
"Went",
|
| 1585 |
+
"Were",
|
| 1586 |
+
"Whale",
|
| 1587 |
+
"Whales",
|
| 1588 |
+
"What",
|
| 1589 |
+
"What's",
|
| 1590 |
+
"What\u2019s",
|
| 1591 |
+
"When",
|
| 1592 |
+
"When's",
|
| 1593 |
+
"When\u2019s",
|
| 1594 |
+
"Where",
|
| 1595 |
+
"Where's",
|
| 1596 |
+
"Where\u2019s",
|
| 1597 |
+
"Which",
|
| 1598 |
+
"Who",
|
| 1599 |
+
"Who's",
|
| 1600 |
+
"Who\u2019s",
|
| 1601 |
+
"Why",
|
| 1602 |
+
"Why's",
|
| 1603 |
+
"Why\u2019s",
|
| 1604 |
+
"Will",
|
| 1605 |
+
"Winklevoss",
|
| 1606 |
+
"Wins",
|
| 1607 |
+
"Winter",
|
| 1608 |
+
"Wis",
|
| 1609 |
+
"Wis.",
|
| 1610 |
+
"Wisconsin",
|
| 1611 |
+
"With",
|
| 1612 |
+
"Withdrawals",
|
| 1613 |
+
"Witness",
|
| 1614 |
+
"Wo",
|
| 1615 |
+
"Work",
|
| 1616 |
+
"World",
|
| 1617 |
+
"Worse",
|
| 1618 |
+
"Worth",
|
| 1619 |
+
"Would",
|
| 1620 |
+
"Wrong",
|
| 1621 |
+
"Wyre",
|
| 1622 |
+
"X'X",
|
| 1623 |
+
"X'x",
|
| 1624 |
+
"X'xxxx",
|
| 1625 |
+
"X++",
|
| 1626 |
+
"X.",
|
| 1627 |
+
"X.X",
|
| 1628 |
+
"X.X.",
|
| 1629 |
+
"X.x",
|
| 1630 |
+
"X.x.",
|
| 1631 |
+
"XD",
|
| 1632 |
+
"XDD",
|
| 1633 |
+
"XRP",
|
| 1634 |
+
"XX",
|
| 1635 |
+
"XXX",
|
| 1636 |
+
"XXX-xxxx",
|
| 1637 |
+
"XXX.xxx",
|
| 1638 |
+
"XXXX",
|
| 1639 |
+
"XXXX-XXX",
|
| 1640 |
+
"XXXX\u2019x",
|
| 1641 |
+
"XXXx",
|
| 1642 |
+
"XXX\u2019x",
|
| 1643 |
+
"XX\u2019x",
|
| 1644 |
+
"X_X",
|
| 1645 |
+
"X_x",
|
| 1646 |
+
"Xd",
|
| 1647 |
+
"Xx",
|
| 1648 |
+
"Xx'",
|
| 1649 |
+
"Xx'x",
|
| 1650 |
+
"Xx'xx",
|
| 1651 |
+
"Xx-Xxxxx",
|
| 1652 |
+
"Xx.",
|
| 1653 |
+
"Xx.X.",
|
| 1654 |
+
"XxXx",
|
| 1655 |
+
"Xxx",
|
| 1656 |
+
"Xxx'x",
|
| 1657 |
+
"Xxx-Xxx",
|
| 1658 |
+
"Xxx-Xxxx",
|
| 1659 |
+
"Xxx-Xxxxx",
|
| 1660 |
+
"Xxx-xxxx",
|
| 1661 |
+
"Xxx.",
|
| 1662 |
+
"XxxXxxxx",
|
| 1663 |
+
"Xxxd",
|
| 1664 |
+
"Xxxx",
|
| 1665 |
+
"Xxxx'",
|
| 1666 |
+
"Xxxx'x",
|
| 1667 |
+
"Xxxx-Xxxxx",
|
| 1668 |
+
"Xxxx-xx-Xxxxx",
|
| 1669 |
+
"Xxxx-xxxx",
|
| 1670 |
+
"Xxxx.",
|
| 1671 |
+
"Xxxx.xx",
|
| 1672 |
+
"XxxxXx",
|
| 1673 |
+
"XxxxXxxx",
|
| 1674 |
+
"XxxxXxxxx",
|
| 1675 |
+
"Xxxxx",
|
| 1676 |
+
"Xxxxx'",
|
| 1677 |
+
"Xxxxx'x",
|
| 1678 |
+
"Xxxxx-XXX",
|
| 1679 |
+
"Xxxxx-Xxxx",
|
| 1680 |
+
"Xxxxx-Xxxxx",
|
| 1681 |
+
"Xxxxx-xx-Xxxxx",
|
| 1682 |
+
"Xxxxx-xxxx",
|
| 1683 |
+
"Xxxxx.",
|
| 1684 |
+
"Xxxxx.XX\u2019x",
|
| 1685 |
+
"Xxxxx.xxx",
|
| 1686 |
+
"XxxxxXx",
|
| 1687 |
+
"XxxxxXxx",
|
| 1688 |
+
"XxxxxXxxx",
|
| 1689 |
+
"XxxxxXxxxx",
|
| 1690 |
+
"Xxxxx\u2019",
|
| 1691 |
+
"Xxxxx\u2019x",
|
| 1692 |
+
"Xxxxx\ufffc",
|
| 1693 |
+
"Xxxx\u2019",
|
| 1694 |
+
"Xxxx\u2019x",
|
| 1695 |
+
"Xxx\u2019",
|
| 1696 |
+
"Xxx\u2019x",
|
| 1697 |
+
"Xx\u2019",
|
| 1698 |
+
"Xx\u2019x",
|
| 1699 |
+
"Xx\u2019xx",
|
| 1700 |
+
"X\u2019Xxxxx",
|
| 1701 |
+
"X\u2019s",
|
| 1702 |
+
"X\u2019x",
|
| 1703 |
+
"X\u2019xxxx",
|
| 1704 |
+
"Y",
|
| 1705 |
+
"Yakoa",
|
| 1706 |
+
"Year",
|
| 1707 |
+
"Years",
|
| 1708 |
+
"Yielding",
|
| 1709 |
+
"York",
|
| 1710 |
+
"You",
|
| 1711 |
+
"YouTuber",
|
| 1712 |
+
"Your",
|
| 1713 |
+
"Z",
|
| 1714 |
+
"Zero",
|
| 1715 |
+
"Zhao",
|
| 1716 |
+
"Zhu",
|
| 1717 |
+
"[",
|
| 1718 |
+
"[-:",
|
| 1719 |
+
"[:",
|
| 1720 |
+
"[=",
|
| 1721 |
+
"\\",
|
| 1722 |
+
"\\\")",
|
| 1723 |
+
"\\n",
|
| 1724 |
+
"\\t",
|
| 1725 |
+
"\\x",
|
| 1726 |
+
"]",
|
| 1727 |
+
"]=",
|
| 1728 |
+
"^",
|
| 1729 |
+
"^_^",
|
| 1730 |
+
"^__^",
|
| 1731 |
+
"^___^",
|
| 1732 |
+
"_*)",
|
| 1733 |
+
"_-)",
|
| 1734 |
+
"_.)",
|
| 1735 |
+
"_<)",
|
| 1736 |
+
"_^)",
|
| 1737 |
+
"__-",
|
| 1738 |
+
"__^",
|
| 1739 |
+
"_\u00ac)",
|
| 1740 |
+
"_\u0ca0)",
|
| 1741 |
+
"a",
|
| 1742 |
+
"a.",
|
| 1743 |
+
"a.m",
|
| 1744 |
+
"a.m.",
|
| 1745 |
+
"aan",
|
| 1746 |
+
"aax",
|
| 1747 |
+
"about",
|
| 1748 |
+
"abruptly",
|
| 1749 |
+
"abs",
|
| 1750 |
+
"absorb",
|
| 1751 |
+
"accidentally",
|
| 1752 |
+
"according",
|
| 1753 |
+
"accounts",
|
| 1754 |
+
"accurate",
|
| 1755 |
+
"accuses",
|
| 1756 |
+
"ace",
|
| 1757 |
+
"ach",
|
| 1758 |
+
"ack",
|
| 1759 |
+
"acquire",
|
| 1760 |
+
"acquisition",
|
| 1761 |
+
"act",
|
| 1762 |
+
"activated",
|
| 1763 |
+
"acy",
|
| 1764 |
+
"ada",
|
| 1765 |
+
"addiction",
|
| 1766 |
+
"additional",
|
| 1767 |
+
"address",
|
| 1768 |
+
"addresses",
|
| 1769 |
+
"ade",
|
| 1770 |
+
"adidas",
|
| 1771 |
+
"adm",
|
| 1772 |
+
"adm.",
|
| 1773 |
+
"ads",
|
| 1774 |
+
"advice",
|
| 1775 |
+
"ad\u2019",
|
| 1776 |
+
"ael",
|
| 1777 |
+
"aff",
|
| 1778 |
+
"affected",
|
| 1779 |
+
"after",
|
| 1780 |
+
"aga",
|
| 1781 |
+
"again",
|
| 1782 |
+
"against",
|
| 1783 |
+
"age",
|
| 1784 |
+
"agencies",
|
| 1785 |
+
"agency",
|
| 1786 |
+
"ago",
|
| 1787 |
+
"ai",
|
| 1788 |
+
"aim",
|
| 1789 |
+
"ain",
|
| 1790 |
+
"air",
|
| 1791 |
+
"ak",
|
| 1792 |
+
"ak.",
|
| 1793 |
+
"ake",
|
| 1794 |
+
"ala",
|
| 1795 |
+
"ala.",
|
| 1796 |
+
"alameda",
|
| 1797 |
+
"alden",
|
| 1798 |
+
"ale",
|
| 1799 |
+
"alex",
|
| 1800 |
+
"algo",
|
| 1801 |
+
"algorand",
|
| 1802 |
+
"algorithm",
|
| 1803 |
+
"all",
|
| 1804 |
+
"all-time",
|
| 1805 |
+
"allegations",
|
| 1806 |
+
"allegedly",
|
| 1807 |
+
"almost",
|
| 1808 |
+
"als",
|
| 1809 |
+
"altcoin",
|
| 1810 |
+
"altcoins",
|
| 1811 |
+
"am",
|
| 1812 |
+
"ame",
|
| 1813 |
+
"americas",
|
| 1814 |
+
"amicus",
|
| 1815 |
+
"amid",
|
| 1816 |
+
"among",
|
| 1817 |
+
"ams",
|
| 1818 |
+
"an.",
|
| 1819 |
+
"ana",
|
| 1820 |
+
"analysis",
|
| 1821 |
+
"analyst",
|
| 1822 |
+
"analysts",
|
| 1823 |
+
"analytics",
|
| 1824 |
+
"ancient",
|
| 1825 |
+
"and",
|
| 1826 |
+
"and/or",
|
| 1827 |
+
"angry",
|
| 1828 |
+
"ank",
|
| 1829 |
+
"ano",
|
| 1830 |
+
"another",
|
| 1831 |
+
"ans",
|
| 1832 |
+
"answers",
|
| 1833 |
+
"ant",
|
| 1834 |
+
"anthony",
|
| 1835 |
+
"any",
|
| 1836 |
+
"anyone",
|
| 1837 |
+
"an\u2019",
|
| 1838 |
+
"aos",
|
| 1839 |
+
"ape",
|
| 1840 |
+
"apes",
|
| 1841 |
+
"appear",
|
| 1842 |
+
"appearance",
|
| 1843 |
+
"approval",
|
| 1844 |
+
"apps",
|
| 1845 |
+
"apr",
|
| 1846 |
+
"apr.",
|
| 1847 |
+
"ar.",
|
| 1848 |
+
"ard",
|
| 1849 |
+
"are",
|
| 1850 |
+
"area",
|
| 1851 |
+
"argentina",
|
| 1852 |
+
"argentina\u2019s",
|
| 1853 |
+
"ariz",
|
| 1854 |
+
"ariz.",
|
| 1855 |
+
"ark",
|
| 1856 |
+
"ark.",
|
| 1857 |
+
"armstrong",
|
| 1858 |
+
"army",
|
| 1859 |
+
"arn",
|
| 1860 |
+
"arrows",
|
| 1861 |
+
"ars",
|
| 1862 |
+
"art",
|
| 1863 |
+
"ary",
|
| 1864 |
+
"as",
|
| 1865 |
+
"ase",
|
| 1866 |
+
"ash",
|
| 1867 |
+
"asia",
|
| 1868 |
+
"asks",
|
| 1869 |
+
"ass",
|
| 1870 |
+
"assange",
|
| 1871 |
+
"assembling",
|
| 1872 |
+
"asset",
|
| 1873 |
+
"assets",
|
| 1874 |
+
"ast",
|
| 1875 |
+
"at",
|
| 1876 |
+
"ata",
|
| 1877 |
+
"ate",
|
| 1878 |
+
"ath",
|
| 1879 |
+
"atom",
|
| 1880 |
+
"ats",
|
| 1881 |
+
"attack",
|
| 1882 |
+
"attempt",
|
| 1883 |
+
"attention",
|
| 1884 |
+
"attorney",
|
| 1885 |
+
"attract",
|
| 1886 |
+
"aud",
|
| 1887 |
+
"auditor",
|
| 1888 |
+
"aug",
|
| 1889 |
+
"aug.",
|
| 1890 |
+
"author",
|
| 1891 |
+
"authorities",
|
| 1892 |
+
"avalanche",
|
| 1893 |
+
"avax",
|
| 1894 |
+
"ave",
|
| 1895 |
+
"avoid",
|
| 1896 |
+
"away",
|
| 1897 |
+
"aws",
|
| 1898 |
+
"ays",
|
| 1899 |
+
"a\u2019s",
|
| 1900 |
+
"b",
|
| 1901 |
+
"b.",
|
| 1902 |
+
"back",
|
| 1903 |
+
"bad",
|
| 1904 |
+
"bahamas",
|
| 1905 |
+
"bahamian",
|
| 1906 |
+
"balance",
|
| 1907 |
+
"ban",
|
| 1908 |
+
"bank",
|
| 1909 |
+
"banking",
|
| 1910 |
+
"bankman",
|
| 1911 |
+
"bankman-fried",
|
| 1912 |
+
"bankrupt",
|
| 1913 |
+
"bankruptcy",
|
| 1914 |
+
"banks",
|
| 1915 |
+
"barry",
|
| 1916 |
+
"base",
|
| 1917 |
+
"basic",
|
| 1918 |
+
"bayc-ftx",
|
| 1919 |
+
"bdc",
|
| 1920 |
+
"be",
|
| 1921 |
+
"beach",
|
| 1922 |
+
"bear",
|
| 1923 |
+
"bearish",
|
| 1924 |
+
"because",
|
| 1925 |
+
"become",
|
| 1926 |
+
"becomes",
|
| 1927 |
+
"bed",
|
| 1928 |
+
"beef",
|
| 1929 |
+
"been",
|
| 1930 |
+
"before",
|
| 1931 |
+
"being",
|
| 1932 |
+
"believes",
|
| 1933 |
+
"ben",
|
| 1934 |
+
"benzema",
|
| 1935 |
+
"ber",
|
| 1936 |
+
"bes",
|
| 1937 |
+
"best",
|
| 1938 |
+
"best-selling",
|
| 1939 |
+
"between",
|
| 1940 |
+
"bids",
|
| 1941 |
+
"big",
|
| 1942 |
+
"bigger",
|
| 1943 |
+
"biggest",
|
| 1944 |
+
"billion",
|
| 1945 |
+
"billionaire",
|
| 1946 |
+
"binance",
|
| 1947 |
+
"binance.us\u2019s",
|
| 1948 |
+
"birthday",
|
| 1949 |
+
"bit",
|
| 1950 |
+
"bitcoin",
|
| 1951 |
+
"bitvo",
|
| 1952 |
+
"black",
|
| 1953 |
+
"blasts",
|
| 1954 |
+
"ble",
|
| 1955 |
+
"bleed",
|
| 1956 |
+
"blockchain",
|
| 1957 |
+
"blockfi",
|
| 1958 |
+
"bloomberg",
|
| 1959 |
+
"bnb\u2019s",
|
| 1960 |
+
"bonk",
|
| 1961 |
+
"bonkers",
|
| 1962 |
+
"boost",
|
| 1963 |
+
"bored",
|
| 1964 |
+
"bottom",
|
| 1965 |
+
"bout",
|
| 1966 |
+
"br.",
|
| 1967 |
+
"brace",
|
| 1968 |
+
"brad",
|
| 1969 |
+
"bradley",
|
| 1970 |
+
"brand",
|
| 1971 |
+
"breach",
|
| 1972 |
+
"break",
|
| 1973 |
+
"breakout",
|
| 1974 |
+
"brevan",
|
| 1975 |
+
"brewing",
|
| 1976 |
+
"brian",
|
| 1977 |
+
"brief",
|
| 1978 |
+
"bring",
|
| 1979 |
+
"bros",
|
| 1980 |
+
"bros.",
|
| 1981 |
+
"bros\u2019",
|
| 1982 |
+
"btc",
|
| 1983 |
+
"build",
|
| 1984 |
+
"bukele",
|
| 1985 |
+
"bull",
|
| 1986 |
+
"bullish",
|
| 1987 |
+
"bulls",
|
| 1988 |
+
"burns",
|
| 1989 |
+
"business",
|
| 1990 |
+
"but",
|
| 1991 |
+
"buterin",
|
| 1992 |
+
"buy",
|
| 1993 |
+
"buying",
|
| 1994 |
+
"buys",
|
| 1995 |
+
"by",
|
| 1996 |
+
"b\u2019s",
|
| 1997 |
+
"c",
|
| 1998 |
+
"c'm",
|
| 1999 |
+
"c++",
|
| 2000 |
+
"c.",
|
| 2001 |
+
"ca",
|
| 2002 |
+
"cal",
|
| 2003 |
+
"calif",
|
| 2004 |
+
"calif.",
|
| 2005 |
+
"call",
|
| 2006 |
+
"called",
|
| 2007 |
+
"calls",
|
| 2008 |
+
"cam",
|
| 2009 |
+
"cameron",
|
| 2010 |
+
"can",
|
| 2011 |
+
"canaan",
|
| 2012 |
+
"candidate",
|
| 2013 |
+
"can\u2019",
|
| 2014 |
+
"can\u2019t",
|
| 2015 |
+
"capital",
|
| 2016 |
+
"capitulation",
|
| 2017 |
+
"card",
|
| 2018 |
+
"cardano",
|
| 2019 |
+
"cas",
|
| 2020 |
+
"case",
|
| 2021 |
+
"casino",
|
| 2022 |
+
"catapult",
|
| 2023 |
+
"caught",
|
| 2024 |
+
"cause",
|
| 2025 |
+
"causing",
|
| 2026 |
+
"cbdc",
|
| 2027 |
+
"cci",
|
| 2028 |
+
"ce>",
|
| 2029 |
+
"celebrate",
|
| 2030 |
+
"celsius",
|
| 2031 |
+
"celsius\u2019",
|
| 2032 |
+
"central",
|
| 2033 |
+
"centralization",
|
| 2034 |
+
"ceo",
|
| 2035 |
+
"ces",
|
| 2036 |
+
"cex",
|
| 2037 |
+
"ch.",
|
| 2038 |
+
"chain",
|
| 2039 |
+
"chainlink",
|
| 2040 |
+
"chamath",
|
| 2041 |
+
"change",
|
| 2042 |
+
"changer",
|
| 2043 |
+
"changpeng",
|
| 2044 |
+
"charles",
|
| 2045 |
+
"charts",
|
| 2046 |
+
"che",
|
| 2047 |
+
"circulating",
|
| 2048 |
+
"cks",
|
| 2049 |
+
"claim",
|
| 2050 |
+
"clarity",
|
| 2051 |
+
"classic",
|
| 2052 |
+
"cle",
|
| 2053 |
+
"cleansing",
|
| 2054 |
+
"client",
|
| 2055 |
+
"clients",
|
| 2056 |
+
"climb",
|
| 2057 |
+
"clog",
|
| 2058 |
+
"close",
|
| 2059 |
+
"club",
|
| 2060 |
+
"co",
|
| 2061 |
+
"co-founder",
|
| 2062 |
+
"co-leads",
|
| 2063 |
+
"co.",
|
| 2064 |
+
"coin",
|
| 2065 |
+
"coinbase",
|
| 2066 |
+
"coinbase\u2019s",
|
| 2067 |
+
"coinkite",
|
| 2068 |
+
"coins",
|
| 2069 |
+
"coinshares",
|
| 2070 |
+
"coins\u2019",
|
| 2071 |
+
"col",
|
| 2072 |
+
"cold",
|
| 2073 |
+
"collapse",
|
| 2074 |
+
"collapsed",
|
| 2075 |
+
"collisions",
|
| 2076 |
+
"collisions\u2019",
|
| 2077 |
+
"colo",
|
| 2078 |
+
"colo.",
|
| 2079 |
+
"com",
|
| 2080 |
+
"come",
|
| 2081 |
+
"comeback",
|
| 2082 |
+
"commentary",
|
| 2083 |
+
"commission",
|
| 2084 |
+
"community",
|
| 2085 |
+
"company",
|
| 2086 |
+
"compromise",
|
| 2087 |
+
"concerning",
|
| 2088 |
+
"concerns",
|
| 2089 |
+
"condones",
|
| 2090 |
+
"confidence",
|
| 2091 |
+
"confirmed",
|
| 2092 |
+
"confused",
|
| 2093 |
+
"congressman",
|
| 2094 |
+
"conn",
|
| 2095 |
+
"conn.",
|
| 2096 |
+
"connection",
|
| 2097 |
+
"connections",
|
| 2098 |
+
"consequences",
|
| 2099 |
+
"consolidates",
|
| 2100 |
+
"conspired",
|
| 2101 |
+
"contagion",
|
| 2102 |
+
"contagion\u2019s",
|
| 2103 |
+
"continues",
|
| 2104 |
+
"contract",
|
| 2105 |
+
"contradicts",
|
| 2106 |
+
"control",
|
| 2107 |
+
"conversion",
|
| 2108 |
+
"coo",
|
| 2109 |
+
"core",
|
| 2110 |
+
"corp",
|
| 2111 |
+
"corp.",
|
| 2112 |
+
"corrections",
|
| 2113 |
+
"correlation",
|
| 2114 |
+
"cos",
|
| 2115 |
+
"could",
|
| 2116 |
+
"count",
|
| 2117 |
+
"court",
|
| 2118 |
+
"coz",
|
| 2119 |
+
"crash",
|
| 2120 |
+
"crashes",
|
| 2121 |
+
"created",
|
| 2122 |
+
"creates",
|
| 2123 |
+
"creator",
|
| 2124 |
+
"credit",
|
| 2125 |
+
"creditors",
|
| 2126 |
+
"crime",
|
| 2127 |
+
"criminal",
|
| 2128 |
+
"crippled",
|
| 2129 |
+
"cristiano",
|
| 2130 |
+
"criticize",
|
| 2131 |
+
"cro",
|
| 2132 |
+
"cronos",
|
| 2133 |
+
"crosses",
|
| 2134 |
+
"crosstower",
|
| 2135 |
+
"cryptic",
|
| 2136 |
+
"crypto",
|
| 2137 |
+
"crypto-regulations",
|
| 2138 |
+
"crypto.com",
|
| 2139 |
+
"cryptocom",
|
| 2140 |
+
"cryptocurrency",
|
| 2141 |
+
"cryptos",
|
| 2142 |
+
"ct.",
|
| 2143 |
+
"cts",
|
| 2144 |
+
"cuban",
|
| 2145 |
+
"cumberland",
|
| 2146 |
+
"cup",
|
| 2147 |
+
"currency",
|
| 2148 |
+
"curse",
|
| 2149 |
+
"curve",
|
| 2150 |
+
"cus",
|
| 2151 |
+
"custody",
|
| 2152 |
+
"customers",
|
| 2153 |
+
"cuts",
|
| 2154 |
+
"cuz",
|
| 2155 |
+
"cz",
|
| 2156 |
+
"c\u2019m",
|
| 2157 |
+
"d",
|
| 2158 |
+
"d)",
|
| 2159 |
+
"d,ddd",
|
| 2160 |
+
"d,ddd,ddd,ddd",
|
| 2161 |
+
"d-",
|
| 2162 |
+
"d-)",
|
| 2163 |
+
"d-X",
|
| 2164 |
+
"d-xxxx",
|
| 2165 |
+
"d.",
|
| 2166 |
+
"d.c.",
|
| 2167 |
+
"d.d",
|
| 2168 |
+
"d.dd",
|
| 2169 |
+
"d.dx",
|
| 2170 |
+
"d.x",
|
| 2171 |
+
"dFi",
|
| 2172 |
+
"dX",
|
| 2173 |
+
"dXX",
|
| 2174 |
+
"d_d",
|
| 2175 |
+
"d_x",
|
| 2176 |
+
"daily",
|
| 2177 |
+
"daos",
|
| 2178 |
+
"dare",
|
| 2179 |
+
"das",
|
| 2180 |
+
"data",
|
| 2181 |
+
"dave",
|
| 2182 |
+
"david",
|
| 2183 |
+
"day",
|
| 2184 |
+
"days",
|
| 2185 |
+
"dd",
|
| 2186 |
+
"dd,ddd",
|
| 2187 |
+
"dd,ddd,ddd",
|
| 2188 |
+
"dd.dX",
|
| 2189 |
+
"dd.dx",
|
| 2190 |
+
"ddX",
|
| 2191 |
+
"ddd",
|
| 2192 |
+
"ddd,ddd",
|
| 2193 |
+
"ddd,ddd,ddd",
|
| 2194 |
+
"ddd,ddd,ddd,ddd",
|
| 2195 |
+
"dddX",
|
| 2196 |
+
"dddd",
|
| 2197 |
+
"dddd-Xxxxx",
|
| 2198 |
+
"dddd-xxxx",
|
| 2199 |
+
"ddddx",
|
| 2200 |
+
"dddx",
|
| 2201 |
+
"ddx",
|
| 2202 |
+
"ddx.x",
|
| 2203 |
+
"ddx.x.",
|
| 2204 |
+
"deal",
|
| 2205 |
+
"deals",
|
| 2206 |
+
"debacle",
|
| 2207 |
+
"debit",
|
| 2208 |
+
"dec",
|
| 2209 |
+
"dec.",
|
| 2210 |
+
"decent",
|
| 2211 |
+
"decline",
|
| 2212 |
+
"dee",
|
| 2213 |
+
"defi",
|
| 2214 |
+
"deflationary",
|
| 2215 |
+
"deflect",
|
| 2216 |
+
"del",
|
| 2217 |
+
"del.",
|
| 2218 |
+
"demands",
|
| 2219 |
+
"democrats",
|
| 2220 |
+
"den",
|
| 2221 |
+
"denies",
|
| 2222 |
+
"deposits",
|
| 2223 |
+
"der",
|
| 2224 |
+
"deserves",
|
| 2225 |
+
"despite",
|
| 2226 |
+
"destruction",
|
| 2227 |
+
"details",
|
| 2228 |
+
"detained",
|
| 2229 |
+
"detection",
|
| 2230 |
+
"developers",
|
| 2231 |
+
"dex",
|
| 2232 |
+
"dfi",
|
| 2233 |
+
"dge",
|
| 2234 |
+
"dia",
|
| 2235 |
+
"did",
|
| 2236 |
+
"didn\u2019t",
|
| 2237 |
+
"differently",
|
| 2238 |
+
"digital",
|
| 2239 |
+
"direction",
|
| 2240 |
+
"directive",
|
| 2241 |
+
"director",
|
| 2242 |
+
"disarray",
|
| 2243 |
+
"district",
|
| 2244 |
+
"dit",
|
| 2245 |
+
"divergence",
|
| 2246 |
+
"diverges",
|
| 2247 |
+
"dly",
|
| 2248 |
+
"dm.",
|
| 2249 |
+
"do",
|
| 2250 |
+
"does",
|
| 2251 |
+
"doge",
|
| 2252 |
+
"dogecoin",
|
| 2253 |
+
"doin",
|
| 2254 |
+
"doin'",
|
| 2255 |
+
"doing",
|
| 2256 |
+
"doin\u2019",
|
| 2257 |
+
"doj",
|
| 2258 |
+
"dollar",
|
| 2259 |
+
"don\u2019t",
|
| 2260 |
+
"doom",
|
| 2261 |
+
"dor",
|
| 2262 |
+
"dormant",
|
| 2263 |
+
"dose",
|
| 2264 |
+
"dot",
|
| 2265 |
+
"double-digit",
|
| 2266 |
+
"down",
|
| 2267 |
+
"downtrend",
|
| 2268 |
+
"downturn",
|
| 2269 |
+
"doxed",
|
| 2270 |
+
"dozens",
|
| 2271 |
+
"dr",
|
| 2272 |
+
"dr.",
|
| 2273 |
+
"drastic",
|
| 2274 |
+
"draws",
|
| 2275 |
+
"drop",
|
| 2276 |
+
"drops",
|
| 2277 |
+
"due",
|
| 2278 |
+
"dumped",
|
| 2279 |
+
"dx.x",
|
| 2280 |
+
"dx.x.",
|
| 2281 |
+
"dxx",
|
| 2282 |
+
"e",
|
| 2283 |
+
"e's",
|
| 2284 |
+
"e.",
|
| 2285 |
+
"e.g",
|
| 2286 |
+
"e.g.",
|
| 2287 |
+
"eFi",
|
| 2288 |
+
"eak",
|
| 2289 |
+
"eal",
|
| 2290 |
+
"eam",
|
| 2291 |
+
"ear",
|
| 2292 |
+
"earn",
|
| 2293 |
+
"eb.",
|
| 2294 |
+
"eb3",
|
| 2295 |
+
"ebr",
|
| 2296 |
+
"ec.",
|
| 2297 |
+
"ece",
|
| 2298 |
+
"ech",
|
| 2299 |
+
"ecosystem",
|
| 2300 |
+
"ect",
|
| 2301 |
+
"eda",
|
| 2302 |
+
"eden",
|
| 2303 |
+
"eds",
|
| 2304 |
+
"edward",
|
| 2305 |
+
"ed\u201d",
|
| 2306 |
+
"eed",
|
| 2307 |
+
"eef",
|
| 2308 |
+
"eek",
|
| 2309 |
+
"een",
|
| 2310 |
+
"ees",
|
| 2311 |
+
"eet",
|
| 2312 |
+
"efi",
|
| 2313 |
+
"eft",
|
| 2314 |
+
"egy",
|
| 2315 |
+
"ein",
|
| 2316 |
+
"eir",
|
| 2317 |
+
"eks",
|
| 2318 |
+
"el",
|
| 2319 |
+
"el.",
|
| 2320 |
+
"ele",
|
| 2321 |
+
"elf",
|
| 2322 |
+
"ell",
|
| 2323 |
+
"elon",
|
| 2324 |
+
"els",
|
| 2325 |
+
"em",
|
| 2326 |
+
"ema",
|
| 2327 |
+
"emails",
|
| 2328 |
+
"embarrassing",
|
| 2329 |
+
"eme",
|
| 2330 |
+
"empire",
|
| 2331 |
+
"en",
|
| 2332 |
+
"en.",
|
| 2333 |
+
"enabling",
|
| 2334 |
+
"end",
|
| 2335 |
+
"ends",
|
| 2336 |
+
"enforcement",
|
| 2337 |
+
"eng",
|
| 2338 |
+
"engagement",
|
| 2339 |
+
"england",
|
| 2340 |
+
"enn",
|
| 2341 |
+
"enough",
|
| 2342 |
+
"ens",
|
| 2343 |
+
"ent",
|
| 2344 |
+
"ep",
|
| 2345 |
+
"ep.",
|
| 2346 |
+
"ept",
|
| 2347 |
+
"ere",
|
| 2348 |
+
"erg",
|
| 2349 |
+
"erm",
|
| 2350 |
+
"ero",
|
| 2351 |
+
"ers",
|
| 2352 |
+
"ert",
|
| 2353 |
+
"ery",
|
| 2354 |
+
"ese",
|
| 2355 |
+
"ess",
|
| 2356 |
+
"est",
|
| 2357 |
+
"es\u2019",
|
| 2358 |
+
"etf",
|
| 2359 |
+
"eth",
|
| 2360 |
+
"ether",
|
| 2361 |
+
"ether-bitcoin",
|
| 2362 |
+
"ethereum",
|
| 2363 |
+
"ethereum\u2019s",
|
| 2364 |
+
"ets",
|
| 2365 |
+
"eue",
|
| 2366 |
+
"eum",
|
| 2367 |
+
"ev.",
|
| 2368 |
+
"eve",
|
| 2369 |
+
"even",
|
| 2370 |
+
"everything",
|
| 2371 |
+
"evil",
|
| 2372 |
+
"ews",
|
| 2373 |
+
"exchange",
|
| 2374 |
+
"exchanges",
|
| 2375 |
+
"expand",
|
| 2376 |
+
"expect",
|
| 2377 |
+
"experience",
|
| 2378 |
+
"experiences",
|
| 2379 |
+
"experts",
|
| 2380 |
+
"explains",
|
| 2381 |
+
"exploit",
|
| 2382 |
+
"ext",
|
| 2383 |
+
"eys",
|
| 2384 |
+
"e\u2019s",
|
| 2385 |
+
"f",
|
| 2386 |
+
"f.",
|
| 2387 |
+
"face",
|
| 2388 |
+
"facing",
|
| 2389 |
+
"fade",
|
| 2390 |
+
"failed",
|
| 2391 |
+
"failure",
|
| 2392 |
+
"fake",
|
| 2393 |
+
"faking",
|
| 2394 |
+
"fallout",
|
| 2395 |
+
"falls",
|
| 2396 |
+
"fears",
|
| 2397 |
+
"feb",
|
| 2398 |
+
"feb.",
|
| 2399 |
+
"fed",
|
| 2400 |
+
"federal",
|
| 2401 |
+
"fee",
|
| 2402 |
+
"feels",
|
| 2403 |
+
"fer",
|
| 2404 |
+
"ffs",
|
| 2405 |
+
"fic",
|
| 2406 |
+
"fighter",
|
| 2407 |
+
"files",
|
| 2408 |
+
"filing",
|
| 2409 |
+
"filings",
|
| 2410 |
+
"finance",
|
| 2411 |
+
"fire",
|
| 2412 |
+
"firm",
|
| 2413 |
+
"first",
|
| 2414 |
+
"fit",
|
| 2415 |
+
"fkt",
|
| 2416 |
+
"fla",
|
| 2417 |
+
"fla.",
|
| 2418 |
+
"flat",
|
| 2419 |
+
"flipped",
|
| 2420 |
+
"flying",
|
| 2421 |
+
"follow",
|
| 2422 |
+
"following",
|
| 2423 |
+
"fomc",
|
| 2424 |
+
"for",
|
| 2425 |
+
"force",
|
| 2426 |
+
"forecast",
|
| 2427 |
+
"foreign",
|
| 2428 |
+
"forked",
|
| 2429 |
+
"former",
|
| 2430 |
+
"forms",
|
| 2431 |
+
"forward",
|
| 2432 |
+
"founder",
|
| 2433 |
+
"fraud",
|
| 2434 |
+
"free",
|
| 2435 |
+
"freeing",
|
| 2436 |
+
"freezes",
|
| 2437 |
+
"friday",
|
| 2438 |
+
"fried",
|
| 2439 |
+
"from",
|
| 2440 |
+
"fronts\u2019",
|
| 2441 |
+
"fts",
|
| 2442 |
+
"ftt",
|
| 2443 |
+
"ftx",
|
| 2444 |
+
"ftx-like",
|
| 2445 |
+
"ftx.com",
|
| 2446 |
+
"ftx\u2019s",
|
| 2447 |
+
"fty",
|
| 2448 |
+
"fud",
|
| 2449 |
+
"fuel",
|
| 2450 |
+
"fueling",
|
| 2451 |
+
"full",
|
| 2452 |
+
"fund",
|
| 2453 |
+
"fundamentals",
|
| 2454 |
+
"fundraising",
|
| 2455 |
+
"funds",
|
| 2456 |
+
"future",
|
| 2457 |
+
"g",
|
| 2458 |
+
"g.",
|
| 2459 |
+
"ga",
|
| 2460 |
+
"ga.",
|
| 2461 |
+
"gai",
|
| 2462 |
+
"gain",
|
| 2463 |
+
"gains",
|
| 2464 |
+
"gale",
|
| 2465 |
+
"game",
|
| 2466 |
+
"gate",
|
| 2467 |
+
"gate.io",
|
| 2468 |
+
"gbtc",
|
| 2469 |
+
"ged",
|
| 2470 |
+
"gen",
|
| 2471 |
+
"gen.",
|
| 2472 |
+
"genesis",
|
| 2473 |
+
"gensler-ftx",
|
| 2474 |
+
"ger",
|
| 2475 |
+
"ges",
|
| 2476 |
+
"get",
|
| 2477 |
+
"gets",
|
| 2478 |
+
"getting\u2019",
|
| 2479 |
+
"ghs",
|
| 2480 |
+
"ght",
|
| 2481 |
+
"giants",
|
| 2482 |
+
"gic",
|
| 2483 |
+
"git",
|
| 2484 |
+
"give",
|
| 2485 |
+
"given",
|
| 2486 |
+
"glassnode",
|
| 2487 |
+
"gle",
|
| 2488 |
+
"gmx",
|
| 2489 |
+
"gns",
|
| 2490 |
+
"goes",
|
| 2491 |
+
"goin",
|
| 2492 |
+
"goin'",
|
| 2493 |
+
"going",
|
| 2494 |
+
"goin\u2019",
|
| 2495 |
+
"gokhshtein",
|
| 2496 |
+
"gon",
|
| 2497 |
+
"gonna",
|
| 2498 |
+
"got",
|
| 2499 |
+
"gov",
|
| 2500 |
+
"gov.",
|
| 2501 |
+
"government",
|
| 2502 |
+
"gpu",
|
| 2503 |
+
"grabbed",
|
| 2504 |
+
"grabs",
|
| 2505 |
+
"gravity",
|
| 2506 |
+
"group",
|
| 2507 |
+
"growth",
|
| 2508 |
+
"gry",
|
| 2509 |
+
"guidelines",
|
| 2510 |
+
"guilty",
|
| 2511 |
+
"h",
|
| 2512 |
+
"h.",
|
| 2513 |
+
"hack",
|
| 2514 |
+
"hacked",
|
| 2515 |
+
"hacker",
|
| 2516 |
+
"hacks",
|
| 2517 |
+
"had",
|
| 2518 |
+
"han",
|
| 2519 |
+
"hao",
|
| 2520 |
+
"happen",
|
| 2521 |
+
"happened",
|
| 2522 |
+
"happens",
|
| 2523 |
+
"happy",
|
| 2524 |
+
"has",
|
| 2525 |
+
"hat",
|
| 2526 |
+
"hates",
|
| 2527 |
+
"have",
|
| 2528 |
+
"havin",
|
| 2529 |
+
"havin'",
|
| 2530 |
+
"having",
|
| 2531 |
+
"havin\u2019",
|
| 2532 |
+
"he",
|
| 2533 |
+
"he's",
|
| 2534 |
+
"headache",
|
| 2535 |
+
"hed",
|
| 2536 |
+
"hel",
|
| 2537 |
+
"helium",
|
| 2538 |
+
"hen",
|
| 2539 |
+
"her",
|
| 2540 |
+
"here",
|
| 2541 |
+
"here\u2019s",
|
| 2542 |
+
"hes",
|
| 2543 |
+
"hey",
|
| 2544 |
+
"he\u2019s",
|
| 2545 |
+
"hib",
|
| 2546 |
+
"high",
|
| 2547 |
+
"higher",
|
| 2548 |
+
"highs",
|
| 2549 |
+
"hin",
|
| 2550 |
+
"hinman",
|
| 2551 |
+
"hints",
|
| 2552 |
+
"hip",
|
| 2553 |
+
"his",
|
| 2554 |
+
"historic",
|
| 2555 |
+
"hit",
|
| 2556 |
+
"hits",
|
| 2557 |
+
"hod",
|
| 2558 |
+
"hold",
|
| 2559 |
+
"holders",
|
| 2560 |
+
"holds",
|
| 2561 |
+
"home",
|
| 2562 |
+
"hong",
|
| 2563 |
+
"hopium",
|
| 2564 |
+
"hor",
|
| 2565 |
+
"horrendous",
|
| 2566 |
+
"hoskinson",
|
| 2567 |
+
"hours",
|
| 2568 |
+
"house",
|
| 2569 |
+
"how",
|
| 2570 |
+
"how's",
|
| 2571 |
+
"howard",
|
| 2572 |
+
"how\u2019s",
|
| 2573 |
+
"hts",
|
| 2574 |
+
"hub",
|
| 2575 |
+
"huge",
|
| 2576 |
+
"human",
|
| 2577 |
+
"huobi",
|
| 2578 |
+
"hurt",
|
| 2579 |
+
"i",
|
| 2580 |
+
"i.",
|
| 2581 |
+
"i.e",
|
| 2582 |
+
"i.e.",
|
| 2583 |
+
"ia",
|
| 2584 |
+
"ia.",
|
| 2585 |
+
"ial",
|
| 2586 |
+
"ian",
|
| 2587 |
+
"iba",
|
| 2588 |
+
"ice",
|
| 2589 |
+
"iceberg",
|
| 2590 |
+
"ich",
|
| 2591 |
+
"ics",
|
| 2592 |
+
"ict",
|
| 2593 |
+
"ic\u2019",
|
| 2594 |
+
"id",
|
| 2595 |
+
"id.",
|
| 2596 |
+
"ide",
|
| 2597 |
+
"identifying",
|
| 2598 |
+
"ido",
|
| 2599 |
+
"ids",
|
| 2600 |
+
"ied",
|
| 2601 |
+
"ief",
|
| 2602 |
+
"iel",
|
| 2603 |
+
"ier",
|
| 2604 |
+
"ies",
|
| 2605 |
+
"iew",
|
| 2606 |
+
"if",
|
| 2607 |
+
"if.",
|
| 2608 |
+
"iff",
|
| 2609 |
+
"igh",
|
| 2610 |
+
"ign",
|
| 2611 |
+
"ike",
|
| 2612 |
+
"ikigai",
|
| 2613 |
+
"ild",
|
| 2614 |
+
"ile",
|
| 2615 |
+
"ill",
|
| 2616 |
+
"ill.",
|
| 2617 |
+
"ils",
|
| 2618 |
+
"ily",
|
| 2619 |
+
"imb",
|
| 2620 |
+
"ime",
|
| 2621 |
+
"impact",
|
| 2622 |
+
"impeding",
|
| 2623 |
+
"implosion",
|
| 2624 |
+
"implosion\ufffc",
|
| 2625 |
+
"in",
|
| 2626 |
+
"in'",
|
| 2627 |
+
"ina",
|
| 2628 |
+
"inc",
|
| 2629 |
+
"inc.",
|
| 2630 |
+
"increase",
|
| 2631 |
+
"increased",
|
| 2632 |
+
"ind",
|
| 2633 |
+
"ind.",
|
| 2634 |
+
"india",
|
| 2635 |
+
"indian",
|
| 2636 |
+
"indonesia",
|
| 2637 |
+
"industry",
|
| 2638 |
+
"ine",
|
| 2639 |
+
"infancy",
|
| 2640 |
+
"inflation",
|
| 2641 |
+
"inflows",
|
| 2642 |
+
"information",
|
| 2643 |
+
"ing",
|
| 2644 |
+
"ini",
|
| 2645 |
+
"ink",
|
| 2646 |
+
"inn",
|
| 2647 |
+
"innovations",
|
| 2648 |
+
"ino",
|
| 2649 |
+
"ins",
|
| 2650 |
+
"inspect",
|
| 2651 |
+
"int",
|
| 2652 |
+
"intentions",
|
| 2653 |
+
"interest",
|
| 2654 |
+
"international",
|
| 2655 |
+
"into",
|
| 2656 |
+
"inu",
|
| 2657 |
+
"inu-themed",
|
| 2658 |
+
"invest",
|
| 2659 |
+
"investigate",
|
| 2660 |
+
"investigation",
|
| 2661 |
+
"investment",
|
| 2662 |
+
"investor",
|
| 2663 |
+
"investors",
|
| 2664 |
+
"involvement",
|
| 2665 |
+
"in\u2019",
|
| 2666 |
+
"ion",
|
| 2667 |
+
"ior",
|
| 2668 |
+
"ips",
|
| 2669 |
+
"ird",
|
| 2670 |
+
"ire",
|
| 2671 |
+
"irm",
|
| 2672 |
+
"ir\u2026",
|
| 2673 |
+
"is",
|
| 2674 |
+
"is.",
|
| 2675 |
+
"isa",
|
| 2676 |
+
"ise",
|
| 2677 |
+
"ish",
|
| 2678 |
+
"isk",
|
| 2679 |
+
"iss",
|
| 2680 |
+
"issues",
|
| 2681 |
+
"ist",
|
| 2682 |
+
"it",
|
| 2683 |
+
"it's",
|
| 2684 |
+
"ite",
|
| 2685 |
+
"ith",
|
| 2686 |
+
"its",
|
| 2687 |
+
"ity",
|
| 2688 |
+
"it\u2019s",
|
| 2689 |
+
"ium",
|
| 2690 |
+
"ius",
|
| 2691 |
+
"ive",
|
| 2692 |
+
"iya",
|
| 2693 |
+
"iz.",
|
| 2694 |
+
"ize",
|
| 2695 |
+
"j",
|
| 2696 |
+
"j.",
|
| 2697 |
+
"james",
|
| 2698 |
+
"jan",
|
| 2699 |
+
"jan.",
|
| 2700 |
+
"january",
|
| 2701 |
+
"japanese",
|
| 2702 |
+
"jor",
|
| 2703 |
+
"jr",
|
| 2704 |
+
"jr.",
|
| 2705 |
+
"jul",
|
| 2706 |
+
"jul.",
|
| 2707 |
+
"jun",
|
| 2708 |
+
"jun.",
|
| 2709 |
+
"juno",
|
| 2710 |
+
"just",
|
| 2711 |
+
"k",
|
| 2712 |
+
"k.",
|
| 2713 |
+
"kFi",
|
| 2714 |
+
"kan",
|
| 2715 |
+
"kan.",
|
| 2716 |
+
"kans",
|
| 2717 |
+
"kans.",
|
| 2718 |
+
"ked",
|
| 2719 |
+
"ken",
|
| 2720 |
+
"ker",
|
| 2721 |
+
"kes",
|
| 2722 |
+
"ket",
|
| 2723 |
+
"kevin",
|
| 2724 |
+
"key",
|
| 2725 |
+
"keys",
|
| 2726 |
+
"kfi",
|
| 2727 |
+
"kla",
|
| 2728 |
+
"knew",
|
| 2729 |
+
"koa",
|
| 2730 |
+
"kong",
|
| 2731 |
+
"kraken",
|
| 2732 |
+
"ky",
|
| 2733 |
+
"ky.",
|
| 2734 |
+
"k\u2019s",
|
| 2735 |
+
"l",
|
| 2736 |
+
"l.",
|
| 2737 |
+
"la",
|
| 2738 |
+
"la.",
|
| 2739 |
+
"lar",
|
| 2740 |
+
"largest",
|
| 2741 |
+
"las",
|
| 2742 |
+
"last",
|
| 2743 |
+
"lat",
|
| 2744 |
+
"late",
|
| 2745 |
+
"later",
|
| 2746 |
+
"latest",
|
| 2747 |
+
"launch",
|
| 2748 |
+
"launches",
|
| 2749 |
+
"lavish",
|
| 2750 |
+
"law",
|
| 2751 |
+
"lawmakers",
|
| 2752 |
+
"laws",
|
| 2753 |
+
"lawsuit",
|
| 2754 |
+
"lay",
|
| 2755 |
+
"layoffs",
|
| 2756 |
+
"ldo",
|
| 2757 |
+
"lds",
|
| 2758 |
+
"leaders",
|
| 2759 |
+
"leading",
|
| 2760 |
+
"learn",
|
| 2761 |
+
"learning",
|
| 2762 |
+
"leaves",
|
| 2763 |
+
"led",
|
| 2764 |
+
"left",
|
| 2765 |
+
"ler",
|
| 2766 |
+
"les",
|
| 2767 |
+
"less",
|
| 2768 |
+
"lessons",
|
| 2769 |
+
"let",
|
| 2770 |
+
"let's",
|
| 2771 |
+
"let\u2019s",
|
| 2772 |
+
"levels",
|
| 2773 |
+
"lex",
|
| 2774 |
+
"ley",
|
| 2775 |
+
"lgo",
|
| 2776 |
+
"liabilities",
|
| 2777 |
+
"lido",
|
| 2778 |
+
"lif",
|
| 2779 |
+
"light",
|
| 2780 |
+
"lik",
|
| 2781 |
+
"lining",
|
| 2782 |
+
"liquid",
|
| 2783 |
+
"liquidity",
|
| 2784 |
+
"lit",
|
| 2785 |
+
"litecoin",
|
| 2786 |
+
"ll",
|
| 2787 |
+
"ll.",
|
| 2788 |
+
"lls",
|
| 2789 |
+
"lly",
|
| 2790 |
+
"lo.",
|
| 2791 |
+
"loaned",
|
| 2792 |
+
"local",
|
| 2793 |
+
"log",
|
| 2794 |
+
"lon",
|
| 2795 |
+
"long",
|
| 2796 |
+
"look",
|
| 2797 |
+
"looking",
|
| 2798 |
+
"looks",
|
| 2799 |
+
"lor",
|
| 2800 |
+
"loses",
|
| 2801 |
+
"lot",
|
| 2802 |
+
"love\u2019",
|
| 2803 |
+
"lovin",
|
| 2804 |
+
"lovin'",
|
| 2805 |
+
"loving",
|
| 2806 |
+
"lovin\u2019",
|
| 2807 |
+
"low",
|
| 2808 |
+
"lows",
|
| 2809 |
+
"ltc",
|
| 2810 |
+
"ltd",
|
| 2811 |
+
"ltd.",
|
| 2812 |
+
"lts",
|
| 2813 |
+
"lty",
|
| 2814 |
+
"lub",
|
| 2815 |
+
"luna",
|
| 2816 |
+
"lunc",
|
| 2817 |
+
"lyn",
|
| 2818 |
+
"m",
|
| 2819 |
+
"m.",
|
| 2820 |
+
"ma'am",
|
| 2821 |
+
"machine",
|
| 2822 |
+
"macro",
|
| 2823 |
+
"madam",
|
| 2824 |
+
"made",
|
| 2825 |
+
"magic",
|
| 2826 |
+
"maintain",
|
| 2827 |
+
"major",
|
| 2828 |
+
"make",
|
| 2829 |
+
"make-or-break",
|
| 2830 |
+
"makes",
|
| 2831 |
+
"making",
|
| 2832 |
+
"mal",
|
| 2833 |
+
"man",
|
| 2834 |
+
"managing",
|
| 2835 |
+
"manchester",
|
| 2836 |
+
"manhattan",
|
| 2837 |
+
"mar",
|
| 2838 |
+
"mar.",
|
| 2839 |
+
"market",
|
| 2840 |
+
"marketplace",
|
| 2841 |
+
"markets",
|
| 2842 |
+
"mas",
|
| 2843 |
+
"mass",
|
| 2844 |
+
"mass.",
|
| 2845 |
+
"matic",
|
| 2846 |
+
"may",
|
| 2847 |
+
"ma\u2019am",
|
| 2848 |
+
"md",
|
| 2849 |
+
"md.",
|
| 2850 |
+
"means",
|
| 2851 |
+
"measures",
|
| 2852 |
+
"med",
|
| 2853 |
+
"meltdown",
|
| 2854 |
+
"memecoin",
|
| 2855 |
+
"mer",
|
| 2856 |
+
"merge",
|
| 2857 |
+
"merten",
|
| 2858 |
+
"mes",
|
| 2859 |
+
"mess",
|
| 2860 |
+
"messi",
|
| 2861 |
+
"messrs",
|
| 2862 |
+
"messrs.",
|
| 2863 |
+
"met",
|
| 2864 |
+
"metaverse",
|
| 2865 |
+
"meter",
|
| 2866 |
+
"method",
|
| 2867 |
+
"mich",
|
| 2868 |
+
"mich.",
|
| 2869 |
+
"michael",
|
| 2870 |
+
"michel",
|
| 2871 |
+
"microstrategy",
|
| 2872 |
+
"mid",
|
| 2873 |
+
"might",
|
| 2874 |
+
"milestone",
|
| 2875 |
+
"million",
|
| 2876 |
+
"millions",
|
| 2877 |
+
"miner",
|
| 2878 |
+
"miners",
|
| 2879 |
+
"miners\u2019",
|
| 2880 |
+
"mining",
|
| 2881 |
+
"minn",
|
| 2882 |
+
"minn.",
|
| 2883 |
+
"misconduct",
|
| 2884 |
+
"mismanaging",
|
| 2885 |
+
"miss",
|
| 2886 |
+
"miss.",
|
| 2887 |
+
"missile",
|
| 2888 |
+
"missing.",
|
| 2889 |
+
"mistake",
|
| 2890 |
+
"mln",
|
| 2891 |
+
"mo",
|
| 2892 |
+
"mo.",
|
| 2893 |
+
"monday",
|
| 2894 |
+
"moneygram",
|
| 2895 |
+
"mont",
|
| 2896 |
+
"mont.",
|
| 2897 |
+
"month",
|
| 2898 |
+
"months",
|
| 2899 |
+
"more",
|
| 2900 |
+
"most",
|
| 2901 |
+
"mounts",
|
| 2902 |
+
"move",
|
| 2903 |
+
"mover",
|
| 2904 |
+
"moves",
|
| 2905 |
+
"mpt",
|
| 2906 |
+
"mr",
|
| 2907 |
+
"mr.",
|
| 2908 |
+
"mrs",
|
| 2909 |
+
"mrs.",
|
| 2910 |
+
"ms",
|
| 2911 |
+
"ms.",
|
| 2912 |
+
"mt",
|
| 2913 |
+
"mt.",
|
| 2914 |
+
"mulls",
|
| 2915 |
+
"musk",
|
| 2916 |
+
"must",
|
| 2917 |
+
"mystery",
|
| 2918 |
+
"m\u2019s",
|
| 2919 |
+
"n",
|
| 2920 |
+
"n's",
|
| 2921 |
+
"n't",
|
| 2922 |
+
"n.",
|
| 2923 |
+
"n.c.",
|
| 2924 |
+
"n.d.",
|
| 2925 |
+
"n.h.",
|
| 2926 |
+
"n.j.",
|
| 2927 |
+
"n.m.",
|
| 2928 |
+
"n.y.",
|
| 2929 |
+
"na",
|
| 2930 |
+
"nal",
|
| 2931 |
+
"naming",
|
| 2932 |
+
"nc.",
|
| 2933 |
+
"nce",
|
| 2934 |
+
"nch",
|
| 2935 |
+
"ncy",
|
| 2936 |
+
"nd.",
|
| 2937 |
+
"nds",
|
| 2938 |
+
"near",
|
| 2939 |
+
"nearly",
|
| 2940 |
+
"nears",
|
| 2941 |
+
"neb",
|
| 2942 |
+
"neb.",
|
| 2943 |
+
"nebr",
|
| 2944 |
+
"nebr.",
|
| 2945 |
+
"ned",
|
| 2946 |
+
"need",
|
| 2947 |
+
"needs",
|
| 2948 |
+
"neither",
|
| 2949 |
+
"ner",
|
| 2950 |
+
"nes",
|
| 2951 |
+
"nets",
|
| 2952 |
+
"network",
|
| 2953 |
+
"nev",
|
| 2954 |
+
"nev.",
|
| 2955 |
+
"never",
|
| 2956 |
+
"new",
|
| 2957 |
+
"news",
|
| 2958 |
+
"next",
|
| 2959 |
+
"ney",
|
| 2960 |
+
"nft",
|
| 2961 |
+
"nfts",
|
| 2962 |
+
"ng.",
|
| 2963 |
+
"nge",
|
| 2964 |
+
"ngs",
|
| 2965 |
+
"ng\u2019",
|
| 2966 |
+
"nicholas",
|
| 2967 |
+
"nifty",
|
| 2968 |
+
"nike",
|
| 2969 |
+
"nike\u2019s",
|
| 2970 |
+
"ninepoint",
|
| 2971 |
+
"nit",
|
| 2972 |
+
"nks",
|
| 2973 |
+
"nly",
|
| 2974 |
+
"nn.",
|
| 2975 |
+
"no",
|
| 2976 |
+
"nor",
|
| 2977 |
+
"normal",
|
| 2978 |
+
"nos",
|
| 2979 |
+
"not",
|
| 2980 |
+
"nothin",
|
| 2981 |
+
"nothin'",
|
| 2982 |
+
"nothing",
|
| 2983 |
+
"nothin\u2019",
|
| 2984 |
+
"nouriel",
|
| 2985 |
+
"nov",
|
| 2986 |
+
"nov.",
|
| 2987 |
+
"november",
|
| 2988 |
+
"now",
|
| 2989 |
+
"ns.",
|
| 2990 |
+
"nse",
|
| 2991 |
+
"nst",
|
| 2992 |
+
"ns\u2019",
|
| 2993 |
+
"nt",
|
| 2994 |
+
"nt.",
|
| 2995 |
+
"nth",
|
| 2996 |
+
"nto",
|
| 2997 |
+
"nts",
|
| 2998 |
+
"nty",
|
| 2999 |
+
"nue",
|
| 3000 |
+
"nuff",
|
| 3001 |
+
"nuthin",
|
| 3002 |
+
"nuthin'",
|
| 3003 |
+
"nuthin\u2019",
|
| 3004 |
+
"nyt",
|
| 3005 |
+
"nzi",
|
| 3006 |
+
"n\u2019s",
|
| 3007 |
+
"n\u2019t",
|
| 3008 |
+
"o",
|
| 3009 |
+
"o'clock",
|
| 3010 |
+
"o's",
|
| 3011 |
+
"o.",
|
| 3012 |
+
"o.0",
|
| 3013 |
+
"o.O",
|
| 3014 |
+
"o.o",
|
| 3015 |
+
"o_0",
|
| 3016 |
+
"o_O",
|
| 3017 |
+
"o_o",
|
| 3018 |
+
"oad",
|
| 3019 |
+
"obi",
|
| 3020 |
+
"objection",
|
| 3021 |
+
"objective",
|
| 3022 |
+
"ock",
|
| 3023 |
+
"oct",
|
| 3024 |
+
"oct.",
|
| 3025 |
+
"october",
|
| 3026 |
+
"ode",
|
| 3027 |
+
"ody",
|
| 3028 |
+
"oes",
|
| 3029 |
+
"of",
|
| 3030 |
+
"of.",
|
| 3031 |
+
"off",
|
| 3032 |
+
"offer",
|
| 3033 |
+
"offers",
|
| 3034 |
+
"office",
|
| 3035 |
+
"offload",
|
| 3036 |
+
"oft",
|
| 3037 |
+
"oge",
|
| 3038 |
+
"ogy",
|
| 3039 |
+
"oid",
|
| 3040 |
+
"oin",
|
| 3041 |
+
"oit",
|
| 3042 |
+
"okla",
|
| 3043 |
+
"okla.",
|
| 3044 |
+
"oks",
|
| 3045 |
+
"ol",
|
| 3046 |
+
"ol'",
|
| 3047 |
+
"old",
|
| 3048 |
+
"oliver",
|
| 3049 |
+
"olo",
|
| 3050 |
+
"ol\u2019",
|
| 3051 |
+
"omc",
|
| 3052 |
+
"ome",
|
| 3053 |
+
"on",
|
| 3054 |
+
"on-chain",
|
| 3055 |
+
"one",
|
| 3056 |
+
"ong",
|
| 3057 |
+
"onk",
|
| 3058 |
+
"only",
|
| 3059 |
+
"onn",
|
| 3060 |
+
"ons",
|
| 3061 |
+
"ont",
|
| 3062 |
+
"ony",
|
| 3063 |
+
"on\ufffc",
|
| 3064 |
+
"ood",
|
| 3065 |
+
"oof",
|
| 3066 |
+
"ook",
|
| 3067 |
+
"ool",
|
| 3068 |
+
"oom",
|
| 3069 |
+
"oon",
|
| 3070 |
+
"open",
|
| 3071 |
+
"operations",
|
| 3072 |
+
"ops",
|
| 3073 |
+
"optimistic",
|
| 3074 |
+
"or",
|
| 3075 |
+
"orb",
|
| 3076 |
+
"ore",
|
| 3077 |
+
"ore.",
|
| 3078 |
+
"org",
|
| 3079 |
+
"ork",
|
| 3080 |
+
"orm",
|
| 3081 |
+
"orn",
|
| 3082 |
+
"orp",
|
| 3083 |
+
"ors",
|
| 3084 |
+
"ort",
|
| 3085 |
+
"os.",
|
| 3086 |
+
"ose",
|
| 3087 |
+
"osh",
|
| 3088 |
+
"oss",
|
| 3089 |
+
"ost",
|
| 3090 |
+
"os\u2019",
|
| 3091 |
+
"other",
|
| 3092 |
+
"ots",
|
| 3093 |
+
"ott",
|
| 3094 |
+
"ot\u2019",
|
| 3095 |
+
"ought",
|
| 3096 |
+
"oup",
|
| 3097 |
+
"our",
|
| 3098 |
+
"ous",
|
| 3099 |
+
"out",
|
| 3100 |
+
"outflows",
|
| 3101 |
+
"ov.",
|
| 3102 |
+
"ove",
|
| 3103 |
+
"over",
|
| 3104 |
+
"overall",
|
| 3105 |
+
"overnight",
|
| 3106 |
+
"own",
|
| 3107 |
+
"ows",
|
| 3108 |
+
"o\u2019clock",
|
| 3109 |
+
"o\u2019leary",
|
| 3110 |
+
"o\u2019s",
|
| 3111 |
+
"p",
|
| 3112 |
+
"p.",
|
| 3113 |
+
"p.m",
|
| 3114 |
+
"p.m.",
|
| 3115 |
+
"pa",
|
| 3116 |
+
"pa.",
|
| 3117 |
+
"pain",
|
| 3118 |
+
"palihapitiya",
|
| 3119 |
+
"panther",
|
| 3120 |
+
"paramount",
|
| 3121 |
+
"partner",
|
| 3122 |
+
"partners",
|
| 3123 |
+
"partnership",
|
| 3124 |
+
"parts",
|
| 3125 |
+
"past",
|
| 3126 |
+
"path",
|
| 3127 |
+
"pausing",
|
| 3128 |
+
"paxos",
|
| 3129 |
+
"paying",
|
| 3130 |
+
"payments",
|
| 3131 |
+
"ped",
|
| 3132 |
+
"pen",
|
| 3133 |
+
"per",
|
| 3134 |
+
"performers",
|
| 3135 |
+
"perspective",
|
| 3136 |
+
"pes",
|
| 3137 |
+
"peter",
|
| 3138 |
+
"ph",
|
| 3139 |
+
"ph.d.",
|
| 3140 |
+
"phishing",
|
| 3141 |
+
"piece",
|
| 3142 |
+
"pilot",
|
| 3143 |
+
"planners",
|
| 3144 |
+
"plans",
|
| 3145 |
+
"platform",
|
| 3146 |
+
"play",
|
| 3147 |
+
"ple",
|
| 3148 |
+
"pleads",
|
| 3149 |
+
"plummeted",
|
| 3150 |
+
"pm",
|
| 3151 |
+
"poland",
|
| 3152 |
+
"police",
|
| 3153 |
+
"polkadot",
|
| 3154 |
+
"polygon",
|
| 3155 |
+
"polygon\u2019s",
|
| 3156 |
+
"pompliano",
|
| 3157 |
+
"ponzi",
|
| 3158 |
+
"popular",
|
| 3159 |
+
"popularity",
|
| 3160 |
+
"positive",
|
| 3161 |
+
"possible",
|
| 3162 |
+
"pot",
|
| 3163 |
+
"potential",
|
| 3164 |
+
"ppi",
|
| 3165 |
+
"pps",
|
| 3166 |
+
"ppy",
|
| 3167 |
+
"pr.",
|
| 3168 |
+
"pre",
|
| 3169 |
+
"pre-fee",
|
| 3170 |
+
"pre-market",
|
| 3171 |
+
"preaches",
|
| 3172 |
+
"predict",
|
| 3173 |
+
"prediction",
|
| 3174 |
+
"predictions",
|
| 3175 |
+
"predicts",
|
| 3176 |
+
"prepared",
|
| 3177 |
+
"presidential",
|
| 3178 |
+
"pressure",
|
| 3179 |
+
"prevented",
|
| 3180 |
+
"price",
|
| 3181 |
+
"prices",
|
| 3182 |
+
"primary",
|
| 3183 |
+
"prior",
|
| 3184 |
+
"privacy",
|
| 3185 |
+
"private",
|
| 3186 |
+
"probed",
|
| 3187 |
+
"probes",
|
| 3188 |
+
"process",
|
| 3189 |
+
"proclaimed",
|
| 3190 |
+
"prof",
|
| 3191 |
+
"prof.",
|
| 3192 |
+
"professionals",
|
| 3193 |
+
"profit",
|
| 3194 |
+
"profitable",
|
| 3195 |
+
"projects",
|
| 3196 |
+
"promise",
|
| 3197 |
+
"proof",
|
| 3198 |
+
"proof-of-reserve",
|
| 3199 |
+
"proof-of-reserves",
|
| 3200 |
+
"proposed",
|
| 3201 |
+
"pros",
|
| 3202 |
+
"protocol",
|
| 3203 |
+
"providers",
|
| 3204 |
+
"pse",
|
| 3205 |
+
"pt.",
|
| 3206 |
+
"pto",
|
| 3207 |
+
"publishes",
|
| 3208 |
+
"puff",
|
| 3209 |
+
"pull",
|
| 3210 |
+
"pumped",
|
| 3211 |
+
"push",
|
| 3212 |
+
"pushed",
|
| 3213 |
+
"pushes",
|
| 3214 |
+
"put",
|
| 3215 |
+
"q",
|
| 3216 |
+
"q.",
|
| 3217 |
+
"q3",
|
| 3218 |
+
"qnt",
|
| 3219 |
+
"quant",
|
| 3220 |
+
"questions",
|
| 3221 |
+
"queue",
|
| 3222 |
+
"r",
|
| 3223 |
+
"r.",
|
| 3224 |
+
"rad",
|
| 3225 |
+
"raised",
|
| 3226 |
+
"ral",
|
| 3227 |
+
"rallies",
|
| 3228 |
+
"rally",
|
| 3229 |
+
"ram",
|
| 3230 |
+
"range",
|
| 3231 |
+
"rate",
|
| 3232 |
+
"ratio",
|
| 3233 |
+
"raw",
|
| 3234 |
+
"ray",
|
| 3235 |
+
"rce",
|
| 3236 |
+
"rch",
|
| 3237 |
+
"re",
|
| 3238 |
+
"re.",
|
| 3239 |
+
"rea",
|
| 3240 |
+
"reaches",
|
| 3241 |
+
"reason",
|
| 3242 |
+
"rebounds",
|
| 3243 |
+
"recession",
|
| 3244 |
+
"recover",
|
| 3245 |
+
"recovered",
|
| 3246 |
+
"recovery",
|
| 3247 |
+
"red",
|
| 3248 |
+
"redlining\u2019",
|
| 3249 |
+
"ree",
|
| 3250 |
+
"refund",
|
| 3251 |
+
"regulation",
|
| 3252 |
+
"regulator",
|
| 3253 |
+
"regulators",
|
| 3254 |
+
"related",
|
| 3255 |
+
"relief",
|
| 3256 |
+
"removal",
|
| 3257 |
+
"remove",
|
| 3258 |
+
"rep",
|
| 3259 |
+
"rep.",
|
| 3260 |
+
"repayment",
|
| 3261 |
+
"report",
|
| 3262 |
+
"reportedly",
|
| 3263 |
+
"reports",
|
| 3264 |
+
"represent",
|
| 3265 |
+
"required",
|
| 3266 |
+
"res",
|
| 3267 |
+
"research",
|
| 3268 |
+
"reserves",
|
| 3269 |
+
"reserves\u2019",
|
| 3270 |
+
"resistance",
|
| 3271 |
+
"results",
|
| 3272 |
+
"ret",
|
| 3273 |
+
"returns",
|
| 3274 |
+
"rev",
|
| 3275 |
+
"rev.",
|
| 3276 |
+
"reveals",
|
| 3277 |
+
"revenue",
|
| 3278 |
+
"reverse",
|
| 3279 |
+
"review",
|
| 3280 |
+
"revises",
|
| 3281 |
+
"revival",
|
| 3282 |
+
"revolution",
|
| 3283 |
+
"rge",
|
| 3284 |
+
"ric",
|
| 3285 |
+
"rich",
|
| 3286 |
+
"rights",
|
| 3287 |
+
"rin",
|
| 3288 |
+
"rio",
|
| 3289 |
+
"ripple",
|
| 3290 |
+
"rise",
|
| 3291 |
+
"rises",
|
| 3292 |
+
"risk",
|
| 3293 |
+
"rivals",
|
| 3294 |
+
"riz",
|
| 3295 |
+
"rk.",
|
| 3296 |
+
"rld",
|
| 3297 |
+
"rly",
|
| 3298 |
+
"rms",
|
| 3299 |
+
"rmy",
|
| 3300 |
+
"rns",
|
| 3301 |
+
"rn\u2019",
|
| 3302 |
+
"robinhood",
|
| 3303 |
+
"rof",
|
| 3304 |
+
"rol",
|
| 3305 |
+
"rom",
|
| 3306 |
+
"ron",
|
| 3307 |
+
"ronaldo",
|
| 3308 |
+
"rop",
|
| 3309 |
+
"ros",
|
| 3310 |
+
"roubini",
|
| 3311 |
+
"round",
|
| 3312 |
+
"royal",
|
| 3313 |
+
"rp.",
|
| 3314 |
+
"rra",
|
| 3315 |
+
"rry",
|
| 3316 |
+
"rs.",
|
| 3317 |
+
"rse",
|
| 3318 |
+
"rsi",
|
| 3319 |
+
"rst",
|
| 3320 |
+
"rs\u2019",
|
| 3321 |
+
"rtfkt",
|
| 3322 |
+
"rth",
|
| 3323 |
+
"rts",
|
| 3324 |
+
"rugpull",
|
| 3325 |
+
"rum",
|
| 3326 |
+
"rumors",
|
| 3327 |
+
"rush",
|
| 3328 |
+
"russian",
|
| 3329 |
+
"rve",
|
| 3330 |
+
"s",
|
| 3331 |
+
"s's",
|
| 3332 |
+
"s.",
|
| 3333 |
+
"s.c.",
|
| 3334 |
+
"saga",
|
| 3335 |
+
"salary",
|
| 3336 |
+
"salvador",
|
| 3337 |
+
"sam",
|
| 3338 |
+
"same",
|
| 3339 |
+
"satoshi",
|
| 3340 |
+
"save",
|
| 3341 |
+
"savor",
|
| 3342 |
+
"say",
|
| 3343 |
+
"saylor",
|
| 3344 |
+
"says",
|
| 3345 |
+
"sbf",
|
| 3346 |
+
"scale",
|
| 3347 |
+
"scam",
|
| 3348 |
+
"scaramucci",
|
| 3349 |
+
"scenario",
|
| 3350 |
+
"scheme",
|
| 3351 |
+
"schiff",
|
| 3352 |
+
"scientific",
|
| 3353 |
+
"seal",
|
| 3354 |
+
"sec",
|
| 3355 |
+
"secret",
|
| 3356 |
+
"securities",
|
| 3357 |
+
"security",
|
| 3358 |
+
"sed",
|
| 3359 |
+
"see",
|
| 3360 |
+
"seeks",
|
| 3361 |
+
"sees",
|
| 3362 |
+
"seizes",
|
| 3363 |
+
"self",
|
| 3364 |
+
"self-custody",
|
| 3365 |
+
"self-proclaimed",
|
| 3366 |
+
"sell",
|
| 3367 |
+
"sells",
|
| 3368 |
+
"sen",
|
| 3369 |
+
"sen.",
|
| 3370 |
+
"senate",
|
| 3371 |
+
"sends",
|
| 3372 |
+
"sense",
|
| 3373 |
+
"sep",
|
| 3374 |
+
"sep.",
|
| 3375 |
+
"separate",
|
| 3376 |
+
"sept",
|
| 3377 |
+
"sept.",
|
| 3378 |
+
"ser",
|
| 3379 |
+
"serial",
|
| 3380 |
+
"serum",
|
| 3381 |
+
"ses",
|
| 3382 |
+
"set",
|
| 3383 |
+
"sets",
|
| 3384 |
+
"settlement",
|
| 3385 |
+
"seven",
|
| 3386 |
+
"several",
|
| 3387 |
+
"sh.",
|
| 3388 |
+
"sha",
|
| 3389 |
+
"shadier",
|
| 3390 |
+
"shall",
|
| 3391 |
+
"share",
|
| 3392 |
+
"shares",
|
| 3393 |
+
"sharing",
|
| 3394 |
+
"shark",
|
| 3395 |
+
"she",
|
| 3396 |
+
"she's",
|
| 3397 |
+
"sheet",
|
| 3398 |
+
"sherman",
|
| 3399 |
+
"she\u2019s",
|
| 3400 |
+
"shi",
|
| 3401 |
+
"shib",
|
| 3402 |
+
"shiba",
|
| 3403 |
+
"shib\u2019s",
|
| 3404 |
+
"shifts",
|
| 3405 |
+
"short-term",
|
| 3406 |
+
"shorts",
|
| 3407 |
+
"should",
|
| 3408 |
+
"showing",
|
| 3409 |
+
"shows",
|
| 3410 |
+
"shuts",
|
| 3411 |
+
"shutting",
|
| 3412 |
+
"sia",
|
| 3413 |
+
"sic",
|
| 3414 |
+
"signaling",
|
| 3415 |
+
"signs",
|
| 3416 |
+
"silbert",
|
| 3417 |
+
"silver",
|
| 3418 |
+
"since",
|
| 3419 |
+
"sis",
|
| 3420 |
+
"sks",
|
| 3421 |
+
"skybridge",
|
| 3422 |
+
"skyrockets",
|
| 3423 |
+
"slammed",
|
| 3424 |
+
"slams",
|
| 3425 |
+
"slide",
|
| 3426 |
+
"slight",
|
| 3427 |
+
"slips",
|
| 3428 |
+
"sma",
|
| 3429 |
+
"small",
|
| 3430 |
+
"snapshots",
|
| 3431 |
+
"snowden",
|
| 3432 |
+
"soars",
|
| 3433 |
+
"sol",
|
| 3434 |
+
"solana",
|
| 3435 |
+
"sold",
|
| 3436 |
+
"somethin",
|
| 3437 |
+
"somethin'",
|
| 3438 |
+
"something",
|
| 3439 |
+
"somethin\u2019",
|
| 3440 |
+
"son",
|
| 3441 |
+
"soon",
|
| 3442 |
+
"sound",
|
| 3443 |
+
"space",
|
| 3444 |
+
"spark",
|
| 3445 |
+
"spike",
|
| 3446 |
+
"spikes",
|
| 3447 |
+
"split",
|
| 3448 |
+
"sponsorship",
|
| 3449 |
+
"spot",
|
| 3450 |
+
"srs",
|
| 3451 |
+
"ss.",
|
| 3452 |
+
"ssi",
|
| 3453 |
+
"st",
|
| 3454 |
+
"st.",
|
| 3455 |
+
"stablecoins",
|
| 3456 |
+
"staff",
|
| 3457 |
+
"staking",
|
| 3458 |
+
"start",
|
| 3459 |
+
"startup",
|
| 3460 |
+
"state",
|
| 3461 |
+
"stay",
|
| 3462 |
+
"still",
|
| 3463 |
+
"stock",
|
| 3464 |
+
"stocks",
|
| 3465 |
+
"storage",
|
| 3466 |
+
"strategist",
|
| 3467 |
+
"strikes",
|
| 3468 |
+
"strong",
|
| 3469 |
+
"structural",
|
| 3470 |
+
"sts",
|
| 3471 |
+
"su",
|
| 3472 |
+
"submits",
|
| 3473 |
+
"suddenly",
|
| 3474 |
+
"summary",
|
| 3475 |
+
"supervision",
|
| 3476 |
+
"support",
|
| 3477 |
+
"suppress",
|
| 3478 |
+
"suppressed",
|
| 3479 |
+
"surges",
|
| 3480 |
+
"surrounding",
|
| 3481 |
+
"survive",
|
| 3482 |
+
"suspends",
|
| 3483 |
+
"suspension",
|
| 3484 |
+
"suspicions",
|
| 3485 |
+
"switch",
|
| 3486 |
+
"s\u2019s",
|
| 3487 |
+
"t",
|
| 3488 |
+
"t's",
|
| 3489 |
+
"t.",
|
| 3490 |
+
"ta",
|
| 3491 |
+
"take",
|
| 3492 |
+
"tal",
|
| 3493 |
+
"talking",
|
| 3494 |
+
"tan",
|
| 3495 |
+
"tanks",
|
| 3496 |
+
"tank\u2019s",
|
| 3497 |
+
"tapscott",
|
| 3498 |
+
"targets",
|
| 3499 |
+
"tax",
|
| 3500 |
+
"tay",
|
| 3501 |
+
"tch",
|
| 3502 |
+
"tcy",
|
| 3503 |
+
"td.",
|
| 3504 |
+
"team",
|
| 3505 |
+
"tech",
|
| 3506 |
+
"technology",
|
| 3507 |
+
"ted",
|
| 3508 |
+
"tell",
|
| 3509 |
+
"tem",
|
| 3510 |
+
"ten",
|
| 3511 |
+
"tenn",
|
| 3512 |
+
"tenn.",
|
| 3513 |
+
"ter",
|
| 3514 |
+
"terminates",
|
| 3515 |
+
"terra",
|
| 3516 |
+
"tes",
|
| 3517 |
+
"than",
|
| 3518 |
+
"that",
|
| 3519 |
+
"that's",
|
| 3520 |
+
"that\u2019s",
|
| 3521 |
+
"the",
|
| 3522 |
+
"theft",
|
| 3523 |
+
"their",
|
| 3524 |
+
"their\u2026",
|
| 3525 |
+
"them",
|
| 3526 |
+
"themed",
|
| 3527 |
+
"theories",
|
| 3528 |
+
"there",
|
| 3529 |
+
"there's",
|
| 3530 |
+
"there\u2019s",
|
| 3531 |
+
"these",
|
| 3532 |
+
"they",
|
| 3533 |
+
"thin",
|
| 3534 |
+
"thing",
|
| 3535 |
+
"this",
|
| 3536 |
+
"this's",
|
| 3537 |
+
"this\u2019s",
|
| 3538 |
+
"thm",
|
| 3539 |
+
"those",
|
| 3540 |
+
"thoughts",
|
| 3541 |
+
"threaten",
|
| 3542 |
+
"threatens",
|
| 3543 |
+
"three",
|
| 3544 |
+
"through",
|
| 3545 |
+
"ths",
|
| 3546 |
+
"tic",
|
| 3547 |
+
"tied",
|
| 3548 |
+
"ties",
|
| 3549 |
+
"til",
|
| 3550 |
+
"tim",
|
| 3551 |
+
"time",
|
| 3552 |
+
"tio",
|
| 3553 |
+
"tip",
|
| 3554 |
+
"tly",
|
| 3555 |
+
"to",
|
| 3556 |
+
"tokens",
|
| 3557 |
+
"tokensoft",
|
| 3558 |
+
"tom",
|
| 3559 |
+
"too",
|
| 3560 |
+
"took",
|
| 3561 |
+
"tool",
|
| 3562 |
+
"top",
|
| 3563 |
+
"tor",
|
| 3564 |
+
"torn",
|
| 3565 |
+
"tos",
|
| 3566 |
+
"touching",
|
| 3567 |
+
"trade",
|
| 3568 |
+
"trader",
|
| 3569 |
+
"tradfi",
|
| 3570 |
+
"trading",
|
| 3571 |
+
"trailer",
|
| 3572 |
+
"transactions",
|
| 3573 |
+
"transferred",
|
| 3574 |
+
"transfers",
|
| 3575 |
+
"transparency",
|
| 3576 |
+
"trees",
|
| 3577 |
+
"trends",
|
| 3578 |
+
"trial",
|
| 3579 |
+
"triangle",
|
| 3580 |
+
"trigger",
|
| 3581 |
+
"trillion",
|
| 3582 |
+
"tron",
|
| 3583 |
+
"trust",
|
| 3584 |
+
"truth",
|
| 3585 |
+
"try",
|
| 3586 |
+
"ts\u2019",
|
| 3587 |
+
"tue",
|
| 3588 |
+
"tuesday",
|
| 3589 |
+
"tuesday\u2019s",
|
| 3590 |
+
"tup",
|
| 3591 |
+
"turbulence",
|
| 3592 |
+
"turn",
|
| 3593 |
+
"turning",
|
| 3594 |
+
"turns",
|
| 3595 |
+
"tvo",
|
| 3596 |
+
"tweets",
|
| 3597 |
+
"twitter",
|
| 3598 |
+
"two",
|
| 3599 |
+
"t\u2019s",
|
| 3600 |
+
"u",
|
| 3601 |
+
"u.",
|
| 3602 |
+
"u.s.",
|
| 3603 |
+
"ual",
|
| 3604 |
+
"uct",
|
| 3605 |
+
"uel",
|
| 3606 |
+
"ues",
|
| 3607 |
+
"uff",
|
| 3608 |
+
"ug.",
|
| 3609 |
+
"uge",
|
| 3610 |
+
"ugh",
|
| 3611 |
+
"uid",
|
| 3612 |
+
"uit",
|
| 3613 |
+
"uk",
|
| 3614 |
+
"ukraine",
|
| 3615 |
+
"uk\u2019s",
|
| 3616 |
+
"ul.",
|
| 3617 |
+
"uld",
|
| 3618 |
+
"ull",
|
| 3619 |
+
"ult",
|
| 3620 |
+
"ume",
|
| 3621 |
+
"un.",
|
| 3622 |
+
"una",
|
| 3623 |
+
"unc",
|
| 3624 |
+
"uncertainty",
|
| 3625 |
+
"unchanged",
|
| 3626 |
+
"und",
|
| 3627 |
+
"under",
|
| 3628 |
+
"underlying",
|
| 3629 |
+
"understand",
|
| 3630 |
+
"uniswap",
|
| 3631 |
+
"unit",
|
| 3632 |
+
"united",
|
| 3633 |
+
"unknown",
|
| 3634 |
+
"uno",
|
| 3635 |
+
"unpacking",
|
| 3636 |
+
"unraveled",
|
| 3637 |
+
"unt",
|
| 3638 |
+
"until",
|
| 3639 |
+
"up",
|
| 3640 |
+
"upcoming",
|
| 3641 |
+
"update",
|
| 3642 |
+
"updates",
|
| 3643 |
+
"upt",
|
| 3644 |
+
"ure",
|
| 3645 |
+
"urges",
|
| 3646 |
+
"urn",
|
| 3647 |
+
"urs",
|
| 3648 |
+
"urt",
|
| 3649 |
+
"us",
|
| 3650 |
+
"use",
|
| 3651 |
+
"used",
|
| 3652 |
+
"user",
|
| 3653 |
+
"users",
|
| 3654 |
+
"ush",
|
| 3655 |
+
"using",
|
| 3656 |
+
"usk",
|
| 3657 |
+
"ust",
|
| 3658 |
+
"usual",
|
| 3659 |
+
"us\u2019",
|
| 3660 |
+
"uth",
|
| 3661 |
+
"uts",
|
| 3662 |
+
"uys",
|
| 3663 |
+
"v",
|
| 3664 |
+
"v.",
|
| 3665 |
+
"v.s",
|
| 3666 |
+
"v.s.",
|
| 3667 |
+
"v.v",
|
| 3668 |
+
"v_v",
|
| 3669 |
+
"va",
|
| 3670 |
+
"va.",
|
| 3671 |
+
"val",
|
| 3672 |
+
"van",
|
| 3673 |
+
"vax",
|
| 3674 |
+
"ve",
|
| 3675 |
+
"ven",
|
| 3676 |
+
"venture",
|
| 3677 |
+
"ver",
|
| 3678 |
+
"ves",
|
| 3679 |
+
"ve\u2019",
|
| 3680 |
+
"victim",
|
| 3681 |
+
"vid",
|
| 3682 |
+
"vil",
|
| 3683 |
+
"vin",
|
| 3684 |
+
"virtue",
|
| 3685 |
+
"visa",
|
| 3686 |
+
"vitalik",
|
| 3687 |
+
"volume",
|
| 3688 |
+
"volumes",
|
| 3689 |
+
"vor",
|
| 3690 |
+
"voyager",
|
| 3691 |
+
"vs",
|
| 3692 |
+
"vs.",
|
| 3693 |
+
"vulnerability",
|
| 3694 |
+
"w",
|
| 3695 |
+
"w's",
|
| 3696 |
+
"w.",
|
| 3697 |
+
"w/o",
|
| 3698 |
+
"wake",
|
| 3699 |
+
"wallet",
|
| 3700 |
+
"wallets",
|
| 3701 |
+
"want",
|
| 3702 |
+
"wap",
|
| 3703 |
+
"war",
|
| 3704 |
+
"war-torn",
|
| 3705 |
+
"warning",
|
| 3706 |
+
"warns",
|
| 3707 |
+
"was",
|
| 3708 |
+
"wash",
|
| 3709 |
+
"wash.",
|
| 3710 |
+
"watch",
|
| 3711 |
+
"way",
|
| 3712 |
+
"ways",
|
| 3713 |
+
"we",
|
| 3714 |
+
"weak",
|
| 3715 |
+
"weakening",
|
| 3716 |
+
"web3",
|
| 3717 |
+
"week",
|
| 3718 |
+
"weird",
|
| 3719 |
+
"went",
|
| 3720 |
+
"wer",
|
| 3721 |
+
"were",
|
| 3722 |
+
"whale",
|
| 3723 |
+
"whales",
|
| 3724 |
+
"what",
|
| 3725 |
+
"what's",
|
| 3726 |
+
"what\u2019s",
|
| 3727 |
+
"when",
|
| 3728 |
+
"when's",
|
| 3729 |
+
"when\u2019s",
|
| 3730 |
+
"where",
|
| 3731 |
+
"where's",
|
| 3732 |
+
"where\u2019s",
|
| 3733 |
+
"which",
|
| 3734 |
+
"who",
|
| 3735 |
+
"who's",
|
| 3736 |
+
"who\u2019s",
|
| 3737 |
+
"why",
|
| 3738 |
+
"why's",
|
| 3739 |
+
"why\u2019s",
|
| 3740 |
+
"wilder",
|
| 3741 |
+
"will",
|
| 3742 |
+
"winklevoss",
|
| 3743 |
+
"winner",
|
| 3744 |
+
"wins",
|
| 3745 |
+
"winter",
|
| 3746 |
+
"wis",
|
| 3747 |
+
"wis.",
|
| 3748 |
+
"with",
|
| 3749 |
+
"withdraw",
|
| 3750 |
+
"withdrawals",
|
| 3751 |
+
"within",
|
| 3752 |
+
"without",
|
| 3753 |
+
"witness",
|
| 3754 |
+
"wo",
|
| 3755 |
+
"work",
|
| 3756 |
+
"world",
|
| 3757 |
+
"worse",
|
| 3758 |
+
"worth",
|
| 3759 |
+
"would",
|
| 3760 |
+
"wrong",
|
| 3761 |
+
"wth",
|
| 3762 |
+
"wyre",
|
| 3763 |
+
"w\u2019s",
|
| 3764 |
+
"x",
|
| 3765 |
+
"x'",
|
| 3766 |
+
"x'x",
|
| 3767 |
+
"x'xxxx",
|
| 3768 |
+
"x.",
|
| 3769 |
+
"x.X",
|
| 3770 |
+
"x.d",
|
| 3771 |
+
"x.x",
|
| 3772 |
+
"x.x.",
|
| 3773 |
+
"x/x",
|
| 3774 |
+
"xD",
|
| 3775 |
+
"xDD",
|
| 3776 |
+
"xX",
|
| 3777 |
+
"xXX",
|
| 3778 |
+
"x_X",
|
| 3779 |
+
"x_d",
|
| 3780 |
+
"x_x",
|
| 3781 |
+
"xd",
|
| 3782 |
+
"xdd",
|
| 3783 |
+
"xed",
|
| 3784 |
+
"xos",
|
| 3785 |
+
"xrp",
|
| 3786 |
+
"xx",
|
| 3787 |
+
"xx'",
|
| 3788 |
+
"xx'x",
|
| 3789 |
+
"xx'xx",
|
| 3790 |
+
"xx-xxxx",
|
| 3791 |
+
"xx.",
|
| 3792 |
+
"xxx",
|
| 3793 |
+
"xxx'x",
|
| 3794 |
+
"xxx-xxx",
|
| 3795 |
+
"xxx-xxxx",
|
| 3796 |
+
"xxx.",
|
| 3797 |
+
"xxx.xxx",
|
| 3798 |
+
"xxx/xx",
|
| 3799 |
+
"xxxd",
|
| 3800 |
+
"xxxx",
|
| 3801 |
+
"xxxx'",
|
| 3802 |
+
"xxxx'x",
|
| 3803 |
+
"xxxx-xx-xxxx",
|
| 3804 |
+
"xxxx-xxx",
|
| 3805 |
+
"xxxx-xxxx",
|
| 3806 |
+
"xxxx.",
|
| 3807 |
+
"xxxx.xx",
|
| 3808 |
+
"xxxx.xxx",
|
| 3809 |
+
"xxxx.xx\u2019x",
|
| 3810 |
+
"xxxx\u2019",
|
| 3811 |
+
"xxxx\u2019x",
|
| 3812 |
+
"xxxx\u2026",
|
| 3813 |
+
"xxxx\ufffc",
|
| 3814 |
+
"xxx\u2019",
|
| 3815 |
+
"xxx\u2019x",
|
| 3816 |
+
"xx\u2019",
|
| 3817 |
+
"xx\u2019x",
|
| 3818 |
+
"xx\u2019xx",
|
| 3819 |
+
"x\u2019",
|
| 3820 |
+
"x\u2019s",
|
| 3821 |
+
"x\u2019x",
|
| 3822 |
+
"x\u2019xxxx",
|
| 3823 |
+
"x\ufe35x",
|
| 3824 |
+
"y",
|
| 3825 |
+
"y'",
|
| 3826 |
+
"y's",
|
| 3827 |
+
"y.",
|
| 3828 |
+
"yakoa",
|
| 3829 |
+
"yal",
|
| 3830 |
+
"year",
|
| 3831 |
+
"years",
|
| 3832 |
+
"yielding",
|
| 3833 |
+
"yle",
|
| 3834 |
+
"york",
|
| 3835 |
+
"you",
|
| 3836 |
+
"your",
|
| 3837 |
+
"youtuber",
|
| 3838 |
+
"yre",
|
| 3839 |
+
"yst",
|
| 3840 |
+
"y\u2019",
|
| 3841 |
+
"y\u2019s",
|
| 3842 |
+
"z",
|
| 3843 |
+
"z.",
|
| 3844 |
+
"zero",
|
| 3845 |
+
"zes",
|
| 3846 |
+
"zhao",
|
| 3847 |
+
"zhu",
|
| 3848 |
+
"|",
|
| 3849 |
+
"||",
|
| 3850 |
+
"}",
|
| 3851 |
+
"\u00a0",
|
| 3852 |
+
"\u00ac",
|
| 3853 |
+
"\u00ac_\u00ac",
|
| 3854 |
+
"\u00af",
|
| 3855 |
+
"\u00af\\(x)/\u00af",
|
| 3856 |
+
"\u00af\\(\u30c4)/\u00af",
|
| 3857 |
+
"\u00b0",
|
| 3858 |
+
"\u00b0C.",
|
| 3859 |
+
"\u00b0F.",
|
| 3860 |
+
"\u00b0K.",
|
| 3861 |
+
"\u00b0X.",
|
| 3862 |
+
"\u00b0c.",
|
| 3863 |
+
"\u00b0f.",
|
| 3864 |
+
"\u00b0k.",
|
| 3865 |
+
"\u00b0x.",
|
| 3866 |
+
"\u00e4",
|
| 3867 |
+
"\u00e4.",
|
| 3868 |
+
"\u00f6",
|
| 3869 |
+
"\u00f6.",
|
| 3870 |
+
"\u00fc",
|
| 3871 |
+
"\u00fc.",
|
| 3872 |
+
"\u0ca0",
|
| 3873 |
+
"\u0ca0_\u0ca0",
|
| 3874 |
+
"\u0ca0\ufe35\u0ca0",
|
| 3875 |
+
"\u2013",
|
| 3876 |
+
"\u2014",
|
| 3877 |
+
"\u2018",
|
| 3878 |
+
"\u2018Altruistic\u2019",
|
| 3879 |
+
"\u2018Deserves",
|
| 3880 |
+
"\u2018Did",
|
| 3881 |
+
"\u2018Earn\u2019",
|
| 3882 |
+
"\u2018S",
|
| 3883 |
+
"\u2018Sam",
|
| 3884 |
+
"\u2018Sell",
|
| 3885 |
+
"\u2018X",
|
| 3886 |
+
"\u2018Xxx",
|
| 3887 |
+
"\u2018Xxxx",
|
| 3888 |
+
"\u2018Xxxxx",
|
| 3889 |
+
"\u2018Xxxxx\u2019",
|
| 3890 |
+
"\u2018Xxxx\u2019",
|
| 3891 |
+
"\u2018altruistic\u2019",
|
| 3892 |
+
"\u2018billionaire",
|
| 3893 |
+
"\u2018bullshit",
|
| 3894 |
+
"\u2018deserves",
|
| 3895 |
+
"\u2018did",
|
| 3896 |
+
"\u2018earn\u2019",
|
| 3897 |
+
"\u2018fine",
|
| 3898 |
+
"\u2018maintains",
|
| 3899 |
+
"\u2018naming",
|
| 3900 |
+
"\u2018not",
|
| 3901 |
+
"\u2018s",
|
| 3902 |
+
"\u2018sad\u2019",
|
| 3903 |
+
"\u2018sam",
|
| 3904 |
+
"\u2018sell",
|
| 3905 |
+
"\u2018snapshot\u2019",
|
| 3906 |
+
"\u2018x",
|
| 3907 |
+
"\u2018xxx",
|
| 3908 |
+
"\u2018xxxx",
|
| 3909 |
+
"\u2018xxxx\u2019",
|
| 3910 |
+
"\u2018xxx\u2019",
|
| 3911 |
+
"\u2019",
|
| 3912 |
+
"\u2019-(",
|
| 3913 |
+
"\u2019-)",
|
| 3914 |
+
"\u2019Cause",
|
| 3915 |
+
"\u2019Cos",
|
| 3916 |
+
"\u2019Coz",
|
| 3917 |
+
"\u2019Cuz",
|
| 3918 |
+
"\u2019S",
|
| 3919 |
+
"\u2019X",
|
| 3920 |
+
"\u2019Xxx",
|
| 3921 |
+
"\u2019Xxxxx",
|
| 3922 |
+
"\u2019am",
|
| 3923 |
+
"\u2019bout",
|
| 3924 |
+
"\u2019cause",
|
| 3925 |
+
"\u2019cos",
|
| 3926 |
+
"\u2019coz",
|
| 3927 |
+
"\u2019cuz",
|
| 3928 |
+
"\u2019d",
|
| 3929 |
+
"\u2019em",
|
| 3930 |
+
"\u2019ll",
|
| 3931 |
+
"\u2019m",
|
| 3932 |
+
"\u2019nuff",
|
| 3933 |
+
"\u2019re",
|
| 3934 |
+
"\u2019s",
|
| 3935 |
+
"\u2019ve",
|
| 3936 |
+
"\u2019x",
|
| 3937 |
+
"\u2019xx",
|
| 3938 |
+
"\u2019xxx",
|
| 3939 |
+
"\u2019xxxx",
|
| 3940 |
+
"\u2019y",
|
| 3941 |
+
"\u2019\u2019",
|
| 3942 |
+
"\u201c",
|
| 3943 |
+
"\u201cauthorized\u201d",
|
| 3944 |
+
"\u201cxxxx\u201d",
|
| 3945 |
+
"\u2501",
|
| 3946 |
+
"\u253b",
|
| 3947 |
+
"\u253b\u2501\u253b",
|
| 3948 |
+
"\u256f",
|
| 3949 |
+
"\u25a1",
|
| 3950 |
+
"\ufe35",
|
| 3951 |
+
"\uff09",
|
| 3952 |
+
"\ud83e\udd73"
|
| 3953 |
+
]
|
vocab/vectors
ADDED
|
Binary file (128 Bytes). View file
|
|
|
vocab/vectors.cfg
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"mode":"default"
|
| 3 |
+
}
|