From 1285c4ba93f3244fe26173612f1cb00899aa1256 Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Wed, 7 Dec 2016 20:29:52 +0100 Subject: [PATCH] Update English language data --- spacy/en/language_data.py | 6950 +++++++++++-------------------------- 1 file changed, 1952 insertions(+), 4998 deletions(-) diff --git a/spacy/en/language_data.py b/spacy/en/language_data.py index 3015b3f97..1bce0f87a 100644 --- a/spacy/en/language_data.py +++ b/spacy/en/language_data.py @@ -1,11 +1,75 @@ # encoding: utf8 from __future__ import unicode_literals import re +from ..symbols import * + + +PRON_LEMMA = "-PRON-" + + +TAG_MAP = { + ".": {POS: PUNCT, "puncttype": "peri"}, + ",": {POS: PUNCT, "puncttype": "comm"}, + "-LRB-": {POS: PUNCT, "puncttype": "brck", "punctside": "ini"}, + "-RRB-": {POS: PUNCT, "puncttype": "brck", "punctside": "fin"}, + "``": {POS: PUNCT, "puncttype": "quot", "punctside": "ini"}, + "\"\"": {POS: PUNCT, "puncttype": "quot", "punctside": "fin"}, + "''": {POS: PUNCT, "puncttype": "quot", "punctside": "fin"}, + ":": {POS: PUNCT}, + "$": {POS: SYM, "other": {"symtype": "currency"}}, + "#": {POS: SYM, "other": {"symtype": "numbersign"}}, + "AFX": {POS: ADJ, "hyph": "hyph"}, + "CC": {POS: CONJ, "conjtype": "coor"}, + "CD": {POS: NUM, "numtype": "card"}, + "DT": {POS: DET}, + "EX": {POS: ADV, "advtype": "ex"}, + "FW": {POS: X, "foreign": "foreign"}, + "HYPH": {POS: PUNCT, "puncttype": "dash"}, + "IN": {POS: ADP}, + "JJ": {POS: ADJ, "degree": "pos"}, + "JJR": {POS: ADJ, "degree": "comp"}, + "JJS": {POS: ADJ, "degree": "sup"}, + "LS": {POS: PUNCT, "numtype": "ord"}, + "MD": {POS: VERB, "verbtype": "mod"}, + "NIL": {POS: ""}, + "NN": {POS: NOUN, "number": "sing"}, + "NNP": {POS: PROPN, "nountype": "prop", "number": "sing"}, + "NNPS": {POS: PROPN, "nountype": "prop", "number": "plur"}, + "NNS": {POS: NOUN, "number": "plur"}, + "PDT": {POS: ADJ, "adjtype": "pdt", "prontype": "prn"}, + "POS": {POS: PART, "poss": "poss"}, + "PRP": {POS: PRON, "prontype": "prs"}, + "PRP$": {POS: ADJ, "prontype": "prs", "poss": "poss"}, + "RB": {POS: ADV, "degree": "pos"}, + "RBR": {POS: ADV, "degree": "comp"}, + "RBS": {POS: ADV, "degree": "sup"}, + "RP": {POS: PART}, + "SYM": {POS: SYM}, + "TO": {POS: PART, "parttype": "inf", "verbform": "inf"}, + "UH": {POS: INTJ}, + "VB": {POS: VERB, "verbform": "inf"}, + "VBD": {POS: VERB, "verbform": "fin", "tense": "past"}, + "VBG": {POS: VERB, "verbform": "part", "tense": "pres", "aspect": "prog"}, + "VBN": {POS: VERB, "verbform": "part", "tense": "past", "aspect": "perf"}, + "VBP": {POS: VERB, "verbform": "fin", "tense": "pres"}, + "VBZ": {POS: VERB, "verbform": "fin", "tense": "pres", "number": "sing", "person": 3}, + "WDT": {POS: ADJ, "prontype": "int|rel"}, + "WP": {POS: NOUN, "prontype": "int|rel"}, + "WP$": {POS: ADJ, "poss": "poss", "prontype": "int|rel"}, + "WRB": {POS: ADV, "prontype": "int|rel"}, + "SP": {POS: SPACE}, + "ADD": {POS: X}, + "NFP": {POS: PUNCT}, + "GW": {POS: X}, + "AFX": {POS: X}, + "HYPH": {POS: PUNCT}, + "XX": {POS: X}, + "BES": {POS: VERB}, + "HVS": {POS: VERB} +} -# improved list from Stone, Denis, Kwantes (2010) STOP_WORDS = set(""" - a about above across after afterwards again against all almost alone along already also although always am among amongst amount an and another any anyhow anyone anything anyway anywhere are around as at @@ -67,71 +131,1897 @@ whereafter whereas whereby wherein whereupon wherever whether which while whither who whoever whole whom whose why will with within without would yet you your yours yourself yourselves - """.split()) -TAG_MAP = { - ".": {"pos": "punct", "puncttype": "peri"}, - ",": {"pos": "punct", "puncttype": "comm"}, - "-LRB-": {"pos": "punct", "puncttype": "brck", "punctside": "ini"}, - "-RRB-": {"pos": "punct", "puncttype": "brck", "punctside": "fin"}, - "``": {"pos": "punct", "puncttype": "quot", "punctside": "ini"}, - "\"\"": {"pos": "punct", "puncttype": "quot", "punctside": "fin"}, - "''": {"pos": "punct", "puncttype": "quot", "punctside": "fin"}, - ":": {"pos": "punct"}, - "$": {"pos": "sym", "other": {"symtype": "currency"}}, - "#": {"pos": "sym", "other": {"symtype": "numbersign"}}, - "AFX": {"pos": "adj", "hyph": "hyph"}, - "CC": {"pos": "conj", "conjtype": "coor"}, - "CD": {"pos": "num", "numtype": "card"}, - "DT": {"pos": "det"}, - "EX": {"pos": "adv", "advtype": "ex"}, - "FW": {"pos": "x", "foreign": "foreign"}, - "HYPH": {"pos": "punct", "puncttype": "dash"}, - "IN": {"pos": "adp"}, - "JJ": {"pos": "adj", "degree": "pos"}, - "JJR": {"pos": "adj", "degree": "comp"}, - "JJS": {"pos": "adj", "degree": "sup"}, - "LS": {"pos": "punct", "numtype": "ord"}, - "MD": {"pos": "verb", "verbtype": "mod"}, - "NIL": {"pos": ""}, - "NN": {"pos": "noun", "number": "sing"}, - "NNP": {"pos": "propn", "nountype": "prop", "number": "sing"}, - "NNPS": {"pos": "propn", "nountype": "prop", "number": "plur"}, - "NNS": {"pos": "noun", "number": "plur"}, - "PDT": {"pos": "adj", "adjtype": "pdt", "prontype": "prn"}, - "POS": {"pos": "part", "poss": "poss"}, - "PRP": {"pos": "pron", "prontype": "prs"}, - "PRP$": {"pos": "adj", "prontype": "prs", "poss": "poss"}, - "RB": {"pos": "adv", "degree": "pos"}, - "RBR": {"pos": "adv", "degree": "comp"}, - "RBS": {"pos": "adv", "degree": "sup"}, - "RP": {"pos": "part"}, - "SYM": {"pos": "sym"}, - "TO": {"pos": "part", "parttype": "inf", "verbform": "inf"}, - "UH": {"pos": "intJ"}, - "VB": {"pos": "verb", "verbform": "inf"}, - "VBD": {"pos": "verb", "verbform": "fin", "tense": "past"}, - "VBG": {"pos": "verb", "verbform": "part", "tense": "pres", "aspect": "prog"}, - "VBN": {"pos": "verb", "verbform": "part", "tense": "past", "aspect": "perf"}, - "VBP": {"pos": "verb", "verbform": "fin", "tense": "pres"}, - "VBZ": {"pos": "verb", "verbform": "fin", "tense": "pres", "number": "sing", "person": 3}, - "WDT": {"pos": "adj", "prontype": "int|rel"}, - "WP": {"pos": "noun", "prontype": "int|rel"}, - "WP$": {"pos": "adj", "poss": "poss", "prontype": "int|rel"}, - "WRB": {"pos": "adv", "prontype": "int|rel"}, - "SP": {"pos": "space"}, - "ADD": {"pos": "x"}, - "NFP": {"pos": "punct"}, - "GW": {"pos": "x"}, - "AFX": {"pos": "x"}, - "HYPH": {"pos": "punct"}, - "XX": {"pos": "x"}, - "BES": {"pos": "verb"}, - "HVS": {"pos": "verb"} +TOKENIZER_EXCEPTIONS = { + "and/or": [ + {ORTH: "and/or", LEMMA: "and/or", TAG: "CC"} + ], + + "Theydve": [ + {ORTH: "They", LEMMA: PRON_LEMMA}, + {ORTH: "d", LEMMA: "would", TAG: "MD"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "shouldn't've": [ + {ORTH: "should"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "There'll": [ + {ORTH: "There"}, + {ORTH: "'ll", LEMMA: "will", TAG: "MD"} + ], + + "howll": [ + {ORTH: "how"}, + {ORTH: "ll", LEMMA: "will", TAG: "MD"} + ], + + "Hadn't've": [ + {ORTH: "Had", LEMMA: "have", TAG: "VBD"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "who'll": [ + {ORTH: "who"}, + {ORTH: "'ll", LEMMA: "will", TAG: "MD"} + ], + + "aint": [ + {ORTH: "ai", TAG: "VBP", "number": 2, LEMMA: "be"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + " ": [ + {TAG: "SP", ORTH: " "} + ], + + "Shouldnt": [ + {ORTH: "Should"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "when's": [ + {ORTH: "when"}, + {ORTH: "'s", LEMMA: "be"} + ], + + "Didnt": [ + {ORTH: "Did", LEMMA: "do", TAG: "VBD"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "itll": [ + {ORTH: "it", LEMMA: PRON_LEMMA}, + {ORTH: "ll", LEMMA: "will", TAG: "MD"} + ], + + "Who're": [ + {ORTH: "Who"}, + {ORTH: "'re"} + ], + + "Ain't": [ + {ORTH: "Ai", TAG: "VBP", "number": 2, LEMMA: "be"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "Can't": [ + {ORTH: "Ca", LEMMA: "can", TAG: "MD"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "Whyre": [ + {ORTH: "Why"}, + {ORTH: "re"} + ], + + "Aren't": [ + {ORTH: "Are", TAG: "VBP", "number": 2, LEMMA: "be"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "Neednt": [ + {ORTH: "Need"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "should've": [ + {ORTH: "should"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "shouldn't": [ + {ORTH: "should"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "Idve": [ + {ORTH: "I", LEMMA: PRON_LEMMA}, + {ORTH: "d", LEMMA: "would", TAG: "MD"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "weve": [ + {ORTH: "we"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "Ive": [ + {ORTH: "I", LEMMA: PRON_LEMMA}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "they'd": [ + {ORTH: "they", LEMMA: PRON_LEMMA}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"} + ], + + "Youdve": [ + {ORTH: "You", LEMMA: PRON_LEMMA}, + {ORTH: "d", LEMMA: "would", TAG: "MD"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "theyve": [ + {ORTH: "they", LEMMA: PRON_LEMMA}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "Weren't": [ + {ORTH: "Were"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "werent": [ + {ORTH: "were"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "whyre": [ + {ORTH: "why"}, + {ORTH: "re"} + ], + + "I'm": [ + {ORTH: "I", LEMMA: PRON_LEMMA}, + {ORTH: "'m", TAG: "VBP", "tenspect": 1, "number": 1, LEMMA: "be"} + ], + + "She'd've": [ + {ORTH: "She", LEMMA: PRON_LEMMA}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "not've": [ + {ORTH: "not", LEMMA: "not", TAG: "RB"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "we'll": [ + {ORTH: "we"}, + {ORTH: "'ll", LEMMA: "will", TAG: "MD"} + ], + + "Don't": [ + {ORTH: "Do", LEMMA: "do"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "Whyll": [ + {ORTH: "Why"}, + {ORTH: "ll", LEMMA: "will", TAG: "MD"} + ], + + "they've": [ + {ORTH: "they", LEMMA: PRON_LEMMA}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "wasn't": [ + {ORTH: "was"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "could've": [ + {ORTH: "could", TAG: "MD"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "what've": [ + {ORTH: "what"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "havent": [ + {ORTH: "have", TAG: "VB"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "Who've": [ + {ORTH: "Who"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "Shan't": [ + {ORTH: "Sha"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "i'll": [ + {ORTH: "i", LEMMA: PRON_LEMMA}, + {ORTH: "'ll", LEMMA: "will", TAG: "MD"} + ], + + "you'd": [ + {ORTH: "you", LEMMA: PRON_LEMMA}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"} + ], + + "whens": [ + {ORTH: "when"}, + {ORTH: "s", LEMMA: "be"} + ], + + "whys": [ + {ORTH: "why"}, + {ORTH: "s"} + ], + + "Whereve": [ + {ORTH: "Where"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "\u00a0": [ + {ORTH: "\u00a0", TAG: "SP", LEMMA: " "} + ], + + "there'd": [ + {ORTH: "there"}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"} + ], + + "hadn't've": [ + {ORTH: "had", LEMMA: "have", TAG: "VBD"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "whatll": [ + {ORTH: "what"}, + {ORTH: "ll", LEMMA: "will", TAG: "MD"} + ], + + "wouldn't've": [ + {ORTH: "would"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "there's": [ + {ORTH: "there"}, + {ORTH: "'s"} + ], + + "Who'll": [ + {ORTH: "Who"}, + {ORTH: "'ll", LEMMA: "will", TAG: "MD"} + ], + + "youll": [ + {ORTH: "you", LEMMA: PRON_LEMMA}, + {ORTH: "ll", LEMMA: "will", TAG: "MD"} + ], + + "wouldve": [ + {ORTH: "would"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "Wouldnt": [ + {ORTH: "Would"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "Thered": [ + {ORTH: "There"}, + {ORTH: "d", LEMMA: "would", TAG: "MD"} + ], + + "Youre": [ + {ORTH: "You", LEMMA: PRON_LEMMA}, + {ORTH: "re", LEMMA: "be"} + ], + + "Couldn't've": [ + {ORTH: "Could", TAG: "MD"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "who're": [ + {ORTH: "who"}, + {ORTH: "'re"} + ], + + "Whys": [ + {ORTH: "Why"}, + {ORTH: "s"} + ], + + "mightn't've": [ + {ORTH: "might"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "Wholl": [ + {ORTH: "Who"}, + {ORTH: "ll", LEMMA: "will", TAG: "MD"} + ], + + "hadn't": [ + {ORTH: "had", LEMMA: "have", TAG: "VBD"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "Havent": [ + {ORTH: "Have", TAG: "VB"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "Whatve": [ + {ORTH: "What"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "Thats": [ + {ORTH: "That"}, + {ORTH: "s"} + ], + + "Howll": [ + {ORTH: "How"}, + {ORTH: "ll", LEMMA: "will", TAG: "MD"} + ], + + "wouldn't": [ + {ORTH: "would"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "You'll": [ + {ORTH: "You", LEMMA: PRON_LEMMA}, + {ORTH: "'ll", LEMMA: "will", TAG: "MD"} + ], + + "Cant": [ + {ORTH: "Ca", LEMMA: "can", TAG: "MD"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "i'd": [ + {ORTH: "i", LEMMA: PRON_LEMMA}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"} + ], + + "weren't": [ + {ORTH: "were"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "would've": [ + {ORTH: "would"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "i'm": [ + {ORTH: "i", LEMMA: PRON_LEMMA}, + {ORTH: "'m", TAG: "VBP", "tenspect": 1, "number": 1, LEMMA: "be"} + ], + + "why'll": [ + {ORTH: "why"}, + {ORTH: "'ll", LEMMA: "will", TAG: "MD"} + ], + + "we'd've": [ + {ORTH: "we"}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "Shouldve": [ + {ORTH: "Should"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "can't": [ + {ORTH: "ca", LEMMA: "can", TAG: "MD"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "thats": [ + {ORTH: "that"}, + {ORTH: "s"} + ], + + "Hes": [ + {ORTH: "He", LEMMA: PRON_LEMMA}, + {ORTH: "s"} + ], + + "Needn't": [ + {ORTH: "Need"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "It's": [ + {ORTH: "It", LEMMA: PRON_LEMMA}, + {ORTH: "'s"} + ], + + "Why're": [ + {ORTH: "Why"}, + {ORTH: "'re", LEMMA: "be"} + ], + + "Hed": [ + {ORTH: "He", LEMMA: PRON_LEMMA}, + {ORTH: "d", LEMMA: "would", TAG: "MD"} + ], + + "Mt.": [ + {ORTH: "Mt.", LEMMA: "Mount"} + ], + + "couldn't": [ + {ORTH: "could", TAG: "MD"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "What've": [ + {ORTH: "What"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "It'd": [ + {ORTH: "It", LEMMA: PRON_LEMMA}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"} + ], + + "theydve": [ + {ORTH: "they", LEMMA: PRON_LEMMA}, + {ORTH: "d", LEMMA: "would", TAG: "MD"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "aren't": [ + {ORTH: "are", TAG: "VBP", "number": 2, LEMMA: "be"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "Mightn't": [ + {ORTH: "Might"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "'S": [ + {ORTH: "'S", LEMMA: "'s"} + ], + + "I've": [ + {ORTH: "I", LEMMA: PRON_LEMMA}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "Whered": [ + {ORTH: "Where"}, + {ORTH: "d", LEMMA: "would", TAG: "MD"} + ], + + "Itdve": [ + {ORTH: "It", LEMMA: PRON_LEMMA}, + {ORTH: "d", LEMMA: "would", TAG: "MD"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "I'ma": [ + {ORTH: "I", LEMMA: PRON_LEMMA}, + {ORTH: "'ma"} + ], + + "whos": [ + {ORTH: "who"}, + {ORTH: "s"} + ], + + "They'd": [ + {ORTH: "They", LEMMA: PRON_LEMMA}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"} + ], + + "What'll": [ + {ORTH: "What"}, + {ORTH: "'ll", LEMMA: "will", TAG: "MD"} + ], + + "You've": [ + {ORTH: "You", LEMMA: PRON_LEMMA}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "Mustve": [ + {ORTH: "Must"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "whod": [ + {ORTH: "who"}, + {ORTH: "d", LEMMA: "would", TAG: "MD"} + ], + + "mightntve": [ + {ORTH: "might"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "I'd've": [ + {ORTH: "I", LEMMA: PRON_LEMMA}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "Must've": [ + {ORTH: "Must"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "it'd": [ + {ORTH: "it", LEMMA: PRON_LEMMA}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"} + ], + + "what're": [ + {ORTH: "what"}, + {ORTH: "'re"} + ], + + "Wasn't": [ + {ORTH: "Was"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "what's": [ + {ORTH: "what"}, + {ORTH: "'s"} + ], + + "he'd've": [ + {ORTH: "he", LEMMA: PRON_LEMMA}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "She'd": [ + {ORTH: "She", LEMMA: PRON_LEMMA}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"} + ], + + "shedve": [ + {ORTH: "she", LEMMA: PRON_LEMMA}, + {ORTH: "d", LEMMA: "would", TAG: "MD"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "ain't": [ + {ORTH: "ai", TAG: "VBP", "number": 2, LEMMA: "be"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "She's": [ + {ORTH: "i", LEMMA: PRON_LEMMA}, + {ORTH: "'s"} + ], + + "i'd've": [ + {ORTH: "i", LEMMA: PRON_LEMMA}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "We'd've": [ + {ORTH: "We"}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "must've": [ + {ORTH: "must"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "That's": [ + {ORTH: "That"}, + {ORTH: "'s"} + ], + + "whatre": [ + {ORTH: "what"}, + {ORTH: "re"} + ], + + "you'd've": [ + {ORTH: "you", LEMMA: PRON_LEMMA}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "Dont": [ + {ORTH: "Do", LEMMA: "do"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "thered": [ + {ORTH: "there"}, + {ORTH: "d", LEMMA: "would", TAG: "MD"} + ], + + "Youd": [ + {ORTH: "You", LEMMA: PRON_LEMMA}, + {ORTH: "d", LEMMA: "would", TAG: "MD"} + ], + + "couldn't've": [ + {ORTH: "could", TAG: "MD"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "Whens": [ + {ORTH: "When"}, + {ORTH: "s"} + ], + + "Isnt": [ + {ORTH: "Is", LEMMA: "be", TAG: "VBZ"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "mightve": [ + {ORTH: "might"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "didnt": [ + {ORTH: "did", LEMMA: "do", TAG: "VBD"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "ive": [ + {ORTH: "i", LEMMA: PRON_LEMMA}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "It'd've": [ + {ORTH: "It", LEMMA: PRON_LEMMA}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "\t": [ + {ORTH: "\t", TAG: "SP"} + ], + + "Itll": [ + {ORTH: "It", LEMMA: PRON_LEMMA}, + {ORTH: "ll", LEMMA: "will", TAG: "MD"} + ], + + "didn't": [ + {ORTH: "did", LEMMA: "do", TAG: "VBD"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "cant": [ + {ORTH: "ca", LEMMA: "can", TAG: "MD"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "im": [ + {ORTH: "i", LEMMA: PRON_LEMMA}, + {ORTH: "m", TAG: "VBP", "tenspect": 1, "number": 1, LEMMA: "be"} + ], + + "they'd've": [ + {ORTH: "they", LEMMA: PRON_LEMMA}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "Hadntve": [ + {ORTH: "Had", LEMMA: "have", TAG: "VBD"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "Weve": [ + {ORTH: "We"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "Mightnt": [ + {ORTH: "Might"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "youdve": [ + {ORTH: "you", LEMMA: PRON_LEMMA}, + {ORTH: "d", LEMMA: "would", TAG: "MD"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "Shedve": [ + {ORTH: "i", LEMMA: PRON_LEMMA}, + {ORTH: "d", LEMMA: "would", TAG: "MD"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "theyd": [ + {ORTH: "they", LEMMA: PRON_LEMMA}, + {ORTH: "d", LEMMA: "would", TAG: "MD"} + ], + + "Cannot": [ + {ORTH: "Can", LEMMA: "can", TAG: "MD"}, + {ORTH: "not", LEMMA: "not", TAG: "RB"} + ], + + "Hadn't": [ + {ORTH: "Had", LEMMA: "have", TAG: "VBD"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "What're": [ + {ORTH: "What"}, + {ORTH: "'re"} + ], + + "He'll": [ + {ORTH: "He", LEMMA: PRON_LEMMA}, + {ORTH: "'ll", LEMMA: "will", TAG: "MD"} + ], + + "wholl": [ + {ORTH: "who"}, + {ORTH: "ll", LEMMA: "will", TAG: "MD"} + ], + + "They're": [ + {ORTH: "They", LEMMA: PRON_LEMMA}, + {ORTH: "'re"} + ], + + "shouldnt": [ + {ORTH: "should"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "\n": [ + {ORTH: "\n", TAG: "SP"} + ], + + "whered": [ + {ORTH: "where"}, + {ORTH: "d", LEMMA: "would", TAG: "MD"} + ], + + "youve": [ + {ORTH: "you", LEMMA: PRON_LEMMA}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "notve": [ + {ORTH: "not", LEMMA: "not", TAG: "RB"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "couldve": [ + {ORTH: "could", TAG: "MD"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "mustve": [ + {ORTH: "must"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "Youve": [ + {ORTH: "You", LEMMA: PRON_LEMMA}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "therell": [ + {ORTH: "there"}, + {ORTH: "ll", LEMMA: "will", TAG: "MD"} + ], + + "might've": [ + {ORTH: "might"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "Mustn't": [ + {ORTH: "Must"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "wheres": [ + {ORTH: "where"}, + {ORTH: "s"} + ], + + "they're": [ + {ORTH: "they", LEMMA: PRON_LEMMA}, + {ORTH: "'re"} + ], + + "idve": [ + {ORTH: "i", LEMMA: PRON_LEMMA}, + {ORTH: "d", LEMMA: "would", TAG: "MD"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "hows": [ + {ORTH: "how"}, + {ORTH: "s"} + ], + + "youre": [ + {ORTH: "you", LEMMA: PRON_LEMMA}, + {ORTH: "re"} + ], + + "Didn't": [ + {ORTH: "Did", LEMMA: "do", TAG: "VBD"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "Couldve": [ + {ORTH: "Could", TAG: "MD"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "cannot": [ + {ORTH: "can", LEMMA: "can", TAG: "MD"}, + {ORTH: "not", LEMMA: "not", TAG: "RB"} + ], + + "Im": [ + {ORTH: "I", LEMMA: PRON_LEMMA}, + {ORTH: "m", TAG: "VBP", "tenspect": 1, "number": 1, LEMMA: "be"} + ], + + "howd": [ + {ORTH: "how"}, + {ORTH: "d", LEMMA: "would", TAG: "MD"} + ], + + "you've": [ + {ORTH: "you", LEMMA: PRON_LEMMA}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "You're": [ + {ORTH: "You", LEMMA: PRON_LEMMA}, + {ORTH: "'re"} + ], + + "she'll": [ + {ORTH: "she", LEMMA: PRON_LEMMA}, + {ORTH: "'ll", LEMMA: "will", TAG: "MD"} + ], + + "Theyll": [ + {ORTH: "They", LEMMA: PRON_LEMMA}, + {ORTH: "ll", LEMMA: "will", TAG: "MD"} + ], + + "don't": [ + {ORTH: "do", LEMMA: "do"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "itd": [ + {ORTH: "it", LEMMA: PRON_LEMMA}, + {ORTH: "d", LEMMA: "would", TAG: "MD"} + ], + + "Hedve": [ + {ORTH: "He", LEMMA: PRON_LEMMA}, + {ORTH: "d", LEMMA: "would", TAG: "MD"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "isnt": [ + {ORTH: "is", LEMMA: "be", TAG: "VBZ"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "won't": [ + {ORTH: "wo"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "We're": [ + {ORTH: "We"}, + {ORTH: "'re"} + ], + + "\u2018S": [ + {ORTH: "\u2018S", LEMMA: "'s"} + ], + + "\u2018s": [ + {ORTH: "\u2018s", LEMMA: "'s"} + ], + + "dont": [ + {ORTH: "do", LEMMA: "do"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "ima": [ + {ORTH: "i", LEMMA: PRON_LEMMA}, + {ORTH: "ma"} + ], + + "Let's": [ + {ORTH: "Let"}, + {ORTH: "'s", LEMMA: "us"} + ], + + "he's": [ + {ORTH: "he", LEMMA: PRON_LEMMA}, + {ORTH: "'s"} + ], + + "we've": [ + {ORTH: "we"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "What's": [ + {ORTH: "What"}, + {ORTH: "'s"} + ], + + "Who's": [ + {ORTH: "Who"}, + {ORTH: "'s"} + ], + + "hedve": [ + {ORTH: "he", LEMMA: PRON_LEMMA}, + {ORTH: "d", LEMMA: "would", TAG: "MD"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "he'd": [ + {ORTH: "he", LEMMA: PRON_LEMMA}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"} + ], + + "When's": [ + {ORTH: "When"}, + {ORTH: "'s"} + ], + + "Mightn't've": [ + {ORTH: "Might"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "We've": [ + {ORTH: "We"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "Couldntve": [ + {ORTH: "Could", TAG: "MD"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "Who'd": [ + {ORTH: "Who"}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"} + ], + + "haven't": [ + {ORTH: "have", TAG: "VB"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "arent": [ + {ORTH: "are", TAG: "VBP", "number": 2, LEMMA: "be"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "You'd've": [ + {ORTH: "You", LEMMA: PRON_LEMMA}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "Wouldn't": [ + {ORTH: "Would"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "who's": [ + {ORTH: "who"}, + {ORTH: "'s"} + ], + + "Mightve": [ + {ORTH: "Might"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "Theredve": [ + {ORTH: "There"}, + {ORTH: "d", LEMMA: "would", TAG: "MD"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "theredve": [ + {ORTH: "there"}, + {ORTH: "d", LEMMA: "would", TAG: "MD"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "who'd": [ + {ORTH: "who"}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"} + ], + + "Where's": [ + {ORTH: "Where"}, + {ORTH: "'s"} + ], + + "wont": [ + {ORTH: "wo"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "she'd've": [ + {ORTH: "she", LEMMA: PRON_LEMMA}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "Should've": [ + {ORTH: "Should"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "theyre": [ + {ORTH: "they", LEMMA: PRON_LEMMA}, + {ORTH: "re"} + ], + + "Wouldntve": [ + {ORTH: "Would"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "Where've": [ + {ORTH: "Where"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "mustn't": [ + {ORTH: "must"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "isn't": [ + {ORTH: "is", LEMMA: "be", TAG: "VBZ"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "Aint": [ + {ORTH: "Ai", TAG: "VBP", "number": 2, LEMMA: "be"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "why's": [ + {ORTH: "why"}, + {ORTH: "'s"} + ], + + "There'd": [ + {ORTH: "There"}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"} + ], + + "They'll": [ + {ORTH: "They", LEMMA: PRON_LEMMA}, + {ORTH: "'ll", LEMMA: "will", TAG: "MD"} + ], + + "how'll": [ + {ORTH: "how"}, + {ORTH: "'ll", LEMMA: "will", TAG: "MD"} + ], + + "Wedve": [ + {ORTH: "We"}, + {ORTH: "d", LEMMA: "would", TAG: "MD"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "couldntve": [ + {ORTH: "could", TAG: "MD"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "There's": [ + {ORTH: "There"}, + {ORTH: "'s"} + ], + + "we'd": [ + {ORTH: "we"}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"} + ], + + "Whod": [ + {ORTH: "Who"}, + {ORTH: "d", LEMMA: "would", TAG: "MD"} + ], + + "whatve": [ + {ORTH: "what"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "Wouldve": [ + {ORTH: "Would"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "there'll": [ + {ORTH: "there"}, + {ORTH: "'ll", LEMMA: "will", TAG: "MD"} + ], + + "needn't": [ + {ORTH: "need"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "shouldntve": [ + {ORTH: "should"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "why're": [ + {ORTH: "why"}, + {ORTH: "'re"} + ], + + "Doesnt": [ + {ORTH: "Does", LEMMA: "do", TAG: "VBZ"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "whereve": [ + {ORTH: "where"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "they'll": [ + {ORTH: "they", LEMMA: PRON_LEMMA}, + {ORTH: "'ll", LEMMA: "will", TAG: "MD"} + ], + + "I'd": [ + {ORTH: "I", LEMMA: PRON_LEMMA}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"} + ], + + "Might've": [ + {ORTH: "Might"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "mightnt": [ + {ORTH: "might"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "Not've": [ + {ORTH: "Not", LEMMA: "not", TAG: "RB"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "mightn't": [ + {ORTH: "might"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "you're": [ + {ORTH: "you", LEMMA: PRON_LEMMA}, + {ORTH: "'re"} + ], + + "They've": [ + {ORTH: "They", LEMMA: PRON_LEMMA}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "what'll": [ + {ORTH: "what"}, + {ORTH: "'ll", LEMMA: "will", TAG: "MD"} + ], + + "Could've": [ + {ORTH: "Could", TAG: "MD"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "Would've": [ + {ORTH: "Would"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "Isn't": [ + {ORTH: "Is", LEMMA: "be", TAG: "VBZ"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "let's": [ + {ORTH: "let"}, + {ORTH: "'s", LEMMA: "us"} + ], + + "She'll": [ + {ORTH: "i", LEMMA: PRON_LEMMA}, + {ORTH: "'ll", LEMMA: "will", TAG: "MD"} + ], + + "You'd": [ + {ORTH: "You", LEMMA: PRON_LEMMA}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"} + ], + + "wouldnt": [ + {ORTH: "would"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "Why'll": [ + {ORTH: "Why"}, + {ORTH: "'ll", LEMMA: "will", TAG: "MD"} + ], + + "Where'd": [ + {ORTH: "Where"}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"} + ], + + "Theyre": [ + {ORTH: "They", LEMMA: PRON_LEMMA}, + {ORTH: "re"} + ], + + "Won't": [ + {ORTH: "Wo"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "Couldn't": [ + {ORTH: "Could", TAG: "MD"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "it's": [ + {ORTH: "it", LEMMA: PRON_LEMMA}, + {ORTH: "'s"} + ], + + "it'll": [ + {ORTH: "it", LEMMA: PRON_LEMMA}, + {ORTH: "'ll", LEMMA: "will", TAG: "MD"} + ], + + "They'd've": [ + {ORTH: "They", LEMMA: PRON_LEMMA}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "Ima": [ + {ORTH: "I", LEMMA: PRON_LEMMA}, + {ORTH: "ma"} + ], + + "whats": [ + {ORTH: "what"}, + {ORTH: "s"} + ], + + "How's": [ + {ORTH: "How"}, + {ORTH: "'s"} + ], + + "Shouldntve": [ + {ORTH: "Should"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "youd": [ + {ORTH: "you", LEMMA: PRON_LEMMA}, + {ORTH: "d", LEMMA: "would", TAG: "MD"} + ], + + "Whatll": [ + {ORTH: "What"}, + {ORTH: "ll", LEMMA: "will", TAG: "MD"} + ], + + "Wouldn't've": [ + {ORTH: "Would"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "How'd": [ + {ORTH: "How"}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"} + ], + + "doesnt": [ + {ORTH: "does", LEMMA: "do", TAG: "VBZ"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "Shouldn't": [ + {ORTH: "Should"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "He'd've": [ + {ORTH: "He", LEMMA: PRON_LEMMA}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "Mightntve": [ + {ORTH: "Might"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "couldnt": [ + {ORTH: "could", TAG: "MD"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "Haven't": [ + {ORTH: "Have", TAG: "VB"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "doesn't": [ + {ORTH: "does", LEMMA: "do", TAG: "VBZ"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "Hasn't": [ + {ORTH: "Has"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "how's": [ + {ORTH: "how"}, + {ORTH: "'s"} + ], + + "hes": [ + {ORTH: "he", LEMMA: PRON_LEMMA}, + {ORTH: "s"} + ], + + "he'll": [ + {ORTH: "he", LEMMA: PRON_LEMMA}, + {ORTH: "'ll", LEMMA: "will", TAG: "MD"} + ], + + "hed": [ + {ORTH: "he", LEMMA: PRON_LEMMA}, + {ORTH: "d", LEMMA: "would", TAG: "MD"} + ], + + "how'd": [ + {ORTH: "how"}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"} + ], + + "we're": [ + {ORTH: "we"}, + {ORTH: "'re"} + ], + + "Hadnt": [ + {ORTH: "Had", LEMMA: "have", TAG: "VBD"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "Shant": [ + {ORTH: "Sha"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "Theyve": [ + {ORTH: "They", LEMMA: PRON_LEMMA}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "Hows": [ + {ORTH: "How"}, + {ORTH: "s"} + ], + + "We'll": [ + {ORTH: "We"}, + {ORTH: "'ll", LEMMA: "will", TAG: "MD"} + ], + + "i've": [ + {ORTH: "i", LEMMA: PRON_LEMMA}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "Whove": [ + {ORTH: "Who"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "i'ma": [ + {ORTH: "i", LEMMA: PRON_LEMMA}, + {ORTH: "'ma"} + ], + + "Howd": [ + {ORTH: "How"}, + {ORTH: "d", LEMMA: "would", TAG: "MD"} + ], + + "hadnt": [ + {ORTH: "had", LEMMA: "have", TAG: "VBD"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "shant": [ + {ORTH: "sha"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "There'd've": [ + {ORTH: "There"}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "I'll": [ + {ORTH: "I", LEMMA: PRON_LEMMA}, + {ORTH: "'ll", LEMMA: "will", TAG: "MD"} + ], + + "Why's": [ + {ORTH: "Why"}, + {ORTH: "'s"} + ], + + "Shouldn't've": [ + {ORTH: "Should"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "Wasnt": [ + {ORTH: "Was"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "whove": [ + {ORTH: "who"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "hasn't": [ + {ORTH: "has"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "wouldntve": [ + {ORTH: "would"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "Wheres": [ + {ORTH: "Where"}, + {ORTH: "s"} + ], + + "How'll": [ + {ORTH: "How"}, + {ORTH: "'ll", LEMMA: "will", TAG: "MD"} + ], + + "there'd've": [ + {ORTH: "there"}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "Whos": [ + {ORTH: "Who"}, + {ORTH: "s"} + ], + + "shes": [ + {ORTH: "she", LEMMA: PRON_LEMMA}, + {ORTH: "s"} + ], + + "Doesn't": [ + {ORTH: "Does", LEMMA: "do", TAG: "VBZ"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "Arent": [ + {ORTH: "Are", TAG: "VBP", "number": 2, LEMMA: "be"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "Hasnt": [ + {ORTH: "Has"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "He's": [ + {ORTH: "He", LEMMA: PRON_LEMMA}, + {ORTH: "'s"} + ], + + "wasnt": [ + {ORTH: "was"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "whyll": [ + {ORTH: "why"}, + {ORTH: "ll", LEMMA: "will", TAG: "MD"} + ], + + "mustnt": [ + {ORTH: "must"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "He'd": [ + {ORTH: "He", LEMMA: PRON_LEMMA}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"} + ], + + "Shes": [ + {ORTH: "i", LEMMA: PRON_LEMMA}, + {ORTH: "s"} + ], + + "where've": [ + {ORTH: "where"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "Youll": [ + {ORTH: "You", LEMMA: PRON_LEMMA}, + {ORTH: "ll", LEMMA: "will", TAG: "MD"} + ], + + "hasnt": [ + {ORTH: "has"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "theyll": [ + {ORTH: "they", LEMMA: PRON_LEMMA}, + {ORTH: "ll", LEMMA: "will", TAG: "MD"} + ], + + "it'd've": [ + {ORTH: "it", LEMMA: PRON_LEMMA}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "itdve": [ + {ORTH: "it", LEMMA: PRON_LEMMA}, + {ORTH: "d", LEMMA: "would", TAG: "MD"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "wedve": [ + {ORTH: "we"}, + {ORTH: "d", LEMMA: "would", TAG: "MD"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "Werent": [ + {ORTH: "Were"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "Therell": [ + {ORTH: "There"}, + {ORTH: "ll", LEMMA: "will", TAG: "MD"} + ], + + "shan't": [ + {ORTH: "sha"}, + {ORTH: "n't", LEMMA: "not", TAG: "RB"} + ], + + "Wont": [ + {ORTH: "Wo"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "hadntve": [ + {ORTH: "had", LEMMA: "have", TAG: "VBD"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "who've": [ + {ORTH: "who"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} + ], + + "Whatre": [ + {ORTH: "What"}, + {ORTH: "re"} + ], + + "'s": [ + {ORTH: "'s", LEMMA: "'s"} + ], + + "where'd": [ + {ORTH: "where"}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"} + ], + + "shouldve": [ + {ORTH: "should"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "where's": [ + {ORTH: "where"}, + {ORTH: "'s"} + ], + + "neednt": [ + {ORTH: "need"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "It'll": [ + {ORTH: "It", LEMMA: PRON_LEMMA}, + {ORTH: "'ll", LEMMA: "will", TAG: "MD"} + ], + + "We'd": [ + {ORTH: "We"}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"} + ], + + "Whats": [ + {ORTH: "What"}, + {ORTH: "s"} + ], + + "\u2014": [ + {ORTH: "\u2014", TAG: ":", LEMMA: "--"} + ], + + "Itd": [ + {ORTH: "It", LEMMA: PRON_LEMMA}, + {ORTH: "d", LEMMA: "would", TAG: "MD"} + ], + + "she'd": [ + {ORTH: "she", LEMMA: PRON_LEMMA}, + {ORTH: "'d", LEMMA: "would", TAG: "MD"} + ], + + "Mustnt": [ + {ORTH: "Must"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "Notve": [ + {ORTH: "Not", LEMMA: "not", TAG: "RB"}, + {ORTH: "ve", LEMMA: "have", TAG: "VB"} + ], + + "you'll": [ + {ORTH: "you", LEMMA: PRON_LEMMA}, + {ORTH: "'ll", LEMMA: "will", TAG: "MD"} + ], + + "Theyd": [ + {ORTH: "They", LEMMA: PRON_LEMMA}, + {ORTH: "d", LEMMA: "would", TAG: "MD"} + ], + + "she's": [ + {ORTH: "she", LEMMA: PRON_LEMMA}, + {ORTH: "'s"} + ], + + "Couldnt": [ + {ORTH: "Could", TAG: "MD"}, + {ORTH: "nt", LEMMA: "not", TAG: "RB"} + ], + + "that's": [ + {ORTH: "that"}, + {ORTH: "'s"} + ] } + +self_map = [ + "''", + "'em", + "'ol'", + "\")", + "a.", + "a.m.", + "Adm.", + "Ala.", + "Apr.", + "Ariz.", + "Ark.", + "Aug.", + "b.", + "Bros.", + "c.", + "Calif.", + "co.", + "Co.", + "Colo.", + "Conn.", + "Corp.", + "d.", + "D.C.", + "Dec.", + "Del.", + "Dr.", + "e.", + "e.g.", + "E.g.", + "E.G.", + "f.", + "Feb.", + "Fla.", + "g.", + "Ga.", + "Gen.", + "Gov.", + "h.", + "i.", + "i.e.", + "I.e.", + "I.E.", + "Ill.", + "Inc.", + "Ind.", + "j.", + "Jan.", + "Jr.", + "Jul.", + "Jun.", + "k.", + "Kan.", + "Kans.", + "Ky.", + "l.", + "La.", + "Ltd.", + "m.", + "Mar.", + "Mass.", + "May." + "Md.", + "Messrs.", + "Mich.", + "Minn.", + "Miss.", + "Mo.", + "Mont.", + "Mr.", + "Mrs.", + "Ms.", + "n.", + "N.C.", + "N.D.", + "N.H.", + "N.J.", + "N.M.", + "N.Y.", + "Neb.", + "Nebr.", + "Nev.", + "Nov.", + "o.", + "Oct.", + "Okla.", + "Ore.", + "p.", + "p.m.", + "Pa.", + "Ph.D.", + "q.", + "r.", + "Rep.", + "Rev.", + "s.", + "Sen.", + "Sep.", + "Sept.", + "St.", + "t.", + "Tenn.", + "u.", + "v.", + "Va.", + "vs.", + "w.", + "Wash.", + "Wis.", + "x.", + "y.", + "z.", +] + +overlap = set(TOKENIZER_EXCEPTIONS.keys()).intersection(set(self_map)) +assert not overlap, overlap +TOKENIZER_EXCEPTIONS.update({orth: [{ORTH: orth}] for orth in self_map}) + + TOKENIZER_PREFIXES = r''' , " @@ -199,4939 +2089,3 @@ TOKENIZER_INFIXES = r''' (?<=[0-9])-(?=[0-9]) (?<=[A-Za-z]),(?=[A-Za-z]) '''.strip().split('\n') - - -TOKENIZER_EXCEPTIONS = { - "and/or": [ - { - "F": "and/or", - "L": "and/or", - "pos": "CC" - }], - "Ph.D.": [ - { - "F": "Ph.D." - }], - "d.": [ - { - "F": "d." - } - ], - "Theydve": [ - { - "L": "-PRON-", - "F": "They" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - ":/": [ - { - "F": ":/" - } - ], - "shouldn't've": [ - { - "F": "should" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "There'll": [ - { - "F": "There" - }, - { - "F": "'ll", - "L": "will", - "pos": "MD" - } - ], - "E.G.": [ - { - "F": "E.G." - } - ], - "howll": [ - { - "F": "how" - }, - { - "F": "ll", - "L": "will", - "pos": "MD" - } - ], - "6a.m.": [ - { - "F": "6" - }, - { - "F": "a.m." - } - ], - "Ore.": [ - { - "F": "Ore." - } - ], - "Hadn't've": [ - { - "F": "Had", - "L": "have", - "pos": "VBD" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - ":>": [ - { - "F": ":>" - } - ], - "3p.m.": [ - { - "F": "3" - }, - { - "F": "p.m." - } - ], - "who'll": [ - { - "F": "who" - }, - { - "F": "'ll", - "L": "will", - "pos": "MD" - } - ], - "5a.m.": [ - { - "F": "5" - }, - { - "F": "a.m." - } - ], - ":(": [ - { - "F": ":(" - } - ], - ":0": [ - { - "F": ":0" - } - ], - "10a.m.": [ - { - "F": "10" - }, - { - "F": "a.m." - } - ], - "aint": [ - { - "F": "ai", - "pos": "VBP", - "number": 2, - "L": "be" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - " ": [ - { - "pos": "SP", - "F": " " - } - ], - "Dec.": [ - { - "F": "Dec." - } - ], - "Shouldnt": [ - { - "F": "Should" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "Ky.": [ - { - "F": "Ky." - } - ], - "when's": [ - { - "F": "when" - }, - { - "F": "'s" - } - ], - "Didnt": [ - { - "F": "Did", - "L": "do", - "pos": "VBD" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "itll": [ - { - "L": "-PRON-", - "F": "it" - }, - { - "F": "ll", - "L": "will", - "pos": "MD" - } - ], - "Who're": [ - { - "F": "Who" - }, - { - "F": "'re" - } - ], - "=D": [ - { - "F": "=D" - } - ], - "Ain't": [ - { - "F": "Ai", - "pos": "VBP", - "number": 2, - "L": "be" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "Can't": [ - { - "F": "Ca", - "L": "can", - "pos": "MD" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "Whyre": [ - { - "F": "Why" - }, - { - "F": "re" - } - ], - "Aren't": [ - { - "F": "Are", - "pos": "VBP", - "number": 2, - "L": "be" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "Neednt": [ - { - "F": "Need" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "should've": [ - { - "F": "should" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "shouldn't": [ - { - "F": "should" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "Idve": [ - { - "L": "-PRON-", - "F": "I" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "weve": [ - { - "F": "we" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "Va.": [ - { - "F": "Va." - } - ], - "D.C.": [ - { - "F": "D.C." - } - ], - "3am": [ - { - "F": "3" - }, - { - "L": "a.m.", - "F": "am" - } - ], - "Ive": [ - { - "L": "-PRON-", - "F": "I" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "Md.": [ - { - "F": "Md." - } - ], - ";D": [ - { - "F": ";D" - } - ], - "Mrs.": [ - { - "F": "Mrs." - } - ], - "Minn.": [ - { - "F": "Minn." - } - ], - "they'd": [ - { - "L": "-PRON-", - "F": "they" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - } - ], - "Youdve": [ - { - "L": "-PRON-", - "F": "You" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "theyve": [ - { - "L": "-PRON-", - "F": "they" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "Weren't": [ - { - "F": "Were" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "werent": [ - { - "F": "were" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "whyre": [ - { - "F": "why" - }, - { - "F": "re" - } - ], - "g.": [ - { - "F": "g." - } - ], - "I'm": [ - { - "L": "-PRON-", - "F": "I" - }, - { - "pos": "VBP", - "F": "'m", - "tenspect": 1, - "number": 1, - "L": "be" - } - ], - ":p": [ - { - "F": ":p" - } - ], - "She'd've": [ - { - "L": "-PRON-", - "F": "She" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "not've": [ - { - "F": "not", - "L": "not", - "pos": "RB" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "we'll": [ - { - "F": "we" - }, - { - "F": "'ll", - "L": "will", - "pos": "MD" - } - ], - ":O": [ - { - "F": ":O" - } - ], - "<33": [ - { - "F": "<33" - } - ], - "Don't": [ - { - "L": "do", - "F": "Do" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "Whyll": [ - { - "F": "Why" - }, - { - "F": "ll", - "L": "will", - "pos": "MD" - } - ], - "''": [ - { - "F": "''" - } - ], - "they've": [ - { - "L": "-PRON-", - "F": "they" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "t.": [ - { - "F": "t." - } - ], - "wasn't": [ - { - "F": "was" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "could've": [ - { - "pos": "MD", - "F": "could" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "what've": [ - { - "F": "what" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "havent": [ - { - "pos": "VB", - "F": "have" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "Who've": [ - { - "F": "Who" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "11am": [ - { - "F": "11" - }, - { - "L": "a.m.", - "F": "am" - } - ], - "Shan't": [ - { - "F": "Sha" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "i'll": [ - { - "L": "-PRON-", - "F": "i" - }, - { - "F": "'ll", - "L": "will", - "pos": "MD" - } - ], - "i.e.": [ - { - "F": "i.e." - } - ], - "you'd": [ - { - "L": "-PRON-", - "F": "you" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - } - ], - "w.": [ - { - "F": "w." - } - ], - "whens": [ - { - "F": "when" - }, - { - "F": "s" - } - ], - "whys": [ - { - "F": "why" - }, - { - "F": "s" - } - ], - "6pm": [ - { - "F": "6" - }, - { - "L": "p.m.", - "F": "pm" - } - ], - "4p.m.": [ - { - "F": "4" - }, - { - "F": "p.m." - } - ], - "Whereve": [ - { - "F": "Where" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "o_o": [ - { - "F": "o_o" - } - ], - "Mo.": [ - { - "F": "Mo." - } - ], - "Kan.": [ - { - "F": "Kan." - } - ], - "\u00a0": [ - { - "pos": "SP", - "L": " ", - "F": "\u00a0" - } - ], - "there'd": [ - { - "F": "there" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - } - ], - "N.H.": [ - { - "F": "N.H." - } - ], - "(^_^)": [ - { - "F": "(^_^)" - } - ], - "Mont.": [ - { - "F": "Mont." - } - ], - "hadn't've": [ - { - "F": "had", - "L": "have", - "pos": "VBD" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "whatll": [ - { - "F": "what" - }, - { - "F": "ll", - "L": "will", - "pos": "MD" - } - ], - "wouldn't've": [ - { - "F": "would" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "there's": [ - { - "F": "there" - }, - { - "F": "'s" - } - ], - "2pm": [ - { - "F": "2" - }, - { - "L": "p.m.", - "F": "pm" - } - ], - "Who'll": [ - { - "F": "Who" - }, - { - "F": "'ll", - "L": "will", - "pos": "MD" - } - ], - "o_O": [ - { - "F": "o_O" - } - ], - "Nev.": [ - { - "F": "Nev." - } - ], - "youll": [ - { - "L": "-PRON-", - "F": "you" - }, - { - "F": "ll", - "L": "will", - "pos": "MD" - } - ], - "wouldve": [ - { - "F": "would" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "Nov.": [ - { - "F": "Nov." - } - ], - "z.": [ - { - "F": "z." - } - ], - "xDD": [ - { - "F": "xDD" - } - ], - "Sen.": [ - { - "F": "Sen." - } - ], - "Wouldnt": [ - { - "F": "Would" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "Thered": [ - { - "F": "There" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - } - ], - "Youre": [ - { - "L": "-PRON-", - "F": "You" - }, - { - "F": "re" - } - ], - "Couldn't've": [ - { - "pos": "MD", - "F": "Could" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "who're": [ - { - "F": "who" - }, - { - "F": "'re" - } - ], - "Whys": [ - { - "F": "Why" - }, - { - "F": "s" - } - ], - "mightn't've": [ - { - "F": "might" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "Wholl": [ - { - "F": "Who" - }, - { - "F": "ll", - "L": "will", - "pos": "MD" - } - ], - "hadn't": [ - { - "F": "had", - "L": "have", - "pos": "VBD" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "Havent": [ - { - "pos": "VB", - "F": "Have" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "Whatve": [ - { - "F": "What" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - ":)": [ - { - "F": ":)" - } - ], - "o.O": [ - { - "F": "o.O" - } - ], - "Thats": [ - { - "F": "That" - }, - { - "F": "s" - } - ], - ":((": [ - { - "F": ":((" - } - ], - "Gov.": [ - { - "F": "Gov." - } - ], - "Howll": [ - { - "F": "How" - }, - { - "F": "ll", - "L": "will", - "pos": "MD" - } - ], - "p.": [ - { - "F": "p." - } - ], - "wouldn't": [ - { - "F": "would" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "9pm": [ - { - "F": "9" - }, - { - "L": "p.m.", - "F": "pm" - } - ], - "You'll": [ - { - "L": "-PRON-", - "F": "You" - }, - { - "F": "'ll", - "L": "will", - "pos": "MD" - } - ], - "Ala.": [ - { - "F": "Ala." - } - ], - "12am": [ - { - "F": "12" - }, - { - "L": "a.m.", - "F": "am" - } - ], - "=]": [ - { - "F": "=]" - } - ], - "Cant": [ - { - "F": "Ca", - "L": "can", - "pos": "MD" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "i'd": [ - { - "L": "-PRON-", - "F": "i" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - } - ], - "a.m.": [ - { - "F": "a.m." - } - ], - "weren't": [ - { - "F": "were" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "would've": [ - { - "F": "would" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "i'm": [ - { - "L": "-PRON-", - "F": "i" - }, - { - "pos": "VBP", - "F": "'m", - "tenspect": 1, - "number": 1, - "L": "be" - } - ], - "why'll": [ - { - "F": "why" - }, - { - "F": "'ll", - "L": "will", - "pos": "MD" - } - ], - "we'd've": [ - { - "F": "we" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "Shouldve": [ - { - "F": "Should" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "can't": [ - { - "F": "ca", - "L": "can", - "pos": "MD" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "thats": [ - { - "F": "that" - }, - { - "F": "s" - } - ], - "1p.m.": [ - { - "F": "1" - }, - { - "F": "p.m." - } - ], - "12a.m.": [ - { - "F": "12" - }, - { - "F": "a.m." - } - ], - "Hes": [ - { - "L": "-PRON-", - "F": "He" - }, - { - "F": "s" - } - ], - "Needn't": [ - { - "F": "Need" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "It's": [ - { - "L": "-PRON-", - "F": "It" - }, - { - "F": "'s" - } - ], - "St.": [ - { - "F": "St." - } - ], - "Why're": [ - { - "F": "Why" - }, - { - "F": "'re" - } - ], - ":(((": [ - { - "F": ":(((" - } - ], - "Hed": [ - { - "L": "-PRON-", - "F": "He" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - } - ], - "Mt.": [ - { - "L": "Mount", - "F": "Mt." - } - ], - "couldn't": [ - { - "pos": "MD", - "F": "could" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "What've": [ - { - "F": "What" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "4a.m.": [ - { - "F": "4" - }, - { - "F": "a.m." - } - ], - "Ind.": [ - { - "F": "Ind." - } - ], - "It'd": [ - { - "L": "-PRON-", - "F": "It" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - } - ], - "<3": [ - { - "F": "<3" - } - ], - "theydve": [ - { - "L": "-PRON-", - "F": "they" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "aren't": [ - { - "F": "are", - "pos": "VBP", - "number": 2, - "L": "be" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "Mightn't": [ - { - "F": "Might" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "'S": [ - { - "L": "'s", - "F": "'S" - } - ], - "I've": [ - { - "L": "-PRON-", - "F": "I" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "Whered": [ - { - "F": "Where" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - } - ], - "Itdve": [ - { - "L": "-PRON-", - "F": "It" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "I'ma": [ - { - "L": "-PRON-", - "F": "I" - }, - { - "F": "'ma" - } - ], - "whos": [ - { - "F": "who" - }, - { - "F": "s" - } - ], - "They'd": [ - { - "L": "-PRON-", - "F": "They" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - } - ], - "What'll": [ - { - "F": "What" - }, - { - "F": "'ll", - "L": "will", - "pos": "MD" - } - ], - ":Y": [ - { - "F": ":Y" - } - ], - "You've": [ - { - "L": "-PRON-", - "F": "You" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "Mustve": [ - { - "F": "Must" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "whod": [ - { - "F": "who" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - } - ], - "mightntve": [ - { - "F": "might" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "I'd've": [ - { - "L": "-PRON-", - "F": "I" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "Must've": [ - { - "F": "Must" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "it'd": [ - { - "L": "-PRON-", - "F": "it" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - } - ], - "Ark.": [ - { - "F": "Ark." - } - ], - "Wis.": [ - { - "F": "Wis." - } - ], - "6p.m.": [ - { - "F": "6" - }, - { - "F": "p.m." - } - ], - "what're": [ - { - "F": "what" - }, - { - "F": "'re" - } - ], - "N.C.": [ - { - "F": "N.C." - } - ], - "Wasn't": [ - { - "F": "Was" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "what's": [ - { - "F": "what" - }, - { - "F": "'s" - } - ], - "he'd've": [ - { - "L": "-PRON-", - "F": "he" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "Jan.": [ - { - "F": "Jan." - } - ], - "She'd": [ - { - "L": "-PRON-", - "F": "She" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - } - ], - "shedve": [ - { - "L": "-PRON-", - "F": "she" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "Tenn.": [ - { - "F": "Tenn." - } - ], - "ain't": [ - { - "F": "ai", - "pos": "VBP", - "number": 2, - "L": "be" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "Wash.": [ - { - "F": "Wash." - } - ], - "She's": [ - { - "L": "-PRON-", - "F": "She" - }, - { - "F": "'s" - } - ], - "i'd've": [ - { - "L": "-PRON-", - "F": "i" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "2a.m.": [ - { - "F": "2" - }, - { - "F": "a.m." - } - ], - "We'd've": [ - { - "F": "We" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "must've": [ - { - "F": "must" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "That's": [ - { - "F": "That" - }, - { - "F": "'s" - } - ], - "Sept.": [ - { - "F": "Sept." - } - ], - "whatre": [ - { - "F": "what" - }, - { - "F": "re" - } - ], - "you'd've": [ - { - "L": "-PRON-", - "F": "you" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "Dont": [ - { - "L": "do", - "F": "Do" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "i.": [ - { - "F": "i." - } - ], - "Jun.": [ - { - "F": "Jun." - } - ], - "thered": [ - { - "F": "there" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - } - ], - "Youd": [ - { - "L": "-PRON-", - "F": "You" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - } - ], - "couldn't've": [ - { - "pos": "MD", - "F": "could" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "Whens": [ - { - "F": "When" - }, - { - "F": "s" - } - ], - "8a.m.": [ - { - "F": "8" - }, - { - "F": "a.m." - } - ], - "Isnt": [ - { - "F": "Is", - "L": "be", - "pos": "VBZ" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "mightve": [ - { - "F": "might" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "'ol": [ - { - "F": "'ol" - } - ], - "2p.m.": [ - { - "F": "2" - }, - { - "F": "p.m." - } - ], - "9a.m.": [ - { - "F": "9" - }, - { - "F": "a.m." - } - ], - "q.": [ - { - "F": "q." - } - ], - "didnt": [ - { - "F": "did", - "L": "do", - "pos": "VBD" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "ive": [ - { - "L": "-PRON-", - "F": "i" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "It'd've": [ - { - "L": "-PRON-", - "F": "It" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "e.g.": [ - { - "F": "e.g." - } - ], - "\t": [ - { - "pos": "SP", - "F": "\t" - } - ], - "Mich.": [ - { - "F": "Mich." - } - ], - "Itll": [ - { - "L": "-PRON-", - "F": "It" - }, - { - "F": "ll", - "L": "will", - "pos": "MD" - } - ], - "didn't": [ - { - "F": "did", - "L": "do", - "pos": "VBD" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "3pm": [ - { - "F": "3" - }, - { - "L": "p.m.", - "F": "pm" - } - ], - "Jul.": [ - { - "F": "Jul." - } - ], - "7pm": [ - { - "F": "7" - }, - { - "L": "p.m.", - "F": "pm" - } - ], - "cant": [ - { - "F": "ca", - "L": "can", - "pos": "MD" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "Miss.": [ - { - "F": "Miss." - } - ], - "im": [ - { - "L": "-PRON-", - "F": "i" - }, - { - "pos": "VBP", - "F": "m", - "tenspect": 1, - "number": 1, - "L": "be" - } - ], - "Ariz.": [ - { - "F": "Ariz." - } - ], - "they'd've": [ - { - "L": "-PRON-", - "F": "they" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "f.": [ - { - "F": "f." - } - ], - "Co.": [ - { - "F": "Co." - } - ], - "Hadntve": [ - { - "F": "Had", - "L": "have", - "pos": "VBD" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "Weve": [ - { - "F": "We" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "1a.m.": [ - { - "F": "1" - }, - { - "F": "a.m." - } - ], - "=3": [ - { - "F": "=3" - } - ], - "Mightnt": [ - { - "F": "Might" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "1pm": [ - { - "F": "1" - }, - { - "L": "p.m.", - "F": "pm" - } - ], - "youdve": [ - { - "L": "-PRON-", - "F": "you" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "Shedve": [ - { - "L": "-PRON-", - "F": "She" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "theyd": [ - { - "L": "-PRON-", - "F": "they" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - } - ], - "Ill.": [ - { - "F": "Ill." - } - ], - "N.D.": [ - { - "F": "N.D." - } - ], - "Cannot": [ - { - "F": "Can", - "L": "can", - "pos": "MD" - }, - { - "F": "not", - "L": "not", - "pos": "RB" - } - ], - "s.": [ - { - "F": "s." - } - ], - "Hadn't": [ - { - "F": "Had", - "L": "have", - "pos": "VBD" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "What're": [ - { - "F": "What" - }, - { - "F": "'re" - } - ], - "He'll": [ - { - "L": "-PRON-", - "F": "He" - }, - { - "F": "'ll", - "L": "will", - "pos": "MD" - } - ], - "wholl": [ - { - "F": "who" - }, - { - "F": "ll", - "L": "will", - "pos": "MD" - } - ], - "They're": [ - { - "L": "-PRON-", - "F": "They" - }, - { - "F": "'re" - } - ], - "Neb.": [ - { - "F": "Neb." - } - ], - "shouldnt": [ - { - "F": "should" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "\n": [ - { - "pos": "SP", - "F": "\n" - } - ], - "whered": [ - { - "F": "where" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - } - ], - "7a.m.": [ - { - "F": "7" - }, - { - "F": "a.m." - } - ], - "youve": [ - { - "L": "-PRON-", - "F": "you" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "4am": [ - { - "F": "4" - }, - { - "L": "a.m.", - "F": "am" - } - ], - "v.": [ - { - "F": "v." - } - ], - "notve": [ - { - "F": "not", - "L": "not", - "pos": "RB" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "couldve": [ - { - "pos": "MD", - "F": "could" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "mustve": [ - { - "F": "must" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "Youve": [ - { - "L": "-PRON-", - "F": "You" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "therell": [ - { - "F": "there" - }, - { - "F": "ll", - "L": "will", - "pos": "MD" - } - ], - "might've": [ - { - "F": "might" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "Mustn't": [ - { - "F": "Must" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "wheres": [ - { - "F": "where" - }, - { - "F": "s" - } - ], - "they're": [ - { - "L": "-PRON-", - "F": "they" - }, - { - "F": "'re" - } - ], - "idve": [ - { - "L": "-PRON-", - "F": "i" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "hows": [ - { - "F": "how" - }, - { - "F": "s" - } - ], - "Fla.": [ - { - "F": "Fla." - } - ], - "N.M.": [ - { - "F": "N.M." - } - ], - "youre": [ - { - "L": "-PRON-", - "F": "you" - }, - { - "F": "re" - } - ], - "Didn't": [ - { - "F": "Did", - "L": "do", - "pos": "VBD" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "Couldve": [ - { - "pos": "MD", - "F": "Could" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "10p.m.": [ - { - "F": "10" - }, - { - "F": "p.m." - } - ], - "Del.": [ - { - "F": "Del." - } - ], - "Oct.": [ - { - "F": "Oct." - } - ], - "Rep.": [ - { - "F": "Rep." - } - ], - "cannot": [ - { - "F": "can", - "L": "can", - "pos": "MD" - }, - { - "F": "not", - "L": "not", - "pos": "RB" - } - ], - "Im": [ - { - "L": "-PRON-", - "F": "I" - }, - { - "pos": "VBP", - "F": "m", - "tenspect": 1, - "number": 1, - "L": "be" - } - ], - "howd": [ - { - "F": "how" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - } - ], - "Okla.": [ - { - "F": "Okla." - } - ], - "Feb.": [ - { - "F": "Feb." - } - ], - "you've": [ - { - "L": "-PRON-", - "F": "you" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "You're": [ - { - "L": "-PRON-", - "F": "You" - }, - { - "F": "'re" - } - ], - "she'll": [ - { - "L": "-PRON-", - "F": "she" - }, - { - "F": "'ll", - "L": "will", - "pos": "MD" - } - ], - "Theyll": [ - { - "L": "-PRON-", - "F": "They" - }, - { - "F": "ll", - "L": "will", - "pos": "MD" - } - ], - "don't": [ - { - "L": "do", - "F": "do" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "itd": [ - { - "L": "-PRON-", - "F": "it" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - } - ], - ":-)": [ - { - "F": ":-)" - } - ], - "Hedve": [ - { - "L": "-PRON-", - "F": "He" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "isnt": [ - { - "F": "is", - "L": "be", - "pos": "VBZ" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "won't": [ - { - "F": "wo" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "We're": [ - { - "F": "We" - }, - { - "F": "'re" - } - ], - "3a.m.": [ - { - "F": "3" - }, - { - "F": "a.m." - } - ], - "^_^": [ - { - "F": "^_^" - } - ], - "\u2018S": [ - { - "L": "'s", - "F": "\u2018S" - } - ], - "9p.m.": [ - { - "F": "9" - }, - { - "F": "p.m." - } - ], - "dont": [ - { - "L": "do", - "F": "do" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "ima": [ - { - "L": "-PRON-", - "F": "i" - }, - { - "F": "ma" - } - ], - "Let's": [ - { - "F": "Let" - }, - { - "L": "us", - "F": "'s" - } - ], - "he's": [ - { - "L": "-PRON-", - "F": "he" - }, - { - "F": "'s" - } - ], - "we've": [ - { - "F": "we" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "What's": [ - { - "F": "What" - }, - { - "F": "'s" - } - ], - "Who's": [ - { - "F": "Who" - }, - { - "F": "'s" - } - ], - "-__-": [ - { - "F": "-__-" - } - ], - "hedve": [ - { - "L": "-PRON-", - "F": "he" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "he'd": [ - { - "L": "-PRON-", - "F": "he" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - } - ], - "When's": [ - { - "F": "When" - }, - { - "F": "'s" - } - ], - "Mightn't've": [ - { - "F": "Might" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "We've": [ - { - "F": "We" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "\u2018s": [ - { - "L": "'s", - "F": "\u2018s" - } - ], - "Couldntve": [ - { - "pos": "MD", - "F": "Could" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "Who'd": [ - { - "F": "Who" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - } - ], - ":-/": [ - { - "F": ":-/" - } - ], - "haven't": [ - { - "pos": "VB", - "F": "have" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "Gen.": [ - { - "F": "Gen." - } - ], - "(:": [ - { - "F": "(:" - } - ], - "arent": [ - { - "F": "are", - "pos": "VBP", - "number": 2, - "L": "be" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "You'd've": [ - { - "L": "-PRON-", - "F": "You" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "c.": [ - { - "F": "c." - } - ], - "(=": [ - { - "F": "(=" - } - ], - "Wouldn't": [ - { - "F": "Would" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "who's": [ - { - "F": "who" - }, - { - "F": "'s" - } - ], - "12p.m.": [ - { - "F": "12" - }, - { - "F": "p.m." - } - ], - "5am": [ - { - "F": "5" - }, - { - "L": "a.m.", - "F": "am" - } - ], - "Mightve": [ - { - "F": "Might" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "Theredve": [ - { - "F": "There" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "theredve": [ - { - "F": "there" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "Messrs.": [ - { - "F": "Messrs." - } - ], - "who'd": [ - { - "F": "who" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - } - ], - "Where's": [ - { - "F": "Where" - }, - { - "F": "'s" - } - ], - "wont": [ - { - "F": "wo" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "she'd've": [ - { - "L": "-PRON-", - "F": "she" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "10pm": [ - { - "F": "10" - }, - { - "L": "p.m.", - "F": "pm" - } - ], - "Corp.": [ - { - "F": "Corp." - } - ], - "Aug.": [ - { - "F": "Aug." - } - ], - "-_-": [ - { - "F": "-_-" - } - ], - "y.": [ - { - "F": "y." - } - ], - "Should've": [ - { - "F": "Should" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "11pm": [ - { - "F": "11" - }, - { - "L": "p.m.", - "F": "pm" - } - ], - "8am": [ - { - "F": "8" - }, - { - "L": "a.m.", - "F": "am" - } - ], - "theyre": [ - { - "L": "-PRON-", - "F": "they" - }, - { - "F": "re" - } - ], - "l.": [ - { - "F": "l." - } - ], - "Wouldntve": [ - { - "F": "Would" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "Ga.": [ - { - "F": "Ga." - } - ], - "1am": [ - { - "F": "1" - }, - { - "L": "a.m.", - "F": "am" - } - ], - "Where've": [ - { - "F": "Where" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "11a.m.": [ - { - "F": "11" - }, - { - "F": "a.m." - } - ], - "mustn't": [ - { - "F": "must" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "isn't": [ - { - "F": "is", - "L": "be", - "pos": "VBZ" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "Bros.": [ - { - "F": "Bros." - } - ], - "Aint": [ - { - "F": "Ai", - "pos": "VBP", - "number": 2, - "L": "be" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "why's": [ - { - "F": "why" - }, - { - "F": "'s" - } - ], - "V_V": [ - { - "F": "V_V" - } - ], - ";p": [ - { - "F": ";p" - } - ], - "There'd": [ - { - "F": "There" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - } - ], - "They'll": [ - { - "L": "-PRON-", - "F": "They" - }, - { - "F": "'ll", - "L": "will", - "pos": "MD" - } - ], - "b.": [ - { - "F": "b." - } - ], - "how'll": [ - { - "F": "how" - }, - { - "F": "'ll", - "L": "will", - "pos": "MD" - } - ], - "Wedve": [ - { - "F": "We" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "couldntve": [ - { - "pos": "MD", - "F": "could" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "12pm": [ - { - "F": "12" - }, - { - "L": "p.m.", - "F": "pm" - } - ], - "There's": [ - { - "F": "There" - }, - { - "F": "'s" - } - ], - "we'd": [ - { - "F": "we" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - } - ], - "Dr.": [ - { - "F": "Dr." - } - ], - "Whod": [ - { - "F": "Who" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - } - ], - ":-P": [ - { - "F": ":-P" - } - ], - "whatve": [ - { - "F": "what" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "Wouldve": [ - { - "F": "Would" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "o.": [ - { - "F": "o." - } - ], - "there'll": [ - { - "F": "there" - }, - { - "F": "'ll", - "L": "will", - "pos": "MD" - } - ], - ":]": [ - { - "F": ":]" - } - ], - "needn't": [ - { - "F": "need" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "shouldntve": [ - { - "F": "should" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "why're": [ - { - "F": "why" - }, - { - "F": "'re" - } - ], - "p.m.": [ - { - "F": "p.m." - } - ], - "Doesnt": [ - { - "F": "Does", - "L": "do", - "pos": "VBZ" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "whereve": [ - { - "F": "where" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "they'll": [ - { - "L": "-PRON-", - "F": "they" - }, - { - "F": "'ll", - "L": "will", - "pos": "MD" - } - ], - "I'd": [ - { - "L": "-PRON-", - "F": "I" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - } - ], - "Might've": [ - { - "F": "Might" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "mightnt": [ - { - "F": "might" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "Kans.": [ - { - "F": "Kans." - } - ], - "Not've": [ - { - "F": "Not", - "L": "not", - "pos": "RB" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "e.": [ - { - "F": "e." - } - ], - "mightn't": [ - { - "F": "might" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "you're": [ - { - "L": "-PRON-", - "F": "you" - }, - { - "F": "'re" - } - ], - "Mar.": [ - { - "F": "Mar." - } - ], - "They've": [ - { - "L": "-PRON-", - "F": "They" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "\")": [ - { - "F": "\")" - } - ], - "what'll": [ - { - "F": "what" - }, - { - "F": "'ll", - "L": "will", - "pos": "MD" - } - ], - "Calif.": [ - { - "F": "Calif." - } - ], - "Could've": [ - { - "pos": "MD", - "F": "Could" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "Would've": [ - { - "F": "Would" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - ";)": [ - { - "F": ";)" - } - ], - ";(": [ - { - "F": ";(" - } - ], - "Isn't": [ - { - "F": "Is", - "L": "be", - "pos": "VBZ" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "let's": [ - { - "F": "let" - }, - { - "L": "us", - "F": "'s" - } - ], - "'em": [ - { - "F": "'em" - } - ], - "She'll": [ - { - "L": "-PRON-", - "F": "She" - }, - { - "F": "'ll", - "L": "will", - "pos": "MD" - } - ], - "I.E.": [ - { - "F": "I.E." - } - ], - "You'd": [ - { - "L": "-PRON-", - "F": "You" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - } - ], - "wouldnt": [ - { - "F": "would" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "6am": [ - { - "F": "6" - }, - { - "L": "a.m.", - "F": "am" - } - ], - ":P": [ - { - "F": ":P" - } - ], - "Why'll": [ - { - "F": "Why" - }, - { - "F": "'ll", - "L": "will", - "pos": "MD" - } - ], - "Where'd": [ - { - "F": "Where" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - } - ], - "Theyre": [ - { - "L": "-PRON-", - "F": "They" - }, - { - "F": "re" - } - ], - "11p.m.": [ - { - "F": "11" - }, - { - "F": "p.m." - } - ], - "Won't": [ - { - "F": "Wo" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "Couldn't": [ - { - "pos": "MD", - "F": "Could" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "it's": [ - { - "L": "-PRON-", - "F": "it" - }, - { - "F": "'s" - } - ], - "r.": [ - { - "F": "r." - } - ], - "it'll": [ - { - "L": "-PRON-", - "F": "it" - }, - { - "F": "'ll", - "L": "will", - "pos": "MD" - } - ], - "They'd've": [ - { - "L": "-PRON-", - "F": "They" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "Ima": [ - { - "L": "-PRON-", - "F": "I" - }, - { - "F": "ma" - } - ], - "5pm": [ - { - "F": "5" - }, - { - "L": "p.m.", - "F": "pm" - } - ], - "10am": [ - { - "F": "10" - }, - { - "L": "a.m.", - "F": "am" - } - ], - "m.": [ - { - "F": "m." - } - ], - "whats": [ - { - "F": "what" - }, - { - "F": "s" - } - ], - "How's": [ - { - "F": "How" - }, - { - "F": "'s" - } - ], - "Sep.": [ - { - "F": "Sep." - } - ], - "Shouldntve": [ - { - "F": "Should" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "youd": [ - { - "L": "-PRON-", - "F": "you" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - } - ], - "Whatll": [ - { - "F": "What" - }, - { - "F": "ll", - "L": "will", - "pos": "MD" - } - ], - "Wouldn't've": [ - { - "F": "Would" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "How'd": [ - { - "F": "How" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - } - ], - "doesnt": [ - { - "F": "does", - "L": "do", - "pos": "VBZ" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "h.": [ - { - "F": "h." - } - ], - "Shouldn't": [ - { - "F": "Should" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "He'd've": [ - { - "L": "-PRON-", - "F": "He" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "Mightntve": [ - { - "F": "Might" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "couldnt": [ - { - "pos": "MD", - "F": "could" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "Haven't": [ - { - "pos": "VB", - "F": "Have" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "<333": [ - { - "F": "<333" - } - ], - "doesn't": [ - { - "F": "does", - "L": "do", - "pos": "VBZ" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "Hasn't": [ - { - "F": "Has" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "how's": [ - { - "F": "how" - }, - { - "F": "'s" - } - ], - "hes": [ - { - "L": "-PRON-", - "F": "he" - }, - { - "F": "s" - } - ], - "=[[": [ - { - "F": "=[[" - } - ], - "xD": [ - { - "F": "xD" - } - ], - "he'll": [ - { - "L": "-PRON-", - "F": "he" - }, - { - "F": "'ll", - "L": "will", - "pos": "MD" - } - ], - "hed": [ - { - "L": "-PRON-", - "F": "he" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - } - ], - "7p.m.": [ - { - "F": "7" - }, - { - "F": "p.m." - } - ], - "how'd": [ - { - "F": "how" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - } - ], - "u.": [ - { - "F": "u." - } - ], - "we're": [ - { - "F": "we" - }, - { - "F": "'re" - } - ], - "vs.": [ - { - "F": "vs." - } - ], - "Hadnt": [ - { - "F": "Had", - "L": "have", - "pos": "VBD" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "Shant": [ - { - "F": "Sha" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "Theyve": [ - { - "L": "-PRON-", - "F": "They" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "Hows": [ - { - "F": "How" - }, - { - "F": "s" - } - ], - "We'll": [ - { - "F": "We" - }, - { - "F": "'ll", - "L": "will", - "pos": "MD" - } - ], - "N.Y.": [ - { - "F": "N.Y." - } - ], - "x.": [ - { - "F": "x." - } - ], - "8p.m.": [ - { - "F": "8" - }, - { - "F": "p.m." - } - ], - "i've": [ - { - "L": "-PRON-", - "F": "i" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "Whove": [ - { - "F": "Who" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "2am": [ - { - "F": "2" - }, - { - "L": "a.m.", - "F": "am" - } - ], - "La.": [ - { - "F": "La." - } - ], - "i'ma": [ - { - "L": "-PRON-", - "F": "i" - }, - { - "F": "'ma" - } - ], - "N.J.": [ - { - "F": "N.J." - } - ], - "Nebr.": [ - { - "F": "Nebr." - } - ], - "Howd": [ - { - "F": "How" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - } - ], - "hadnt": [ - { - "F": "had", - "L": "have", - "pos": "VBD" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "shant": [ - { - "F": "sha" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "There'd've": [ - { - "F": "There" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "Inc.": [ - { - "F": "Inc." - } - ], - "I'll": [ - { - "L": "-PRON-", - "F": "I" - }, - { - "F": "'ll", - "L": "will", - "pos": "MD" - } - ], - "Why's": [ - { - "F": "Why" - }, - { - "F": "'s" - } - ], - "Adm.": [ - { - "F": "Adm." - } - ], - "Shouldn't've": [ - { - "F": "Should" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "n.": [ - { - "F": "n." - } - ], - "Wasnt": [ - { - "F": "Was" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "whove": [ - { - "F": "who" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - ";-p": [ - { - "F": ";-p" - } - ], - "hasn't": [ - { - "F": "has" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "wouldntve": [ - { - "F": "would" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "Wheres": [ - { - "F": "Where" - }, - { - "F": "s" - } - ], - "How'll": [ - { - "F": "How" - }, - { - "F": "'ll", - "L": "will", - "pos": "MD" - } - ], - "there'd've": [ - { - "F": "there" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "Whos": [ - { - "F": "Who" - }, - { - "F": "s" - } - ], - "shes": [ - { - "L": "-PRON-", - "F": "she" - }, - { - "F": "s" - } - ], - "Doesn't": [ - { - "F": "Does", - "L": "do", - "pos": "VBZ" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - "Arent": [ - { - "F": "Are", - "pos": "VBP", - "number": 2, - "L": "be" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "Hasnt": [ - { - "F": "Has" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "j.": [ - { - "F": "j." - } - ], - "He's": [ - { - "L": "-PRON-", - "F": "He" - }, - { - "F": "'s" - } - ], - "wasnt": [ - { - "F": "was" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "whyll": [ - { - "F": "why" - }, - { - "F": "ll", - "L": "will", - "pos": "MD" - } - ], - "co.": [ - { - "F": "co." - } - ], - "mustnt": [ - { - "F": "must" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "He'd": [ - { - "L": "-PRON-", - "F": "He" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - } - ], - "I.e.": [ - { - "F": "I.e." - } - ], - "Shes": [ - { - "L": "-PRON-", - "F": "She" - }, - { - "F": "s" - } - ], - "where've": [ - { - "F": "where" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "Youll": [ - { - "L": "-PRON-", - "F": "You" - }, - { - "F": "ll", - "L": "will", - "pos": "MD" - } - ], - "Apr.": [ - { - "F": "Apr." - } - ], - ":')": [ - { - "F": ":')" - } - ], - "Conn.": [ - { - "F": "Conn." - } - ], - "8pm": [ - { - "F": "8" - }, - { - "L": "p.m.", - "F": "pm" - } - ], - "9am": [ - { - "F": "9" - }, - { - "L": "a.m.", - "F": "am" - } - ], - "hasnt": [ - { - "F": "has" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "theyll": [ - { - "L": "-PRON-", - "F": "they" - }, - { - "F": "ll", - "L": "will", - "pos": "MD" - } - ], - "it'd've": [ - { - "L": "-PRON-", - "F": "it" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "itdve": [ - { - "L": "-PRON-", - "F": "it" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "Jr.": [ - { - "F": "Jr." - } - ], - "Rev.": [ - { - "F": "Rev." - } - ], - "k.": [ - { - "F": "k." - } - ], - "wedve": [ - { - "F": "we" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "=)": [ - { - "F": "=)" - } - ], - "Colo.": [ - { - "F": "Colo." - } - ], - "Mr.": [ - { - "F": "Mr." - } - ], - "Werent": [ - { - "F": "Were" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "Therell": [ - { - "F": "There" - }, - { - "F": "ll", - "L": "will", - "pos": "MD" - } - ], - "shan't": [ - { - "F": "sha" - }, - { - "F": "n't", - "L": "not", - "pos": "RB" - } - ], - ";-)": [ - { - "F": ";-)" - } - ], - "Wont": [ - { - "F": "Wo" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "hadntve": [ - { - "F": "had", - "L": "have", - "pos": "VBD" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "who've": [ - { - "F": "who" - }, - { - "F": "'ve", - "L": "have", - "pos": "VB" - } - ], - "Whatre": [ - { - "F": "What" - }, - { - "F": "re" - } - ], - "'s": [ - { - "L": "'s", - "F": "'s" - } - ], - "where'd": [ - { - "F": "where" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - } - ], - "shouldve": [ - { - "F": "should" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "a.": [ - { - "F": "a." - } - ], - "where's": [ - { - "F": "where" - }, - { - "F": "'s" - } - ], - "Ltd.": [ - { - "F": "Ltd." - } - ], - "Mass.": [ - { - "F": "Mass." - } - ], - "neednt": [ - { - "F": "need" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "Pa.": [ - { - "F": "Pa." - } - ], - "It'll": [ - { - "L": "-PRON-", - "F": "It" - }, - { - "F": "'ll", - "L": "will", - "pos": "MD" - } - ], - "7am": [ - { - "F": "7" - }, - { - "L": "a.m.", - "F": "am" - } - ], - "We'd": [ - { - "F": "We" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - } - ], - "Whats": [ - { - "F": "What" - }, - { - "F": "s" - } - ], - "\u2014": [ - { - "pos": ":", - "L": "--", - "F": "\u2014" - } - ], - "E.g.": [ - { - "F": "E.g." - } - ], - "Ms.": [ - { - "F": "Ms." - } - ], - ":3": [ - { - "F": ":3" - } - ], - "5p.m.": [ - { - "F": "5" - }, - { - "F": "p.m." - } - ], - "Itd": [ - { - "L": "-PRON-", - "F": "It" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - } - ], - "May.": [ - { - "F": "May." - } - ], - "she'd": [ - { - "L": "-PRON-", - "F": "she" - }, - { - "F": "'d", - "L": "would", - "pos": "MD" - } - ], - "Mustnt": [ - { - "F": "Must" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "Notve": [ - { - "F": "Not", - "L": "not", - "pos": "RB" - }, - { - "F": "ve", - "L": "have", - "pos": "VB" - } - ], - "you'll": [ - { - "L": "-PRON-", - "F": "you" - }, - { - "F": "'ll", - "L": "will", - "pos": "MD" - } - ], - "Theyd": [ - { - "L": "-PRON-", - "F": "They" - }, - { - "F": "d", - "L": "would", - "pos": "MD" - } - ], - "she's": [ - { - "L": "-PRON-", - "F": "she" - }, - { - "F": "'s" - } - ], - "Couldnt": [ - { - "pos": "MD", - "F": "Could" - }, - { - "F": "nt", - "L": "not", - "pos": "RB" - } - ], - "that's": [ - { - "F": "that" - }, - { - "F": "'s" - } - ], - "4pm": [ - { - "F": "4" - }, - { - "L": "p.m.", - "F": "pm" - } - ], - ":))": [ - { - "F": ":))" - } - ] -}