diff --git a/.gitattributes b/.gitattributes index a6344aac8c09253b3b630fb776ae94478aa0275b..43ad48149335a4c048e906827a311f54d70a1aea 100644 --- a/.gitattributes +++ b/.gitattributes @@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text *.zip filter=lfs diff=lfs merge=lfs -text *.zst filter=lfs diff=lfs merge=lfs -text *tfevents* filter=lfs diff=lfs merge=lfs -text +en_ner_fashion-any-py3-none-any.whl filter=lfs diff=lfs merge=lfs -text +tok2vec/model filter=lfs diff=lfs merge=lfs -text diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..65f075f1d8c687bb9d428f927b953429cb1ef02e --- /dev/null +++ b/README.md @@ -0,0 +1,56 @@ +--- +tags: +- spacy +- token-classification +language: +- en +model-index: +- name: en_ner_fashion + results: + - task: + name: NER + type: token-classification + metrics: + - name: NER Precision + type: precision + value: 0.6941176471 + - name: NER Recall + type: recall + value: 0.4957983193 + - name: NER F Score + type: f_score + value: 0.5784313725 +--- +| Feature | Description | +| --- | --- | +| **Name** | `en_ner_fashion` | +| **Version** | `0.0.0` | +| **spaCy** | `>=3.7.2,<3.8.0` | +| **Default Pipeline** | `tok2vec`, `ner` | +| **Components** | `tok2vec`, `ner` | +| **Vectors** | 0 keys, 0 unique vectors (0 dimensions) | +| **Sources** | n/a | +| **License** | n/a | +| **Author** | [n/a]() | + +### Label Scheme + +
+ +View label scheme (1 labels for 1 components) + +| Component | Labels | +| --- | --- | +| **`ner`** | `FASHION_BRAND` | + +
+ +### Accuracy + +| Type | Score | +| --- | --- | +| `ENTS_F` | 57.84 | +| `ENTS_P` | 69.41 | +| `ENTS_R` | 49.58 | +| `TOK2VEC_LOSS` | 12527.00 | +| `NER_LOSS` | 29603.77 | \ No newline at end of file diff --git a/config.cfg b/config.cfg new file mode 100644 index 0000000000000000000000000000000000000000..36ae8a70797ec106c89297ac381e99d72377927f --- /dev/null +++ b/config.cfg @@ -0,0 +1,151 @@ +[paths] +train = "corpus/fashion_brands_training.spacy" +dev = "corpus/fashion_brands_eval.spacy" +raw = null +init_tok2vec = null +vectors = null + +[system] +gpu_allocator = null +seed = 0 + +[nlp] +lang = "en" +pipeline = ["tok2vec","ner"] +tokenizer = {"@tokenizers":"spacy.Tokenizer.v1"} +before_creation = null +after_creation = null +after_pipeline_creation = null +disabled = [] +batch_size = 1000 +vectors = {"@vectors":"spacy.Vectors.v1"} + +[components] + +[components.ner] +factory = "ner" +incorrect_spans_key = null +moves = null +scorer = {"@scorers":"spacy.ner_scorer.v1"} +update_with_oracle_cut_size = 100 + +[components.ner.model] +@architectures = "spacy.TransitionBasedParser.v2" +state_type = "ner" +extra_state_tokens = false +hidden_width = 64 +maxout_pieces = 2 +use_upper = true +nO = null + +[components.ner.model.tok2vec] +@architectures = "spacy.Tok2VecListener.v1" +width = ${components.tok2vec.model.encode.width} +upstream = "*" + +[components.tok2vec] +factory = "tok2vec" + +[components.tok2vec.model] +@architectures = "spacy.Tok2Vec.v2" + +[components.tok2vec.model.embed] +@architectures = "spacy.MultiHashEmbed.v1" +width = ${components.tok2vec.model.encode.width} +rows = [2000,1000,1000,1000] +attrs = ["NORM","PREFIX","SUFFIX","SHAPE"] +include_static_vectors = false + +[components.tok2vec.model.encode] +@architectures = "spacy.MaxoutWindowEncoder.v2" +width = 96 +depth = 4 +window_size = 1 +maxout_pieces = 3 + +[corpora] + +[corpora.dev] +@readers = "spacy.Corpus.v1" +path = ${paths.dev} +max_length = 0 +gold_preproc = false +limit = 0 +augmenter = null + +[corpora.train] +@readers = "spacy.Corpus.v1" +path = ${paths.train} +max_length = 2000 +gold_preproc = false +limit = 0 +augmenter = null + +[training] +train_corpus = "corpora.train" +dev_corpus = "corpora.dev" +seed = ${system.seed} +gpu_allocator = ${system.gpu_allocator} +dropout = 0.1 +accumulate_gradient = 1 +patience = 1600 +max_epochs = 0 +max_steps = 20000 +eval_frequency = 200 +frozen_components = [] +before_to_disk = null +annotating_components = [] +before_update = null + +[training.batcher] +@batchers = "spacy.batch_by_words.v1" +discard_oversize = false +tolerance = 0.2 +get_length = null + +[training.batcher.size] +@schedules = "compounding.v1" +start = 100 +stop = 1000 +compound = 1.001 +t = 0.0 + +[training.logger] +@loggers = "spacy.ConsoleLogger.v1" +progress_bar = false + +[training.optimizer] +@optimizers = "Adam.v1" +beta1 = 0.9 +beta2 = 0.999 +L2_is_weight_decay = true +L2 = 0.01 +grad_clip = 1.0 +use_averages = false +eps = 0.00000001 + +[training.optimizer.learn_rate] +@schedules = "warmup_linear.v1" +warmup_steps = 250 +total_steps = 20000 +initial_rate = 0.00005 + +[training.score_weights] +ents_f = 1.0 +ents_p = 0.0 +ents_r = 0.0 +ents_per_type = null + +[pretraining] + +[initialize] +vectors = ${paths.vectors} +init_tok2vec = ${paths.init_tok2vec} +vocab_data = null +lookups = null +before_init = null +after_init = null + +[initialize.components] + +[initialize.tokenizer] \ No newline at end of file diff --git a/en_ner_fashion-any-py3-none-any.whl b/en_ner_fashion-any-py3-none-any.whl new file mode 100644 index 0000000000000000000000000000000000000000..edd1190060b49846a00eca4eddef40bfc3763ea4 --- /dev/null +++ b/en_ner_fashion-any-py3-none-any.whl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:709a1170694c7d0a2caccb792eda748c48c5ddd9ae3dea7a578271ffb185c037 +size 3587746 diff --git a/meta.json b/meta.json new file mode 100644 index 0000000000000000000000000000000000000000..fec34f146fb3d0fe04d93c6852e72a815bf3538a --- /dev/null +++ b/meta.json @@ -0,0 +1,54 @@ +{ + "lang":"en", + "name":"ner_fashion", + "version":"0.0.0", + "description":"", + "author":"", + "email":"", + "url":"", + "license":"", + "spacy_version":">=3.7.2,<3.8.0", + "spacy_git_version":"a89eae928", + "vectors":{ + "width":0, + "vectors":0, + "keys":0, + "name":null + }, + "labels":{ + "tok2vec":[ + + ], + "ner":[ + "FASHION_BRAND" + ] + }, + "pipeline":[ + "tok2vec", + "ner" + ], + "components":[ + "tok2vec", + "ner" + ], + "disabled":[ + + ], + "performance":{ + "ents_f":0.5784313725, + "ents_p":0.6941176471, + "ents_r":0.4957983193, + "ents_per_type":{ + "FASHION_BRAND":{ + "p":0.6941176471, + "r":0.4957983193, + "f":0.5784313725 + } + }, + "tok2vec_loss":125.2700084853, + "ner_loss":296.0376733411 + }, + "requirements":[ + + ] +} \ No newline at end of file diff --git a/ner/cfg b/ner/cfg new file mode 100644 index 0000000000000000000000000000000000000000..6cd11cf7e67d8f2515a43feed2b679ec362c66e8 --- /dev/null +++ b/ner/cfg @@ -0,0 +1,13 @@ +{ + "moves":null, + "update_with_oracle_cut_size":100, + "multitasks":[ + + ], + "min_action_freq":1, + "learn_tokens":false, + "beam_width":1, + "beam_density":0.0, + "beam_update_prob":0.0, + "incorrect_spans_key":null +} \ No newline at end of file diff --git a/ner/model b/ner/model new file mode 100644 index 0000000000000000000000000000000000000000..8cfaa9df892b649959250aaa6c7f3b2fc557c007 Binary files /dev/null and b/ner/model differ diff --git a/ner/moves b/ner/moves new file mode 100644 index 0000000000000000000000000000000000000000..a7d9052db2ce4fc768a27e0fefa4a152c733df48 --- /dev/null +++ b/ner/moves @@ -0,0 +1 @@ +‚¥movesÙ€{"0":{},"1":{"FASHION_BRAND":728},"2":{"FASHION_BRAND":728},"3":{"FASHION_BRAND":728},"4":{"FASHION_BRAND":728,"":1},"5":{"":1}}£cfg§neg_keyÀ \ No newline at end of file diff --git a/tok2vec/cfg b/tok2vec/cfg new file mode 100644 index 0000000000000000000000000000000000000000..0e0dcd235c4973becf25f38eb4e5bb26e154c86a --- /dev/null +++ b/tok2vec/cfg @@ -0,0 +1,3 @@ +{ + +} \ No newline at end of file diff --git a/tok2vec/model b/tok2vec/model new file mode 100644 index 0000000000000000000000000000000000000000..1e21170b05cafc0debd911c3d8d94d04ac80330f --- /dev/null +++ b/tok2vec/model @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb305afdf34ac9039046538e2707685ece5ad45df432571344acf2155797301a +size 3705091 diff --git a/tokenizer b/tokenizer new file mode 100644 index 0000000000000000000000000000000000000000..ba2f4615241984f45f222cb10735a0fb291f113b --- /dev/null +++ b/tokenizer @@ -0,0 +1,3 @@ +‡­prefix_searchÚ ’^§|^%|^=|^—|^–|^\+(?![0-9])|^…|^……|^,|^:|^;|^\!|^\?|^¿|^ØŸ|^¡|^\(|^\)|^\[|^\]|^\{|^\}|^<|^>|^_|^#|^\*|^&|^。|^?|^ï¼|^,|^ã€|^ï¼›|^:|^~|^·|^।|^ØŒ|^Û”|^Ø›|^Ùª|^\.\.+|^…|^\'|^"|^â€|^“|^`|^‘|^´|^’|^‚|^,|^„|^»|^«|^「|^ã€|^『|^ã€|^(|^)|^〔|^〕|^ã€|^】|^《|^》|^〈|^〉|^〈|^〉|^⟦|^⟧|^\$|^£|^€|^Â¥|^฿|^US\$|^C\$|^A\$|^₽|^ï·¼|^â‚´|^â‚ |^â‚¡|^â‚¢|^â‚£|^₤|^â‚¥|^₦|^₧|^₨|^â‚©|^₪|^â‚«|^€|^â‚­|^â‚®|^₯|^â‚°|^₱|^₲|^₳|^â‚´|^₵|^₶|^â‚·|^₸|^₹|^₺|^â‚»|^₼|^₽|^₾|^â‚¿|^[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]­suffix_searchÚ2™â€¦$|……$|,$|:$|;$|\!$|\?$|¿$|ØŸ$|¡$|\($|\)$|\[$|\]$|\{$|\}$|<$|>$|_$|#$|\*$|&$|。$|?$|ï¼$|,$|ã€$|ï¼›$|:$|~$|·$|।$|ØŒ$|Û”$|Ø›$|Ùª$|\.\.+$|…$|\'$|"$|â€$|“$|`$|‘$|´$|’$|‚$|,$|„$|»$|«$|「$|ã€$|『$|ã€$|($|)$|〔$|〕$|ã€$|】$|《$|》$|〈$|〉$|〈$|〉$|⟦$|⟧$|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]$|'s$|'S$|’s$|’S$|—$|–$|(?<=[0-9])\+$|(?<=°[FfCcKk])\.$|(?<=[0-9])(?:\$|£|€|Â¥|฿|US\$|C\$|A\$|₽|ï·¼|â‚´|â‚ |â‚¡|â‚¢|â‚£|₤|â‚¥|₦|₧|₨|â‚©|₪|â‚«|€|â‚­|â‚®|₯|â‚°|₱|₲|₳|â‚´|₵|₶|â‚·|₸|₹|₺|â‚»|₼|₽|₾|â‚¿)$|(?<=[0-9])(?:km|km²|km³|m|m²|m³|dm|dm²|dm³|cm|cm²|cm³|mm|mm²|mm³|ha|µm|nm|yd|in|ft|kg|g|mg|µg|t|lb|oz|m/s|km/h|kmh|mph|hPa|Pa|mbar|mb|MB|kb|KB|gb|GB|tb|TB|T|G|M|K|%|км|км²|км³|м|м²|м³|дм|дм²|дм³|Ñм|Ñм²|Ñм³|мм|мм²|мм³|нм|кг|г|мг|м/Ñ|км/ч|кПа|Па|мбар|Кб|КБ|кб|Мб|МБ|мб|Гб|ГБ|гб|Тб|ТБ|тбكم|كم²|كم³|Ù…|م²|م³|سم|سم²|سم³|مم|مم²|مم³|كم|غرام|جرام|جم|كغ|ملغ|كوب|اكواب)$|(?<=[0-9a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-Ñәөүҗңһα-ωάέίόώήÏа-щюÑіїєґѓѕјљњќÑÑ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F%²\-\+…|……|,|:|;|\!|\?|¿|ØŸ|¡|\(|\)|\[|\]|\{|\}|<|>|_|#|\*|&|。|?|ï¼|,|ã€|ï¼›|:|~|·|।|ØŒ|Û”|Ø›|Ùª(?:\'"â€â€œ`‘´’‚,„»«「ã€ã€Žã€ï¼ˆï¼‰ã€”〕ã€ã€‘《》〈〉〈〉⟦⟧)])\.$|(?<=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEÐÐ-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌÎΉΎÐ-ЩЮЯІЇЄÒЃЅЈЉЊЌЀÐ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F][A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEÐÐ-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌÎΉΎÐ-ЩЮЯІЇЄÒЃЅЈЉЊЌЀÐ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])\.$®infix_finditerÚ>ü\.\.+|…|[\u00A6\u00A9\u00AE\u00B0\u0482\u058D\u058E\u060E\u060F\u06DE\u06E9\u06FD\u06FE\u07F6\u09FA\u0B70\u0BF3-\u0BF8\u0BFA\u0C7F\u0D4F\u0D79\u0F01-\u0F03\u0F13\u0F15-\u0F17\u0F1A-\u0F1F\u0F34\u0F36\u0F38\u0FBE-\u0FC5\u0FC7-\u0FCC\u0FCE\u0FCF\u0FD5-\u0FD8\u109E\u109F\u1390-\u1399\u1940\u19DE-\u19FF\u1B61-\u1B6A\u1B74-\u1B7C\u2100\u2101\u2103-\u2106\u2108\u2109\u2114\u2116\u2117\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u214A\u214C\u214D\u214F\u218A\u218B\u2195-\u2199\u219C-\u219F\u21A1\u21A2\u21A4\u21A5\u21A7-\u21AD\u21AF-\u21CD\u21D0\u21D1\u21D3\u21D5-\u21F3\u2300-\u2307\u230C-\u231F\u2322-\u2328\u232B-\u237B\u237D-\u239A\u23B4-\u23DB\u23E2-\u2426\u2440-\u244A\u249C-\u24E9\u2500-\u25B6\u25B8-\u25C0\u25C2-\u25F7\u2600-\u266E\u2670-\u2767\u2794-\u27BF\u2800-\u28FF\u2B00-\u2B2F\u2B45\u2B46\u2B4D-\u2B73\u2B76-\u2B95\u2B98-\u2BC8\u2BCA-\u2BFE\u2CE5-\u2CEA\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3004\u3012\u3013\u3020\u3036\u3037\u303E\u303F\u3190\u3191\u3196-\u319F\u31C0-\u31E3\u3200-\u321E\u322A-\u3247\u3250\u3260-\u327F\u328A-\u32B0\u32C0-\u32FE\u3300-\u33FF\u4DC0-\u4DFF\uA490-\uA4C6\uA828-\uA82B\uA836\uA837\uA839\uAA77-\uAA79\uFDFD\uFFE4\uFFE8\uFFED\uFFEE\uFFFC\uFFFD\U00010137-\U0001013F\U00010179-\U00010189\U0001018C-\U0001018E\U00010190-\U0001019B\U000101A0\U000101D0-\U000101FC\U00010877\U00010878\U00010AC8\U0001173F\U00016B3C-\U00016B3F\U00016B45\U0001BC9C\U0001D000-\U0001D0F5\U0001D100-\U0001D126\U0001D129-\U0001D164\U0001D16A-\U0001D16C\U0001D183\U0001D184\U0001D18C-\U0001D1A9\U0001D1AE-\U0001D1E8\U0001D200-\U0001D241\U0001D245\U0001D300-\U0001D356\U0001D800-\U0001D9FF\U0001DA37-\U0001DA3A\U0001DA6D-\U0001DA74\U0001DA76-\U0001DA83\U0001DA85\U0001DA86\U0001ECAC\U0001F000-\U0001F02B\U0001F030-\U0001F093\U0001F0A0-\U0001F0AE\U0001F0B1-\U0001F0BF\U0001F0C1-\U0001F0CF\U0001F0D1-\U0001F0F5\U0001F110-\U0001F16B\U0001F170-\U0001F1AC\U0001F1E6-\U0001F202\U0001F210-\U0001F23B\U0001F240-\U0001F248\U0001F250\U0001F251\U0001F260-\U0001F265\U0001F300-\U0001F3FA\U0001F400-\U0001F6D4\U0001F6E0-\U0001F6EC\U0001F6F0-\U0001F6F9\U0001F700-\U0001F773\U0001F780-\U0001F7D8\U0001F800-\U0001F80B\U0001F810-\U0001F847\U0001F850-\U0001F859\U0001F860-\U0001F887\U0001F890-\U0001F8AD\U0001F900-\U0001F90B\U0001F910-\U0001F93E\U0001F940-\U0001F970\U0001F973-\U0001F976\U0001F97A\U0001F97C-\U0001F9A2\U0001F9B0-\U0001F9B9\U0001F9C0-\U0001F9C2\U0001F9D0-\U0001F9FF\U0001FA60-\U0001FA6D]|(?<=[0-9])[+\-\*^](?=[0-9-])|(?<=[a-z\uFF41-\uFF5A\u00DF-\u00F6\u00F8-\u00FF\u0101\u0103\u0105\u0107\u0109\u010B\u010D\u010F\u0111\u0113\u0115\u0117\u0119\u011B\u011D\u011F\u0121\u0123\u0125\u0127\u0129\u012B\u012D\u012F\u0131\u0133\u0135\u0137\u0138\u013A\u013C\u013E\u0140\u0142\u0144\u0146\u0148\u0149\u014B\u014D\u014F\u0151\u0153\u0155\u0157\u0159\u015B\u015D\u015F\u0161\u0163\u0165\u0167\u0169\u016B\u016D\u016F\u0171\u0173\u0175\u0177\u017A\u017C\u017E\u017F\u0180\u0183\u0185\u0188\u018C\u018D\u0192\u0195\u0199-\u019B\u019E\u01A1\u01A3\u01A5\u01A8\u01AA\u01AB\u01AD\u01B0\u01B4\u01B6\u01B9\u01BA\u01BD-\u01BF\u01C6\u01C9\u01CC\u01CE\u01D0\u01D2\u01D4\u01D6\u01D8\u01DA\u01DC\u01DD\u01DF\u01E1\u01E3\u01E5\u01E7\u01E9\u01EB\u01ED\u01EF\u01F0\u01F3\u01F5\u01F9\u01FB\u01FD\u01FF\u0201\u0203\u0205\u0207\u0209\u020B\u020D\u020F\u0211\u0213\u0215\u0217\u0219\u021B\u021D\u021F\u0221\u0223\u0225\u0227\u0229\u022B\u022D\u022F\u0231\u0233-\u0239\u023C\u023F\u0240\u0242\u0247\u0249\u024B\u024D\u024F\u2C61\u2C65\u2C66\u2C68\u2C6A\u2C6C\u2C71\u2C73\u2C74\u2C76-\u2C7B\uA723\uA725\uA727\uA729\uA72B\uA72D\uA72F-\uA731\uA733\uA735\uA737\uA739\uA73B\uA73D\uA73F\uA741\uA743\uA745\uA747\uA749\uA74B\uA74D\uA74F\uA751\uA753\uA755\uA757\uA759\uA75B\uA75D\uA75F\uA761\uA763\uA765\uA767\uA769\uA76B\uA76D\uA76F\uA771-\uA778\uA77A\uA77C\uA77F\uA781\uA783\uA785\uA787\uA78C\uA78E\uA791\uA793-\uA795\uA797\uA799\uA79B\uA79D\uA79F\uA7A1\uA7A3\uA7A5\uA7A7\uA7A9\uA7AF\uA7B5\uA7B7\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E01\u1E03\u1E05\u1E07\u1E09\u1E0B\u1E0D\u1E0F\u1E11\u1E13\u1E15\u1E17\u1E19\u1E1B\u1E1D\u1E1F\u1E21\u1E23\u1E25\u1E27\u1E29\u1E2B\u1E2D\u1E2F\u1E31\u1E33\u1E35\u1E37\u1E39\u1E3B\u1E3D\u1E3F\u1E41\u1E43\u1E45\u1E47\u1E49\u1E4B\u1E4D\u1E4F\u1E51\u1E53\u1E55\u1E57\u1E59\u1E5B\u1E5D\u1E5F\u1E61\u1E63\u1E65\u1E67\u1E69\u1E6B\u1E6D\u1E6F\u1E71\u1E73\u1E75\u1E77\u1E79\u1E7B\u1E7D\u1E7F\u1E81\u1E83\u1E85\u1E87\u1E89\u1E8B\u1E8D\u1E8F\u1E91\u1E93\u1E95-\u1E9D\u1E9F\u1EA1\u1EA3\u1EA5\u1EA7\u1EA9\u1EAB\u1EAD\u1EAF\u1EB1\u1EB3\u1EB5\u1EB7\u1EB9\u1EBB\u1EBD\u1EBF\u1EC1\u1EC3\u1EC5\u1EC7\u1EC9\u1ECB\u1ECD\u1ECF\u1ED1\u1ED3\u1ED5\u1ED7\u1ED9\u1EDB\u1EDD\u1EDF\u1EE1\u1EE3\u1EE5\u1EE7\u1EE9\u1EEB\u1EED\u1EEF\u1EF1\u1EF3\u1EF5\u1EF7\u1EF9\u1EFB\u1EFD\u1EFFёа-Ñәөүҗңһα-ωάέίόώήÏа-щюÑіїєґѓѕјљњќÑÑ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"â€â€œ`‘´’‚,„»«「ã€ã€Žã€ï¼ˆï¼‰ã€”〕ã€ã€‘《》〈〉〈〉⟦⟧])\.(?=[A-Z\uFF21-\uFF3A\u00C0-\u00D6\u00D8-\u00DE\u0100\u0102\u0104\u0106\u0108\u010A\u010C\u010E\u0110\u0112\u0114\u0116\u0118\u011A\u011C\u011E\u0120\u0122\u0124\u0126\u0128\u012A\u012C\u012E\u0130\u0132\u0134\u0136\u0139\u013B\u013D\u013F\u0141\u0143\u0145\u0147\u014A\u014C\u014E\u0150\u0152\u0154\u0156\u0158\u015A\u015C\u015E\u0160\u0162\u0164\u0166\u0168\u016A\u016C\u016E\u0170\u0172\u0174\u0176\u0178\u0179\u017B\u017D\u0181\u0182\u0184\u0186\u0187\u0189-\u018B\u018E-\u0191\u0193\u0194\u0196-\u0198\u019C\u019D\u019F\u01A0\u01A2\u01A4\u01A6\u01A7\u01A9\u01AC\u01AE\u01AF\u01B1-\u01B3\u01B5\u01B7\u01B8\u01BC\u01C4\u01C7\u01CA\u01CD\u01CF\u01D1\u01D3\u01D5\u01D7\u01D9\u01DB\u01DE\u01E0\u01E2\u01E4\u01E6\u01E8\u01EA\u01EC\u01EE\u01F1\u01F4\u01F6-\u01F8\u01FA\u01FC\u01FE\u0200\u0202\u0204\u0206\u0208\u020A\u020C\u020E\u0210\u0212\u0214\u0216\u0218\u021A\u021C\u021E\u0220\u0222\u0224\u0226\u0228\u022A\u022C\u022E\u0230\u0232\u023A\u023B\u023D\u023E\u0241\u0243-\u0246\u0248\u024A\u024C\u024E\u2C60\u2C62-\u2C64\u2C67\u2C69\u2C6B\u2C6D-\u2C70\u2C72\u2C75\u2C7E\u2C7F\uA722\uA724\uA726\uA728\uA72A\uA72C\uA72E\uA732\uA734\uA736\uA738\uA73A\uA73C\uA73E\uA740\uA742\uA744\uA746\uA748\uA74A\uA74C\uA74E\uA750\uA752\uA754\uA756\uA758\uA75A\uA75C\uA75E\uA760\uA762\uA764\uA766\uA768\uA76A\uA76C\uA76E\uA779\uA77B\uA77D\uA77E\uA780\uA782\uA784\uA786\uA78B\uA78D\uA790\uA792\uA796\uA798\uA79A\uA79C\uA79E\uA7A0\uA7A2\uA7A4\uA7A6\uA7A8\uA7AA-\uA7AE\uA7B0-\uA7B4\uA7B6\uA7B8\u1E00\u1E02\u1E04\u1E06\u1E08\u1E0A\u1E0C\u1E0E\u1E10\u1E12\u1E14\u1E16\u1E18\u1E1A\u1E1C\u1E1E\u1E20\u1E22\u1E24\u1E26\u1E28\u1E2A\u1E2C\u1E2E\u1E30\u1E32\u1E34\u1E36\u1E38\u1E3A\u1E3C\u1E3E\u1E40\u1E42\u1E44\u1E46\u1E48\u1E4A\u1E4C\u1E4E\u1E50\u1E52\u1E54\u1E56\u1E58\u1E5A\u1E5C\u1E5E\u1E60\u1E62\u1E64\u1E66\u1E68\u1E6A\u1E6C\u1E6E\u1E70\u1E72\u1E74\u1E76\u1E78\u1E7A\u1E7C\u1E7E\u1E80\u1E82\u1E84\u1E86\u1E88\u1E8A\u1E8C\u1E8E\u1E90\u1E92\u1E94\u1E9E\u1EA0\u1EA2\u1EA4\u1EA6\u1EA8\u1EAA\u1EAC\u1EAE\u1EB0\u1EB2\u1EB4\u1EB6\u1EB8\u1EBA\u1EBC\u1EBE\u1EC0\u1EC2\u1EC4\u1EC6\u1EC8\u1ECA\u1ECC\u1ECE\u1ED0\u1ED2\u1ED4\u1ED6\u1ED8\u1EDA\u1EDC\u1EDE\u1EE0\u1EE2\u1EE4\u1EE6\u1EE8\u1EEA\u1EEC\u1EEE\u1EF0\u1EF2\u1EF4\u1EF6\u1EF8\u1EFA\u1EFC\u1EFEÐÐ-ЯӘӨҮҖҢҺΑ-ΩΆΈΊΌÎΉΎÐ-ЩЮЯІЇЄÒЃЅЈЉЊЌЀÐ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F\'"â€â€œ`‘´’‚,„»«「ã€ã€Žã€ï¼ˆï¼‰ã€”〕ã€ã€‘《》〈〉〈〉⟦⟧])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-ÑÐÐ-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήÏΑ-ΩΆΈΊΌÎΉΎа-щюÑіїєґÐ-ЩЮЯІЇЄÒѓѕјљњќÑÑЃЅЈЉЊЌЀÐ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F]),(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-ÑÐÐ-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήÏΑ-ΩΆΈΊΌÎΉΎа-щюÑіїєґÐ-ЩЮЯІЇЄÒѓѕјљњќÑÑЃЅЈЉЊЌЀÐ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-ÑÐÐ-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήÏΑ-ΩΆΈΊΌÎΉΎа-щюÑіїєґÐ-ЩЮЯІЇЄÒѓѕјљњќÑÑЃЅЈЉЊЌЀÐ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])(?:-|–|—|--|---|——|~)(?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-ÑÐÐ-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήÏΑ-ΩΆΈΊΌÎΉΎа-щюÑіїєґÐ-ЩЮЯІЇЄÒѓѕјљњќÑÑЃЅЈЉЊЌЀÐ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])|(?<=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-ÑÐÐ-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήÏΑ-ΩΆΈΊΌÎΉΎа-щюÑіїєґÐ-ЩЮЯІЇЄÒѓѕјљњќÑÑЃЅЈЉЊЌЀÐ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F0-9])[:<>=/](?=[A-Za-z\uFF21-\uFF3A\uFF41-\uFF5A\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF\u0100-\u017F\u0180-\u01BF\u01C4-\u024F\u2C60-\u2C7B\u2C7E\u2C7F\uA722-\uA76F\uA771-\uA787\uA78B-\uA78E\uA790-\uA7B9\uA7FA\uAB30-\uAB5A\uAB60-\uAB64\u0250-\u02AF\u1D00-\u1D25\u1D6B-\u1D77\u1D79-\u1D9A\u1E00-\u1EFFёа-ÑÐÐ-ЯәөүҗңһӘӨҮҖҢҺα-ωάέίόώήÏΑ-ΩΆΈΊΌÎΉΎа-щюÑіїєґÐ-ЩЮЯІЇЄÒѓѕјљњќÑÑЃЅЈЉЊЌЀÐ\u1200-\u137F\u0980-\u09FF\u0591-\u05F4\uFB1D-\uFB4F\u0620-\u064A\u066E-\u06D5\u06E5-\u06FF\u0750-\u077F\u08A0-\u08BD\uFB50-\uFBB1\uFBD3-\uFD3D\uFD50-\uFDC7\uFDF0-\uFDFB\uFE70-\uFEFC\U0001EE00-\U0001EEBB\u0D80-\u0DFF\u0900-\u097F\u0C80-\u0CFF\u0B80-\u0BFF\u0C00-\u0C7F\uAC00-\uD7AF\u1100-\u11FF\u3040-\u309F\u30A0-\u30FFー\u4E00-\u62FF\u6300-\u77FF\u7800-\u8CFF\u8D00-\u9FFF\u3400-\u4DBF\U00020000-\U000215FF\U00021600-\U000230FF\U00023100-\U000245FF\U00024600-\U000260FF\U00026100-\U000275FF\U00027600-\U000290FF\U00029100-\U0002A6DF\U0002A700-\U0002B73F\U0002B740-\U0002B81F\U0002B820-\U0002CEAF\U0002CEB0-\U0002EBEF\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u2FFF\u3000-\u303F\u31C0-\u31EF\u3200-\u32FF\u3300-\u33FF\uF900-\uFAFF\uFE30-\uFE4F\U0001F200-\U0001F2FF\U0002F800-\U0002FA1F])«token_matchÀ©url_matchÚ Õ(?u)^(?:(?:[\w\+\-\.]{2,})://)?(?:\S+(?::\S*)?@)?(?:(?!(?:10|127)(?:\.\d{1,3}){3})(?!(?:169\.254|192\.168)(?:\.\d{1,3}){2})(?!172\.(?:1[6-9]|2\d|3[0-1])(?:\.\d{1,3}){2})(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[A-Za-z0-9\u00a1-\uffff][A-Za-z0-9\u00a1-\uffff_-]{0,62})?[A-Za-z0-9\u00a1-\uffff]\.)+(?:[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]{2,63}))(?::\d{2,5})?(?:[/?#]\S*)?$ªexceptionsÞC¡ ‘A¡ ¡ +‘A¡ +¡ ‘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£<.<£‘A§¢=(‘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¤comeA¢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£canA£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¥couldA£'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¥couldA¢veªCould’ve’‚A¥CouldC¥couldA¥â€™ve§C’mon’‚A¥C’mC¤comeA¢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¢heA¡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£howA¢'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£howA£'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£howA¡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£howA¤â€™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£howA¥â€™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¡iA¡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¥mightA£'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¥mightA¢veªMight’ve’‚A¥MightC¥mightA¥â€™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¤mustA£'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¤mustA¢ve©Must’ve’‚A¤MustC¤mustA¥â€™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£sheA¡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¦shouldA£'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¦shouldA¢ve«Should’ve’‚A¦ShouldC¦shouldA¥â€™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¤thatA¡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¥thereA£'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¥thereA¡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¥thereA¥â€™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¥theseA£'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¥theseA¥â€™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¤thisA¡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¥thoseA£'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¥thoseA¥â€™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¤whatA£'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¤whatA¡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¤whatA¥â€™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¤whenA£'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¤whenA¡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¤whenA¥â€™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¥whereA£'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¥whereA¡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¥whereA¥â€™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£whoA£'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£whoA¡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£whoA¥â€™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£whyA£'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£whyA¡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£whyA¥â€™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¥wouldA£'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¥wouldA¢veªWould’ve’‚A¥WouldC¥wouldA¥â€™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¤comeA¢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£canA£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¥couldA£'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¥couldA¢veªcould’ve’‚A¥couldC¥couldA¥â€™ve§c’mon’‚A¥c’mC¤comeA¢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¢heA¡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£howA¢'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£howA£'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£howA¡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£howA¤â€™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£howA¥â€™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¡iA¡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¥mightA£'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¥mightA¢veªmight’ve’‚A¥mightC¥mightA¥â€™ve§must've’‚A¤mustC¤mustA£'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¤mustA¢ve©must’ve’‚A¤mustC¤mustA¥â€™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£sheA¡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¦shouldA£'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¦shouldA¢ve«should’ve’‚A¦shouldC¦shouldA¥â€™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¤thatA¡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¥thereA£'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¥thereA¡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¥thereA¥â€™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¥theseA£'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¥theseA¥â€™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¤thisA¡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¥thoseA£'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¥thoseA¥â€™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¤whatA£'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¤whatA¡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¤whatA¥â€™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¤whenA£'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¤whenA¡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¤whenA¥â€™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¥whereA£'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¥whereA¡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¥whereA¥â€™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£whoA£'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£whoA¡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£whoA¥â€™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£whyA£'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£whyA¡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£whyA¥â€™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¥wouldA£'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¥wouldA¢veªwould’ve’‚A¥wouldC¥wouldA¥â€™ve¢x.‘A¢x.¢xD‘A¢xD£xDD‘A£xDD¥y'all’‚A¢y'C£youA£all¢y.‘A¢y.¤yall’‚A¡yC£youA£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£youA£all¢z.‘A¢z.¢Â ‘‚A¢Â C¢ «Â¯\(ツ)/¯‘A«Â¯\(ツ)/¯¤Â°C.“A¢Â°A¡CA¡.¤Â°F.“A¢Â°A¡FA¡.¤Â°K.“A¢Â°A¡KA¡.¤Â°c.“A¢Â°A¡cA¡.¤Â°f.“A¢Â°A¡fA¡.¤Â°k.“A¢Â°A¡kA¡.£Ã¤.‘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à \ No newline at end of file diff --git a/vocab/key2row b/vocab/key2row new file mode 100644 index 0000000000000000000000000000000000000000..5416677bc7dab0c8bec3f5bf44d7d28b4ff73b13 --- /dev/null +++ b/vocab/key2row @@ -0,0 +1 @@ +€ \ No newline at end of file diff --git a/vocab/lookups.bin b/vocab/lookups.bin new file mode 100644 index 0000000000000000000000000000000000000000..c66317f8d354f32911b0beb802a18ab12b6507c9 --- /dev/null +++ b/vocab/lookups.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76be8b528d0075f7aae98d6fa57a6d3c83ae480a8469e668d7b0af968995ac71 +size 1 diff --git a/vocab/strings.json b/vocab/strings.json new file mode 100644 index 0000000000000000000000000000000000000000..eb3bc9057585af09a79c0d05652121dc1bcae635 --- /dev/null +++ b/vocab/strings.json @@ -0,0 +1,11573 @@ +[ + "\t", + "\n", + " ", + " ", + "!", + "\"", + "\"less", + "\"presidential", + "\"where", + "\"xxxx", + "#", + "$", + "$15", + "$20", + "$68", + "$70", + "%", + "&", + "'", + "''", + "'-(", + "'-)", + "'Cause", + "'Cos", + "'Coz", + "'Cuz", + "'S", + "'X", + "'Xxx", + "'Xxxxx", + "'am", + "'bout", + "'cause", + "'cos", + "'coz", + "'cuz", + "'d", + "'em", + "'ll", + "'m", + "'nuff", + "'re", + "'s", + "'ve", + "'x", + "'xx", + "'xxx", + "'xxxx", + "'y", + "(", + "(((", + "(*>", + "(*_*)", + "(-8", + "(-:", + "(-;", + "(-_-)", + "(-d", + "(._.)", + "(:", + "(;", + "(=", + "(>_<)", + "(^_^)", + "(o:", + "(x:", + "(x_x)", + "(\u00ac_\u00ac)", + "(\u0ca0_\u0ca0)", + "(\u256f\u00b0\u25a1\u00b0\uff09\u256f\ufe35\u253b\u2501\u253b", + ")", + ")))", + ")--", + ")-:", + ")/\u00af", + "):", + "*", + "*ck", + "+", + ",", + "-", + "-((", + "-))", + "--", + "-/", + "-0", + "-19", + "-190", + "-3", + "-40", + "-8", + "-D", + "-If", + "-Know", + "-O", + "-P", + "-X", + "-Xx", + "-Xxxx", + "-_-", + "-__-", + "-capable", + "-d", + "-ddd", + "-if", + "-know", + "-o", + "-p", + "-r", + "-which", + "-x", + "-xx", + "-xxxx", + "-|", + ".", + "..", + "...", + "....", + "......", + ".00", + ".90", + ".A.", + ".C.", + ".D.", + ".E.", + ".G.", + ".H.", + ".J.", + ".K.", + ".M.", + ".S.", + ".Y.", + "._.", + ".a.", + ".au", + ".ds", + ".e.", + ".g.", + ".k.", + ".m.", + ".s.", + ".uk", + "/", + "/21", + "/3", + "/d", + "/en", + "/or", + "/r", + "/s", + "/u", + "/x", + "0", + "0%+", + "0.0", + "0.5", + "0.o", + "000", + "001", + "007", + "00B", + "00b", + "00s", + "012", + "013", + "016", + "018", + "019", + "020", + "0Bh", + "0US", + "0_0", + "0_o", + "0bh", + "0us", + "0ys", + "1", + "1.5", + "10", + "10.5", + "100", + "100B", + "100b", + "10US", + "10a.m", + "10a.m.", + "10p.m", + "10p.m.", + "10s", + "10us", + "11", + "114", + "11a.m", + "11a.m.", + "11p.m", + "11p.m.", + "11s", + "12", + "12.00", + "12.5", + "120", + "1200", + "12a.m", + "12a.m.", + "12p.m", + "12p.m.", + "13", + "13.5", + "130", + "135", + "13ish", + "14", + "141", + "145", + "1461-", + "15", + "150", + "150CAD", + "150cad", + "15th", + "16", + "160", + "165", + "17", + "176", + "179", + "18", + "18/", + "180", + "180lbs", + "182", + "184", + "188", + "19", + "190", + "1947", + "1955", + "197", + "1993", + "1a.m", + "1a.m.", + "1p.m", + "1p.m.", + "2", + "2.5", + "20", + "200", + "2000", + "2000s", + "2007", + "200CAD", + "200cad", + "2010s", + "2012", + "2013", + "2016", + "2018", + "2019", + "2020", + "20US", + "20s", + "20us", + "21", + "210", + "217", + "218", + "21A", + "21a", + "22", + "22A", + "22a", + "239", + "24", + "24/7", + "25", + "26", + "261", + "265", + "268", + "27", + "27D", + "27d", + "28", + "29", + "29y", + "2a.m", + "2a.m.", + "2nd", + "2p.m", + "2p.m.", + "2s-", + "3", + "3-day", + "3.5", + "3/4", + "30", + "30%+", + "300", + "30min", + "30s", + "31", + "3141", + "32", + "33", + "333", + "34", + "350", + "355", + "36", + "38mm-40", + "391", + "39p", + "3D", + "3GP", + "3SD", + "3Sixteen", + "3a.m", + "3a.m.", + "3d", + "3gp", + "3p.m", + "3p.m.", + "3s", + "3sd", + "3sixteen", + "3x", + "4", + "4/7", + "40", + "40-$70", + "400", + "42", + "43F", + "43f", + "44", + "45", + "451", + "470", + "4:30", + "4a.m", + "4a.m.", + "4p.m", + "4p.m.", + "4th", + "5", + "5'1", + "5'2", + "5'6", + "5.00", + "50", + "500", + "501", + "50s", + "510s", + "511", + "511s", + "52", + "527", + "541", + "58", + "5A4", + "5a.m", + "5a.m.", + "5a4", + "5p.m", + "5p.m.", + "5th", + "5\u20191", + "6", + "6'2", + "6'4", + "6.5", + "60", + "600", + "60s", + "61-", + "6243F", + "6243f", + "625", + "63", + "643", + "67", + "68", + "6D.", + "6a.m", + "6a.m.", + "6d.", + "6p.m", + "6p.m.", + "6\u20192", + "7", + "70", + "70s", + "72s-", + "73", + "7FAM", + "7a.m", + "7a.m.", + "7fam", + "7p.m", + "7p.m.", + "7yh", + "8", + "8)", + "8-", + "8-)", + "8-D", + "8-d", + "80", + "80s", + "814", + "842", + "86/", + "874", + "88", + "8D", + "8D8", + "8PM", + "8a.m", + "8a.m.", + "8d", + "8d8", + "8p.m", + "8p.m.", + "8pm", + "9", + "9.5", + "9.90", + "9/21", + "90", + "90F", + "90f", + "90s", + "90ys", + "916", + "947", + "95", + "955", + "97", + "97h", + "98", + "99", + "993", + "997h", + "9:30AM-8PM", + "9:30am-8pm", + "9a.m", + "9a.m.", + "9p.m", + "9p.m.", + ":", + ":'(", + ":')", + ":'-(", + ":'-)", + ":(", + ":((", + ":(((", + ":()", + ":)", + ":))", + ":)))", + ":*", + ":-(", + ":-((", + ":-(((", + ":-)", + ":-))", + ":-)))", + ":-*", + ":-/", + ":-0", + ":-3", + ":->", + ":-D", + ":-O", + ":-P", + ":-X", + ":-]", + ":-d", + ":-o", + ":-p", + ":-x", + ":-|", + ":-}", + ":/", + ":0", + ":1", + ":3", + ":30", + ":>", + ":D", + ":O", + ":P", + ":X", + ":]", + ":d", + ":o", + ":o)", + ":p", + ":x", + ":x)", + ":|", + ":}", + ":\u2019(", + ":\u2019)", + ":\u2019-(", + ":\u2019-)", + ";", + ";)", + ";-)", + ";-D", + ";-X", + ";-d", + ";D", + ";X", + ";_;", + ";d", + ";dr", + "<", + "<.<", + "", + "", + "=", + "=(", + "=)", + "=/", + "=/r", + "=3", + "=D", + "=X", + "=[", + "=]", + "=d", + "=|", + ">", + ">.<", + ">.>", + ">:(", + ">:o", + ">:x", + "><(((*>", + "?", + "@", + "@_@", + "A", + "A&E", + "AC", + "ACH", + "AE", + "AF1s", + "AFAIK", + "AG", + "AIK", + "AKA", + "ALDO", + "ALL", + "ALSO", + "AM90s", + "AND", + "ANY", + "ANYTHING", + "APC", + "APS", + "AQUA", + "ARE", + "ARS", + "ASOS", + "AT", + "ATE", + "ATs", + "AU", + "AVE", + "AW00", + "Abercrombie", + "About", + "Absolute", + "Absolutely", + "Academy", + "Accessories", + "According", + "Acne", + "Actually", + "Additional", + "Adidas", + "Adm", + "Adm.", + "Adult", + "Aerie", + "Affordable", + "After", + "Agree", + "Agreed", + "Ah", + "Ahhhhh", + "Ai", + "Air", + "Airbnb", + "Ak", + "Ak.", + "Ala", + "Ala.", + "Alabama", + "Alaska", + "Alden", + "Aldo", + "Align", + "All", + "Allen", + "Allsaints", + "Almost", + "Also", + "Alternatively", + "Alternatives", + "Although", + "Always", + "Am", + "Amazon", + "America", + "American", + "Americans", + "Ametora", + "Ami", + "Amiri", + "Amongst", + "An", + "And", + "Andrew", + "Animal", + "Ankle", + "Ann", + "Anniversary", + "Another", + "Ans", + "Anthropologie", + "Any", + "Anybody", + "Anyone", + "Anything", + "Anyway", + "Anyways", + "Apart", + "Apolis", + "Apparel", + "Apparently", + "Appreciate", + "Apr", + "Apr.", + "April", + "Aquascutum", + "Are", + "Argentina", + "Ariel", + "Arigato", + "Aritizia", + "Aritzia", + "Ariz", + "Ariz.", + "Arizona", + "Arizonas", + "Ark", + "Ark.", + "Arkansas", + "Arket", + "Armour", + "Around", + "Art", + "Arthur", + "Articles", + "Artisan", + "As", + "Ascis", + "Ashby", + "Asian", + "Asics", + "Aside", + "Ask", + "AskWomen", + "Asket", + "Asking", + "Asos", + "Asser", + "Assoulin", + "Assuming", + "Astorflex", + "Astrakhan", + "Astro", + "At", + "Athleta", + "Atlantic", + "Aug", + "Aug.", + "August", + "August/", + "Aungier", + "Aunt", + "Austin", + "Australia", + "Australian", + "Automatic", + "Ave", + "Avenue", + "Avoca", + "Avoid", + "Avoiding", + "Avon", + "Awesome", + "Axel", + "B", + "B&R", + "B01LXOO3SD", + "BAs", + "BBC", + "BBQ", + "BC", + "BDG", + "BDs", + "BKw", + "BR", + "BUT", + "Baby", + "Back", + "Baggy", + "Bailey", + "Baker", + "Balance", + "Balenciaga", + "Ballard", + "Balm", + "Balmain", + "Bambino", + "Ban", + "Banana", + "Bang", + "Bangladesh", + "Bao", + "Bape", + "Barbour", + "Barefoot", + "Barney", + "Barrel", + "Based", + "Basic", + "Basically", + "Bastard", + "Bay", + "Be", + "Bean", + "Beautiful", + "Because", + "Beckman", + "Bedford", + "Been", + "Bees", + "Beeswax-", + "Before", + "Being", + "Believe", + "Below", + "Bemberg", + "Benefit", + "Benheart", + "Berlin", + "Bernie", + "Best", + "Better", + "Between", + "Bicester", + "Bieber", + "Big", + "Bill", + "Birdies", + "Birkenstock", + "Birkenstocks", + "Bise", + "Bite", + "Black", + "Blake", + "Bleaching", + "Blink", + "Blood", + "BloomSpoons", + "Bloomingdale", + "Blousing", + "Blue", + "Blundstones", + "Boarding", + "Boat", + "Boden", + "Bond", + "Bone", + "Bonobos", + "Bonus", + "Boosts", + "Boots", + "Boroughs", + "Boss", + "Bostonian", + "Both", + "Bottom", + "Boulder", + "Bouta", + "Bradley", + "Branch", + "Brands", + "Brave", + "Brazil", + "Brazilian", + "Bridesmaid", + "Brioni", + "Bristol", + "British", + "Brooks", + "Bros", + "Bros.", + "Brosnan", + "Brothers", + "Browne", + "Budget", + "Buffalo", + "Building", + "Bumpstart", + "Burberry", + "Burgundy", + "Burning", + "Burts", + "Bushacres", + "Business", + "Bust", + "But", + "Butterstick", + "Buy", + "BwE", + "By", + "B\u2019s", + "C", + "C'm", + "C++", + "C.", + "CAD", + "CBAs", + "CBD", + "CCI", + "CDB\u2019s", + "CDG", + "CES", + "CH", + "CLICK", + "CM", + "COS", + "CP", + "CPs", + "CRAP", + "CS", + "Ca", + "Cabell", + "Cabo", + "Calif", + "Calif.", + "California", + "Camden", + "Came", + "Camilla", + "Camo", + "Camper", + "Can", + "Canada", + "Canadian", + "Cap", + "Caputo", + "Careful", + "Cargo", + "Carminas", + "Carolina", + "Case", + "Casino", + "Casio", + "Casual", + "Cause", + "Cavalli", + "Celebrate", + "Celine", + "Celsius", + "Century", + "Certainly", + "Certina", + "Cham", + "Chanel", + "Charles", + "Charlotte", + "Check", + "Cheerful", + "Cheers", + "Chelsea", + "Chelseas", + "Chemoraz", + "Chest", + "Chicago", + "Chicken", + "Chicwish", + "Chie", + "Chinese", + "Chino", + "Chinos", + "Choose", + "Chore", + "Chronograph", + "Chukkas", + "Cinches", + "Citizen", + "Clark", + "Clarks", + "Classic", + "Classics/90s", + "Clean", + "Clearly", + "Clinique", + "Closed", + "Closet", + "Cloth", + "Clothes", + "Club", + "Co", + "Co.", + "Coach", + "Coachella", + "Coat", + "Cole", + "Colectiff", + "Colinas", + "Collection", + "Colo", + "Colo.", + "Color", + "Colorado", + "Colours", + "Columbia", + "Com", + "Combatant", + "Combo", + "Come", + "Comes", + "Comfy", + "Commenting", + "Common", + "Commute", + "Company", + "Compassion", + "Completely", + "Compliments", + "Confederate", + "Confetti", + "Confidence", + "Congrats", + "Conn", + "Conn.", + "Connecticut", + "Connery", + "Cons", + "Consider", + "Consistency", + "Constant", + "Converse", + "Converses", + "Cool", + "Cooper", + "Cordovan", + "Corp", + "Corp.", + "Cos", + "Cotton", + "Could", + "Couple", + "Couture", + "Cowboy", + "Cowrie", + "Coz", + "Cracker", + "Craig", + "Create", + "Creme", + "Crew", + "Cribsheet", + "Cristiano", + "Crop", + "Crossfit", + "Crowley", + "Currently", + "Curtis", + "Custom", + "Cuts", + "Cuz", + "C\u00e9line", + "C\u2019m", + "C\u2019mon", + "D", + "D.", + "D.C.", + "D8Z", + "DB", + "DB3527", + "DB3527.html", + "DEAR", + "DIY", + "DMs", + "Dagne", + "Daily", + "Dainty", + "Daisy", + "Dallas", + "Damn", + "Dance", + "Daniel", + "Danm", + "Dare", + "Dark", + "Darker", + "Darn", + "Day", + "Dealing", + "Dec", + "Dec.", + "December", + "Decided", + "Declare", + "Definitely", + "Defrauding", + "Defying", + "Del", + "Del.", + "Delaware", + "Demeulemeester", + "Denim", + "Depends", + "Depop", + "Designer", + "Despite", + "Dew", + "Diadora", + "Dickies", + "Did", + "Diego", + "Diemme", + "Diesel", + "Different", + "Dinner", + "Dior", + "Disagree", + "Discuss", + "Distilled", + "Do", + "Doc", + "Dockers", + "Docs", + "Doctor", + "Doen", + "Does", + "Dogs", + "Doin", + "Doin'", + "Doing", + "Doin\u2019", + "Done", + "Dope", + "Dorado", + "Dorsia", + "Dot", + "Double", + "Dover", + "Download", + "Dr", + "Dr.", + "Dress", + "Dressing", + "Dressy", + "Driving", + "Dublin", + "Dude", + "Duly", + "Dumbledore", + "During", + "Dutti", + "Dyeing", + "E", + "E.G.", + "E.g", + "E.g.", + "EAR", + "EDS", + "EEE", + "EF-316D.", + "EFR-527D", + "EG", + "ELP", + "ELY", + "END", + "ENOUGH", + "ENT", + "ENTIRE", + "ERE", + "ERY", + "EVER", + "EVERYTIME", + "EVERYWHERE", + "Eagle", + "Earl", + "Earrings", + "Easily", + "East", + "Easy", + "Eating", + "Ebay", + "Ecco", + "Echo", + "Eco", + "Ecru", + "Edifice", + "Edit", + "Edited", + "Edmonds", + "Eehhh", + "Eh", + "Ehhh", + "Eileen", + "Either", + "El", + "Elastane", + "Elliot", + "Elliott", + "Elodie", + "Elsa", + "Elsewhere", + "Emily", + "Employee", + "End", + "England", + "Englands", + "English", + "Enjoy", + "Entirely", + "Equipment", + "Esme", + "Espadrilles", + "Especially", + "Essentially", + "Etc", + "Etsy", + "Euro", + "Europe", + "European", + "Even", + "Events", + "Everette", + "Everlane", + "Every", + "Everyone", + "Everything", + "Exactly", + "Excedrin", + "Excellent", + "Except", + "Expecting", + "Experimentation", + "Express", + "Extra", + "Extremely", + "F", + "F.", + "F1s", + "F21", + "F9q", + "FAM", + "FASHION_BRAND", + "FAUX", + "FFA", + "F\\*ck", + "Facebook", + "Factory", + "Fades", + "Fahrenheit", + "Failing", + "Fairfield", + "Fake", + "Fakes", + "Fall", + "Famous", + "Far", + "Farfetch", + "Farm", + "Farsley", + "Fashion", + "Fashionnova", + "Fast", + "Fawkner", + "Fear", + "Feb", + "Feb.", + "February", + "Feel", + "Feeling", + "Fell", + "Ferragamo", + "Ffs", + "Field", + "Fif", + "Filas", + "Filson", + "Finally", + "Find", + "Finding", + "Fingers", + "Fiore", + "Fire", + "First", + "Fisher", + "Fit", + "Fitch", + "Fitted", + "Fjallraven", + "Fla", + "Fla.", + "Flashing", + "Flat", + "Florence", + "Florida", + "Flower", + "Flowers", + "Flowy", + "Fly", + "Focus", + "Follow", + "Following", + "Footloose", + "For", + "Force", + "Ford", + "Forever", + "Forever21", + "Forgetfulness", + "Forgot", + "Formal", + "Fossil", + "Found", + "Fox", + "Fr", + "France", + "Francisco", + "Frank", + "Free", + "Freeman", + "French", + "Fresh", + "Friday", + "Friends", + "From", + "Front", + "Frugal", + "Ft", + "FtF", + "Fuck", + "Full", + "Fun", + "Funnily", + "Funny", + "G", + "G9", + "GAP", + "GAT", + "GATs", + "GBT", + "GD", + "GG", + "GLY", + "GOD", + "GQ", + "GU", + "GUCCI", + "Ga", + "Ga.", + "Gallagher", + "Gallery", + "Gambler", + "Gamification", + "Gaming", + "Gap", + "Garnet", + "Gator", + "Gazelle", + "Gen", + "Gen.", + "General", + "Generally", + "Genesis", + "Gentle", + "Gentlemen", + "George", + "Georgette", + "Georgia", + "Gerald", + "German", + "Get", + "Getting", + "Gigi", + "Gilligan", + "Gios", + "Giovanni", + "Givenchy", + "Giving", + "Glad", + "Glass", + "Glasto", + "Glossier", + "Glow", + "Go", + "GoT", + "God", + "Goddamn", + "Goin", + "Goin'", + "Going", + "Goin\u2019", + "Gold", + "Goldblum", + "Golf", + "Gomez", + "Gon", + "Gone", + "Good", + "GoodFellow", + "Goodfellow", + "Goods", + "Goodwill", + "Goodyear", + "Google", + "Googling", + "Goop", + "Goose", + "Gore", + "Got", + "Gov", + "Gov.", + "Goyard", + "Grand", + "GrandPros", + "Gray", + "Great", + "Green", + "Gstar", + "Guarded", + "Gucci", + "Gustins", + "Guys", + "H", + "H&M", + "HAT", + "HATE", + "HAVE", + "HBM", + "HELP", + "HERE", + "HIGH", + "HIIT", + "HIS", + "HOT", + "HR", + "HS", + "HUGE", + "Haan", + "Had", + "Hadid", + "Haha", + "Hahahaha", + "Hair", + "Halloween", + "Hamilton", + "Hand", + "Handsewn", + "Handsome", + "Hanes", + "Hang", + "Happy", + "Hard", + "Harrington", + "Harry", + "Has", + "Hat", + "Hate", + "Hathaway", + "Havana", + "Have", + "Havin", + "Havin'", + "Having", + "Havin\u2019", + "Hawes", + "He", + "He's", + "Head", + "Heading", + "Headline", + "Heart", + "Heck", + "Heels", + "Heidi", + "Hell", + "Hello", + "Helmut", + "Help", + "Hem", + "Hemming", + "Her", + "Here", + "Hermes", + "Herm\u00e8s", + "Hey", + "Heyer", + "He\u2019s", + "Hi", + "Higgins", + "High", + "Highlights", + "Highly", + "Highschoolers", + "Hill", + "Hindu", + "His", + "Hit", + "Hitting", + "Hmm", + "Hmmm", + "Holes", + "Hollister", + "Holy", + "Honestly", + "Honey", + "Hoodie", + "Hope", + "Hopefully", + "Hoping", + "Hot", + "Hotter", + "House", + "How", + "How's", + "However", + "How\u2019s", + "Hrm", + "Hudson", + "Huge", + "Hughes", + "Hugo", + "Hugs", + "Humans", + "Husband", + "Hyde", + "Hypebeasty", + "I", + "I\"m", + "I'm", + "I.", + "I.E.", + "I.e", + "I.e.", + "ICK", + "IG", + "IGH", + "IIT", + "IKEA", + "IME", + "IMO", + "ING", + "INK", + "IR", + "IRE", + "IRL", + "IRs", + "IS", + "ISSUE", + "IT", + "Ia", + "Ia.", + "Iconic", + "Id", + "Id.", + "Idaho", + "Ideally", + "Idk", + "If", + "Ill", + "Ill.", + "Illinois", + "Image", + "Imagine", + "Imgur", + "Imm", + "Imo", + "Impact", + "Impossible", + "Improving", + "Impulse", + "In", + "Inc", + "Inc.", + "Incorrect", + "Ind", + "Ind.", + "Independence", + "India", + "Indiana", + "Indigo", + "Indochino", + "Influence", + "Info", + "Infrareds", + "Injuries", + "Inseam", + "Insider", + "Instagram", + "Interest", + "Interesting", + "International", + "Invisible", + "Iowa", + "Iron", + "Ironheart", + "Is", + "Issey", + "It", + "It's", + "Italian", + "Italy", + "Its", + "It\u2019s", + "Iw6", + "I\u2018ve", + "J", + "J.", + "J.Crew", + "JC", + "JCPenny", + "JCrew", + "JNA", + "Jacket", + "Jak", + "Jan", + "Jan.", + "Jansport", + "January", + "Japan", + "Japanese", + "Jcrew", + "Jeans", + "Jeff", + "Jensen", + "Jesus", + "Jewelry", + "Jilly", + "Jodhper", + "Joe", + "John", + "Jorts", + "Jost", + "Journeyman", + "Jr", + "Jr.", + "Juicy", + "Jul", + "Jul.", + "Julius", + "July", + "Jumpsuits", + "Jun", + "Jun.", + "June", + "Junghans", + "Just", + "Justin", + "K", + "K.", + "KEA", + "KMart", + "KMj", + "KS", + "Kan", + "Kan.", + "Kans", + "Kans.", + "Kansas", + "Kapital", + "Kate", + "Kathmandu", + "Kawhi", + "Keds", + "Keen", + "Keep", + "Keeps", + "Kelsey", + "Kenneth", + "Kent", + "Kentucky", + "Key", + "Keys", + "Khadi", + "Khaki", + "Khakis", + "Kiehl", + "Killshots", + "Kim", + "Kimono", + "Kind", + "Kinda", + "Kiss", + "Kiton", + "Knit", + "Knot", + "Kohl", + "Kohls", + "Koio", + "Koios", + "Korea", + "Korean", + "Korshak", + "Kristin", + "Ky", + "Ky.", + "Kyle", + "L", + "LA", + "LDO", + "LDR", + "LES", + "LG", + "LGBT", + "LL", + "LLY", + "LOFT", + "LOL", + "LONG", + "LOTS", + "LOVE", + "LOVED", + "LOVELY", + "LSO", + "LUE", + "LV", + "La", + "La.", + "Lab", + "Lacoste", + "Lads", + "Lady", + "Lakers", + "Lame", + "Land", + "Lang", + "Langdon", + "Large", + "Lars", + "Las", + "Last", + "Lately", + "Laurent", + "Lazio", + "Lbs", + "Leaning", + "Learn", + "Leather", + "Leather-", + "Leatherman", + "Lee", + "Left", + "Leisure", + "Leisurewear", + "Lemme", + "Lemmon", + "Let", + "Let's", + "Let\u2019s", + "Level", + "Levi", + "Levis", + "Levi\u2019s", + "Liam", + "Liberty", + "Lighten", + "Lighter", + "Like", + "Linen", + "LinenFox", + "Link", + "Links", + "Literally", + "Live", + "Lively", + "Lmao", + "Loake", + "Local", + "Lof", + "Loft", + "Loincloth", + "Lol", + "London", + "Long", + "Longer", + "Look", + "Looked", + "Looking", + "Looks", + "Lots", + "Louis", + "Louisiana", + "Love", + "Lovestoned", + "Lovin", + "Lovin'", + "Lovin\u2019", + "Low", + "Ltd", + "Ltd.", + "Luca", + "Lucky", + "Lulu", + "Lululemon", + "Lulus", + "Luxire", + "Luxury", + "Lyndale", + "M", + "M'lady", + "M9", + "M9-ish", + "MAJORLY", + "MANY", + "MEEEE", + "MFA", + "MTM", + "MTP-1221A", + "MTP-1222A", + "MW", + "Ma'am", + "Mackay", + "Macy", + "Made", + "Madewell", + "Magellan", + "Magic", + "Magnanni", + "Main", + "Maine", + "Mainly", + "Make", + "Makes", + "Man", + "Mandarin", + "Many", + "Mar", + "Mar.", + "Marc", + "March", + "Marcus", + "Margiela", + "Margielas", + "Marina", + "Marketing", + "Markova", + "Marmot", + "Marni", + "Marshall", + "Mart", + "Martens", + "Mass", + "Mass.", + "Massachusetts", + "Massimo", + "Massive", + "Material", + "Maternity", + "Max", + "Maxx", + "May", + "Maybe", + "Ma\u2019am", + "McQ", + "McQueen", + "Md", + "Md.", + "Me", + "Measure", + "Measurements", + "Medium", + "Melbourne", + "Memorial", + "Memories", + "Men", + "Mens", + "Mesh", + "Messrs", + "Messrs.", + "Metal", + "Metcon", + "Mexico", + "Mich", + "Mich.", + "Michael", + "Michel", + "Michigan", + "Mid", + "Midtown", + "Midwest", + "Might", + "Mihara", + "Mikia", + "Mill", + "Millar", + "Mine", + "Minimalist", + "Minn", + "Minn.", + "Minnesota", + "Minus", + "Miss", + "Miss.", + "Missed", + "Mississippi", + "Missoni", + "Mixing", + "Mizzen", + "Mo", + "Mo.", + "ModCloth", + "Moderators", + "ModernTailor", + "Modernist", + "Mofongo", + "Mommy", + "Momotaro", + "Monaco", + "Monday", + "Mono", + "Monsoon", + "Mont", + "Mont.", + "Moore", + "More", + "Morgan", + "Morning", + "Morris", + "Most", + "Mostly", + "Mount", + "Move", + "Movement", + "Mr", + "Mr.", + "Mrs", + "Mrs.", + "Ms", + "Ms.", + "Mt", + "Mt.", + "Muay", + "Muji", + "Mulberry", + "Mum", + "Must", + "Muted", + "My", + "MyUS", + "N", + "N&F", + "N.C.", + "N.D.", + "N.H.", + "N.J.", + "N.M.", + "N.Y.", + "NBA", + "NBD", + "NBs", + "NEVER", + "NIS", + "NJ", + "NOT", + "NP", + "NPL", + "NSFW", + "NTY", + "NY", + "NYC", + "Na2", + "Nada", + "Nah", + "Naked", + "Napoli", + "National", + "Natural", + "Navy", + "Nearly", + "Neb", + "Neb.", + "Nebr", + "Nebr.", + "Nebraska", + "Need", + "Neff", + "Neiman", + "Neimans", + "Nelson", + "Netherlands", + "Nev", + "Nev.", + "Nevada", + "Never", + "New", + "New Hampshire", + "New Jersey", + "New Mexico", + "New York", + "News", + "Next", + "Nice", + "Nike", + "Nikes", + "No", + "NoT", + "Noir", + "Nome", + "Non", + "None", + "Noone", + "Nope", + "Nordstrom", + "Norse", + "North", + "North Carolina", + "North Dakota", + "Not", + "Nothin", + "Nothin'", + "Nothing", + "Nothin\u2019", + "Nov", + "Nov.", + "November", + "Novestas", + "Now", + "Nudie", + "Nudies", + "Nuit", + "Nuthin", + "Nuthin'", + "Nuthin\u2019", + "O", + "O'Malley", + "O'clock", + "O.O", + "O.o", + "OCBD", + "OCBDs", + "ODY", + "OF", + "OFT", + "OK", + "OMG", + "OP", + "OR", + "OTR", + "OTS", + "OVE", + "O_O", + "O_o", + "Oak", + "Oakley", + "Obviously", + "Oct", + "Oct.", + "October", + "Odell", + "Of", + "Ofcourse", + "Office", + "Often", + "Oh", + "Ohhh", + "Ok", + "Okay", + "Okla", + "Okla.", + "Oklahoma", + "Ol", + "Ol'", + "Old", + "Oliver", + "Ol\u2019", + "Omens", + "On", + "Once", + "One", + "Online", + "Only", + "Ooh", + "Oooh", + "Oooo", + "Ooor", + "Or", + "Orange", + "Order", + "Ordering", + "Ore", + "Ore.", + "Oregon", + "Orient", + "Orphaned", + "Orwell", + "Oster", + "Other", + "Others", + "Otherwise", + "Ought", + "Ourther", + "Out", + "Outfits", + "Outfitters", + "Outliers", + "Over", + "Overall", + "Overtone", + "Owens", + "Owners", + "Oxford", + "Oxfords", + "Oxyclean", + "O\u2019clock", + "P", + "P.S.", + "P.s", + "PAS", + "PD", + "PINK", + "PLENTY", + "PLZ", + "PM", + "PNW", + "PP", + "PR", + "PREACH", + "PS", + "Pa", + "Pa.", + "Pacsun", + "Pact", + "Paige", + "Painted", + "Pair", + "Paisley", + "Pal", + "Pant", + "Pants", + "Paper", + "Par", + "Paris", + "Park", + "Party", + "Pass", + "Patabronia", + "Patagonia", + "Patterned", + "Patterns", + "Paul", + "PayPal", + "Payback", + "Peaks", + "Penney", + "Pennsylvania", + "People", + "Percent", + "Perfect", + "Personal", + "Personally", + "Perth", + "Peter", + "Ph", + "Ph.D.", + "Pharell", + "Phase", + "Philo", + "Phoebe", + "Photograph", + "Pick", + "Picture", + "Pina", + "Pinstripe", + "Pinterest", + "Pizza", + "Placerville", + "Places", + "Plain", + "Plato", + "Please", + "Plot", + "Plus", + "Pockets", + "Politicians", + "Polo", + "Polos", + "Pomade", + "Popover", + "Porsche", + "Portland", + "Poshmark", + "Possibly", + "Post", + "Potter", + "Prada", + "Pray", + "Premium", + "Press", + "Presumably", + "Prettiest", + "Pretty", + "Prices", + "Princess", + "Probably", + "Prof", + "Prof.", + "Professional", + "Projects", + "Proper", + "Props", + "Pulled", + "Purseforum", + "Pursuit", + "Q", + "QC", + "QLO", + "QUA", + "Quality", + "Quest", + "Questions", + "R", + "R.", + "RAICES", + "RAP", + "REALLY", + "RIP", + "RLY", + "ROOT", + "RSQ", + "RVCA", + "RXD", + "Rack", + "Rag", + "Rakuten", + "Rapid", + "Raps", + "Rather", + "Raw", + "Ray", + "Rayban", + "Real", + "Really", + "Receipt", + "Recently", + "Recipe", + "Recognize", + "Red", + "Reddit", + "Redditor", + "Redemption", + "Redoing", + "Reebok", + "Reformation", + "Regarding", + "Regardless", + "Regency", + "Regent", + "Regular", + "Reiss", + "Remind", + "Reminds", + "Rep", + "Rep.", + "Replacing", + "Replied", + "Reproduction", + "Republic", + "Request", + "Retro", + "Return", + "Rev", + "Rev.", + "Reviews", + "Revolve", + "Reward", + "Rhodes", + "Ribbons", + "Rick", + "Rider", + "Ridley", + "Right", + "Rihanna", + "Rinaldi", + "Ring", + "Rise", + "Road", + "Roberto", + "Rock", + "Rolex", + "Rome", + "Ronaldo", + "Roomy", + "Roshe", + "Ross", + "Rotweiler", + "Roxanne", + "Roy", + "Royale", + "Rubinacci", + "Runs", + "Russell", + "Russians", + "Rutshire", + "R\u00e9alisation", + "S", + "S.C.", + "SA", + "SE", + "SEA", + "SFW", + "SHAMBLES", + "SKU", + "SLP", + "SMO", + "SMU", + "SO", + "SOMEBODY", + "SOS", + "SPENT", + "SQ", + "SQs", + "STRONGLY", + "SUE", + "SWr", + "Saddleback", + "Safaris", + "Saint", + "Saints", + "Salicylic", + "Salt", + "Same", + "Samurai", + "San", + "Sanctus", + "Sanforized", + "Sanuk", + "Saturday", + "Save", + "Saves", + "Saxx", + "Say", + "Scarfe", + "Scholls", + "Schott", + "Scored", + "Scott", + "Screw", + "Search", + "Sears", + "Season", + "Seattle", + "Second", + "Seconding", + "Secondly", + "See", + "Seeking", + "Seems", + "Seiko", + "Selena", + "Self", + "Selvedge", + "Sen", + "Sen.", + "Seneca", + "Sense", + "Sep", + "Sep.", + "Sephora", + "Sept", + "Sept.", + "September", + "Series", + "Set", + "Several", + "Sezane", + "Sha", + "Shades", + "Shawshank", + "She", + "She's", + "Sheen", + "Shepherd", + "Sherpani", + "She\u2019s", + "ShipItTo", + "Shirt", + "Shirts", + "Shit", + "Shitty", + "Shoebacca.com", + "Shoepassion", + "Shoes", + "Shoot", + "Shoudnt", + "Should", + "Shrink", + "Shrunk", + "Silicon", + "Simon", + "Simple", + "Since", + "Sith", + "Size", + "Sizing", + "SkincareAddiction", + "Skinny", + "Slacks", + "Slate", + "Sleek", + "Sleeve", + "Slightly", + "Slim", + "Slimmer", + "Slouchy", + "Slovakian", + "Slow", + "Slubby", + "Small", + "Smart", + "Smith", + "Smiths", + "Snap", + "Sneak", + "Sneakers", + "Snoopy", + "So", + "Sobakov", + "Socks", + "Soho", + "Solid", + "Some", + "Someone", + "Somethin", + "Somethin'", + "Something", + "Somethin\u2019", + "Sometimes", + "Somewhat", + "Son", + "Soon", + "Sorry", + "Sort", + "Sorted", + "Souls", + "Sounds", + "South", + "South Carolina", + "Spade", + "Spalwart", + "Spalwarts", + "Speaking", + "Special", + "Spend", + "Spier", + "Split", + "Spoilers", + "Spot", + "Spreva", + "Spring", + "Squalor", + "Ssense", + "St", + "St.", + "Stan", + "Standing", + "Stanley", + "Star", + "Start", + "Starting", + "State", + "Stay", + "Steadman", + "Stella", + "Stephen", + "Stetson", + "Steve", + "Stick", + "Still", + "Stitch", + "Stock", + "Stolen", + "Stop", + "Store", + "Stories", + "Street", + "Strength", + "Strong", + "Studio", + "Stupid", + "Style", + "StyleForum.net", + "Styles", + "Subdued", + "Subtle", + "Suffolk", + "Sugarcane", + "Sugarhigh", + "Suggest", + "Suggestions", + "Suit", + "SuitSupply", + "Suitsupply", + "Summer", + "Sunday", + "Super", + "Superdrug", + "Superga", + "Supergas", + "Supply", + "Sure", + "Surely", + "Sutton", + "Svensson", + "Swiss", + "Sz41wide", + "Sz42", + "Sz8", + "T", + "TALL", + "TBH", + "THAT", + "THE", + "THIS", + "TIA", + "TLDR", + "TM", + "TMI", + "TNF", + "TO", + "TON", + "TOO", + "TOUGH", + "TRF", + "TSG", + "TTS", + "TUMI", + "TV", + "TW", + "TWRL", + "Tabis", + "Tailor", + "Tailoring", + "Take", + "Taking", + "Talk", + "Tall", + "Tan", + "Tapering", + "Target", + "Tavas", + "Taylor", + "Tbh", + "Teal", + "Tecovas", + "Ted", + "Tee", + "Tell", + "Telluride", + "Tenn", + "Tenn.", + "Tennessee", + "Tex", + "Texas", + "Thai", + "Thailand", + "Thank", + "Thankfully", + "Thanks", + "That", + "That's", + "That\u2019s", + "The", + "Their", + "Then", + "There", + "There's", + "There\u2019s", + "These", + "They", + "Thick", + "Things", + "Think", + "Thinking", + "This", + "This's", + "This\u2019s", + "Thom", + "Those", + "Though", + "Thoughts", + "Three", + "Threshold", + "Thrift", + "Thriftstores", + "Through", + "Throw", + "Thursday", + "Thus", + "Thyme", + "Tie", + "Ties", + "TimBuk2", + "Timberland", + "Timbuk2", + "Time", + "Timex", + "Tired", + "Tissot", + "Tj", + "Tl;dr", + "To", + "Today", + "Tokyo", + "Tolkien", + "Tom", + "Tone", + "Too", + "Top", + "Topic", + "Topman", + "Toronto", + "Totally", + "Tote", + "Totes", + "Town", + "Trader", + "Transdimensional", + "Travel", + "Tretorns", + "Tribeca", + "Tried", + "Trinity", + "Triple", + "Tristan", + "Trunbull", + "Truth", + "Try", + "Trying", + "Tudors", + "Tuesday", + "Tumi", + "Tung", + "Turns", + "Tux", + "Tuxes", + "Tweed", + "Twill", + "Twillory", + "Two", + "Tyedyes", + "Type", + "Types", + "Typically", + "Tyrwhitt", + "U", + "U.N.C.L.E.", + "UA", + "UGE", + "UGH", + "UK", + "UMI", + "UNIQLO", + "UNIS", + "US", + "USC", + "UU", + "Uggs", + "Ugh", + "Uhhhh", + "Ultra", + "Ultraboosts", + "Um", + "Unbranded", + "Under", + "Undercover", + "Understanding", + "Unfortunate", + "Unfortunately", + "Union", + "Uniqlo", + "Unique", + "Unis", + "Unless", + "Unsanforized", + "Until", + "Up", + "Updated", + "Upvoted", + "Urban", + "Us", + "Use", + "Usually", + "Utility", + "Utter", + "V", + "V.V", + "VCA", + "VED", + "VER", + "VERY", + "VERYRARE", + "VXb", + "V_V", + "Va", + "Va.", + "Vagn", + "Valley", + "Vancouver", + "Vans", + "Vapormax", + "Vara", + "Vegas", + "Vejas", + "Velva", + "Velvet", + "Vera", + "Versace", + "Versus", + "Very", + "Viberg", + "Vinegar", + "Virginia", + "Viscose", + "Visodate", + "Vitello", + "Vivobarefoot", + "Vodka", + "Vs", + "Vuitton", + "W", + "W.A.", + "W.K.", + "W00", + "W42", + "WAS", + "WAYWT", + "WEEDING", + "WEEDS", + "WHBM", + "WRL", + "WTAPS", + "WTF", + "Waist", + "Wal", + "Walk", + "Walmart", + "Wandering", + "Wang", + "Want", + "Wanted", + "Wardrobe", + "Warehouse", + "Warm", + "Warp", + "Was", + "Wash", + "Wash.", + "Washing", + "Washington", + "Watch", + "Wayfarers", + "We", + "Wear", + "Wearing", + "Wednesday", + "Week", + "Weekender", + "Weft", + "Weight", + "Weird", + "Welcome", + "Well", + "Were", + "West", + "Westbrook", + "Western", + "What", + "What's", + "Whatever", + "What\u2019s", + "When", + "When's", + "Whenever", + "When\u2019s", + "Where", + "Where's", + "Whereas", + "Where\u2019s", + "Whether", + "Which", + "While", + "White", + "Whites", + "Who", + "Who's", + "Who\u2019s", + "Why", + "Why's", + "Why\u2019s", + "Wicks", + "Width", + "Will", + "William", + "Willy", + "Win", + "Windsor", + "Wing", + "Winter", + "Wis", + "Wis.", + "Wisconsin", + "Wish", + "Wishing", + "With", + "Without", + "Wo", + "Woah", + "Wolf", + "Woman", + "Women", + "Wool", + "Wore", + "Work", + "Working", + "Worst", + "Worth", + "Would", + "Wow", + "Wrangler", + "Wranglers", + "Wrap", + "Write", + "Wyatt", + "X\"x", + "X&xxx;X", + "X'Xxxxx", + "X'x", + "X'xxx", + "X'xxxx", + "X++", + "X.", + "X.X", + "X.X.", + "X.X.X.X.X.", + "X.Xxxx", + "X.x", + "X.x.", + "XD", + "XDD", + "XL", + "XS", + "XX", + "XX-dddX.", + "XXL", + "XXX", + "XXX-dddX", + "XXX-ddddX", + "XXXX", + "XXXX_XXXX", + "XXXXx", + "XXXx", + "XXXxxxx", + "XXX\u2019x", + "XXdd", + "XXdddd", + "XXdddd.xxxx", + "XXddx", + "XXdx", + "XXx", + "XXxxx", + "X\\*xx", + "X_X", + "X_x", + "Xbrand", + "Xd", + "Xd-xxx", + "Xdd", + "XddXXXXdXX", + "Xhilaration", + "Xx", + "Xx'", + "Xx'x", + "Xx'xx", + "Xx.", + "Xx.X.", + "Xx;xx", + "XxX", + "XxXX", + "XxXxxxx", + "Xxd", + "Xxdd", + "Xxddxxxx", + "Xxx", + "Xxx'x", + "Xxx.", + "XxxXxx", + "XxxXxxd", + "XxxXxxx", + "XxxXxxxx", + "Xxxx", + "Xxxx'", + "Xxxx'x", + "Xxxx.", + "XxxxXxXx", + "XxxxXxxxx", + "Xxxxx", + "Xxxxx'", + "Xxxxx'x", + "Xxxxx-", + "Xxxxx.", + "Xxxxx.xxx", + "Xxxxx/", + "Xxxxx/ddx", + "XxxxxXxx", + "XxxxxXxxx", + "XxxxxXxxxx", + "XxxxxXxxxx.xxx", + "Xxxxxd", + "Xxxxxdd", + "Xxxxx\u2019", + "Xxxxx\u2019x", + "Xxxx\u2019", + "Xxxx\u2019x", + "Xxx\u2019x", + "Xx\u2019", + "Xx\u2019x", + "Xx\u2019xx", + "X\u2018xx", + "X\u2019x", + "X\u2019xxx", + "X\u2019xxxx", + "Y", + "Y'all", + "YEARS", + "YSL", + "YWT", + "Yale", + "Yay", + "Ybrand", + "Yeah", + "Yee", + "Yeezys", + "Yep", + "Yes", + "Yet", + "Yh", + "Yoox", + "York", + "You", + "YouTube", + "YouTuber", + "Young", + "Younger", + "Your", + "Yup", + "Z", + "Zara", + "Zebras", + "Zerogrand", + "Zimmermann", + "Zoomers", + "Zumiez", + "[", + "[-:", + "[:", + "[=", + "\\", + "\\\")", + "\\*\\", + "\\*narrator", + "\\*screams\\", + "\\*true\\", + "\\*xxxx", + "\\*xxxx\\", + "\\+1", + "\\+d", + "\\-", + "\\-Buy", + "\\-For", + "\\-Jeans", + "\\-Xxx", + "\\-Xxxx", + "\\-Xxxxx", + "\\-Your", + "\\-a", + "\\-buy", + "\\-for", + "\\-jeans", + "\\-stilettos", + "\\-x", + "\\-xxx", + "\\-xxxx", + "\\-your", + "\\[img\\][https://i.imgur.com", + "\\[xxx\\][xxxx://x.xxxx.xxx", + "\\n", + "\\t", + "\\x", + "\\~$20", + "\\~$dd", + "\\~3", + "\\~d", + "]", + "]=", + "^", + "^_^", + "^__^", + "^___^", + "_*)", + "_-)", + "_.)", + "_/\u00af", + "_<)", + "_^)", + "__-", + "__^", + "_\u00ac)", + "_\u0ca0)", + "a", + "a&e", + "a.", + "a.m", + "a.m.", + "aan", + "aay", + "aba", + "abandoning", + "abbreviated", + "abercrombie", + "abilities", + "ability", + "able", + "abnormal", + "abo", + "about", + "above", + "abroad", + "abs", + "absolute", + "absolutely", + "absolutist", + "absorbing", + "absurdly", + "aby", + "ac", + "aca", + "academy", + "accent", + "accept", + "acceptable", + "acceptance", + "accessories", + "accessorise", + "accessorized", + "accessory", + "accommodate", + "accomplishment", + "according", + "account", + "accounts", + "accumulate", + "accuracy", + "accurate", + "accurately", + "accutane", + "ace", + "ach", + "achievable", + "achieve", + "achieving", + "achilles", + "acid", + "ack", + "acknowledge", + "acne", + "aco", + "acquaintance", + "acquainted", + "across", + "act", + "action", + "activity", + "actors", + "actual", + "actualization", + "actually", + "acy", + "ad", + "ada", + "adamantly", + "adapting", + "add", + "added", + "addition", + "additional", + "adds", + "ade", + "adequate", + "adi", + "adidas", + "adjourned", + "adjunct", + "adjust", + "adjustable", + "adjustment", + "adjustments", + "adm", + "adm.", + "admit", + "admitted", + "admitting", + "ado", + "adopted", + "adorable", + "adore", + "ads", + "adult", + "adults", + "advance", + "advantage", + "advertised", + "advice", + "ady", + "ae", + "ael", + "aerie", + "aesthetic", + "aesthetics", + "af", + "af1s", + "afaik", + "afe", + "aff", + "affect", + "affects", + "affiliation", + "affirmation", + "afford", + "affordable", + "afforded", + "afraid", + "after", + "afternoons", + "ag", + "aga", + "again", + "against", + "age", + "aged", + "ageing", + "agencies", + "agency", + "agenda", + "ages", + "aggressive", + "agn", + "ago", + "agree", + "agreed", + "ags", + "ah", + "aha", + "ahead", + "ahhh", + "ahhhhh", + "ahn", + "ai", + "aic", + "aid", + "aig", + "aii", + "aik", + "ail", + "aim", + "aiming", + "ain", + "air", + "airbnb", + "airplane", + "airport", + "ait", + "ak", + "ak.", + "aka", + "ake", + "aki", + "akin", + "aks", + "ala", + "ala.", + "album", + "albums", + "alcohol", + "ald", + "alden", + "aldo", + "ale", + "alf", + "alibaba", + "alien", + "align", + "aligning", + "alk", + "all", + "allen", + "allergic", + "alley", + "allotted", + "allow", + "allowed", + "allsaints", + "alm", + "almost", + "alo", + "alone", + "along", + "alot", + "alp", + "already", + "alright", + "als", + "also", + "alt", + "alteration", + "alterations", + "alternate", + "alternations", + "alternative", + "alternatively", + "alternatives", + "although", + "always", + "aly", + "am", + "am90s", + "ama", + "amassed", + "amateur", + "amazed", + "amazing", + "amazon", + "amb", + "ambiguity", + "ame", + "america", + "american", + "americana", + "americans", + "amethyst", + "ametora", + "ami", + "amiri", + "amn", + "amo", + "among", + "amongst", + "amount", + "amounts", + "amp", + "amp;#x200B", + "amp;#x200b", + "ams", + "amt", + "amung", + "amusement", + "an", + "an.", + "ana", + "anachronorm", + "analogue", + "analogues", + "analysis", + "anchor", + "and", + "and/or", + "andrew", + "ane", + "anecdotal", + "anemic", + "ang", + "angle", + "angry", + "angular", + "ani", + "animal", + "animals", + "ank", + "ankle", + "ankles", + "anm", + "ann", + "anniversary", + "annoyances", + "annoyed", + "annoying", + "ano", + "another", + "ans", + "answer", + "answers", + "ant", + "anthropologie", + "anti", + "anticipated", + "anticipating", + "anxiety", + "anxious", + "any", + "anybody", + "anycase", + "anymore", + "anyone", + "anyones", + "anything", + "anytime", + "anyway", + "anyways", + "anywhere", + "apart", + "apartment", + "apartments", + "apc", + "ape", + "aph", + "apolis", + "apologies", + "app", + "appalling", + "apparel", + "apparently", + "appeal", + "appear", + "appearance", + "appeared", + "appears", + "appease", + "applied", + "apply", + "appreciate", + "appreciated", + "approach", + "approachable", + "approaching", + "appropriate", + "approve", + "approved", + "approximate", + "apps", + "apr", + "apr.", + "april", + "aps", + "aptly", + "apy", + "aqua", + "aquascutum", + "ar.", + "ara", + "arbitrage", + "arc", + "arch", + "ard", + "are", + "area", + "areas", + "areola", + "areolas", + "arf", + "argentina", + "argue", + "argument", + "arguments", + "ariel", + "arigato", + "aritizia", + "aritzia", + "ariz", + "ariz.", + "arizonas", + "ark", + "ark.", + "arkansas", + "arket", + "arl", + "arm", + "armour", + "arms", + "arn", + "aro", + "around", + "arp", + "array", + "arrive", + "arrives", + "arriving", + "arrogance", + "ars", + "arse", + "art", + "arthur", + "article", + "articles", + "artisan", + "artisanal", + "artist", + "artists", + "artsy", + "ary", + "as", + "asap", + "ascis", + "ase", + "asf", + "ash", + "ashamed", + "ashby", + "asia", + "asian", + "asics", + "aside", + "ask", + "asked", + "asket", + "asking", + "asks", + "askwomen", + "askwomenadvice", + "asos", + "asp", + "aspect", + "aspire", + "asprin", + "ass", + "asser", + "assessment", + "asshole", + "assistance", + "associated", + "associations", + "assoulin", + "assume", + "assumed", + "assuming", + "assumption", + "assure", + "ast", + "astonishing", + "astorflex", + "astrakhan", + "astro", + "asy", + "asymmetric", + "at", + "ata", + "ate", + "ath", + "athleisure", + "athleta", + "athletic", + "atlantic", + "atm", + "atmosphere", + "ato", + "ats", + "att", + "attached", + "attacked", + "attacking", + "attempt", + "attempting", + "attended", + "attending", + "attention", + "attest", + "attire", + "attitude", + "attorney", + "attorneys", + "attract", + "attractive", + "aty", + "au", + "aud", + "audience", + "audio", + "audiobooks", + "aug", + "aug.", + "august", + "august/", + "aul", + "aungier", + "aunt", + "austin", + "australia", + "australian", + "authentic", + "authentics", + "author", + "automatic", + "automatically", + "autonomy", + "autumn", + "avail", + "available", + "ave", + "avenue", + "average", + "aviators", + "avo", + "avoca", + "avoid", + "avoiding", + "avon", + "avs", + "avy", + "aw00", + "aware", + "awareness", + "away", + "awesome", + "awful", + "awhile", + "awkward", + "awl", + "awn", + "aws", + "aww", + "ax-", + "axel", + "axi", + "axx", + "ayr", + "ays", + "azy", + "azz", + "b", + "b&r", + "b.", + "b01lxoo3sd", + "bRoGuEs", + "baby", + "babying", + "back", + "backdrop", + "background", + "backlash", + "backless", + "backpack", + "backpacking", + "backpacks", + "backup", + "backwards", + "backwoods", + "backyard", + "bad", + "badass", + "baddies", + "badgers", + "bag", + "baggies", + "baggu", + "baggy", + "bags", + "bahn", + "bailey", + "bake", + "baker", + "bal", + "balance", + "balcony", + "balenciaga", + "ballard", + "ballet", + "balls", + "balm", + "balmain", + "bambino", + "bamboo", + "ban", + "banana", + "bananas", + "band", + "bandana", + "bandanas", + "bandeau", + "bandolier", + "bands", + "bang", + "bangkok", + "bangladesh", + "bangle", + "bank", + "banking", + "bankruptcy", + "banks", + "bao", + "bape", + "bar", + "barber", + "barbour", + "barcode", + "barcodes", + "bare", + "barefoot", + "barely", + "bargain", + "barista", + "barney", + "barneys", + "barrel", + "barring", + "barristers", + "bas", + "base", + "baseball", + "based", + "baseline", + "bashed", + "basic", + "basically", + "basics", + "basis", + "basket", + "basketball", + "bastard", + "bastardization", + "bat", + "batch", + "bateman", + "bathing", + "bathingsuit", + "bathroom", + "battle", + "bay", + "bbc", + "bbq", + "bby", + "bc", + "bcd", + "bdg", + "bds", + "be", + "beach", + "beaches", + "beaded", + "bean", + "beanie", + "beanies", + "beard", + "beat", + "beaten", + "beating", + "beautiful", + "beautifully", + "beautifying", + "became", + "because", + "beckman", + "become", + "becomes", + "becoming", + "becouse", + "bed", + "bedazzled", + "bedford", + "bedroom", + "bedtime", + "bee", + "been", + "beer", + "bees", + "beeswax-", + "before", + "beforehand", + "beg", + "begin", + "beginner", + "beginning", + "behavioral", + "behind", + "beige", + "being", + "bel", + "believe", + "believed", + "bell", + "belly", + "belong", + "beloved", + "below", + "belt", + "belt-", + "belts", + "bemberg", + "bench", + "bend", + "benefit", + "benefits", + "benheart", + "ber", + "berlin", + "bernie", + "berry", + "bes", + "besides", + "best", + "bestdressed", + "bet", + "betrayal", + "better", + "between", + "beyond", + "bf", + "bhldn", + "bi", + "bia", + "biceps", + "bicester", + "bie", + "bieber", + "big", + "big&tall", + "bigger", + "biggest", + "bike", + "biker", + "biking", + "bikini", + "bikinis", + "bill", + "billowy", + "bind", + "bins", + "biological", + "birdies", + "birkenstock", + "birkenstocks", + "birks", + "birthday", + "birthdays", + "birthed", + "bis", + "biscuit", + "bise", + "bit", + "bitch", + "bite", + "bits", + "bitten", + "bitter", + "bizarre", + "bjorknb", + "bkw", + "black", + "blackberry", + "blade", + "blah", + "blake", + "blame", + "blaming", + "bland", + "blankets", + "blazer", + "blazers", + "ble", + "bleaching", + "bleed", + "blend", + "blended", + "blends", + "blink", + "blisters", + "block", + "blocky", + "blog", + "bloggers", + "blonde", + "blood", + "bloody", + "bloomingdale", + "bloomspoons", + "blouse", + "blouses", + "blousing", + "blouson", + "blow", + "blown", + "blowouts", + "blue", + "bluegrass", + "blues", + "blundstones", + "blurring", + "bly", + "bnb", + "boah", + "board", + "boarding", + "boards", + "boat", + "boden", + "bodies", + "body", + "bodysuit", + "bohemian", + "boho", + "boiling", + "bok", + "bol", + "bold", + "bolder", + "bombarded", + "bomber", + "bon", + "bond", + "bone", + "bonobos", + "bonus", + "boo", + "boob", + "boohoo", + "book", + "booked", + "books", + "boonie", + "boost", + "boosters", + "boosts", + "boot", + "bootcut", + "boots", + "booty", + "bop", + "bopping", + "bor", + "border", + "bored", + "boring", + "born", + "boroughs", + "borrowed", + "bos", + "boss", + "bostonian", + "bot", + "both", + "bother", + "bothers", + "botique", + "bottle", + "bottles", + "bottom", + "bottoms", + "botton", + "bought", + "bougie", + "boulder", + "bouldering", + "bouncy", + "bout", + "bouta", + "boutique", + "boutiques", + "bow", + "bowler", + "bowtie", + "box", + "boxer", + "boxier", + "boxy", + "boy", + "boyfriend", + "boys", + "br", + "br.", + "bra", + "bracelet", + "bracelets", + "bracket", + "bradley", + "branch", + "branches", + "branching", + "brand", + "branded", + "branding", + "brands", + "bras", + "brave", + "brazil", + "brazilian", + "bre", + "break", + "breakdown", + "breaks", + "breakup", + "breath", + "breathable", + "breathe", + "breezy", + "bribe", + "brick", + "bride", + "bridesmaid", + "bridesmaids", + "bridge", + "briefcases", + "briefs", + "bright", + "brighter", + "brightly", + "brights", + "brim", + "bring", + "bringing", + "brings", + "brink", + "brioni", + "bristol", + "british", + "brittle", + "bro", + "broad", + "brogues", + "broke", + "brooks", + "bros", + "bros.", + "brosnan", + "brothers", + "brought", + "browline", + "brown", + "browne", + "browns", + "browse", + "browsing", + "brunches", + "brush", + "brutal", + "bs", + "btw", + "buck", + "buckle", + "bucks", + "budding", + "buddy", + "budget", + "budgeting", + "buffalo", + "bugs", + "build", + "building", + "built", + "bulk", + "bulky", + "bullet", + "bullied", + "bum", + "bummer", + "bump", + "bumpstart", + "bun", + "bunch", + "bunions", + "burberry", + "burbs", + "burgundy", + "burkes", + "burned", + "burning", + "burts", + "bus", + "bushacres", + "business", + "businesses", + "bust", + "busty", + "busy", + "but", + "butt", + "butterfly", + "butterstick", + "butthurt", + "buttom", + "button", + "buttoned", + "buttoning", + "buttons", + "buttonups", + "buy", + "buyer", + "buying", + "buys", + "bvi", + "bvs", + "bwe", + "by", + "byproduct", + "b\u2019s", + "c", + "c'm", + "c++", + "c.", + "c\\*\\*\\", + "ca", + "cabell", + "cable", + "cables", + "cabo", + "cad", + "caftan", + "cage", + "cake", + "cal", + "calf", + "calif", + "calif.", + "california", + "call", + "called", + "calorie", + "calves", + "camden", + "came", + "camel", + "camelback", + "camera", + "camilla", + "camis", + "camo", + "camouflage", + "camp", + "camper", + "camping", + "camps", + "campus", + "can", + "canada", + "canadian", + "cancel", + "canoeing", + "canonically", + "cans", + "canvas", + "canvassed", + "cap", + "capable", + "cape", + "capes", + "capitol", + "capsule", + "capsule-", + "captivating", + "captoe", + "captured", + "caputo", + "car", + "carbon", + "card", + "cardholder", + "cardigan", + "cardigans", + "cards", + "care", + "cared", + "career", + "careers", + "careful", + "carefully", + "carefulness", + "cares", + "cargo", + "caring", + "carlos", + "carmina", + "carminas", + "carolina", + "carpet", + "carpets", + "carried", + "carries", + "carry", + "carrying", + "cart", + "cartel", + "case", + "cases", + "cash", + "cashmere", + "casino", + "casio", + "castle", + "casual", + "casually", + "cat", + "catalogs", + "catch", + "catches", + "catching", + "catchy", + "categories", + "categorize", + "category", + "cathartic", + "cats", + "caught", + "cause", + "causing", + "caution", + "cautious", + "cavalli", + "cavalry", + "cbas", + "cbd", + "cci", + "cco", + "cdb\u2019s", + "cdg", + "ce>", + "ce\\", + "cea", + "ced", + "cee", + "cel", + "celcius", + "celebrate", + "celine", + "celsius", + "centerpiece", + "central", + "centre", + "century", + "cer", + "ceremonies", + "certain", + "certainly", + "certina", + "ces", + "cey", + "ch", + "ch.", + "chafes", + "chafing", + "chain", + "chains", + "chairs", + "challenge", + "challenged", + "cham", + "chambray", + "champagne", + "chance", + "chanel", + "change", + "changed", + "changes", + "changing", + "channel", + "characteristics", + "characters", + "charcoal", + "charge", + "charged", + "charger", + "charging", + "charity", + "charles", + "charlotte", + "charm", + "chart", + "charts", + "charts_and_facts", + "chat", + "che", + "cheap", + "cheaper", + "cheaply", + "check", + "checked", + "checkered", + "checking", + "checkmate", + "checkout", + "cheekbones", + "cheeks", + "cheerful", + "cheers", + "cheesy", + "chelsea", + "chelseas", + "chemical", + "chemo", + "chemoraz", + "chest", + "chew", + "chewed", + "chic", + "chicago", + "chicken", + "chicks", + "chicwish", + "chie", + "child", + "children", + "chill", + "chime", + "chin", + "chinese", + "chino", + "chinos", + "cho", + "chocolate", + "choice", + "choices", + "choir", + "choked", + "choking", + "cholesterol", + "cholo", + "chonk", + "choose", + "choosing", + "chore", + "chores", + "chosen", + "christ", + "christmas", + "chronicles", + "chronograph", + "chucks", + "chukka", + "chukkas", + "chunkier", + "chunky", + "chute", + "chy", + "cid", + "cigarettes", + "cil", + "cinched", + "cinches", + "cinema", + "circle", + "circulating", + "cis", + "cit", + "cities", + "citing", + "citizen", + "citizens", + "city", + "ck/", + "cks", + "cky", + "claim", + "claimed", + "clarify", + "clarifying", + "clarity", + "clark", + "clarks", + "clash", + "class", + "classes", + "classic", + "classics/90s", + "classier", + "cle", + "clean", + "cleaner", + "cleaners", + "cleaning", + "cleanly", + "cleans", + "clear", + "clearance", + "clearly", + "cleavage", + "cliche", + "click", + "clickbait", + "clicked", + "clicks", + "client", + "clients", + "climate", + "climates", + "climbing", + "clingy", + "clinique", + "clip", + "clips", + "cloning", + "cloos", + "close", + "closed", + "closer", + "closest", + "closet", + "cloth", + "clothes", + "clothing", + "cloudy", + "clown", + "clowns", + "club", + "clubmasters", + "clunky", + "clutch", + "clutches", + "cm", + "cm_sw_r_cp_apa_i_7HbmDbQMHHJNA", + "cm_sw_r_cp_apa_i_7hbmdbqmhhjna", + "cne", + "co", + "co.", + "coach", + "coachella", + "coaster", + "coat", + "coats", + "cobbler", + "cocksox", + "coconut", + "code", + "codes", + "coffee", + "coffee_for_dinner", + "cohesive", + "coin", + "cold", + "colder", + "cole", + "colectiff", + "colinas", + "collar", + "collared", + "collars", + "colleagues", + "collected", + "collection", + "collections", + "college", + "collette", + "colo", + "colo.", + "color", + "colorado", + "colored", + "colores", + "colorful", + "colors", + "colour", + "coloured", + "colours", + "colt", + "columbia", + "com", + "combat", + "combatant", + "combinations", + "combine", + "combo", + "combover", + "come", + "comeback", + "comedy", + "comes", + "comfort", + "comfortable", + "comfortably", + "comfy", + "comical", + "coming", + "command", + "commanded", + "commando", + "comment", + "commented", + "commenting", + "comments", + "common", + "communication", + "communities", + "community", + "communtiy", + "commute", + "commuting", + "companies", + "company", + "comparable", + "compare", + "compared", + "compares", + "comparing", + "comparison", + "compartment", + "compassion", + "compatible", + "compelled", + "competent", + "complains", + "complaint", + "complaints", + "complemented", + "complements", + "complete", + "completed", + "completely", + "complex", + "complexion", + "complexions", + "complexity", + "complicated", + "compliment", + "complimentary", + "complimented", + "complimenting", + "compliments", + "compose/?to=/r", + "compounds", + "compromise", + "computer", + "con", + "concealed", + "concept", + "concern", + "concerned", + "concerns", + "concert", + "conclude", + "conclusion", + "condition", + "conditioned", + "conditioner", + "conditioners", + "conditions", + "condo", + "condolences", + "confederate", + "confetti", + "confidence", + "confident", + "confined", + "confirm", + "confirming", + "conflating", + "conflicted", + "confuse", + "confused", + "confusing", + "confusion", + "congrats", + "congratulations", + "conjunction", + "conn", + "conn.", + "connery", + "connotations", + "cons", + "conscience", + "conscious", + "conscription", + "consensus", + "conservative", + "consider", + "considerably", + "considered", + "considering", + "consignment", + "consistency", + "consistent", + "constant", + "constantly", + "constraints", + "constructed", + "construction", + "constructive", + "consultation", + "consulting", + "consumer", + "consuming", + "contact", + "contains", + "contemporary", + "contends", + "content", + "context", + "contexts", + "continue", + "continues", + "contract", + "contractors", + "contradiction", + "contrast", + "contrasting", + "contributing", + "control", + "controlling", + "convenience", + "conversation", + "conversational", + "converse", + "converses", + "convert", + "convertable", + "convertible", + "conviction", + "convinced", + "cook", + "cool", + "cooler", + "cools", + "cooper", + "coordinate", + "coordinates", + "corals", + "cord", + "cordovan", + "corduroy", + "core", + "corner", + "corp", + "corp.", + "corporate", + "correct", + "corrected", + "correctly", + "correlation", + "corset", + "cos", + "cosign", + "cost", + "costing", + "costs", + "costuming", + "cotton", + "coul", + "could", + "counsel", + "count", + "counterintuitive", + "countries", + "country", + "countryman", + "counts", + "county", + "couple", + "courageous", + "course", + "courses", + "court", + "courts", + "couture", + "cover", + "coverage", + "covered", + "covers", + "coverups", + "coveting", + "cow", + "cowboy", + "coworkers", + "cowrie", + "cows", + "coyote", + "coz", + "cp", + "cpeters1114", + "cps", + "cracker", + "craftsmanship", + "craig", + "crap", + "crappy", + "crash", + "crazy", + "cre", + "cream", + "crease", + "creases", + "create", + "created", + "creates", + "creating", + "creation", + "creative", + "creators", + "credit", + "creme", + "crepe", + "crew", + "crewneck", + "cribsheet", + "criminal", + "crisp", + "crispy", + "cristiano", + "criteria", + "criticism", + "cro", + "crochet", + "crop", + "cropped", + "cross", + "crossbodies", + "crossbody", + "crossed", + "crossfit", + "crotch", + "crowd", + "crowley", + "crown", + "cru", + "cruelty", + "crystal", + "crystals", + "cs", + "ct.", + "cts", + "cues", + "cuff", + "cuffed", + "cuffing", + "cufflinks", + "cuffs", + "cultivated", + "cultural", + "culture", + "cupro", + "cups", + "curation", + "curious", + "curly", + "curlyhair", + "currency", + "current", + "currently", + "curtain", + "curtis", + "curve", + "curvy", + "cus", + "cushion", + "custom", + "customer", + "customers", + "customization", + "customize", + "customizing", + "cut", + "cutaway", + "cute", + "cuter", + "cutoff", + "cutout", + "cuts", + "cutting", + "cuz", + "cycle", + "cycled", + "c\u00e9e", + "c\u00e9line", + "c\u2019m", + "c\u2019mon", + "d", + "d'd", + "d)", + "d-", + "d-)", + "d-X", + "d-xxx", + "d.", + "d.c.", + "d.d", + "d.dd", + "d.x", + "d/d", + "d/dd", + "d8z", + "d:dd", + "d:ddXX-dXX", + "d:ddxx-dxx", + "dX", + "dXXX", + "dXxxxx", + "d_d", + "d_x", + "dad", + "dads", + "dagne", + "daily", + "dainty", + "daisy", + "dal", + "dallas", + "damage", + "damaged", + "damn", + "dance", + "dang", + "daniel", + "danm", + "dar", + "dare", + "daring", + "dark", + "darken", + "darker", + "darn", + "darts", + "das", + "data", + "date", + "dated", + "dating", + "daunting", + "day", + "daylight", + "days", + "db", + "db3527", + "db3527.html", + "dby", + "dd", + "dd%+", + "dd-$dd", + "dd.d", + "dd.dd", + "dd/d", + "ddX", + "ddXX", + "ddd", + "dddX", + "dddXXX", + "dddd", + "dddd-", + "ddddX", + "ddddx", + "dddx", + "dddxxx", + "dds", + "ddx", + "ddx-", + "ddx.x", + "ddx.x.", + "ddxx", + "ddxx-dd", + "ddxxx", + "ddy", + "de", + "dea", + "dead", + "deal", + "dealbreaking", + "dealing", + "deals", + "dear", + "death", + "debit", + "debt", + "dec", + "dec.", + "decade", + "decades", + "deceased", + "december", + "decent", + "decently", + "decide", + "decided", + "deciding", + "decimated", + "decision", + "decisions", + "deck", + "declare", + "declining", + "deconstructed", + "ded", + "dedicating", + "deep", + "deeper", + "deeply", + "def", + "default", + "defending", + "define", + "defines", + "defining", + "definitely", + "definitive", + "defitntely", + "defraud", + "defrauding", + "defying", + "degraded", + "degree", + "degrees", + "del", + "del.", + "delay", + "delete", + "deliberately", + "deliberation", + "delicate", + "delivered", + "delta", + "demeulemeester", + "demise", + "demographic", + "den", + "denim", + "denium", + "deo", + "deoderant", + "deodorize", + "department", + "depend", + "dependent", + "depending", + "depends", + "depop", + "depositing", + "der", + "derbies", + "derby", + "des", + "describe", + "described", + "describes", + "description", + "descriptions", + "desert", + "design", + "designed", + "designer", + "designers", + "designs", + "desired", + "desperate", + "desperately", + "despite", + "destination", + "destroyed", + "destroys", + "detachable", + "detail", + "detailing", + "details", + "detainment", + "determine", + "determining", + "develop", + "developed", + "developing", + "development", + "devil", + "devious", + "dew", + "dex", + "dey", + "dge", + "dgy", + "dia", + "diadora", + "dial", + "dials", + "diamond", + "diarrheal", + "diary", + "dice", + "dick", + "dickies", + "dictate", + "dictated", + "did", + "die", + "died", + "diego", + "diemme", + "diesel", + "diet", + "differ", + "difference", + "differences", + "different", + "differentiate", + "differently", + "differing", + "difficult", + "dig", + "digital", + "digitals", + "dignity", + "dilemma", + "ding", + "dinner", + "dinners", + "dio", + "dior", + "direction", + "directions", + "directly", + "dirt", + "dirty", + "disagree", + "disagreement", + "disappeared", + "disappointed", + "disappointing", + "discern", + "discharge", + "disciplines", + "disclaimer", + "disco", + "discontinued", + "discount", + "discounted", + "discounts", + "discover", + "discovered", + "discovering", + "discreet", + "discrete", + "discuss", + "discussed", + "discussing", + "discussion", + "disguise", + "disgusting", + "dish", + "disheartening", + "dishwasher", + "disillusioned", + "dislike", + "disliked", + "dislikes", + "disposable", + "disproportionate", + "dispute", + "disregard", + "disrespectful", + "distance", + "distilled", + "distinction", + "distinguish", + "distinguishing", + "distorted", + "distressed", + "distribution", + "dit", + "dive", + "diverse", + "divide", + "diy", + "dka", + "dle", + "dly", + "dm.", + "dms", + "dnt", + "do", + "doc", + "dochy", + "dockers", + "docs", + "doctor", + "doctors", + "documentation", + "dodgy", + "doen", + "does", + "dog", + "dogs", + "doin", + "doin'", + "doing", + "doin\u2019", + "dole", + "dollar", + "dollars", + "dolls", + "dom", + "domestic", + "dominates", + "don", + "don't", + "donated", + "done", + "door", + "dopamine", + "dope", + "dor", + "dorado", + "dorms", + "dorsia", + "dot", + "double", + "doublespeak", + "doubt", + "doubtful", + "dough", + "dover", + "dow", + "dowager", + "down", + "download", + "downs", + "downside", + "downtown", + "downvoted", + "dp", + "dpa", + "dr", + "dr.", + "drained", + "drama", + "dramatic", + "drape", + "drapes", + "drapey", + "drastically", + "drawback", + "drawbacks", + "drawn", + "drawstring", + "dream", + "dress", + "dressed", + "dresses", + "dressier", + "dressing", + "dressy", + "drier", + "dries", + "drilled", + "drink", + "drinking", + "drinks", + "drive", + "drivers", + "driving", + "drop", + "dropped", + "drug", + "drugs", + "drugstore", + "drunk", + "dry", + "drycleaner", + "dryer", + "drying", + "drywall", + "dth", + "dublin", + "duck", + "dude", + "dudes", + "due", + "dukes", + "dull", + "duller", + "duly", + "dumb", + "dumbest", + "dumbledore", + "dumped", + "dumpling", + "dupes", + "duplicate", + "duplicating", + "durability", + "durable", + "during", + "dutifully", + "dutti", + "dx", + "dx.x", + "dx.x.", + "dxx", + "dxxx", + "dxxxx", + "dye", + "dyed", + "dyeing", + "dying", + "dynasty", + "d\u00e9bet", + "d\u2019d", + "e", + "e's", + "e.", + "e.g", + "e.g.", + "eBay", + "each", + "ead", + "eagle", + "eah", + "eak", + "eal", + "eam", + "ean", + "eap", + "ear", + "earbuds", + "earl", + "earlier", + "early", + "earring", + "earrings", + "ears", + "earth", + "earthy", + "eas", + "ease", + "easier", + "easiest", + "easily", + "east", + "easy", + "eat", + "eating", + "eau", + "eb.", + "ebay", + "ebe", + "ebr", + "ebt", + "ec.", + "eca", + "eccentric", + "ecclectic", + "ecco", + "ece", + "ech", + "echo", + "eck", + "eco", + "ecru", + "ecs", + "ect", + "ede", + "edge", + "edgelord", + "edges", + "edging", + "edgy", + "edifice", + "edit", + "edited", + "edition", + "editor", + "edmond", + "edmonds", + "eds", + "educating", + "education", + "edy", + "eed", + "eee", + "eehhh", + "eek", + "eel", + "eem", + "een", + "eep", + "eer", + "ees", + "eet", + "ef-316d.", + "eff", + "effect", + "effectively", + "efficient", + "efficiently", + "effing", + "effort", + "effortless", + "efforts", + "efr-527d", + "efs", + "eft", + "eg", + "ege", + "egg", + "eggshell", + "ego", + "egs", + "eh", + "ehhh", + "ehl", + "eileen", + "ein", + "eir", + "eit", + "either", + "ekp", + "eks", + "el", + "el.", + "ela", + "elastane", + "elastic", + "elasticated", + "eld", + "elevate", + "elf", + "eliminate", + "eliminates", + "ell", + "elliot", + "elliott", + "elliptical", + "elodie", + "elp", + "els", + "elsa", + "else", + "elsewhere", + "elt", + "ely", + "em", + "ema", + "email", + "emailed", + "embarrassed", + "eme", + "emerald", + "emergency", + "emi", + "emily", + "emissions", + "emo", + "emotional", + "emotions", + "emphasized", + "employee", + "employees", + "empty", + "ems", + "emulate", + "emy", + "en", + "en.", + "ena", + "encourage", + "end", + "endeavor", + "ended", + "endless", + "endlessly", + "ends", + "ene", + "energy", + "engineers", + "england", + "englands", + "english", + "engrave", + "engraving", + "enjoy", + "enjoyed", + "enjoying", + "enn", + "enormous", + "enough", + "enroll", + "ens", + "ensemble", + "ensure", + "ent", + "enter", + "entering", + "enthusiasts", + "entire", + "entirely", + "entireworld", + "environment", + "environments", + "enzymes", + "eon", + "eos", + "ep.", + "epe", + "episode", + "eps", + "ept", + "equal", + "equator", + "equipment", + "equity", + "equivalents", + "er-", + "era", + "eras", + "erb", + "erd", + "ere", + "erg", + "ergonomics", + "erm", + "ern", + "ero", + "err", + "erradicate", + "errands", + "error", + "errors", + "ers", + "ert", + "ery", + "es/", + "escape", + "escapism", + "ese", + "esentially", + "esh", + "esme", + "esp", + "espadrilles", + "especially", + "esperadillas", + "ess", + "essential", + "essentially", + "essentials", + "est", + "established", + "esteem", + "estimated", + "esy", + "eta", + "etc", + "ete", + "eth", + "ethic", + "ets", + "etsy", + "ety", + "eup", + "eur", + "euro", + "europe", + "european", + "euthanized", + "ev.", + "eva", + "evaluation", + "evaporated", + "evasion", + "eve", + "even", + "evening", + "event", + "events", + "eventually", + "ever", + "everette", + "everlane", + "every", + "everybody", + "everyday", + "everyone", + "everyones", + "everything", + "everytime", + "everywhere", + "evi", + "evidence", + "evil", + "evocative", + "evolved", + "evolving", + "ew=", + "ewn", + "ews", + "ex", + "exact", + "exactly", + "exaggerated", + "example", + "excedrin", + "excellent", + "except", + "excess", + "excessive", + "exchange", + "excited", + "exciting", + "exclusive", + "exclusively", + "excuse", + "execute", + "executed", + "exercise", + "exercises", + "exhausted", + "exhausting", + "exist", + "exotics", + "expanded", + "expect", + "expectation", + "expected", + "expecting", + "expensive", + "experience", + "experienced", + "experiences", + "experimental", + "experimentation", + "experimenting", + "expert", + "expertise", + "explain", + "explained", + "explaining", + "explanation", + "explicit", + "explore", + "exponentially", + "exposed", + "express", + "expressed", + "expressing", + "expression", + "expressive", + "ext", + "extend", + "extended", + "extension", + "extensions", + "extra", + "extreme", + "extremely", + "exudes", + "exy", + "eye", + "eyeing", + "eyelash", + "eyelashes", + "eyes", + "eys", + "eze", + "ezy", + "e\u2019s", + "f", + "f.", + "f1s", + "f21", + "f9q", + "fPG", + "f\\*ck", + "fabric", + "fabricated", + "fabrics", + "fabulous", + "fabulously", + "facade", + "face", + "facebook", + "faces", + "faceshape", + "facial", + "fact", + "factoids", + "factor", + "factors", + "factory", + "facts", + "fade", + "faded", + "fades", + "fading", + "fahrenheit", + "failing", + "fails", + "failure", + "failures", + "fair", + "fairfield", + "fairly", + "fairness", + "faith", + "fake", + "fakes", + "fall", + "fallen", + "falling", + "falls", + "false", + "fam", + "familiar", + "family", + "famous", + "fan", + "fanatics", + "fancier", + "fancy", + "fandom", + "fanfic", + "fanny", + "fannypack", + "fans", + "fantasies", + "fantastic", + "far", + "farfetch", + "farm", + "farming", + "farsley", + "fashion", + "fashion_brand", + "fashionable", + "fashionably", + "fashioned", + "fashionistas", + "fashionnova", + "fashionreps", + "fast", + "faster", + "fastest", + "fat", + "father", + "fatherhood", + "fault", + "faulty", + "faux", + "fav", + "fave", + "favo", + "favor", + "favorite", + "favorites", + "favourite", + "favourites", + "favs", + "fawkner", + "fear", + "feathers", + "featherweight", + "features", + "feb", + "feb.", + "fed", + "fedora", + "fee", + "feed", + "feedback", + "feel", + "feeling", + "feelings", + "feels", + "fees", + "feet", + "fell", + "fellow", + "felt", + "female", + "femalefashionadvice", + "feminine", + "feminism", + "fence", + "fer", + "fern", + "ferragamo", + "fes", + "festival", + "festivals", + "fetch", + "fetus", + "few", + "ff-", + "ffa", + "ffs", + "ffy", + "fiancee", + "fianc\u00e9e", + "fiber", + "fibre", + "fic", + "fiction", + "field", + "fields", + "fif", + "fighting", + "figure", + "figured", + "figures", + "figuring", + "filas", + "file", + "fill", + "filled", + "film", + "filson", + "final", + "finally", + "finance", + "financially", + "find", + "findareddit", + "finding", + "finds", + "fine", + "fined", + "finest", + "finger", + "fingerlakes", + "fingers", + "finish", + "finished", + "fiore", + "fire", + "firewood", + "firm", + "firmer", + "firmly", + "firms", + "first", + "fisher", + "fishing", + "fist", + "fit", + "fitch", + "fitness", + "fits", + "fitted", + "fitting", + "five", + "fix", + "fjallraven", + "fla", + "fla.", + "flag", + "flakes", + "flannel", + "flannels", + "flare", + "flares", + "flash", + "flashing", + "flashy", + "flat", + "flats", + "flattened", + "flattering", + "flaunt", + "flavortown", + "flaws", + "fle", + "flex", + "flexible", + "flight", + "flip", + "flippin", + "flock", + "floor", + "flop", + "flops", + "floral", + "florence", + "florentine", + "florida", + "flourish", + "flower", + "flowers", + "flowey", + "flowing", + "flowy", + "fluffy", + "fluke", + "flush", + "flushable", + "fly", + "flying", + "foam", + "focus", + "focused", + "focusing", + "fold", + "folds", + "folk", + "folks", + "follicles", + "follow", + "followed", + "following", + "followup", + "fond", + "fondly", + "font", + "food", + "foods", + "foot", + "foothills", + "footies", + "footloose", + "footwear", + "fop", + "for", + "force", + "forced", + "forcing", + "ford", + "forehead", + "forest", + "forever", + "forever21", + "forget", + "forgetful", + "forgetfulness", + "forgets", + "forgettable", + "forgetting", + "forgive", + "forgot", + "form", + "formal", + "formality", + "forming", + "formula", + "fortnight", + "fortunate", + "fortunately", + "fortune", + "forum", + "forums", + "forward", + "fossil", + "found", + "foundation", + "founded", + "four", + "fox", + "fpg", + "fr", + "fraction", + "fragile", + "fragrance", + "frame", + "framing", + "france", + "francisco", + "frank", + "frankly", + "fratty", + "fraud", + "frayed", + "fraying", + "freak", + "freaking", + "free", + "freedom", + "freeeeeee", + "freeing", + "freeloaders", + "freeman", + "french", + "frequent", + "frequently", + "fresh", + "fresher", + "friday", + "fridge", + "friend", + "friendly", + "friends", + "friendship", + "friggin", + "frizzy", + "from", + "front", + "frugal", + "frugalmalefashion", + "frustrated", + "frustrating", + "frustration", + "ft", + "ftf", + "fts", + "fty", + "fuck", + "fucking", + "fucks", + "ful", + "fulfilled", + "full", + "fully", + "fun", + "function", + "functional", + "fund", + "fundamentally", + "funds", + "funeral", + "funerals", + "funky", + "funnily", + "funny", + "fur", + "furniture", + "further", + "fused", + "future", + "g", + "g.", + "g9", + "ga", + "ga.", + "gaberdines", + "gain", + "gained", + "gal", + "gallagher", + "gallery", + "galore", + "gambler", + "game", + "games", + "gamification", + "gaming", + "gan", + "gap", + "gar", + "garbage", + "garden", + "gardening", + "garish", + "garment", + "garments", + "garnet", + "gas", + "gat", + "gateway", + "gathering", + "gator", + "gats", + "gaudy", + "gauge", + "gave", + "gay", + "gazelle", + "gbt", + "gby", + "gd", + "gear", + "ged", + "geeks", + "gel", + "gems", + "gemstones", + "gen", + "gen.", + "gender", + "gendering", + "general", + "generally", + "generates", + "generation", + "generational", + "generic", + "genesis", + "gentle", + "gentlemen", + "gentlesirs", + "gently", + "gents", + "genuine", + "genuinely", + "geometric", + "george", + "georgette", + "georgia", + "ger", + "gerald", + "german", + "germs", + "ges", + "gesture", + "get", + "gets", + "getting", + "getup", + "gf", + "gg", + "ggo", + "ggs", + "ggu", + "ggy", + "ghs", + "ght", + "gia", + "giant", + "gic", + "gie", + "gift", + "gig", + "gigantic", + "gigi", + "gilet", + "gilligan", + "gin", + "gingham", + "gios", + "giovanni", + "girl", + "girlfriend", + "girls", + "git", + "give", + "giveaway", + "given", + "givenchy", + "gives", + "giving", + "glad", + "gladly", + "glamorous", + "glass", + "glasses", + "glasto", + "gle", + "glean", + "gloss", + "glossier", + "glossy", + "gloves", + "glow", + "glue", + "glued", + "gly", + "gma", + "gne", + "gns", + "go", + "goal", + "goals", + "god", + "godawful", + "goddamn", + "goer", + "goes", + "goin", + "goin'", + "goinf", + "going", + "goin\u2019", + "gold", + "goldblum", + "golf", + "golly", + "gomez", + "gon", + "gone", + "gonna", + "good", + "goodfellow", + "goodies", + "goodness", + "goods", + "goodwill", + "goodyear", + "goodyearwelt", + "goofy", + "google", + "googled", + "googling", + "goop", + "goose", + "gore", + "gorgeous", + "gosh", + "got", + "goth", + "gotten", + "gouge", + "gov", + "gov.", + "government", + "gown", + "goyard", + "gp", + "gq", + "grab", + "grabbed", + "grabbing", + "gracious", + "grad", + "graded", + "gradual", + "graduate", + "graduated", + "grail", + "grailed", + "grails", + "grain", + "grand", + "grandpa", + "grandparent", + "grandpros", + "granola", + "graphic", + "graphite", + "grasp", + "grateful", + "gravel", + "gravitate", + "gray", + "grays", + "greasing", + "great", + "greater", + "greatly", + "greatness", + "green", + "greenland", + "greeting", + "grenadine", + "grew", + "grey", + "grieving", + "grippy", + "groceries", + "grocery", + "grooming", + "groomsmen", + "gross", + "grosser", + "grossly", + "group", + "groups", + "grovelled", + "grow", + "growing", + "grown", + "grows", + "growth", + "grunge", + "grungy", + "gry", + "gst", + "gstar", + "gth", + "gu", + "guarantee", + "guaranteed", + "guarded", + "guarding", + "gucci", + "gue", + "guess", + "guessing", + "guest", + "guidance", + "guide", + "guidelines", + "guides", + "gulf", + "gum", + "gun", + "gunrack", + "gur", + "gus", + "gushy", + "gustins", + "gut", + "guy", + "guys", + "gym", + "h", + "h&m", + "h.", + "ha", + "haaate", + "haan", + "haans", + "habit", + "had", + "hadid", + "haha", + "hahahaha", + "hai", + "hair", + "hairband", + "haircut", + "haircuts", + "hak", + "half", + "halfway", + "halloween", + "ham", + "hamilton", + "han", + "hand", + "handbags", + "handed", + "handful", + "handle", + "handled", + "handles", + "hands", + "handsewn", + "handsome", + "handwarmer", + "handy", + "hanes", + "hang", + "hangers", + "hanging", + "hangs", + "hankering", + "happen", + "happened", + "happening", + "happens", + "happiness", + "happy", + "hard", + "hardcore", + "harder", + "hardest", + "hardish", + "hardly", + "hardware", + "harem", + "harmful", + "harrington", + "harry", + "harsh", + "has", + "hassle", + "hat", + "hate", + "hated", + "haters", + "hates", + "hathaway", + "hatred", + "hats", + "haul", + "havana", + "have", + "havin", + "havin'", + "having", + "havin\u2019", + "haw", + "hawaii", + "hawes", + "hbm", + "hby", + "he", + "he's", + "head", + "headache", + "headed", + "heading", + "headline", + "headrest", + "heals", + "health", + "healthgoth", + "healthy", + "hear", + "heard", + "hearing", + "heart", + "heartbreaking", + "hearted", + "heartily", + "heat", + "heatwaves", + "heavier", + "heavily", + "heavy", + "heck", + "hed", + "heel", + "heeled", + "heels", + "hefty", + "heidi", + "height", + "hekp", + "hel", + "held", + "hell", + "hello", + "helmut", + "help", + "helped", + "helpful", + "helping", + "helps", + "hem", + "hemmed", + "hemming", + "hems", + "hen", + "henley", + "henleys", + "her", + "here", + "hereditary", + "heritage", + "hermes", + "herm\u00e8s", + "hers", + "hes", + "hesitant", + "hesitated", + "het", + "heterosexual", + "hew", + "hey", + "heyer", + "he\u2019s", + "hhh", + "hi", + "hic", + "hide", + "hiding", + "hie", + "hierarchy", + "higgins", + "high", + "higher", + "highest", + "highlights", + "highly", + "highschool", + "highschoolers", + "highwaisted", + "hiit", + "hijack", + "hike", + "hiking", + "hilarious", + "hilditch", + "hill", + "hillbilly", + "him", + "hin", + "hindsight", + "hindu", + "hip", + "hippie", + "hips", + "hipster", + "his", + "historical", + "history", + "hit", + "hits", + "hitting", + "hiw", + "hls", + "hly", + "hmm", + "hmmm", + "hno", + "hoarder", + "hobbies", + "hobby", + "hod", + "hoe", + "hogs", + "hokey", + "hol", + "hold", + "holder", + "holders", + "holding", + "holds", + "hole", + "holes", + "holiday", + "holidays", + "hollister", + "holy", + "hom", + "home", + "homeschool", + "hon", + "honest", + "honestly", + "honey", + "honor", + "hoo", + "hood", + "hoodie", + "hoodies", + "hop", + "hope", + "hopefully", + "hoping", + "hor", + "horrendous", + "horrible", + "horribly", + "horrid", + "horrific", + "horror", + "horse", + "horses", + "horseshoe", + "hose", + "hot", + "hotel", + "hotter", + "hottest", + "hour", + "hourglass", + "hours", + "house", + "household", + "housework", + "hover", + "how", + "how's", + "however", + "how\u2019s", + "hr", + "hrm", + "hru", + "hs", + "hts", + "http://i.imgur.com/VC8ko.jpg", + "http://i.imgur.com/vc8ko.jpg", + "http://imgur.com/a/A34tfPG", + "http://imgur.com/a/S9aw8D8", + "http://imgur.com/a/a34tfpg", + "http://imgur.com/a/oT1Z39p", + "http://imgur.com/a/ot1z39p", + "http://imgur.com/a/ozvMSWr", + "http://imgur.com/a/ozvmswr", + "http://imgur.com/a/s9aw8d8", + "http://imgur.com/gallery/VnTSF9q", + "http://imgur.com/gallery/vntsf9q", + "http://pantsdiff.firstmatedavy.com/list", + "https://baronhats.com/product/the-saddle-master-cavalry-movies/", + "https://ca.suitsupply.com/en_CA/jackets/havana-camel-jacket/C5795I.html?cgid=Jackets&prefn1=size&prefv1=36&pdp=true", + "https://ca.suitsupply.com/en_CA/jackets/havana-dark-green-jacket/C5792I.html?cgid=Jackets&prefn1=size&prefv1=36&pdp=true", + "https://ca.suitsupply.com/en_CA/jackets/havana-mint-green-jacket/C5754I.html?cgid=Jackets&prefn1=size&prefv1=36&pdp=true", + "https://ca.suitsupply.com/en_ca/jackets/havana-camel-jacket/c5795i.html?cgid=jackets&prefn1=size&prefv1=36&pdp=true", + "https://ca.suitsupply.com/en_ca/jackets/havana-dark-green-jacket/c5792i.html?cgid=jackets&prefn1=size&prefv1=36&pdp=true", + "https://ca.suitsupply.com/en_ca/jackets/havana-mint-green-jacket/c5754i.html?cgid=jackets&prefn1=size&prefv1=36&pdp=true", + "https://drive.google.com/file/d/1MDLX0Swz1_srHvB5lvm7jSeLX4MIBA72/view?usp=drivesdk", + "https://drive.google.com/file/d/1ld9kVIGzeA01i_rk8BknDOxF8GexXeLj/view?usp=drivesdk", + "https://drive.google.com/file/d/1ld9kvigzea01i_rk8bkndoxf8gexxelj/view?usp=drivesdk", + "https://drive.google.com/file/d/1mdlx0swz1_srhvb5lvm7jselx4miba72/view?usp=drivesdk", + "https://eu.suitsupply.com/en\\_GB/suits/lazio-mid-blue-suit/P5555TAH.html?cgid=Suits&from=suits\\_overview&pdp=true", + "https://eu.suitsupply.com/en\\_GB/suits/napoli-dark-grey-suit/P5225M.html?cgid=Suits&from=suits\\_overview&pdp=true", + "https://eu.suitsupply.com/en\\_gb/suits/lazio-mid-blue-suit/p5555tah.html?cgid=suits&from=suits\\_overview&pdp=true", + "https://eu.suitsupply.com/en\\_gb/suits/napoli-dark-grey-suit/p5225m.html?cgid=suits&from=suits\\_overview&pdp=true", + "https://food-hacks.wonderhowto.com/how-to/one-thing-even-cheap-vodka-is-good-for-making-you-smell-better-0154786/", + "https://i.imgur.com/JpnH7MF.png", + "https://i.imgur.com/LvRYAfv.jpg", + "https://i.imgur.com/RsFC1fK.jpg", + "https://i.imgur.com/dxqbt9i.jpg", + "https://i.imgur.com/jpnh7mf.png", + "https://i.imgur.com/lvryafv.jpg", + "https://i.imgur.com/rsfc1fk.jpg", + "https://i.imgur.com/sxF4iBN.jpg", + "https://i.imgur.com/sxf4ibn.jpg", + "https://i.imgur.com/vBYYahi.jpg", + "https://i.imgur.com/vbyyahi.jpg", + "https://imgur.com/D6D8Z", + "https://imgur.com/a/16mY0Bh", + "https://imgur.com/a/16my0bh", + "https://imgur.com/a/2iqVVXb", + "https://imgur.com/a/2iqvvxb", + "https://imgur.com/a/3jFZKMj", + "https://imgur.com/a/3jfzkmj", + "https://imgur.com/a/5tAhsRA", + "https://imgur.com/a/5tahsra", + "https://imgur.com/a/DbBqNa2", + "https://imgur.com/a/GD6Vly2", + "https://imgur.com/a/IE1ZIw6", + "https://imgur.com/a/LcgR3GP", + "https://imgur.com/a/c3DKFif", + "https://imgur.com/a/c3dkfif", + "https://imgur.com/a/dbbqna2", + "https://imgur.com/a/gd6vly2", + "https://imgur.com/a/ie1ziw6", + "https://imgur.com/a/lcgr3gp", + "https://imgur.com/a/v6OPRXD", + "https://imgur.com/a/v6oprxd", + "https://imgur.com/a/xTToSMO", + "https://imgur.com/a/xcVk29y", + "https://imgur.com/a/xcvk29y", + "https://imgur.com/a/xttosmo", + "https://imgur.com/a/zNqYBKw", + "https://imgur.com/a/znqybkw", + "https://imgur.com/d6d8z", + "https://liiife.jp/apparel/mens-bag-brands-2018/", + "https://meermin.com/in_en/10134110100000se-10-101341-burgundy-calf-e-burdeos.html", + "https://pin.it/p5zyuszxz5snt6", + "https://pinterest.com/ter4gr4m/geometric-brights", + "https://saddlebackleather.com/canvas-satchel-f", + "https://shop.lululemon.com/c/women-pants/\\_/N-1z109yvZ7yh", + "https://shop.lululemon.com/c/women-pants/\\_/n-1z109yvz7yh", + "https://shop.lululemon.com/p/jackets-and-hoodies-jackets/Fabled-Forest-Jacket-MD/_/prod9370697?color=LW4AVXS_0001&sz=6&cc=0001&skuId=106075268", + "https://shop.lululemon.com/p/jackets-and-hoodies-jackets/fabled-forest-jacket-md/_/prod9370697?color=lw4avxs_0001&sz=6&cc=0001&skuid=106075268", + "https://stockx.com/goyard-key-holder-saint-michel-canvas-white", + "https://us.asos.com/asos-design/asos-design-ridley-high-waisted-skinny-jeans-in-aged-vintage-mid-wash-with-ripped-knee/prd/10997619?CTARef=Saved+Items+Image", + "https://us.asos.com/asos-design/asos-design-ridley-high-waisted-skinny-jeans-in-aged-vintage-mid-wash-with-ripped-knee/prd/10997619?ctaref=saved+items+image", + "https://us.louisvuitton.com/eng-us/products/pocket-organizer-damier-graphite-006217", + "https://us.louisvuitton.com/eng-us/products/pocket-organizer-damier-infini-006283#N63197", + "https://us.louisvuitton.com/eng-us/products/pocket-organizer-damier-infini-006283#n63197", + "https://us.louisvuitton.com/eng-us/products/pocket-organizer-monogram-eclipse-014391", + "https://wpstandard.com/collections/wallets/products/small-card-wallet?variant=16381272686643", + "https://www.adidas.com.au", + "https://www.adidas.com.au/stan-smith-shoes/DB3527.html", + "https://www.adidas.com.au/stan-smith-shoes/db3527.html", + "https://www.adidas.com/us/stan-smith-shoes/DB3527.html", + "https://www.adidas.com/us/stan-smith-shoes/db3527.html", + "https://www.alchemygoods.com/collections/upcycled-backpacks-and-messengers/products/haversack", + "https://www.aldoshoes.com/us/en_us/p/12635638?&utm_kxconfid=t0hyydoie&gclid=EAIaIQobChMIwqO0gcaS4wIVx1YNCh097QrlEAQYASABEgLiqfD_BwE&gclsrc=aw.ds", + "https://www.aldoshoes.com/us/en_us/p/12635638?&utm_kxconfid=t0hyydoie&gclid=eaiaiqobchmiwqo0gcas4wivx1ynch097qrleaqyasabegliqfd_bwe&gclsrc=aw.ds", + "https://www.allsaints.com/men/coats-and-jackets/allsaints-imoku-jacket/?colour=4119&category=814", + "https://www.amazon.co.uk", + "https://www.amazon.co.uk/dp/B01LXOO3SD/ref=cm_sw_r_cp_apa_i_7HbmDbQMHHJNA", + "https://www.amazon.co.uk/dp/b01lxoo3sd/ref=cm_sw_r_cp_apa_i_7hbmdbqmhhjna", + "https://www.amazon.com/dp/B01L9LZG2U?ref=ppx_pop_mob_ap_share", + "https://www.amazon.com/dp/b01l9lzg2u?ref=ppx_pop_mob_ap_share", + "https://www.chicagotribune.com/news/ct-xpm-1993-04-28-9304300073-story.html", + "https://www.comfyshirts.com/products/striped-cotton-shirt?variant=20717641039975&currency=USD&utm_campaign=gs-2019-05-23&utm_source=google&utm_medium=smart_campaign&gclid=Cj0KCQjwu-HoBRD5ARIsAPIPencSaOKse3-8BHJquMI0s95_l-1809AN2jIRNTKkD1LRjypZevD7awoaAi7kEALw_wcB", + "https://www.comfyshirts.com/products/striped-cotton-shirt?variant=20717641039975&currency=usd&utm_campaign=gs-2019-05-23&utm_source=google&utm_medium=smart_campaign&gclid=cj0kcqjwu-hobrd5arisapipencsaokse3-8bhjqumi0s95_l-1809an2jirntkkd1lrjypzevd7awoaai7kealw_wcb", + "https://www.endclothing.com/au/adidas-stan-smith-db3527.html", + "https://www.esntls.co/collections/shop/products/the-esntls-black-track-pant", + "https://www.etsy.com/listing/624850062/vintage-leather-camera-hard-case-gray?gpla=1&gao=1&&utm\\_source=google&utm\\_medium=cpc&utm\\_campaign=shopping\\_us\\_c-bags\\_and\\_purses-accessory\\_cases-other&utm\\_custom1=334104d7-67e0-47c4-b08f-501268cf2bac&utm\\_content=go\\_1843970605\\_72372951040\\_346364216802\\_pla-352229244467\\_c\\_\\_624850062&gclid=EAIaIQobChMI0urXnuyS4wIVC\\_5kCh1vSwWYEAQYAiABEgL4YfD\\_BwE", + "https://www.etsy.com/listing/624850062/vintage-leather-camera-hard-case-gray?gpla=1&gao=1&&utm\\_source=google&utm\\_medium=cpc&utm\\_campaign=shopping\\_us\\_c-bags\\_and\\_purses-accessory\\_cases-other&utm\\_custom1=334104d7-67e0-47c4-b08f-501268cf2bac&utm\\_content=go\\_1843970605\\_72372951040\\_346364216802\\_pla-352229244467\\_c\\_\\_624850062&gclid=eaiaiqobchmi0urxnuys4wivc\\_5kch1vswwyeaqyaiabegl4yfd\\_bwe", + "https://www.etsy.com/shop/Blackcurrantpop?ref=pr2018\\_faveshops", + "https://www.etsy.com/shop/BuriedDiamond?ref=pr2018\\_faveshops", + "https://www.etsy.com/shop/CathySharpStyle?ref=pr2018\\_faveshops", + "https://www.etsy.com/shop/blackcurrantpop?ref=pr2018\\_faveshops", + "https://www.etsy.com/shop/burieddiamond?ref=pr2018\\_faveshops", + "https://www.etsy.com/shop/cathysharpstyle?ref=pr2018\\_faveshops", + "https://www.etsy.com/shop/sarahredaillust?ref=pr2018\\_faveshops", + "https://www.eyeglassdirect.com/134\\_Boulder.html", + "https://www.eyeglassdirect.com/134\\_boulder.html", + "https://www.frescobolcarioca.com/us/classic-striped-linen-shirt-6026.html?gclid=Cj0KCQjwu-HoBRD5ARIsAPIPenesrcrhGKQazsUOb2lGt7qBry8P6f2CteQVbzGyGmlrq-2kHsRk8cEaAliuEALw_wcB", + "https://www.frescobolcarioca.com/us/classic-striped-linen-shirt-6026.html?gclid=cj0kcqjwu-hobrd5arisapipenesrcrhgkqazsuob2lgt7qbry8p6f2cteqvbzgygmlrq-2khsrk8ceaaliuealw_wcb", + "https://www.google.com/search?q=SPALWART+SPECIAL+LOW&rlz=1C1CHBF_en-GBGB709GB709&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiehe6eibrjAhURqIsKHUgkDqgQ_AUIECgB&biw=1366&bih=625", + "https://www.google.com/search?q=spalwart+special+low&rlz=1c1chbf_en-gbgb709gb709&source=lnms&tbm=isch&sa=x&ved=0ahukewiehe6eibrjahurqiskhugkdqgq_auiecgb&biw=1366&bih=625", + "https://www.gq.com/gallery/best-dressed-men-of-the-week-7-15-19", + "https://www.guess.ca/en/catalog/browse/handbags/backpacks/", + "https://www.guess.ca/en/catalog/view/handbags/backpacks/skye-debossed-logo-backpack/sp741132?color=ivo", + "https://www.hamiltonwatch.com/en-int/filter-by/mens-watches.html", + "https://www.hotter.com/shop/SearchDisplay?searchTerm=dew&categoryId=&storeId=10151&catalogId=11551&langId=44&pageSize=24&beginIndex=&sType=SimpleSearch&resultCatEntryType=2&site=&showResultsPage=true&searchSource=Q&pageView=", + "https://www.hotter.com/shop/SearchDisplay?searchTerm=tone&categoryId=&storeId=10151&catalogId=11551&langId=44&pageSize=24&beginIndex=&sType=SimpleSearch&resultCatEntryType=2&site=&showResultsPage=true&searchSource=Q&pageView=", + "https://www.hotter.com/shop/searchdisplay?searchterm=dew&categoryid=&storeid=10151&catalogid=11551&langid=44&pagesize=24&beginindex=&stype=simplesearch&resultcatentrytype=2&site=&showresultspage=true&searchsource=q&pageview=", + "https://www.hotter.com/shop/searchdisplay?searchterm=tone&categoryid=&storeid=10151&catalogid=11551&langid=44&pagesize=24&beginindex=&stype=simplesearch&resultcatentrytype=2&site=&showresultspage=true&searchsource=q&pageview=", + "https://www.hotter.com/us/en", + "https://www.muji.com/hk-en/campaign/20180_rucksack/", + "https://www.nordstromrack.com/shop/product/2815621?cm_mmc=feeds-_-adlucent-_-google-_-pla&utm_source=adlucent&utm_medium=feeds&utm_content=google&utm_campaign=pla&utm_channel=shopping_acq_p&sid=545650&aid=%5BADL%5D%20%5BPLA%5D%20%5BShopping%5D%20-%20Categories%20-%20Brand%20-%20%5BMobile%5D&gclid=Cj0KCQjwu-HoBRD5ARIsAPIPenfYOCO20xPfwJ9QgwNQp_uVBkFrNU3ZxGNQEf-MIQaCS6sMPXrnYB4aAocVEALw_wcB&color=DUKEBLUE", + "https://www.nordstromrack.com/shop/product/2815621?cm_mmc=feeds-_-adlucent-_-google-_-pla&utm_source=adlucent&utm_medium=feeds&utm_content=google&utm_campaign=pla&utm_channel=shopping_acq_p&sid=545650&aid=%5badl%5d%20%5bpla%5d%20%5bshopping%5d%20-%20categories%20-%20brand%20-%20%5bmobile%5d&gclid=cj0kcqjwu-hobrd5arisapipenfyoco20xpfwj9qgwnqp_uvbkfrnu3zxgnqef-miqacs6smpxrnyb4aaocvealw_wcb&color=dukeblue", + "https://www.orientwatchusa.com/collections/bambino", + "https://www.reddit.com/comments/93qi5n", + "https://www.reddit.com/r/malefashionadvice/comments/11hvuh/diy\\_overdying\\_camo/", + "https://www.reddit.com/r/malefashionadvice/comments/1t893k/the_truth_about_levis_quality_from_store_to_store/", + "https://www.sheplers.com/stetson-black-hawk-crushable-wool-felt-gambler-hat/096C05.html?dwvar_096C05_color=7018", + "https://www.sheplers.com/stetson-black-hawk-crushable-wool-felt-gambler-hat/096c05.html?dwvar_096c05_color=7018", + "https://www.sheplers.com/stetson-bozeman-wool-felt-crushable-cowboy-hat/096B14.html?dwvar_096B14_color=7018", + "https://www.sheplers.com/stetson-bozeman-wool-felt-crushable-cowboy-hat/096b14.html?dwvar_096b14_color=7018", + "https://www.sheplers.com/stetson-mens-open-road-6x-hat/2000034021.html?dwvar_2000034021_color=001", + "https://www.sperry.com/en/bahama-ii-oxford-shirt-sneaker/35155M.html?dwvar_35155M_color=STS19247#cgid=men-shoes-casual&start=1", + "https://www.sperry.com/en/bahama-ii-oxford-shirt-sneaker/35155m.html?dwvar_35155m_color=sts19247#cgid=men-shoes-casual&start=1", + "https://www.stetson.com/store/bozeman-1.html?nosto=frontpage-nosto-1-fallback-nosto-1", + "https://www.timbuk2.com/products/2189-convertible-backpack-tote", + "https://www.uniqlo.com/us/en/men-ultra-stretch-skinny-fit-jeans-418912.html?dwvar_418912_color=COL68#BVReviewsContainer", + "https://www.uniqlo.com/us/en/men-ultra-stretch-skinny-fit-jeans-418912.html?dwvar_418912_color=col68#bvreviewscontainer", + "https://www.uniqlo.com/us/en/men/chino-pants?quickView=418916", + "https://www.uniqlo.com/us/en/men/chino-pants?quickview=418916", + "https://www.wsj.com/articles/SB117771199251285355", + "https://www.wsj.com/articles/sb117771199251285355", + "https://www.zalando.ch/na-kd-graduation-drop-cropped-fitted-button-t-shirt-print-white-naa21e04f-a11.html", + "https://youtu.be/bs4U4_c-5A4", + "https://youtu.be/bs4u4_c-5a4", + "https://youtu.be/gvuqBX-9NvE?t=842", + "https://youtu.be/gvuqbx-9nve?t=842", + "https://yurameshi.tumblr.com/image/84889451239", + "hty", + "hudson", + "huge", + "hugely", + "hughes", + "hugo", + "hugs", + "humane", + "humans", + "humble", + "humbled", + "humid", + "humidity", + "hundred", + "hung", + "hungover", + "hunt", + "hunter", + "hunting", + "hur", + "hurdle", + "hurry", + "hurt", + "hus", + "husband", + "hut", + "hyde", + "hydrocortisone", + "hydrogen", + "hygenic", + "hypebeasty", + "i", + "i\"m", + "i'm", + "i.", + "i.e", + "i.e.", + "i5n", + "ia", + "ia.", + "ial", + "iam", + "ian", + "iar", + "ibe", + "ica", + "ice", + "ich", + "ick", + "ico", + "icon", + "iconic", + "ics", + "ict", + "icy", + "id", + "id.", + "ida", + "ide", + "idea", + "ideal", + "ideally", + "ideas", + "identical", + "identify", + "identifying", + "identity", + "idi", + "idiot", + "idiotic", + "idk", + "ids", + "ied", + "ief", + "iel", + "ien", + "ier", + "ies", + "iet", + "ieu", + "iew", + "iez", + "if", + "if.", + "ife", + "iff", + "ift", + "ify", + "ig", + "ige", + "igh", + "igi", + "ign", + "ignore", + "ignored", + "ignoring", + "igo", + "iit", + "ike", + "ikea", + "iki", + "iko", + "ild", + "ile", + "ilk", + "ill", + "ill.", + "illustrations", + "ilm", + "ilo", + "ils", + "ilt", + "ily", + "image", + "imagery", + "images", + "imagine", + "imagining", + "ime", + "img", + "imgur", + "imm", + "immediately", + "immigrant", + "imo", + "impact", + "impeding", + "impersonating", + "implausible", + "implies", + "imply", + "important", + "impossible", + "impress", + "impressed", + "impression", + "impressions", + "improper", + "improve", + "improvement", + "improving", + "impulse", + "impunity", + "ims", + "in", + "in'", + "ina", + "inaccurate", + "inappropriate", + "inbetween", + "inc", + "inc.", + "inch", + "inches", + "inclination", + "include", + "included", + "includes", + "including", + "income", + "incompetent", + "inconsistent", + "inconvenient", + "incorporate", + "incorporated", + "incorrect", + "incorrectly", + "increase", + "increases", + "increasingly", + "incredible", + "incredibly", + "incrementally", + "ind", + "ind.", + "independence", + "independent", + "indestructible", + "india", + "indicate", + "indigo", + "individual", + "individually", + "individuals", + "indochino", + "indoor", + "industry", + "ine", + "inevitable", + "inexpensive", + "inf", + "infected", + "inferior", + "influence", + "influenced", + "influencer", + "influencers", + "influx", + "info", + "informal", + "information", + "informative", + "informed", + "infrared", + "infrareds", + "ing", + "inhalers", + "inherent", + "inherently", + "ini", + "iniki", + "initial", + "initially", + "initiative", + "injuries", + "injuring", + "ink", + "inn", + "inner", + "ino", + "input", + "ins", + "insane", + "inseam", + "insecure", + "insecurities", + "insecurity", + "insert", + "inside", + "insider", + "insidious", + "insight", + "insoles", + "inspiration", + "inspirations", + "inspire", + "inspired", + "inspo", + "insta", + "instagram", + "instagrammers", + "instance", + "instantly", + "instead", + "instructive", + "insulation", + "insurance", + "int", + "integral", + "integrating", + "intended", + "intense", + "intention", + "intentionally", + "interact", + "interacting", + "interaction", + "interchangeable", + "interest", + "interested", + "interesting", + "interests", + "interior", + "interlining", + "international", + "internationally", + "internet", + "interpreting", + "interview", + "interviews", + "into", + "intrigue", + "introduced", + "introvert", + "introverted", + "invasive", + "invest", + "invested", + "investment", + "invisible", + "invited", + "involve", + "involved", + "iny", + "in\u2019", + "iod", + "ion", + "ior", + "ios", + "iot", + "iowa", + "ipe", + "iphone", + "ips", + "ipt", + "ir", + "ird", + "ire", + "iri", + "irl", + "irm", + "iro", + "iron", + "ironheart", + "ironically", + "ironing", + "irrational", + "irreplaceable", + "irs", + "irt", + "is", + "is-", + "is.", + "isc", + "ise", + "ish", + "isk", + "island", + "ism", + "isopropyl", + "isp", + "iss", + "issey", + "issue", + "issues", + "ist", + "isy", + "it", + "it's", + "italian", + "italy", + "ite", + "item", + "items", + "ith", + "its", + "itself", + "itt", + "ity", + "it\u2019s", + "ium", + "iunno", + "ius", + "ive", + "ivo", + "ivory", + "iw6", + "iz.", + "ize", + "i\u2018ve", + "i\u2019s", + "j", + "j.", + "j.crew", + "jabs", + "jacket", + "jackets", + "jail", + "jak", + "jan", + "jan.", + "jansport", + "january", + "japan", + "japanese", + "jas", + "jawline", + "jawnz", + "jazz", + "jc", + "jcpenny", + "jcrew", + "jealous", + "jealousy", + "jean", + "jeans", + "jeeps", + "jeff", + "jeggings", + "jensen", + "jersey", + "jerseys", + "jesus", + "jew", + "jewel", + "jeweler", + "jeweller", + "jewellery", + "jewelry", + "jilly", + "jna", + "job", + "jobs", + "jodhper", + "jodhpers", + "jodhpurs", + "joe", + "jogger", + "joggers", + "john", + "join", + "joints", + "joke", + "jor", + "jort", + "jorts", + "jost", + "journaling", + "journey", + "journeyman", + "joy", + "jpg", + "jr", + "jr.", + "judge", + "judgement", + "judges", + "judging", + "judgment", + "juicy", + "jul", + "jul.", + "julius", + "july", + "jump", + "jumpers", + "jumpsuit", + "jumpsuits", + "jun", + "jun.", + "junghans", + "juniors", + "junk", + "jury", + "just", + "justify", + "justin", + "k", + "k.", + "kan", + "kan.", + "kans", + "kans.", + "kapital", + "kas", + "kate", + "kathmandu", + "kawhi", + "kay", + "kea", + "ked", + "keds", + "keen", + "keep", + "keeping", + "keeps", + "kel", + "kelsey", + "ken", + "kenneth", + "kent", + "kept", + "ker", + "kes", + "ket", + "kew", + "key", + "keyhole", + "keys", + "keywords", + "khadi", + "khaki", + "khakis", + "khakis-", + "kia", + "kickass", + "kicking", + "kicks", + "kid", + "kidding", + "kids", + "kiehl", + "kill", + "killed", + "kills", + "killshots", + "kilometres", + "kilt", + "kim", + "kimono", + "kimonos", + "kin", + "kind", + "kinda", + "kinder", + "kinds", + "king", + "kip", + "kis", + "kiss", + "kiton", + "kitty", + "kka", + "kla", + "kle", + "kly", + "kmart", + "kmj", + "knb", + "knee", + "knees", + "knew", + "knickers", + "knit", + "knits", + "knitted", + "knitting", + "knitwear", + "knives", + "knock", + "knocking", + "knockoff", + "knot", + "know", + "knowing", + "knowledge", + "known", + "knows", + "kohl", + "kohls", + "koio", + "koios", + "kok", + "korea", + "korean", + "korshak", + "kov", + "kristin", + "ks", + "ks/", + "kup", + "ky", + "ky.", + "kyle", + "kyo", + "l", + "l-f", + "l.", + "la", + "la.", + "lab", + "label", + "labor", + "lac", + "lace", + "laces", + "lacing", + "lack", + "lacks", + "lacoste", + "lad", + "ladies", + "lads", + "lady", + "lag", + "lah", + "laid", + "lake", + "lakers", + "lakes", + "lamb", + "lame", + "lan", + "land", + "lands", + "landscaping", + "lang", + "langdon", + "language", + "lanky", + "lap", + "lapel", + "laptop", + "laptops", + "lar", + "large", + "largely", + "larger", + "largest", + "lars", + "las", + "lash", + "lasses", + "last", + "lasting", + "lasts", + "lat", + "late", + "lately", + "later", + "latest", + "latter", + "lauded", + "laugh", + "laughing", + "laundry", + "laurent", + "lavender", + "law", + "lawn", + "laws", + "lawyer", + "lawyers", + "lay", + "layer", + "layered", + "layering", + "layers", + "laying", + "lazio", + "lazy", + "lbs", + "lch", + "lda", + "ldi", + "ldn", + "ldo", + "ldr", + "lds", + "le-", + "lead", + "leadership", + "leaked", + "leaking", + "lean", + "leaning", + "learn", + "learned", + "learning", + "least", + "leather", + "leather-", + "leatherman", + "leathers", + "leave", + "leaves", + "leaving", + "led", + "lee", + "left", + "leg", + "legal", + "legaladvice", + "legend", + "legged", + "legging", + "leggings", + "legit", + "legitimate", + "lego", + "legs", + "leisure", + "leisurewear", + "lem", + "lemme", + "lemmon", + "len", + "length", + "lengths", + "lengthwise", + "lens", + "lenses", + "leopard", + "ler", + "les", + "less", + "lessons", + "let", + "let's", + "lets", + "letter", + "letters", + "letting", + "lettuce", + "let\u2019s", + "level", + "levels", + "levi", + "levis", + "levi\u2019s", + "lex", + "ley", + "lf", + "lg", + "lgbt", + "lia", + "liam", + "liberating", + "libertarian", + "liberty", + "library", + "lic", + "license", + "licensed", + "lid", + "lie", + "lies", + "lif", + "life", + "lifeguard", + "lifestyle", + "lifetime", + "lift", + "lifting", + "lifts", + "light", + "lighten", + "lighter", + "lighting", + "lightly", + "lights", + "lightweight", + "lightyears", + "like", + "likeable", + "liked", + "likely", + "likes", + "lil", + "lilac", + "lim", + "limit", + "limited", + "limits", + "lin", + "line", + "lined", + "linen", + "linenfox", + "liners", + "lines", + "linger", + "lining", + "link", + "linked", + "links", + "lip", + "lips", + "liquids", + "lis", + "list", + "listed", + "listening", + "listing", + "lists", + "lit", + "literally", + "litter", + "little", + "live", + "lived", + "lively", + "lives", + "living", + "lizard", + "lka", + "lks", + "lky", + "ll", + "ll.", + "lla", + "lle", + "lli", + "llo", + "lls", + "lly", + "lmao", + "lo.", + "load", + "loads", + "loafer", + "loafers", + "loake", + "lobby", + "lobbyists", + "local", + "locally", + "located", + "locations", + "lock", + "locked", + "locks", + "lof", + "loft", + "log", + "logo", + "loincloth", + "lol", + "lon", + "london", + "long", + "longer", + "longest", + "longevity", + "longish", + "look", + "looked", + "looking", + "looks", + "loop", + "loops", + "loose", + "looser", + "lop", + "loperamide", + "lor", + "lord", + "los", + "lose", + "loseit", + "losing", + "loss", + "lost", + "lot", + "lot(like", + "lots", + "loud", + "louis", + "louisiana", + "lounging", + "love", + "loved", + "lovely", + "loves", + "lovestoned", + "lovin", + "lovin'", + "loving", + "lovin\u2019", + "low", + "lower", + "lowest", + "lows", + "lowtops-", + "lps", + "lry", + "lsa", + "lse", + "lso", + "lt-", + "lta", + "ltd", + "ltd.", + "lth", + "lti", + "lts", + "lty", + "lub", + "luca", + "luck", + "lucked", + "luckily", + "lucks", + "lucky", + "lue", + "lug", + "luggage", + "lulu", + "lululemon", + "lulus", + "lum", + "lunch", + "lus", + "lust", + "lusting", + "lux", + "luxire", + "luxury", + "lv", + "lva", + "lve", + "ly2", + "lying", + "lyndale", + "lyocell", + "m", + "m'lady", + "m.", + "m9", + "m9-ish", + "ma'am", + "mac", + "macabre", + "machine", + "macho", + "mackay", + "macy", + "mad", + "madam", + "made", + "madewell", + "magazine", + "magellan", + "magenta", + "magic", + "magically", + "magnanni", + "mail", + "main", + "maine", + "mainly", + "mainstream", + "maintain", + "maintained", + "maintenance", + "major", + "majority", + "majorly", + "make", + "maker", + "makers", + "makes", + "makeup", + "making", + "mal", + "male", + "malefashion", + "malefashionadvice", + "mall", + "man", + "man\"-vibe", + "manager", + "manbuns", + "mandarin", + "mandatory", + "mango", + "manner", + "manners", + "manpurses", + "mantra", + "manual", + "manufacturer", + "manufacturers", + "many", + "mao", + "map", + "mar", + "mar.", + "marathon", + "marc", + "marcella", + "marcus", + "margiela", + "margielas", + "marginally", + "marina", + "marked", + "market", + "marketing", + "marketplace", + "markets", + "markova", + "marks", + "marmot", + "marni", + "maroon", + "marshall", + "marshalls", + "mart", + "martens", + "mary", + "mas", + "masculine", + "mask", + "mass", + "mass.", + "massimo", + "massive", + "massively", + "masters", + "match", + "matches", + "matching", + "matchy", + "mate", + "material", + "materiality", + "materials", + "maternity", + "mates", + "matte", + "matter", + "mattered", + "matters", + "maturing", + "mauve", + "max", + "maxi", + "maximalist", + "maximize", + "maximum", + "maxx", + "may", + "maybe", + "maybi", + "ma\u2019am", + "mbo", + "mbs", + "mcq", + "mcqueen", + "md", + "md.", + "me", + "meal", + "mean", + "meaning", + "means", + "meant", + "meantime", + "measure", + "measured", + "measurement", + "measurements", + "measurer", + "measures", + "measuring", + "meat", + "med", + "meddling", + "medications", + "mediocre", + "mediocrity", + "meditation", + "medium", + "meds", + "meeee", + "meet", + "meeting", + "meetings", + "meets", + "meetup.com", + "meetups", + "mel", + "melbourne", + "melt", + "melty", + "member", + "members", + "membership", + "memorable", + "memorial", + "memories", + "memory", + "men", + "mens", + "menswear", + "mental", + "mentally", + "mention", + "mentioned", + "mentions", + "mer", + "merchandising", + "mere", + "merely", + "merinos", + "mes", + "mesh", + "mess", + "message", + "messenger", + "messes", + "messing", + "messrs", + "messrs.", + "messy", + "met", + "metal", + "metals", + "metcon", + "method", + "meting", + "metro", + "metroplex", + "metropolitan", + "mex", + "mexico", + "mez", + "mfa", + "mfy", + "mi-", + "mic", + "mich", + "mich.", + "michael", + "michel", + "micro", + "mid", + "middle", + "midi", + "midnight", + "midtown", + "midwest", + "midwesterner", + "might", + "mighty", + "migrant", + "mihara", + "mikia", + "mil", + "milieu", + "military", + "militarys", + "mill", + "millar", + "million", + "min", + "mind", + "mindful", + "mindfulness", + "mindset", + "mine", + "mini", + "minimal", + "minimalist", + "minn", + "minn.", + "minor", + "minority", + "mint", + "mints", + "minus", + "minute", + "minutes", + "mirror", + "mis", + "misc", + "miserable", + "misguided", + "misleading", + "miss", + "miss.", + "missalignment", + "missed", + "misshaped", + "missing", + "mission", + "missoni", + "missus", + "mistake", + "mistakes", + "misunderstand", + "misunderstood", + "mit", + "mitigate", + "mix", + "mixed", + "mixing", + "mixture", + "mizzen", + "mly", + "mm", + "mma", + "mme", + "mmm", + "mmv", + "mmy", + "mo", + "mo.", + "mo/", + "mobile", + "mobilization", + "moccasins", + "mocs", + "mod", + "moda", + "modcloth", + "mode", + "model", + "models", + "moderators", + "modern", + "modernist", + "moderntailor", + "modest", + "modestly", + "mofongo", + "moisturized", + "moisturizer", + "mom", + "moment", + "mommy", + "momotaro", + "mon", + "monaco", + "monday", + "money", + "monks", + "mono", + "monsoon", + "mont", + "mont.", + "month", + "monthly", + "months", + "moore", + "mor", + "morals", + "more", + "morgan", + "mori", + "morning", + "mornings", + "morris", + "mortar", + "mos", + "mosaic", + "moss", + "most", + "mostly", + "mot", + "moth", + "mother", + "motherfucker", + "motivation", + "mountain", + "mountains", + "move", + "moved", + "movement", + "moves", + "movie", + "movies", + "moving", + "mph", + "mpls", + "mps", + "mpt", + "mr", + "mr.", + "mrs", + "mrs.", + "ms", + "ms.", + "ms\\", + "mt", + "mt.", + "mtm", + "mtp-1221a", + "mtp-1222a", + "muay", + "much", + "mud", + "muddy", + "muji", + "mulberry", + "mulch", + "mules", + "mulling", + "multi", + "multiple", + "mum", + "muscle", + "muscular", + "museums", + "mushrooms", + "music", + "must", + "mustard", + "mut", + "muted", + "mw", + "my", + "myself", + "myth", + "myus", + "m\u00e8s", + "n", + "n&f", + "n's", + "n't", + "n.", + "n.c.", + "n.d.", + "n.h.", + "n.j.", + "n.m.", + "n.y.", + "n07", + "na", + "na2", + "nada", + "nah", + "nails", + "naively", + "naked", + "nal", + "name", + "named", + "names", + "nan", + "nap", + "napkins", + "napoli", + "narrow", + "narrower", + "narrowest", + "nas", + "nasal", + "nation", + "national", + "natural", + "naturally", + "nature", + "navy", + "nay", + "nba", + "nbd", + "nbs", + "nc.", + "nce", + "nch", + "nct", + "ncy", + "nd.", + "nda", + "nde", + "ndo", + "nds", + "ndu", + "ndy", + "near", + "nearest", + "nearly", + "neat", + "neb", + "neb.", + "nebr", + "nebr.", + "necessarily", + "necessary", + "neck", + "neckbeard", + "necklace", + "necklaces", + "neckline", + "necks", + "necktie", + "ned", + "nee", + "need", + "needed", + "needing", + "needles", + "needs", + "neff", + "negate", + "negates", + "negating", + "negative", + "neglected", + "negligible", + "neighborhood", + "neighbours", + "neiman", + "neimans", + "neither", + "nel", + "nelson", + "nen", + "neon", + "neons", + "nep", + "ner", + "nerve", + "nervous", + "nes", + "net", + "netherlands", + "neutral", + "nev", + "nev.", + "never", + "new", + "newest", + "news", + "newspaper", + "next", + "ney", + "nfo", + "ng-", + "ng/", + "nga", + "nge", + "ngl", + "ngo", + "ngs", + "ngy", + "nia", + "nic", + "nice", + "nicely", + "nicer", + "nicest", + "niche", + "nickel", + "nicks", + "nie", + "night", + "nightmare", + "nights", + "nike", + "nikes", + "nim", + "nine", + "nip", + "nipped", + "nipple", + "nipples", + "nis", + "nit", + "nj", + "nko", + "nks", + "nky", + "nly", + "nn.", + "nn07", + "nna", + "nne", + "nni", + "nno", + "nny", + "no", + "nobody", + "nodphurs", + "noir", + "nome", + "non", + "none", + "nonexistent", + "nonsense", + "noone", + "noooooo", + "nope", + "nor", + "nordstrom", + "norm", + "normal", + "normally", + "normcore", + "normies", + "norms", + "norse", + "north", + "northeastern", + "northern", + "nos", + "nosed", + "not", + "notch", + "notcing", + "note", + "notebook", + "noted", + "notes", + "noteworthy", + "nothin", + "nothin'", + "nothing", + "nothin\u2019", + "noticable", + "notice", + "noticeable", + "noticeably", + "noticed", + "noting", + "notorious", + "nov", + "nov.", + "november", + "novestas", + "now", + "nowadays", + "nowhere", + "noxious", + "np", + "npl", + "ns.", + "nse", + "nsfw", + "nst", + "nsy", + "nt", + "nt.", + "nt6", + "nta", + "nth", + "nti", + "nto", + "nts", + "nty", + "nudes", + "nudie", + "nudies", + "nudist", + "nue", + "nuff", + "nuit", + "nuk", + "nurses", + "nursing", + "nus", + "nut", + "nuthin", + "nuthin'", + "nuthin\u2019", + "nwordcountbot", + "ny", + "nyc", + "nylon", + "n\u2019s", + "n\u2019t", + "o", + "o'clock", + "o'malley", + "o's", + "o-1", + "o.", + "o.0", + "o.O", + "o.o", + "oXfOrDs", + "o_0", + "o_O", + "o_o", + "oad", + "oah", + "oak", + "oakley", + "oal", + "oam", + "oat", + "obcd", + "obe", + "objective", + "obligatory", + "obnoxious", + "obs", + "obscure", + "obsessed", + "obvi", + "obvious", + "obviously", + "obvs", + "oca", + "ocassionally", + "ocbd", + "ocbds", + "occasion", + "occasionally", + "occasions", + "occurred", + "ocean", + "ock", + "ocs", + "oct", + "oct.", + "octopus", + "oda", + "odd", + "oddball", + "oddly", + "odds", + "ode", + "odell", + "odors", + "odours", + "ods", + "ody", + "oed", + "oen", + "oer", + "oes", + "of", + "of.", + "ofc", + "ofcourse", + "off", + "offensive", + "offer", + "offered", + "offering", + "offers", + "office", + "offseason", + "offsets", + "offtopic", + "ofs", + "oft", + "often", + "ofy", + "oga", + "ogo", + "ogs", + "oh", + "ohhh", + "ohl", + "ohn", + "oho", + "oic", + "oid", + "oil", + "oils", + "oin", + "oio", + "oir", + "ok", + "okay", + "oke", + "okla", + "okla.", + "oks", + "ol", + "ol'", + "ola", + "old", + "older", + "ole", + "olf", + "oli", + "olive", + "oliver", + "olk", + "oll", + "olo", + "ols", + "olt", + "oly", + "ol\u2019", + "ome", + "omens", + "omething", + "omg", + "oms", + "omy", + "on", + "onboarding", + "once", + "ond", + "one", + "ones", + "ong", + "oni", + "onk", + "online", + "only", + "only.white", + "onn", + "ono", + "ons", + "ont", + "onto", + "ony", + "oo", + "oob", + "ood", + "oof", + "ooh", + "ook", + "ool", + "oom", + "oomph", + "oon", + "ooo", + "oooh", + "oooo", + "ooooh", + "ooor", + "oop", + "oor", + "oos", + "oot", + "oox", + "op", + "opaque", + "ope", + "open", + "opening", + "opinion", + "opinions", + "opportunity", + "opposed", + "opposite", + "ops", + "opt", + "optimal", + "option", + "optional", + "options", + "opy", + "or", + "ora", + "orange", + "ord", + "order", + "ordered", + "ordering", + "orders", + "ore", + "ore.", + "organising", + "organized", + "organizer", + "organizing", + "ori", + "orient", + "oriented", + "orifice", + "original", + "originally", + "originals", + "originate", + "orion", + "ork", + "orm", + "orn", + "orp", + "orphaned", + "ors", + "ort", + "orthotics", + "orwell", + "ory", + "os.", + "ose", + "osh", + "oss", + "ost", + "ostentatious", + "oster", + "ote", + "oth", + "other", + "others", + "otherwise", + "oto", + "otr", + "ots", + "ott", + "oty", + "oud", + "ought", + "oul", + "oup", + "our", + "ours", + "ourther", + "ous", + "out", + "outdated", + "outdoor", + "outdoors", + "outdoorsy", + "outdress", + "outer", + "outerlayer", + "outerwear", + "outfit", + "outfits", + "outfitters", + "outlasted", + "outlet", + "outlier", + "outliers", + "outline", + "outlines", + "outlook", + "outrage", + "outraged", + "outs", + "outside", + "outsourcing", + "outward", + "ov.", + "ova", + "ove", + "over", + "overabundance", + "overall", + "overboard", + "overcoat", + "overcome", + "overdone", + "overdressed", + "overdyed", + "overfilling", + "overhand", + "overheat", + "overkill", + "overlapping", + "overlooked", + "overly", + "overnight", + "overpaid", + "overpaying", + "overpriced", + "overrun", + "overrunning", + "overseas", + "overshadowed", + "oversized", + "overtly", + "overtone", + "overweight", + "overwhelmed", + "overwhelming", + "overzealous", + "owa", + "owd", + "owed", + "owens", + "own", + "owned", + "owners", + "ownership", + "owning", + "owns", + "ows", + "owy", + "oxblood", + "oxford", + "oxfords", + "oxy", + "oxyclean", + "oys", + "oz", + "o\u2019clock", + "o\u2019s", + "p", + "p.", + "p.m", + "p.m.", + "p.s", + "p.s.", + "p;E", + "p;F", + "p;M", + "p;R", + "p;e", + "p;f", + "p;m", + "p;r", + "pa", + "pa.", + "pace", + "pack", + "packable", + "package", + "packaged", + "packers", + "packing", + "packs", + "pacsun", + "pact", + "padding", + "page", + "paid", + "paige", + "pain", + "painted", + "painter", + "pair", + "paired", + "pairing", + "pairs", + "paisley", + "pajama", + "pajamas", + "pal", + "pale", + "palette", + "palm", + "pan", + "pander", + "panic", + "panniers", + "pant", + "pantaloons", + "panties", + "pants", + "panty", + "paper", + "paperbag", + "par", + "parcel", + "pardon", + "parent", + "parentheses", + "parents", + "paris", + "park", + "parka", + "parkas", + "parking", + "parrot", + "part", + "parted", + "partially", + "participating", + "particular", + "particularly", + "partner", + "partners", + "parts", + "party", + "pas", + "pashmina", + "pass", + "passed", + "passes", + "passion", + "passive", + "passport", + "past", + "pastel", + "pastels", + "patabronia", + "patagonia", + "patch", + "patched", + "path", + "paths", + "patience", + "patients", + "patriarchy", + "patrick", + "patronizing", + "pattern", + "patterned", + "patterning", + "patterns", + "paul", + "pay", + "payback", + "paying", + "paypal", + "pd", + "peaking", + "peaks", + "pearl", + "pearls", + "pec", + "peculiar", + "ped", + "pee", + "peeing", + "peeked", + "peeking", + "pees", + "pel", + "pen", + "pencil", + "pendant", + "penney", + "penny", + "people", + "people-", + "peoples", + "per", + "perceived", + "percent", + "percentage", + "perfect", + "perfectly", + "perfer", + "performed", + "perfume", + "perhaps", + "period", + "permanent", + "permit", + "peroxide", + "perpetual", + "persian", + "person", + "personable", + "personal", + "personality", + "personally", + "perspective", + "perth", + "pes", + "pet", + "peter", + "petite", + "pets", + "pettyrevenge", + "pey", + "ph", + "ph.d.", + "pharell", + "phase", + "phases", + "philo", + "philosophy", + "phoebe", + "phone", + "photo", + "photo.and", + "photograph", + "photographer", + "photos", + "photoshop", + "phy", + "physical", + "physically", + "physique", + "piano", + "pic", + "pick", + "picked", + "pickers", + "picking", + "pickpocketing", + "pics", + "picture", + "pictures", + "pid", + "pie", + "piece", + "pieces", + "pigmented", + "pile", + "piles", + "pill", + "pillar", + "pilled", + "pilling", + "pills", + "pilots", + "pilt", + "pin", + "pina", + "pinafore", + "pinch", + "pineapple", + "pink", + "pinks", + "pinned", + "pinning", + "pinpoint", + "pinstripe", + "pinstripes", + "pinterest", + "pitting", + "pizza", + "place", + "placed", + "placement", + "placerville", + "places", + "placket", + "plagued", + "plaid", + "plain", + "plainness", + "plan", + "planes", + "planned", + "planning", + "plantains", + "planting", + "plants", + "plastic", + "plated", + "platform", + "plato", + "play", + "played", + "playing", + "ple", + "please", + "pleather", + "pleats", + "plenty", + "plethora", + "plot", + "pls", + "plug", + "plum", + "plunging", + "plus", + "ply", + "plz", + "pm", + "png", + "pnw", + "pocket", + "pockets", + "pocketwatch", + "podcast", + "podiatrist", + "podunk", + "point", + "pointed", + "pointers", + "pointless", + "points", + "pointy", + "policy", + "polish", + "polished", + "politely", + "political", + "politicians", + "polka", + "polly", + "polo", + "polos", + "poly", + "polyester", + "pomade", + "ponytail", + "poo", + "poof", + "pool", + "pools", + "poor", + "poorly", + "pop", + "poplin", + "popover", + "popped", + "poppins", + "popular", + "porsche", + "portable", + "portion", + "portions", + "portland", + "portray", + "pose", + "posed", + "poser", + "poserwear", + "poses", + "poshmark", + "positive", + "positivity", + "possibilities", + "possible", + "possibly", + "post", + "posted", + "poster", + "posting", + "postpone", + "posts", + "pot", + "potential", + "potentially", + "potter", + "pouch", + "pound", + "pounds", + "powder", + "powdery", + "power", + "powerful", + "pp", + "pps", + "ppy", + "pr", + "pr.", + "practical", + "practicality", + "practically", + "practical\u201d/helpful", + "practice", + "practicing", + "prada", + "pray", + "pre", + "preach", + "precious", + "prefer", + "preferably", + "preference", + "preferences", + "preferring", + "preggo", + "pregnancy", + "pregnant", + "premium", + "prepare", + "prepared", + "preppiest", + "preppy", + "present", + "presentable", + "presentation", + "presents", + "preset", + "press", + "pressure", + "presumably", + "presumptions", + "pretend", + "prettiest", + "pretty", + "prevalent", + "prevents", + "previous", + "previously", + "prey", + "preying", + "price", + "priced", + "prices", + "pricey", + "pricing", + "pride", + "priestess", + "primarily", + "primary", + "prime", + "princess", + "print", + "prints", + "prior", + "prioritize", + "priority", + "private", + "privilege", + "prize", + "pro", + "proactive", + "probably", + "problem", + "problems", + "probs", + "proceeded", + "process", + "processes", + "produced", + "product", + "production", + "products", + "prof", + "prof.", + "profession", + "professional", + "professionally", + "professionals", + "professions", + "profile", + "profit", + "profiting", + "profs", + "program", + "progressively", + "project", + "projects", + "promise", + "promises", + "promising", + "prone", + "pronounced", + "proof", + "proper", + "properly", + "property", + "proportion", + "proportionate", + "proportioned", + "proportions", + "proposition", + "props", + "protect", + "protection", + "protects", + "protein", + "protest", + "protrude", + "proud", + "proves", + "provided", + "provides", + "providing", + "proving", + "proxy", + "ps", + "ps-", + "pt.", + "pty", + "public", + "puffy", + "pull", + "pulled", + "pulling", + "pullover", + "pullovers", + "pump", + "punctuated", + "punk", + "purchase", + "purchased", + "purchases", + "purchasing", + "pure", + "pureboost", + "purely", + "purple", + "purpose", + "purposes", + "purse", + "purseforum", + "purses", + "pursuit", + "pus", + "push", + "pushed", + "pushing", + "put", + "puts", + "putting", + "pygoscelis", + "pyl", + "q", + "q.", + "qc", + "qlo", + "qocTCM2.jpg[/img", + "qocTCM2.jpg\\[/img\\]](https://i.imgur.com", + "qoctcm2.jpg[/img", + "qoctcm2.jpg\\[/img\\]](https://i.imgur.com", + "qua", + "quads", + "quality", + "quarter", + "que", + "quest", + "question", + "questionnary", + "questions", + "quick", + "quicker", + "quickly", + "quid", + "quietly", + "quit", + "quite", + "quiting", + "quitting", + "quizzes", + "quote", + "r", + "r.", + "r/1200isplenty", + "r21", + "rDs", + "rab", + "raccoons", + "racist", + "rack", + "rad", + "radar", + "rag", + "rage", + "rai", + "raices", + "rain", + "rainbow", + "raincoat", + "raindrop", + "rainy", + "raise", + "raised", + "rakuten", + "ral", + "ram", + "rambling", + "ramifications", + "ran", + "ranch", + "random", + "randomly", + "range", + "ranger", + "rank", + "rap", + "raped", + "rapid", + "rapidly", + "raps", + "rare", + "rarely", + "ras", + "rate", + "rather", + "ration", + "rats", + "raw", + "rawdenim", + "raws", + "ray", + "rayban", + "rayon", + "rayons", + "raz", + "rbo", + "rbs", + "rby", + "rce", + "rch", + "rds", + "re", + "re.", + "re/", + "rea", + "reach", + "reached", + "reaching", + "reaction", + "reactions", + "read", + "reading", + "ready", + "real", + "realisation", + "realise", + "realist", + "reality", + "realize", + "realized", + "realizing", + "really", + "reals", + "realty", + "reason", + "reasonable", + "reasonably", + "reasoning", + "reasons", + "reassuring", + "rec", + "recall", + "receipt", + "receive", + "received", + "receiving", + "recent", + "recently", + "reception", + "recipe", + "recognition", + "recognize", + "recognized", + "recomended", + "recommend", + "recommendation", + "recommendations", + "recommended", + "recommends", + "reconsider", + "recreate", + "recs", + "recuperate", + "recycling", + "red", + "reddit", + "redditor", + "redemption", + "redhead", + "redoing", + "reduce", + "redye", + "ree", + "reebok", + "ref", + "refer", + "reference", + "referencing", + "referring", + "refine", + "reflect", + "reflective", + "reformation", + "refund", + "refunded", + "refuse", + "refused", + "regard", + "regarded", + "regarding", + "regardless", + "regards", + "regency", + "regent", + "region", + "regret", + "regular", + "regularly", + "regulars", + "regulates", + "regulatory", + "reheel", + "reinforce", + "reiss", + "rek", + "rel", + "relate", + "related", + "relationship", + "relationships", + "relatively", + "relaxed", + "relaxing", + "reliable", + "relief", + "relies", + "relieved", + "rely", + "rem", + "remade", + "remains", + "remember", + "remembering", + "remembers", + "remind", + "reminder", + "reminds", + "remiss", + "removal", + "remove", + "removed", + "removing", + "ren", + "rent", + "renting", + "rep", + "rep.", + "repairs", + "repeat", + "repeatedly", + "replace", + "replaceable", + "replaced", + "replaces", + "replacing", + "replicate", + "replied", + "replies", + "reply", + "reposted", + "representatives", + "reproduction", + "reproductive", + "republic", + "reputable", + "request", + "requested", + "require", + "required", + "requirements", + "rer", + "res", + "resale", + "research", + "researching", + "resell", + "reservation", + "reservations", + "reset", + "resident", + "resilient", + "resin", + "resist", + "resole", + "resolution", + "resolve", + "resource", + "respect", + "respective", + "respects", + "respond", + "response", + "responses", + "responsible", + "rest", + "restaurant", + "restaurants", + "restock", + "restrict", + "restricting", + "restriction", + "result", + "results", + "resurfaced", + "ret", + "retail", + "retain", + "retarded", + "rethink", + "retired", + "retirement", + "retro", + "return", + "returning", + "returns", + "reusable", + "rev", + "rev.", + "reveal", + "review", + "reviews", + "revisions", + "revolve", + "rew", + "reward", + "reword", + "rey", + "rfe", + "rga", + "rge", + "rgo", + "rgy", + "rhinestones", + "rhodes", + "ria", + "ribbons", + "ric", + "rich", + "rick", + "rid", + "ride", + "rider", + "rides", + "ridicule", + "ridiculous", + "riding", + "ridley", + "rie", + "rifle", + "rig", + "right", + "rightfully", + "rights", + "rihanna", + "ril", + "rim", + "rin", + "rinaldi", + "ring", + "rings", + "rio", + "rip", + "ripped", + "ripper", + "ris", + "rise", + "risk", + "risky", + "ritson", + "riz", + "rk.", + "rka", + "rks", + "rld", + "rls", + "rly", + "rms", + "rn", + "rne", + "rni", + "rns", + "road", + "roast", + "roberto", + "robot", + "rock", + "rocks", + "rode", + "rof", + "rol", + "rolex", + "roll", + "rolled", + "roller", + "rolling", + "rom", + "romantic", + "rome", + "romper", + "rompers", + "ron", + "ronaldo", + "room", + "rooms", + "roomy", + "roots", + "rop", + "ror", + "ros", + "rosacea", + "rose", + "roshe", + "roshes", + "ross", + "rot", + "rotate", + "rotating", + "rotation", + "rotations", + "rotweiler", + "rough", + "roughest", + "roughly", + "round", + "rounder", + "route", + "routine", + "rovers", + "row", + "roxanne", + "roy", + "royale", + "rp.", + "rre", + "rry", + "rs.", + "rsa", + "rse", + "rsh", + "rso", + "rsq", + "rst", + "rsy", + "rth", + "rto", + "rts", + "rty", + "rub", + "rubber", + "rubbing", + "rubbish", + "rubinacci", + "rubs", + "rue", + "ruffled", + "rug", + "rugby", + "rugged", + "ruin", + "ruined", + "ruins", + "rule", + "rules", + "rum", + "rumor", + "run", + "runner", + "running", + "runs", + "runway", + "rural", + "rush", + "rushing", + "russell", + "russians", + "rust", + "rutshire", + "rvca", + "rve", + "rvy", + "rxd", + "rys", + "r\u00e9alisation", + "s", + "s's", + "s.", + "s.c.", + "sRA", + "sa", + "sacrificing", + "sad", + "saddleback", + "saddled", + "sadly", + "safaris", + "safe", + "safely", + "safety", + "sag", + "said", + "saint", + "saints", + "sal", + "sale", + "sales", + "salicylic", + "salinated", + "salon", + "salt", + "salty", + "salvageable", + "sambas", + "same", + "samurai", + "san", + "sanctus", + "sand", + "sandal", + "sandals", + "sanforized", + "santos", + "sanuk", + "sap", + "sarong", + "sartorial", + "sartoriality", + "sas", + "sat", + "satchel", + "satin", + "satire", + "satisfy", + "saturate", + "saturated", + "saturation", + "saturday", + "save", + "saves", + "saving", + "saw", + "saxx", + "say", + "saying", + "saying-", + "says", + "sby", + "scale", + "scalp", + "scammers", + "scan", + "scaping", + "scared", + "scarf", + "scarfe", + "scarves", + "scary", + "scenario", + "scenarios", + "scene", + "scent", + "schedule", + "scheduled", + "scheme", + "scholarships", + "scholls", + "school", + "schott", + "sco", + "scope", + "scored", + "scores", + "scornful", + "scott", + "scrapping", + "scratchy", + "scream", + "screenshot", + "screw", + "scroll", + "scrub", + "scruffy", + "scrunchies", + "scrunching", + "scuffed", + "sdk", + "se", + "se-", + "sea", + "seam", + "seams", + "seamstress", + "search", + "searching", + "sears", + "season", + "seasonal", + "seasons", + "seat", + "seattle", + "second", + "secondhand", + "seconding", + "secondly", + "seconds", + "secret", + "secrets", + "section", + "sections", + "sector", + "secure", + "security", + "sed", + "see", + "seeing", + "seek", + "seeking", + "seem", + "seemed", + "seems", + "seen", + "seersucker", + "sees", + "seiko", + "sel", + "seldom", + "selection", + "selena", + "self", + "selfimprovement", + "sell", + "seller", + "selling", + "sells", + "selvedge", + "semi", + "semi-", + "sen", + "sen.", + "send", + "seneca", + "sense", + "sent", + "sentence", + "sep", + "sep.", + "separate", + "separately", + "separates", + "sephora", + "sept", + "sept.", + "september", + "ser", + "series", + "serious", + "seriously", + "seriousness", + "serum", + "service", + "services", + "ses", + "sessions", + "set", + "sets", + "setting", + "settings", + "settle", + "seven", + "seventh", + "several", + "severe", + "sew", + "sewing", + "sewn", + "sex", + "sexy", + "sey", + "sezane", + "sfw", + "sfy", + "sh.", + "sha", + "shabby", + "shade", + "shades", + "shadow", + "shadows", + "shady", + "shakes", + "shall", + "sham", + "shambles", + "shame", + "shampoo", + "shampoos", + "shantung", + "shape", + "shaped", + "share", + "sharing", + "sharp", + "shawl", + "shawshank", + "she", + "she's", + "shed", + "sheek", + "sheen", + "sheep", + "sheer", + "sheets", + "shell", + "shells", + "shelves", + "shepherd", + "sherlock", + "sherpani", + "she\u2019s", + "shies", + "shill", + "shilly", + "shindig", + "shine", + "shiny", + "ship", + "shipitto", + "shipped", + "shipping", + "shirt", + "shirts", + "shit", + "shitty", + "shmosby", + "shocked", + "shoe", + "shoebacca.com", + "shoepassion", + "shoes", + "shoot", + "shop", + "shopfronts", + "shopped", + "shopping", + "shops", + "short", + "shorten", + "shortening", + "shorter", + "shorts", + "shorts&sports", + "shot", + "shotgun", + "shoudnt", + "should", + "shoulder", + "shoulders", + "shout", + "shove", + "show", + "showed", + "shower", + "showering", + "showing", + "showroom", + "shows", + "shrank", + "shreds", + "shrink", + "shrinkage", + "shrinking", + "shrinks", + "shrubs", + "shrugs", + "shrunk", + "shut", + "shy", + "sia", + "sic", + "sick", + "side", + "sidebar", + "sides", + "sidetab", + "siding", + "sift", + "sigh", + "sights", + "sign", + "significant", + "significantly", + "signify", + "signing", + "signings", + "sil", + "silhouette", + "silhouettes", + "silicon", + "silicone", + "silk", + "silky", + "silly", + "silver", + "similar", + "similarities", + "similarly", + "simmilar", + "simon", + "simple", + "simply", + "sin", + "since", + "single", + "sink", + "sio", + "sis", + "siser", + "sister", + "sisters", + "sit", + "site", + "sites", + "sith", + "sitting", + "situation", + "situations", + "six", + "size", + "sized", + "sizes", + "sizing", + "skateboarder", + "skater", + "skew", + "skill", + "skills", + "skin", + "skincare", + "skincareaddiction", + "skinnier", + "skinny", + "skip", + "skirt", + "skirts", + "skool", + "skools", + "sks", + "sku", + "skull", + "sky", + "skyfall", + "slacks", + "slammed", + "slap", + "slate", + "sle", + "sleazy", + "sleek", + "sleeker", + "sleep", + "sleet", + "sleeve", + "sleeved", + "sleeveless", + "sleeves", + "sleeze", + "slide", + "slides", + "slight", + "slightly", + "slim", + "slimmed", + "slimmer", + "sling", + "slip", + "slippers", + "slippy", + "slit", + "sliver", + "slopping", + "sloppy", + "slouchy", + "slovakian", + "slow", + "slowly", + "slp", + "slubby", + "slushy", + "sly", + "small", + "smaller", + "smallest", + "smallish", + "smart", + "smartly", + "sme", + "smile", + "smith", + "smiths", + "smo", + "smoke", + "smooth", + "smthn", + "smu", + "smush", + "snack", + "snacks", + "snake", + "snakeskin", + "snap", + "snapbacks", + "snaps", + "sneak", + "sneaker", + "sneakerboot", + "sneakerheads", + "sneakers", + "sneaks", + "snoopy", + "snow", + "snowing", + "snowy", + "snuff", + "so", + "soak", + "soaking", + "sobakov", + "social", + "socially", + "socialskills", + "society", + "sock", + "socks", + "soda", + "soft", + "soften", + "soho", + "sold", + "sole", + "solely", + "soles", + "solicitors", + "solid", + "solidarity", + "solidly", + "solids", + "solution", + "solve", + "some", + "somebody", + "someday", + "someone", + "someplace", + "somesuch", + "somethin", + "somethin'", + "something", + "somethin\u2019", + "sometimes", + "somewhat", + "somewhere", + "son", + "soon", + "sooo", + "soooooo", + "sor", + "sorceress", + "sore", + "sorry", + "sort", + "sorted", + "sorts", + "sos", + "sot", + "soul", + "souls", + "sound", + "sounds", + "soupy", + "source", + "sources", + "south", + "souvenirs", + "sowing", + "sown", + "sox", + "space", + "spade", + "spalwart", + "spalwarts", + "spandex", + "spanning", + "spare", + "spark", + "sparkly", + "speak", + "speaking", + "spec", + "special", + "specialized", + "specially", + "specific", + "specifically", + "specifications", + "specified", + "speckled", + "specks", + "spectacular", + "spectrum", + "speculate", + "spend", + "spending", + "spendy", + "spent", + "sperrys", + "spicy", + "spier", + "spill", + "spilled", + "spilles", + "spills", + "spin", + "spirits", + "split", + "splitting", + "splurged", + "spo", + "spoiled", + "spoilers", + "spoke", + "spoken", + "sport", + "sportcoats", + "sports", + "sporty", + "spot", + "spots", + "spotty", + "spray", + "spread", + "spree", + "spreva", + "spring", + "spy", + "sq", + "sqs", + "squalid", + "squalor", + "square", + "squared", + "squares", + "squat", + "squeeze", + "squicked", + "squirt", + "sra", + "srs", + "ss.", + "ssense", + "ssy", + "st", + "st.", + "st/", + "sta", + "stable", + "stack", + "stacks", + "staff", + "stag", + "stages", + "stain", + "stained", + "stainless", + "stains", + "stan", + "stance", + "stand", + "standalone", + "standard", + "standards", + "standby", + "standing", + "stands", + "stanley", + "staple", + "staples", + "star", + "starching", + "stars", + "start", + "started", + "starter", + "starting", + "starts", + "startup", + "state", + "stated", + "statement", + "states", + "stay", + "stayed", + "stays", + "ste", + "steadman", + "steady", + "steal", + "steel", + "steep", + "stella", + "step", + "stephen", + "steps", + "stereotype", + "stetson", + "stetsons", + "steve", + "sth", + "stick", + "sticking", + "sticks", + "sticky", + "stiff", + "stigma", + "stilettos", + "still", + "stink", + "stitch", + "stitched", + "stitching", + "sto", + "stock", + "stockings", + "stockpile", + "stoic", + "stoicism", + "stoked", + "stolen", + "stomach", + "stomach(which", + "stone", + "stop", + "stopped", + "stopping", + "store", + "stored", + "stores", + "stores(e.g", + "stories", + "story", + "straddles", + "straight", + "strange", + "stranger", + "strap", + "strappy", + "straps", + "strategies", + "straw", + "strays", + "streak", + "stream", + "streamlined", + "strech", + "streestyle", + "street", + "streetstyle", + "streetwear", + "strength", + "strengthen", + "stress", + "stressed", + "stretch", + "stretched", + "stretches", + "stretching", + "stretchy", + "strict", + "strictly", + "strike", + "strikes", + "striking", + "stripe", + "striped", + "stripes", + "strive", + "stroke", + "strong", + "strongly", + "structured", + "struggle", + "struggled", + "struggling", + "sts", + "stuck", + "student", + "students", + "studied", + "studio", + "studios", + "stuff", + "stuff-", + "stumbled", + "stung", + "stunning", + "stupid", + "sty", + "style", + "styled", + "styleforum", + "styleforum.net", + "styles", + "styling", + "stylish", + "stylist", + "stylists", + "styptic", + "sub", + "subconsciously", + "subdued", + "subject", + "subjective", + "submission", + "submissions", + "subpar", + "subreddit", + "subreddit](/message", + "subreddits", + "subs", + "subscription", + "substantial", + "substantially", + "substitute", + "subtle", + "subtly", + "suburbs", + "subway", + "subways", + "success", + "successes", + "successful", + "such", + "suck", + "sucks", + "sudden", + "sue", + "suede", + "suedey", + "suffer", + "sufficient", + "suffolk", + "sugarcane", + "sugarhigh", + "suggest", + "suggested", + "suggesting", + "suggestion", + "suggestions", + "suit", + "suitable", + "suitcase", + "suited", + "suiting", + "suits", + "suitsupply", + "sulfates", + "summer", + "summers", + "summertime", + "summery", + "sun", + "sunburn", + "sunburned", + "sunday", + "sundress", + "sundresses", + "sunflowers", + "sunglasses", + "sunlight", + "sunny", + "sunsets", + "sunshine", + "super", + "superb", + "superdrug", + "superficial", + "superga", + "supergas", + "superhero", + "supplies", + "supply", + "support", + "supported", + "supporting", + "supportive", + "supports", + "suppose", + "supposed", + "supposedly", + "supreme", + "sure", + "surely", + "surface", + "surfaces", + "surfer", + "surgery", + "surplice", + "surplus", + "surprise", + "surprised", + "surprising", + "surrounding", + "survival", + "survive", + "survived", + "survivor", + "sus", + "suspect", + "suspenders", + "sustain", + "sutton", + "svensson", + "swag", + "swap", + "swastikas", + "swatches", + "swear", + "sweat", + "sweater", + "sweaters", + "sweating", + "sweatpants", + "sweatshirt", + "sweaty", + "sweet", + "swims", + "swimsuit", + "swimsuits", + "swing", + "swiss", + "switch", + "switched", + "swole", + "swr", + "symbol", + "symbolize", + "synagogue", + "synthetic", + "system", + "sz41wide", + "sz42", + "sz8", + "s\u2019s", + "t", + "t's", + "t.", + "t=1", + "tTo", + "ta", + "tab", + "tabis", + "tables", + "taboo", + "tackiness", + "tackle", + "tacky", + "tacos", + "tactic", + "tactics", + "tad", + "taffeta", + "tag", + "tags", + "tailcoat", + "tailor", + "tailored", + "tailoring", + "take", + "taken", + "takes", + "taking", + "tal", + "talents", + "talk", + "talking", + "talks", + "tall", + "taller", + "tallfashionadvice", + "tampons", + "tan", + "tangible", + "tank", + "tanks", + "tanktop", + "tanktops", + "tape", + "taper", + "tapered", + "tapering", + "tapped", + "taps", + "tar", + "target", + "tas", + "tasks", + "tassel", + "taste", + "tastes", + "tattered", + "tattoos", + "tavas", + "tax", + "tay", + "taylor", + "tbh", + "tch", + "tcy", + "td.", + "teach", + "teaching", + "teachings", + "teal", + "teale", + "team", + "tear", + "tears", + "teased", + "tech", + "technical", + "technically", + "technicians", + "techniques", + "techno", + "tecovas", + "ted", + "tee", + "teen", + "teenage", + "teenager", + "teenagers", + "teens", + "teensy", + "tees", + "tees/", + "tel", + "television", + "tell", + "telling", + "telluride", + "tem", + "temperature", + "temperatures", + "tempt", + "tempted", + "ten", + "tenants", + "tend", + "tendency", + "tends", + "tenn", + "tenn.", + "tent", + "tentacles", + "tep", + "ter", + "term", + "terms", + "terrible", + "terrified", + "territory", + "terry", + "tes", + "test", + "tests", + "tevas", + "tex", + "texas", + "text", + "texture", + "textured", + "textures", + "tf", + "thai", + "thailand", + "than", + "thank", + "thankfully", + "thanks", + "that", + "that's", + "that\u2019s", + "the", + "the_kavalier", + "theater", + "thebrest", + "their", + "them", + "theme", + "themselves", + "then", + "theoretically", + "theory", + "therapist", + "therapists", + "therapy", + "there", + "there's", + "there\u2019s", + "these", + "they", + "thick", + "thicken", + "thicker", + "thier", + "thigh", + "thighs", + "thin", + "thing", + "things", + "think", + "thinking", + "thinner", + "third", + "this", + "this's", + "thisRock", + "thisrock", + "this\u2019s", + "thn", + "tho", + "thom", + "thorough", + "thoroughly", + "those", + "though", + "thought", + "thoughtful", + "thoughts", + "thoughts/", + "thousands", + "thread", + "threading", + "threads", + "threatening", + "three", + "threeweeks", + "threshold", + "threw", + "thrift", + "thrifted", + "thrifting", + "thrifts", + "thriftstores", + "through", + "throughout", + "throw", + "throwing", + "thrown", + "throws", + "thru", + "ths", + "thumb", + "thumbs", + "thursday", + "thus", + "thy", + "thyme", + "tia", + "tic", + "tidying", + "tie", + "tie+cardigan", + "tied", + "tier", + "tiers", + "ties", + "tiger", + "tight", + "tighten", + "tighter", + "tightly", + "tights", + "til", + "till", + "timberland", + "timbuk2", + "time", + "timeless", + "times", + "timex", + "tin", + "tinder", + "tint", + "tinted", + "tiny", + "tip", + "tips", + "tired", + "tiro", + "tis", + "tissot", + "tissue", + "tissues", + "titty", + "tiy", + "tj", + "tl;dr", + "tldr", + "tle", + "tly", + "tm", + "tmi", + "tml", + "tnf", + "to", + "today", + "toe", + "toed", + "toes", + "together", + "toilet", + "toiling", + "tokyo", + "tol", + "told", + "tolerant", + "tolkien", + "tom", + "tomato", + "tombstone", + "tomorrow", + "ton", + "tone", + "toned", + "tones", + "tonga", + "tongue", + "tonight", + "tons", + "too", + "took", + "tool", + "toolbox", + "tools", + "top", + "topic", + "topics", + "topman", + "tops", + "topy", + "tor", + "torn", + "toronto", + "torrentshell", + "torso", + "torsos", + "tortured", + "tos", + "total", + "totally", + "tote", + "totepack", + "totes", + "touch", + "touches", + "touching", + "tough", + "tour", + "toward", + "towards", + "towel", + "towels", + "town", + "towns", + "tr0utpout", + "tra", + "trace", + "track", + "tracksuit", + "tracksuits", + "trade", + "trader", + "traditional", + "tragedy", + "trail", + "train", + "trained", + "trainers", + "training", + "trait", + "tranquility", + "transacting", + "transaction", + "transdimensional", + "transferring", + "transit", + "transition", + "translates", + "transport", + "transportation", + "trash", + "trashy", + "travel", + "traveled", + "traveling", + "travelling", + "tre", + "treaded", + "treadmill", + "treat", + "treated", + "treatment", + "treats", + "tree", + "trek", + "trench", + "trenchcoat", + "trend", + "trending", + "trends", + "trendsetter", + "trendy", + "tretorns", + "trf", + "tri", + "trial", + "triangular", + "tribeca", + "trick", + "trickers", + "trickier", + "tricks", + "tricky", + "tried", + "tries", + "trigger", + "trim", + "trinity", + "trip", + "triple", + "trips", + "tristan", + "tro", + "trolley", + "tropical", + "trouble", + "trousers", + "trucker", + "trucks", + "true", + "truly", + "trunbull", + "trunk", + "trust", + "trusting", + "trustworthy", + "truth", + "try", + "trying", + "ts/", + "tsg", + "tshirt", + "tshirts", + "tsy", + "tte", + "tti", + "tto", + "tts", + "tty", + "tuck", + "tucked", + "tucking", + "tudors", + "tuesday", + "tum", + "tumble", + "tumi", + "tune", + "tung", + "tunic", + "tup", + "turbo", + "turkey", + "turn", + "turnbull", + "turned", + "turning", + "turns", + "turtleneck", + "tus", + "tux", + "tuxedo?shoes", + "tuxes", + "tv", + "tw", + "tweakers", + "tweaks", + "tweed", + "twice", + "twiddling", + "twill", + "twillory", + "twist", + "two", + "twrl", + "tyedyes", + "type", + "typecast", + "typed", + "types", + "typical", + "typically", + "typified", + "tyrwhitt", + "t~~", + "t\u2019s", + "u", + "u.", + "u.n.c.l.e.", + "uEs", + "ua", + "ual", + "uat", + "uay", + "ube", + "ubs", + "ubt", + "uca", + "uce", + "uch", + "uck", + "uct", + "ude", + "uds", + "udy", + "ue\\", + "ued", + "ues", + "uff", + "ug.", + "uge", + "uggs", + "ugh", + "ughhhh", + "ugly", + "ugo", + "ugs", + "uh", + "uhhhh", + "uid", + "uin", + "uis", + "uit", + "uji", + "uk", + "uk2", + "uke", + "ul.", + "ula", + "uld", + "ule", + "ulf", + "ulk", + "ull", + "uls", + "ult", + "ultimate", + "ultimately", + "ultra", + "ultraboost", + "ultraboosts", + "ultrasound", + "ulu", + "uly", + "um", + "umb", + "umbrella", + "umbrellas", + "ume", + "umi", + "ummm", + "umn", + "ump", + "ums", + "un.", + "unable", + "unadjusted", + "unbleached", + "unbranded", + "unbutton", + "uncertain", + "uncomfortable", + "unconventional", + "uncool", + "und", + "under", + "underarm", + "undercover", + "undercuts", + "undercutting", + "undergarments", + "underlying", + "underneath", + "underproduced", + "undershirt", + "understand", + "understanding", + "understated", + "understood", + "underwear", + "une", + "unethical", + "uneven", + "unexpected", + "unexpectedly", + "unfaltering", + "unfinished", + "unfortunate", + "unfortunately", + "unfussy", + "ung", + "ungodly", + "unhappy", + "uniform", + "uniforms", + "uninteresting", + "union", + "uniqlo", + "uniqlos", + "unique", + "unis", + "unisex", + "university", + "unk", + "unknown", + "unless", + "unlikely", + "unlined", + "unofficially", + "unpack", + "unpacked", + "unquantifiable", + "unrelated", + "unresponsive", + "uns", + "unsanforized", + "unsecure", + "unsetting", + "unshortened", + "unsolicited", + "unstoppable", + "unstructured", + "unsure", + "unt", + "untextured", + "untighten", + "until", + "untucked", + "unusable", + "unusual", + "unwashed", + "unwearable", + "unzipped", + "up", + "upcoming", + "updated", + "upfront", + "upgrade", + "upkeep", + "upper", + "uppers", + "ups", + "upscale", + "upsize", + "upstairs", + "upswing", + "upthread", + "upvites", + "upvoted", + "upy", + "urban", + "ure", + "urging", + "urn", + "uro", + "urs", + "urt", + "ury", + "us", + "usage", + "usb", + "usc", + "use", + "use-", + "used", + "useful", + "useless", + "users", + "uses", + "ush", + "using", + "uss", + "ust", + "usual", + "usually", + "usy", + "uta", + "ute", + "uth", + "utilities", + "utility", + "utilize", + "uto", + "uts", + "utt", + "utter", + "uu", + "uve", + "uys", + "v", + "v.", + "v.s", + "v.s.", + "v.v", + "v_v", + "va", + "va.", + "vaca", + "vacation", + "vacations", + "vacuums", + "vagn", + "vague", + "vain", + "val", + "valet", + "valid", + "validity", + "valley", + "valor", + "value", + "values", + "van", + "vancouver", + "vanity", + "vans", + "vapormax", + "vapormaxes", + "vara", + "varieties", + "variety", + "various", + "varsity", + "vary", + "varying", + "vas", + "vca", + "ve", + "ved", + "veering", + "vegas", + "vejas", + "vel", + "velour", + "velva", + "velvet", + "ven", + "vendor", + "vendors", + "vents", + "ver", + "vera", + "verbal", + "verify", + "verrrrry", + "versa", + "versace", + "versatile", + "versatility", + "version", + "versions", + "versus", + "vertical", + "very", + "veryrare", + "ves", + "vest", + "vet", + "veteran", + "vets", + "via", + "vibe", + "viberg", + "vibes", + "vibrant", + "vice", + "vicious", + "vid", + "video", + "videos", + "vie", + "view", + "vil", + "villa", + "village", + "vin", + "vinegar", + "vines", + "vineyard", + "vintage", + "virginia", + "virtually", + "vis", + "viscose", + "visibility", + "visible", + "vision", + "visit", + "visited", + "visodate", + "visualizing", + "visually", + "vitello", + "vivid", + "vividity", + "vivobarefoot", + "vodka", + "voice\\", + "void", + "voile", + "voluminous", + "volunteering", + "von", + "vor", + "vote", + "voters", + "votes", + "vouch", + "vs", + "vs.", + "vuitton", + "vulnerable", + "vxb", + "w", + "w's", + "w.", + "w.a.", + "w.k.", + "w/", + "w/o", + "w00", + "w42", + "waaaay", + "wade", + "wag", + "waist", + "waistband", + "waistcoat", + "waisted", + "waistline", + "wait", + "waited", + "waiter", + "waiting", + "wake", + "wal", + "walk", + "walked", + "walker", + "walking", + "walks", + "wallet", + "wallets", + "walls", + "walmart", + "wandering", + "wang", + "wankers", + "wanna", + "want", + "wanted", + "wanting", + "wants", + "wap", + "war", + "wardrobe", + "wardrobes", + "warehouse", + "warm", + "warmer", + "warning", + "warning/", + "warp", + "wary", + "was", + "wash", + "wash.", + "washed", + "washer", + "washes", + "washing", + "washington", + "waste", + "watch", + "watched", + "watches", + "watching", + "water", + "waterbottle", + "waterfall", + "waterproof", + "waterproofiness", + "wave", + "wavy", + "wax", + "waxed", + "way", + "wayfarers", + "ways", + "waywt", + "wcB", + "wcb", + "we", + "weak", + "weakness", + "wealth", + "wear", + "wear)--", + "wearable", + "wearer", + "wearing", + "wears", + "wear\u201d-style", + "weather", + "weave", + "website", + "websites", + "wed", + "wedding", + "weddings", + "wedges", + "wedgie", + "wednesday", + "weed", + "weeding", + "weeds", + "week", + "weekend", + "weekender", + "weekends", + "weekly", + "weeks", + "weft", + "weigh", + "weighing", + "weight", + "weightlifting", + "weights", + "weird", + "weirdly", + "wel", + "welcome", + "well", + "welted", + "went", + "wer", + "were", + "wes", + "west", + "westbrook", + "western", + "wet", + "wetset", + "wey", + "what", + "what's", + "whatever", + "what\u2019s", + "whbm", + "when", + "when's", + "whenever", + "when\u2019s", + "where", + "where's", + "whereas", + "where\u2019s", + "whether", + "whi", + "which", + "whichever", + "while", + "whim", + "whip", + "whispering", + "white", + "whites", + "who", + "who's", + "whoever", + "whole", + "wholly", + "whom", + "whose", + "whowhatwear", + "who\u2019s", + "why", + "why's", + "why\u2019s", + "wicking", + "wicks", + "wide", + "wider", + "widest", + "width", + "widths", + "wife", + "wifes", + "wig", + "wiki", + "wikipedia", + "wild", + "wilder", + "will", + "william", + "williams", + "willing", + "willingness", + "willy", + "win", + "wind", + "window", + "windowpane", + "windsor", + "wine", + "wing", + "wings", + "wingtips", + "winnie_the_jew", + "wins", + "winter", + "wintry", + "wipe", + "wipes", + "wis", + "wis.", + "wisdom", + "wise", + "wish", + "wishing", + "witch", + "witchy", + "with", + "within", + "without", + "withstood", + "wk~", + "wly", + "wne", + "wns", + "wnz", + "wo", + "woah", + "wolf", + "woman", + "women", + "won", + "wonder", + "wonderful", + "wonderfully", + "wondering", + "wonders", + "woodfires", + "woodland", + "woody", + "wool", + "word", + "wording", + "words", + "wore", + "work", + "workboot", + "worked", + "worker", + "workers", + "working", + "workload", + "workout", + "workouts", + "workplace", + "works", + "workshirts", + "workwear", + "world", + "worlds", + "worn", + "worried", + "worries", + "worry", + "worrying", + "worse", + "worst", + "worth", + "worthy", + "would", + "woulda", + "woven", + "wow", + "wracking", + "wrangler", + "wranglers", + "wrap", + "wrapped", + "wraps", + "wrecked", + "wrinkle", + "wrinkles", + "wrinkly", + "wrist", + "write", + "writeup", + "writing", + "written", + "wrl", + "wrong", + "wrt", + "wse", + "wtaps", + "wtf", + "wth", + "wup", + "wyatt", + "w\u2019s", + "x", + "x\"x", + "x&xxx;x", + "x'", + "x'x", + "x'xxx", + "x'xxxx", + "x.", + "x.X", + "x.d", + "x.x", + "x.x.", + "x.x.x.x.x.", + "x.xxxx", + "x/", + "x/ddddxxxx", + "x/x", + "xD", + "xDD", + "xX", + "xXX", + "xXxXxXx", + "xXxx", + "x\\*\\*\\", + "x\\*xx", + "x_X", + "x_d", + "x_x", + "xas", + "xbrand", + "xd", + "xd-xxx", + "xdd", + "xddxxxxdxx", + "xed", + "xel", + "xer", + "xes", + "xhilaration", + "xl", + "xs", + "xts", + "xx", + "xx'", + "xx'x", + "xx'xx", + "xx-dddx.", + "xx.", + "xx;xx", + "xx_xx_x_xx_xxx_x_dXxxXxXXXX", + "xx_xx_x_xx_xxx_x_dxxxx", + "xxd", + "xxdd", + "xxdddd", + "xxdddd.xxxx", + "xxddx", + "xxddxxxx", + "xxdx", + "xxdxxxx", + "xxl", + "xxx", + "xxx\"-xxxx", + "xxx&xxx;xxxx", + "xxx'x", + "xxx(xxxx", + "xxx+xxxx", + "xxx-", + "xxx-ddddx", + "xxx-dddx", + "xxx/xx", + "xxx;#xdddX", + "xxx;#xdddx", + "xxxXXXd.xxx[/xxx", + "xxxXXXd.xxx\\[/xxx\\]](xxxx://x.xxxx.xxx", + "xxx_xxxx", + "xxxdxxx.xxx[/xxx", + "xxxdxxx.xxx\\[/xxx\\]](xxxx://x.xxxx.xxx", + "xxxx", + "xxxx&xxx;xxxx", + "xxxx'", + "xxxx'x", + "xxxx(x.x", + "xxxx(xxxx", + "xxxx)--", + "xxxx-", + "xxxx.xxx", + "xxxx.xxxx", + "xxxx/", + "xxxx/?xx=/x", + "xxxx/ddx", + "xxxx://x.xxxx.xxx/XXdxx.xxx", + "xxxx://x.xxxx.xxx/XxXXXxx.xxx", + "xxxx://x.xxxx.xxx/XxXXdxX.xxx", + "xxxx://x.xxxx.xxx/XxxXdXX.xxx", + "xxxx://x.xxxx.xxx/xXXXxxx.xxx", + "xxxx://x.xxxx.xxx/xxXdxXX.xxx", + "xxxx://x.xxxx.xxx/xxdxx.xxx", + "xxxx://x.xxxx.xxx/xxxdxxx.xxx", + "xxxx://x.xxxx.xxx/xxxx.xxx", + "xxxx://x.xxxx.xxx/xxxxdx.xxx", + "xxxx://x.xxxx.xxx/xxxxdxx.xxx", + "xxxx://xx.xxxx.xxx/xxx-xx/xxxx/xxxx-xxxx-xxxx-xxxx-dddd", + "xxxx://xx.xxxx.xxx/xxx-xx/xxxx/xxxx-xxxx-xxxx-xxxx-dddd#Xdddd", + "xxxx://xx.xxxx.xxx/xxx-xx/xxxx/xxxx-xxxx-xxxx-xxxx-dddd#xdddd", + "xxxx://xxx.xx.xxx/xxxx/xxxx-xxxx-xxx-xx-xxx-xxxx-d-dd-dd", + "xxxx://xxx.xx/xdxxxxdxxxd", + "xxxx://xxx.xxx.xxx/xxxx/XXdddd", + "xxxx://xxx.xxx.xxx/xxxx/xxdddd", + "xxxx://xxx.xxxx.xx.xx", + "xxxx://xxx.xxxx.xx.xx/xx/XddXXXXdXX/xxx=xx_xx_x_xx_xxx_x_dXxxXxXXXX", + "xxxx://xxx.xxxx.xx/xx/xxxx/xxxx/xxxx/xxxx/", + "xxxx://xxx.xxxx.xx/xxxx/xxxx/xxxx/xxx-xxxx-xxxx-xxxx-xxxx", + "xxxx://xxx.xxxx.xxx.xx", + "xxxx://xxx.xxxx.xxx.xx/xxxx-xxxx-xxxx/XXdddd.xxxx", + "xxxx://xxx.xxxx.xxx/ddd\\_Xxxxx.xxxx", + "xxxx://xxx.xxxx.xxx/ddd\\_xxxx.xxxx", + "xxxx://xxx.xxxx.xxx/x/xxxx/xxxx/ddxxxx/xxx\\_xxxx\\_xxxx/", + "xxxx://xxx.xxxx.xxx/xx-xx/xxxx/dddd_xxxx/", + "xxxx://xxx.xxxx.xxx/xx-xxx/xxxx-xx/xxxx-xxxx.xxxx", + "xxxx://xxx.xxxx.xxx/xx/XddXdXXXdX?xxx=xxx_xxx_xxx_xx_xxxx", + "xxxx://xxx.xxxx.xxx/xx/xddxdxxxdx?xxx=xxx_xxx_xxx_xx_xxxx", + "xxxx://xxx.xxxx.xxx/xx/xx", + "xxxx://xxx.xxxx.xxx/xx/xx/xxx/xxxx-xxxx?xxxx=dddd", + "xxxx://xxx.xxxx.xxx/xx/xx/xxx/xxxx-xxxx?xxxxXxxx=dddd", + "xxxx://xxx.xxxx.xxx/xx/xxxx-xxxx-xxxx-xxdddd.xxxx", + "xxxx://xxx.xxxx.xxx/xx/xxxx-xxxx-xxxx/XXdddd.xxxx", + "xxxx://xxx.xxxx.xxx/xx/xxxx-xxxx-xxxx/xxdddd.xxxx", + "xxxx://xxx.xxxx.xxx/xxxx-xxxx-xxxx-xxxx-dx-xxx/dddd.xxxx?xxxx_dddd_xxxx=ddd", + "xxxx://xxx.xxxx.xxx/xxxx/Xxxxx?xxx=xxdddd\\_xxxx", + "xxxx://xxx.xxxx.xxx/xxxx/XxxxxXxxxx?xxx=xxdddd\\_xxxx", + "xxxx://xxx.xxxx.xxx/xxxx/XxxxxXxxxxXxxxx?xxx=xxdddd\\_xxxx", + "xxxx://xxx.xxxx.xxx/xxxx/ddxxdx", + "xxxx://xxx.xxxx.xxx/xxxx/xx-xxx-dddd-dd-dd-dddd-xxxx.xxxx", + "xxxx://xxx.xxxx.xxx/xxxx/xxxx", + "xxxx://xxx.xxxx.xxx/xxxx/xxxx-d.xxxx?xxxx=xxxx-xxxx-d-xxxx-xxxx-d", + "xxxx://xxx.xxxx.xxx/xxxx/xxxx-xxxx-xxx-xxxx/xxxx/xxxx", + "xxxx://xxx.xxxx.xxx/xxxx/xxxx?xxx=xxdddd\\_xxxx", + "xxxx://xxx.xxxxd.xxx/xxxx/dddd-xxxx-xxxx-xxxx", + "xxxx://xxxx.xx/xxdXd_x-dXd", + "xxxx://xxxx.xx/xxdxd_x-dxd", + "xxxx://xxxx.xx/xxxx-dxxx?x=ddd", + "xxxx://xxxx.xx/xxxx/xxxx-xxx-xxxx-dddd/", + "xxxx://xxxx.xx/xxxxXX-dXxX?x=ddd", + "xxxx://xxxx.xxx/XdXdX", + "xxxx://xxxx.xxx/x/XXdXXxd", + "xxxx://xxxx.xxx/x/XXdXxxd", + "xxxx://xxxx.xxx/x/XddxxXX", + "xxxx://xxxx.xxx/x/XdxxdXd", + "xxxx://xxxx.xxx/x/XxXxXxd", + "xxxx://xxxx.xxx/x/XxxXdXX", + "xxxx://xxxx.xxx/x/ddxXdXx", + "xxxx://xxxx.xxx/x/ddxxdxx", + "xxxx://xxxx.xxx/x/dxXXXXx", + "xxxx://xxxx.xxx/x/dxXxxXX", + "xxxx://xxxx.xxx/x/dxxXXXx", + "xxxx://xxxx.xxx/x/dxxxx", + "xxxx://xxxx.xxx/x/xXXxXXX", + "xxxx://xxxx.xxx/x/xXdXddx", + "xxxx://xxxx.xxx/x/xXxXXXx", + "xxxx://xxxx.xxx/x/xdXXXX", + "xxxx://xxxx.xxx/x/xdXXXxx", + "xxxx://xxxx.xxx/x/xddxxxx", + "xxxx://xxxx.xxx/x/xdxxdxd", + "xxxx://xxxx.xxx/x/xdxxxx", + "xxxx://xxxx.xxx/x/xxXxddx", + "xxxx://xxxx.xxx/x/xxdxddx", + "xxxx://xxxx.xxx/x/xxdxxxd", + "xxxx://xxxx.xxx/x/xxxXXXx", + "xxxx://xxxx.xxx/x/xxxx", + "xxxx://xxxx.xxx/x/xxxxd", + "xxxx://xxxx.xxx/x/xxxxddx", + "xxxx://xxxx.xxx/x/xxxxdxx", + "xxxx://xxxx.xxx/xdxdx", + "xxxx://xxxx.xxx/xx_xx/ddddxx-dd-dddd-xxxx-xxxx-x-xxxx.xxxx", + "xxxx://xxxx.xxx/xxxdxxdx/xxxx-xxxx", + "xxxx://xxxx.xxx/xxxx-xxx-xxxx-xxxx-xxxx-xxxx-xxxx", + "xxxx://xxxx.xxx/xxxx-xxxx-x", + "xxxx://xxxx.xxx/xxxx/XxXXXdx", + "xxxx://xxxx.xxx/xxxx/xxx-xxxx-xxxx-xxxx-xxxx/", + "xxxx://xxxx.xxx/xxxx/xxxx/xxxx/xxxx-xxxx-xxxx?xxxx=dddd", + "xxxx://xxxx.xxx/xxxx/xxxxdx", + "xxxx://xxxx.xxxx.xxx/x/xxxx-xxxx/\\_/X-dxdddxxXdxx", + "xxxx://xxxx.xxxx.xxx/x/xxxx-xxxx/\\_/x-dxdddxxxdxx", + "xxxx://xxxx.xxxx.xxx/xxxx", + "xxxx://xxxx.xxxx.xxx/xxxx/dddd", + "xxxx://xxxx.xxxx.xxx/xxxx/x/dXXXXdXxxd_xxXxXdxxxdxXxXXdXXXXdd/xxxx?xxx=xxxx", + "xxxx://xxxx.xxxx.xxx/xxxx/x/dxxdxXXXxxXddx_xxdXxxXXxXdXxxXxXx/xxxx?xxx=xxxx", + "xxxx://xxxx.xxxx.xxx/xxxx/x/dxxdxxxxddx_xxdxxxxdxxxx/xxxx?xxx=xxxx", + "xxxx://xxxx.xxxx.xxx/xxxx/x/dxxxxdxxxd_xxxxdxxxdxxxxdxxxxdd/xxxx?xxx=xxxx", + "xxxx?xxxx", + "xxxxXxxx", + "xxxx\\", + "xxxx](/xxxx", + "xxxx_xxx_xxx", + "xxxx_xxx_xxxx", + "xxxxd", + "xxxxd.xxx[/xxx", + "xxxxd.xxx\\[/xxx\\]](xxxx://x.xxxx.xxx", + "xxxxdd", + "xxxxdddd", + "xxxxx", + "xxxx\u2019", + "xxxx\u2019x", + "xxxx\u201d-xxxx", + "xxxx\u201d/xxxx", + "xxx\u2019x", + "xx\u2019", + "xx\u2019x", + "xx\u2019xx", + "x\u2018xx", + "x\u2019", + "x\u2019x", + "x\u2019xxx", + "x\u2019xxxx", + "x\ufe35x", + "y", + "y'", + "y'all", + "y'know", + "y's", + "y.", + "yUS", + "ya", + "yal", + "yale", + "yanko", + "yard", + "yards", + "yay", + "ybe", + "ybi", + "ybrand", + "yde", + "yea", + "yeah", + "year", + "yearn", + "years", + "yed", + "yee", + "yeehaw", + "yeezys", + "yellow", + "yellowish", + "yells", + "yep", + "yer", + "yes", + "yesterday", + "yet", + "yh", + "yikes", + "yle", + "yme", + "ymmv", + "yoga", + "yon", + "yoox", + "york", + "you", + "young", + "younger", + "your", + "yours", + "yourself", + "yourselves", + "youths", + "youtube", + "youtuber", + "youtubers", + "ype", + "ysl", + "yst", + "yth", + "yup", + "yus", + "ywt", + "y\u2019", + "y\u2019s", + "z", + "z.", + "z42", + "zan7rhq.jpg[/img", + "zan7rhq.jpg\\[/img\\]](https://i.imgur.com", + "zara", + "zebra", + "zebras", + "zed", + "zen", + "zer", + "zero", + "zerogrand", + "zes", + "zia", + "zil", + "zimmermann", + "zio", + "zip", + "zipper", + "zippered", + "zombie", + "zon", + "zone", + "zoomers", + "zumiez", + "zys", + "zza", + "zzy", + "|", + "}", + "~", + "~$130", + "~$15", + "~$200", + "~$68", + "~$dd", + "~$ddd", + "~lewk~", + "~xxxx~", + "~~walmart~~", + "~~xxxx~~", + "\u00a0", + "\u00a3", + "\u00ac", + "\u00ac_\u00ac", + "\u00af", + "\u00af\\(x)/\u00af", + "\u00af\\(\u30c4)/\u00af", + "\u00af\\\\_(x)_/\u00af", + "\u00af\\\\_(\u30c4)_/\u00af", + "\u00af\\_(x)_/\u00af", + "\u00af\\_(\u30c4)_/\u00af", + "\u00b0", + "\u00b0C.", + "\u00b0F.", + "\u00b0K.", + "\u00b0X.", + "\u00b0c.", + "\u00b0f.", + "\u00b0k.", + "\u00b0x.", + "\u00e0", + "\u00e4", + "\u00e4.", + "\u00f6", + "\u00f6.", + "\u00fc", + "\u00fc.", + "\u0ca0", + "\u0ca0_\u0ca0", + "\u0ca0\ufe35\u0ca0", + "\u200b", + "\u200d", + "\u2013", + "\u2014", + "\u2018", + "\u2018S", + "\u2018X", + "\u2018s", + "\u2018ve", + "\u2018x", + "\u2019", + "\u2019-(", + "\u2019-)", + "\u2019Cause", + "\u2019Cos", + "\u2019Coz", + "\u2019Cuz", + "\u2019S", + "\u2019X", + "\u2019Xxx", + "\u2019Xxxxx", + "\u2019am", + "\u2019bout", + "\u2019cause", + "\u2019cos", + "\u2019coz", + "\u2019cuz", + "\u2019d", + "\u2019em", + "\u2019ll", + "\u2019m", + "\u2019nuff", + "\u2019re", + "\u2019s", + "\u2019ve", + "\u2019x", + "\u2019xx", + "\u2019xxx", + "\u2019xxxx", + "\u2019y", + "\u2019\u2019", + "\u201c", + "\u201d", + "\u2026", + "\u20ac", + "\u2501", + "\u253b", + "\u253b\u2501\u253b", + "\u256f", + "\u25a1", + "\u2640", + "\u2764", + "\ufe0f", + "\ufe35", + "\uff09", + "\ud83c\udde6", + "\ud83c\udde8", + "\ud83c\udf1e", + "\ud83c\udffb", + "\ud83c\udffb\u200d", + "\ud83d\udc4d", + "\ud83d\ude01", + "\ud83d\ude02", + "\ud83d\ude04", + "\ud83d\ude05", + "\ud83d\ude09", + "\ud83d\ude0d", + "\ud83d\ude14", + "\ud83d\ude29", + "\ud83d\ude2c", + "\ud83d\ude2d", + "\ud83d\ude31", + "\ud83e\udd1e", + "\ud83e\udd23", + "\ud83e\udd24", + "\ud83e\udd26", + "\ud83e\udd37" +] \ No newline at end of file diff --git a/vocab/vectors b/vocab/vectors new file mode 100644 index 0000000000000000000000000000000000000000..ebadaa58b83a76a8ce0dbf1b5a75d8fb4aa559ad Binary files /dev/null and b/vocab/vectors differ diff --git a/vocab/vectors.cfg b/vocab/vectors.cfg new file mode 100644 index 0000000000000000000000000000000000000000..32c800af499252db8a717fd27e02d8829f815368 --- /dev/null +++ b/vocab/vectors.cfg @@ -0,0 +1,3 @@ +{ + "mode":"default" +} \ No newline at end of file