diff --git a/Gruntfile.js b/Gruntfile.js index 65818b69c..83b74c2c5 100755 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -18,7 +18,7 @@ module.exports = function(grunt) { './src/parents/value/date_extractor.js', './src/parents/value/index.js', //nouns - './src/parents/noun/indefinite_article/indefinite_article.js', + './src/parents/noun/indefinite_article.js', './src/parents/noun/conjugate/inflect.js', './src/parents/noun/index.js', //adverbs diff --git a/client_side/nlp.js b/client_side/nlp.js index 9779b15c7..0dff8ff93 100644 --- a/client_side/nlp.js +++ b/client_side/nlp.js @@ -1,4 +1,4 @@ -/*! nlp_compromise 0.3.8 by @spencermountain 2015-04-14 MIT */ +/*! nlp_compromise 0.3.9 by @spencermountain 2015-04-14 MIT */ var nlp = (function() { //chop text into respective sentences. Ignore periods used in acronyms/abbreviations/numbers, etc. var sentence_parser = function(text) { @@ -3656,82 +3656,82 @@ if (typeof module !== "undefined" && module.exports) { //chooses an indefinite aricle 'a/an' for a word var indefinite_article = (function() { - var main = function(str) { - if (!str) { - return null - } - var irregulars = { - "hour": "an", - "heir": "an", - "heirloom": "an", - "honest": "an", - "honour": "an", - "honor": "an", - "uber": "an" //german u - } - - var is_acronym = function(s) { - //no periods - if (s.length <= 5 && s.match(/^[A-Z]*$/)) { - return true - } - //with periods - if (s.length >= 4 && s.match(/^([A-Z]\.)*$/)) { - return true - } - return false - } - - //pronounced letters of acronyms that get a 'an' - var an_acronyms = { - A: true, - E: true, - F: true, - H: true, - I: true, - L: true, - M: true, - N: true, - O: true, - R: true, - S: true, - X: true - } - - //'a' regexes - var a_regexs = [ - /^onc?e/i, //'wu' sound of 'o' - /^u[bcfhjkqrstn][aeiou]/i, // 'yu' sound for hard 'u' - /^eul/i - ]; - - //begin business time - //////////////////// - //explicit irregular forms - if (irregulars[str]) { - return irregulars[str] - } - //spelled-out acronyms - if (is_acronym(str) && an_acronyms[str.substr(0, 1)]) { - return "an" - } - //'a' regexes - for (var i = 0; i < a_regexs.length; i++) { - if (str.match(a_regexs[i])) { - return "a" - } - } - //basic vowel-startings - if (str.match(/^[aeiou]/i)) { - return "an" - } - return "a" - } - - if (typeof module !== "undefined" && module.exports) { - module.exports = main; - } - return main; + var main = function(str) { + if (!str) { + return null + } + var irregulars = { + "hour": "an", + "heir": "an", + "heirloom": "an", + "honest": "an", + "honour": "an", + "honor": "an", + "uber": "an" //german u + } + + var is_acronym = function(s) { + //no periods + if (s.length <= 5 && s.match(/^[A-Z]*$/)) { + return true + } + //with periods + if (s.length >= 4 && s.match(/^([A-Z]\.)*$/)) { + return true + } + return false + } + + //pronounced letters of acronyms that get a 'an' + var an_acronyms = { + A: true, + E: true, + F: true, + H: true, + I: true, + L: true, + M: true, + N: true, + O: true, + R: true, + S: true, + X: true + } + + //'a' regexes + var a_regexs = [ + /^onc?e/i, //'wu' sound of 'o' + /^u[bcfhjkqrstn][aeiou]/i, // 'yu' sound for hard 'u' + /^eul/i + ]; + + //begin business time + //////////////////// + //explicit irregular forms + if (irregulars[str]) { + return irregulars[str] + } + //spelled-out acronyms + if (is_acronym(str) && an_acronyms[str.substr(0, 1)]) { + return "an" + } + //'a' regexes + for (var i = 0; i < a_regexs.length; i++) { + if (str.match(a_regexs[i])) { + return "a" + } + } + //basic vowel-startings + if (str.match(/^[aeiou]/i)) { + return "an" + } + return "a" + } + + if (typeof module !== "undefined" && module.exports) { + module.exports = main; + } + return main; })(); // console.log(indefinite_article("wolf") === "a") @@ -3742,505 +3742,505 @@ var indefinite_article = (function() { var inflect = (function() { - var titlecase=function(str){ - if(!str){return ''} - return str.charAt(0).toUpperCase() + str.slice(1) - } - var irregulars = [ - ['child', 'children'], - ['person', 'people'], - ['leaf', 'leaves'], - ['database', 'databases'], - ['quiz', 'quizzes'], - ['child', 'children'], - ['stomach', 'stomachs'], - ['sex', 'sexes'], - ['move', 'moves'], - ['shoe', 'shoes'], - ["goose", "geese"], - ["phenomenon", "phenomena"], - ['barracks', 'barracks'], - ['deer', 'deer'], - ['syllabus', 'syllabi'], - ['index', 'indices'], - ['appendix', 'appendices'], - ['criterion', 'criteria'], - ['i', 'we'], - ['person', 'people'], - ['man', 'men'], - ['move', 'moves'], - ['she', 'they'], - ['he', 'they'], - ['myself', 'ourselves'], - ['yourself', 'yourselves'], - ['himself', 'themselves'], - ['herself', 'themselves'], - ['themself', 'themselves'], - ['mine', 'ours'], - ['hers', 'theirs'], - ['his', 'theirs'], - ['its', 'theirs'], - ['theirs', 'theirs'], - ['sex', 'sexes'], - ['photo', 'photos'], - ['video', 'videos'], - ['narrative', 'narratives'], - ['rodeo', 'rodeos'], - ['gas', 'gases'], - ['epoch', 'epochs'], - ['zero', 'zeros'], - ['avocado', 'avocados'], - ['halo', 'halos'], - ['tornado', 'tornados'], - ['tuxedo', 'tuxedos'], - ['sombrero', 'sombreros'] + var titlecase = function(str) { + if (!str) { + return '' + } + return str.charAt(0).toUpperCase() + str.slice(1) + } + var irregulars = [ + ['child', 'children'], + ['person', 'people'], + ['leaf', 'leaves'], + ['database', 'databases'], + ['quiz', 'quizzes'], + ['child', 'children'], + ['stomach', 'stomachs'], + ['sex', 'sexes'], + ['move', 'moves'], + ['shoe', 'shoes'], + ["goose", "geese"], + ["phenomenon", "phenomena"], + ['barracks', 'barracks'], + ['deer', 'deer'], + ['syllabus', 'syllabi'], + ['index', 'indices'], + ['appendix', 'appendices'], + ['criterion', 'criteria'], + ['i', 'we'], + ['person', 'people'], + ['man', 'men'], + ['move', 'moves'], + ['she', 'they'], + ['he', 'they'], + ['myself', 'ourselves'], + ['yourself', 'yourselves'], + ['himself', 'themselves'], + ['herself', 'themselves'], + ['themself', 'themselves'], + ['mine', 'ours'], + ['hers', 'theirs'], + ['his', 'theirs'], + ['its', 'theirs'], + ['theirs', 'theirs'], + ['sex', 'sexes'], + ['photo', 'photos'], + ['video', 'videos'], + ['narrative', 'narratives'], + ['rodeo', 'rodeos'], + ['gas', 'gases'], + ['epoch', 'epochs'], + ['zero', 'zeros'], + ['avocado', 'avocados'], + ['halo', 'halos'], + ['tornado', 'tornados'], + ['tuxedo', 'tuxedos'], + ['sombrero', 'sombreros'] ] //words that shouldn't ever inflect, for metaphysical reasons - var uncountables = { - "aircraft": 1, - "bass": 1, - "bison": 1, - "fowl": 1, - "halibut": 1, - "moose": 1, - "salmon": 1, - "spacecraft": 1, - "tuna": 1, - "trout": 1, - "advice": 1, - "help": 1, - "information": 1, - "knowledge": 1, - "trouble": 1, - "work": 1, - "enjoyment": 1, - "fun": 1, - "recreation": 1, - "relaxation": 1, - "meat": 1, - "rice": 1, - "bread": 1, - "cake": 1, - "coffee": 1, - "ice": 1, - "water": 1, - "oil": 1, - "grass": 1, - "hair": 1, - "fruit": 1, - "wildlife": 1, - "equipment": 1, - "machinery": 1, - "furniture": 1, - "mail": 1, - "luggage": 1, - "jewelry": 1, - "clothing": 1, - "money": 1, - "mathematics": 1, - "economics": 1, - "physics": 1, - "civics": 1, - "ethics": 1, - "gymnastics": 1, - "mumps": 1, - "measles": 1, - "news": 1, - "tennis": 1, - "baggage": 1, - "currency": 1, - "travel": 1, - "soap": 1, - "toothpaste": 1, - "food": 1, - "sugar": 1, - "butter": 1, - "flour": 1, - "progress": 1, - "research": 1, - "leather": 1, - "wool": 1, - "wood": 1, - "coal": 1, - "weather": 1, - "homework": 1, - "cotton": 1, - "silk": 1, - "patience": 1, - "impatience": 1, - "talent": 1, - "energy": 1, - "experience": 1, - "vinegar": 1, - "polish": 1, - "air": 1, - "alcohol": 1, - "anger": 1, - "art": 1, - "beef": 1, - "blood": 1, - "cash": 1, - "chaos": 1, - "cheese": 1, - "chewing": 1, - "conduct": 1, - "confusion": 1, - "courage": 1, - "damage": 1, - "education": 1, - "electricity": 1, - "entertainment": 1, - "fiction": 1, - "forgiveness": 1, - "gold": 1, - "gossip": 1, - "ground": 1, - "happiness": 1, - "history": 1, - "honey": 1, - "hope": 1, - "hospitality": 1, - "importance": 1, - "jam": 1, - "justice": 1, - "laughter": 1, - "leisure": 1, - "lightning": 1, - "literature": 1, - "love": 1, - "luck": 1, - "melancholy": 1, - "milk": 1, - "mist": 1, - "music": 1, - "noise": 1, - "oxygen": 1, - "paper": 1, - "pay": 1, - "peace": 1, - "peanut": 1, - "pepper": 1, - "petrol": 1, - "plastic": 1, - "pork": 1, - "power": 1, - "pressure": 1, - "rain": 1, - "recognition": 1, - "sadness": 1, - "safety": 1, - "salt": 1, - "sand": 1, - "scenery": 1, - "shopping": 1, - "silver": 1, - "snow": 1, - "softness": 1, - "space": 1, - "speed": 1, - "steam": 1, - "sunshine": 1, - "tea": 1, - "thunder": 1, - "time": 1, - "traffic": 1, - "trousers": 1, - "violence": 1, - "warmth": 1, - "washing": 1, - "wind": 1, - "wine": 1, - "steel": 1, - "soccer": 1, - "hockey": 1, - "golf": 1, - "fish": 1, - "gum": 1, - "liquid": 1, - "series": 1, - "sheep": 1, - "species": 1, - "fahrenheit": 1, - "celcius": 1, - "kelvin": 1, - "hertz": 1 - } - - var pluralize_rules = [{ - reg: /(ax|test)is$/i, - repl: '$1es' - }, { - reg: /(octop|vir|radi|nucle|fung|cact|stimul)us$/i, - repl: '$1i' - }, { - reg: /(octop|vir)i$/i, - repl: '$1i' - }, { - reg: /([rl])f$/i, - repl: '$1ves' - }, { - reg: /(alias|status)$/i, - repl: '$1es' - }, { - reg: /(bu)s$/i, - repl: '$1ses' - }, { - reg: /(al|ad|at|er|et|ed|ad)o$/i, - repl: '$1oes' - }, { - reg: /([ti])um$/i, - repl: '$1a' - }, { - reg: /([ti])a$/i, - repl: '$1a' - }, { - reg: /sis$/i, - repl: 'ses' - }, { - reg: /(?:([^f])fe|([lr])f)$/i, - repl: '$1ves' - }, { - reg: /(hive)$/i, - repl: '$1s' - }, { - reg: /([^aeiouy]|qu)y$/i, - repl: '$1ies' - }, { - reg: /(x|ch|ss|sh|s|z)$/i, - repl: '$1es' - }, { - reg: /(matr|vert|ind|cort)(ix|ex)$/i, - repl: '$1ices' - }, { - reg: /([m|l])ouse$/i, - repl: '$1ice' - }, { - reg: /([m|l])ice$/i, - repl: '$1ice' - }, { - reg: /^(ox)$/i, - repl: '$1en' - }, { - reg: /^(oxen)$/i, - repl: '$1' - }, { - reg: /(quiz)$/i, - repl: '$1zes' - }, { - reg: /(antenn|formul|nebul|vertebr|vit)a$/i, - repl: '$1ae' - }, { - reg: /(sis)$/i, - repl: 'ses' - }, { - reg: /^(?!talis|.*hu)(.*)man$/i, - repl: '$1men' + var uncountables = { + "aircraft": 1, + "bass": 1, + "bison": 1, + "fowl": 1, + "halibut": 1, + "moose": 1, + "salmon": 1, + "spacecraft": 1, + "tuna": 1, + "trout": 1, + "advice": 1, + "help": 1, + "information": 1, + "knowledge": 1, + "trouble": 1, + "work": 1, + "enjoyment": 1, + "fun": 1, + "recreation": 1, + "relaxation": 1, + "meat": 1, + "rice": 1, + "bread": 1, + "cake": 1, + "coffee": 1, + "ice": 1, + "water": 1, + "oil": 1, + "grass": 1, + "hair": 1, + "fruit": 1, + "wildlife": 1, + "equipment": 1, + "machinery": 1, + "furniture": 1, + "mail": 1, + "luggage": 1, + "jewelry": 1, + "clothing": 1, + "money": 1, + "mathematics": 1, + "economics": 1, + "physics": 1, + "civics": 1, + "ethics": 1, + "gymnastics": 1, + "mumps": 1, + "measles": 1, + "news": 1, + "tennis": 1, + "baggage": 1, + "currency": 1, + "travel": 1, + "soap": 1, + "toothpaste": 1, + "food": 1, + "sugar": 1, + "butter": 1, + "flour": 1, + "progress": 1, + "research": 1, + "leather": 1, + "wool": 1, + "wood": 1, + "coal": 1, + "weather": 1, + "homework": 1, + "cotton": 1, + "silk": 1, + "patience": 1, + "impatience": 1, + "talent": 1, + "energy": 1, + "experience": 1, + "vinegar": 1, + "polish": 1, + "air": 1, + "alcohol": 1, + "anger": 1, + "art": 1, + "beef": 1, + "blood": 1, + "cash": 1, + "chaos": 1, + "cheese": 1, + "chewing": 1, + "conduct": 1, + "confusion": 1, + "courage": 1, + "damage": 1, + "education": 1, + "electricity": 1, + "entertainment": 1, + "fiction": 1, + "forgiveness": 1, + "gold": 1, + "gossip": 1, + "ground": 1, + "happiness": 1, + "history": 1, + "honey": 1, + "hope": 1, + "hospitality": 1, + "importance": 1, + "jam": 1, + "justice": 1, + "laughter": 1, + "leisure": 1, + "lightning": 1, + "literature": 1, + "love": 1, + "luck": 1, + "melancholy": 1, + "milk": 1, + "mist": 1, + "music": 1, + "noise": 1, + "oxygen": 1, + "paper": 1, + "pay": 1, + "peace": 1, + "peanut": 1, + "pepper": 1, + "petrol": 1, + "plastic": 1, + "pork": 1, + "power": 1, + "pressure": 1, + "rain": 1, + "recognition": 1, + "sadness": 1, + "safety": 1, + "salt": 1, + "sand": 1, + "scenery": 1, + "shopping": 1, + "silver": 1, + "snow": 1, + "softness": 1, + "space": 1, + "speed": 1, + "steam": 1, + "sunshine": 1, + "tea": 1, + "thunder": 1, + "time": 1, + "traffic": 1, + "trousers": 1, + "violence": 1, + "warmth": 1, + "washing": 1, + "wind": 1, + "wine": 1, + "steel": 1, + "soccer": 1, + "hockey": 1, + "golf": 1, + "fish": 1, + "gum": 1, + "liquid": 1, + "series": 1, + "sheep": 1, + "species": 1, + "fahrenheit": 1, + "celcius": 1, + "kelvin": 1, + "hertz": 1 + } + + var pluralize_rules = [{ + reg: /(ax|test)is$/i, + repl: '$1es' + }, { + reg: /(octop|vir|radi|nucle|fung|cact|stimul)us$/i, + repl: '$1i' + }, { + reg: /(octop|vir)i$/i, + repl: '$1i' + }, { + reg: /([rl])f$/i, + repl: '$1ves' + }, { + reg: /(alias|status)$/i, + repl: '$1es' + }, { + reg: /(bu)s$/i, + repl: '$1ses' + }, { + reg: /(al|ad|at|er|et|ed|ad)o$/i, + repl: '$1oes' + }, { + reg: /([ti])um$/i, + repl: '$1a' + }, { + reg: /([ti])a$/i, + repl: '$1a' + }, { + reg: /sis$/i, + repl: 'ses' + }, { + reg: /(?:([^f])fe|([lr])f)$/i, + repl: '$1ves' + }, { + reg: /(hive)$/i, + repl: '$1s' + }, { + reg: /([^aeiouy]|qu)y$/i, + repl: '$1ies' + }, { + reg: /(x|ch|ss|sh|s|z)$/i, + repl: '$1es' + }, { + reg: /(matr|vert|ind|cort)(ix|ex)$/i, + repl: '$1ices' + }, { + reg: /([m|l])ouse$/i, + repl: '$1ice' + }, { + reg: /([m|l])ice$/i, + repl: '$1ice' + }, { + reg: /^(ox)$/i, + repl: '$1en' + }, { + reg: /^(oxen)$/i, + repl: '$1' + }, { + reg: /(quiz)$/i, + repl: '$1zes' + }, { + reg: /(antenn|formul|nebul|vertebr|vit)a$/i, + repl: '$1ae' + }, { + reg: /(sis)$/i, + repl: 'ses' + }, { + reg: /^(?!talis|.*hu)(.*)man$/i, + repl: '$1men' }, - //fallback, add an s + //fallback, add an s { - reg: /(.*)/i, - repl: '$1s' + reg: /(.*)/i, + repl: '$1s' } - ] + ] - var pluralize = function(str) { - var low = str.toLowerCase() - //uncountable - if (uncountables[low]) { - return str - } - //irregular - var found = irregulars.filter(function(r) { - return r[0] === low - }) - if (found[0]) { - if (titlecase(low) === str) { //handle capitalisation properly - return titlecase(found[0][1]) - } else { - return found[0][1] - } - } - //inflect first word of preposition-phrase - if (str.match(/([a-z]*) (of|in|by|for) [a-z]/)) { - var first = (str.match(/^([a-z]*) (of|in|by|for) [a-z]/)||[])[1] - if (first) { - var better_first = pluralize(first) - return better_first + str.replace(first, '') - } - } - //regular - for (var i = 0; i < pluralize_rules.length; i++) { - if (str.match(pluralize_rules[i].reg)) { - return str.replace(pluralize_rules[i].reg, pluralize_rules[i].repl) - } - } + var pluralize = function(str) { + var low = str.toLowerCase() + //uncountable + if (uncountables[low]) { + return str + } + //irregular + var found = irregulars.filter(function(r) { + return r[0] === low + }) + if (found[0]) { + if (titlecase(low) === str) { //handle capitalisation properly + return titlecase(found[0][1]) + } else { + return found[0][1] + } } + //inflect first word of preposition-phrase + if (str.match(/([a-z]*) (of|in|by|for) [a-z]/)) { + var first = (str.match(/^([a-z]*) (of|in|by|for) [a-z]/) || [])[1] + if (first) { + var better_first = pluralize(first) + return better_first + str.replace(first, '') + } + } + //regular + for (var i = 0; i < pluralize_rules.length; i++) { + if (str.match(pluralize_rules[i].reg)) { + return str.replace(pluralize_rules[i].reg, pluralize_rules[i].repl) + } + } + } - var singularize_rules = [{ - reg: /([^v])ies$/i, - repl: '$1y' + var singularize_rules = [{ + reg: /([^v])ies$/i, + repl: '$1y' }, { - reg: /ises$/i, - repl: 'isis' + reg: /ises$/i, + repl: 'isis' }, { - reg: /ives$/i, - repl: 'ife' + reg: /ives$/i, + repl: 'ife' }, { - reg: /(antenn|formul|nebul|vertebr|vit)ae$/i, - repl: '$1a' + reg: /(antenn|formul|nebul|vertebr|vit)ae$/i, + repl: '$1a' }, { - reg: /(octop|vir|radi|nucle|fung|cact|stimul)(i)$/i, - repl: '$1us' + reg: /(octop|vir|radi|nucle|fung|cact|stimul)(i)$/i, + repl: '$1us' }, { - reg: /(buffal|tomat|tornad)(oes)$/i, - repl: '$1o' + reg: /(buffal|tomat|tornad)(oes)$/i, + repl: '$1o' }, { - reg: /((a)naly|(b)a|(d)iagno|(p)arenthe|(p)rogno|(s)ynop|(t)he)ses$/i, - repl: '$1sis' + reg: /((a)naly|(b)a|(d)iagno|(p)arenthe|(p)rogno|(s)ynop|(t)he)ses$/i, + repl: '$1sis' }, { - reg: /(vert|ind|cort)(ices)$/i, - repl: '$1ex' + reg: /(vert|ind|cort)(ices)$/i, + repl: '$1ex' }, { - reg: /(matr|append)(ices)$/i, - repl: '$1ix' + reg: /(matr|append)(ices)$/i, + repl: '$1ix' }, { - reg: /(x|ch|ss|sh|s|z|o)es$/i, - repl: '$1' + reg: /(x|ch|ss|sh|s|z|o)es$/i, + repl: '$1' }, { - reg: /men$/i, - repl: 'man' + reg: /men$/i, + repl: 'man' }, { - reg: /(n)ews$/i, - repl: '$1ews' + reg: /(n)ews$/i, + repl: '$1ews' }, { - reg: /([ti])a$/i, - repl: '$1um' + reg: /([ti])a$/i, + repl: '$1um' }, { - reg: /([^f])ves$/i, - repl: '$1fe' + reg: /([^f])ves$/i, + repl: '$1fe' }, { - reg: /([lr])ves$/i, - repl: '$1f' + reg: /([lr])ves$/i, + repl: '$1f' }, { - reg: /([^aeiouy]|qu)ies$/i, - repl: '$1y' + reg: /([^aeiouy]|qu)ies$/i, + repl: '$1y' }, { - reg: /(s)eries$/i, - repl: '$1eries' + reg: /(s)eries$/i, + repl: '$1eries' }, { - reg: /(m)ovies$/i, - repl: '$1ovie' + reg: /(m)ovies$/i, + repl: '$1ovie' }, { - reg: /([m|l])ice$/i, - repl: '$1ouse' + reg: /([m|l])ice$/i, + repl: '$1ouse' }, { - reg: /(cris|ax|test)es$/i, - repl: '$1is' + reg: /(cris|ax|test)es$/i, + repl: '$1is' }, { - reg: /(alias|status)es$/i, - repl: '$1' - },{ - reg: /(ss)$/i, - repl: '$1' + reg: /(alias|status)es$/i, + repl: '$1' }, { - reg: /(ics)$/i, - repl: "$1" + reg: /(ss)$/i, + repl: '$1' + }, { + reg: /(ics)$/i, + repl: "$1" }, //fallback, remove last s { - reg: /s$/i, - repl: '' + reg: /s$/i, + repl: '' } - ] - + ] - var singularize = function(str) { - var low = str.toLowerCase() - //uncountable - if (uncountables[low]) { - return str - } - //irregular - var found = irregulars.filter(function(r) { - return r[1] === low - }) - if (found[0]) { - if (titlecase(low) === str) { //handle capitalisation properly - return titlecase(found[0][0]) - } else { - return found[0][0] - } - } - //inflect first word of preposition-phrase - if (str.match(/([a-z]*) (of|in|by|for) [a-z]/)) { - var first = str.match(/^([a-z]*) (of|in|by|for) [a-z]/) - if (first && first[1]) { - var better_first = singularize(first[1]) - return better_first + str.replace(first[1], '') - } - } - //regular - for (var i = 0; i < singularize_rules.length; i++) { - if (str.match(singularize_rules[i].reg)) { - return str.replace(singularize_rules[i].reg, singularize_rules[i].repl) - } - } - return str + var singularize = function(str) { + var low = str.toLowerCase() + //uncountable + if (uncountables[low]) { + return str } + //irregular + var found = irregulars.filter(function(r) { + return r[1] === low + }) + if (found[0]) { + if (titlecase(low) === str) { //handle capitalisation properly + return titlecase(found[0][0]) + } else { + return found[0][0] + } + } + //inflect first word of preposition-phrase + if (str.match(/([a-z]*) (of|in|by|for) [a-z]/)) { + var first = str.match(/^([a-z]*) (of|in|by|for) [a-z]/) + if (first && first[1]) { + var better_first = singularize(first[1]) + return better_first + str.replace(first[1], '') + } + } + //regular + for (var i = 0; i < singularize_rules.length; i++) { + if (str.match(singularize_rules[i].reg)) { + return str.replace(singularize_rules[i].reg, singularize_rules[i].repl) + } + } + return str + } - - var is_plural = function(str) { - //if it's a known verb - for (var i = 0; i < irregulars.length; i++) { - if (irregulars[i][1] === str) { - return true - } - if (irregulars[i][0] === str) { - return false - } - } - //if it changes when singularized - if (singularize(str)!=str) { - return true - } - //'looks pretty plural' rules - if(str.match(/s$/) && !str.match(/ss$/) && str.length>3){//needs some lovin' - return true - } + var is_plural = function(str) { + //if it's a known verb + for (var i = 0; i < irregulars.length; i++) { + if (irregulars[i][1] === str) { + return true + } + if (irregulars[i][0] === str) { return false + } } - - var inflect = function(str) { - if(uncountables[str]){//uncountables shouldn't ever inflect - return { - plural:str, - singular:str - } - } - if (is_plural(str)) { - return { - plural: str, - singular: singularize(str) - } - } else { - return { - singular: str, - plural: pluralize(str) - } - } + //if it changes when singularized + if (singularize(str) != str) { + return true } + //'looks pretty plural' rules + if (str.match(/s$/) && !str.match(/ss$/) && str.length > 3) { //needs some lovin' + return true + } + return false + } - var methods = { - inflect: inflect, - is_plural: is_plural, - singularize: singularize, - pluralize: pluralize + var inflect = function(str) { + if (uncountables[str]) { //uncountables shouldn't ever inflect + return { + plural: str, + singular: str + } } - if (typeof module !== "undefined" && module.exports) { - module.exports = methods; + if (is_plural(str)) { + return { + plural: str, + singular: singularize(str) + } + } else { + return { + singular: str, + plural: pluralize(str) + } } - return methods; + } + + var methods = { + inflect: inflect, + is_plural: is_plural, + singularize: singularize, + pluralize: pluralize + } + if (typeof module !== "undefined" && module.exports) { + module.exports = methods; + } + return methods; })(); // console.log(inflect.pluralize('kiss')) @@ -4257,7 +4257,7 @@ var Noun = function(str, next, last, token) { if (typeof module !== "undefined" && module.exports) { parts_of_speech = require("../../data/parts_of_speech") inflect = require("./conjugate/inflect") - indefinite_article = require("./indefinite_article/indefinite_article") + indefinite_article = require("./indefinite_article") // is_entity = require("./ner/is_entity") } //personal pronouns @@ -4421,63 +4421,63 @@ if (typeof module !== "undefined" && module.exports) { //turns 'quickly' into 'quick' var to_adjective = (function() { - var main = function(str) { - var irregulars = { - "idly": "idle", - "sporadically": "sporadic", - "basically": "basic", - "grammatically": "grammatical", - "alphabetically": "alphabetical", - "economically": "economical", - "conically": "conical", - "politically": "political", - "vertically": "vertical", - "practically": "practical", - "theoretically": "theoretical", - "critically": "critical", - "fantastically": "fantastic", - "mystically": "mystical", - "pornographically": "pornographic", - "fully": "full", - "jolly": "jolly", - "wholly": "whole" - } - var transforms = [{ - reg: /bly$/i, - repl: 'ble' - }, { - reg: /gically$/i, - repl: 'gical' - }, { - reg: /([rsdh])ically$/i, - repl: '$1ical' - }, { - reg: /ically$/i, - repl: 'ic' - }, { - reg: /uly$/i, - repl: 'ue' - }, { - reg: /ily$/i, - repl: 'y' - }, { - reg: /(.{3})ly$/i, - repl: '$1' - }] - if (irregulars[str]) { - return irregulars[str] - } - for (var i = 0; i < transforms.length; i++) { - if (str.match(transforms[i].reg)) { - return str.replace(transforms[i].reg, transforms[i].repl) - } - } - return str - } - if (typeof module !== "undefined" && module.exports) { - module.exports = main; - } - return main; + var main = function(str) { + var irregulars = { + "idly": "idle", + "sporadically": "sporadic", + "basically": "basic", + "grammatically": "grammatical", + "alphabetically": "alphabetical", + "economically": "economical", + "conically": "conical", + "politically": "political", + "vertically": "vertical", + "practically": "practical", + "theoretically": "theoretical", + "critically": "critical", + "fantastically": "fantastic", + "mystically": "mystical", + "pornographically": "pornographic", + "fully": "full", + "jolly": "jolly", + "wholly": "whole" + } + var transforms = [{ + reg: /bly$/i, + repl: 'ble' + }, { + reg: /gically$/i, + repl: 'gical' + }, { + reg: /([rsdh])ically$/i, + repl: '$1ical' + }, { + reg: /ically$/i, + repl: 'ic' + }, { + reg: /uly$/i, + repl: 'ue' + }, { + reg: /ily$/i, + repl: 'y' + }, { + reg: /(.{3})ly$/i, + repl: '$1' + }] + if (irregulars[str]) { + return irregulars[str] + } + for (var i = 0; i < transforms.length; i++) { + if (str.match(transforms[i].reg)) { + return str.replace(transforms[i].reg, transforms[i].repl) + } + } + return str + } + if (typeof module !== "undefined" && module.exports) { + module.exports = main; + } + return main; })(); // console.log(to_adjective('quickly') === 'quick') @@ -5109,6 +5109,7 @@ var verb_rules = { if (typeof module !== "undefined" && module.exports) { module.exports = verb_rules; } + var verb_irregulars = (function() { var main = [{ "present": "arises", @@ -5910,52 +5911,60 @@ var verb_irregulars = (function() { "past": "fed", "gerund": "feeding", "doer": "feeder" - }, - { + }, { "infinitive": "miss", "present": "miss", "past": "missed", "gerund": "missing", "doer": "misser" - }, - { + }, { "infinitive": "act", "present": "acts", "past": "acted", "gerund": "acting", "doer": "actor" - }, - { present: 'competes', + }, { + present: 'competes', gerund: 'competing', past: 'competed', infinitive: 'compete', - doer: 'competitor' }, + doer: 'competitor' + }, - { present: 'are', + { + present: 'are', gerund: 'are', past: 'were', infinitive: 'being', - doer: '' }, + doer: '' + }, - { infinitive: 'imply', + { + infinitive: 'imply', present: 'implies', past: 'implied', gerund: 'implying', - doer: 'implier' }, + doer: 'implier' + }, - { infinitive: 'ice', + { + infinitive: 'ice', present: 'ices', past: 'iced', gerund: 'icing', - doer: 'icer' }, + doer: 'icer' + }, - { infinitive: 'throw', + { + infinitive: 'throw', present: 'throws', past: 'threw', gerund: 'throwing', - doer: 'thrower' }, + doer: 'thrower' + }, - { present: 'develops', + { + present: 'develops', gerund: 'developing', past: 'develop', infinitive: 'develop', @@ -5963,28 +5972,29 @@ var verb_irregulars = (function() { future: 'will develop' }, - { present: 'waits', + { + present: 'waits', gerund: 'waiting', past: 'waited', infinitive: 'wait', doer: 'waiter', future: 'will wait' - }, - { present: 'aims', + }, { + present: 'aims', gerund: 'aiming', past: 'aimed', infinitive: 'aim', doer: 'aimer', future: 'will aim' - }, - { present: 'spills', + }, { + present: 'spills', gerund: 'spilling', past: 'spilt', infinitive: 'spill', doer: 'spiller', future: 'will spill' - }, - { present: 'am', + }, { + present: 'am', gerund: 'am', past: 'was', infinitive: 'be', @@ -6002,65 +6012,65 @@ var verb_irregulars = (function() { //somone who does this present-tense verb //turn 'walk' into 'walker' var verb_to_doer = (function() { - var main = function(str) { - str = str || '' - var irregulars = { - "tie": "tier", - "dream": "dreamer", - "sail": "sailer", - "run": "runner", - "rub": "rubber", - "begin": "beginner", - "win": "winner", - "claim": "claimant", - "deal": "dealer", - "spin": "spinner" - } - var dont = { - "aid": 1, - "fail": 1, - "appear": 1, - "happen": 1, - "seem": 1, - "try": 1, - "say": 1, - "marry": 1, - "be": 1, - "forbid": 1, - "understand": 1 - } - var transforms = [{ - reg: /e$/i, - repl: 'er' - }, { - reg: /([aeiou])([mlgp])$/i, - repl: '$1$2$2er' - }, { - reg: /([rlf])y$/i, - repl: '$1ier' - }, { - reg: /^(.?.[aeiou])t$/i, - repl: '$1tter' - }] - - if (dont[str]) { - return null - } - if (irregulars[str]) { - return irregulars[str] - } - for (var i = 0; i < transforms.length; i++) { - if (str.match(transforms[i].reg)) { - return str.replace(transforms[i].reg, transforms[i].repl) - } - } - return str + "er" - } - - if (typeof module !== "undefined" && module.exports) { - module.exports = main; - } - return main; + var main = function(str) { + str = str || '' + var irregulars = { + "tie": "tier", + "dream": "dreamer", + "sail": "sailer", + "run": "runner", + "rub": "rubber", + "begin": "beginner", + "win": "winner", + "claim": "claimant", + "deal": "dealer", + "spin": "spinner" + } + var dont = { + "aid": 1, + "fail": 1, + "appear": 1, + "happen": 1, + "seem": 1, + "try": 1, + "say": 1, + "marry": 1, + "be": 1, + "forbid": 1, + "understand": 1 + } + var transforms = [{ + reg: /e$/i, + repl: 'er' + }, { + reg: /([aeiou])([mlgp])$/i, + repl: '$1$2$2er' + }, { + reg: /([rlf])y$/i, + repl: '$1ier' + }, { + reg: /^(.?.[aeiou])t$/i, + repl: '$1tter' + }] + + if (dont[str]) { + return null + } + if (irregulars[str]) { + return irregulars[str] + } + for (var i = 0; i < transforms.length; i++) { + if (str.match(transforms[i].reg)) { + return str.replace(transforms[i].reg, transforms[i].repl) + } + } + return str + "er" + } + + if (typeof module !== "undefined" && module.exports) { + module.exports = main; + } + return main; })(); // console.log(verb_to_doer('set')) @@ -6169,22 +6179,21 @@ var verb_conjugate = (function() { return "infinitive" } - //fallback to this transformation if it has an unknown prefix var fallback = function(w) { var infinitive; - if(w.length>4){ + if (w.length > 4) { infinitive = w.replace(/ed$/, ''); - }else{ + } else { infinitive = w.replace(/d$/, ''); } var present, past, gerund, doer; if (w.match(/[^aeiou]$/)) { gerund = w + "ing" past = w + "ed" - if(w.match(/ss$/)){ + if (w.match(/ss$/)) { present = w + "es" //'passes' - }else{ + } else { present = w + "s" } doer = verb_to_doer(infinitive) @@ -6200,7 +6209,7 @@ var verb_conjugate = (function() { past: past, gerund: gerund, doer: doer, - future: "will "+infinitive + future: "will " + infinitive } } @@ -6222,29 +6231,28 @@ var verb_conjugate = (function() { obj.past = obj.infinitive + 'ed' } //add the prefix to all forms, if it exists - if(prefix){ - Object.keys(obj).forEach(function(k){ - obj[k]= prefix+obj[k] + if (prefix) { + Object.keys(obj).forEach(function(k) { + obj[k] = prefix + obj[k] }) } //future is 'will'+infinitive - if(!obj.future){ - obj.future= "will "+obj.infinitive + if (!obj.future) { + obj.future = "will " + obj.infinitive } return obj } - var main = function(w) { if (!w) { return {} } //chop it if it's future-tense - w=w.replace(/^will /i,'') + w = w.replace(/^will /i, '') //un-prefix the verb, and add it in later - var prefix= (w.match(/^(over|under|re|anti|full)\-?/i)||[])[0] - var verb=w.replace(/^(over|under|re|anti|full)\-?/i, '') - //check irregulars + var prefix = (w.match(/^(over|under|re|anti|full)\-?/i) || [])[0] + var verb = w.replace(/^(over|under|re|anti|full)\-?/i, '') + //check irregulars var x, i; for (i = 0; i < verb_irregulars.length; i++) { x = verb_irregulars[i] @@ -6412,68 +6420,68 @@ if (typeof module !== "undefined" && module.exports) { //convert cute to cuteness var adj_to_noun = (function() { - var main = function(w) { - var irregulars = { - "clean": "cleanliness", - "naivety": "naivety" - }; - if (!w) { - return ""; - } - if (irregulars[w]) { - return irregulars[w]; - } - if (w.match(" ")) { - return w; - } - if (w.match(/w$/)) { - return w; - } - if (w.match(/y$/)) { - return w.replace(/y$/, 'iness'); - } - if (w.match(/le$/)) { - return w.replace(/le$/, 'ility'); - } - if (w.match(/ial$/)) { - return w.replace(/ial$/, 'y'); - } - if (w.match(/al$/)) { - return w.replace(/al$/, 'ality'); - } - if (w.match(/ting$/)) { - return w.replace(/ting$/, 'ting'); - } - if (w.match(/ring$/)) { - return w.replace(/ring$/, 'ring'); - } - if (w.match(/bing$/)) { - return w.replace(/bing$/, 'bingness'); - } - if (w.match(/ning$/)) { - return w.replace(/ning$/, 'ningness'); - } - if (w.match(/sing$/)) { - return w.replace(/sing$/, 'se'); - } - if (w.match(/ing$/)) { - return w.replace(/ing$/, 'ment'); - } - if (w.match(/ess$/)) { - return w.replace(/ess$/, 'essness'); - } - if (w.match(/ous$/)) { - return w.replace(/ous$/, 'ousness'); - } - if (w.match(/s$/)) { - return w; - } - return w + "ness"; + var main = function(w) { + var irregulars = { + "clean": "cleanliness", + "naivety": "naivety" }; - if (typeof module !== "undefined" && module.exports) { - module.exports = main; + if (!w) { + return ""; } - return main + if (irregulars[w]) { + return irregulars[w]; + } + if (w.match(" ")) { + return w; + } + if (w.match(/w$/)) { + return w; + } + if (w.match(/y$/)) { + return w.replace(/y$/, 'iness'); + } + if (w.match(/le$/)) { + return w.replace(/le$/, 'ility'); + } + if (w.match(/ial$/)) { + return w.replace(/ial$/, 'y'); + } + if (w.match(/al$/)) { + return w.replace(/al$/, 'ality'); + } + if (w.match(/ting$/)) { + return w.replace(/ting$/, 'ting'); + } + if (w.match(/ring$/)) { + return w.replace(/ring$/, 'ring'); + } + if (w.match(/bing$/)) { + return w.replace(/bing$/, 'bingness'); + } + if (w.match(/ning$/)) { + return w.replace(/ning$/, 'ningness'); + } + if (w.match(/sing$/)) { + return w.replace(/sing$/, 'se'); + } + if (w.match(/ing$/)) { + return w.replace(/ing$/, 'ment'); + } + if (w.match(/ess$/)) { + return w.replace(/ess$/, 'essness'); + } + if (w.match(/ous$/)) { + return w.replace(/ous$/, 'ousness'); + } + if (w.match(/s$/)) { + return w; + } + return w + "ness"; + }; + if (typeof module !== "undefined" && module.exports) { + module.exports = main; + } + return main })() // console.log(exports.adj_to_noun('mysterious')); @@ -6481,298 +6489,297 @@ var adj_to_noun = (function() { //turn 'quick' into 'quickly' var to_comparative = (function() { - var main = function(str) { - var irregulars = { - "grey": "greyer", - "gray": "grayer", - "green": "greener", - "yellow": "yellower", - "red": "redder", - "good": "better", - "well": "better", - "bad": "worse", - "sad": "sadder" - } - - var dos = { - "absurd": 1, - "aggressive": 1, - "alert": 1, - "alive": 1, - "awesome": 1, - "beautiful": 1, - "big": 1, - "bitter": 1, - "black": 1, - "blue": 1, - "bored": 1, - "boring": 1, - "brash": 1, - "brave": 1, - "brief": 1, - "bright": 1, - "broad": 1, - "brown": 1, - "calm": 1, - "charming": 1, - "cheap": 1, - "clean": 1, - "cold": 1, - "cool": 1, - "cruel": 1, - "cute": 1, - "damp": 1, - "deep": 1, - "dear": 1, - "dead": 1, - "dark": 1, - "dirty": 1, - "drunk": 1, - "dull": 1, - "eager": 1, - "efficient": 1, - "even": 1, - "faint": 1, - "fair": 1, - "fanc": 1, - "fast": 1, - "fat": 1, - "feeble": 1, - "few": 1, - "fierce ": 1, - "fine": 1, - "flat": 1, - "forgetful": 1, - "frail": 1, - "full": 1, - "gentle": 1, - "glib": 1, - "great": 1, - "green": 1, - "gruesome": 1, - "handsome": 1, - "hard": 1, - "harsh": 1, - "high": 1, - "hollow": 1, - "hot": 1, - "impolite": 1, - "innocent": 1, - "keen": 1, - "kind": 1, - "lame": 1, - "lean": 1, - "light": 1, - "little": 1, - "loose": 1, - "long": 1, - "loud": 1, - "low": 1, - "lush": 1, - "macho": 1, - "mean": 1, - "meek": 1, - "mellow": 1, - "mundane": 1, - "near": 1, - "neat": 1, - "new": 1, - "nice": 1, - "normal": 1, - "odd": 1, - "old": 1, - "pale": 1, - "pink": 1, - "plain": 1, - "poor": 1, - "proud": 1, - "purple": 1, - "quick": 1, - "rare": 1, - "rapid": 1, - "red": 1, - "rich": 1, - "ripe": 1, - "rotten": 1, - "round": 1, - "rude": 1, - "sad": 1, - "safe": 1, - "scarce": 1, - "scared": 1, - "shallow": 1, - "sharp": 1, - "short": 1, - "shrill": 1, - "simple": 1, - "slim": 1, - "slow": 1, - "small": 1, - "smart": 1, - "smooth": 1, - "soft": 1, - "sore": 1, - "sour": 1, - "square": 1, - "stale": 1, - "steep": 1, - "stiff": 1, - "straight": 1, - "strange": 1, - "strong": 1, - "sweet": 1, - "swift": 1, - "tall": 1, - "tame": 1, - "tart": 1, - "tender": 1, - "tense": 1, - "thick": 1, - "thin": 1, - "tight": 1, - "tough": 1, - "vague": 1, - "vast": 1, - "vulgar": 1, - "warm": 1, - "weak": 1, - "wet": 1, - "white": 1, - "wide": 1, - "wild": 1, - "wise": 1, - "young": 1, - "yellow": 1, - "easy": 1, - "narrow": 1, - "late": 1, - "early": 1, - "soon": 1, - "close": 1, - "empty": 1, - "dry": 1, - "windy": 1, - "noisy": 1, - "thirsty": 1, - "hungry": 1, - "fresh": 1, - "quiet": 1, - "clear": 1, - "heavy": 1, - "happy": 1, - "funny": 1, - "lucky": 1, - "pretty": 1, - "important": 1, - "interesting": 1, - "attractive": 1, - "dangerous": 1, - "intellegent": 1, - "pure": 1, - "orange": 1, - "large": 1, - "firm": 1, - "grand": 1, - "formal": 1, - "raw": 1, - "weird": 1, - "glad": 1, - "mad": 1, - "strict": 1, - "tired": 1, - "solid": 1, - "extreme": 1, - "mature": 1, - "true": 1, - "free": 1, - "curly": 1, - "angry": 1 - } - - var dont = { - "overweight": 1, - "main": 1, - "nearby": 1, - "asleep": 1, - "weekly": 1, - "secret": 1, - "certain": 1 - } - - var transforms = [{ - reg: /y$/i, - repl: 'ier' - }, { - reg: /([aeiou])t$/i, - repl: '$1tter' - }, { - reg: /([aeou])de$/i, - repl: '$1der' - }, { - reg: /nge$/i, - repl: 'nger' - } - ] - - var matches = [ - /ght$/, - /nge$/, - /ough$/, - /ain$/, - /uel$/, - /[au]ll$/, - /ow$/, - /old$/, - /oud$/, - /e[ae]p$/ - ] - - var not_matches = [ - /ary$/, - /ous$/ - ] - - if (dont[str]) { - return null - } - - if (dos[str]) { - if (str.match(/e$/)) { - return str + "r" - } else { - return str + "er" - } - } - - if (irregulars[str]) { - return irregulars[str] - } - - var i; - for (i = 0; i < not_matches.length; i++) { - if (str.match(not_matches[i])) { - return "more " + str - } - } - - for (i = 0; i < transforms.length; i++) { - if (str.match(transforms[i].reg)) { - return str.replace(transforms[i].reg, transforms[i].repl) - } - } - - for (i = 0; i < matches.length; i++) { - if (str.match(matches[i])) { - return str + "er" - } - } - return "more " + str - } - - if (typeof module !== "undefined" && module.exports) { - module.exports = main; - } - return main; + var main = function(str) { + var irregulars = { + "grey": "greyer", + "gray": "grayer", + "green": "greener", + "yellow": "yellower", + "red": "redder", + "good": "better", + "well": "better", + "bad": "worse", + "sad": "sadder" + } + + var dos = { + "absurd": 1, + "aggressive": 1, + "alert": 1, + "alive": 1, + "awesome": 1, + "beautiful": 1, + "big": 1, + "bitter": 1, + "black": 1, + "blue": 1, + "bored": 1, + "boring": 1, + "brash": 1, + "brave": 1, + "brief": 1, + "bright": 1, + "broad": 1, + "brown": 1, + "calm": 1, + "charming": 1, + "cheap": 1, + "clean": 1, + "cold": 1, + "cool": 1, + "cruel": 1, + "cute": 1, + "damp": 1, + "deep": 1, + "dear": 1, + "dead": 1, + "dark": 1, + "dirty": 1, + "drunk": 1, + "dull": 1, + "eager": 1, + "efficient": 1, + "even": 1, + "faint": 1, + "fair": 1, + "fanc": 1, + "fast": 1, + "fat": 1, + "feeble": 1, + "few": 1, + "fierce ": 1, + "fine": 1, + "flat": 1, + "forgetful": 1, + "frail": 1, + "full": 1, + "gentle": 1, + "glib": 1, + "great": 1, + "green": 1, + "gruesome": 1, + "handsome": 1, + "hard": 1, + "harsh": 1, + "high": 1, + "hollow": 1, + "hot": 1, + "impolite": 1, + "innocent": 1, + "keen": 1, + "kind": 1, + "lame": 1, + "lean": 1, + "light": 1, + "little": 1, + "loose": 1, + "long": 1, + "loud": 1, + "low": 1, + "lush": 1, + "macho": 1, + "mean": 1, + "meek": 1, + "mellow": 1, + "mundane": 1, + "near": 1, + "neat": 1, + "new": 1, + "nice": 1, + "normal": 1, + "odd": 1, + "old": 1, + "pale": 1, + "pink": 1, + "plain": 1, + "poor": 1, + "proud": 1, + "purple": 1, + "quick": 1, + "rare": 1, + "rapid": 1, + "red": 1, + "rich": 1, + "ripe": 1, + "rotten": 1, + "round": 1, + "rude": 1, + "sad": 1, + "safe": 1, + "scarce": 1, + "scared": 1, + "shallow": 1, + "sharp": 1, + "short": 1, + "shrill": 1, + "simple": 1, + "slim": 1, + "slow": 1, + "small": 1, + "smart": 1, + "smooth": 1, + "soft": 1, + "sore": 1, + "sour": 1, + "square": 1, + "stale": 1, + "steep": 1, + "stiff": 1, + "straight": 1, + "strange": 1, + "strong": 1, + "sweet": 1, + "swift": 1, + "tall": 1, + "tame": 1, + "tart": 1, + "tender": 1, + "tense": 1, + "thick": 1, + "thin": 1, + "tight": 1, + "tough": 1, + "vague": 1, + "vast": 1, + "vulgar": 1, + "warm": 1, + "weak": 1, + "wet": 1, + "white": 1, + "wide": 1, + "wild": 1, + "wise": 1, + "young": 1, + "yellow": 1, + "easy": 1, + "narrow": 1, + "late": 1, + "early": 1, + "soon": 1, + "close": 1, + "empty": 1, + "dry": 1, + "windy": 1, + "noisy": 1, + "thirsty": 1, + "hungry": 1, + "fresh": 1, + "quiet": 1, + "clear": 1, + "heavy": 1, + "happy": 1, + "funny": 1, + "lucky": 1, + "pretty": 1, + "important": 1, + "interesting": 1, + "attractive": 1, + "dangerous": 1, + "intellegent": 1, + "pure": 1, + "orange": 1, + "large": 1, + "firm": 1, + "grand": 1, + "formal": 1, + "raw": 1, + "weird": 1, + "glad": 1, + "mad": 1, + "strict": 1, + "tired": 1, + "solid": 1, + "extreme": 1, + "mature": 1, + "true": 1, + "free": 1, + "curly": 1, + "angry": 1 + } + + var dont = { + "overweight": 1, + "main": 1, + "nearby": 1, + "asleep": 1, + "weekly": 1, + "secret": 1, + "certain": 1 + } + + var transforms = [{ + reg: /y$/i, + repl: 'ier' + }, { + reg: /([aeiou])t$/i, + repl: '$1tter' + }, { + reg: /([aeou])de$/i, + repl: '$1der' + }, { + reg: /nge$/i, + repl: 'nger' + }] + + var matches = [ + /ght$/, + /nge$/, + /ough$/, + /ain$/, + /uel$/, + /[au]ll$/, + /ow$/, + /old$/, + /oud$/, + /e[ae]p$/ + ] + + var not_matches = [ + /ary$/, + /ous$/ + ] + + if (dont[str]) { + return null + } + + if (dos[str]) { + if (str.match(/e$/)) { + return str + "r" + } else { + return str + "er" + } + } + + if (irregulars[str]) { + return irregulars[str] + } + + var i; + for (i = 0; i < not_matches.length; i++) { + if (str.match(not_matches[i])) { + return "more " + str + } + } + + for (i = 0; i < transforms.length; i++) { + if (str.match(transforms[i].reg)) { + return str.replace(transforms[i].reg, transforms[i].repl) + } + } + + for (i = 0; i < matches.length; i++) { + if (str.match(matches[i])) { + return str + "er" + } + } + return "more " + str + } + + if (typeof module !== "undefined" && module.exports) { + module.exports = main; + } + return main; })(); // console.log(to_comparative('dry')) @@ -6781,294 +6788,293 @@ var to_comparative = (function() { //turn 'quick' into 'quickest' var to_superlative = (function() { - var main = function(str) { - var irregulars = { - "nice": "nicest", - "late": "latest", - "hard": "hardest", - "inner": "innermost", - "outer": "outermost", - "far": "furthest", - "worse": "worst", - "bad": "worst", - "good": "best" - } - - var dos = { - "absurd": 1, - "aggressive": 1, - "alert": 1, - "alive": 1, - "awesome": 1, - "beautiful": 1, - "big": 1, - "bitter": 1, - "black": 1, - "blue": 1, - "bored": 1, - "boring": 1, - "brash": 1, - "brave": 1, - "brief": 1, - "bright": 1, - "broad": 1, - "brown": 1, - "calm": 1, - "charming": 1, - "cheap": 1, - "clean": 1, - "cold": 1, - "cool": 1, - "cruel": 1, - "cute": 1, - "damp": 1, - "deep": 1, - "dear": 1, - "dead": 1, - "dark": 1, - "dirty": 1, - "drunk": 1, - "dull": 1, - "eager": 1, - "efficient": 1, - "even": 1, - "faint": 1, - "fair": 1, - "fanc": 1, - "fast": 1, - "fat": 1, - "feeble": 1, - "few": 1, - "fierce ": 1, - "fine": 1, - "flat": 1, - "forgetful": 1, - "frail": 1, - "full": 1, - "gentle": 1, - "glib": 1, - "great": 1, - "green": 1, - "gruesome": 1, - "handsome": 1, - "hard": 1, - "harsh": 1, - "high": 1, - "hollow": 1, - "hot": 1, - "impolite": 1, - "innocent": 1, - "keen": 1, - "kind": 1, - "lame": 1, - "lean": 1, - "light": 1, - "little": 1, - "loose": 1, - "long": 1, - "loud": 1, - "low": 1, - "lush": 1, - "macho": 1, - "mean": 1, - "meek": 1, - "mellow": 1, - "mundane": 1, - "near": 1, - "neat": 1, - "new": 1, - "nice": 1, - "normal": 1, - "odd": 1, - "old": 1, - "pale": 1, - "pink": 1, - "plain": 1, - "poor": 1, - "proud": 1, - "purple": 1, - "quick": 1, - "rare": 1, - "rapid": 1, - "red": 1, - "rich": 1, - "ripe": 1, - "rotten": 1, - "round": 1, - "rude": 1, - "sad": 1, - "safe": 1, - "scarce": 1, - "scared": 1, - "shallow": 1, - "sharp": 1, - "short": 1, - "shrill": 1, - "simple": 1, - "slim": 1, - "slow": 1, - "small": 1, - "smart": 1, - "smooth": 1, - "soft": 1, - "sore": 1, - "sour": 1, - "square": 1, - "stale": 1, - "steep": 1, - "stiff": 1, - "straight": 1, - "strange": 1, - "strong": 1, - "sweet": 1, - "swift": 1, - "tall": 1, - "tame": 1, - "tart": 1, - "tender": 1, - "tense": 1, - "thick": 1, - "thin": 1, - "tight": 1, - "tough": 1, - "vague": 1, - "vast": 1, - "vulgar": 1, - "warm": 1, - "weak": 1, - "wet": 1, - "white": 1, - "wide": 1, - "wild": 1, - "wise": 1, - "young": 1, - "yellow": 1, - "easy": 1, - "narrow": 1, - "late": 1, - "early": 1, - "soon": 1, - "close": 1, - "empty": 1, - "dry": 1, - "windy": 1, - "noisy": 1, - "thirsty": 1, - "hungry": 1, - "fresh": 1, - "quiet": 1, - "clear": 1, - "heavy": 1, - "happy": 1, - "funny": 1, - "lucky": 1, - "pretty": 1, - "important": 1, - "interesting": 1, - "attractive": 1, - "dangerous": 1, - "intellegent": 1, - "pure": 1, - "orange": 1, - "large": 1, - "firm": 1, - "grand": 1, - "formal": 1, - "raw": 1, - "weird": 1, - "glad": 1, - "mad": 1, - "strict": 1, - "tired": 1, - "solid": 1, - "extreme": 1, - "mature": 1, - "true": 1, - "free": 1, - "curly": 1, - "angry": 1 - } - - var dont = { - "overweight": 1, - "ready": 1 - } - - var transforms = [{ - reg: /y$/i, - repl: 'iest' - }, { - reg: /([aeiou])t$/i, - repl: '$1ttest' - }, { - reg: /([aeou])de$/i, - repl: '$1dest' - }, { - reg: /nge$/i, - repl: 'ngest' - } - ] - - var matches = [ - /ght$/, - /nge$/, - /ough$/, - /ain$/, - /uel$/, - /[au]ll$/, - /ow$/, - /oud$/, - /...p$/ - ] - - var not_matches = [ - /ary$/ - ] - - var generic_transformation = function(str) { - if (str.match(/e$/)) { - return str + "st" - } else { - return str + "est" - } - } - - if (dos[str]) { - return generic_transformation(str) - } - - if (dont[str]) { - return "most " + str - } - - if (irregulars[str]) { - return irregulars[str] - } - var i; - for (i = 0; i < not_matches.length; i++) { - if (str.match(not_matches[i])) { - return "most " + str - } - } - - for (i = 0; i < transforms.length; i++) { - if (str.match(transforms[i].reg)) { - return str.replace(transforms[i].reg, transforms[i].repl) - } - } - - for (i = 0; i < matches.length; i++) { - if (str.match(matches[i])) { - return generic_transformation(str) - } - } - return "most " + str - } - - if (typeof module !== "undefined" && module.exports) { - module.exports = main; - } - return main; + var main = function(str) { + var irregulars = { + "nice": "nicest", + "late": "latest", + "hard": "hardest", + "inner": "innermost", + "outer": "outermost", + "far": "furthest", + "worse": "worst", + "bad": "worst", + "good": "best" + } + + var dos = { + "absurd": 1, + "aggressive": 1, + "alert": 1, + "alive": 1, + "awesome": 1, + "beautiful": 1, + "big": 1, + "bitter": 1, + "black": 1, + "blue": 1, + "bored": 1, + "boring": 1, + "brash": 1, + "brave": 1, + "brief": 1, + "bright": 1, + "broad": 1, + "brown": 1, + "calm": 1, + "charming": 1, + "cheap": 1, + "clean": 1, + "cold": 1, + "cool": 1, + "cruel": 1, + "cute": 1, + "damp": 1, + "deep": 1, + "dear": 1, + "dead": 1, + "dark": 1, + "dirty": 1, + "drunk": 1, + "dull": 1, + "eager": 1, + "efficient": 1, + "even": 1, + "faint": 1, + "fair": 1, + "fanc": 1, + "fast": 1, + "fat": 1, + "feeble": 1, + "few": 1, + "fierce ": 1, + "fine": 1, + "flat": 1, + "forgetful": 1, + "frail": 1, + "full": 1, + "gentle": 1, + "glib": 1, + "great": 1, + "green": 1, + "gruesome": 1, + "handsome": 1, + "hard": 1, + "harsh": 1, + "high": 1, + "hollow": 1, + "hot": 1, + "impolite": 1, + "innocent": 1, + "keen": 1, + "kind": 1, + "lame": 1, + "lean": 1, + "light": 1, + "little": 1, + "loose": 1, + "long": 1, + "loud": 1, + "low": 1, + "lush": 1, + "macho": 1, + "mean": 1, + "meek": 1, + "mellow": 1, + "mundane": 1, + "near": 1, + "neat": 1, + "new": 1, + "nice": 1, + "normal": 1, + "odd": 1, + "old": 1, + "pale": 1, + "pink": 1, + "plain": 1, + "poor": 1, + "proud": 1, + "purple": 1, + "quick": 1, + "rare": 1, + "rapid": 1, + "red": 1, + "rich": 1, + "ripe": 1, + "rotten": 1, + "round": 1, + "rude": 1, + "sad": 1, + "safe": 1, + "scarce": 1, + "scared": 1, + "shallow": 1, + "sharp": 1, + "short": 1, + "shrill": 1, + "simple": 1, + "slim": 1, + "slow": 1, + "small": 1, + "smart": 1, + "smooth": 1, + "soft": 1, + "sore": 1, + "sour": 1, + "square": 1, + "stale": 1, + "steep": 1, + "stiff": 1, + "straight": 1, + "strange": 1, + "strong": 1, + "sweet": 1, + "swift": 1, + "tall": 1, + "tame": 1, + "tart": 1, + "tender": 1, + "tense": 1, + "thick": 1, + "thin": 1, + "tight": 1, + "tough": 1, + "vague": 1, + "vast": 1, + "vulgar": 1, + "warm": 1, + "weak": 1, + "wet": 1, + "white": 1, + "wide": 1, + "wild": 1, + "wise": 1, + "young": 1, + "yellow": 1, + "easy": 1, + "narrow": 1, + "late": 1, + "early": 1, + "soon": 1, + "close": 1, + "empty": 1, + "dry": 1, + "windy": 1, + "noisy": 1, + "thirsty": 1, + "hungry": 1, + "fresh": 1, + "quiet": 1, + "clear": 1, + "heavy": 1, + "happy": 1, + "funny": 1, + "lucky": 1, + "pretty": 1, + "important": 1, + "interesting": 1, + "attractive": 1, + "dangerous": 1, + "intellegent": 1, + "pure": 1, + "orange": 1, + "large": 1, + "firm": 1, + "grand": 1, + "formal": 1, + "raw": 1, + "weird": 1, + "glad": 1, + "mad": 1, + "strict": 1, + "tired": 1, + "solid": 1, + "extreme": 1, + "mature": 1, + "true": 1, + "free": 1, + "curly": 1, + "angry": 1 + } + + var dont = { + "overweight": 1, + "ready": 1 + } + + var transforms = [{ + reg: /y$/i, + repl: 'iest' + }, { + reg: /([aeiou])t$/i, + repl: '$1ttest' + }, { + reg: /([aeou])de$/i, + repl: '$1dest' + }, { + reg: /nge$/i, + repl: 'ngest' + }] + + var matches = [ + /ght$/, + /nge$/, + /ough$/, + /ain$/, + /uel$/, + /[au]ll$/, + /ow$/, + /oud$/, + /...p$/ + ] + + var not_matches = [ + /ary$/ + ] + + var generic_transformation = function(str) { + if (str.match(/e$/)) { + return str + "st" + } else { + return str + "est" + } + } + + if (dos[str]) { + return generic_transformation(str) + } + + if (dont[str]) { + return "most " + str + } + + if (irregulars[str]) { + return irregulars[str] + } + var i; + for (i = 0; i < not_matches.length; i++) { + if (str.match(not_matches[i])) { + return "most " + str + } + } + + for (i = 0; i < transforms.length; i++) { + if (str.match(transforms[i].reg)) { + return str.replace(transforms[i].reg, transforms[i].repl) + } + } + + for (i = 0; i < matches.length; i++) { + if (str.match(matches[i])) { + return generic_transformation(str) + } + } + return "most " + str + } + + if (typeof module !== "undefined" && module.exports) { + module.exports = main; + } + return main; })(); // console.log(to_superlative('dry')) @@ -7077,136 +7083,136 @@ var to_superlative = (function() { //turn 'quick' into 'quickly' var adj_to_adv = (function() { - var main = function(str) { - var irregulars = { - "idle": "idly", - "public": "publicly", - "vague": "vaguely", - "day": "daily", - "icy": "icily", - "single": "singly", - "female": "womanly", - "male": "manly", - "simple": "simply", - "whole": "wholly", - "special": "especially", - "straight": "straight", - "wrong": "wrong", - "fast": "fast", - "hard": "hard", - "late": "late", - "early": "early", - "well": "well", - "best": "best", - "latter": "latter", - "bad": "badly" - } - - var dont = { - "foreign": 1, - "black": 1, - "modern": 1, - "next": 1, - "difficult": 1, - "degenerate": 1, - "young": 1, - "awake": 1, - "back": 1, - "blue": 1, - "brown": 1, - "orange": 1, - "complex": 1, - "cool": 1, - "dirty": 1, - "done": 1, - "empty": 1, - "fat": 1, - "fertile": 1, - "frozen": 1, - "gold": 1, - "grey": 1, - "gray": 1, - "green": 1, - "medium": 1, - "parallel": 1, - "outdoor": 1, - "unknown": 1, - "undersized": 1, - "used": 1, - "welcome": 1, - "yellow": 1, - "white": 1, - "fixed": 1, - "mixed": 1, - "super": 1, - "guilty": 1, - "tiny": 1, - "able": 1, - "unable": 1, - "same": 1, - "adult": 1 - } - - var transforms = [{ - reg: /al$/i, - repl: 'ally' - }, { - reg: /ly$/i, - repl: 'ly' - }, { - reg: /(.{3})y$/i, - repl: '$1ily' - }, { - reg: /que$/i, - repl: 'quely' - }, { - reg: /ue$/i, - repl: 'uly' - }, { - reg: /ic$/i, - repl: 'ically' - }, { - reg: /ble$/i, - repl: 'bly' - }, { - reg: /l$/i, - repl: 'ly' - }] - - var not_matches = [ - /airs$/, - /ll$/, - /ee.$/, - /ile$/ - ] - - if (dont[str]) { - return null - } - if (irregulars[str]) { - return irregulars[str] - } - if (str.length <= 3) { - return null - } - var i; - for (i = 0; i < not_matches.length; i++) { - if (str.match(not_matches[i])) { - return null - } - } - for (i = 0; i < transforms.length; i++) { - if (str.match(transforms[i].reg)) { - return str.replace(transforms[i].reg, transforms[i].repl) - } - } - return str + 'ly' - } - - if (typeof module !== "undefined" && module.exports) { - module.exports = main; - } - return main; + var main = function(str) { + var irregulars = { + "idle": "idly", + "public": "publicly", + "vague": "vaguely", + "day": "daily", + "icy": "icily", + "single": "singly", + "female": "womanly", + "male": "manly", + "simple": "simply", + "whole": "wholly", + "special": "especially", + "straight": "straight", + "wrong": "wrong", + "fast": "fast", + "hard": "hard", + "late": "late", + "early": "early", + "well": "well", + "best": "best", + "latter": "latter", + "bad": "badly" + } + + var dont = { + "foreign": 1, + "black": 1, + "modern": 1, + "next": 1, + "difficult": 1, + "degenerate": 1, + "young": 1, + "awake": 1, + "back": 1, + "blue": 1, + "brown": 1, + "orange": 1, + "complex": 1, + "cool": 1, + "dirty": 1, + "done": 1, + "empty": 1, + "fat": 1, + "fertile": 1, + "frozen": 1, + "gold": 1, + "grey": 1, + "gray": 1, + "green": 1, + "medium": 1, + "parallel": 1, + "outdoor": 1, + "unknown": 1, + "undersized": 1, + "used": 1, + "welcome": 1, + "yellow": 1, + "white": 1, + "fixed": 1, + "mixed": 1, + "super": 1, + "guilty": 1, + "tiny": 1, + "able": 1, + "unable": 1, + "same": 1, + "adult": 1 + } + + var transforms = [{ + reg: /al$/i, + repl: 'ally' + }, { + reg: /ly$/i, + repl: 'ly' + }, { + reg: /(.{3})y$/i, + repl: '$1ily' + }, { + reg: /que$/i, + repl: 'quely' + }, { + reg: /ue$/i, + repl: 'uly' + }, { + reg: /ic$/i, + repl: 'ically' + }, { + reg: /ble$/i, + repl: 'bly' + }, { + reg: /l$/i, + repl: 'ly' + }] + + var not_matches = [ + /airs$/, + /ll$/, + /ee.$/, + /ile$/ + ] + + if (dont[str]) { + return null + } + if (irregulars[str]) { + return irregulars[str] + } + if (str.length <= 3) { + return null + } + var i; + for (i = 0; i < not_matches.length; i++) { + if (str.match(not_matches[i])) { + return null + } + } + for (i = 0; i < transforms.length; i++) { + if (str.match(transforms[i].reg)) { + return str.replace(transforms[i].reg, transforms[i].repl) + } + } + return str + 'ly' + } + + if (typeof module !== "undefined" && module.exports) { + module.exports = main; + } + return main; })(); // console.log(adj_to_adv('direct')) @@ -7289,2168 +7295,2168 @@ if (typeof module !== "undefined" && module.exports) { //this list is the seed, from which various forms are conjugated var lexicon = (function() { - // var verb_conjugate, adj_to_adv, verb_to_doer, to_superlative, to_comparative; - if (typeof module !== "undefined" && module.exports) { - verb_conjugate = require("../parents/verb/conjugate/conjugate") - adj_to_adv = require("../parents/adjective/conjugate/to_adverb"); - verb_to_doer = require("../parents/verb/conjugate/to_doer"); - to_superlative = require("../parents/adjective/conjugate/to_superlative"); - to_comparative = require("../parents/adjective/conjugate/to_comparative"); - } - var main = { - //conjunctions - "yet": "CC", - "therefore": "CC", - "or": "CC", - "while": "CC", - "nor": "CC", - "whether": "CC", - "though": "CC", - "because": "CC", - "but": "CC", - "for": "CC", - "and": "CC", - "if": "CC", - "however": "CC", - "before": "CC", - "although": "CC", - "how": "CC", - - //numbers - 'zero': "CD", - 'one': "CD", - 'two': "CD", - 'three': "CD", - 'four': "CD", - 'five': "CD", - 'six': "CD", - 'seven': "CD", - 'eight': "CD", - 'nine': "CD", - 'ten': "CD", - 'eleven': "CD", - 'twelve': "CD", - 'thirteen': "CD", - 'fourteen': "CD", - 'fifteen': "CD", - 'sixteen': "CD", - 'seventeen': "CD", - 'eighteen': "CD", - 'nineteen': "CD", - 'twenty': "CD", - 'thirty': "CD", - 'forty': "CD", - 'fifty': "CD", - 'sixty': "CD", - 'seventy': "CD", - 'eighty': "CD", - 'ninety': "CD", - 'hundred': "CD", - 'thousand': "CD", - 'million': "CD", - 'billion': "CD", - 'trillion': "CD", - 'quadrillion': "CD", - 'quintillion': "CD", - 'sextillion': "CD", - 'septillion': "CD", - 'octillion': "CD", - 'nonillion': "CD", - 'decillion': "CD", - - //copula - "is": "CP", - "will be": "CP", - "are": "CP", - "was": "CP", - "were": "CP", - "am": "CP", - - //determiners - "this": "DT", - "any": "DT", - "enough": "DT", - "each": "DT", - "whatever": "DT", - "every": "DT", - "which": "DT", - "these": "DT", - "another": "DT", - "plenty": "DT", - "whichever": "DT", - "neither": "DT", - "an": "DT", - "a": "DT", - "least": "DT", - "own": "DT", - "few": "DT", - "both": "DT", - "those": "DT", - "the": "DT", - "that": "DT", - "various": "DT", - "what": "DT", - "either": "DT", - "much": "DT", - "some": "DT", - "else": "DT", - //some other languages (what could go wrong?) - "la": "DT", - "le": "DT", - "les": "DT", - "des": "DT", - "de": "DT", - "du": "DT", - "el": "DT", - - //prepositions - "until": "IN", - "onto": "IN", - "of": "IN", - "into": "IN", - "out": "IN", - "except": "IN", - "across": "IN", - "by": "IN", - "between": "IN", - "at": "IN", - "down": "IN", - "as": "IN", - "from": "IN", - "around": "IN", - "with": "IN", - "among": "IN", - "upon": "IN", - "amid": "IN", - "to": "IN", - "along": "IN", - "since": "IN", - "about": "IN", - "off": "IN", - "on": "IN", - "within": "IN", - "in": "IN", - "during": "IN", - "per": "IN", - "without": "IN", - "throughout": "IN", - "through": "IN", - "than": "IN", - "via": "IN", - "up": "IN", - - //modal verbs - "can": "MD", - "may": "MD", - "could": "MD", - "might": "MD", - "will": "MD", - "ought to": "MD", - "would": "MD", - "must": "MD", - "shall": "MD", - "should": "MD", - - //posessive pronouns - "mine": "PP", - "something": "PP", - "none": "PP", - "anything": "PP", - "anyone": "PP", - "lot": "PP", - "theirs": "PP", - "himself": "PP", - "ours": "PP", - "his": "PP", - "my": "PP", - "their": "PP", - "yours": "PP", - "your": "PP", - "our": "PP", - "its": "PP", - "nothing": "PP", - "herself": "PP", - "hers": "PP", - "themselves": "PP", - "everything": "PP", - "myself": "PP", - "itself": "PP", - "who": "PP", - "her": "PP", //this one is pretty ambiguous - - //personal pronouns (nouns) - "it": "PRP", - "they": "PRP", - "i": "PRP", - "them": "PRP", - "you": "PRP", - "she": "PRP", - "me": "PRP", - "he": "PRP", - "him": "PRP", - "ourselves": "PRP", - "us": "PRP", - "we": "PRP", - "thou": "PRP", - "il": "PRP", - "elle": "PRP", - - //some manual adverbs (the rest are generated) - "now": "RB", - "again": "RB", - "already": "RB", - "soon": "RB", - "directly": "RB", - "toward": "RB", - "forever": "RB", - "apart": "RB", - "instead": "RB", - "yes": "RB", - "alone": "RB", - "ago": "RB", - "indeed": "RB", - "ever": "RB", - "quite": "RB", - "perhaps": "RB", - "where": "RB", - "then": "RB", - "here": "RB", - "thus": "RB", - "very": "RB", - "often": "RB", - "once": "RB", - "never": "RB", - "why": "RB", - "when": "RB", - "away": "RB", - "always": "RB", - "sometimes": "RB", - "also": "RB", - "maybe": "RB", - "so": "RB", - "just": "RB", - "well": "RB", - - //interjections - "uhh": "UH", - "uh-oh": "UH", - "ugh": "UH", - "sheesh": "UH", - "eww": "UH", - "pff": "UH", - "voila": "UH", - "oy": "UH", - "eep": "UH", - "hurrah": "UH", - "yuck": "UH", - "ow": "UH", - "duh": "UH", - "oh": "UH", - "hmm": "UH", - "yeah": "UH", - "whoa": "UH", - "ooh": "UH", - "whee": "UH", - "ah": "UH", - "bah": "UH", - "gah": "UH", - "yaa": "UH", - "phew": "UH", - "gee": "UH", - "ahem": "UH", - "eek": "UH", - "meh": "UH", - "yahoo": "UH", - "oops": "UH", - "d'oh": "UH", - "psst": "UH", - "argh": "UH", - "grr": "UH", - "nah": "UH", - "shhh": "UH", - "whew": "UH", - "mmm": "UH", - "yay": "UH", - "uh-huh": "UH", - "boo": "UH", - "wow": "UH", - - //dates - "july": "CD", - "august": "CD", - "september": "CD", - "october": "CD", - "november": "CD", - "december": "CD", - "january": "CD", - "february": "CD", - "march": "CD", - "april": "CD", - // "may": "CD", - "june": "CD", - "monday": "CD", - "tuesday": "CD", - "wednesday": "CD", - "thursday": "CD", - "friday": "CD", - "saturday": "CD", - "sunday": "CD", - - //contractions that don't need splitting-open, grammatically - "don't": "VB", - "isn't": "CP", - "ain't": "CP", - "aren't": "CP", - "won't": "VB", - "shouldn't": "MD", - "wouldn't": "MD", - "couldn't": "MD", - "mustn't": "MD", - "shan't": "MD", - "shant": "MD", - "lets": "MD", //arguable - "let's": "MD", - "what's": "VB", //somewhat ambiguous (what does|what are) - "where'd": "VBD", - "when'd": "VBD", - "how'd": "VBD", - "what'd": "VBD", - "who'd": "MD", - "'o": "IN", - "'em": "PRP", - - //demonyms - "afghan":"JJ", - "albanian":"JJ", - "algerian":"JJ", - "argentine":"JJ", - "armenian":"JJ", - "australian":"JJ", - "aussie":"JJ", - "austrian":"JJ", - "bangladeshi":"JJ", - "belgian":"JJ", - "bolivian":"JJ", - "bosnian":"JJ", - "brazilian":"JJ", - "bulgarian":"JJ", - "cambodian":"JJ", - "canadian":"JJ", - "chilean":"JJ", - "chinese":"JJ", - "colombian":"JJ", - "croat":"JJ", - "cuban":"JJ", - "czech":"JJ", - "dominican":"JJ", - "egyptian":"JJ", - "british":"JJ", - "estonian":"JJ", - "ethiopian":"JJ", - "finnish":"JJ", - "french":"JJ", - "gambian":"JJ", - "georgian":"JJ", - "german":"JJ", - "greek":"JJ", - "haitian":"JJ", - "hungarian":"JJ", - "indian":"JJ", - "indonesian":"JJ", - "iranian":"JJ", - "iraqi":"JJ", - "irish":"JJ", - "israeli":"JJ", - "italian":"JJ", - "jamaican":"JJ", - "japanese":"JJ", - "jordanian":"JJ", - "kenyan":"JJ", - "korean":"JJ", - "kuwaiti":"JJ", - "latvian":"JJ", - "lebanese":"JJ", - "liberian":"JJ", - "libyan":"JJ", - "lithuanian":"JJ", - "macedonian":"JJ", - "malaysian":"JJ", - "mexican":"JJ", - "mongolian":"JJ", - "moroccan":"JJ", - "dutch":"JJ", - "nicaraguan":"JJ", - "nigerian":"JJ", - "norwegian":"JJ", - "omani":"JJ", - "pakistani":"JJ", - "palestinian":"JJ", - "filipino":"JJ", - "polish":"JJ", - "portuguese":"JJ", - "qatari":"JJ", - "romanian":"JJ", - "russian":"JJ", - "rwandan":"JJ", - "samoan":"JJ", - "saudi":"JJ", - "scottish":"JJ", - "senegalese":"JJ", - "serbian":"JJ", - "singaporean":"JJ", - "slovak":"JJ", - "somali":"JJ", - "sudanese":"JJ", - "swedish":"JJ", - "swiss":"JJ", - "syrian":"JJ", - "taiwanese":"JJ", - "thai":"JJ", - "tunisian":"JJ", - "ugandan":"JJ", - "ukrainian":"JJ", - "american":"JJ", - "hindi":"JJ", - "spanish":"JJ", - "venezuelan":"JJ", - "vietnamese":"JJ", - "welsh":"JJ", - "african":"JJ", - "european":"JJ", - "asian":"JJ", - "californian":"JJ", - - //misc mine - "nope": "UH", - "said": "VBD", - "says": "VBZ", - "has": "VB", - "more": "RBR", - "had": "VBD", - "been": "VBD", - "going": "VBG", - "other": "JJ", - "no": "DT", - "there": "EX", - "after": "IN", - "many": "JJ", - "most": "JJ", - "last": "JJ", - "expected": "JJ", - "long": "JJ", - "far": "JJ", - "due": "JJ", - "higher": "JJR", - "larger": "JJR", - "better": "JJR", - "added": "VB", - "several": "RB", - "such": "RB", - "took": "VB", - "being": "VBG", - "began": "VBD", - "came": "VBD", - "did": "VBD", - "go": "VBP", - "too": "RB", - "president": "NN", - "dollar": "NN", - "student": "NN", - "patent": "NN", - "funding": "NN", - "morning": "NN", - "banking": "NN", - "ceiling": "NN", - "energy": "NN", - "secretary": "NN", - "purpose": "NN", - "friends": "NNS", - "less": "JJ", - "event":"NN", - "divine": "JJ", - "all": "JJ", - "define": "VB", - "went": "VBD", - "goes": "VB", - "sounds": "VBZ", - "measure": "VB", - "enhance": "VB", - "distinguish": "VB", - "randomly": "RB", - "abroad": "RB", - - //missing words from amc - "given": "VBN", - "known": "VBN", - "rather": "RB", - "shown": "VBN", - "seen": "VBN", - "according": "VBG", - "almost": "RB", - "together": "JJ", - "means": "VBZ", - "despite": "IN", - "only": "JJ", - "outside": "JJ", - "below": "IN", - "multiple": "JJ", - "anyway": "RB", - "appropriate": "JJ", - "unless": "IN", - "whom": "PP", - "whose": "PP", - "evil": "JJ", - "earlier": "JJR", - "etc": "FW", - "twice": "RB", - "avoid": "VB", - "favorite": "JJ", - "whereas": "IN", - "born": "VBN", - "hit": "VB", - "resulting": "VBG", - "limited": "JJ", - "developing": "VBG", - "plus": "CC", - "biggest": "JJS", - "random": "JJ", - "republican": "JJ", - "okay": "JJ", - "essential": "JJ", - "somewhat": "RB", - "unlike": "IN", - "secondary": "JJ", - "somehow": "RB", - "yourself": "PRP", - "gay": "JJ", - "meanwhile": "RB", - "hence": "RB", - "further": "RB", - "furthermore": "RB", - "easier": "JJR", - "staining": "VBG", - "towards": "IN", - "aside": "RB", - "moreover": "RB", - "south": "JJ", - "pro": "JJ", - "meant": "VBD", - "versus": "CC", - "besides": "IN", - "northern": "JJ", - "anymore": "RB", - "urban": "JJ", - "acute": "JJ", - "prime": "JJ", - "arab": "JJ", - "overnight": "JJ", - "newly": "RB", - "ought": "MD", - "mixed": "JJ", - "crucial": "JJ", - "damn": "RB", - - //formerly IN - "behind": "JJ", - "above": "JJ", - "beyond": "JJ", - "against": "JJ", - "under": "JJ", - "not":"CC",//? - - //from multiples - "of course":"RB", - "at least":"RB", - "no longer":"RB", - "sort of":"RB", - "at first":"RB", - "once again":"RB", - "once more":"RB", - "up to":"RB", - "by now":"RB", - "all but":"RB", - "just about":"RB", - "on board":"JJ", - "a lot":"RB", - "by far":"RB", - "at best":"RB", - "at large":"RB", - "for good":"RB", - "vice versa":"JJ", - "en route":"JJ", - "for sure":"RB", - "upside down":"JJ", - "at most":"RB", - "per se":"RB", - "at worst":"RB", - "upwards of":"RB", - "en masse":"RB", - "point blank":"RB", - "up front":"JJ", - "in situ":"JJ", - "in vitro":"JJ", - "ad hoc":"JJ", - "de facto":"JJ", - "ad infinitum":"JJ", - "ad nauseam":"RB", - "for keeps":"JJ", - "a priori":"FW", - "et cetera":"FW", - "off guard":"JJ", - "spot on":"JJ", - "ipso facto":"JJ", - "not withstanding":"RB", - "de jure":"RB", - "a la":"IN", - "ad hominem":"NN", - "par excellence":"RB", - "de trop":"RB", - "a posteriori":"RB", - "fed up":"JJ", - "brand new":"JJ", - "old fashioned":"JJ", - "bona fide":"JJ", - "well off":"JJ", - "far off":"JJ", - "straight forward":"JJ", - "hard up":"JJ", - "sui generis":"JJ", - "en suite":"JJ", - "avant garde":"JJ", - "sans serif":"JJ", - "gung ho":"JJ", - "super duper":"JJ" - } - - //verbs - var verbs = [ - "collapse", - "stake", - "forsee", - "hide", - "suck", - "answer", - "argue", - "tend", - "examine", - "depend", - "form", - "figure", - "compete", - "mind", - "surround", - "suspect", - "reflect", - "wonder", - "act", - "hope", - "end", - "thank", - "file", - "regard", - "report", - "imagine", - "consider", - "miss", - "ensure", - "cause", - "work", - "enter", - "stop", - "defeat", - "surge", - "launch", - "turn", - "give", - "win", - "like", - "control", - "relate", - "remember", - "join", - "listen", - "train", - "break", - "spring", - "enjoy", - "fail", - "understand", - "recognize", - "draw", - "obtain", - "learn", - "fill", - "announce", - "prevent", - "fall", - "achieve", - "find", - "realize", - "involve", - "remove", - "lose", - "lie", - "build", - "aid", - "visit", - "test", - "strike", - "prepare", - "wait", - "ask", - "carry", - "suppose", - "determine", - "raise", - "send", - "love", - "use", - "pull", - "improve", - "contain", - "think", - "offer", - "speak", - "rise", - "talk", - "pick", - "care", - "express", - "remain", - "operate", - "deal", - "close", - "add", - "mention", - "read", - "support", - "grow", - "decide", - "walk", - "vary", - "demand", - "describe", - "sell", - "agree", - "happen", - "allow", - "suffer", - "have", - "study", - "be", - "press", - "watch", - "seem", - "occur", - "contribute", - "claim", - "become", - "make", - "compare", - "develop", - "apply", - "direct", - "discuss", - "know", - "sit", - "see", - "lead", - "indicate", - "require", - "change", - "fix", - "come", - "reach", - "prove", - "expect", - "exist", - "play", - "permit", - "meet", - "kill", - "pay", - "charge", - "increase", - "fight", - "tell", - "catch", - "believe", - "create", - "continue", - "live", - "help", - "represent", - "edit", - "serve", - "ride", - "appear", - "cover", - "set", - "maintain", - "start", - "stay", - "move", - "extend", - "leave", - "wear", - "run", - "design", - "supply", - "suggest", - "want", - "say", - "hear", - "drive", - "approach", - "cut", - "call", - "include", - "try", - "receive", - "save", - "discover", - "marry", - "throw", - "show", - "choose", - "need", - "establish", - "keep", - "assume", - "attend", - "buy", - "unite", - "feel", - "explain", - "publish", - "accept", - "settle", - "reduce", - "bring", - "do", - "let", - "shoot", - "look", - "take", - "interact", - "concern", - "put", - "labor", - "hold", - "return", - "select", - "die", - "provide", - "seek", - "stand", - "spend", - "begin", - "get", - "wish", - "hang", - "write", - "finish", - "follow", - "forget", - "feed", - "eat", - "disagree", - "produce", - "attack", - "attempt", - "bite", - "blow", - "brake", - "brush", - "burn", - "bang", - "bomb", - "bet", - "budget", - "comfort", - "cook", - "copy", - "cough", - "crush", - "cry", - "check", - "claw", - "clip", - "combine", - "damage", - "desire", - "doubt", - "drain", - "drink", - "dance", - "decrease", - "defect", - "deposit", - "drift", - "dip", - "dive", - "divorce", - "dream", - "exchange", - "envy", - "exert", - "exercise", - "export", - "fold", - "flood", - "focus", - "forecast", - "fracture", - "grip", - "guide", - "guard", - "guarantee", - "guess", - "hate", - "heat", - "handle", - "hire", - "host", - "hunt", - "hurry", - "import", - "judge", - "jump", - "jam", - "kick", - "kiss", - "knock", - "laugh", - "lift", - "lock", - "lecture", - "link", - "load", - "loan", - "lump", - "melt", - "message", - "murder", - "neglect", - "overlap", - "overtake", - "overuse", - "print", - "protest", - "pump", - "push", - "post", - "progress", - "promise", - "purchase", - "regret", - "request", - "reward", - "roll", - "rub", - "rent", - "repair", - "sail", - "scale", - "screw", - "shake", - "shock", - "sleep", - "slip", - "smash", - "smell", - "smoke", - "sneeze", - "snow", - "stick", - "surprise", - "swim", - "scratch", - "search", - "share", - "shave", - "slide", - "spit", - "splash", - "stain", - "stress", - "swing", - "switch", - "taste", - "touch", - "trade", - "trick", - "twist", - "tie", - "trap", - "travel", - "tune", - "undergo", - "undo", - "uplift", - "vote", - "wash", - "wave", - "whistle", - "wreck", - "yawn", - "betray", - "restrict", - "perform", - "worry", - "point", - "activate", - "fear", - "plan", - "note", - "face", - "predict", - "differ", - "deserve", - "torture", - "recall", - "count", - "swear", - "admit", - "insist", - "lack", - "pass", - "belong", - "complain", - "constitute", - "beat", - "rely", - "refuse", - "range", - "cite", - "flash", - "arrive", - "reveal", - "consist", - "observe", - "notice", - "trust", - "imply", - "display", - "view", - "stare", - "acknowledge", - "owe", - "gaze", - "treat", - "account", - "gather", - "address", - "confirm", - "estimate", - "manage", - "participate", - "sneak", - "drop", - "mirror", - "experience", - "strive", - "teach", - "cost", - "arch", - "dislike", - "favor", - "earn", - "emphasize", - "fly", - "match", - "question", - "emerge", - "encourage", - "matter", - "name", - "head", - "line", - "slam", - "list", - "sing", - "warn", - "ignore", - "resemble", - "spread", - "feature", - "place", - "reverse", - "accuse", - "spoil", - "retain", - "survive", - "praise", - "function", - "please", - "date", - "remind", - "deliver", - "echo", - "engage", - "deny", - "obey", - "yield", - "center", - "gain", - "anticipate", - "reason", - "side", - "thrive", - "defy", - "dodge", - "enable", - "applaud", - "bear", - "persist", - "pose", - "reject", - "attract", - "await", - "inhibit", - "declare", - "process", - "risk", - "urge", - "value", - "block", - "confront", - "credit", - "cross", - "wake", - "amuse", - "dare", - "resent", - "smile", - "gloss", - "threaten", - "collect", - "depict", - "dismiss", - "submit", - "benefit", - "step", - "deem", - "limit", - "sense", - "issue", - "embody", - "force", - "govern", - "replace", - "aim", - "bother", - "cater", - "adopt", - "empower", - "outweigh", - "alter", - "enrich", - "influence", - "prohibit", - "pursue", - "warrant", - "convey", - "approve", - "reserve", - "rest", - "strain", - "wander", - "adjust", - "dress", - "market", - "mingle", - "disapprove", - "evaluate", - "flow", - "inhabit", - "pop", - "rule", - "depart", - "roam", - "assert", - "disappear", - "envision", - "pause", - "afford", - "challenge", - "grab", - "grumble", - "house", - "portray", - "revel", - "base", - "conduct", - "review", - "stem", - "crave", - "mark", - "store", - "target", - "unlock", - "weigh", - "resist", - "steal", - "drag", - "pour", - "reckon", - "assign", - "cling", - "rank", - "attach", - "decline", - "destroy", - "interfere", - "paint", - "skip", - "sprinkle", - "wither", - "allege", - "retire", - "score", - "monitor", - "expand", - "honor", - "lend", - "pack", - "assist", - "float", - "appeal", - "sink", - "stretch", - "undermine", - "assemble", - "boast", - "bounce", - "grasp", - "install", - "borrow", - "crack", - "elect", - "shine", - "shout", - "contrast", - "overcome", - "relax", - "relent", - "strengthen", - "conform", - "dump", - "pile", - "scare", - "relive", - "resort", - "rush", - "boost", - "cease", - "command", - "excel", - "plug", - "plunge", - "proclaim", - "discourage", - "endure", - "ruin", - "stumble", - "abandon", - "cheat", - "convince", - "merge", - "convert", - "harm", - "multiply", - "overwhelm", - "chew", - "invent", - "bury", - "wipe" - ] + // var verb_conjugate, adj_to_adv, verb_to_doer, to_superlative, to_comparative; + if (typeof module !== "undefined" && module.exports) { + verb_conjugate = require("../parents/verb/conjugate/conjugate") + adj_to_adv = require("../parents/adjective/conjugate/to_adverb"); + verb_to_doer = require("../parents/verb/conjugate/to_doer"); + to_superlative = require("../parents/adjective/conjugate/to_superlative"); + to_comparative = require("../parents/adjective/conjugate/to_comparative"); + } + var main = { + //conjunctions + "yet": "CC", + "therefore": "CC", + "or": "CC", + "while": "CC", + "nor": "CC", + "whether": "CC", + "though": "CC", + "because": "CC", + "but": "CC", + "for": "CC", + "and": "CC", + "if": "CC", + "however": "CC", + "before": "CC", + "although": "CC", + "how": "CC", + + //numbers + 'zero': "CD", + 'one': "CD", + 'two': "CD", + 'three': "CD", + 'four': "CD", + 'five': "CD", + 'six': "CD", + 'seven': "CD", + 'eight': "CD", + 'nine': "CD", + 'ten': "CD", + 'eleven': "CD", + 'twelve': "CD", + 'thirteen': "CD", + 'fourteen': "CD", + 'fifteen': "CD", + 'sixteen': "CD", + 'seventeen': "CD", + 'eighteen': "CD", + 'nineteen': "CD", + 'twenty': "CD", + 'thirty': "CD", + 'forty': "CD", + 'fifty': "CD", + 'sixty': "CD", + 'seventy': "CD", + 'eighty': "CD", + 'ninety': "CD", + 'hundred': "CD", + 'thousand': "CD", + 'million': "CD", + 'billion': "CD", + 'trillion': "CD", + 'quadrillion': "CD", + 'quintillion': "CD", + 'sextillion': "CD", + 'septillion': "CD", + 'octillion': "CD", + 'nonillion': "CD", + 'decillion': "CD", + + //copula + "is": "CP", + "will be": "CP", + "are": "CP", + "was": "CP", + "were": "CP", + "am": "CP", + + //determiners + "this": "DT", + "any": "DT", + "enough": "DT", + "each": "DT", + "whatever": "DT", + "every": "DT", + "which": "DT", + "these": "DT", + "another": "DT", + "plenty": "DT", + "whichever": "DT", + "neither": "DT", + "an": "DT", + "a": "DT", + "least": "DT", + "own": "DT", + "few": "DT", + "both": "DT", + "those": "DT", + "the": "DT", + "that": "DT", + "various": "DT", + "what": "DT", + "either": "DT", + "much": "DT", + "some": "DT", + "else": "DT", + //some other languages (what could go wrong?) + "la": "DT", + "le": "DT", + "les": "DT", + "des": "DT", + "de": "DT", + "du": "DT", + "el": "DT", - //conjugate all of these verbs. takes ~8ms. triples the lexicon size. - verbs.forEach(function(v) { - var c = verb_conjugate(v) - main[c.infinitive]= main[c.infinitive] || "VBP" - main[c.past] = main[c.past] || "VBD" - main[c.gerund] = main[c.gerund] || "VBG" - main[c.present] = main[c.present] || "VBZ" - if(c.participle && !main[c.participle]){ - main[c.participle]="VBN" - } - var doer = verb_to_doer(v) - if (doer) { - main[doer] = "NNA" + //prepositions + "until": "IN", + "onto": "IN", + "of": "IN", + "into": "IN", + "out": "IN", + "except": "IN", + "across": "IN", + "by": "IN", + "between": "IN", + "at": "IN", + "down": "IN", + "as": "IN", + "from": "IN", + "around": "IN", + "with": "IN", + "among": "IN", + "upon": "IN", + "amid": "IN", + "to": "IN", + "along": "IN", + "since": "IN", + "about": "IN", + "off": "IN", + "on": "IN", + "within": "IN", + "in": "IN", + "during": "IN", + "per": "IN", + "without": "IN", + "throughout": "IN", + "through": "IN", + "than": "IN", + "via": "IN", + "up": "IN", + + //modal verbs + "can": "MD", + "may": "MD", + "could": "MD", + "might": "MD", + "will": "MD", + "ought to": "MD", + "would": "MD", + "must": "MD", + "shall": "MD", + "should": "MD", + + //posessive pronouns + "mine": "PP", + "something": "PP", + "none": "PP", + "anything": "PP", + "anyone": "PP", + "lot": "PP", + "theirs": "PP", + "himself": "PP", + "ours": "PP", + "his": "PP", + "my": "PP", + "their": "PP", + "yours": "PP", + "your": "PP", + "our": "PP", + "its": "PP", + "nothing": "PP", + "herself": "PP", + "hers": "PP", + "themselves": "PP", + "everything": "PP", + "myself": "PP", + "itself": "PP", + "who": "PP", + "her": "PP", //this one is pretty ambiguous + + //personal pronouns (nouns) + "it": "PRP", + "they": "PRP", + "i": "PRP", + "them": "PRP", + "you": "PRP", + "she": "PRP", + "me": "PRP", + "he": "PRP", + "him": "PRP", + "ourselves": "PRP", + "us": "PRP", + "we": "PRP", + "thou": "PRP", + "il": "PRP", + "elle": "PRP", + + //some manual adverbs (the rest are generated) + "now": "RB", + "again": "RB", + "already": "RB", + "soon": "RB", + "directly": "RB", + "toward": "RB", + "forever": "RB", + "apart": "RB", + "instead": "RB", + "yes": "RB", + "alone": "RB", + "ago": "RB", + "indeed": "RB", + "ever": "RB", + "quite": "RB", + "perhaps": "RB", + "where": "RB", + "then": "RB", + "here": "RB", + "thus": "RB", + "very": "RB", + "often": "RB", + "once": "RB", + "never": "RB", + "why": "RB", + "when": "RB", + "away": "RB", + "always": "RB", + "sometimes": "RB", + "also": "RB", + "maybe": "RB", + "so": "RB", + "just": "RB", + "well": "RB", + + //interjections + "uhh": "UH", + "uh-oh": "UH", + "ugh": "UH", + "sheesh": "UH", + "eww": "UH", + "pff": "UH", + "voila": "UH", + "oy": "UH", + "eep": "UH", + "hurrah": "UH", + "yuck": "UH", + "ow": "UH", + "duh": "UH", + "oh": "UH", + "hmm": "UH", + "yeah": "UH", + "whoa": "UH", + "ooh": "UH", + "whee": "UH", + "ah": "UH", + "bah": "UH", + "gah": "UH", + "yaa": "UH", + "phew": "UH", + "gee": "UH", + "ahem": "UH", + "eek": "UH", + "meh": "UH", + "yahoo": "UH", + "oops": "UH", + "d'oh": "UH", + "psst": "UH", + "argh": "UH", + "grr": "UH", + "nah": "UH", + "shhh": "UH", + "whew": "UH", + "mmm": "UH", + "yay": "UH", + "uh-huh": "UH", + "boo": "UH", + "wow": "UH", + + //dates + "july": "CD", + "august": "CD", + "september": "CD", + "october": "CD", + "november": "CD", + "december": "CD", + "january": "CD", + "february": "CD", + "march": "CD", + "april": "CD", + // "may": "CD", + "june": "CD", + "monday": "CD", + "tuesday": "CD", + "wednesday": "CD", + "thursday": "CD", + "friday": "CD", + "saturday": "CD", + "sunday": "CD", + + //contractions that don't need splitting-open, grammatically + "don't": "VB", + "isn't": "CP", + "ain't": "CP", + "aren't": "CP", + "won't": "VB", + "shouldn't": "MD", + "wouldn't": "MD", + "couldn't": "MD", + "mustn't": "MD", + "shan't": "MD", + "shant": "MD", + "lets": "MD", //arguable + "let's": "MD", + "what's": "VB", //somewhat ambiguous (what does|what are) + "where'd": "VBD", + "when'd": "VBD", + "how'd": "VBD", + "what'd": "VBD", + "who'd": "MD", + "'o": "IN", + "'em": "PRP", + + //demonyms + "afghan": "JJ", + "albanian": "JJ", + "algerian": "JJ", + "argentine": "JJ", + "armenian": "JJ", + "australian": "JJ", + "aussie": "JJ", + "austrian": "JJ", + "bangladeshi": "JJ", + "belgian": "JJ", + "bolivian": "JJ", + "bosnian": "JJ", + "brazilian": "JJ", + "bulgarian": "JJ", + "cambodian": "JJ", + "canadian": "JJ", + "chilean": "JJ", + "chinese": "JJ", + "colombian": "JJ", + "croat": "JJ", + "cuban": "JJ", + "czech": "JJ", + "dominican": "JJ", + "egyptian": "JJ", + "british": "JJ", + "estonian": "JJ", + "ethiopian": "JJ", + "finnish": "JJ", + "french": "JJ", + "gambian": "JJ", + "georgian": "JJ", + "german": "JJ", + "greek": "JJ", + "haitian": "JJ", + "hungarian": "JJ", + "indian": "JJ", + "indonesian": "JJ", + "iranian": "JJ", + "iraqi": "JJ", + "irish": "JJ", + "israeli": "JJ", + "italian": "JJ", + "jamaican": "JJ", + "japanese": "JJ", + "jordanian": "JJ", + "kenyan": "JJ", + "korean": "JJ", + "kuwaiti": "JJ", + "latvian": "JJ", + "lebanese": "JJ", + "liberian": "JJ", + "libyan": "JJ", + "lithuanian": "JJ", + "macedonian": "JJ", + "malaysian": "JJ", + "mexican": "JJ", + "mongolian": "JJ", + "moroccan": "JJ", + "dutch": "JJ", + "nicaraguan": "JJ", + "nigerian": "JJ", + "norwegian": "JJ", + "omani": "JJ", + "pakistani": "JJ", + "palestinian": "JJ", + "filipino": "JJ", + "polish": "JJ", + "portuguese": "JJ", + "qatari": "JJ", + "romanian": "JJ", + "russian": "JJ", + "rwandan": "JJ", + "samoan": "JJ", + "saudi": "JJ", + "scottish": "JJ", + "senegalese": "JJ", + "serbian": "JJ", + "singaporean": "JJ", + "slovak": "JJ", + "somali": "JJ", + "sudanese": "JJ", + "swedish": "JJ", + "swiss": "JJ", + "syrian": "JJ", + "taiwanese": "JJ", + "thai": "JJ", + "tunisian": "JJ", + "ugandan": "JJ", + "ukrainian": "JJ", + "american": "JJ", + "hindi": "JJ", + "spanish": "JJ", + "venezuelan": "JJ", + "vietnamese": "JJ", + "welsh": "JJ", + "african": "JJ", + "european": "JJ", + "asian": "JJ", + "californian": "JJ", + + //misc mine + "nope": "UH", + "said": "VBD", + "says": "VBZ", + "has": "VB", + "more": "RBR", + "had": "VBD", + "been": "VBD", + "going": "VBG", + "other": "JJ", + "no": "DT", + "there": "EX", + "after": "IN", + "many": "JJ", + "most": "JJ", + "last": "JJ", + "expected": "JJ", + "long": "JJ", + "far": "JJ", + "due": "JJ", + "higher": "JJR", + "larger": "JJR", + "better": "JJR", + "added": "VB", + "several": "RB", + "such": "RB", + "took": "VB", + "being": "VBG", + "began": "VBD", + "came": "VBD", + "did": "VBD", + "go": "VBP", + "too": "RB", + "president": "NN", + "dollar": "NN", + "student": "NN", + "patent": "NN", + "funding": "NN", + "morning": "NN", + "banking": "NN", + "ceiling": "NN", + "energy": "NN", + "secretary": "NN", + "purpose": "NN", + "friends": "NNS", + "less": "JJ", + "event": "NN", + "divine": "JJ", + "all": "JJ", + "define": "VB", + "went": "VBD", + "goes": "VB", + "sounds": "VBZ", + "measure": "VB", + "enhance": "VB", + "distinguish": "VB", + "randomly": "RB", + "abroad": "RB", + + //missing words from amc + "given": "VBN", + "known": "VBN", + "rather": "RB", + "shown": "VBN", + "seen": "VBN", + "according": "VBG", + "almost": "RB", + "together": "JJ", + "means": "VBZ", + "despite": "IN", + "only": "JJ", + "outside": "JJ", + "below": "IN", + "multiple": "JJ", + "anyway": "RB", + "appropriate": "JJ", + "unless": "IN", + "whom": "PP", + "whose": "PP", + "evil": "JJ", + "earlier": "JJR", + "etc": "FW", + "twice": "RB", + "avoid": "VB", + "favorite": "JJ", + "whereas": "IN", + "born": "VBN", + "hit": "VB", + "resulting": "VBG", + "limited": "JJ", + "developing": "VBG", + "plus": "CC", + "biggest": "JJS", + "random": "JJ", + "republican": "JJ", + "okay": "JJ", + "essential": "JJ", + "somewhat": "RB", + "unlike": "IN", + "secondary": "JJ", + "somehow": "RB", + "yourself": "PRP", + "gay": "JJ", + "meanwhile": "RB", + "hence": "RB", + "further": "RB", + "furthermore": "RB", + "easier": "JJR", + "staining": "VBG", + "towards": "IN", + "aside": "RB", + "moreover": "RB", + "south": "JJ", + "pro": "JJ", + "meant": "VBD", + "versus": "CC", + "besides": "IN", + "northern": "JJ", + "anymore": "RB", + "urban": "JJ", + "acute": "JJ", + "prime": "JJ", + "arab": "JJ", + "overnight": "JJ", + "newly": "RB", + "ought": "MD", + "mixed": "JJ", + "crucial": "JJ", + "damn": "RB", + + //formerly IN + "behind": "JJ", + "above": "JJ", + "beyond": "JJ", + "against": "JJ", + "under": "JJ", + "not": "CC", //? + + //from multiples + "of course": "RB", + "at least": "RB", + "no longer": "RB", + "sort of": "RB", + "at first": "RB", + "once again": "RB", + "once more": "RB", + "up to": "RB", + "by now": "RB", + "all but": "RB", + "just about": "RB", + "on board": "JJ", + "a lot": "RB", + "by far": "RB", + "at best": "RB", + "at large": "RB", + "for good": "RB", + "vice versa": "JJ", + "en route": "JJ", + "for sure": "RB", + "upside down": "JJ", + "at most": "RB", + "per se": "RB", + "at worst": "RB", + "upwards of": "RB", + "en masse": "RB", + "point blank": "RB", + "up front": "JJ", + "in situ": "JJ", + "in vitro": "JJ", + "ad hoc": "JJ", + "de facto": "JJ", + "ad infinitum": "JJ", + "ad nauseam": "RB", + "for keeps": "JJ", + "a priori": "FW", + "et cetera": "FW", + "off guard": "JJ", + "spot on": "JJ", + "ipso facto": "JJ", + "not withstanding": "RB", + "de jure": "RB", + "a la": "IN", + "ad hominem": "NN", + "par excellence": "RB", + "de trop": "RB", + "a posteriori": "RB", + "fed up": "JJ", + "brand new": "JJ", + "old fashioned": "JJ", + "bona fide": "JJ", + "well off": "JJ", + "far off": "JJ", + "straight forward": "JJ", + "hard up": "JJ", + "sui generis": "JJ", + "en suite": "JJ", + "avant garde": "JJ", + "sans serif": "JJ", + "gung ho": "JJ", + "super duper": "JJ" } - }) - //adjectives that either aren't covered by rules, or have superlative/comparative forms - var adjectives = [ - 'colonial', - 'moody', - 'literal', - 'actual', - 'probable', - 'apparent', - 'usual', - 'aberrant', - 'ablaze', - 'able', - 'absolute', - 'aboard', - 'abrupt', - 'absent', - 'absorbing', - 'absurd', - 'abundant', - 'accurate', - 'adult', - 'afraid', - 'agonizing', - 'ahead', - 'alert', - 'alive', - 'aloof', - 'amazing', - 'arbitrary', - 'arrogant', - 'asleep', - 'astonishing', - 'average', - 'awake', - 'aware', - 'awkward', - 'back', - 'bad', - 'bankrupt', - 'bawdy', - 'beneficial', - 'bent', - 'best', - 'better', - 'big', - 'bitter', - 'bizarre', - 'black', - 'bloody', - 'blue', - 'bouncy', - 'brash', - 'brave', - 'brief', - 'bright', - 'brilliant', - 'broad', - 'broken', - 'brown', - 'burly', - 'busy', - 'cagey', - 'calm', - 'careful', - 'caring', - 'certain', - 'charming', - 'cheap', - 'chief', - 'chilly', - 'civil', - 'clever', - 'close', - 'closed', - 'cloudy', - 'cold', - 'colossal', - 'commercial', - 'common', - 'complete', - 'complex', - 'concerned', - 'concrete', - 'congruent', - 'constant', - 'cooing', - 'cool', - 'correct', - 'cowardly', - 'craven', - 'cruel', - 'cuddly', - 'curly', - 'cute', - 'daily', - 'damaged', - 'damaging', - 'damp', - 'dapper', - 'dark', - 'dashing', - 'dead', - 'deadpan', - 'dear', - 'deep', - 'deeply', - 'defiant', - 'degenerate', - 'delicate', - 'delightful', - 'desperate', - 'determined', - 'didactic', - 'difficult', - 'discreet', - 'done', - 'double', - 'doubtful', - 'downtown', - 'dreary', - 'drunk', - 'dry', - 'dull', - 'eager', - 'early', - 'east', - 'eastern', - 'easy', - 'elderly', - 'elegant', - 'elfin', - 'elite', - 'eminent', - 'empty', - 'encouraging', - 'entire', - 'erect', - 'ethereal', - 'even', - 'exact', - 'expert', - 'extra', - 'extreme', - 'exuberant', - 'exultant', - 'faint', - 'fair', - 'false', - 'fanc', - 'fancy', - 'fast', - 'fat', - 'faulty', - 'feeble', - 'female', - 'fertile', - 'few', - 'fierce', - 'fierce ', - 'financial', - 'fine', - 'firm', - 'first', - 'fit', - 'fixed', - 'flagrant', - 'flat', - 'foamy', - 'foolish', - 'foregoing', - 'foreign', - 'forgetful', - 'former', - 'fortunate', - 'frail', - 'frantic', - 'free', - 'freezing', - 'frequent', - 'fresh', - 'fretful', - 'friendly', - 'full', - 'fun', - 'funny', - 'furry', - 'future', - 'gainful', - 'gaudy', - 'gentle', - 'giant', - 'giddy', - 'gigantic', - 'glad', - 'gleaming', - 'glib', - 'global', - 'gold', - 'gone', - 'good', - 'goofy', - 'graceful', - 'grand', - 'grateful', - 'gratis', - 'gray', - 'great', - 'green', - 'grey', - 'groovy', - 'gross', - 'guarded', - 'half', - 'handy', - 'hanging', - 'hard', - 'harsh', - 'hateful', - 'heady', - 'heavenly', - 'heavy', - 'hellish', - 'helpful', - 'hesitant', - 'high', - 'highfalutin', - 'hollow', - 'homely', - 'honest', - 'hot', - 'huge', - 'humdrum', - 'hurried', - 'hurt', - 'icy', - 'ignorant', - 'ill', - 'illegal', - 'immediate', - 'immense', - 'imminent', - 'impartial', - 'imperfect', - 'impolite', - 'important', - 'imported', - 'initial', - 'innate', - 'inner', - 'inside', - 'irate', - 'jolly', - 'juicy', - 'junior', - 'juvenile', - 'kaput', - 'keen', - 'kind', - 'kindly', - 'knowing', - 'labored', - 'lame', - 'languid', - 'large', - 'late', - 'latter', - 'learned', - 'left', - 'legal', - 'lethal', - 'level', - 'lewd', - 'light', - 'likely', - 'literate', - 'lively', - 'living', - 'lonely', - 'longing', - 'loose', - 'loud', - 'loutish', - 'lovely', - 'loving', - 'low', - 'lowly', - 'lush', - 'luxuriant', - 'lying', - 'macabre', - 'macho', - 'mad', - 'madly', - 'magenta', - 'main', - 'major', - 'makeshift', - 'male', - 'mammoth', - 'married', - 'mature', - 'measly', - 'meaty', - 'medium', - 'meek', - 'mellow', - 'mere', - 'middle', - 'miniature', - 'minor', - 'miscreant', - 'mobile', - 'moldy', - 'mundane', - 'mute', - 'naive', - 'narrow', - 'near', - 'nearby', - 'neat', - 'necessary', - 'neighborly', - 'new', - 'next', - 'nice', - 'nimble', - 'noisy', - 'nonchalant', - 'nondescript', - 'nonstop', - 'north', - 'nosy', - 'obeisant', - 'obese', - 'obscene', - 'observant', - 'obsolete', - 'odd', - 'offbeat', - 'official', - 'ok', - 'old', - 'open', - 'opposite', - 'orange', - 'organic', - 'outdoor', - 'outer', - 'outgoing', - 'oval', - 'over', - 'overall', - 'overt', - 'overweight', - 'overwrought', - 'painful', - 'pale', - 'past', - 'peaceful', - 'perfect', - 'petite', - 'picayune', - 'pink', - 'placid', - 'plain', - 'plant', - 'pleasant', - 'polite', - 'poor', - 'potential', - 'pregnant', - 'premium', - 'present', - 'pricey', - 'prickly', - 'primary', - 'prior', - 'private', - 'profuse', - 'proper', - 'public', - 'pumped', - 'puny', - 'pure', - 'purple', - 'quack', - 'quaint', - 'quick', - 'quickest', - 'quiet', - 'rabid', - 'racial', - 'rare', - 'raw', - 'ready', - 'real', - 'rebel', - 'recondite', - 'red', - 'redundant', - 'relevant', - 'remote', - 'resolute', - 'resonant', - 'rich', - 'right', - 'rightful', - 'ripe', - 'ritzy', - 'robust', - 'romantic', - 'roomy', - 'rotten', - 'rough', - 'round', - 'royal', - 'rude', - 'sad', - 'safe', - 'salty', - 'same', - 'scarce', - 'scary', - 'scientific', - 'screeching', - 'second', - 'secret', - 'secure', - 'sedate', - 'seemly', - 'selfish', - 'senior', - 'separate', - 'severe', - 'shallow', - 'sharp', - 'shiny', - 'shocking', - 'short', - 'shrill', - 'shut', - 'shy', - 'sick', - 'significant', - 'silly', - 'simple', - 'sincere', - 'single', - 'skinny', - 'slight', - 'slim', - 'slimy', - 'slow', - 'small', - 'smelly', - 'smooth', - 'snobbish', - 'social', - 'soft', - 'somber', - 'soon', - 'sordid', - 'sore', - 'sorry', - 'sour', - 'southern', - 'spare', - 'special', - 'specific', - 'spicy', - 'splendid', - 'square', - 'squeamish', - 'stale', - 'standard', - 'standing', - 'steadfast', - 'steady', - 'steep', - 'stereotyped', - 'stiff', - 'still', - 'straight', - 'strange', - 'strict', - 'striped', - 'strong', - 'stupid', - 'sturdy', - 'subdued', - 'subsequent', - 'substantial', - 'sudden', - 'super', - 'superb', - 'superficial', - 'supreme', - 'sure', - 'sweet', - 'swift', - 'taboo', - 'tall', - 'tame', - 'tan', - 'tart', - 'tasteful', - 'tawdry', - 'telling', - 'temporary', - 'tender', - 'tense', - 'terrific', - 'tested', - 'thick', - 'thin', - 'thoughtful', - 'tidy', - 'tight', - 'tiny', - 'top', - 'torpid', - 'tough', - 'tranquil', - 'trite', - 'true', - 'ugly', - 'ultra', - 'unbecoming', - 'understood', - 'uneven', - 'unfair', - 'unlikely', - 'unruly', - 'unsightly', - 'untidy', - 'unwritten', - 'upbeat', - 'upper', - 'uppity', - 'upset', - 'upstairs', - 'uptight', - 'used', - 'useful', - 'utter', - 'uttermost', - 'vagabond', - 'vague', - 'vanilla', - 'various', - 'vast', - 'vengeful', - 'verdant', - 'violet', - 'volatile', - 'vulgar', - 'wanting', - 'warm', - 'wary', - 'wasteful', - 'weak', - 'weary', - 'weekly', - 'weird', - 'welcome', - 'western', - 'wet', - 'white', - 'whole', - 'wholesale', - 'wide', - 'wild', - 'windy', - 'wiry', - 'wise', - 'wistful', - 'womanly', - 'wooden', - 'woozy', - 'wound', - 'wrong', - 'wry', - 'yellow', - 'young', - 'zany', - 'sacred', - //words that have good comparative/superlative forms - 'aggressive', - 'awesome', - 'beautiful', - 'bored', - 'boring', - 'clean', - 'dirty', - 'efficient', - 'gruesome', - 'handsome', - 'innocent', - 'lean', - 'little', - 'long', - 'mean', - 'normal', - 'proud', - 'rapid', - 'scared', - 'smart', - 'thirsty', - 'hungry', - 'clear', - 'happy', - 'lucky', - 'pretty', - 'interesting', - 'attractive', - 'dangerous', - 'intellegent', - 'formal', - 'tired', - 'solid', - 'angry', - "unknown", - "detailed", - "ongoing", - "prominent", - "permanent", - "diverse", - "partial", - "moderate", - "contemporary", - "intense", - "widespread", - "ultimate", - "ideal", - "adequate", - "sophisticated", - "naked", - "dominant", - "precise", - "intact", - "adverse", - "genuine", - "subtle", - "universal", - "resistant", - "routine", - "distant", - "unexpected", - "soviet", - "blind", - "artificial", - "mild", - "legitimate", - "unpublished", - "superior", - "intermediate", - "everyday", - "dumb", - "excess", - "sexy", - "fake", - "monthly", - "premature", - "sheer", - "generic", - "insane", - "contrary", - "twin", - "upcoming", - "bottom", - "costly", - "indirect", - "sole", - "unrelated", - "hispanic", - "improper", - "underground", - "legendary", - "reluctant", - "beloved", - "inappropriate", - "corrupt", - "irrelevant", - "justified", - "obscure", - "profound", - "hostile", - "influential", - "inadequate", - "abstract", - "timely", - "authentic", - "bold", - "intimate", - "straightforward", - "rival", - "right-wing", - "racist", - "symbolic", - "unprecedented", - "loyal", - "talented", - "troubled", - "noble", - "instant", - "incorrect", - "dense", - "blond", - "deliberate", - "blank", - "rear", - "feminine", - "apt", - "stark", - "alcoholic", - "teenage", - "vibrant", - "humble", - "vain", - "covert", - "bland", - "trendy", - "foul", - "populist", - "alarming", - "hooked", - "wicked", - "deaf", - "left-wing", - "lousy", - "malignant", - "stylish", - "upscale", - "hourly", - "refreshing", - "cozy", - "slick", - "dire", - "yearly", - "inbred", - "part-time", - "finite", - "backwards", - "nightly", - "unauthorized", - "cheesy", - "indoor", - "surreal", - "bald", - "masculine", - "shady", - "spirited", - "eerie", - "horrific", - "smug", - "stern", - "hefty", - "savvy", - "bogus", - "elaborate", - "gloomy", - "pristine", - "extravagant", - "serene", - "advanced", - "perverse", - "devout", - "crisp", - "rosy", - "slender", - "melancholy", - "faux", - "phony", - "danish", - "lofty", - "nuanced", - "lax", - "adept", - "barren", - "shameful", - "sleek", - "solemn", - "vacant", - "dishonest", - "brisk", - "fluent", - "insecure", - "humid", - "menacing", - "moot", - "soothing", - "self-loathing", - "far-reaching", - "harrowing", - "scathing", - "perplexing", - "calming", - "unconvincing", - "unsuspecting", - "unassuming", - "surprising", - "unappealing", - "vexing", - "unending", - "easygoing", - "appetizing", - "disgruntled", - "retarded", - "undecided", - "unregulated", - "unsupervised", - "unrecognized", - "crazed", - "distressed", - "jagged", - "paralleled", - "cramped", - "warped", - "antiquated", - "fabled", - "deranged", - "diseased", - "ragged", - "intoxicated", - "hallowed", - "crowded", - "ghastly", - "disorderly", - "saintly", - "wily", - "sly", - "sprightly", - "ghostly", - "oily", - "hilly", - "grisly", - "earthly", - "friendly", - "unwieldy" - ] + //verbs + var verbs = [ + "collapse", + "stake", + "forsee", + "hide", + "suck", + "answer", + "argue", + "tend", + "examine", + "depend", + "form", + "figure", + "compete", + "mind", + "surround", + "suspect", + "reflect", + "wonder", + "act", + "hope", + "end", + "thank", + "file", + "regard", + "report", + "imagine", + "consider", + "miss", + "ensure", + "cause", + "work", + "enter", + "stop", + "defeat", + "surge", + "launch", + "turn", + "give", + "win", + "like", + "control", + "relate", + "remember", + "join", + "listen", + "train", + "break", + "spring", + "enjoy", + "fail", + "understand", + "recognize", + "draw", + "obtain", + "learn", + "fill", + "announce", + "prevent", + "fall", + "achieve", + "find", + "realize", + "involve", + "remove", + "lose", + "lie", + "build", + "aid", + "visit", + "test", + "strike", + "prepare", + "wait", + "ask", + "carry", + "suppose", + "determine", + "raise", + "send", + "love", + "use", + "pull", + "improve", + "contain", + "think", + "offer", + "speak", + "rise", + "talk", + "pick", + "care", + "express", + "remain", + "operate", + "deal", + "close", + "add", + "mention", + "read", + "support", + "grow", + "decide", + "walk", + "vary", + "demand", + "describe", + "sell", + "agree", + "happen", + "allow", + "suffer", + "have", + "study", + "be", + "press", + "watch", + "seem", + "occur", + "contribute", + "claim", + "become", + "make", + "compare", + "develop", + "apply", + "direct", + "discuss", + "know", + "sit", + "see", + "lead", + "indicate", + "require", + "change", + "fix", + "come", + "reach", + "prove", + "expect", + "exist", + "play", + "permit", + "meet", + "kill", + "pay", + "charge", + "increase", + "fight", + "tell", + "catch", + "believe", + "create", + "continue", + "live", + "help", + "represent", + "edit", + "serve", + "ride", + "appear", + "cover", + "set", + "maintain", + "start", + "stay", + "move", + "extend", + "leave", + "wear", + "run", + "design", + "supply", + "suggest", + "want", + "say", + "hear", + "drive", + "approach", + "cut", + "call", + "include", + "try", + "receive", + "save", + "discover", + "marry", + "throw", + "show", + "choose", + "need", + "establish", + "keep", + "assume", + "attend", + "buy", + "unite", + "feel", + "explain", + "publish", + "accept", + "settle", + "reduce", + "bring", + "do", + "let", + "shoot", + "look", + "take", + "interact", + "concern", + "put", + "labor", + "hold", + "return", + "select", + "die", + "provide", + "seek", + "stand", + "spend", + "begin", + "get", + "wish", + "hang", + "write", + "finish", + "follow", + "forget", + "feed", + "eat", + "disagree", + "produce", + "attack", + "attempt", + "bite", + "blow", + "brake", + "brush", + "burn", + "bang", + "bomb", + "bet", + "budget", + "comfort", + "cook", + "copy", + "cough", + "crush", + "cry", + "check", + "claw", + "clip", + "combine", + "damage", + "desire", + "doubt", + "drain", + "drink", + "dance", + "decrease", + "defect", + "deposit", + "drift", + "dip", + "dive", + "divorce", + "dream", + "exchange", + "envy", + "exert", + "exercise", + "export", + "fold", + "flood", + "focus", + "forecast", + "fracture", + "grip", + "guide", + "guard", + "guarantee", + "guess", + "hate", + "heat", + "handle", + "hire", + "host", + "hunt", + "hurry", + "import", + "judge", + "jump", + "jam", + "kick", + "kiss", + "knock", + "laugh", + "lift", + "lock", + "lecture", + "link", + "load", + "loan", + "lump", + "melt", + "message", + "murder", + "neglect", + "overlap", + "overtake", + "overuse", + "print", + "protest", + "pump", + "push", + "post", + "progress", + "promise", + "purchase", + "regret", + "request", + "reward", + "roll", + "rub", + "rent", + "repair", + "sail", + "scale", + "screw", + "shake", + "shock", + "sleep", + "slip", + "smash", + "smell", + "smoke", + "sneeze", + "snow", + "stick", + "surprise", + "swim", + "scratch", + "search", + "share", + "shave", + "slide", + "spit", + "splash", + "stain", + "stress", + "swing", + "switch", + "taste", + "touch", + "trade", + "trick", + "twist", + "tie", + "trap", + "travel", + "tune", + "undergo", + "undo", + "uplift", + "vote", + "wash", + "wave", + "whistle", + "wreck", + "yawn", + "betray", + "restrict", + "perform", + "worry", + "point", + "activate", + "fear", + "plan", + "note", + "face", + "predict", + "differ", + "deserve", + "torture", + "recall", + "count", + "swear", + "admit", + "insist", + "lack", + "pass", + "belong", + "complain", + "constitute", + "beat", + "rely", + "refuse", + "range", + "cite", + "flash", + "arrive", + "reveal", + "consist", + "observe", + "notice", + "trust", + "imply", + "display", + "view", + "stare", + "acknowledge", + "owe", + "gaze", + "treat", + "account", + "gather", + "address", + "confirm", + "estimate", + "manage", + "participate", + "sneak", + "drop", + "mirror", + "experience", + "strive", + "teach", + "cost", + "arch", + "dislike", + "favor", + "earn", + "emphasize", + "fly", + "match", + "question", + "emerge", + "encourage", + "matter", + "name", + "head", + "line", + "slam", + "list", + "sing", + "warn", + "ignore", + "resemble", + "spread", + "feature", + "place", + "reverse", + "accuse", + "spoil", + "retain", + "survive", + "praise", + "function", + "please", + "date", + "remind", + "deliver", + "echo", + "engage", + "deny", + "obey", + "yield", + "center", + "gain", + "anticipate", + "reason", + "side", + "thrive", + "defy", + "dodge", + "enable", + "applaud", + "bear", + "persist", + "pose", + "reject", + "attract", + "await", + "inhibit", + "declare", + "process", + "risk", + "urge", + "value", + "block", + "confront", + "credit", + "cross", + "wake", + "amuse", + "dare", + "resent", + "smile", + "gloss", + "threaten", + "collect", + "depict", + "dismiss", + "submit", + "benefit", + "step", + "deem", + "limit", + "sense", + "issue", + "embody", + "force", + "govern", + "replace", + "aim", + "bother", + "cater", + "adopt", + "empower", + "outweigh", + "alter", + "enrich", + "influence", + "prohibit", + "pursue", + "warrant", + "convey", + "approve", + "reserve", + "rest", + "strain", + "wander", + "adjust", + "dress", + "market", + "mingle", + "disapprove", + "evaluate", + "flow", + "inhabit", + "pop", + "rule", + "depart", + "roam", + "assert", + "disappear", + "envision", + "pause", + "afford", + "challenge", + "grab", + "grumble", + "house", + "portray", + "revel", + "base", + "conduct", + "review", + "stem", + "crave", + "mark", + "store", + "target", + "unlock", + "weigh", + "resist", + "steal", + "drag", + "pour", + "reckon", + "assign", + "cling", + "rank", + "attach", + "decline", + "destroy", + "interfere", + "paint", + "skip", + "sprinkle", + "wither", + "allege", + "retire", + "score", + "monitor", + "expand", + "honor", + "lend", + "pack", + "assist", + "float", + "appeal", + "sink", + "stretch", + "undermine", + "assemble", + "boast", + "bounce", + "grasp", + "install", + "borrow", + "crack", + "elect", + "shine", + "shout", + "contrast", + "overcome", + "relax", + "relent", + "strengthen", + "conform", + "dump", + "pile", + "scare", + "relive", + "resort", + "rush", + "boost", + "cease", + "command", + "excel", + "plug", + "plunge", + "proclaim", + "discourage", + "endure", + "ruin", + "stumble", + "abandon", + "cheat", + "convince", + "merge", + "convert", + "harm", + "multiply", + "overwhelm", + "chew", + "invent", + "bury", + "wipe" + ] - //conjugate all of these adjectives to their adverbs. (13ms) - adjectives.forEach(function(j) { - main[j] = "JJ" - var adv = adj_to_adv(j) - if (adv && adv !== j && !main[adv]) { - // console.log(adv) - main[adv] = main[adv] || "RB" - } - var comp = to_comparative(j) - if (comp && !comp.match(/^more ./) && comp !== j && !main[comp]) { - // console.log(comp) - main[comp] = main[comp] || "JJR" - } - var sup = to_superlative(j) - if (sup && !sup.match(/^most ./) && sup !== j && !main[sup]) { - // console.log(sup) - main[sup] = main[sup] || "JJS" - } - }) + //conjugate all of these verbs. takes ~8ms. triples the lexicon size. + verbs.forEach(function(v) { + var c = verb_conjugate(v) + main[c.infinitive] = main[c.infinitive] || "VBP" + main[c.past] = main[c.past] || "VBD" + main[c.gerund] = main[c.gerund] || "VBG" + main[c.present] = main[c.present] || "VBZ" + if (c.participle && !main[c.participle]) { + main[c.participle] = "VBN" + } + var doer = verb_to_doer(v) + if (doer) { + main[doer] = "NNA" + } + }) - if (typeof module !== "undefined" && module.exports) { - module.exports = main; - } + //adjectives that either aren't covered by rules, or have superlative/comparative forms + var adjectives = [ + 'colonial', + 'moody', + 'literal', + 'actual', + 'probable', + 'apparent', + 'usual', + 'aberrant', + 'ablaze', + 'able', + 'absolute', + 'aboard', + 'abrupt', + 'absent', + 'absorbing', + 'absurd', + 'abundant', + 'accurate', + 'adult', + 'afraid', + 'agonizing', + 'ahead', + 'alert', + 'alive', + 'aloof', + 'amazing', + 'arbitrary', + 'arrogant', + 'asleep', + 'astonishing', + 'average', + 'awake', + 'aware', + 'awkward', + 'back', + 'bad', + 'bankrupt', + 'bawdy', + 'beneficial', + 'bent', + 'best', + 'better', + 'big', + 'bitter', + 'bizarre', + 'black', + 'bloody', + 'blue', + 'bouncy', + 'brash', + 'brave', + 'brief', + 'bright', + 'brilliant', + 'broad', + 'broken', + 'brown', + 'burly', + 'busy', + 'cagey', + 'calm', + 'careful', + 'caring', + 'certain', + 'charming', + 'cheap', + 'chief', + 'chilly', + 'civil', + 'clever', + 'close', + 'closed', + 'cloudy', + 'cold', + 'colossal', + 'commercial', + 'common', + 'complete', + 'complex', + 'concerned', + 'concrete', + 'congruent', + 'constant', + 'cooing', + 'cool', + 'correct', + 'cowardly', + 'craven', + 'cruel', + 'cuddly', + 'curly', + 'cute', + 'daily', + 'damaged', + 'damaging', + 'damp', + 'dapper', + 'dark', + 'dashing', + 'dead', + 'deadpan', + 'dear', + 'deep', + 'deeply', + 'defiant', + 'degenerate', + 'delicate', + 'delightful', + 'desperate', + 'determined', + 'didactic', + 'difficult', + 'discreet', + 'done', + 'double', + 'doubtful', + 'downtown', + 'dreary', + 'drunk', + 'dry', + 'dull', + 'eager', + 'early', + 'east', + 'eastern', + 'easy', + 'elderly', + 'elegant', + 'elfin', + 'elite', + 'eminent', + 'empty', + 'encouraging', + 'entire', + 'erect', + 'ethereal', + 'even', + 'exact', + 'expert', + 'extra', + 'extreme', + 'exuberant', + 'exultant', + 'faint', + 'fair', + 'false', + 'fanc', + 'fancy', + 'fast', + 'fat', + 'faulty', + 'feeble', + 'female', + 'fertile', + 'few', + 'fierce', + 'fierce ', + 'financial', + 'fine', + 'firm', + 'first', + 'fit', + 'fixed', + 'flagrant', + 'flat', + 'foamy', + 'foolish', + 'foregoing', + 'foreign', + 'forgetful', + 'former', + 'fortunate', + 'frail', + 'frantic', + 'free', + 'freezing', + 'frequent', + 'fresh', + 'fretful', + 'friendly', + 'full', + 'fun', + 'funny', + 'furry', + 'future', + 'gainful', + 'gaudy', + 'gentle', + 'giant', + 'giddy', + 'gigantic', + 'glad', + 'gleaming', + 'glib', + 'global', + 'gold', + 'gone', + 'good', + 'goofy', + 'graceful', + 'grand', + 'grateful', + 'gratis', + 'gray', + 'great', + 'green', + 'grey', + 'groovy', + 'gross', + 'guarded', + 'half', + 'handy', + 'hanging', + 'hard', + 'harsh', + 'hateful', + 'heady', + 'heavenly', + 'heavy', + 'hellish', + 'helpful', + 'hesitant', + 'high', + 'highfalutin', + 'hollow', + 'homely', + 'honest', + 'hot', + 'huge', + 'humdrum', + 'hurried', + 'hurt', + 'icy', + 'ignorant', + 'ill', + 'illegal', + 'immediate', + 'immense', + 'imminent', + 'impartial', + 'imperfect', + 'impolite', + 'important', + 'imported', + 'initial', + 'innate', + 'inner', + 'inside', + 'irate', + 'jolly', + 'juicy', + 'junior', + 'juvenile', + 'kaput', + 'keen', + 'kind', + 'kindly', + 'knowing', + 'labored', + 'lame', + 'languid', + 'large', + 'late', + 'latter', + 'learned', + 'left', + 'legal', + 'lethal', + 'level', + 'lewd', + 'light', + 'likely', + 'literate', + 'lively', + 'living', + 'lonely', + 'longing', + 'loose', + 'loud', + 'loutish', + 'lovely', + 'loving', + 'low', + 'lowly', + 'lush', + 'luxuriant', + 'lying', + 'macabre', + 'macho', + 'mad', + 'madly', + 'magenta', + 'main', + 'major', + 'makeshift', + 'male', + 'mammoth', + 'married', + 'mature', + 'measly', + 'meaty', + 'medium', + 'meek', + 'mellow', + 'mere', + 'middle', + 'miniature', + 'minor', + 'miscreant', + 'mobile', + 'moldy', + 'mundane', + 'mute', + 'naive', + 'narrow', + 'near', + 'nearby', + 'neat', + 'necessary', + 'neighborly', + 'new', + 'next', + 'nice', + 'nimble', + 'noisy', + 'nonchalant', + 'nondescript', + 'nonstop', + 'north', + 'nosy', + 'obeisant', + 'obese', + 'obscene', + 'observant', + 'obsolete', + 'odd', + 'offbeat', + 'official', + 'ok', + 'old', + 'open', + 'opposite', + 'orange', + 'organic', + 'outdoor', + 'outer', + 'outgoing', + 'oval', + 'over', + 'overall', + 'overt', + 'overweight', + 'overwrought', + 'painful', + 'pale', + 'past', + 'peaceful', + 'perfect', + 'petite', + 'picayune', + 'pink', + 'placid', + 'plain', + 'plant', + 'pleasant', + 'polite', + 'poor', + 'potential', + 'pregnant', + 'premium', + 'present', + 'pricey', + 'prickly', + 'primary', + 'prior', + 'private', + 'profuse', + 'proper', + 'public', + 'pumped', + 'puny', + 'pure', + 'purple', + 'quack', + 'quaint', + 'quick', + 'quickest', + 'quiet', + 'rabid', + 'racial', + 'rare', + 'raw', + 'ready', + 'real', + 'rebel', + 'recondite', + 'red', + 'redundant', + 'relevant', + 'remote', + 'resolute', + 'resonant', + 'rich', + 'right', + 'rightful', + 'ripe', + 'ritzy', + 'robust', + 'romantic', + 'roomy', + 'rotten', + 'rough', + 'round', + 'royal', + 'rude', + 'sad', + 'safe', + 'salty', + 'same', + 'scarce', + 'scary', + 'scientific', + 'screeching', + 'second', + 'secret', + 'secure', + 'sedate', + 'seemly', + 'selfish', + 'senior', + 'separate', + 'severe', + 'shallow', + 'sharp', + 'shiny', + 'shocking', + 'short', + 'shrill', + 'shut', + 'shy', + 'sick', + 'significant', + 'silly', + 'simple', + 'sincere', + 'single', + 'skinny', + 'slight', + 'slim', + 'slimy', + 'slow', + 'small', + 'smelly', + 'smooth', + 'snobbish', + 'social', + 'soft', + 'somber', + 'soon', + 'sordid', + 'sore', + 'sorry', + 'sour', + 'southern', + 'spare', + 'special', + 'specific', + 'spicy', + 'splendid', + 'square', + 'squeamish', + 'stale', + 'standard', + 'standing', + 'steadfast', + 'steady', + 'steep', + 'stereotyped', + 'stiff', + 'still', + 'straight', + 'strange', + 'strict', + 'striped', + 'strong', + 'stupid', + 'sturdy', + 'subdued', + 'subsequent', + 'substantial', + 'sudden', + 'super', + 'superb', + 'superficial', + 'supreme', + 'sure', + 'sweet', + 'swift', + 'taboo', + 'tall', + 'tame', + 'tan', + 'tart', + 'tasteful', + 'tawdry', + 'telling', + 'temporary', + 'tender', + 'tense', + 'terrific', + 'tested', + 'thick', + 'thin', + 'thoughtful', + 'tidy', + 'tight', + 'tiny', + 'top', + 'torpid', + 'tough', + 'tranquil', + 'trite', + 'true', + 'ugly', + 'ultra', + 'unbecoming', + 'understood', + 'uneven', + 'unfair', + 'unlikely', + 'unruly', + 'unsightly', + 'untidy', + 'unwritten', + 'upbeat', + 'upper', + 'uppity', + 'upset', + 'upstairs', + 'uptight', + 'used', + 'useful', + 'utter', + 'uttermost', + 'vagabond', + 'vague', + 'vanilla', + 'various', + 'vast', + 'vengeful', + 'verdant', + 'violet', + 'volatile', + 'vulgar', + 'wanting', + 'warm', + 'wary', + 'wasteful', + 'weak', + 'weary', + 'weekly', + 'weird', + 'welcome', + 'western', + 'wet', + 'white', + 'whole', + 'wholesale', + 'wide', + 'wild', + 'windy', + 'wiry', + 'wise', + 'wistful', + 'womanly', + 'wooden', + 'woozy', + 'wound', + 'wrong', + 'wry', + 'yellow', + 'young', + 'zany', + 'sacred', + //words that have good comparative/superlative forms + 'aggressive', + 'awesome', + 'beautiful', + 'bored', + 'boring', + 'clean', + 'dirty', + 'efficient', + 'gruesome', + 'handsome', + 'innocent', + 'lean', + 'little', + 'long', + 'mean', + 'normal', + 'proud', + 'rapid', + 'scared', + 'smart', + 'thirsty', + 'hungry', + 'clear', + 'happy', + 'lucky', + 'pretty', + 'interesting', + 'attractive', + 'dangerous', + 'intellegent', + 'formal', + 'tired', + 'solid', + 'angry', + "unknown", + "detailed", + "ongoing", + "prominent", + "permanent", + "diverse", + "partial", + "moderate", + "contemporary", + "intense", + "widespread", + "ultimate", + "ideal", + "adequate", + "sophisticated", + "naked", + "dominant", + "precise", + "intact", + "adverse", + "genuine", + "subtle", + "universal", + "resistant", + "routine", + "distant", + "unexpected", + "soviet", + "blind", + "artificial", + "mild", + "legitimate", + "unpublished", + "superior", + "intermediate", + "everyday", + "dumb", + "excess", + "sexy", + "fake", + "monthly", + "premature", + "sheer", + "generic", + "insane", + "contrary", + "twin", + "upcoming", + "bottom", + "costly", + "indirect", + "sole", + "unrelated", + "hispanic", + "improper", + "underground", + "legendary", + "reluctant", + "beloved", + "inappropriate", + "corrupt", + "irrelevant", + "justified", + "obscure", + "profound", + "hostile", + "influential", + "inadequate", + "abstract", + "timely", + "authentic", + "bold", + "intimate", + "straightforward", + "rival", + "right-wing", + "racist", + "symbolic", + "unprecedented", + "loyal", + "talented", + "troubled", + "noble", + "instant", + "incorrect", + "dense", + "blond", + "deliberate", + "blank", + "rear", + "feminine", + "apt", + "stark", + "alcoholic", + "teenage", + "vibrant", + "humble", + "vain", + "covert", + "bland", + "trendy", + "foul", + "populist", + "alarming", + "hooked", + "wicked", + "deaf", + "left-wing", + "lousy", + "malignant", + "stylish", + "upscale", + "hourly", + "refreshing", + "cozy", + "slick", + "dire", + "yearly", + "inbred", + "part-time", + "finite", + "backwards", + "nightly", + "unauthorized", + "cheesy", + "indoor", + "surreal", + "bald", + "masculine", + "shady", + "spirited", + "eerie", + "horrific", + "smug", + "stern", + "hefty", + "savvy", + "bogus", + "elaborate", + "gloomy", + "pristine", + "extravagant", + "serene", + "advanced", + "perverse", + "devout", + "crisp", + "rosy", + "slender", + "melancholy", + "faux", + "phony", + "danish", + "lofty", + "nuanced", + "lax", + "adept", + "barren", + "shameful", + "sleek", + "solemn", + "vacant", + "dishonest", + "brisk", + "fluent", + "insecure", + "humid", + "menacing", + "moot", + "soothing", + "self-loathing", + "far-reaching", + "harrowing", + "scathing", + "perplexing", + "calming", + "unconvincing", + "unsuspecting", + "unassuming", + "surprising", + "unappealing", + "vexing", + "unending", + "easygoing", + "appetizing", + "disgruntled", + "retarded", + "undecided", + "unregulated", + "unsupervised", + "unrecognized", + "crazed", + "distressed", + "jagged", + "paralleled", + "cramped", + "warped", + "antiquated", + "fabled", + "deranged", + "diseased", + "ragged", + "intoxicated", + "hallowed", + "crowded", + "ghastly", + "disorderly", + "saintly", + "wily", + "sly", + "sprightly", + "ghostly", + "oily", + "hilly", + "grisly", + "earthly", + "friendly", + "unwieldy" + ] - return main -})() -// console.log(lexicon['restricted']) -// console.log(lexicon['sleeping']) + //conjugate all of these adjectives to their adverbs. (13ms) + adjectives.forEach(function(j) { + main[j] = "JJ" + var adv = adj_to_adv(j) + if (adv && adv !== j && !main[adv]) { + // console.log(adv) + main[adv] = main[adv] || "RB" + } + var comp = to_comparative(j) + if (comp && !comp.match(/^more ./) && comp !== j && !main[comp]) { + // console.log(comp) + main[comp] = main[comp] || "JJR" + } + var sup = to_superlative(j) + if (sup && !sup.match(/^most ./) && sup !== j && !main[sup]) { + // console.log(sup) + main[sup] = main[sup] || "JJS" + } + }) + + if (typeof module !== "undefined" && module.exports) { + module.exports = main; + } + + return main + })() + // console.log(lexicon['restricted']) + // console.log(lexicon['sleeping']) // methods that hang on a parsed set of words // accepts parsed tokens diff --git a/client_side/nlp.min.js b/client_side/nlp.min.js index 3ff57cd5f..952ce0863 100644 --- a/client_side/nlp.min.js +++ b/client_side/nlp.min.js @@ -1,6 +1,6 @@ /*nlp_comprimise by @spencermountain in 2015*/ var nlp=function(){var a=function(a){var b=[],c=a.split(/(\S.+?[.\?!])(?=\s+|$|")/g),d=["jr","mr","mrs","ms","dr","prof","sr","sen","corp","rep","gov","atty","supt","det","rev","col","gen","lt","cmdr","adm","capt","sgt","cpl","maj","miss","misses","mister","sir","esq","mstr","phd","adj","adv","asst","bldg","brig","comdr","hon","messrs","mlle","mme","op","ord","pvt","reps","res","sens","sfc","surg"];d=d.concat(["arc","al","ave","blvd","cl","ct","cres","exp","rd","st","dist","mt","ft","fy","hwy","la","pd","pl","plz","tce","vs","etc","esp","llb","md","bl","ma","ba","lit","fl","ex","eg"]),d=d.concat(["ala","ariz","ark","cal","calif","col","colo","conn","del","fed","fla","ga","ida","id","ill","ind","ia","kan","kans","ken","ky","la","me","md","mass","mich","minn","miss","mo","mont","neb","nebr","nev","mex","okla","ok","ore","penna","penn","pa","dak","tenn","tex","ut","vt","va","wash","wis","wisc","wy","wyo","usafa","alta","ont","que","sask","yuk"]),d=d.concat(["jan","feb","mar","apr","jun","jul","aug","sep","oct","nov","dec","sept","sep"]),d=d.concat(["dept","univ","assn","bros","inc","ltd","co","corp"]),d=d.concat(["yahoo","joomla","jeopardy"]);var e=new RegExp("(^| )("+d.join("|")+")[.!?] ?$","i"),f=c.length;for(i=0;i=c;c++)k.push({});for(a=a.replace(j," ").replace(/^\s+/,"").replace(/\s+$/,""),a=a.toLowerCase(),a=a.split(/\s+/),c=0,f=a.length;f>c;c++)for(g=a[c],k[1][g]=(k[1][g]||0)+1,d=2;i>=d&&f>=c+d;d++)g+=" "+a[c+d-1],k[d][g]=(k[d][g]||0)+1;for(c=void 0,e=1;i>=e;e++){l[e]=[];var m=k[e];for(c in m)m.hasOwnProperty(c)&&m[c]>=h&&l[e].push({word:c,count:m[c],size:e})}return l=l.filter(function(a){return null!==a}),l=l.map(function(a){return a=a.sort(function(a,b){return b.count-a.count})})};return"undefined"!=typeof module&&module.exports&&(exports.ngram=a),a}(),c=function(){"undefined"!=typeof module&&module.exports&&(a=require("./sentence").sentences);var b=["of course","at least","no longer","sort of","at first","once again","up to","once more","by now","all but","just about","as yet","on board","a lot","by far","at best","at large","for good","vice versa","en route","for sure","upside down","at most","per se","up front","in situ","in vitro","at worst","prima facie","upwards of","en masse","a priori","ad hoc","et cetera","de facto","off guard","spot on","ipso facto","ad infinitum","point blank","ad nauseam","inside out","not withstanding","for keeps","de jure","a la","sub judice","post hoc","ad hominem","a posteriori","fed up","brand new","old fashioned","bona fide","well off","far off","par excellence","straight forward","hard up","sui generis","en suite","avant garde","sans serif","gung ho","super duper","de trop","new york","new england","new hampshire","new delhi","new jersey","new mexico","united states","united kingdom","great britain","zero sum"].map(function(a){return a.split(" ")}),c=function(a){return a?(a=a.toLowerCase(),a=a.replace(/[,\.!:;\?\(\)]/,""),a=a.replace(/’/g,"'"),a=a.replace(/"/g,""),a.match(/[a-z0-9]/i)?a:""):""},d=function(a){return a.match(/\?$/)?"question":"statement"},e=function(a){for(var d=[],e=0;e0,punctuated:null!==a.match(/[,;:\(\)"]/)||void 0,end:d===b.length-1||void 0,start:0===d||void 0}});return{sentence:a,tokens:f,type:d(a)}})};return"undefined"!=typeof module&&module.exports&&(exports.tokenize=f),f}(),d=function(){var a=[["²","2"],["ƻ","2"],["³","3"],["Ʒ","3"],["Ƹ","3"],["ƹ","3"],["ƺ","3"],["Ǯ","3"],["ǯ","3"],["З","3"],["Ҙ","3"],["ҙ","3"],["Ӟ","3"],["ӟ","3"],["Ӡ","3"],["ӡ","3"],["Ȝ","3"],["ȝ","3"],["Ƽ","5"],["ƽ","5"],["Ȣ","8"],["ȣ","8"],["¡","!"],["¿","?"],["Ɂ","?"],["ɂ","?"],["ª","a"],["À","a"],["Á","a"],["Â","a"],["Ã","a"],["Ä","a"],["Å","a"],["à","a"],["á","a"],["â","a"],["ã","a"],["ä","a"],["å","a"],["Ā","a"],["ā","a"],["Ă","a"],["ă","a"],["Ą","a"],["ą","a"],["Ǎ","a"],["ǎ","a"],["Ǟ","a"],["ǟ","a"],["Ǡ","a"],["ǡ","a"],["Ǻ","a"],["ǻ","a"],["Ȁ","a"],["ȁ","a"],["Ȃ","a"],["ȃ","a"],["Ȧ","a"],["ȧ","a"],["Ⱥ","a"],["Ά","a"],["Α","a"],["Δ","a"],["Λ","a"],["ά","a"],["α","a"],["λ","a"],["А","a"],["Д","a"],["а","a"],["д","a"],["Ѧ","a"],["ѧ","a"],["Ӑ","a"],["ӑ","a"],["Ӓ","a"],["ӓ","a"],["ƛ","a"],["Ʌ","a"],["ß","b"],["þ","b"],["ƀ","b"],["Ɓ","b"],["Ƃ","b"],["ƃ","b"],["Ƅ","b"],["ƅ","b"],["Ƀ","b"],["Β","b"],["β","b"],["ϐ","b"],["Ϧ","b"],["Б","b"],["В","b"],["Ъ","b"],["Ь","b"],["б","b"],["в","b"],["ъ","b"],["ь","b"],["Ѣ","b"],["ѣ","b"],["Ҍ","b"],["ҍ","b"],["Ҕ","b"],["ҕ","b"],["ƥ","b"],["ƾ","b"],["¢","c"],["©","c"],["Ç","c"],["ç","c"],["Ć","c"],["ć","c"],["Ĉ","c"],["ĉ","c"],["Ċ","c"],["ċ","c"],["Č","c"],["č","c"],["Ɔ","c"],["Ƈ","c"],["ƈ","c"],["Ȼ","c"],["ȼ","c"],["ͻ","c"],["ͼ","c"],["ͽ","c"],["ϲ","c"],["Ϲ","c"],["Ͻ","c"],["Ͼ","c"],["Ͽ","c"],["Є","c"],["С","c"],["с","c"],["є","c"],["Ҁ","c"],["ҁ","c"],["Ҫ","c"],["ҫ","c"],["Ð","d"],["Ď","d"],["ď","d"],["Đ","d"],["đ","d"],["Ɖ","d"],["Ɗ","d"],["ȡ","d"],["Ƌ","d"],["ƌ","d"],["Ƿ","d"],["È","e"],["É","e"],["Ê","e"],["Ë","e"],["è","e"],["é","e"],["ê","e"],["ë","e"],["Ē","e"],["ē","e"],["Ĕ","e"],["ĕ","e"],["Ė","e"],["ė","e"],["Ę","e"],["ę","e"],["Ě","e"],["ě","e"],["Ǝ","e"],["Ə","e"],["Ɛ","e"],["ǝ","e"],["Ȅ","e"],["ȅ","e"],["Ȇ","e"],["ȇ","e"],["Ȩ","e"],["ȩ","e"],["Ɇ","e"],["ɇ","e"],["Έ","e"],["Ε","e"],["Ξ","e"],["Σ","e"],["έ","e"],["ε","e"],["ξ","e"],["ϱ","e"],["ϵ","e"],["϶","e"],["Ѐ","e"],["Ё","e"],["Е","e"],["Э","e"],["е","e"],["ѐ","e"],["ё","e"],["Ҽ","e"],["ҽ","e"],["Ҿ","e"],["ҿ","e"],["Ӗ","e"],["ӗ","e"],["Ә","e"],["ә","e"],["Ӛ","e"],["ӛ","e"],["Ӭ","e"],["ӭ","e"],["Ƒ","f"],["ƒ","f"],["Ϝ","f"],["ϝ","f"],["Ӻ","f"],["ӻ","f"],["Ĝ","g"],["ĝ","g"],["Ğ","g"],["ğ","g"],["Ġ","g"],["ġ","g"],["Ģ","g"],["ģ","g"],["Ɠ","g"],["Ǥ","g"],["ǥ","g"],["Ǧ","g"],["ǧ","g"],["Ǵ","g"],["ǵ","g"],["Ĥ","h"],["ĥ","h"],["Ħ","h"],["ħ","h"],["ƕ","h"],["Ƕ","h"],["Ȟ","h"],["ȟ","h"],["Ή","h"],["Η","h"],["Ђ","h"],["Њ","h"],["Ћ","h"],["Н","h"],["н","h"],["ђ","h"],["ћ","h"],["Ң","h"],["ң","h"],["Ҥ","h"],["ҥ","h"],["Һ","h"],["һ","h"],["Ӊ","h"],["ӊ","h"],["Ì","I"],["Í","I"],["Î","I"],["Ï","I"],["ì","i"],["í","i"],["î","i"],["ï","i"],["Ĩ","i"],["ĩ","i"],["Ī","i"],["ī","i"],["Ĭ","i"],["ĭ","i"],["Į","i"],["į","i"],["İ","i"],["ı","i"],["Ɩ","i"],["Ɨ","i"],["Ȉ","i"],["ȉ","i"],["Ȋ","i"],["ȋ","i"],["Ί","i"],["ΐ","i"],["Ϊ","i"],["ί","i"],["ι","i"],["ϊ","i"],["І","i"],["Ї","i"],["і","i"],["ї","i"],["Ĵ","j"],["ĵ","j"],["ǰ","j"],["ȷ","j"],["Ɉ","j"],["ɉ","j"],["ϳ","j"],["Ј","j"],["ј","j"],["Ķ","k"],["ķ","k"],["ĸ","k"],["Ƙ","k"],["ƙ","k"],["Ǩ","k"],["ǩ","k"],["Κ","k"],["κ","k"],["Ќ","k"],["Ж","k"],["К","k"],["ж","k"],["к","k"],["ќ","k"],["Қ","k"],["қ","k"],["Ҝ","k"],["ҝ","k"],["Ҟ","k"],["ҟ","k"],["Ҡ","k"],["ҡ","k"],["Ĺ","l"],["ĺ","l"],["Ļ","l"],["ļ","l"],["Ľ","l"],["ľ","l"],["Ŀ","l"],["ŀ","l"],["Ł","l"],["ł","l"],["ƚ","l"],["ƪ","l"],["ǀ","l"],["Ǐ","l"],["ǐ","l"],["ȴ","l"],["Ƚ","l"],["Ι","l"],["Ӏ","l"],["ӏ","l"],["Μ","m"],["Ϻ","m"],["ϻ","m"],["М","m"],["м","m"],["Ӎ","m"],["ӎ","m"],["Ñ","n"],["ñ","n"],["Ń","n"],["ń","n"],["Ņ","n"],["ņ","n"],["Ň","n"],["ň","n"],["ʼn","n"],["Ŋ","n"],["ŋ","n"],["Ɲ","n"],["ƞ","n"],["Ǹ","n"],["ǹ","n"],["Ƞ","n"],["ȵ","n"],["Ν","n"],["Π","n"],["ή","n"],["η","n"],["Ϟ","n"],["Ѝ","n"],["И","n"],["Й","n"],["Л","n"],["П","n"],["и","n"],["й","n"],["л","n"],["п","n"],["ѝ","n"],["Ҋ","n"],["ҋ","n"],["Ӆ","n"],["ӆ","n"],["Ӣ","n"],["ӣ","n"],["Ӥ","n"],["ӥ","n"],["π","n"],["Ò","o"],["Ó","o"],["Ô","o"],["Õ","o"],["Ö","o"],["Ø","o"],["ð","o"],["ò","o"],["ó","o"],["ô","o"],["õ","o"],["ö","o"],["ø","o"],["Ō","o"],["ō","o"],["Ŏ","o"],["ŏ","o"],["Ő","o"],["ő","o"],["Ɵ","o"],["Ơ","o"],["ơ","o"],["Ǒ","o"],["ǒ","o"],["Ǫ","o"],["ǫ","o"],["Ǭ","o"],["ǭ","o"],["Ǿ","o"],["ǿ","o"],["Ȍ","o"],["ȍ","o"],["Ȏ","o"],["ȏ","o"],["Ȫ","o"],["ȫ","o"],["Ȭ","o"],["ȭ","o"],["Ȯ","o"],["ȯ","o"],["Ȱ","o"],["ȱ","o"],["Ό","o"],["Θ","o"],["Ο","o"],["Φ","o"],["Ω","o"],["δ","o"],["θ","o"],["ο","o"],["σ","o"],["ό","o"],["ϕ","o"],["Ϙ","o"],["ϙ","o"],["Ϭ","o"],["ϭ","o"],["ϴ","o"],["О","o"],["Ф","o"],["о","o"],["Ѳ","o"],["ѳ","o"],["Ѻ","o"],["ѻ","o"],["Ѽ","o"],["ѽ","o"],["Ӧ","o"],["ӧ","o"],["Ө","o"],["ө","o"],["Ӫ","o"],["ӫ","o"],["¤","o"],["ƍ","o"],["Ώ","o"],["Ƥ","p"],["ƿ","p"],["Ρ","p"],["ρ","p"],["Ϸ","p"],["ϸ","p"],["ϼ","p"],["Р","p"],["р","p"],["Ҏ","p"],["ҏ","p"],["Þ","p"],["Ɋ","q"],["ɋ","q"],["Ŕ","r"],["ŕ","r"],["Ŗ","r"],["ŗ","r"],["Ř","r"],["ř","r"],["Ʀ","r"],["Ȑ","r"],["ȑ","r"],["Ȓ","r"],["ȓ","r"],["Ɍ","r"],["ɍ","r"],["Ѓ","r"],["Г","r"],["Я","r"],["г","r"],["я","r"],["ѓ","r"],["Ґ","r"],["ґ","r"],["Ғ","r"],["ғ","r"],["Ӷ","r"],["ӷ","r"],["ſ","r"],["Ś","s"],["ś","s"],["Ŝ","s"],["ŝ","s"],["Ş","s"],["ş","s"],["Š","s"],["š","s"],["Ƨ","s"],["ƨ","s"],["Ș","s"],["ș","s"],["ȿ","s"],["ς","s"],["Ϛ","s"],["ϛ","s"],["ϟ","s"],["Ϩ","s"],["ϩ","s"],["Ѕ","s"],["ѕ","s"],["Ţ","t"],["ţ","t"],["Ť","t"],["ť","t"],["Ŧ","t"],["ŧ","t"],["ƫ","t"],["Ƭ","t"],["ƭ","t"],["Ʈ","t"],["Ț","t"],["ț","t"],["ȶ","t"],["Ⱦ","t"],["Γ","t"],["Τ","t"],["τ","t"],["Ϯ","t"],["ϯ","t"],["Т","t"],["т","t"],["҂","t"],["Ҭ","t"],["ҭ","t"],["µ","u"],["Ù","u"],["Ú","u"],["Û","u"],["Ü","u"],["ù","u"],["ú","u"],["û","u"],["ü","u"],["Ũ","u"],["ũ","u"],["Ū","u"],["ū","u"],["Ŭ","u"],["ŭ","u"],["Ů","u"],["ů","u"],["Ű","u"],["ű","u"],["Ų","u"],["ų","u"],["Ư","u"],["ư","u"],["Ʊ","u"],["Ʋ","u"],["Ǔ","u"],["ǔ","u"],["Ǖ","u"],["ǖ","u"],["Ǘ","u"],["ǘ","u"],["Ǚ","u"],["ǚ","u"],["Ǜ","u"],["ǜ","u"],["Ȕ","u"],["ȕ","u"],["Ȗ","u"],["ȗ","u"],["Ʉ","u"],["ΰ","u"],["μ","u"],["υ","u"],["ϋ","u"],["ύ","u"],["ϑ","u"],["Џ","u"],["Ц","u"],["Ч","u"],["ц","u"],["џ","u"],["Ҵ","u"],["ҵ","u"],["Ҷ","u"],["ҷ","u"],["Ҹ","u"],["ҹ","u"],["Ӌ","u"],["ӌ","u"],["Ӈ","u"],["ӈ","u"],["Ɣ","v"],["ν","v"],["Ѵ","v"],["ѵ","v"],["Ѷ","v"],["ѷ","v"],["Ŵ","w"],["ŵ","w"],["Ɯ","w"],["ω","w"],["ώ","w"],["ϖ","w"],["Ϣ","w"],["ϣ","w"],["Ш","w"],["Щ","w"],["ш","w"],["щ","w"],["ѡ","w"],["ѿ","w"],["×","x"],["Χ","x"],["χ","x"],["ϗ","x"],["ϰ","x"],["Х","x"],["х","x"],["Ҳ","x"],["ҳ","x"],["Ӽ","x"],["ӽ","x"],["Ӿ","x"],["ӿ","x"],["¥","y"],["Ý","y"],["ý","y"],["ÿ","y"],["Ŷ","y"],["ŷ","y"],["Ÿ","y"],["Ƴ","y"],["ƴ","y"],["Ȳ","y"],["ȳ","y"],["Ɏ","y"],["ɏ","y"],["Ύ","y"],["Υ","y"],["Ψ","y"],["Ϋ","y"],["γ","y"],["ψ","y"],["ϒ","y"],["ϓ","y"],["ϔ","y"],["Ў","y"],["У","y"],["у","y"],["ч","y"],["ў","y"],["Ѱ","y"],["ѱ","y"],["Ү","y"],["ү","y"],["Ұ","y"],["ұ","y"],["Ӯ","y"],["ӯ","y"],["Ӱ","y"],["ӱ","y"],["Ӳ","y"],["ӳ","y"],["Ź","z"],["ź","z"],["Ż","z"],["ż","z"],["Ž","z"],["ž","z"],["Ʃ","z"],["Ƶ","z"],["ƶ","z"],["Ȥ","z"],["ȥ","z"],["ɀ","z"],["Ζ","z"],["ζ","z"]],b={},c={};a.forEach(function(a){b[a[0]]=a[1],c[a[1]]=a[0]});var d=function(a,c){c=c||{},c.percentage=c.percentage||50;var d=a.split("").map(function(a){var d=100*Math.random();return b[a]&&d2)return a;for(var b=[/^[^aeiou]?ion/,/^[^aeiou]?ised/,/^[^aeiou]?iled/],c=a.length,d=a[c-2]+a[c-1],e=0;en){j+=n*q,q=.1*q,p=0;continue}if(100>n){j+=.1*n*q,q=.01*q,p=0;continue}}if(m.match(/^[0-9]\.[0-9]$/))p+=parseFloat(m);else if(parseInt(m,10)!=m)if(void 0===a[m])if(b[m]){if(f)return null;if(g)return null;if(h)return null;g=!0,p+=b[m]}else if(c[m]){if(f)return null;if(g)return null;if(h)return null;h=!0,p+=c[m]}else{if(!d[m])return null;if(i[m])return null;i[m]=!0,f=!1,g=!1,h=!1,0===p?(j=j||1,j*=d[m]):(p*=d[m],j+=p),p=0}else{if(f)return null;if(g)return null;f=!0,p+=a[m]}else p+=parseInt(m,10)}else{if(r)return null;r=!0,j+=p,p=0,f=!1,q=.1}return p&&(j+=(p||1)*q),j*=k};return"undefined"!=typeof module&&module.exports&&(module.exports=e),e}(),m=function(){var a="(january|february|march|april|may|june|july|august|september|october|november|december|jan|feb|mar|apr|aug|sept|oct|nov|dec),?",b="([0-9]{1,2}),?",c="([12][0-9]{3})",d=function(a,b){return Object.keys(b).reduce(function(c,d){return c[d]=a[b[d]],c},{})},e=[{reg:String(a)+" "+String(b)+"-"+String(b)+" "+String(c),example:"March 7th-11th 1987",process:function(a){var b;return a||(a=[]),b={month:1,day:2,to_day:3,year:4},d(a,b)}},{reg:String(b)+" of "+String(a)+" to "+String(b)+" of "+String(a)+",? "+String(c),example:"28th of September to 5th of October 2008",process:function(a){var b;return a||(a=[]),b={day:1,month:2,to_day:3,to_month:4,to_year:5},d(a,b)}},{reg:String(a)+" "+String(b)+" to "+String(a)+" "+String(b)+" "+String(c),example:"March 7th to june 11th 1987",process:function(a){var b;return a||(a=[]),b={month:1,day:2,to_month:3,to_day:4,year:5,to_year:5},d(a,b)}},{reg:"between "+String(b)+" "+String(a)+" and "+String(b)+" "+String(a)+" "+String(c),example:"between 13 February and 15 February 1945",process:function(a){var b;return a||(a=[]),b={day:1,month:2,to_day:3,to_month:4,year:5,to_year:5},d(a,b)}},{reg:"between "+String(a)+" "+String(b)+" and "+String(a)+" "+String(b)+" "+String(c),example:"between March 7th and june 11th 1987",process:function(a){var b;return a||(a=[]),b={month:1,day:2,to_month:3,to_day:4,year:5,to_year:5},d(a,b)}},{reg:String(a)+" "+String(b)+" "+String(c),example:"March 1st 1987",process:function(a){var b;return a||(a=[]),b={month:1,day:2,year:3},d(a,b)}},{reg:String(b)+" - "+String(b)+" of "+String(a)+",? "+String(c),example:"3rd - 5th of March 1969",process:function(a){var b;return a||(a=[]),b={day:1,to_day:2,month:3,year:4},d(a,b)}},{reg:String(b)+" of "+String(a)+",? "+String(c),example:"3rd of March 1969",process:function(a){var b;return a||(a=[]),b={day:1,month:2,year:3},d(a,b)}},{reg:String(a)+" "+c+",? to "+String(a)+" "+String(c),example:"September 1939 to April 1945",process:function(a){var b;return a||(a=[]),b={month:1,year:2,to_month:3,to_year:4},d(a,b)}},{reg:String(a)+" "+String(c),example:"March 1969",process:function(a){var b;return a||(a=[]),b={month:1,year:2},d(a,b)}},{reg:String(a)+" "+b,example:"March 18th",process:function(a){var b;return a||(a=[]),b={month:1,day:2},d(a,b)}},{reg:String(b)+" of "+a,example:"18th of March",process:function(a){var b;return a||(a=[]),b={month:2,day:1},d(a,b)}},{reg:c+" ?- ?"+String(c),example:"1997-1998",process:function(a){var b;return a||(a=[]),b={year:1,to_year:2},d(a,b)}},{reg:c,example:"1998",process:function(a){var b;return a||(a=[]),b={year:1},d(a,b)}}].map(function(a){return a.reg=new RegExp(a.reg,"g"),a}),f={january:0,february:1,march:2,april:3,may:4,june:5,july:6,august:7,september:8,october:9,november:10,december:11,jan:0,feb:1,mar:2,apr:3,aug:7,sept:8,oct:9,nov:10,dec:11},g=[31,29,31,30,31,30,31,31,30,31,30,31],h=function(a){return a=a.toLowerCase(),a=a.replace(/([0-9])(th|rd|st)/g,"$1")},i=function(a,b){var c;return c=new Date,b=b||{},a.year=parseInt(a.year,10)||void 0,a.day=parseInt(a.day,10)||void 0,a.to_day=parseInt(a.to_day,10)||void 0,a.to_year=parseInt(a.to_year,10)||void 0,a.month=f[a.month],a.to_month=f[a.to_month],void 0!==a.to_month&&void 0===a.month&&(a.month=a.to_month),void 0===a.to_month&&void 0!==a.month&&(a.to_month=a.month),a.to_year&&!a.year&&(a.year=a.to_year),!a.to_year&&a.year&&void 0!==a.to_month&&(a.to_year=a.year),b.assume_year&&!a.year&&(a.year=c.getFullYear()),void 0!==a.day&&(a.day>31||void 0!==a.month&&a.day>g[a.month])&&(a.day=void 0),void 0!==a.to_month&&a.to_month2090||a.year<1200)&&(a.year=void 0,a.to_year=void 0),a={day:a.day,month:a.month,year:a.year,to:{day:a.to_day,month:a.to_month,year:a.to_year}},a.year&&a.day&&void 0!==a.month&&(a.date_object=new Date,a.date_object.setYear(a.year),a.date_object.setMonth(a.month),a.date_object.setDate(a.day)),a.to.year&&a.to.day&&void 0!==a.to.month&&(a.to.date_object=new Date,a.to.date_object.setYear(a.to.year),a.to.date_object.setMonth(a.to.month),a.to.date_object.setDate(a.to.day)),a.year||void 0!==a.month?a:{})},j=function(a,b){var c,d,f,g,j;for(b=b||{},a=h(a),g=0,j=e.length;j>g;g++)if(f=e[g],a.match(f.reg))return c=f.reg.exec(a),d=f.process(c),d=i(d,b);return{}};return"undefined"!=typeof module&&module.exports&&(module.exports=j),j}(),n=function(a,b,c,d){var e=this;return e.word=a||"","undefined"!=typeof module&&module.exports&&(l=require("./to_number"),m=require("./date_extractor"),k=require("../../data/parts_of_speech")),e.date=function(a){return a=a||{},m(e.word,a)},e.is_date=function(){var a=/(january|february|march|april|may|june|july|august|september|october|november|december|jan|feb|mar|apr|aug|sept|oct|nov|dec)/i,b=/1?[0-9]:[0-9]{2}/,c=/\b(monday|tuesday|wednesday|thursday|friday|saturday|sunday|mon|tues|wed|thurs|fri|sat|sun)\b/i;return e.word.match(a)||e.word.match(b)||e.word.match(c)?!0:!1},e.number=function(){return e.is_date()?null:l(e.word)},e.which=function(){return e.date()?k.DA:e.number()?k.NU:k.CD}(),e};"undefined"!=typeof module&&module.exports&&(module.exports=n);var o=function(){var a=function(a){if(!a)return null;var b={hour:"an",heir:"an",heirloom:"an",honest:"an",honour:"an",honor:"an",uber:"an"},c=function(a){return a.length<=5&&a.match(/^[A-Z]*$/)?!0:a.length>=4&&a.match(/^([A-Z]\.)*$/)?!0:!1},d={A:!0,E:!0,F:!0,H:!0,I:!0,L:!0,M:!0,N:!0,O:!0,R:!0,S:!0,X:!0},e=[/^onc?e/i,/^u[bcfhjkqrstn][aeiou]/i,/^eul/i];if(b[a])return b[a];if(c(a)&&d[a.substr(0,1)])return"an";for(var f=0;f3?!0:!1},i=function(a){return c[a]?{plural:a,singular:a}:h(a)?{plural:a,singular:g(a)}:{singular:a,plural:e(a)}},j={inflect:i,is_plural:h,singularize:g,pluralize:e};return"undefined"!=typeof module&&module.exports&&(module.exports=j),j}(),q=function(a,b,c,d){var e=this;e.word=a||"",e.next=b,e.last=c,"undefined"!=typeof module&&module.exports&&(k=require("../../data/parts_of_speech"),p=require("./conjugate/inflect"),o=require("./indefinite_article/indefinite_article"));var f={it:"PRP",they:"PRP",i:"PRP",them:"PRP",you:"PRP",she:"PRP",me:"PRP",he:"PRP",him:"PRP",her:"PRP",us:"PRP",we:"PRP",thou:"PRP"};return e.is_acronym=function(){var a=e.word;return a.length<=5&&a.match(/^[A-Z]*$/)?!0:a.length>=4&&a.match(/^([A-Z]\.)*$/)?!0:!1}(),e.is_entity=function(){if(!d)return!1;var a={itself:1,west:1,western:1,east:1,eastern:1,north:1,northern:1,south:1,southern:1,the:1,one:1,your:1,my:1,today:1,yesterday:1,tomorrow:1,era:1,century:1,it:1};if(f[d.normalised])return!1;if(a[d.normalised])return!1;if(d.pos){if("NNA"==d.pos.tag)return!1;if("NNO"==d.pos.tag)return!1;if("NNG"==d.pos.tag)return!1}return d.special_capitalised?!0:d.normalised.match(/ /)?!0:d.normalised.match(/\./)?!0:e.is_acronym?!0:!1}(),e.conjugate=function(){return p.inflect(e.word)},e.is_plural=function(){return p.is_plural(e.word)}(),e.article=function(){return o(e.word)},e.pluralize=function(){return(p.inflect(e.word)||{}).plural},e.singularize=function(){return(p.inflect(e.word)||{}).singular},e.which=function(){if(e.word.match(/'s$/))return k.NNO;if(e.word.match(/..ing$/))return k.NNG;if(f[e.word])return k.PRP;var a=e.word.substr(0,1);return a.toLowerCase()!==a?e.is_acronym?k.NNPA:e.is_plural?k.NNPS:k.NNP:e.is_plural?k.NNS:k.NN}(),e};"undefined"!=typeof module&&module.exports&&(module.exports=q);var r=function(){var a=function(a){var b={idly:"idle",sporadically:"sporadic",basically:"basic",grammatically:"grammatical",alphabetically:"alphabetical",economically:"economical",conically:"conical",politically:"political",vertically:"vertical",practically:"practical",theoretically:"theoretical",critically:"critical",fantastically:"fantastic",mystically:"mystical",pornographically:"pornographic",fully:"full",jolly:"jolly",wholly:"whole"},c=[{reg:/bly$/i,repl:"ble"},{reg:/gically$/i,repl:"gical"},{reg:/([rsdh])ically$/i,repl:"$1ical"},{reg:/ically$/i,repl:"ic"},{reg:/uly$/i,repl:"ue"},{reg:/ily$/i,repl:"y"},{reg:/(.{3})ly$/i,repl:"$1"}];if(b[a])return b[a];for(var d=0;d4?a.replace(/ed$/,""):a.replace(/d$/,"");var c,d,e,f;return a.match(/[^aeiou]$/)?(e=a+"ing",d=a+"ed",c=a.match(/ss$/)?a+"es":a+"s",f=v(b)):(e=a.replace(/[aeiou]$/,"ing"),d=a.replace(/[aeiou]$/,"ed"),c=a.replace(/[aeiou]$/,"es"),f=v(b)),{infinitive:b,present:c,past:d,gerund:e,doer:f,future:"will "+b}},c=function(a,b){return a.infinitive?(a.gerund||(a.gerund=a.infinitive+"ing"),a.doer||(a.doer=v(a.infinitive)),a.present||(a.present=a.infinitive+"s"),a.past||(a.past=a.infinitive+"ed"),b&&Object.keys(a).forEach(function(c){a[c]=b+a[c]}),a.future||(a.future="will "+a.infinitive),a):a},d=function(d){if(!d)return{};d=d.replace(/^will /i,"");var e,f,g=(d.match(/^(over|under|re|anti|full)\-?/i)||[])[0],h=d.replace(/^(over|under|re|anti|full)\-?/i,"");for(f=0;fn){j+=n*q,q=.1*q,p=0;continue}if(100>n){j+=.1*n*q,q=.01*q,p=0;continue}}if(m.match(/^[0-9]\.[0-9]$/))p+=parseFloat(m);else if(parseInt(m,10)!=m)if(void 0===a[m])if(b[m]){if(f)return null;if(g)return null;if(h)return null;g=!0,p+=b[m]}else if(c[m]){if(f)return null;if(g)return null;if(h)return null;h=!0,p+=c[m]}else{if(!d[m])return null;if(i[m])return null;i[m]=!0,f=!1,g=!1,h=!1,0===p?(j=j||1,j*=d[m]):(p*=d[m],j+=p),p=0}else{if(f)return null;if(g)return null;f=!0,p+=a[m]}else p+=parseInt(m,10)}else{if(r)return null;r=!0,j+=p,p=0,f=!1,q=.1}return p&&(j+=(p||1)*q),j*=k};return"undefined"!=typeof module&&module.exports&&(module.exports=e),e}(),m=function(){var a="(january|february|march|april|may|june|july|august|september|october|november|december|jan|feb|mar|apr|aug|sept|oct|nov|dec),?",b="([0-9]{1,2}),?",c="([12][0-9]{3})",d=function(a,b){return Object.keys(b).reduce(function(c,d){return c[d]=a[b[d]],c},{})},e=[{reg:String(a)+" "+String(b)+"-"+String(b)+" "+String(c),example:"March 7th-11th 1987",process:function(a){var b;return a||(a=[]),b={month:1,day:2,to_day:3,year:4},d(a,b)}},{reg:String(b)+" of "+String(a)+" to "+String(b)+" of "+String(a)+",? "+String(c),example:"28th of September to 5th of October 2008",process:function(a){var b;return a||(a=[]),b={day:1,month:2,to_day:3,to_month:4,to_year:5},d(a,b)}},{reg:String(a)+" "+String(b)+" to "+String(a)+" "+String(b)+" "+String(c),example:"March 7th to june 11th 1987",process:function(a){var b;return a||(a=[]),b={month:1,day:2,to_month:3,to_day:4,year:5,to_year:5},d(a,b)}},{reg:"between "+String(b)+" "+String(a)+" and "+String(b)+" "+String(a)+" "+String(c),example:"between 13 February and 15 February 1945",process:function(a){var b;return a||(a=[]),b={day:1,month:2,to_day:3,to_month:4,year:5,to_year:5},d(a,b)}},{reg:"between "+String(a)+" "+String(b)+" and "+String(a)+" "+String(b)+" "+String(c),example:"between March 7th and june 11th 1987",process:function(a){var b;return a||(a=[]),b={month:1,day:2,to_month:3,to_day:4,year:5,to_year:5},d(a,b)}},{reg:String(a)+" "+String(b)+" "+String(c),example:"March 1st 1987",process:function(a){var b;return a||(a=[]),b={month:1,day:2,year:3},d(a,b)}},{reg:String(b)+" - "+String(b)+" of "+String(a)+",? "+String(c),example:"3rd - 5th of March 1969",process:function(a){var b;return a||(a=[]),b={day:1,to_day:2,month:3,year:4},d(a,b)}},{reg:String(b)+" of "+String(a)+",? "+String(c),example:"3rd of March 1969",process:function(a){var b;return a||(a=[]),b={day:1,month:2,year:3},d(a,b)}},{reg:String(a)+" "+c+",? to "+String(a)+" "+String(c),example:"September 1939 to April 1945",process:function(a){var b;return a||(a=[]),b={month:1,year:2,to_month:3,to_year:4},d(a,b)}},{reg:String(a)+" "+String(c),example:"March 1969",process:function(a){var b;return a||(a=[]),b={month:1,year:2},d(a,b)}},{reg:String(a)+" "+b,example:"March 18th",process:function(a){var b;return a||(a=[]),b={month:1,day:2},d(a,b)}},{reg:String(b)+" of "+a,example:"18th of March",process:function(a){var b;return a||(a=[]),b={month:2,day:1},d(a,b)}},{reg:c+" ?- ?"+String(c),example:"1997-1998",process:function(a){var b;return a||(a=[]),b={year:1,to_year:2},d(a,b)}},{reg:c,example:"1998",process:function(a){var b;return a||(a=[]),b={year:1},d(a,b)}}].map(function(a){return a.reg=new RegExp(a.reg,"g"),a}),f={january:0,february:1,march:2,april:3,may:4,june:5,july:6,august:7,september:8,october:9,november:10,december:11,jan:0,feb:1,mar:2,apr:3,aug:7,sept:8,oct:9,nov:10,dec:11},g=[31,29,31,30,31,30,31,31,30,31,30,31],h=function(a){return a=a.toLowerCase(),a=a.replace(/([0-9])(th|rd|st)/g,"$1")},i=function(a,b){var c;return c=new Date,b=b||{},a.year=parseInt(a.year,10)||void 0,a.day=parseInt(a.day,10)||void 0,a.to_day=parseInt(a.to_day,10)||void 0,a.to_year=parseInt(a.to_year,10)||void 0,a.month=f[a.month],a.to_month=f[a.to_month],void 0!==a.to_month&&void 0===a.month&&(a.month=a.to_month),void 0===a.to_month&&void 0!==a.month&&(a.to_month=a.month),a.to_year&&!a.year&&(a.year=a.to_year),!a.to_year&&a.year&&void 0!==a.to_month&&(a.to_year=a.year),b.assume_year&&!a.year&&(a.year=c.getFullYear()),void 0!==a.day&&(a.day>31||void 0!==a.month&&a.day>g[a.month])&&(a.day=void 0),void 0!==a.to_month&&a.to_month2090||a.year<1200)&&(a.year=void 0,a.to_year=void 0),a={day:a.day,month:a.month,year:a.year,to:{day:a.to_day,month:a.to_month,year:a.to_year}},a.year&&a.day&&void 0!==a.month&&(a.date_object=new Date,a.date_object.setYear(a.year),a.date_object.setMonth(a.month),a.date_object.setDate(a.day)),a.to.year&&a.to.day&&void 0!==a.to.month&&(a.to.date_object=new Date,a.to.date_object.setYear(a.to.year),a.to.date_object.setMonth(a.to.month),a.to.date_object.setDate(a.to.day)),a.year||void 0!==a.month?a:{})},j=function(a,b){var c,d,f,g,j;for(b=b||{},a=h(a),g=0,j=e.length;j>g;g++)if(f=e[g],a.match(f.reg))return c=f.reg.exec(a),d=f.process(c),d=i(d,b);return{}};return"undefined"!=typeof module&&module.exports&&(module.exports=j),j}(),n=function(a,b,c,d){var e=this;return e.word=a||"","undefined"!=typeof module&&module.exports&&(l=require("./to_number"),m=require("./date_extractor"),k=require("../../data/parts_of_speech")),e.date=function(a){return a=a||{},m(e.word,a)},e.is_date=function(){var a=/(january|february|march|april|may|june|july|august|september|october|november|december|jan|feb|mar|apr|aug|sept|oct|nov|dec)/i,b=/1?[0-9]:[0-9]{2}/,c=/\b(monday|tuesday|wednesday|thursday|friday|saturday|sunday|mon|tues|wed|thurs|fri|sat|sun)\b/i;return e.word.match(a)||e.word.match(b)||e.word.match(c)?!0:!1},e.number=function(){return e.is_date()?null:l(e.word)},e.which=function(){return e.date()?k.DA:e.number()?k.NU:k.CD}(),e};"undefined"!=typeof module&&module.exports&&(module.exports=n);var o=function(){var a=function(a){if(!a)return null;var b={hour:"an",heir:"an",heirloom:"an",honest:"an",honour:"an",honor:"an",uber:"an"},c=function(a){return a.length<=5&&a.match(/^[A-Z]*$/)?!0:a.length>=4&&a.match(/^([A-Z]\.)*$/)?!0:!1},d={A:!0,E:!0,F:!0,H:!0,I:!0,L:!0,M:!0,N:!0,O:!0,R:!0,S:!0,X:!0},e=[/^onc?e/i,/^u[bcfhjkqrstn][aeiou]/i,/^eul/i];if(b[a])return b[a];if(c(a)&&d[a.substr(0,1)])return"an";for(var f=0;f3?!0:!1},i=function(a){return c[a]?{plural:a,singular:a}:h(a)?{plural:a,singular:g(a)}:{singular:a,plural:e(a)}},j={inflect:i,is_plural:h,singularize:g,pluralize:e};return"undefined"!=typeof module&&module.exports&&(module.exports=j),j}(),q=function(a,b,c,d){var e=this;e.word=a||"",e.next=b,e.last=c,"undefined"!=typeof module&&module.exports&&(k=require("../../data/parts_of_speech"),p=require("./conjugate/inflect"),o=require("./indefinite_article"));var f={it:"PRP",they:"PRP",i:"PRP",them:"PRP",you:"PRP",she:"PRP",me:"PRP",he:"PRP",him:"PRP",her:"PRP",us:"PRP",we:"PRP",thou:"PRP"};return e.is_acronym=function(){var a=e.word;return a.length<=5&&a.match(/^[A-Z]*$/)?!0:a.length>=4&&a.match(/^([A-Z]\.)*$/)?!0:!1}(),e.is_entity=function(){if(!d)return!1;var a={itself:1,west:1,western:1,east:1,eastern:1,north:1,northern:1,south:1,southern:1,the:1,one:1,your:1,my:1,today:1,yesterday:1,tomorrow:1,era:1,century:1,it:1};if(f[d.normalised])return!1;if(a[d.normalised])return!1;if(d.pos){if("NNA"==d.pos.tag)return!1;if("NNO"==d.pos.tag)return!1;if("NNG"==d.pos.tag)return!1}return d.special_capitalised?!0:d.normalised.match(/ /)?!0:d.normalised.match(/\./)?!0:e.is_acronym?!0:!1}(),e.conjugate=function(){return p.inflect(e.word)},e.is_plural=function(){return p.is_plural(e.word)}(),e.article=function(){return o(e.word)},e.pluralize=function(){return(p.inflect(e.word)||{}).plural},e.singularize=function(){return(p.inflect(e.word)||{}).singular},e.which=function(){if(e.word.match(/'s$/))return k.NNO;if(e.word.match(/..ing$/))return k.NNG;if(f[e.word])return k.PRP;var a=e.word.substr(0,1);return a.toLowerCase()!==a?e.is_acronym?k.NNPA:e.is_plural?k.NNPS:k.NNP:e.is_plural?k.NNS:k.NN}(),e};"undefined"!=typeof module&&module.exports&&(module.exports=q);var r=function(){var a=function(a){var b={idly:"idle",sporadically:"sporadic",basically:"basic",grammatically:"grammatical",alphabetically:"alphabetical",economically:"economical",conically:"conical",politically:"political",vertically:"vertical",practically:"practical",theoretically:"theoretical",critically:"critical",fantastically:"fantastic",mystically:"mystical",pornographically:"pornographic",fully:"full",jolly:"jolly",wholly:"whole"},c=[{reg:/bly$/i,repl:"ble"},{reg:/gically$/i,repl:"gical"},{reg:/([rsdh])ically$/i,repl:"$1ical"},{reg:/ically$/i,repl:"ic"},{reg:/uly$/i,repl:"ue"},{reg:/ily$/i,repl:"y"},{reg:/(.{3})ly$/i,repl:"$1"}];if(b[a])return b[a];for(var d=0;d4?a.replace(/ed$/,""):a.replace(/d$/,"");var c,d,e,f;return a.match(/[^aeiou]$/)?(e=a+"ing",d=a+"ed",c=a.match(/ss$/)?a+"es":a+"s",f=v(b)):(e=a.replace(/[aeiou]$/,"ing"),d=a.replace(/[aeiou]$/,"ed"),c=a.replace(/[aeiou]$/,"es"),f=v(b)),{infinitive:b,present:c,past:d,gerund:e,doer:f,future:"will "+b}},c=function(a,b){return a.infinitive?(a.gerund||(a.gerund=a.infinitive+"ing"),a.doer||(a.doer=v(a.infinitive)),a.present||(a.present=a.infinitive+"s"),a.past||(a.past=a.infinitive+"ed"),b&&Object.keys(a).forEach(function(c){a[c]=b+a[c]}),a.future||(a.future="will "+a.infinitive),a):a},d=function(d){if(!d)return{};d=d.replace(/^will /i,"");var e,f,g=(d.match(/^(over|under|re|anti|full)\-?/i)||[])[0],h=d.replace(/^(over|under|re|anti|full)\-?/i,"");for(f=0;f0&&c[e].capitalised&&"of"==f.normalised&&c[e+2]&&c[e+2].capitalised?(c[e+1]=a(c[e],c[e+1]),c[e]=null,c[e+2]=a(c[e+1],c[e+2]),c[e+1]=null):c[e].capitalised&&"of"==f.normalised&&c[e+2]&&"DT"==c[e+2].pos.tag&&c[e+3]&&c[e+3].capitalised&&(c[e+1]=a(c[e],c[e+1]),c[e]=null,c[e+2]=a(c[e+1],c[e+2]),c[e+1]=null)),d.push(c[e])}return b.tokens=d.filter(function(a){return a}),b},d=function(a){if(E[a])return k[E[a]];if(a.match(/^(over|under|out|-|un|re|en).{4}/)){var b=a.replace(/^(over|under|out|.*?-|un|re|en)/,"");return k[E[b]]}},e=function(a){for(var b=0;b4){var g=a.normalised.substr(f-4,f-1);if(j[g])return a.pos=k[j[g]],a.pos_reason="wordnet suffix",a}var h=e(a.normalised);return h?(a.pos=h,a.pos_reason="regex suffix",a):parseFloat(a.normalised)?(a.pos=k.CD,a.pos_reason="parsefloat",a):a}),a.tokens=a.tokens.map(function(a,b){return a.normalised.match(/.ed$/)&&(a.pos=k.VB,a.pos_reason="ed"),a});var c=null,h="";a.tokens=a.tokens.map(function(b,d){var e=a.tokens[d+1];if(b.pos){if("the"==b.normalised||"a"==b.normalised||"an"==b.normalised||"PP"===b.pos.tag)return c="noun",h=b.pos.name,b;if("PRP"===b.pos.tag||"MD"===b.pos.tag)return c="verb",h=b.pos.name,b}return b.pos&&("verb"==c&&"noun"==b.pos.parent&&(!e||e.pos&&"noun"!=e.pos.parent)&&(e&&e.pos&&e.pos.parent==c||(b.pos=k.VB,b.pos_reason="signal from "+h,c=null)),"noun"==c&&"verb"==b.pos.parent&&(!e||e.pos&&"verb"!=e.pos.parent)&&(e&&e.pos&&e.pos.parent==c||(b.pos=k.NN,b.pos_reason="signal from "+h,c=null))),c&&!b.pos&&(e&&e.pos&&e.pos.parent==c||(b.pos=k[c],b.pos_reason="signal from "+h,c=null)),"verb"===c&&b.pos&&"verb"===b.pos.parent&&(c=null),"noun"===c&&b.pos&&"noun"===b.pos.parent&&(c=null),b});var i={};a.tokens.forEach(function(a){a.pos&&(i[a.pos.parent]=!0)}),a.tokens=a.tokens.map(function(a,b){if(!a.pos){if(i.adjective&&i.noun&&!i.verb)return a.pos=k.VB,a.pos_reason="need one verb",i.verb=!0,a;a.pos=k.NN,a.pos_reason="noun fallback"}return a}),a.tokens=a.tokens.map(function(b,c){return f(b,c,a)}),a.tokens=a.tokens.map(function(b,c){return f(b,c,a)})}),h.dont_combine||(i=i.map(function(a){return b(a)})),i=i.map(function(a){return a.tokens=a.tokens.map(function(b,c){var d=a.tokens[c-1]||null,e=a.tokens[c+1]||null;return b.analysis=D[b.pos.parent](b.normalised,e,d,b),b}),a}),i=i.map(function(a){var b=new F(a.tokens);return b.type=a.type,b}),new G(i)};return"undefined"!=typeof module&&module.exports&&(module.exports=i),i}(),I=function(){"undefined"!=typeof module&&module.exports&&(H=require("./pos"));var a=function(a,b){b=b||{};var c=H(a,b).sentences;return c.reduce(function(a,c){return a.concat(c.entities(b))},[])};return"undefined"!=typeof module&&module.exports&&(module.exports=a),a}();if("undefined"!=typeof module&&module.exports)var D=require("./src/parents/parents"),a=require("./src/methods/tokenization/sentence").sentences,c=require("./src/methods/tokenization/tokenize").tokenize,b=require("./src/methods/tokenization/ngram").ngram,d=require("./src/methods/transliteration/unicode_normalisation"),e=require("./src/methods/syllables/syllable"),J=require("./src/methods/localization/britishize"),g=J.americanize,f=J.britishize,H=require("./src/pos"),I=require("./src/spot");var K={noun:D.noun,adjective:D.adjective,verb:D.verb,adverb:D.adverb,value:D.value,sentences:a,ngram:b,tokenize:c,americanize:g,britishize:f,syllables:e,normalize:d.normalize,denormalize:d.denormalize,pos:H,spot:I};return"undefined"!=typeof module&&module.exports&&(module.exports=K),K}(); \ No newline at end of file diff --git a/package.json b/package.json index 235a35f04..d783fbea2 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "author": "Spencer Kelly (http://spencermounta.in)", "name": "nlp_compromise", "description": "natural language processing in the browser", - "version": "0.3.8", + "version": "0.3.9", "repository": { "type": "git", "url": "git://github.com/spencermountain/nlp_compromise.git" diff --git a/src/data/lexicon.js b/src/data/lexicon.js index 64e8d3b0f..fe3957d18 100644 --- a/src/data/lexicon.js +++ b/src/data/lexicon.js @@ -1,2165 +1,2165 @@ //this list is the seed, from which various forms are conjugated var lexicon = (function() { - // var verb_conjugate, adj_to_adv, verb_to_doer, to_superlative, to_comparative; - if (typeof module !== "undefined" && module.exports) { - verb_conjugate = require("../parents/verb/conjugate/conjugate") - adj_to_adv = require("../parents/adjective/conjugate/to_adverb"); - verb_to_doer = require("../parents/verb/conjugate/to_doer"); - to_superlative = require("../parents/adjective/conjugate/to_superlative"); - to_comparative = require("../parents/adjective/conjugate/to_comparative"); - } - var main = { - //conjunctions - "yet": "CC", - "therefore": "CC", - "or": "CC", - "while": "CC", - "nor": "CC", - "whether": "CC", - "though": "CC", - "because": "CC", - "but": "CC", - "for": "CC", - "and": "CC", - "if": "CC", - "however": "CC", - "before": "CC", - "although": "CC", - "how": "CC", + // var verb_conjugate, adj_to_adv, verb_to_doer, to_superlative, to_comparative; + if (typeof module !== "undefined" && module.exports) { + verb_conjugate = require("../parents/verb/conjugate/conjugate") + adj_to_adv = require("../parents/adjective/conjugate/to_adverb"); + verb_to_doer = require("../parents/verb/conjugate/to_doer"); + to_superlative = require("../parents/adjective/conjugate/to_superlative"); + to_comparative = require("../parents/adjective/conjugate/to_comparative"); + } + var main = { + //conjunctions + "yet": "CC", + "therefore": "CC", + "or": "CC", + "while": "CC", + "nor": "CC", + "whether": "CC", + "though": "CC", + "because": "CC", + "but": "CC", + "for": "CC", + "and": "CC", + "if": "CC", + "however": "CC", + "before": "CC", + "although": "CC", + "how": "CC", - //numbers - 'zero': "CD", - 'one': "CD", - 'two': "CD", - 'three': "CD", - 'four': "CD", - 'five': "CD", - 'six': "CD", - 'seven': "CD", - 'eight': "CD", - 'nine': "CD", - 'ten': "CD", - 'eleven': "CD", - 'twelve': "CD", - 'thirteen': "CD", - 'fourteen': "CD", - 'fifteen': "CD", - 'sixteen': "CD", - 'seventeen': "CD", - 'eighteen': "CD", - 'nineteen': "CD", - 'twenty': "CD", - 'thirty': "CD", - 'forty': "CD", - 'fifty': "CD", - 'sixty': "CD", - 'seventy': "CD", - 'eighty': "CD", - 'ninety': "CD", - 'hundred': "CD", - 'thousand': "CD", - 'million': "CD", - 'billion': "CD", - 'trillion': "CD", - 'quadrillion': "CD", - 'quintillion': "CD", - 'sextillion': "CD", - 'septillion': "CD", - 'octillion': "CD", - 'nonillion': "CD", - 'decillion': "CD", + //numbers + 'zero': "CD", + 'one': "CD", + 'two': "CD", + 'three': "CD", + 'four': "CD", + 'five': "CD", + 'six': "CD", + 'seven': "CD", + 'eight': "CD", + 'nine': "CD", + 'ten': "CD", + 'eleven': "CD", + 'twelve': "CD", + 'thirteen': "CD", + 'fourteen': "CD", + 'fifteen': "CD", + 'sixteen': "CD", + 'seventeen': "CD", + 'eighteen': "CD", + 'nineteen': "CD", + 'twenty': "CD", + 'thirty': "CD", + 'forty': "CD", + 'fifty': "CD", + 'sixty': "CD", + 'seventy': "CD", + 'eighty': "CD", + 'ninety': "CD", + 'hundred': "CD", + 'thousand': "CD", + 'million': "CD", + 'billion': "CD", + 'trillion': "CD", + 'quadrillion': "CD", + 'quintillion': "CD", + 'sextillion': "CD", + 'septillion': "CD", + 'octillion': "CD", + 'nonillion': "CD", + 'decillion': "CD", - //copula - "is": "CP", - "will be": "CP", - "are": "CP", - "was": "CP", - "were": "CP", - "am": "CP", + //copula + "is": "CP", + "will be": "CP", + "are": "CP", + "was": "CP", + "were": "CP", + "am": "CP", - //determiners - "this": "DT", - "any": "DT", - "enough": "DT", - "each": "DT", - "whatever": "DT", - "every": "DT", - "which": "DT", - "these": "DT", - "another": "DT", - "plenty": "DT", - "whichever": "DT", - "neither": "DT", - "an": "DT", - "a": "DT", - "least": "DT", - "own": "DT", - "few": "DT", - "both": "DT", - "those": "DT", - "the": "DT", - "that": "DT", - "various": "DT", - "what": "DT", - "either": "DT", - "much": "DT", - "some": "DT", - "else": "DT", - //some other languages (what could go wrong?) - "la": "DT", - "le": "DT", - "les": "DT", - "des": "DT", - "de": "DT", - "du": "DT", - "el": "DT", + //determiners + "this": "DT", + "any": "DT", + "enough": "DT", + "each": "DT", + "whatever": "DT", + "every": "DT", + "which": "DT", + "these": "DT", + "another": "DT", + "plenty": "DT", + "whichever": "DT", + "neither": "DT", + "an": "DT", + "a": "DT", + "least": "DT", + "own": "DT", + "few": "DT", + "both": "DT", + "those": "DT", + "the": "DT", + "that": "DT", + "various": "DT", + "what": "DT", + "either": "DT", + "much": "DT", + "some": "DT", + "else": "DT", + //some other languages (what could go wrong?) + "la": "DT", + "le": "DT", + "les": "DT", + "des": "DT", + "de": "DT", + "du": "DT", + "el": "DT", - //prepositions - "until": "IN", - "onto": "IN", - "of": "IN", - "into": "IN", - "out": "IN", - "except": "IN", - "across": "IN", - "by": "IN", - "between": "IN", - "at": "IN", - "down": "IN", - "as": "IN", - "from": "IN", - "around": "IN", - "with": "IN", - "among": "IN", - "upon": "IN", - "amid": "IN", - "to": "IN", - "along": "IN", - "since": "IN", - "about": "IN", - "off": "IN", - "on": "IN", - "within": "IN", - "in": "IN", - "during": "IN", - "per": "IN", - "without": "IN", - "throughout": "IN", - "through": "IN", - "than": "IN", - "via": "IN", - "up": "IN", + //prepositions + "until": "IN", + "onto": "IN", + "of": "IN", + "into": "IN", + "out": "IN", + "except": "IN", + "across": "IN", + "by": "IN", + "between": "IN", + "at": "IN", + "down": "IN", + "as": "IN", + "from": "IN", + "around": "IN", + "with": "IN", + "among": "IN", + "upon": "IN", + "amid": "IN", + "to": "IN", + "along": "IN", + "since": "IN", + "about": "IN", + "off": "IN", + "on": "IN", + "within": "IN", + "in": "IN", + "during": "IN", + "per": "IN", + "without": "IN", + "throughout": "IN", + "through": "IN", + "than": "IN", + "via": "IN", + "up": "IN", - //modal verbs - "can": "MD", - "may": "MD", - "could": "MD", - "might": "MD", - "will": "MD", - "ought to": "MD", - "would": "MD", - "must": "MD", - "shall": "MD", - "should": "MD", + //modal verbs + "can": "MD", + "may": "MD", + "could": "MD", + "might": "MD", + "will": "MD", + "ought to": "MD", + "would": "MD", + "must": "MD", + "shall": "MD", + "should": "MD", - //posessive pronouns - "mine": "PP", - "something": "PP", - "none": "PP", - "anything": "PP", - "anyone": "PP", - "lot": "PP", - "theirs": "PP", - "himself": "PP", - "ours": "PP", - "his": "PP", - "my": "PP", - "their": "PP", - "yours": "PP", - "your": "PP", - "our": "PP", - "its": "PP", - "nothing": "PP", - "herself": "PP", - "hers": "PP", - "themselves": "PP", - "everything": "PP", - "myself": "PP", - "itself": "PP", - "who": "PP", - "her": "PP", //this one is pretty ambiguous + //posessive pronouns + "mine": "PP", + "something": "PP", + "none": "PP", + "anything": "PP", + "anyone": "PP", + "lot": "PP", + "theirs": "PP", + "himself": "PP", + "ours": "PP", + "his": "PP", + "my": "PP", + "their": "PP", + "yours": "PP", + "your": "PP", + "our": "PP", + "its": "PP", + "nothing": "PP", + "herself": "PP", + "hers": "PP", + "themselves": "PP", + "everything": "PP", + "myself": "PP", + "itself": "PP", + "who": "PP", + "her": "PP", //this one is pretty ambiguous - //personal pronouns (nouns) - "it": "PRP", - "they": "PRP", - "i": "PRP", - "them": "PRP", - "you": "PRP", - "she": "PRP", - "me": "PRP", - "he": "PRP", - "him": "PRP", - "ourselves": "PRP", - "us": "PRP", - "we": "PRP", - "thou": "PRP", - "il": "PRP", - "elle": "PRP", + //personal pronouns (nouns) + "it": "PRP", + "they": "PRP", + "i": "PRP", + "them": "PRP", + "you": "PRP", + "she": "PRP", + "me": "PRP", + "he": "PRP", + "him": "PRP", + "ourselves": "PRP", + "us": "PRP", + "we": "PRP", + "thou": "PRP", + "il": "PRP", + "elle": "PRP", - //some manual adverbs (the rest are generated) - "now": "RB", - "again": "RB", - "already": "RB", - "soon": "RB", - "directly": "RB", - "toward": "RB", - "forever": "RB", - "apart": "RB", - "instead": "RB", - "yes": "RB", - "alone": "RB", - "ago": "RB", - "indeed": "RB", - "ever": "RB", - "quite": "RB", - "perhaps": "RB", - "where": "RB", - "then": "RB", - "here": "RB", - "thus": "RB", - "very": "RB", - "often": "RB", - "once": "RB", - "never": "RB", - "why": "RB", - "when": "RB", - "away": "RB", - "always": "RB", - "sometimes": "RB", - "also": "RB", - "maybe": "RB", - "so": "RB", - "just": "RB", - "well": "RB", + //some manual adverbs (the rest are generated) + "now": "RB", + "again": "RB", + "already": "RB", + "soon": "RB", + "directly": "RB", + "toward": "RB", + "forever": "RB", + "apart": "RB", + "instead": "RB", + "yes": "RB", + "alone": "RB", + "ago": "RB", + "indeed": "RB", + "ever": "RB", + "quite": "RB", + "perhaps": "RB", + "where": "RB", + "then": "RB", + "here": "RB", + "thus": "RB", + "very": "RB", + "often": "RB", + "once": "RB", + "never": "RB", + "why": "RB", + "when": "RB", + "away": "RB", + "always": "RB", + "sometimes": "RB", + "also": "RB", + "maybe": "RB", + "so": "RB", + "just": "RB", + "well": "RB", - //interjections - "uhh": "UH", - "uh-oh": "UH", - "ugh": "UH", - "sheesh": "UH", - "eww": "UH", - "pff": "UH", - "voila": "UH", - "oy": "UH", - "eep": "UH", - "hurrah": "UH", - "yuck": "UH", - "ow": "UH", - "duh": "UH", - "oh": "UH", - "hmm": "UH", - "yeah": "UH", - "whoa": "UH", - "ooh": "UH", - "whee": "UH", - "ah": "UH", - "bah": "UH", - "gah": "UH", - "yaa": "UH", - "phew": "UH", - "gee": "UH", - "ahem": "UH", - "eek": "UH", - "meh": "UH", - "yahoo": "UH", - "oops": "UH", - "d'oh": "UH", - "psst": "UH", - "argh": "UH", - "grr": "UH", - "nah": "UH", - "shhh": "UH", - "whew": "UH", - "mmm": "UH", - "yay": "UH", - "uh-huh": "UH", - "boo": "UH", - "wow": "UH", + //interjections + "uhh": "UH", + "uh-oh": "UH", + "ugh": "UH", + "sheesh": "UH", + "eww": "UH", + "pff": "UH", + "voila": "UH", + "oy": "UH", + "eep": "UH", + "hurrah": "UH", + "yuck": "UH", + "ow": "UH", + "duh": "UH", + "oh": "UH", + "hmm": "UH", + "yeah": "UH", + "whoa": "UH", + "ooh": "UH", + "whee": "UH", + "ah": "UH", + "bah": "UH", + "gah": "UH", + "yaa": "UH", + "phew": "UH", + "gee": "UH", + "ahem": "UH", + "eek": "UH", + "meh": "UH", + "yahoo": "UH", + "oops": "UH", + "d'oh": "UH", + "psst": "UH", + "argh": "UH", + "grr": "UH", + "nah": "UH", + "shhh": "UH", + "whew": "UH", + "mmm": "UH", + "yay": "UH", + "uh-huh": "UH", + "boo": "UH", + "wow": "UH", - //dates - "july": "CD", - "august": "CD", - "september": "CD", - "october": "CD", - "november": "CD", - "december": "CD", - "january": "CD", - "february": "CD", - "march": "CD", - "april": "CD", - // "may": "CD", - "june": "CD", - "monday": "CD", - "tuesday": "CD", - "wednesday": "CD", - "thursday": "CD", - "friday": "CD", - "saturday": "CD", - "sunday": "CD", + //dates + "july": "CD", + "august": "CD", + "september": "CD", + "october": "CD", + "november": "CD", + "december": "CD", + "january": "CD", + "february": "CD", + "march": "CD", + "april": "CD", + // "may": "CD", + "june": "CD", + "monday": "CD", + "tuesday": "CD", + "wednesday": "CD", + "thursday": "CD", + "friday": "CD", + "saturday": "CD", + "sunday": "CD", - //contractions that don't need splitting-open, grammatically - "don't": "VB", - "isn't": "CP", - "ain't": "CP", - "aren't": "CP", - "won't": "VB", - "shouldn't": "MD", - "wouldn't": "MD", - "couldn't": "MD", - "mustn't": "MD", - "shan't": "MD", - "shant": "MD", - "lets": "MD", //arguable - "let's": "MD", - "what's": "VB", //somewhat ambiguous (what does|what are) - "where'd": "VBD", - "when'd": "VBD", - "how'd": "VBD", - "what'd": "VBD", - "who'd": "MD", - "'o": "IN", - "'em": "PRP", + //contractions that don't need splitting-open, grammatically + "don't": "VB", + "isn't": "CP", + "ain't": "CP", + "aren't": "CP", + "won't": "VB", + "shouldn't": "MD", + "wouldn't": "MD", + "couldn't": "MD", + "mustn't": "MD", + "shan't": "MD", + "shant": "MD", + "lets": "MD", //arguable + "let's": "MD", + "what's": "VB", //somewhat ambiguous (what does|what are) + "where'd": "VBD", + "when'd": "VBD", + "how'd": "VBD", + "what'd": "VBD", + "who'd": "MD", + "'o": "IN", + "'em": "PRP", - //demonyms - "afghan":"JJ", - "albanian":"JJ", - "algerian":"JJ", - "argentine":"JJ", - "armenian":"JJ", - "australian":"JJ", - "aussie":"JJ", - "austrian":"JJ", - "bangladeshi":"JJ", - "belgian":"JJ", - "bolivian":"JJ", - "bosnian":"JJ", - "brazilian":"JJ", - "bulgarian":"JJ", - "cambodian":"JJ", - "canadian":"JJ", - "chilean":"JJ", - "chinese":"JJ", - "colombian":"JJ", - "croat":"JJ", - "cuban":"JJ", - "czech":"JJ", - "dominican":"JJ", - "egyptian":"JJ", - "british":"JJ", - "estonian":"JJ", - "ethiopian":"JJ", - "finnish":"JJ", - "french":"JJ", - "gambian":"JJ", - "georgian":"JJ", - "german":"JJ", - "greek":"JJ", - "haitian":"JJ", - "hungarian":"JJ", - "indian":"JJ", - "indonesian":"JJ", - "iranian":"JJ", - "iraqi":"JJ", - "irish":"JJ", - "israeli":"JJ", - "italian":"JJ", - "jamaican":"JJ", - "japanese":"JJ", - "jordanian":"JJ", - "kenyan":"JJ", - "korean":"JJ", - "kuwaiti":"JJ", - "latvian":"JJ", - "lebanese":"JJ", - "liberian":"JJ", - "libyan":"JJ", - "lithuanian":"JJ", - "macedonian":"JJ", - "malaysian":"JJ", - "mexican":"JJ", - "mongolian":"JJ", - "moroccan":"JJ", - "dutch":"JJ", - "nicaraguan":"JJ", - "nigerian":"JJ", - "norwegian":"JJ", - "omani":"JJ", - "pakistani":"JJ", - "palestinian":"JJ", - "filipino":"JJ", - "polish":"JJ", - "portuguese":"JJ", - "qatari":"JJ", - "romanian":"JJ", - "russian":"JJ", - "rwandan":"JJ", - "samoan":"JJ", - "saudi":"JJ", - "scottish":"JJ", - "senegalese":"JJ", - "serbian":"JJ", - "singaporean":"JJ", - "slovak":"JJ", - "somali":"JJ", - "sudanese":"JJ", - "swedish":"JJ", - "swiss":"JJ", - "syrian":"JJ", - "taiwanese":"JJ", - "thai":"JJ", - "tunisian":"JJ", - "ugandan":"JJ", - "ukrainian":"JJ", - "american":"JJ", - "hindi":"JJ", - "spanish":"JJ", - "venezuelan":"JJ", - "vietnamese":"JJ", - "welsh":"JJ", - "african":"JJ", - "european":"JJ", - "asian":"JJ", - "californian":"JJ", + //demonyms + "afghan": "JJ", + "albanian": "JJ", + "algerian": "JJ", + "argentine": "JJ", + "armenian": "JJ", + "australian": "JJ", + "aussie": "JJ", + "austrian": "JJ", + "bangladeshi": "JJ", + "belgian": "JJ", + "bolivian": "JJ", + "bosnian": "JJ", + "brazilian": "JJ", + "bulgarian": "JJ", + "cambodian": "JJ", + "canadian": "JJ", + "chilean": "JJ", + "chinese": "JJ", + "colombian": "JJ", + "croat": "JJ", + "cuban": "JJ", + "czech": "JJ", + "dominican": "JJ", + "egyptian": "JJ", + "british": "JJ", + "estonian": "JJ", + "ethiopian": "JJ", + "finnish": "JJ", + "french": "JJ", + "gambian": "JJ", + "georgian": "JJ", + "german": "JJ", + "greek": "JJ", + "haitian": "JJ", + "hungarian": "JJ", + "indian": "JJ", + "indonesian": "JJ", + "iranian": "JJ", + "iraqi": "JJ", + "irish": "JJ", + "israeli": "JJ", + "italian": "JJ", + "jamaican": "JJ", + "japanese": "JJ", + "jordanian": "JJ", + "kenyan": "JJ", + "korean": "JJ", + "kuwaiti": "JJ", + "latvian": "JJ", + "lebanese": "JJ", + "liberian": "JJ", + "libyan": "JJ", + "lithuanian": "JJ", + "macedonian": "JJ", + "malaysian": "JJ", + "mexican": "JJ", + "mongolian": "JJ", + "moroccan": "JJ", + "dutch": "JJ", + "nicaraguan": "JJ", + "nigerian": "JJ", + "norwegian": "JJ", + "omani": "JJ", + "pakistani": "JJ", + "palestinian": "JJ", + "filipino": "JJ", + "polish": "JJ", + "portuguese": "JJ", + "qatari": "JJ", + "romanian": "JJ", + "russian": "JJ", + "rwandan": "JJ", + "samoan": "JJ", + "saudi": "JJ", + "scottish": "JJ", + "senegalese": "JJ", + "serbian": "JJ", + "singaporean": "JJ", + "slovak": "JJ", + "somali": "JJ", + "sudanese": "JJ", + "swedish": "JJ", + "swiss": "JJ", + "syrian": "JJ", + "taiwanese": "JJ", + "thai": "JJ", + "tunisian": "JJ", + "ugandan": "JJ", + "ukrainian": "JJ", + "american": "JJ", + "hindi": "JJ", + "spanish": "JJ", + "venezuelan": "JJ", + "vietnamese": "JJ", + "welsh": "JJ", + "african": "JJ", + "european": "JJ", + "asian": "JJ", + "californian": "JJ", - //misc mine - "nope": "UH", - "said": "VBD", - "says": "VBZ", - "has": "VB", - "more": "RBR", - "had": "VBD", - "been": "VBD", - "going": "VBG", - "other": "JJ", - "no": "DT", - "there": "EX", - "after": "IN", - "many": "JJ", - "most": "JJ", - "last": "JJ", - "expected": "JJ", - "long": "JJ", - "far": "JJ", - "due": "JJ", - "higher": "JJR", - "larger": "JJR", - "better": "JJR", - "added": "VB", - "several": "RB", - "such": "RB", - "took": "VB", - "being": "VBG", - "began": "VBD", - "came": "VBD", - "did": "VBD", - "go": "VBP", - "too": "RB", - "president": "NN", - "dollar": "NN", - "student": "NN", - "patent": "NN", - "funding": "NN", - "morning": "NN", - "banking": "NN", - "ceiling": "NN", - "energy": "NN", - "secretary": "NN", - "purpose": "NN", - "friends": "NNS", - "less": "JJ", - "event":"NN", - "divine": "JJ", - "all": "JJ", - "define": "VB", - "went": "VBD", - "goes": "VB", - "sounds": "VBZ", - "measure": "VB", - "enhance": "VB", - "distinguish": "VB", - "randomly": "RB", - "abroad": "RB", + //misc mine + "nope": "UH", + "said": "VBD", + "says": "VBZ", + "has": "VB", + "more": "RBR", + "had": "VBD", + "been": "VBD", + "going": "VBG", + "other": "JJ", + "no": "DT", + "there": "EX", + "after": "IN", + "many": "JJ", + "most": "JJ", + "last": "JJ", + "expected": "JJ", + "long": "JJ", + "far": "JJ", + "due": "JJ", + "higher": "JJR", + "larger": "JJR", + "better": "JJR", + "added": "VB", + "several": "RB", + "such": "RB", + "took": "VB", + "being": "VBG", + "began": "VBD", + "came": "VBD", + "did": "VBD", + "go": "VBP", + "too": "RB", + "president": "NN", + "dollar": "NN", + "student": "NN", + "patent": "NN", + "funding": "NN", + "morning": "NN", + "banking": "NN", + "ceiling": "NN", + "energy": "NN", + "secretary": "NN", + "purpose": "NN", + "friends": "NNS", + "less": "JJ", + "event": "NN", + "divine": "JJ", + "all": "JJ", + "define": "VB", + "went": "VBD", + "goes": "VB", + "sounds": "VBZ", + "measure": "VB", + "enhance": "VB", + "distinguish": "VB", + "randomly": "RB", + "abroad": "RB", - //missing words from amc - "given": "VBN", - "known": "VBN", - "rather": "RB", - "shown": "VBN", - "seen": "VBN", - "according": "VBG", - "almost": "RB", - "together": "JJ", - "means": "VBZ", - "despite": "IN", - "only": "JJ", - "outside": "JJ", - "below": "IN", - "multiple": "JJ", - "anyway": "RB", - "appropriate": "JJ", - "unless": "IN", - "whom": "PP", - "whose": "PP", - "evil": "JJ", - "earlier": "JJR", - "etc": "FW", - "twice": "RB", - "avoid": "VB", - "favorite": "JJ", - "whereas": "IN", - "born": "VBN", - "hit": "VB", - "resulting": "VBG", - "limited": "JJ", - "developing": "VBG", - "plus": "CC", - "biggest": "JJS", - "random": "JJ", - "republican": "JJ", - "okay": "JJ", - "essential": "JJ", - "somewhat": "RB", - "unlike": "IN", - "secondary": "JJ", - "somehow": "RB", - "yourself": "PRP", - "gay": "JJ", - "meanwhile": "RB", - "hence": "RB", - "further": "RB", - "furthermore": "RB", - "easier": "JJR", - "staining": "VBG", - "towards": "IN", - "aside": "RB", - "moreover": "RB", - "south": "JJ", - "pro": "JJ", - "meant": "VBD", - "versus": "CC", - "besides": "IN", - "northern": "JJ", - "anymore": "RB", - "urban": "JJ", - "acute": "JJ", - "prime": "JJ", - "arab": "JJ", - "overnight": "JJ", - "newly": "RB", - "ought": "MD", - "mixed": "JJ", - "crucial": "JJ", - "damn": "RB", + //missing words from amc + "given": "VBN", + "known": "VBN", + "rather": "RB", + "shown": "VBN", + "seen": "VBN", + "according": "VBG", + "almost": "RB", + "together": "JJ", + "means": "VBZ", + "despite": "IN", + "only": "JJ", + "outside": "JJ", + "below": "IN", + "multiple": "JJ", + "anyway": "RB", + "appropriate": "JJ", + "unless": "IN", + "whom": "PP", + "whose": "PP", + "evil": "JJ", + "earlier": "JJR", + "etc": "FW", + "twice": "RB", + "avoid": "VB", + "favorite": "JJ", + "whereas": "IN", + "born": "VBN", + "hit": "VB", + "resulting": "VBG", + "limited": "JJ", + "developing": "VBG", + "plus": "CC", + "biggest": "JJS", + "random": "JJ", + "republican": "JJ", + "okay": "JJ", + "essential": "JJ", + "somewhat": "RB", + "unlike": "IN", + "secondary": "JJ", + "somehow": "RB", + "yourself": "PRP", + "gay": "JJ", + "meanwhile": "RB", + "hence": "RB", + "further": "RB", + "furthermore": "RB", + "easier": "JJR", + "staining": "VBG", + "towards": "IN", + "aside": "RB", + "moreover": "RB", + "south": "JJ", + "pro": "JJ", + "meant": "VBD", + "versus": "CC", + "besides": "IN", + "northern": "JJ", + "anymore": "RB", + "urban": "JJ", + "acute": "JJ", + "prime": "JJ", + "arab": "JJ", + "overnight": "JJ", + "newly": "RB", + "ought": "MD", + "mixed": "JJ", + "crucial": "JJ", + "damn": "RB", - //formerly IN - "behind": "JJ", - "above": "JJ", - "beyond": "JJ", - "against": "JJ", - "under": "JJ", - "not":"CC",//? + //formerly IN + "behind": "JJ", + "above": "JJ", + "beyond": "JJ", + "against": "JJ", + "under": "JJ", + "not": "CC", //? - //from multiples - "of course":"RB", - "at least":"RB", - "no longer":"RB", - "sort of":"RB", - "at first":"RB", - "once again":"RB", - "once more":"RB", - "up to":"RB", - "by now":"RB", - "all but":"RB", - "just about":"RB", - "on board":"JJ", - "a lot":"RB", - "by far":"RB", - "at best":"RB", - "at large":"RB", - "for good":"RB", - "vice versa":"JJ", - "en route":"JJ", - "for sure":"RB", - "upside down":"JJ", - "at most":"RB", - "per se":"RB", - "at worst":"RB", - "upwards of":"RB", - "en masse":"RB", - "point blank":"RB", - "up front":"JJ", - "in situ":"JJ", - "in vitro":"JJ", - "ad hoc":"JJ", - "de facto":"JJ", - "ad infinitum":"JJ", - "ad nauseam":"RB", - "for keeps":"JJ", - "a priori":"FW", - "et cetera":"FW", - "off guard":"JJ", - "spot on":"JJ", - "ipso facto":"JJ", - "not withstanding":"RB", - "de jure":"RB", - "a la":"IN", - "ad hominem":"NN", - "par excellence":"RB", - "de trop":"RB", - "a posteriori":"RB", - "fed up":"JJ", - "brand new":"JJ", - "old fashioned":"JJ", - "bona fide":"JJ", - "well off":"JJ", - "far off":"JJ", - "straight forward":"JJ", - "hard up":"JJ", - "sui generis":"JJ", - "en suite":"JJ", - "avant garde":"JJ", - "sans serif":"JJ", - "gung ho":"JJ", - "super duper":"JJ" - } + //from multiples + "of course": "RB", + "at least": "RB", + "no longer": "RB", + "sort of": "RB", + "at first": "RB", + "once again": "RB", + "once more": "RB", + "up to": "RB", + "by now": "RB", + "all but": "RB", + "just about": "RB", + "on board": "JJ", + "a lot": "RB", + "by far": "RB", + "at best": "RB", + "at large": "RB", + "for good": "RB", + "vice versa": "JJ", + "en route": "JJ", + "for sure": "RB", + "upside down": "JJ", + "at most": "RB", + "per se": "RB", + "at worst": "RB", + "upwards of": "RB", + "en masse": "RB", + "point blank": "RB", + "up front": "JJ", + "in situ": "JJ", + "in vitro": "JJ", + "ad hoc": "JJ", + "de facto": "JJ", + "ad infinitum": "JJ", + "ad nauseam": "RB", + "for keeps": "JJ", + "a priori": "FW", + "et cetera": "FW", + "off guard": "JJ", + "spot on": "JJ", + "ipso facto": "JJ", + "not withstanding": "RB", + "de jure": "RB", + "a la": "IN", + "ad hominem": "NN", + "par excellence": "RB", + "de trop": "RB", + "a posteriori": "RB", + "fed up": "JJ", + "brand new": "JJ", + "old fashioned": "JJ", + "bona fide": "JJ", + "well off": "JJ", + "far off": "JJ", + "straight forward": "JJ", + "hard up": "JJ", + "sui generis": "JJ", + "en suite": "JJ", + "avant garde": "JJ", + "sans serif": "JJ", + "gung ho": "JJ", + "super duper": "JJ" + } - //verbs - var verbs = [ - "collapse", - "stake", - "forsee", - "hide", - "suck", - "answer", - "argue", - "tend", - "examine", - "depend", - "form", - "figure", - "compete", - "mind", - "surround", - "suspect", - "reflect", - "wonder", - "act", - "hope", - "end", - "thank", - "file", - "regard", - "report", - "imagine", - "consider", - "miss", - "ensure", - "cause", - "work", - "enter", - "stop", - "defeat", - "surge", - "launch", - "turn", - "give", - "win", - "like", - "control", - "relate", - "remember", - "join", - "listen", - "train", - "break", - "spring", - "enjoy", - "fail", - "understand", - "recognize", - "draw", - "obtain", - "learn", - "fill", - "announce", - "prevent", - "fall", - "achieve", - "find", - "realize", - "involve", - "remove", - "lose", - "lie", - "build", - "aid", - "visit", - "test", - "strike", - "prepare", - "wait", - "ask", - "carry", - "suppose", - "determine", - "raise", - "send", - "love", - "use", - "pull", - "improve", - "contain", - "think", - "offer", - "speak", - "rise", - "talk", - "pick", - "care", - "express", - "remain", - "operate", - "deal", - "close", - "add", - "mention", - "read", - "support", - "grow", - "decide", - "walk", - "vary", - "demand", - "describe", - "sell", - "agree", - "happen", - "allow", - "suffer", - "have", - "study", - "be", - "press", - "watch", - "seem", - "occur", - "contribute", - "claim", - "become", - "make", - "compare", - "develop", - "apply", - "direct", - "discuss", - "know", - "sit", - "see", - "lead", - "indicate", - "require", - "change", - "fix", - "come", - "reach", - "prove", - "expect", - "exist", - "play", - "permit", - "meet", - "kill", - "pay", - "charge", - "increase", - "fight", - "tell", - "catch", - "believe", - "create", - "continue", - "live", - "help", - "represent", - "edit", - "serve", - "ride", - "appear", - "cover", - "set", - "maintain", - "start", - "stay", - "move", - "extend", - "leave", - "wear", - "run", - "design", - "supply", - "suggest", - "want", - "say", - "hear", - "drive", - "approach", - "cut", - "call", - "include", - "try", - "receive", - "save", - "discover", - "marry", - "throw", - "show", - "choose", - "need", - "establish", - "keep", - "assume", - "attend", - "buy", - "unite", - "feel", - "explain", - "publish", - "accept", - "settle", - "reduce", - "bring", - "do", - "let", - "shoot", - "look", - "take", - "interact", - "concern", - "put", - "labor", - "hold", - "return", - "select", - "die", - "provide", - "seek", - "stand", - "spend", - "begin", - "get", - "wish", - "hang", - "write", - "finish", - "follow", - "forget", - "feed", - "eat", - "disagree", - "produce", - "attack", - "attempt", - "bite", - "blow", - "brake", - "brush", - "burn", - "bang", - "bomb", - "bet", - "budget", - "comfort", - "cook", - "copy", - "cough", - "crush", - "cry", - "check", - "claw", - "clip", - "combine", - "damage", - "desire", - "doubt", - "drain", - "drink", - "dance", - "decrease", - "defect", - "deposit", - "drift", - "dip", - "dive", - "divorce", - "dream", - "exchange", - "envy", - "exert", - "exercise", - "export", - "fold", - "flood", - "focus", - "forecast", - "fracture", - "grip", - "guide", - "guard", - "guarantee", - "guess", - "hate", - "heat", - "handle", - "hire", - "host", - "hunt", - "hurry", - "import", - "judge", - "jump", - "jam", - "kick", - "kiss", - "knock", - "laugh", - "lift", - "lock", - "lecture", - "link", - "load", - "loan", - "lump", - "melt", - "message", - "murder", - "neglect", - "overlap", - "overtake", - "overuse", - "print", - "protest", - "pump", - "push", - "post", - "progress", - "promise", - "purchase", - "regret", - "request", - "reward", - "roll", - "rub", - "rent", - "repair", - "sail", - "scale", - "screw", - "shake", - "shock", - "sleep", - "slip", - "smash", - "smell", - "smoke", - "sneeze", - "snow", - "stick", - "surprise", - "swim", - "scratch", - "search", - "share", - "shave", - "slide", - "spit", - "splash", - "stain", - "stress", - "swing", - "switch", - "taste", - "touch", - "trade", - "trick", - "twist", - "tie", - "trap", - "travel", - "tune", - "undergo", - "undo", - "uplift", - "vote", - "wash", - "wave", - "whistle", - "wreck", - "yawn", - "betray", - "restrict", - "perform", - "worry", - "point", - "activate", - "fear", - "plan", - "note", - "face", - "predict", - "differ", - "deserve", - "torture", - "recall", - "count", - "swear", - "admit", - "insist", - "lack", - "pass", - "belong", - "complain", - "constitute", - "beat", - "rely", - "refuse", - "range", - "cite", - "flash", - "arrive", - "reveal", - "consist", - "observe", - "notice", - "trust", - "imply", - "display", - "view", - "stare", - "acknowledge", - "owe", - "gaze", - "treat", - "account", - "gather", - "address", - "confirm", - "estimate", - "manage", - "participate", - "sneak", - "drop", - "mirror", - "experience", - "strive", - "teach", - "cost", - "arch", - "dislike", - "favor", - "earn", - "emphasize", - "fly", - "match", - "question", - "emerge", - "encourage", - "matter", - "name", - "head", - "line", - "slam", - "list", - "sing", - "warn", - "ignore", - "resemble", - "spread", - "feature", - "place", - "reverse", - "accuse", - "spoil", - "retain", - "survive", - "praise", - "function", - "please", - "date", - "remind", - "deliver", - "echo", - "engage", - "deny", - "obey", - "yield", - "center", - "gain", - "anticipate", - "reason", - "side", - "thrive", - "defy", - "dodge", - "enable", - "applaud", - "bear", - "persist", - "pose", - "reject", - "attract", - "await", - "inhibit", - "declare", - "process", - "risk", - "urge", - "value", - "block", - "confront", - "credit", - "cross", - "wake", - "amuse", - "dare", - "resent", - "smile", - "gloss", - "threaten", - "collect", - "depict", - "dismiss", - "submit", - "benefit", - "step", - "deem", - "limit", - "sense", - "issue", - "embody", - "force", - "govern", - "replace", - "aim", - "bother", - "cater", - "adopt", - "empower", - "outweigh", - "alter", - "enrich", - "influence", - "prohibit", - "pursue", - "warrant", - "convey", - "approve", - "reserve", - "rest", - "strain", - "wander", - "adjust", - "dress", - "market", - "mingle", - "disapprove", - "evaluate", - "flow", - "inhabit", - "pop", - "rule", - "depart", - "roam", - "assert", - "disappear", - "envision", - "pause", - "afford", - "challenge", - "grab", - "grumble", - "house", - "portray", - "revel", - "base", - "conduct", - "review", - "stem", - "crave", - "mark", - "store", - "target", - "unlock", - "weigh", - "resist", - "steal", - "drag", - "pour", - "reckon", - "assign", - "cling", - "rank", - "attach", - "decline", - "destroy", - "interfere", - "paint", - "skip", - "sprinkle", - "wither", - "allege", - "retire", - "score", - "monitor", - "expand", - "honor", - "lend", - "pack", - "assist", - "float", - "appeal", - "sink", - "stretch", - "undermine", - "assemble", - "boast", - "bounce", - "grasp", - "install", - "borrow", - "crack", - "elect", - "shine", - "shout", - "contrast", - "overcome", - "relax", - "relent", - "strengthen", - "conform", - "dump", - "pile", - "scare", - "relive", - "resort", - "rush", - "boost", - "cease", - "command", - "excel", - "plug", - "plunge", - "proclaim", - "discourage", - "endure", - "ruin", - "stumble", - "abandon", - "cheat", - "convince", - "merge", - "convert", - "harm", - "multiply", - "overwhelm", - "chew", - "invent", - "bury", - "wipe" - ] + //verbs + var verbs = [ + "collapse", + "stake", + "forsee", + "hide", + "suck", + "answer", + "argue", + "tend", + "examine", + "depend", + "form", + "figure", + "compete", + "mind", + "surround", + "suspect", + "reflect", + "wonder", + "act", + "hope", + "end", + "thank", + "file", + "regard", + "report", + "imagine", + "consider", + "miss", + "ensure", + "cause", + "work", + "enter", + "stop", + "defeat", + "surge", + "launch", + "turn", + "give", + "win", + "like", + "control", + "relate", + "remember", + "join", + "listen", + "train", + "break", + "spring", + "enjoy", + "fail", + "understand", + "recognize", + "draw", + "obtain", + "learn", + "fill", + "announce", + "prevent", + "fall", + "achieve", + "find", + "realize", + "involve", + "remove", + "lose", + "lie", + "build", + "aid", + "visit", + "test", + "strike", + "prepare", + "wait", + "ask", + "carry", + "suppose", + "determine", + "raise", + "send", + "love", + "use", + "pull", + "improve", + "contain", + "think", + "offer", + "speak", + "rise", + "talk", + "pick", + "care", + "express", + "remain", + "operate", + "deal", + "close", + "add", + "mention", + "read", + "support", + "grow", + "decide", + "walk", + "vary", + "demand", + "describe", + "sell", + "agree", + "happen", + "allow", + "suffer", + "have", + "study", + "be", + "press", + "watch", + "seem", + "occur", + "contribute", + "claim", + "become", + "make", + "compare", + "develop", + "apply", + "direct", + "discuss", + "know", + "sit", + "see", + "lead", + "indicate", + "require", + "change", + "fix", + "come", + "reach", + "prove", + "expect", + "exist", + "play", + "permit", + "meet", + "kill", + "pay", + "charge", + "increase", + "fight", + "tell", + "catch", + "believe", + "create", + "continue", + "live", + "help", + "represent", + "edit", + "serve", + "ride", + "appear", + "cover", + "set", + "maintain", + "start", + "stay", + "move", + "extend", + "leave", + "wear", + "run", + "design", + "supply", + "suggest", + "want", + "say", + "hear", + "drive", + "approach", + "cut", + "call", + "include", + "try", + "receive", + "save", + "discover", + "marry", + "throw", + "show", + "choose", + "need", + "establish", + "keep", + "assume", + "attend", + "buy", + "unite", + "feel", + "explain", + "publish", + "accept", + "settle", + "reduce", + "bring", + "do", + "let", + "shoot", + "look", + "take", + "interact", + "concern", + "put", + "labor", + "hold", + "return", + "select", + "die", + "provide", + "seek", + "stand", + "spend", + "begin", + "get", + "wish", + "hang", + "write", + "finish", + "follow", + "forget", + "feed", + "eat", + "disagree", + "produce", + "attack", + "attempt", + "bite", + "blow", + "brake", + "brush", + "burn", + "bang", + "bomb", + "bet", + "budget", + "comfort", + "cook", + "copy", + "cough", + "crush", + "cry", + "check", + "claw", + "clip", + "combine", + "damage", + "desire", + "doubt", + "drain", + "drink", + "dance", + "decrease", + "defect", + "deposit", + "drift", + "dip", + "dive", + "divorce", + "dream", + "exchange", + "envy", + "exert", + "exercise", + "export", + "fold", + "flood", + "focus", + "forecast", + "fracture", + "grip", + "guide", + "guard", + "guarantee", + "guess", + "hate", + "heat", + "handle", + "hire", + "host", + "hunt", + "hurry", + "import", + "judge", + "jump", + "jam", + "kick", + "kiss", + "knock", + "laugh", + "lift", + "lock", + "lecture", + "link", + "load", + "loan", + "lump", + "melt", + "message", + "murder", + "neglect", + "overlap", + "overtake", + "overuse", + "print", + "protest", + "pump", + "push", + "post", + "progress", + "promise", + "purchase", + "regret", + "request", + "reward", + "roll", + "rub", + "rent", + "repair", + "sail", + "scale", + "screw", + "shake", + "shock", + "sleep", + "slip", + "smash", + "smell", + "smoke", + "sneeze", + "snow", + "stick", + "surprise", + "swim", + "scratch", + "search", + "share", + "shave", + "slide", + "spit", + "splash", + "stain", + "stress", + "swing", + "switch", + "taste", + "touch", + "trade", + "trick", + "twist", + "tie", + "trap", + "travel", + "tune", + "undergo", + "undo", + "uplift", + "vote", + "wash", + "wave", + "whistle", + "wreck", + "yawn", + "betray", + "restrict", + "perform", + "worry", + "point", + "activate", + "fear", + "plan", + "note", + "face", + "predict", + "differ", + "deserve", + "torture", + "recall", + "count", + "swear", + "admit", + "insist", + "lack", + "pass", + "belong", + "complain", + "constitute", + "beat", + "rely", + "refuse", + "range", + "cite", + "flash", + "arrive", + "reveal", + "consist", + "observe", + "notice", + "trust", + "imply", + "display", + "view", + "stare", + "acknowledge", + "owe", + "gaze", + "treat", + "account", + "gather", + "address", + "confirm", + "estimate", + "manage", + "participate", + "sneak", + "drop", + "mirror", + "experience", + "strive", + "teach", + "cost", + "arch", + "dislike", + "favor", + "earn", + "emphasize", + "fly", + "match", + "question", + "emerge", + "encourage", + "matter", + "name", + "head", + "line", + "slam", + "list", + "sing", + "warn", + "ignore", + "resemble", + "spread", + "feature", + "place", + "reverse", + "accuse", + "spoil", + "retain", + "survive", + "praise", + "function", + "please", + "date", + "remind", + "deliver", + "echo", + "engage", + "deny", + "obey", + "yield", + "center", + "gain", + "anticipate", + "reason", + "side", + "thrive", + "defy", + "dodge", + "enable", + "applaud", + "bear", + "persist", + "pose", + "reject", + "attract", + "await", + "inhibit", + "declare", + "process", + "risk", + "urge", + "value", + "block", + "confront", + "credit", + "cross", + "wake", + "amuse", + "dare", + "resent", + "smile", + "gloss", + "threaten", + "collect", + "depict", + "dismiss", + "submit", + "benefit", + "step", + "deem", + "limit", + "sense", + "issue", + "embody", + "force", + "govern", + "replace", + "aim", + "bother", + "cater", + "adopt", + "empower", + "outweigh", + "alter", + "enrich", + "influence", + "prohibit", + "pursue", + "warrant", + "convey", + "approve", + "reserve", + "rest", + "strain", + "wander", + "adjust", + "dress", + "market", + "mingle", + "disapprove", + "evaluate", + "flow", + "inhabit", + "pop", + "rule", + "depart", + "roam", + "assert", + "disappear", + "envision", + "pause", + "afford", + "challenge", + "grab", + "grumble", + "house", + "portray", + "revel", + "base", + "conduct", + "review", + "stem", + "crave", + "mark", + "store", + "target", + "unlock", + "weigh", + "resist", + "steal", + "drag", + "pour", + "reckon", + "assign", + "cling", + "rank", + "attach", + "decline", + "destroy", + "interfere", + "paint", + "skip", + "sprinkle", + "wither", + "allege", + "retire", + "score", + "monitor", + "expand", + "honor", + "lend", + "pack", + "assist", + "float", + "appeal", + "sink", + "stretch", + "undermine", + "assemble", + "boast", + "bounce", + "grasp", + "install", + "borrow", + "crack", + "elect", + "shine", + "shout", + "contrast", + "overcome", + "relax", + "relent", + "strengthen", + "conform", + "dump", + "pile", + "scare", + "relive", + "resort", + "rush", + "boost", + "cease", + "command", + "excel", + "plug", + "plunge", + "proclaim", + "discourage", + "endure", + "ruin", + "stumble", + "abandon", + "cheat", + "convince", + "merge", + "convert", + "harm", + "multiply", + "overwhelm", + "chew", + "invent", + "bury", + "wipe" + ] - //conjugate all of these verbs. takes ~8ms. triples the lexicon size. - verbs.forEach(function(v) { - var c = verb_conjugate(v) - main[c.infinitive]= main[c.infinitive] || "VBP" - main[c.past] = main[c.past] || "VBD" - main[c.gerund] = main[c.gerund] || "VBG" - main[c.present] = main[c.present] || "VBZ" - if(c.participle && !main[c.participle]){ - main[c.participle]="VBN" - } - var doer = verb_to_doer(v) - if (doer) { - main[doer] = "NNA" - } - }) + //conjugate all of these verbs. takes ~8ms. triples the lexicon size. + verbs.forEach(function(v) { + var c = verb_conjugate(v) + main[c.infinitive] = main[c.infinitive] || "VBP" + main[c.past] = main[c.past] || "VBD" + main[c.gerund] = main[c.gerund] || "VBG" + main[c.present] = main[c.present] || "VBZ" + if (c.participle && !main[c.participle]) { + main[c.participle] = "VBN" + } + var doer = verb_to_doer(v) + if (doer) { + main[doer] = "NNA" + } + }) - //adjectives that either aren't covered by rules, or have superlative/comparative forms - var adjectives = [ - 'colonial', - 'moody', - 'literal', - 'actual', - 'probable', - 'apparent', - 'usual', - 'aberrant', - 'ablaze', - 'able', - 'absolute', - 'aboard', - 'abrupt', - 'absent', - 'absorbing', - 'absurd', - 'abundant', - 'accurate', - 'adult', - 'afraid', - 'agonizing', - 'ahead', - 'alert', - 'alive', - 'aloof', - 'amazing', - 'arbitrary', - 'arrogant', - 'asleep', - 'astonishing', - 'average', - 'awake', - 'aware', - 'awkward', - 'back', - 'bad', - 'bankrupt', - 'bawdy', - 'beneficial', - 'bent', - 'best', - 'better', - 'big', - 'bitter', - 'bizarre', - 'black', - 'bloody', - 'blue', - 'bouncy', - 'brash', - 'brave', - 'brief', - 'bright', - 'brilliant', - 'broad', - 'broken', - 'brown', - 'burly', - 'busy', - 'cagey', - 'calm', - 'careful', - 'caring', - 'certain', - 'charming', - 'cheap', - 'chief', - 'chilly', - 'civil', - 'clever', - 'close', - 'closed', - 'cloudy', - 'cold', - 'colossal', - 'commercial', - 'common', - 'complete', - 'complex', - 'concerned', - 'concrete', - 'congruent', - 'constant', - 'cooing', - 'cool', - 'correct', - 'cowardly', - 'craven', - 'cruel', - 'cuddly', - 'curly', - 'cute', - 'daily', - 'damaged', - 'damaging', - 'damp', - 'dapper', - 'dark', - 'dashing', - 'dead', - 'deadpan', - 'dear', - 'deep', - 'deeply', - 'defiant', - 'degenerate', - 'delicate', - 'delightful', - 'desperate', - 'determined', - 'didactic', - 'difficult', - 'discreet', - 'done', - 'double', - 'doubtful', - 'downtown', - 'dreary', - 'drunk', - 'dry', - 'dull', - 'eager', - 'early', - 'east', - 'eastern', - 'easy', - 'elderly', - 'elegant', - 'elfin', - 'elite', - 'eminent', - 'empty', - 'encouraging', - 'entire', - 'erect', - 'ethereal', - 'even', - 'exact', - 'expert', - 'extra', - 'extreme', - 'exuberant', - 'exultant', - 'faint', - 'fair', - 'false', - 'fanc', - 'fancy', - 'fast', - 'fat', - 'faulty', - 'feeble', - 'female', - 'fertile', - 'few', - 'fierce', - 'fierce ', - 'financial', - 'fine', - 'firm', - 'first', - 'fit', - 'fixed', - 'flagrant', - 'flat', - 'foamy', - 'foolish', - 'foregoing', - 'foreign', - 'forgetful', - 'former', - 'fortunate', - 'frail', - 'frantic', - 'free', - 'freezing', - 'frequent', - 'fresh', - 'fretful', - 'friendly', - 'full', - 'fun', - 'funny', - 'furry', - 'future', - 'gainful', - 'gaudy', - 'gentle', - 'giant', - 'giddy', - 'gigantic', - 'glad', - 'gleaming', - 'glib', - 'global', - 'gold', - 'gone', - 'good', - 'goofy', - 'graceful', - 'grand', - 'grateful', - 'gratis', - 'gray', - 'great', - 'green', - 'grey', - 'groovy', - 'gross', - 'guarded', - 'half', - 'handy', - 'hanging', - 'hard', - 'harsh', - 'hateful', - 'heady', - 'heavenly', - 'heavy', - 'hellish', - 'helpful', - 'hesitant', - 'high', - 'highfalutin', - 'hollow', - 'homely', - 'honest', - 'hot', - 'huge', - 'humdrum', - 'hurried', - 'hurt', - 'icy', - 'ignorant', - 'ill', - 'illegal', - 'immediate', - 'immense', - 'imminent', - 'impartial', - 'imperfect', - 'impolite', - 'important', - 'imported', - 'initial', - 'innate', - 'inner', - 'inside', - 'irate', - 'jolly', - 'juicy', - 'junior', - 'juvenile', - 'kaput', - 'keen', - 'kind', - 'kindly', - 'knowing', - 'labored', - 'lame', - 'languid', - 'large', - 'late', - 'latter', - 'learned', - 'left', - 'legal', - 'lethal', - 'level', - 'lewd', - 'light', - 'likely', - 'literate', - 'lively', - 'living', - 'lonely', - 'longing', - 'loose', - 'loud', - 'loutish', - 'lovely', - 'loving', - 'low', - 'lowly', - 'lush', - 'luxuriant', - 'lying', - 'macabre', - 'macho', - 'mad', - 'madly', - 'magenta', - 'main', - 'major', - 'makeshift', - 'male', - 'mammoth', - 'married', - 'mature', - 'measly', - 'meaty', - 'medium', - 'meek', - 'mellow', - 'mere', - 'middle', - 'miniature', - 'minor', - 'miscreant', - 'mobile', - 'moldy', - 'mundane', - 'mute', - 'naive', - 'narrow', - 'near', - 'nearby', - 'neat', - 'necessary', - 'neighborly', - 'new', - 'next', - 'nice', - 'nimble', - 'noisy', - 'nonchalant', - 'nondescript', - 'nonstop', - 'north', - 'nosy', - 'obeisant', - 'obese', - 'obscene', - 'observant', - 'obsolete', - 'odd', - 'offbeat', - 'official', - 'ok', - 'old', - 'open', - 'opposite', - 'orange', - 'organic', - 'outdoor', - 'outer', - 'outgoing', - 'oval', - 'over', - 'overall', - 'overt', - 'overweight', - 'overwrought', - 'painful', - 'pale', - 'past', - 'peaceful', - 'perfect', - 'petite', - 'picayune', - 'pink', - 'placid', - 'plain', - 'plant', - 'pleasant', - 'polite', - 'poor', - 'potential', - 'pregnant', - 'premium', - 'present', - 'pricey', - 'prickly', - 'primary', - 'prior', - 'private', - 'profuse', - 'proper', - 'public', - 'pumped', - 'puny', - 'pure', - 'purple', - 'quack', - 'quaint', - 'quick', - 'quickest', - 'quiet', - 'rabid', - 'racial', - 'rare', - 'raw', - 'ready', - 'real', - 'rebel', - 'recondite', - 'red', - 'redundant', - 'relevant', - 'remote', - 'resolute', - 'resonant', - 'rich', - 'right', - 'rightful', - 'ripe', - 'ritzy', - 'robust', - 'romantic', - 'roomy', - 'rotten', - 'rough', - 'round', - 'royal', - 'rude', - 'sad', - 'safe', - 'salty', - 'same', - 'scarce', - 'scary', - 'scientific', - 'screeching', - 'second', - 'secret', - 'secure', - 'sedate', - 'seemly', - 'selfish', - 'senior', - 'separate', - 'severe', - 'shallow', - 'sharp', - 'shiny', - 'shocking', - 'short', - 'shrill', - 'shut', - 'shy', - 'sick', - 'significant', - 'silly', - 'simple', - 'sincere', - 'single', - 'skinny', - 'slight', - 'slim', - 'slimy', - 'slow', - 'small', - 'smelly', - 'smooth', - 'snobbish', - 'social', - 'soft', - 'somber', - 'soon', - 'sordid', - 'sore', - 'sorry', - 'sour', - 'southern', - 'spare', - 'special', - 'specific', - 'spicy', - 'splendid', - 'square', - 'squeamish', - 'stale', - 'standard', - 'standing', - 'steadfast', - 'steady', - 'steep', - 'stereotyped', - 'stiff', - 'still', - 'straight', - 'strange', - 'strict', - 'striped', - 'strong', - 'stupid', - 'sturdy', - 'subdued', - 'subsequent', - 'substantial', - 'sudden', - 'super', - 'superb', - 'superficial', - 'supreme', - 'sure', - 'sweet', - 'swift', - 'taboo', - 'tall', - 'tame', - 'tan', - 'tart', - 'tasteful', - 'tawdry', - 'telling', - 'temporary', - 'tender', - 'tense', - 'terrific', - 'tested', - 'thick', - 'thin', - 'thoughtful', - 'tidy', - 'tight', - 'tiny', - 'top', - 'torpid', - 'tough', - 'tranquil', - 'trite', - 'true', - 'ugly', - 'ultra', - 'unbecoming', - 'understood', - 'uneven', - 'unfair', - 'unlikely', - 'unruly', - 'unsightly', - 'untidy', - 'unwritten', - 'upbeat', - 'upper', - 'uppity', - 'upset', - 'upstairs', - 'uptight', - 'used', - 'useful', - 'utter', - 'uttermost', - 'vagabond', - 'vague', - 'vanilla', - 'various', - 'vast', - 'vengeful', - 'verdant', - 'violet', - 'volatile', - 'vulgar', - 'wanting', - 'warm', - 'wary', - 'wasteful', - 'weak', - 'weary', - 'weekly', - 'weird', - 'welcome', - 'western', - 'wet', - 'white', - 'whole', - 'wholesale', - 'wide', - 'wild', - 'windy', - 'wiry', - 'wise', - 'wistful', - 'womanly', - 'wooden', - 'woozy', - 'wound', - 'wrong', - 'wry', - 'yellow', - 'young', - 'zany', - 'sacred', - //words that have good comparative/superlative forms - 'aggressive', - 'awesome', - 'beautiful', - 'bored', - 'boring', - 'clean', - 'dirty', - 'efficient', - 'gruesome', - 'handsome', - 'innocent', - 'lean', - 'little', - 'long', - 'mean', - 'normal', - 'proud', - 'rapid', - 'scared', - 'smart', - 'thirsty', - 'hungry', - 'clear', - 'happy', - 'lucky', - 'pretty', - 'interesting', - 'attractive', - 'dangerous', - 'intellegent', - 'formal', - 'tired', - 'solid', - 'angry', - "unknown", - "detailed", - "ongoing", - "prominent", - "permanent", - "diverse", - "partial", - "moderate", - "contemporary", - "intense", - "widespread", - "ultimate", - "ideal", - "adequate", - "sophisticated", - "naked", - "dominant", - "precise", - "intact", - "adverse", - "genuine", - "subtle", - "universal", - "resistant", - "routine", - "distant", - "unexpected", - "soviet", - "blind", - "artificial", - "mild", - "legitimate", - "unpublished", - "superior", - "intermediate", - "everyday", - "dumb", - "excess", - "sexy", - "fake", - "monthly", - "premature", - "sheer", - "generic", - "insane", - "contrary", - "twin", - "upcoming", - "bottom", - "costly", - "indirect", - "sole", - "unrelated", - "hispanic", - "improper", - "underground", - "legendary", - "reluctant", - "beloved", - "inappropriate", - "corrupt", - "irrelevant", - "justified", - "obscure", - "profound", - "hostile", - "influential", - "inadequate", - "abstract", - "timely", - "authentic", - "bold", - "intimate", - "straightforward", - "rival", - "right-wing", - "racist", - "symbolic", - "unprecedented", - "loyal", - "talented", - "troubled", - "noble", - "instant", - "incorrect", - "dense", - "blond", - "deliberate", - "blank", - "rear", - "feminine", - "apt", - "stark", - "alcoholic", - "teenage", - "vibrant", - "humble", - "vain", - "covert", - "bland", - "trendy", - "foul", - "populist", - "alarming", - "hooked", - "wicked", - "deaf", - "left-wing", - "lousy", - "malignant", - "stylish", - "upscale", - "hourly", - "refreshing", - "cozy", - "slick", - "dire", - "yearly", - "inbred", - "part-time", - "finite", - "backwards", - "nightly", - "unauthorized", - "cheesy", - "indoor", - "surreal", - "bald", - "masculine", - "shady", - "spirited", - "eerie", - "horrific", - "smug", - "stern", - "hefty", - "savvy", - "bogus", - "elaborate", - "gloomy", - "pristine", - "extravagant", - "serene", - "advanced", - "perverse", - "devout", - "crisp", - "rosy", - "slender", - "melancholy", - "faux", - "phony", - "danish", - "lofty", - "nuanced", - "lax", - "adept", - "barren", - "shameful", - "sleek", - "solemn", - "vacant", - "dishonest", - "brisk", - "fluent", - "insecure", - "humid", - "menacing", - "moot", - "soothing", - "self-loathing", - "far-reaching", - "harrowing", - "scathing", - "perplexing", - "calming", - "unconvincing", - "unsuspecting", - "unassuming", - "surprising", - "unappealing", - "vexing", - "unending", - "easygoing", - "appetizing", - "disgruntled", - "retarded", - "undecided", - "unregulated", - "unsupervised", - "unrecognized", - "crazed", - "distressed", - "jagged", - "paralleled", - "cramped", - "warped", - "antiquated", - "fabled", - "deranged", - "diseased", - "ragged", - "intoxicated", - "hallowed", - "crowded", - "ghastly", - "disorderly", - "saintly", - "wily", - "sly", - "sprightly", - "ghostly", - "oily", - "hilly", - "grisly", - "earthly", - "friendly", - "unwieldy" - ] + //adjectives that either aren't covered by rules, or have superlative/comparative forms + var adjectives = [ + 'colonial', + 'moody', + 'literal', + 'actual', + 'probable', + 'apparent', + 'usual', + 'aberrant', + 'ablaze', + 'able', + 'absolute', + 'aboard', + 'abrupt', + 'absent', + 'absorbing', + 'absurd', + 'abundant', + 'accurate', + 'adult', + 'afraid', + 'agonizing', + 'ahead', + 'alert', + 'alive', + 'aloof', + 'amazing', + 'arbitrary', + 'arrogant', + 'asleep', + 'astonishing', + 'average', + 'awake', + 'aware', + 'awkward', + 'back', + 'bad', + 'bankrupt', + 'bawdy', + 'beneficial', + 'bent', + 'best', + 'better', + 'big', + 'bitter', + 'bizarre', + 'black', + 'bloody', + 'blue', + 'bouncy', + 'brash', + 'brave', + 'brief', + 'bright', + 'brilliant', + 'broad', + 'broken', + 'brown', + 'burly', + 'busy', + 'cagey', + 'calm', + 'careful', + 'caring', + 'certain', + 'charming', + 'cheap', + 'chief', + 'chilly', + 'civil', + 'clever', + 'close', + 'closed', + 'cloudy', + 'cold', + 'colossal', + 'commercial', + 'common', + 'complete', + 'complex', + 'concerned', + 'concrete', + 'congruent', + 'constant', + 'cooing', + 'cool', + 'correct', + 'cowardly', + 'craven', + 'cruel', + 'cuddly', + 'curly', + 'cute', + 'daily', + 'damaged', + 'damaging', + 'damp', + 'dapper', + 'dark', + 'dashing', + 'dead', + 'deadpan', + 'dear', + 'deep', + 'deeply', + 'defiant', + 'degenerate', + 'delicate', + 'delightful', + 'desperate', + 'determined', + 'didactic', + 'difficult', + 'discreet', + 'done', + 'double', + 'doubtful', + 'downtown', + 'dreary', + 'drunk', + 'dry', + 'dull', + 'eager', + 'early', + 'east', + 'eastern', + 'easy', + 'elderly', + 'elegant', + 'elfin', + 'elite', + 'eminent', + 'empty', + 'encouraging', + 'entire', + 'erect', + 'ethereal', + 'even', + 'exact', + 'expert', + 'extra', + 'extreme', + 'exuberant', + 'exultant', + 'faint', + 'fair', + 'false', + 'fanc', + 'fancy', + 'fast', + 'fat', + 'faulty', + 'feeble', + 'female', + 'fertile', + 'few', + 'fierce', + 'fierce ', + 'financial', + 'fine', + 'firm', + 'first', + 'fit', + 'fixed', + 'flagrant', + 'flat', + 'foamy', + 'foolish', + 'foregoing', + 'foreign', + 'forgetful', + 'former', + 'fortunate', + 'frail', + 'frantic', + 'free', + 'freezing', + 'frequent', + 'fresh', + 'fretful', + 'friendly', + 'full', + 'fun', + 'funny', + 'furry', + 'future', + 'gainful', + 'gaudy', + 'gentle', + 'giant', + 'giddy', + 'gigantic', + 'glad', + 'gleaming', + 'glib', + 'global', + 'gold', + 'gone', + 'good', + 'goofy', + 'graceful', + 'grand', + 'grateful', + 'gratis', + 'gray', + 'great', + 'green', + 'grey', + 'groovy', + 'gross', + 'guarded', + 'half', + 'handy', + 'hanging', + 'hard', + 'harsh', + 'hateful', + 'heady', + 'heavenly', + 'heavy', + 'hellish', + 'helpful', + 'hesitant', + 'high', + 'highfalutin', + 'hollow', + 'homely', + 'honest', + 'hot', + 'huge', + 'humdrum', + 'hurried', + 'hurt', + 'icy', + 'ignorant', + 'ill', + 'illegal', + 'immediate', + 'immense', + 'imminent', + 'impartial', + 'imperfect', + 'impolite', + 'important', + 'imported', + 'initial', + 'innate', + 'inner', + 'inside', + 'irate', + 'jolly', + 'juicy', + 'junior', + 'juvenile', + 'kaput', + 'keen', + 'kind', + 'kindly', + 'knowing', + 'labored', + 'lame', + 'languid', + 'large', + 'late', + 'latter', + 'learned', + 'left', + 'legal', + 'lethal', + 'level', + 'lewd', + 'light', + 'likely', + 'literate', + 'lively', + 'living', + 'lonely', + 'longing', + 'loose', + 'loud', + 'loutish', + 'lovely', + 'loving', + 'low', + 'lowly', + 'lush', + 'luxuriant', + 'lying', + 'macabre', + 'macho', + 'mad', + 'madly', + 'magenta', + 'main', + 'major', + 'makeshift', + 'male', + 'mammoth', + 'married', + 'mature', + 'measly', + 'meaty', + 'medium', + 'meek', + 'mellow', + 'mere', + 'middle', + 'miniature', + 'minor', + 'miscreant', + 'mobile', + 'moldy', + 'mundane', + 'mute', + 'naive', + 'narrow', + 'near', + 'nearby', + 'neat', + 'necessary', + 'neighborly', + 'new', + 'next', + 'nice', + 'nimble', + 'noisy', + 'nonchalant', + 'nondescript', + 'nonstop', + 'north', + 'nosy', + 'obeisant', + 'obese', + 'obscene', + 'observant', + 'obsolete', + 'odd', + 'offbeat', + 'official', + 'ok', + 'old', + 'open', + 'opposite', + 'orange', + 'organic', + 'outdoor', + 'outer', + 'outgoing', + 'oval', + 'over', + 'overall', + 'overt', + 'overweight', + 'overwrought', + 'painful', + 'pale', + 'past', + 'peaceful', + 'perfect', + 'petite', + 'picayune', + 'pink', + 'placid', + 'plain', + 'plant', + 'pleasant', + 'polite', + 'poor', + 'potential', + 'pregnant', + 'premium', + 'present', + 'pricey', + 'prickly', + 'primary', + 'prior', + 'private', + 'profuse', + 'proper', + 'public', + 'pumped', + 'puny', + 'pure', + 'purple', + 'quack', + 'quaint', + 'quick', + 'quickest', + 'quiet', + 'rabid', + 'racial', + 'rare', + 'raw', + 'ready', + 'real', + 'rebel', + 'recondite', + 'red', + 'redundant', + 'relevant', + 'remote', + 'resolute', + 'resonant', + 'rich', + 'right', + 'rightful', + 'ripe', + 'ritzy', + 'robust', + 'romantic', + 'roomy', + 'rotten', + 'rough', + 'round', + 'royal', + 'rude', + 'sad', + 'safe', + 'salty', + 'same', + 'scarce', + 'scary', + 'scientific', + 'screeching', + 'second', + 'secret', + 'secure', + 'sedate', + 'seemly', + 'selfish', + 'senior', + 'separate', + 'severe', + 'shallow', + 'sharp', + 'shiny', + 'shocking', + 'short', + 'shrill', + 'shut', + 'shy', + 'sick', + 'significant', + 'silly', + 'simple', + 'sincere', + 'single', + 'skinny', + 'slight', + 'slim', + 'slimy', + 'slow', + 'small', + 'smelly', + 'smooth', + 'snobbish', + 'social', + 'soft', + 'somber', + 'soon', + 'sordid', + 'sore', + 'sorry', + 'sour', + 'southern', + 'spare', + 'special', + 'specific', + 'spicy', + 'splendid', + 'square', + 'squeamish', + 'stale', + 'standard', + 'standing', + 'steadfast', + 'steady', + 'steep', + 'stereotyped', + 'stiff', + 'still', + 'straight', + 'strange', + 'strict', + 'striped', + 'strong', + 'stupid', + 'sturdy', + 'subdued', + 'subsequent', + 'substantial', + 'sudden', + 'super', + 'superb', + 'superficial', + 'supreme', + 'sure', + 'sweet', + 'swift', + 'taboo', + 'tall', + 'tame', + 'tan', + 'tart', + 'tasteful', + 'tawdry', + 'telling', + 'temporary', + 'tender', + 'tense', + 'terrific', + 'tested', + 'thick', + 'thin', + 'thoughtful', + 'tidy', + 'tight', + 'tiny', + 'top', + 'torpid', + 'tough', + 'tranquil', + 'trite', + 'true', + 'ugly', + 'ultra', + 'unbecoming', + 'understood', + 'uneven', + 'unfair', + 'unlikely', + 'unruly', + 'unsightly', + 'untidy', + 'unwritten', + 'upbeat', + 'upper', + 'uppity', + 'upset', + 'upstairs', + 'uptight', + 'used', + 'useful', + 'utter', + 'uttermost', + 'vagabond', + 'vague', + 'vanilla', + 'various', + 'vast', + 'vengeful', + 'verdant', + 'violet', + 'volatile', + 'vulgar', + 'wanting', + 'warm', + 'wary', + 'wasteful', + 'weak', + 'weary', + 'weekly', + 'weird', + 'welcome', + 'western', + 'wet', + 'white', + 'whole', + 'wholesale', + 'wide', + 'wild', + 'windy', + 'wiry', + 'wise', + 'wistful', + 'womanly', + 'wooden', + 'woozy', + 'wound', + 'wrong', + 'wry', + 'yellow', + 'young', + 'zany', + 'sacred', + //words that have good comparative/superlative forms + 'aggressive', + 'awesome', + 'beautiful', + 'bored', + 'boring', + 'clean', + 'dirty', + 'efficient', + 'gruesome', + 'handsome', + 'innocent', + 'lean', + 'little', + 'long', + 'mean', + 'normal', + 'proud', + 'rapid', + 'scared', + 'smart', + 'thirsty', + 'hungry', + 'clear', + 'happy', + 'lucky', + 'pretty', + 'interesting', + 'attractive', + 'dangerous', + 'intellegent', + 'formal', + 'tired', + 'solid', + 'angry', + "unknown", + "detailed", + "ongoing", + "prominent", + "permanent", + "diverse", + "partial", + "moderate", + "contemporary", + "intense", + "widespread", + "ultimate", + "ideal", + "adequate", + "sophisticated", + "naked", + "dominant", + "precise", + "intact", + "adverse", + "genuine", + "subtle", + "universal", + "resistant", + "routine", + "distant", + "unexpected", + "soviet", + "blind", + "artificial", + "mild", + "legitimate", + "unpublished", + "superior", + "intermediate", + "everyday", + "dumb", + "excess", + "sexy", + "fake", + "monthly", + "premature", + "sheer", + "generic", + "insane", + "contrary", + "twin", + "upcoming", + "bottom", + "costly", + "indirect", + "sole", + "unrelated", + "hispanic", + "improper", + "underground", + "legendary", + "reluctant", + "beloved", + "inappropriate", + "corrupt", + "irrelevant", + "justified", + "obscure", + "profound", + "hostile", + "influential", + "inadequate", + "abstract", + "timely", + "authentic", + "bold", + "intimate", + "straightforward", + "rival", + "right-wing", + "racist", + "symbolic", + "unprecedented", + "loyal", + "talented", + "troubled", + "noble", + "instant", + "incorrect", + "dense", + "blond", + "deliberate", + "blank", + "rear", + "feminine", + "apt", + "stark", + "alcoholic", + "teenage", + "vibrant", + "humble", + "vain", + "covert", + "bland", + "trendy", + "foul", + "populist", + "alarming", + "hooked", + "wicked", + "deaf", + "left-wing", + "lousy", + "malignant", + "stylish", + "upscale", + "hourly", + "refreshing", + "cozy", + "slick", + "dire", + "yearly", + "inbred", + "part-time", + "finite", + "backwards", + "nightly", + "unauthorized", + "cheesy", + "indoor", + "surreal", + "bald", + "masculine", + "shady", + "spirited", + "eerie", + "horrific", + "smug", + "stern", + "hefty", + "savvy", + "bogus", + "elaborate", + "gloomy", + "pristine", + "extravagant", + "serene", + "advanced", + "perverse", + "devout", + "crisp", + "rosy", + "slender", + "melancholy", + "faux", + "phony", + "danish", + "lofty", + "nuanced", + "lax", + "adept", + "barren", + "shameful", + "sleek", + "solemn", + "vacant", + "dishonest", + "brisk", + "fluent", + "insecure", + "humid", + "menacing", + "moot", + "soothing", + "self-loathing", + "far-reaching", + "harrowing", + "scathing", + "perplexing", + "calming", + "unconvincing", + "unsuspecting", + "unassuming", + "surprising", + "unappealing", + "vexing", + "unending", + "easygoing", + "appetizing", + "disgruntled", + "retarded", + "undecided", + "unregulated", + "unsupervised", + "unrecognized", + "crazed", + "distressed", + "jagged", + "paralleled", + "cramped", + "warped", + "antiquated", + "fabled", + "deranged", + "diseased", + "ragged", + "intoxicated", + "hallowed", + "crowded", + "ghastly", + "disorderly", + "saintly", + "wily", + "sly", + "sprightly", + "ghostly", + "oily", + "hilly", + "grisly", + "earthly", + "friendly", + "unwieldy" + ] - //conjugate all of these adjectives to their adverbs. (13ms) - adjectives.forEach(function(j) { - main[j] = "JJ" - var adv = adj_to_adv(j) - if (adv && adv !== j && !main[adv]) { - // console.log(adv) - main[adv] = main[adv] || "RB" - } - var comp = to_comparative(j) - if (comp && !comp.match(/^more ./) && comp !== j && !main[comp]) { - // console.log(comp) - main[comp] = main[comp] || "JJR" - } - var sup = to_superlative(j) - if (sup && !sup.match(/^most ./) && sup !== j && !main[sup]) { - // console.log(sup) - main[sup] = main[sup] || "JJS" - } - }) + //conjugate all of these adjectives to their adverbs. (13ms) + adjectives.forEach(function(j) { + main[j] = "JJ" + var adv = adj_to_adv(j) + if (adv && adv !== j && !main[adv]) { + // console.log(adv) + main[adv] = main[adv] || "RB" + } + var comp = to_comparative(j) + if (comp && !comp.match(/^more ./) && comp !== j && !main[comp]) { + // console.log(comp) + main[comp] = main[comp] || "JJR" + } + var sup = to_superlative(j) + if (sup && !sup.match(/^most ./) && sup !== j && !main[sup]) { + // console.log(sup) + main[sup] = main[sup] || "JJS" + } + }) - if (typeof module !== "undefined" && module.exports) { - module.exports = main; - } + if (typeof module !== "undefined" && module.exports) { + module.exports = main; + } - return main -})() -// console.log(lexicon['restricted']) -// console.log(lexicon['sleeping']) + return main + })() + // console.log(lexicon['restricted']) + // console.log(lexicon['sleeping']) diff --git a/src/parents/adjective/conjugate/to_adverb.js b/src/parents/adjective/conjugate/to_adverb.js index cbef9b34e..10c110b83 100644 --- a/src/parents/adjective/conjugate/to_adverb.js +++ b/src/parents/adjective/conjugate/to_adverb.js @@ -1,136 +1,136 @@ //turn 'quick' into 'quickly' var adj_to_adv = (function() { - var main = function(str) { - var irregulars = { - "idle": "idly", - "public": "publicly", - "vague": "vaguely", - "day": "daily", - "icy": "icily", - "single": "singly", - "female": "womanly", - "male": "manly", - "simple": "simply", - "whole": "wholly", - "special": "especially", - "straight": "straight", - "wrong": "wrong", - "fast": "fast", - "hard": "hard", - "late": "late", - "early": "early", - "well": "well", - "best": "best", - "latter": "latter", - "bad": "badly" - } + var main = function(str) { + var irregulars = { + "idle": "idly", + "public": "publicly", + "vague": "vaguely", + "day": "daily", + "icy": "icily", + "single": "singly", + "female": "womanly", + "male": "manly", + "simple": "simply", + "whole": "wholly", + "special": "especially", + "straight": "straight", + "wrong": "wrong", + "fast": "fast", + "hard": "hard", + "late": "late", + "early": "early", + "well": "well", + "best": "best", + "latter": "latter", + "bad": "badly" + } - var dont = { - "foreign": 1, - "black": 1, - "modern": 1, - "next": 1, - "difficult": 1, - "degenerate": 1, - "young": 1, - "awake": 1, - "back": 1, - "blue": 1, - "brown": 1, - "orange": 1, - "complex": 1, - "cool": 1, - "dirty": 1, - "done": 1, - "empty": 1, - "fat": 1, - "fertile": 1, - "frozen": 1, - "gold": 1, - "grey": 1, - "gray": 1, - "green": 1, - "medium": 1, - "parallel": 1, - "outdoor": 1, - "unknown": 1, - "undersized": 1, - "used": 1, - "welcome": 1, - "yellow": 1, - "white": 1, - "fixed": 1, - "mixed": 1, - "super": 1, - "guilty": 1, - "tiny": 1, - "able": 1, - "unable": 1, - "same": 1, - "adult": 1 - } + var dont = { + "foreign": 1, + "black": 1, + "modern": 1, + "next": 1, + "difficult": 1, + "degenerate": 1, + "young": 1, + "awake": 1, + "back": 1, + "blue": 1, + "brown": 1, + "orange": 1, + "complex": 1, + "cool": 1, + "dirty": 1, + "done": 1, + "empty": 1, + "fat": 1, + "fertile": 1, + "frozen": 1, + "gold": 1, + "grey": 1, + "gray": 1, + "green": 1, + "medium": 1, + "parallel": 1, + "outdoor": 1, + "unknown": 1, + "undersized": 1, + "used": 1, + "welcome": 1, + "yellow": 1, + "white": 1, + "fixed": 1, + "mixed": 1, + "super": 1, + "guilty": 1, + "tiny": 1, + "able": 1, + "unable": 1, + "same": 1, + "adult": 1 + } - var transforms = [{ - reg: /al$/i, - repl: 'ally' - }, { - reg: /ly$/i, - repl: 'ly' - }, { - reg: /(.{3})y$/i, - repl: '$1ily' - }, { - reg: /que$/i, - repl: 'quely' - }, { - reg: /ue$/i, - repl: 'uly' - }, { - reg: /ic$/i, - repl: 'ically' - }, { - reg: /ble$/i, - repl: 'bly' - }, { - reg: /l$/i, - repl: 'ly' - }] + var transforms = [{ + reg: /al$/i, + repl: 'ally' + }, { + reg: /ly$/i, + repl: 'ly' + }, { + reg: /(.{3})y$/i, + repl: '$1ily' + }, { + reg: /que$/i, + repl: 'quely' + }, { + reg: /ue$/i, + repl: 'uly' + }, { + reg: /ic$/i, + repl: 'ically' + }, { + reg: /ble$/i, + repl: 'bly' + }, { + reg: /l$/i, + repl: 'ly' + }] - var not_matches = [ - /airs$/, - /ll$/, - /ee.$/, - /ile$/ - ] + var not_matches = [ + /airs$/, + /ll$/, + /ee.$/, + /ile$/ + ] - if (dont[str]) { - return null - } - if (irregulars[str]) { - return irregulars[str] - } - if (str.length <= 3) { - return null - } - var i; - for (i = 0; i < not_matches.length; i++) { - if (str.match(not_matches[i])) { - return null - } - } - for (i = 0; i < transforms.length; i++) { - if (str.match(transforms[i].reg)) { - return str.replace(transforms[i].reg, transforms[i].repl) - } - } - return str + 'ly' - } + if (dont[str]) { + return null + } + if (irregulars[str]) { + return irregulars[str] + } + if (str.length <= 3) { + return null + } + var i; + for (i = 0; i < not_matches.length; i++) { + if (str.match(not_matches[i])) { + return null + } + } + for (i = 0; i < transforms.length; i++) { + if (str.match(transforms[i].reg)) { + return str.replace(transforms[i].reg, transforms[i].repl) + } + } + return str + 'ly' + } - if (typeof module !== "undefined" && module.exports) { - module.exports = main; - } - return main; + if (typeof module !== "undefined" && module.exports) { + module.exports = main; + } + return main; })(); // console.log(adj_to_adv('direct')) diff --git a/src/parents/adjective/conjugate/to_comparative.js b/src/parents/adjective/conjugate/to_comparative.js index f945ea0b5..93e80a766 100644 --- a/src/parents/adjective/conjugate/to_comparative.js +++ b/src/parents/adjective/conjugate/to_comparative.js @@ -1,298 +1,297 @@ //turn 'quick' into 'quickly' var to_comparative = (function() { - var main = function(str) { - var irregulars = { - "grey": "greyer", - "gray": "grayer", - "green": "greener", - "yellow": "yellower", - "red": "redder", - "good": "better", - "well": "better", - "bad": "worse", - "sad": "sadder" - } + var main = function(str) { + var irregulars = { + "grey": "greyer", + "gray": "grayer", + "green": "greener", + "yellow": "yellower", + "red": "redder", + "good": "better", + "well": "better", + "bad": "worse", + "sad": "sadder" + } - var dos = { - "absurd": 1, - "aggressive": 1, - "alert": 1, - "alive": 1, - "awesome": 1, - "beautiful": 1, - "big": 1, - "bitter": 1, - "black": 1, - "blue": 1, - "bored": 1, - "boring": 1, - "brash": 1, - "brave": 1, - "brief": 1, - "bright": 1, - "broad": 1, - "brown": 1, - "calm": 1, - "charming": 1, - "cheap": 1, - "clean": 1, - "cold": 1, - "cool": 1, - "cruel": 1, - "cute": 1, - "damp": 1, - "deep": 1, - "dear": 1, - "dead": 1, - "dark": 1, - "dirty": 1, - "drunk": 1, - "dull": 1, - "eager": 1, - "efficient": 1, - "even": 1, - "faint": 1, - "fair": 1, - "fanc": 1, - "fast": 1, - "fat": 1, - "feeble": 1, - "few": 1, - "fierce ": 1, - "fine": 1, - "flat": 1, - "forgetful": 1, - "frail": 1, - "full": 1, - "gentle": 1, - "glib": 1, - "great": 1, - "green": 1, - "gruesome": 1, - "handsome": 1, - "hard": 1, - "harsh": 1, - "high": 1, - "hollow": 1, - "hot": 1, - "impolite": 1, - "innocent": 1, - "keen": 1, - "kind": 1, - "lame": 1, - "lean": 1, - "light": 1, - "little": 1, - "loose": 1, - "long": 1, - "loud": 1, - "low": 1, - "lush": 1, - "macho": 1, - "mean": 1, - "meek": 1, - "mellow": 1, - "mundane": 1, - "near": 1, - "neat": 1, - "new": 1, - "nice": 1, - "normal": 1, - "odd": 1, - "old": 1, - "pale": 1, - "pink": 1, - "plain": 1, - "poor": 1, - "proud": 1, - "purple": 1, - "quick": 1, - "rare": 1, - "rapid": 1, - "red": 1, - "rich": 1, - "ripe": 1, - "rotten": 1, - "round": 1, - "rude": 1, - "sad": 1, - "safe": 1, - "scarce": 1, - "scared": 1, - "shallow": 1, - "sharp": 1, - "short": 1, - "shrill": 1, - "simple": 1, - "slim": 1, - "slow": 1, - "small": 1, - "smart": 1, - "smooth": 1, - "soft": 1, - "sore": 1, - "sour": 1, - "square": 1, - "stale": 1, - "steep": 1, - "stiff": 1, - "straight": 1, - "strange": 1, - "strong": 1, - "sweet": 1, - "swift": 1, - "tall": 1, - "tame": 1, - "tart": 1, - "tender": 1, - "tense": 1, - "thick": 1, - "thin": 1, - "tight": 1, - "tough": 1, - "vague": 1, - "vast": 1, - "vulgar": 1, - "warm": 1, - "weak": 1, - "wet": 1, - "white": 1, - "wide": 1, - "wild": 1, - "wise": 1, - "young": 1, - "yellow": 1, - "easy": 1, - "narrow": 1, - "late": 1, - "early": 1, - "soon": 1, - "close": 1, - "empty": 1, - "dry": 1, - "windy": 1, - "noisy": 1, - "thirsty": 1, - "hungry": 1, - "fresh": 1, - "quiet": 1, - "clear": 1, - "heavy": 1, - "happy": 1, - "funny": 1, - "lucky": 1, - "pretty": 1, - "important": 1, - "interesting": 1, - "attractive": 1, - "dangerous": 1, - "intellegent": 1, - "pure": 1, - "orange": 1, - "large": 1, - "firm": 1, - "grand": 1, - "formal": 1, - "raw": 1, - "weird": 1, - "glad": 1, - "mad": 1, - "strict": 1, - "tired": 1, - "solid": 1, - "extreme": 1, - "mature": 1, - "true": 1, - "free": 1, - "curly": 1, - "angry": 1 - } + var dos = { + "absurd": 1, + "aggressive": 1, + "alert": 1, + "alive": 1, + "awesome": 1, + "beautiful": 1, + "big": 1, + "bitter": 1, + "black": 1, + "blue": 1, + "bored": 1, + "boring": 1, + "brash": 1, + "brave": 1, + "brief": 1, + "bright": 1, + "broad": 1, + "brown": 1, + "calm": 1, + "charming": 1, + "cheap": 1, + "clean": 1, + "cold": 1, + "cool": 1, + "cruel": 1, + "cute": 1, + "damp": 1, + "deep": 1, + "dear": 1, + "dead": 1, + "dark": 1, + "dirty": 1, + "drunk": 1, + "dull": 1, + "eager": 1, + "efficient": 1, + "even": 1, + "faint": 1, + "fair": 1, + "fanc": 1, + "fast": 1, + "fat": 1, + "feeble": 1, + "few": 1, + "fierce ": 1, + "fine": 1, + "flat": 1, + "forgetful": 1, + "frail": 1, + "full": 1, + "gentle": 1, + "glib": 1, + "great": 1, + "green": 1, + "gruesome": 1, + "handsome": 1, + "hard": 1, + "harsh": 1, + "high": 1, + "hollow": 1, + "hot": 1, + "impolite": 1, + "innocent": 1, + "keen": 1, + "kind": 1, + "lame": 1, + "lean": 1, + "light": 1, + "little": 1, + "loose": 1, + "long": 1, + "loud": 1, + "low": 1, + "lush": 1, + "macho": 1, + "mean": 1, + "meek": 1, + "mellow": 1, + "mundane": 1, + "near": 1, + "neat": 1, + "new": 1, + "nice": 1, + "normal": 1, + "odd": 1, + "old": 1, + "pale": 1, + "pink": 1, + "plain": 1, + "poor": 1, + "proud": 1, + "purple": 1, + "quick": 1, + "rare": 1, + "rapid": 1, + "red": 1, + "rich": 1, + "ripe": 1, + "rotten": 1, + "round": 1, + "rude": 1, + "sad": 1, + "safe": 1, + "scarce": 1, + "scared": 1, + "shallow": 1, + "sharp": 1, + "short": 1, + "shrill": 1, + "simple": 1, + "slim": 1, + "slow": 1, + "small": 1, + "smart": 1, + "smooth": 1, + "soft": 1, + "sore": 1, + "sour": 1, + "square": 1, + "stale": 1, + "steep": 1, + "stiff": 1, + "straight": 1, + "strange": 1, + "strong": 1, + "sweet": 1, + "swift": 1, + "tall": 1, + "tame": 1, + "tart": 1, + "tender": 1, + "tense": 1, + "thick": 1, + "thin": 1, + "tight": 1, + "tough": 1, + "vague": 1, + "vast": 1, + "vulgar": 1, + "warm": 1, + "weak": 1, + "wet": 1, + "white": 1, + "wide": 1, + "wild": 1, + "wise": 1, + "young": 1, + "yellow": 1, + "easy": 1, + "narrow": 1, + "late": 1, + "early": 1, + "soon": 1, + "close": 1, + "empty": 1, + "dry": 1, + "windy": 1, + "noisy": 1, + "thirsty": 1, + "hungry": 1, + "fresh": 1, + "quiet": 1, + "clear": 1, + "heavy": 1, + "happy": 1, + "funny": 1, + "lucky": 1, + "pretty": 1, + "important": 1, + "interesting": 1, + "attractive": 1, + "dangerous": 1, + "intellegent": 1, + "pure": 1, + "orange": 1, + "large": 1, + "firm": 1, + "grand": 1, + "formal": 1, + "raw": 1, + "weird": 1, + "glad": 1, + "mad": 1, + "strict": 1, + "tired": 1, + "solid": 1, + "extreme": 1, + "mature": 1, + "true": 1, + "free": 1, + "curly": 1, + "angry": 1 + } - var dont = { - "overweight": 1, - "main": 1, - "nearby": 1, - "asleep": 1, - "weekly": 1, - "secret": 1, - "certain": 1 - } + var dont = { + "overweight": 1, + "main": 1, + "nearby": 1, + "asleep": 1, + "weekly": 1, + "secret": 1, + "certain": 1 + } - var transforms = [{ - reg: /y$/i, - repl: 'ier' - }, { - reg: /([aeiou])t$/i, - repl: '$1tter' - }, { - reg: /([aeou])de$/i, - repl: '$1der' - }, { - reg: /nge$/i, - repl: 'nger' - } - ] + var transforms = [{ + reg: /y$/i, + repl: 'ier' + }, { + reg: /([aeiou])t$/i, + repl: '$1tter' + }, { + reg: /([aeou])de$/i, + repl: '$1der' + }, { + reg: /nge$/i, + repl: 'nger' + }] - var matches = [ - /ght$/, - /nge$/, - /ough$/, - /ain$/, - /uel$/, - /[au]ll$/, - /ow$/, - /old$/, - /oud$/, - /e[ae]p$/ - ] + var matches = [ + /ght$/, + /nge$/, + /ough$/, + /ain$/, + /uel$/, + /[au]ll$/, + /ow$/, + /old$/, + /oud$/, + /e[ae]p$/ + ] - var not_matches = [ - /ary$/, - /ous$/ - ] + var not_matches = [ + /ary$/, + /ous$/ + ] - if (dont[str]) { - return null - } + if (dont[str]) { + return null + } - if (dos[str]) { - if (str.match(/e$/)) { - return str + "r" - } else { - return str + "er" - } - } + if (dos[str]) { + if (str.match(/e$/)) { + return str + "r" + } else { + return str + "er" + } + } - if (irregulars[str]) { - return irregulars[str] - } + if (irregulars[str]) { + return irregulars[str] + } - var i; - for (i = 0; i < not_matches.length; i++) { - if (str.match(not_matches[i])) { - return "more " + str - } - } + var i; + for (i = 0; i < not_matches.length; i++) { + if (str.match(not_matches[i])) { + return "more " + str + } + } - for (i = 0; i < transforms.length; i++) { - if (str.match(transforms[i].reg)) { - return str.replace(transforms[i].reg, transforms[i].repl) - } - } + for (i = 0; i < transforms.length; i++) { + if (str.match(transforms[i].reg)) { + return str.replace(transforms[i].reg, transforms[i].repl) + } + } - for (i = 0; i < matches.length; i++) { - if (str.match(matches[i])) { - return str + "er" - } - } - return "more " + str - } + for (i = 0; i < matches.length; i++) { + if (str.match(matches[i])) { + return str + "er" + } + } + return "more " + str + } - if (typeof module !== "undefined" && module.exports) { - module.exports = main; - } - return main; + if (typeof module !== "undefined" && module.exports) { + module.exports = main; + } + return main; })(); // console.log(to_comparative('dry')) diff --git a/src/parents/adjective/conjugate/to_noun.js b/src/parents/adjective/conjugate/to_noun.js index 4bb1f34d5..6c5da2bef 100644 --- a/src/parents/adjective/conjugate/to_noun.js +++ b/src/parents/adjective/conjugate/to_noun.js @@ -1,68 +1,68 @@ //convert cute to cuteness var adj_to_noun = (function() { - var main = function(w) { - var irregulars = { - "clean": "cleanliness", - "naivety": "naivety" - }; - if (!w) { - return ""; - } - if (irregulars[w]) { - return irregulars[w]; - } - if (w.match(" ")) { - return w; - } - if (w.match(/w$/)) { - return w; - } - if (w.match(/y$/)) { - return w.replace(/y$/, 'iness'); - } - if (w.match(/le$/)) { - return w.replace(/le$/, 'ility'); - } - if (w.match(/ial$/)) { - return w.replace(/ial$/, 'y'); - } - if (w.match(/al$/)) { - return w.replace(/al$/, 'ality'); - } - if (w.match(/ting$/)) { - return w.replace(/ting$/, 'ting'); - } - if (w.match(/ring$/)) { - return w.replace(/ring$/, 'ring'); - } - if (w.match(/bing$/)) { - return w.replace(/bing$/, 'bingness'); - } - if (w.match(/ning$/)) { - return w.replace(/ning$/, 'ningness'); - } - if (w.match(/sing$/)) { - return w.replace(/sing$/, 'se'); - } - if (w.match(/ing$/)) { - return w.replace(/ing$/, 'ment'); - } - if (w.match(/ess$/)) { - return w.replace(/ess$/, 'essness'); - } - if (w.match(/ous$/)) { - return w.replace(/ous$/, 'ousness'); - } - if (w.match(/s$/)) { - return w; - } - return w + "ness"; + var main = function(w) { + var irregulars = { + "clean": "cleanliness", + "naivety": "naivety" }; - if (typeof module !== "undefined" && module.exports) { - module.exports = main; + if (!w) { + return ""; } - return main + if (irregulars[w]) { + return irregulars[w]; + } + if (w.match(" ")) { + return w; + } + if (w.match(/w$/)) { + return w; + } + if (w.match(/y$/)) { + return w.replace(/y$/, 'iness'); + } + if (w.match(/le$/)) { + return w.replace(/le$/, 'ility'); + } + if (w.match(/ial$/)) { + return w.replace(/ial$/, 'y'); + } + if (w.match(/al$/)) { + return w.replace(/al$/, 'ality'); + } + if (w.match(/ting$/)) { + return w.replace(/ting$/, 'ting'); + } + if (w.match(/ring$/)) { + return w.replace(/ring$/, 'ring'); + } + if (w.match(/bing$/)) { + return w.replace(/bing$/, 'bingness'); + } + if (w.match(/ning$/)) { + return w.replace(/ning$/, 'ningness'); + } + if (w.match(/sing$/)) { + return w.replace(/sing$/, 'se'); + } + if (w.match(/ing$/)) { + return w.replace(/ing$/, 'ment'); + } + if (w.match(/ess$/)) { + return w.replace(/ess$/, 'essness'); + } + if (w.match(/ous$/)) { + return w.replace(/ous$/, 'ousness'); + } + if (w.match(/s$/)) { + return w; + } + return w + "ness"; + }; + if (typeof module !== "undefined" && module.exports) { + module.exports = main; + } + return main })() // console.log(exports.adj_to_noun('mysterious')); diff --git a/src/parents/adjective/conjugate/to_superlative.js b/src/parents/adjective/conjugate/to_superlative.js index c33e60d13..64dfb66db 100644 --- a/src/parents/adjective/conjugate/to_superlative.js +++ b/src/parents/adjective/conjugate/to_superlative.js @@ -1,294 +1,293 @@ //turn 'quick' into 'quickest' var to_superlative = (function() { - var main = function(str) { - var irregulars = { - "nice": "nicest", - "late": "latest", - "hard": "hardest", - "inner": "innermost", - "outer": "outermost", - "far": "furthest", - "worse": "worst", - "bad": "worst", - "good": "best" - } + var main = function(str) { + var irregulars = { + "nice": "nicest", + "late": "latest", + "hard": "hardest", + "inner": "innermost", + "outer": "outermost", + "far": "furthest", + "worse": "worst", + "bad": "worst", + "good": "best" + } - var dos = { - "absurd": 1, - "aggressive": 1, - "alert": 1, - "alive": 1, - "awesome": 1, - "beautiful": 1, - "big": 1, - "bitter": 1, - "black": 1, - "blue": 1, - "bored": 1, - "boring": 1, - "brash": 1, - "brave": 1, - "brief": 1, - "bright": 1, - "broad": 1, - "brown": 1, - "calm": 1, - "charming": 1, - "cheap": 1, - "clean": 1, - "cold": 1, - "cool": 1, - "cruel": 1, - "cute": 1, - "damp": 1, - "deep": 1, - "dear": 1, - "dead": 1, - "dark": 1, - "dirty": 1, - "drunk": 1, - "dull": 1, - "eager": 1, - "efficient": 1, - "even": 1, - "faint": 1, - "fair": 1, - "fanc": 1, - "fast": 1, - "fat": 1, - "feeble": 1, - "few": 1, - "fierce ": 1, - "fine": 1, - "flat": 1, - "forgetful": 1, - "frail": 1, - "full": 1, - "gentle": 1, - "glib": 1, - "great": 1, - "green": 1, - "gruesome": 1, - "handsome": 1, - "hard": 1, - "harsh": 1, - "high": 1, - "hollow": 1, - "hot": 1, - "impolite": 1, - "innocent": 1, - "keen": 1, - "kind": 1, - "lame": 1, - "lean": 1, - "light": 1, - "little": 1, - "loose": 1, - "long": 1, - "loud": 1, - "low": 1, - "lush": 1, - "macho": 1, - "mean": 1, - "meek": 1, - "mellow": 1, - "mundane": 1, - "near": 1, - "neat": 1, - "new": 1, - "nice": 1, - "normal": 1, - "odd": 1, - "old": 1, - "pale": 1, - "pink": 1, - "plain": 1, - "poor": 1, - "proud": 1, - "purple": 1, - "quick": 1, - "rare": 1, - "rapid": 1, - "red": 1, - "rich": 1, - "ripe": 1, - "rotten": 1, - "round": 1, - "rude": 1, - "sad": 1, - "safe": 1, - "scarce": 1, - "scared": 1, - "shallow": 1, - "sharp": 1, - "short": 1, - "shrill": 1, - "simple": 1, - "slim": 1, - "slow": 1, - "small": 1, - "smart": 1, - "smooth": 1, - "soft": 1, - "sore": 1, - "sour": 1, - "square": 1, - "stale": 1, - "steep": 1, - "stiff": 1, - "straight": 1, - "strange": 1, - "strong": 1, - "sweet": 1, - "swift": 1, - "tall": 1, - "tame": 1, - "tart": 1, - "tender": 1, - "tense": 1, - "thick": 1, - "thin": 1, - "tight": 1, - "tough": 1, - "vague": 1, - "vast": 1, - "vulgar": 1, - "warm": 1, - "weak": 1, - "wet": 1, - "white": 1, - "wide": 1, - "wild": 1, - "wise": 1, - "young": 1, - "yellow": 1, - "easy": 1, - "narrow": 1, - "late": 1, - "early": 1, - "soon": 1, - "close": 1, - "empty": 1, - "dry": 1, - "windy": 1, - "noisy": 1, - "thirsty": 1, - "hungry": 1, - "fresh": 1, - "quiet": 1, - "clear": 1, - "heavy": 1, - "happy": 1, - "funny": 1, - "lucky": 1, - "pretty": 1, - "important": 1, - "interesting": 1, - "attractive": 1, - "dangerous": 1, - "intellegent": 1, - "pure": 1, - "orange": 1, - "large": 1, - "firm": 1, - "grand": 1, - "formal": 1, - "raw": 1, - "weird": 1, - "glad": 1, - "mad": 1, - "strict": 1, - "tired": 1, - "solid": 1, - "extreme": 1, - "mature": 1, - "true": 1, - "free": 1, - "curly": 1, - "angry": 1 - } + var dos = { + "absurd": 1, + "aggressive": 1, + "alert": 1, + "alive": 1, + "awesome": 1, + "beautiful": 1, + "big": 1, + "bitter": 1, + "black": 1, + "blue": 1, + "bored": 1, + "boring": 1, + "brash": 1, + "brave": 1, + "brief": 1, + "bright": 1, + "broad": 1, + "brown": 1, + "calm": 1, + "charming": 1, + "cheap": 1, + "clean": 1, + "cold": 1, + "cool": 1, + "cruel": 1, + "cute": 1, + "damp": 1, + "deep": 1, + "dear": 1, + "dead": 1, + "dark": 1, + "dirty": 1, + "drunk": 1, + "dull": 1, + "eager": 1, + "efficient": 1, + "even": 1, + "faint": 1, + "fair": 1, + "fanc": 1, + "fast": 1, + "fat": 1, + "feeble": 1, + "few": 1, + "fierce ": 1, + "fine": 1, + "flat": 1, + "forgetful": 1, + "frail": 1, + "full": 1, + "gentle": 1, + "glib": 1, + "great": 1, + "green": 1, + "gruesome": 1, + "handsome": 1, + "hard": 1, + "harsh": 1, + "high": 1, + "hollow": 1, + "hot": 1, + "impolite": 1, + "innocent": 1, + "keen": 1, + "kind": 1, + "lame": 1, + "lean": 1, + "light": 1, + "little": 1, + "loose": 1, + "long": 1, + "loud": 1, + "low": 1, + "lush": 1, + "macho": 1, + "mean": 1, + "meek": 1, + "mellow": 1, + "mundane": 1, + "near": 1, + "neat": 1, + "new": 1, + "nice": 1, + "normal": 1, + "odd": 1, + "old": 1, + "pale": 1, + "pink": 1, + "plain": 1, + "poor": 1, + "proud": 1, + "purple": 1, + "quick": 1, + "rare": 1, + "rapid": 1, + "red": 1, + "rich": 1, + "ripe": 1, + "rotten": 1, + "round": 1, + "rude": 1, + "sad": 1, + "safe": 1, + "scarce": 1, + "scared": 1, + "shallow": 1, + "sharp": 1, + "short": 1, + "shrill": 1, + "simple": 1, + "slim": 1, + "slow": 1, + "small": 1, + "smart": 1, + "smooth": 1, + "soft": 1, + "sore": 1, + "sour": 1, + "square": 1, + "stale": 1, + "steep": 1, + "stiff": 1, + "straight": 1, + "strange": 1, + "strong": 1, + "sweet": 1, + "swift": 1, + "tall": 1, + "tame": 1, + "tart": 1, + "tender": 1, + "tense": 1, + "thick": 1, + "thin": 1, + "tight": 1, + "tough": 1, + "vague": 1, + "vast": 1, + "vulgar": 1, + "warm": 1, + "weak": 1, + "wet": 1, + "white": 1, + "wide": 1, + "wild": 1, + "wise": 1, + "young": 1, + "yellow": 1, + "easy": 1, + "narrow": 1, + "late": 1, + "early": 1, + "soon": 1, + "close": 1, + "empty": 1, + "dry": 1, + "windy": 1, + "noisy": 1, + "thirsty": 1, + "hungry": 1, + "fresh": 1, + "quiet": 1, + "clear": 1, + "heavy": 1, + "happy": 1, + "funny": 1, + "lucky": 1, + "pretty": 1, + "important": 1, + "interesting": 1, + "attractive": 1, + "dangerous": 1, + "intellegent": 1, + "pure": 1, + "orange": 1, + "large": 1, + "firm": 1, + "grand": 1, + "formal": 1, + "raw": 1, + "weird": 1, + "glad": 1, + "mad": 1, + "strict": 1, + "tired": 1, + "solid": 1, + "extreme": 1, + "mature": 1, + "true": 1, + "free": 1, + "curly": 1, + "angry": 1 + } - var dont = { - "overweight": 1, - "ready": 1 - } + var dont = { + "overweight": 1, + "ready": 1 + } - var transforms = [{ - reg: /y$/i, - repl: 'iest' - }, { - reg: /([aeiou])t$/i, - repl: '$1ttest' - }, { - reg: /([aeou])de$/i, - repl: '$1dest' - }, { - reg: /nge$/i, - repl: 'ngest' - } - ] + var transforms = [{ + reg: /y$/i, + repl: 'iest' + }, { + reg: /([aeiou])t$/i, + repl: '$1ttest' + }, { + reg: /([aeou])de$/i, + repl: '$1dest' + }, { + reg: /nge$/i, + repl: 'ngest' + }] - var matches = [ - /ght$/, - /nge$/, - /ough$/, - /ain$/, - /uel$/, - /[au]ll$/, - /ow$/, - /oud$/, - /...p$/ - ] + var matches = [ + /ght$/, + /nge$/, + /ough$/, + /ain$/, + /uel$/, + /[au]ll$/, + /ow$/, + /oud$/, + /...p$/ + ] - var not_matches = [ - /ary$/ - ] + var not_matches = [ + /ary$/ + ] - var generic_transformation = function(str) { - if (str.match(/e$/)) { - return str + "st" - } else { - return str + "est" - } - } + var generic_transformation = function(str) { + if (str.match(/e$/)) { + return str + "st" + } else { + return str + "est" + } + } - if (dos[str]) { - return generic_transformation(str) - } + if (dos[str]) { + return generic_transformation(str) + } - if (dont[str]) { - return "most " + str - } + if (dont[str]) { + return "most " + str + } - if (irregulars[str]) { - return irregulars[str] - } - var i; - for (i = 0; i < not_matches.length; i++) { - if (str.match(not_matches[i])) { - return "most " + str - } - } + if (irregulars[str]) { + return irregulars[str] + } + var i; + for (i = 0; i < not_matches.length; i++) { + if (str.match(not_matches[i])) { + return "most " + str + } + } - for (i = 0; i < transforms.length; i++) { - if (str.match(transforms[i].reg)) { - return str.replace(transforms[i].reg, transforms[i].repl) - } - } + for (i = 0; i < transforms.length; i++) { + if (str.match(transforms[i].reg)) { + return str.replace(transforms[i].reg, transforms[i].repl) + } + } - for (i = 0; i < matches.length; i++) { - if (str.match(matches[i])) { - return generic_transformation(str) - } - } - return "most " + str - } + for (i = 0; i < matches.length; i++) { + if (str.match(matches[i])) { + return generic_transformation(str) + } + } + return "most " + str + } - if (typeof module !== "undefined" && module.exports) { - module.exports = main; - } - return main; + if (typeof module !== "undefined" && module.exports) { + module.exports = main; + } + return main; })(); // console.log(to_superlative('dry')) diff --git a/src/parents/adverb/conjugate/to_adjective.js b/src/parents/adverb/conjugate/to_adjective.js index a9e818dc3..6db844332 100644 --- a/src/parents/adverb/conjugate/to_adjective.js +++ b/src/parents/adverb/conjugate/to_adjective.js @@ -1,62 +1,62 @@ //turns 'quickly' into 'quick' var to_adjective = (function() { - var main = function(str) { - var irregulars = { - "idly": "idle", - "sporadically": "sporadic", - "basically": "basic", - "grammatically": "grammatical", - "alphabetically": "alphabetical", - "economically": "economical", - "conically": "conical", - "politically": "political", - "vertically": "vertical", - "practically": "practical", - "theoretically": "theoretical", - "critically": "critical", - "fantastically": "fantastic", - "mystically": "mystical", - "pornographically": "pornographic", - "fully": "full", - "jolly": "jolly", - "wholly": "whole" - } - var transforms = [{ - reg: /bly$/i, - repl: 'ble' - }, { - reg: /gically$/i, - repl: 'gical' - }, { - reg: /([rsdh])ically$/i, - repl: '$1ical' - }, { - reg: /ically$/i, - repl: 'ic' - }, { - reg: /uly$/i, - repl: 'ue' - }, { - reg: /ily$/i, - repl: 'y' - }, { - reg: /(.{3})ly$/i, - repl: '$1' - }] - if (irregulars[str]) { - return irregulars[str] - } - for (var i = 0; i < transforms.length; i++) { - if (str.match(transforms[i].reg)) { - return str.replace(transforms[i].reg, transforms[i].repl) - } - } - return str - } - if (typeof module !== "undefined" && module.exports) { - module.exports = main; - } - return main; + var main = function(str) { + var irregulars = { + "idly": "idle", + "sporadically": "sporadic", + "basically": "basic", + "grammatically": "grammatical", + "alphabetically": "alphabetical", + "economically": "economical", + "conically": "conical", + "politically": "political", + "vertically": "vertical", + "practically": "practical", + "theoretically": "theoretical", + "critically": "critical", + "fantastically": "fantastic", + "mystically": "mystical", + "pornographically": "pornographic", + "fully": "full", + "jolly": "jolly", + "wholly": "whole" + } + var transforms = [{ + reg: /bly$/i, + repl: 'ble' + }, { + reg: /gically$/i, + repl: 'gical' + }, { + reg: /([rsdh])ically$/i, + repl: '$1ical' + }, { + reg: /ically$/i, + repl: 'ic' + }, { + reg: /uly$/i, + repl: 'ue' + }, { + reg: /ily$/i, + repl: 'y' + }, { + reg: /(.{3})ly$/i, + repl: '$1' + }] + if (irregulars[str]) { + return irregulars[str] + } + for (var i = 0; i < transforms.length; i++) { + if (str.match(transforms[i].reg)) { + return str.replace(transforms[i].reg, transforms[i].repl) + } + } + return str + } + if (typeof module !== "undefined" && module.exports) { + module.exports = main; + } + return main; })(); // console.log(to_adjective('quickly') === 'quick') diff --git a/src/parents/noun/conjugate/inflect.js b/src/parents/noun/conjugate/inflect.js index b71830554..999becf9a 100644 --- a/src/parents/noun/conjugate/inflect.js +++ b/src/parents/noun/conjugate/inflect.js @@ -4,505 +4,505 @@ var inflect = (function() { - var titlecase=function(str){ - if(!str){return ''} - return str.charAt(0).toUpperCase() + str.slice(1) + var titlecase = function(str) { + if (!str) { + return '' } - var irregulars = [ - ['child', 'children'], - ['person', 'people'], - ['leaf', 'leaves'], - ['database', 'databases'], - ['quiz', 'quizzes'], - ['child', 'children'], - ['stomach', 'stomachs'], - ['sex', 'sexes'], - ['move', 'moves'], - ['shoe', 'shoes'], - ["goose", "geese"], - ["phenomenon", "phenomena"], - ['barracks', 'barracks'], - ['deer', 'deer'], - ['syllabus', 'syllabi'], - ['index', 'indices'], - ['appendix', 'appendices'], - ['criterion', 'criteria'], - ['i', 'we'], - ['person', 'people'], - ['man', 'men'], - ['move', 'moves'], - ['she', 'they'], - ['he', 'they'], - ['myself', 'ourselves'], - ['yourself', 'yourselves'], - ['himself', 'themselves'], - ['herself', 'themselves'], - ['themself', 'themselves'], - ['mine', 'ours'], - ['hers', 'theirs'], - ['his', 'theirs'], - ['its', 'theirs'], - ['theirs', 'theirs'], - ['sex', 'sexes'], - ['photo', 'photos'], - ['video', 'videos'], - ['narrative', 'narratives'], - ['rodeo', 'rodeos'], - ['gas', 'gases'], - ['epoch', 'epochs'], - ['zero', 'zeros'], - ['avocado', 'avocados'], - ['halo', 'halos'], - ['tornado', 'tornados'], - ['tuxedo', 'tuxedos'], - ['sombrero', 'sombreros'] + return str.charAt(0).toUpperCase() + str.slice(1) + } + var irregulars = [ + ['child', 'children'], + ['person', 'people'], + ['leaf', 'leaves'], + ['database', 'databases'], + ['quiz', 'quizzes'], + ['child', 'children'], + ['stomach', 'stomachs'], + ['sex', 'sexes'], + ['move', 'moves'], + ['shoe', 'shoes'], + ["goose", "geese"], + ["phenomenon", "phenomena"], + ['barracks', 'barracks'], + ['deer', 'deer'], + ['syllabus', 'syllabi'], + ['index', 'indices'], + ['appendix', 'appendices'], + ['criterion', 'criteria'], + ['i', 'we'], + ['person', 'people'], + ['man', 'men'], + ['move', 'moves'], + ['she', 'they'], + ['he', 'they'], + ['myself', 'ourselves'], + ['yourself', 'yourselves'], + ['himself', 'themselves'], + ['herself', 'themselves'], + ['themself', 'themselves'], + ['mine', 'ours'], + ['hers', 'theirs'], + ['his', 'theirs'], + ['its', 'theirs'], + ['theirs', 'theirs'], + ['sex', 'sexes'], + ['photo', 'photos'], + ['video', 'videos'], + ['narrative', 'narratives'], + ['rodeo', 'rodeos'], + ['gas', 'gases'], + ['epoch', 'epochs'], + ['zero', 'zeros'], + ['avocado', 'avocados'], + ['halo', 'halos'], + ['tornado', 'tornados'], + ['tuxedo', 'tuxedos'], + ['sombrero', 'sombreros'] ] //words that shouldn't ever inflect, for metaphysical reasons - var uncountables = { - "aircraft": 1, - "bass": 1, - "bison": 1, - "fowl": 1, - "halibut": 1, - "moose": 1, - "salmon": 1, - "spacecraft": 1, - "tuna": 1, - "trout": 1, - "advice": 1, - "help": 1, - "information": 1, - "knowledge": 1, - "trouble": 1, - "work": 1, - "enjoyment": 1, - "fun": 1, - "recreation": 1, - "relaxation": 1, - "meat": 1, - "rice": 1, - "bread": 1, - "cake": 1, - "coffee": 1, - "ice": 1, - "water": 1, - "oil": 1, - "grass": 1, - "hair": 1, - "fruit": 1, - "wildlife": 1, - "equipment": 1, - "machinery": 1, - "furniture": 1, - "mail": 1, - "luggage": 1, - "jewelry": 1, - "clothing": 1, - "money": 1, - "mathematics": 1, - "economics": 1, - "physics": 1, - "civics": 1, - "ethics": 1, - "gymnastics": 1, - "mumps": 1, - "measles": 1, - "news": 1, - "tennis": 1, - "baggage": 1, - "currency": 1, - "travel": 1, - "soap": 1, - "toothpaste": 1, - "food": 1, - "sugar": 1, - "butter": 1, - "flour": 1, - "progress": 1, - "research": 1, - "leather": 1, - "wool": 1, - "wood": 1, - "coal": 1, - "weather": 1, - "homework": 1, - "cotton": 1, - "silk": 1, - "patience": 1, - "impatience": 1, - "talent": 1, - "energy": 1, - "experience": 1, - "vinegar": 1, - "polish": 1, - "air": 1, - "alcohol": 1, - "anger": 1, - "art": 1, - "beef": 1, - "blood": 1, - "cash": 1, - "chaos": 1, - "cheese": 1, - "chewing": 1, - "conduct": 1, - "confusion": 1, - "courage": 1, - "damage": 1, - "education": 1, - "electricity": 1, - "entertainment": 1, - "fiction": 1, - "forgiveness": 1, - "gold": 1, - "gossip": 1, - "ground": 1, - "happiness": 1, - "history": 1, - "honey": 1, - "hope": 1, - "hospitality": 1, - "importance": 1, - "jam": 1, - "justice": 1, - "laughter": 1, - "leisure": 1, - "lightning": 1, - "literature": 1, - "love": 1, - "luck": 1, - "melancholy": 1, - "milk": 1, - "mist": 1, - "music": 1, - "noise": 1, - "oxygen": 1, - "paper": 1, - "pay": 1, - "peace": 1, - "peanut": 1, - "pepper": 1, - "petrol": 1, - "plastic": 1, - "pork": 1, - "power": 1, - "pressure": 1, - "rain": 1, - "recognition": 1, - "sadness": 1, - "safety": 1, - "salt": 1, - "sand": 1, - "scenery": 1, - "shopping": 1, - "silver": 1, - "snow": 1, - "softness": 1, - "space": 1, - "speed": 1, - "steam": 1, - "sunshine": 1, - "tea": 1, - "thunder": 1, - "time": 1, - "traffic": 1, - "trousers": 1, - "violence": 1, - "warmth": 1, - "washing": 1, - "wind": 1, - "wine": 1, - "steel": 1, - "soccer": 1, - "hockey": 1, - "golf": 1, - "fish": 1, - "gum": 1, - "liquid": 1, - "series": 1, - "sheep": 1, - "species": 1, - "fahrenheit": 1, - "celcius": 1, - "kelvin": 1, - "hertz": 1 - } + var uncountables = { + "aircraft": 1, + "bass": 1, + "bison": 1, + "fowl": 1, + "halibut": 1, + "moose": 1, + "salmon": 1, + "spacecraft": 1, + "tuna": 1, + "trout": 1, + "advice": 1, + "help": 1, + "information": 1, + "knowledge": 1, + "trouble": 1, + "work": 1, + "enjoyment": 1, + "fun": 1, + "recreation": 1, + "relaxation": 1, + "meat": 1, + "rice": 1, + "bread": 1, + "cake": 1, + "coffee": 1, + "ice": 1, + "water": 1, + "oil": 1, + "grass": 1, + "hair": 1, + "fruit": 1, + "wildlife": 1, + "equipment": 1, + "machinery": 1, + "furniture": 1, + "mail": 1, + "luggage": 1, + "jewelry": 1, + "clothing": 1, + "money": 1, + "mathematics": 1, + "economics": 1, + "physics": 1, + "civics": 1, + "ethics": 1, + "gymnastics": 1, + "mumps": 1, + "measles": 1, + "news": 1, + "tennis": 1, + "baggage": 1, + "currency": 1, + "travel": 1, + "soap": 1, + "toothpaste": 1, + "food": 1, + "sugar": 1, + "butter": 1, + "flour": 1, + "progress": 1, + "research": 1, + "leather": 1, + "wool": 1, + "wood": 1, + "coal": 1, + "weather": 1, + "homework": 1, + "cotton": 1, + "silk": 1, + "patience": 1, + "impatience": 1, + "talent": 1, + "energy": 1, + "experience": 1, + "vinegar": 1, + "polish": 1, + "air": 1, + "alcohol": 1, + "anger": 1, + "art": 1, + "beef": 1, + "blood": 1, + "cash": 1, + "chaos": 1, + "cheese": 1, + "chewing": 1, + "conduct": 1, + "confusion": 1, + "courage": 1, + "damage": 1, + "education": 1, + "electricity": 1, + "entertainment": 1, + "fiction": 1, + "forgiveness": 1, + "gold": 1, + "gossip": 1, + "ground": 1, + "happiness": 1, + "history": 1, + "honey": 1, + "hope": 1, + "hospitality": 1, + "importance": 1, + "jam": 1, + "justice": 1, + "laughter": 1, + "leisure": 1, + "lightning": 1, + "literature": 1, + "love": 1, + "luck": 1, + "melancholy": 1, + "milk": 1, + "mist": 1, + "music": 1, + "noise": 1, + "oxygen": 1, + "paper": 1, + "pay": 1, + "peace": 1, + "peanut": 1, + "pepper": 1, + "petrol": 1, + "plastic": 1, + "pork": 1, + "power": 1, + "pressure": 1, + "rain": 1, + "recognition": 1, + "sadness": 1, + "safety": 1, + "salt": 1, + "sand": 1, + "scenery": 1, + "shopping": 1, + "silver": 1, + "snow": 1, + "softness": 1, + "space": 1, + "speed": 1, + "steam": 1, + "sunshine": 1, + "tea": 1, + "thunder": 1, + "time": 1, + "traffic": 1, + "trousers": 1, + "violence": 1, + "warmth": 1, + "washing": 1, + "wind": 1, + "wine": 1, + "steel": 1, + "soccer": 1, + "hockey": 1, + "golf": 1, + "fish": 1, + "gum": 1, + "liquid": 1, + "series": 1, + "sheep": 1, + "species": 1, + "fahrenheit": 1, + "celcius": 1, + "kelvin": 1, + "hertz": 1 + } - var pluralize_rules = [{ - reg: /(ax|test)is$/i, - repl: '$1es' + var pluralize_rules = [{ + reg: /(ax|test)is$/i, + repl: '$1es' }, { - reg: /(octop|vir|radi|nucle|fung|cact|stimul)us$/i, - repl: '$1i' + reg: /(octop|vir|radi|nucle|fung|cact|stimul)us$/i, + repl: '$1i' }, { - reg: /(octop|vir)i$/i, - repl: '$1i' + reg: /(octop|vir)i$/i, + repl: '$1i' }, { - reg: /([rl])f$/i, - repl: '$1ves' + reg: /([rl])f$/i, + repl: '$1ves' }, { - reg: /(alias|status)$/i, - repl: '$1es' + reg: /(alias|status)$/i, + repl: '$1es' }, { - reg: /(bu)s$/i, - repl: '$1ses' + reg: /(bu)s$/i, + repl: '$1ses' }, { - reg: /(al|ad|at|er|et|ed|ad)o$/i, - repl: '$1oes' + reg: /(al|ad|at|er|et|ed|ad)o$/i, + repl: '$1oes' }, { - reg: /([ti])um$/i, - repl: '$1a' + reg: /([ti])um$/i, + repl: '$1a' }, { - reg: /([ti])a$/i, - repl: '$1a' + reg: /([ti])a$/i, + repl: '$1a' }, { - reg: /sis$/i, - repl: 'ses' + reg: /sis$/i, + repl: 'ses' }, { - reg: /(?:([^f])fe|([lr])f)$/i, - repl: '$1ves' + reg: /(?:([^f])fe|([lr])f)$/i, + repl: '$1ves' }, { - reg: /(hive)$/i, - repl: '$1s' + reg: /(hive)$/i, + repl: '$1s' }, { - reg: /([^aeiouy]|qu)y$/i, - repl: '$1ies' + reg: /([^aeiouy]|qu)y$/i, + repl: '$1ies' }, { - reg: /(x|ch|ss|sh|s|z)$/i, - repl: '$1es' + reg: /(x|ch|ss|sh|s|z)$/i, + repl: '$1es' }, { - reg: /(matr|vert|ind|cort)(ix|ex)$/i, - repl: '$1ices' + reg: /(matr|vert|ind|cort)(ix|ex)$/i, + repl: '$1ices' }, { - reg: /([m|l])ouse$/i, - repl: '$1ice' + reg: /([m|l])ouse$/i, + repl: '$1ice' }, { - reg: /([m|l])ice$/i, - repl: '$1ice' + reg: /([m|l])ice$/i, + repl: '$1ice' }, { - reg: /^(ox)$/i, - repl: '$1en' + reg: /^(ox)$/i, + repl: '$1en' }, { - reg: /^(oxen)$/i, - repl: '$1' + reg: /^(oxen)$/i, + repl: '$1' }, { - reg: /(quiz)$/i, - repl: '$1zes' + reg: /(quiz)$/i, + repl: '$1zes' }, { - reg: /(antenn|formul|nebul|vertebr|vit)a$/i, - repl: '$1ae' + reg: /(antenn|formul|nebul|vertebr|vit)a$/i, + repl: '$1ae' }, { - reg: /(sis)$/i, - repl: 'ses' + reg: /(sis)$/i, + repl: 'ses' }, { - reg: /^(?!talis|.*hu)(.*)man$/i, - repl: '$1men' + reg: /^(?!talis|.*hu)(.*)man$/i, + repl: '$1men' }, - //fallback, add an s + //fallback, add an s { - reg: /(.*)/i, - repl: '$1s' + reg: /(.*)/i, + repl: '$1s' } - ] + ] - var pluralize = function(str) { - var low = str.toLowerCase() - //uncountable - if (uncountables[low]) { - return str - } - //irregular - var found = irregulars.filter(function(r) { - return r[0] === low - }) - if (found[0]) { - if (titlecase(low) === str) { //handle capitalisation properly - return titlecase(found[0][1]) - } else { - return found[0][1] - } - } - //inflect first word of preposition-phrase - if (str.match(/([a-z]*) (of|in|by|for) [a-z]/)) { - var first = (str.match(/^([a-z]*) (of|in|by|for) [a-z]/)||[])[1] - if (first) { - var better_first = pluralize(first) - return better_first + str.replace(first, '') - } - } - //regular - for (var i = 0; i < pluralize_rules.length; i++) { - if (str.match(pluralize_rules[i].reg)) { - return str.replace(pluralize_rules[i].reg, pluralize_rules[i].repl) - } - } + var pluralize = function(str) { + var low = str.toLowerCase() + //uncountable + if (uncountables[low]) { + return str + } + //irregular + var found = irregulars.filter(function(r) { + return r[0] === low + }) + if (found[0]) { + if (titlecase(low) === str) { //handle capitalisation properly + return titlecase(found[0][1]) + } else { + return found[0][1] + } + } + //inflect first word of preposition-phrase + if (str.match(/([a-z]*) (of|in|by|for) [a-z]/)) { + var first = (str.match(/^([a-z]*) (of|in|by|for) [a-z]/) || [])[1] + if (first) { + var better_first = pluralize(first) + return better_first + str.replace(first, '') + } } + //regular + for (var i = 0; i < pluralize_rules.length; i++) { + if (str.match(pluralize_rules[i].reg)) { + return str.replace(pluralize_rules[i].reg, pluralize_rules[i].repl) + } + } + } - var singularize_rules = [{ - reg: /([^v])ies$/i, - repl: '$1y' + var singularize_rules = [{ + reg: /([^v])ies$/i, + repl: '$1y' + }, { + reg: /ises$/i, + repl: 'isis' }, { - reg: /ises$/i, - repl: 'isis' + reg: /ives$/i, + repl: 'ife' }, { - reg: /ives$/i, - repl: 'ife' + reg: /(antenn|formul|nebul|vertebr|vit)ae$/i, + repl: '$1a' }, { - reg: /(antenn|formul|nebul|vertebr|vit)ae$/i, - repl: '$1a' + reg: /(octop|vir|radi|nucle|fung|cact|stimul)(i)$/i, + repl: '$1us' }, { - reg: /(octop|vir|radi|nucle|fung|cact|stimul)(i)$/i, - repl: '$1us' + reg: /(buffal|tomat|tornad)(oes)$/i, + repl: '$1o' }, { - reg: /(buffal|tomat|tornad)(oes)$/i, - repl: '$1o' + reg: /((a)naly|(b)a|(d)iagno|(p)arenthe|(p)rogno|(s)ynop|(t)he)ses$/i, + repl: '$1sis' }, { - reg: /((a)naly|(b)a|(d)iagno|(p)arenthe|(p)rogno|(s)ynop|(t)he)ses$/i, - repl: '$1sis' + reg: /(vert|ind|cort)(ices)$/i, + repl: '$1ex' }, { - reg: /(vert|ind|cort)(ices)$/i, - repl: '$1ex' + reg: /(matr|append)(ices)$/i, + repl: '$1ix' }, { - reg: /(matr|append)(ices)$/i, - repl: '$1ix' + reg: /(x|ch|ss|sh|s|z|o)es$/i, + repl: '$1' }, { - reg: /(x|ch|ss|sh|s|z|o)es$/i, - repl: '$1' + reg: /men$/i, + repl: 'man' }, { - reg: /men$/i, - repl: 'man' + reg: /(n)ews$/i, + repl: '$1ews' }, { - reg: /(n)ews$/i, - repl: '$1ews' + reg: /([ti])a$/i, + repl: '$1um' }, { - reg: /([ti])a$/i, - repl: '$1um' + reg: /([^f])ves$/i, + repl: '$1fe' }, { - reg: /([^f])ves$/i, - repl: '$1fe' + reg: /([lr])ves$/i, + repl: '$1f' }, { - reg: /([lr])ves$/i, - repl: '$1f' + reg: /([^aeiouy]|qu)ies$/i, + repl: '$1y' }, { - reg: /([^aeiouy]|qu)ies$/i, - repl: '$1y' + reg: /(s)eries$/i, + repl: '$1eries' }, { - reg: /(s)eries$/i, - repl: '$1eries' + reg: /(m)ovies$/i, + repl: '$1ovie' }, { - reg: /(m)ovies$/i, - repl: '$1ovie' + reg: /([m|l])ice$/i, + repl: '$1ouse' }, { - reg: /([m|l])ice$/i, - repl: '$1ouse' + reg: /(cris|ax|test)es$/i, + repl: '$1is' }, { - reg: /(cris|ax|test)es$/i, - repl: '$1is' + reg: /(alias|status)es$/i, + repl: '$1' }, { - reg: /(alias|status)es$/i, - repl: '$1' - },{ - reg: /(ss)$/i, - repl: '$1' + reg: /(ss)$/i, + repl: '$1' }, { - reg: /(ics)$/i, - repl: "$1" + reg: /(ics)$/i, + repl: "$1" }, //fallback, remove last s { - reg: /s$/i, - repl: '' + reg: /s$/i, + repl: '' } - ] - + ] - var singularize = function(str) { - var low = str.toLowerCase() - //uncountable - if (uncountables[low]) { - return str - } - //irregular - var found = irregulars.filter(function(r) { - return r[1] === low - }) - if (found[0]) { - if (titlecase(low) === str) { //handle capitalisation properly - return titlecase(found[0][0]) - } else { - return found[0][0] - } - } - //inflect first word of preposition-phrase - if (str.match(/([a-z]*) (of|in|by|for) [a-z]/)) { - var first = str.match(/^([a-z]*) (of|in|by|for) [a-z]/) - if (first && first[1]) { - var better_first = singularize(first[1]) - return better_first + str.replace(first[1], '') - } - } - //regular - for (var i = 0; i < singularize_rules.length; i++) { - if (str.match(singularize_rules[i].reg)) { - return str.replace(singularize_rules[i].reg, singularize_rules[i].repl) - } - } - return str + var singularize = function(str) { + var low = str.toLowerCase() + //uncountable + if (uncountables[low]) { + return str } + //irregular + var found = irregulars.filter(function(r) { + return r[1] === low + }) + if (found[0]) { + if (titlecase(low) === str) { //handle capitalisation properly + return titlecase(found[0][0]) + } else { + return found[0][0] + } + } + //inflect first word of preposition-phrase + if (str.match(/([a-z]*) (of|in|by|for) [a-z]/)) { + var first = str.match(/^([a-z]*) (of|in|by|for) [a-z]/) + if (first && first[1]) { + var better_first = singularize(first[1]) + return better_first + str.replace(first[1], '') + } + } + //regular + for (var i = 0; i < singularize_rules.length; i++) { + if (str.match(singularize_rules[i].reg)) { + return str.replace(singularize_rules[i].reg, singularize_rules[i].repl) + } + } + return str + } - - var is_plural = function(str) { - //if it's a known verb - for (var i = 0; i < irregulars.length; i++) { - if (irregulars[i][1] === str) { - return true - } - if (irregulars[i][0] === str) { - return false - } - } - //if it changes when singularized - if (singularize(str)!=str) { - return true - } - //'looks pretty plural' rules - if(str.match(/s$/) && !str.match(/ss$/) && str.length>3){//needs some lovin' - return true - } + var is_plural = function(str) { + //if it's a known verb + for (var i = 0; i < irregulars.length; i++) { + if (irregulars[i][1] === str) { + return true + } + if (irregulars[i][0] === str) { return false + } } - - var inflect = function(str) { - if(uncountables[str]){//uncountables shouldn't ever inflect - return { - plural:str, - singular:str - } - } - if (is_plural(str)) { - return { - plural: str, - singular: singularize(str) - } - } else { - return { - singular: str, - plural: pluralize(str) - } - } + //if it changes when singularized + if (singularize(str) != str) { + return true + } + //'looks pretty plural' rules + if (str.match(/s$/) && !str.match(/ss$/) && str.length > 3) { //needs some lovin' + return true } + return false + } - var methods = { - inflect: inflect, - is_plural: is_plural, - singularize: singularize, - pluralize: pluralize + var inflect = function(str) { + if (uncountables[str]) { //uncountables shouldn't ever inflect + return { + plural: str, + singular: str + } } - if (typeof module !== "undefined" && module.exports) { - module.exports = methods; + if (is_plural(str)) { + return { + plural: str, + singular: singularize(str) + } + } else { + return { + singular: str, + plural: pluralize(str) + } } - return methods; + } + + var methods = { + inflect: inflect, + is_plural: is_plural, + singularize: singularize, + pluralize: pluralize + } + if (typeof module !== "undefined" && module.exports) { + module.exports = methods; + } + return methods; })(); // console.log(inflect.pluralize('kiss')) diff --git a/src/parents/noun/indefinite_article.js b/src/parents/noun/indefinite_article.js new file mode 100644 index 000000000..7c8562058 --- /dev/null +++ b/src/parents/noun/indefinite_article.js @@ -0,0 +1,81 @@ +//chooses an indefinite aricle 'a/an' for a word +var indefinite_article = (function() { + var main = function(str) { + if (!str) { + return null + } + var irregulars = { + "hour": "an", + "heir": "an", + "heirloom": "an", + "honest": "an", + "honour": "an", + "honor": "an", + "uber": "an" //german u + } + + var is_acronym = function(s) { + //no periods + if (s.length <= 5 && s.match(/^[A-Z]*$/)) { + return true + } + //with periods + if (s.length >= 4 && s.match(/^([A-Z]\.)*$/)) { + return true + } + return false + } + + //pronounced letters of acronyms that get a 'an' + var an_acronyms = { + A: true, + E: true, + F: true, + H: true, + I: true, + L: true, + M: true, + N: true, + O: true, + R: true, + S: true, + X: true + } + + //'a' regexes + var a_regexs = [ + /^onc?e/i, //'wu' sound of 'o' + /^u[bcfhjkqrstn][aeiou]/i, // 'yu' sound for hard 'u' + /^eul/i + ]; + + //begin business time + //////////////////// + //explicit irregular forms + if (irregulars[str]) { + return irregulars[str] + } + //spelled-out acronyms + if (is_acronym(str) && an_acronyms[str.substr(0, 1)]) { + return "an" + } + //'a' regexes + for (var i = 0; i < a_regexs.length; i++) { + if (str.match(a_regexs[i])) { + return "a" + } + } + //basic vowel-startings + if (str.match(/^[aeiou]/i)) { + return "an" + } + return "a" + } + + if (typeof module !== "undefined" && module.exports) { + module.exports = main; + } + return main; +})(); + +// console.log(indefinite_article("wolf") === "a") diff --git a/src/parents/noun/indefinite_article/indefinite_article.js b/src/parents/noun/indefinite_article/indefinite_article.js deleted file mode 100644 index a36ee4dc5..000000000 --- a/src/parents/noun/indefinite_article/indefinite_article.js +++ /dev/null @@ -1,81 +0,0 @@ -//chooses an indefinite aricle 'a/an' for a word -var indefinite_article = (function() { - var main = function(str) { - if (!str) { - return null - } - var irregulars = { - "hour": "an", - "heir": "an", - "heirloom": "an", - "honest": "an", - "honour": "an", - "honor": "an", - "uber": "an" //german u - } - - var is_acronym = function(s) { - //no periods - if (s.length <= 5 && s.match(/^[A-Z]*$/)) { - return true - } - //with periods - if (s.length >= 4 && s.match(/^([A-Z]\.)*$/)) { - return true - } - return false - } - - //pronounced letters of acronyms that get a 'an' - var an_acronyms = { - A: true, - E: true, - F: true, - H: true, - I: true, - L: true, - M: true, - N: true, - O: true, - R: true, - S: true, - X: true - } - - //'a' regexes - var a_regexs = [ - /^onc?e/i, //'wu' sound of 'o' - /^u[bcfhjkqrstn][aeiou]/i, // 'yu' sound for hard 'u' - /^eul/i - ]; - - //begin business time - //////////////////// - //explicit irregular forms - if (irregulars[str]) { - return irregulars[str] - } - //spelled-out acronyms - if (is_acronym(str) && an_acronyms[str.substr(0, 1)]) { - return "an" - } - //'a' regexes - for (var i = 0; i < a_regexs.length; i++) { - if (str.match(a_regexs[i])) { - return "a" - } - } - //basic vowel-startings - if (str.match(/^[aeiou]/i)) { - return "an" - } - return "a" - } - - if (typeof module !== "undefined" && module.exports) { - module.exports = main; - } - return main; -})(); - -// console.log(indefinite_article("wolf") === "a") diff --git a/src/parents/noun/index.js b/src/parents/noun/index.js index 88ba65199..708eb8230 100644 --- a/src/parents/noun/index.js +++ b/src/parents/noun/index.js @@ -8,7 +8,7 @@ var Noun = function(str, next, last, token) { if (typeof module !== "undefined" && module.exports) { parts_of_speech = require("../../data/parts_of_speech") inflect = require("./conjugate/inflect") - indefinite_article = require("./indefinite_article/indefinite_article") + indefinite_article = require("./indefinite_article") // is_entity = require("./ner/is_entity") } //personal pronouns diff --git a/src/parents/verb/conjugate/conjugate.js b/src/parents/verb/conjugate/conjugate.js index 47d40ad9a..d969b15a4 100644 --- a/src/parents/verb/conjugate/conjugate.js +++ b/src/parents/verb/conjugate/conjugate.js @@ -101,22 +101,21 @@ var verb_conjugate = (function() { return "infinitive" } - //fallback to this transformation if it has an unknown prefix var fallback = function(w) { var infinitive; - if(w.length>4){ + if (w.length > 4) { infinitive = w.replace(/ed$/, ''); - }else{ + } else { infinitive = w.replace(/d$/, ''); } var present, past, gerund, doer; if (w.match(/[^aeiou]$/)) { gerund = w + "ing" past = w + "ed" - if(w.match(/ss$/)){ + if (w.match(/ss$/)) { present = w + "es" //'passes' - }else{ + } else { present = w + "s" } doer = verb_to_doer(infinitive) @@ -132,7 +131,7 @@ var verb_conjugate = (function() { past: past, gerund: gerund, doer: doer, - future: "will "+infinitive + future: "will " + infinitive } } @@ -154,29 +153,28 @@ var verb_conjugate = (function() { obj.past = obj.infinitive + 'ed' } //add the prefix to all forms, if it exists - if(prefix){ - Object.keys(obj).forEach(function(k){ - obj[k]= prefix+obj[k] + if (prefix) { + Object.keys(obj).forEach(function(k) { + obj[k] = prefix + obj[k] }) } //future is 'will'+infinitive - if(!obj.future){ - obj.future= "will "+obj.infinitive + if (!obj.future) { + obj.future = "will " + obj.infinitive } return obj } - var main = function(w) { if (!w) { return {} } //chop it if it's future-tense - w=w.replace(/^will /i,'') + w = w.replace(/^will /i, '') //un-prefix the verb, and add it in later - var prefix= (w.match(/^(over|under|re|anti|full)\-?/i)||[])[0] - var verb=w.replace(/^(over|under|re|anti|full)\-?/i, '') - //check irregulars + var prefix = (w.match(/^(over|under|re|anti|full)\-?/i) || [])[0] + var verb = w.replace(/^(over|under|re|anti|full)\-?/i, '') + //check irregulars var x, i; for (i = 0; i < verb_irregulars.length; i++) { x = verb_irregulars[i] diff --git a/src/parents/verb/conjugate/test/data.js b/src/parents/verb/conjugate/test/data.js deleted file mode 100644 index 68cdf8ad6..000000000 --- a/src/parents/verb/conjugate/test/data.js +++ /dev/null @@ -1,59453 +0,0 @@ -exports.data=[ - { - "infinitive": "convolute", - "present": "convolutes", - "gerund": "convoluting", - "past": "convoluted", - "past_participle": "convoluted" - }, - { - "infinitive": "fawn", - "present": "fawns", - "gerund": "fawning", - "past": "fawned", - "past_participle": "fawned" - }, - { - "infinitive": "foul", - "present": "fouls", - "gerund": "fouling", - "past": "fouled", - "past_participle": "fouled" - }, - { - "infinitive": "escribe", - "present": "escribes", - "gerund": "escribing", - "past": "escribed", - "past_participle": "escribed" - }, - { - "infinitive": "prefix", - "present": "prefixes", - "gerund": "prefixing", - "past": "prefixed", - "past_participle": "prefixed" - }, - { - "infinitive": "forgather", - "present": "forgathers", - "gerund": "forgathering", - "past": "forgathered", - "past_participle": "forgathered" - }, - { - "infinitive": "preface", - "present": "prefaces", - "gerund": "prefacing", - "past": "prefaced", - "past_participle": "prefaced" - }, - { - "infinitive": "renegue", - "present": "renegues", - "gerund": "reneguing", - "past": "renegued", - "past_participle": "renegued" - }, - { - "infinitive": "underachieve", - "present": "underachieves", - "gerund": "underachieving", - "past": "underachieved", - "past_participle": "underachieved" - }, - { - "infinitive": "shamble", - "present": "shambles", - "gerund": "shambling", - "past": "shambled", - "past_participle": "shambled" - }, - { - "infinitive": "conjure", - "present": "conjures", - "gerund": "conjuring", - "past": "conjured", - "past_participle": "conjured" - }, - { - "infinitive": "regularize", - "present": "regularizes", - "gerund": "regularizing", - "past": "regularized", - "past_participle": "regularized" - }, - { - "infinitive": "ruck", - "present": "rucks", - "gerund": "rucking", - "past": "rucked", - "past_participle": "rucked" - }, - { - "infinitive": "rupture", - "present": "ruptures", - "gerund": "rupturing", - "past": "ruptured", - "past_participle": "ruptured" - }, - { - "infinitive": "rouse", - "present": "rouses", - "gerund": "rousing", - "past": "roused", - "past_participle": "roused" - }, - { - "infinitive": "scold", - "present": "scolds", - "gerund": "scolding", - "past": "scolded", - "past_participle": "scolded" - }, - { - "infinitive": "quadruple", - "present": "quadruples", - "gerund": "quadrupling", - "past": "quadrupled", - "past_participle": "quadrupled" - }, - { - "infinitive": "outwit", - "present": "outwits", - "gerund": "outwitting", - "past": "outwitted", - "past_participle": "outwitted" - }, - { - "infinitive": "tingle", - "present": "tingles", - "gerund": "tingling", - "past": "tingled", - "past_participle": "tingled" - }, - { - "infinitive": "sputter", - "present": "sputters", - "gerund": "sputtering", - "past": "sputtered", - "past_participle": "sputtered" - }, - { - "infinitive": "angulate", - "present": "angulates", - "gerund": "angulating", - "past": "angulated", - "past_participle": "angulated" - }, - { - "infinitive": "antecede", - "present": "antecedes", - "gerund": "anteceding", - "past": "anteceded", - "past_participle": "anteceded" - }, - { - "infinitive": "swivel", - "present": "swivels", - "gerund": "swiveling", - "past": "swiveled", - "past_participle": "swiveled" - }, - { - "infinitive": "bellyache", - "present": "bellyaches", - "gerund": "bellyaching", - "past": "bellyached", - "past_participle": "bellyached" - }, - { - "infinitive": "jemmy", - "present": "jemmies", - "gerund": "jemmying", - "past": "jemmied", - "past_participle": "jemmied" - }, - { - "infinitive": "stipulate", - "present": "stipulates", - "gerund": "stipulating", - "past": "stipulated", - "past_participle": "stipulated" - }, - { - "infinitive": "befoul", - "present": "befouls", - "gerund": "befouling", - "past": "befouled", - "past_participle": "befouled" - }, - { - "infinitive": "yellow", - "present": "yellows", - "gerund": "yellowing", - "past": "yellowed", - "past_participle": "yellowed" - }, - { - "infinitive": "detrude", - "present": "detrudes", - "gerund": "detruding", - "past": "detruded", - "past_participle": "detruded" - }, - { - "infinitive": "unify", - "present": "unifies", - "gerund": "unifying", - "past": "unified", - "past_participle": "unified" - }, - { - "infinitive": "semaphore", - "present": "semaphores", - "gerund": "semaphoring", - "past": "semaphored", - "past_participle": "semaphored" - }, - { - "infinitive": "disturb", - "present": "disturbs", - "gerund": "disturbing", - "past": "disturbed", - "past_participle": "disturbed" - }, - { - "infinitive": "prize", - "present": "prizes", - "gerund": "prizing", - "past": "prized", - "past_participle": "prized" - }, - { - "infinitive": "buttonhole", - "present": "buttonholes", - "gerund": "buttonholing", - "past": "buttonholed", - "past_participle": "buttonholed" - }, - { - "infinitive": "understock", - "present": "understocks", - "gerund": "understocking", - "past": "understocked", - "past_participle": "understocked" - }, - { - "infinitive": "disburden", - "present": "disburdens", - "gerund": "disburdening", - "past": "disburdened", - "past_participle": "disburdened" - }, - { - "infinitive": "fritter", - "present": "fritters", - "gerund": "frittering", - "past": "frittered", - "past_participle": "frittered" - }, - { - "infinitive": "orientate", - "present": "orientates", - "gerund": "orientating", - "past": "orientated", - "past_participle": "orientated" - }, - { - "infinitive": "charter", - "present": "charters", - "gerund": "chartering", - "past": "chartered", - "past_participle": "chartered" - }, - { - "infinitive": "tolerate", - "present": "tolerates", - "gerund": "tolerating", - "past": "tolerated", - "past_participle": "tolerated" - }, - { - "infinitive": "pulse", - "present": "pulses", - "gerund": "pulsing", - "past": "pulsed", - "past_participle": "pulsed" - }, - { - "infinitive": "second", - "present": "seconds", - "gerund": "seconding", - "past": "seconded", - "past_participle": "seconded" - }, - { - "infinitive": "tether", - "present": "tethers", - "gerund": "tethering", - "past": "tethered", - "past_participle": "tethered" - }, - { - "infinitive": "hoick", - "present": "hoicks", - "gerund": "hoicking", - "past": "hoicked", - "past_participle": "hoicked" - }, - { - "infinitive": "blouse", - "present": "blouses", - "gerund": "blousing", - "past": "bloused", - "past_participle": "bloused" - }, - { - "infinitive": "intermingle", - "present": "intermingles", - "gerund": "intermingling", - "past": "intermingled", - "past_participle": "intermingled" - }, - { - "infinitive": "thunder", - "present": "thunders", - "gerund": "thundering", - "past": "thundered", - "past_participle": "thundered" - }, - { - "infinitive": "boogie", - "present": "boogies", - "gerund": "boogieing", - "past": "boogied", - "past_participle": "boogied" - }, - { - "infinitive": "decry", - "present": "decries", - "gerund": "decrying", - "past": "decried", - "past_participle": "decried" - }, - { - "infinitive": "succumb", - "present": "succumbs", - "gerund": "succumbing", - "past": "succumbed", - "past_participle": "succumbed" - }, - { - "infinitive": "cull", - "present": "culls", - "gerund": "culling", - "past": "culled", - "past_participle": "culled" - }, - { - "infinitive": "crouch", - "present": "crouches", - "gerund": "crouching", - "past": "crouched", - "past_participle": "crouched" - }, - { - "infinitive": "avert", - "present": "averts", - "gerund": "averting", - "past": "averted", - "past_participle": "averted" - }, - { - "infinitive": "dogear", - "present": "dogears", - "gerund": "dogearing", - "past": "dogeared", - "past_participle": "dogeared" - }, - { - "infinitive": "splinter", - "present": "splinters", - "gerund": "splintering", - "past": "splintered", - "past_participle": "splintered" - }, - { - "infinitive": "herd", - "present": "herds", - "gerund": "herding", - "past": "herded", - "past_participle": "herded" - }, - { - "infinitive": "chine", - "present": "chines", - "gerund": "chining", - "past": "chined", - "past_participle": "chined" - }, - { - "infinitive": "freezedry", - "present": "freezedries", - "gerund": "freezedrying", - "past": "freezedried", - "past_participle": "freezedried" - }, - { - "infinitive": "shriek", - "present": "shrieks", - "gerund": "shrieking", - "past": "shrieked", - "past_participle": "shrieked" - }, - { - "infinitive": "chink", - "present": "chinks", - "gerund": "chinking", - "past": "chinked", - "past_participle": "chinked" - }, - { - "infinitive": "deodorize", - "present": "deodorizes", - "gerund": "deodorizing", - "past": "deodorized", - "past_participle": "deodorized" - }, - { - "infinitive": "elaborate", - "present": "elaborates", - "gerund": "elaborating", - "past": "elaborated", - "past_participle": "elaborated" - }, - { - "infinitive": "yield", - "present": "yields", - "gerund": "yielding", - "past": "yielded", - "past_participle": "yielded" - }, - { - "infinitive": "force-ripe", - "present": "force-ripes", - "gerund": "force-riping", - "past": "force-riped", - "past_participle": "force-riped" - }, - { - "infinitive": "scutter", - "present": "scutters", - "gerund": "scuttering", - "past": "scuttered", - "past_participle": "scuttered" - }, - { - "infinitive": "rebel", - "present": "rebels", - "gerund": "rebelling", - "past": "rebelled", - "past_participle": "rebelled" - }, - { - "infinitive": "exuviate", - "present": "exuviates", - "gerund": "exuviating", - "past": "exuviated", - "past_participle": "exuviated" - }, - { - "infinitive": "misprize", - "present": "misprizes", - "gerund": "misprizing", - "past": "misprized", - "past_participle": "misprized" - }, - { - "infinitive": "divide", - "present": "divides", - "gerund": "dividing", - "past": "divided", - "past_participle": "divided" - }, - { - "infinitive": "lengthen", - "present": "lengthens", - "gerund": "lengthening", - "past": "lengthened", - "past_participle": "lengthened" - }, - { - "infinitive": "replace", - "present": "replaces", - "gerund": "replacing", - "past": "replaced", - "past_participle": "replaced" - }, - { - "infinitive": "telemeter", - "present": "telemeters", - "gerund": "telemetering", - "past": "telemetered", - "past_participle": "telemetered" - }, - { - "infinitive": "perennate", - "present": "perennates", - "gerund": "perennating", - "past": "perennated", - "past_participle": "perennated" - }, - { - "infinitive": "blunge", - "present": "blunges", - "gerund": "blunging", - "past": "blunged", - "past_participle": "blunged" - }, - { - "infinitive": "discommon", - "present": "discommons", - "gerund": "discommoning", - "past": "discommoned", - "past_participle": "discommoned" - }, - { - "infinitive": "browse", - "present": "browses", - "gerund": "browsing", - "past": "browsed", - "past_participle": "browsed" - }, - { - "infinitive": "exhort", - "present": "exhorts", - "gerund": "exhorting", - "past": "exhorted", - "past_participle": "exhorted" - }, - { - "infinitive": "gradate", - "present": "gradates", - "gerund": "gradating", - "past": "gradated", - "past_participle": "gradated" - }, - { - "infinitive": "untie", - "present": "unties", - "gerund": "untying", - "past": "untied", - "past_participle": "untied" - }, - { - "infinitive": "telegraph", - "present": "telegraphs", - "gerund": "telegraphing", - "past": "telegraphed", - "past_participle": "telegraphed" - }, - { - "infinitive": "strike", - "present": "strikes", - "gerund": "striking", - "past": "struck", - "past_participle": "struck" - }, - { - "infinitive": "relay", - "present": "relays", - "gerund": "relaying", - "past": "relayed", - "past_participle": "relayed" - }, - { - "infinitive": "desalt", - "present": "desalts", - "gerund": "desalting", - "past": "desalted", - "past_participle": "desalted" - }, - { - "infinitive": "mesmerize", - "present": "mesmerizes", - "gerund": "mesmerizing", - "past": "mesmerized", - "past_participle": "mesmerized" - }, - { - "infinitive": "sortie", - "present": "sorties", - "gerund": "sortieing", - "past": "sortied", - "past_participle": "sortied" - }, - { - "infinitive": "holp", - "present": "holps", - "gerund": "holping", - "past": "holped", - "past_participle": "holped" - }, - { - "infinitive": "glass", - "present": "glasses", - "gerund": "glassing", - "past": "glassed", - "past_participle": "glassed" - }, - { - "infinitive": "export", - "present": "exports", - "gerund": "exporting", - "past": "exported", - "past_participle": "exported" - }, - { - "infinitive": "hurl", - "present": "hurls", - "gerund": "hurling", - "past": "hurled", - "past_participle": "hurled" - }, - { - "infinitive": "hole", - "present": "holes", - "gerund": "holing", - "past": "holed", - "past_participle": "holed" - }, - { - "infinitive": "hold", - "present": "holds", - "gerund": "holding", - "past": "held", - "past_participle": "held" - }, - { - "infinitive": "unpack", - "present": "unpacks", - "gerund": "unpacking", - "past": "unpacked", - "past_participle": "unpacked" - }, - { - "infinitive": "simper", - "present": "simpers", - "gerund": "simpering", - "past": "simpered", - "past_participle": "simpered" - }, - { - "infinitive": "pursue", - "present": "pursues", - "gerund": "pursuing", - "past": "pursued", - "past_participle": "pursued" - }, - { - "infinitive": "debark", - "present": "debarks", - "gerund": "debarking", - "past": "debarked", - "past_participle": "debarked" - }, - { - "infinitive": "sweeten", - "present": "sweetens", - "gerund": "sweetening", - "past": "sweetened", - "past_participle": "sweetened" - }, - { - "infinitive": "straddle", - "present": "straddles", - "gerund": "straddling", - "past": "straddled", - "past_participle": "straddled" - }, - { - "infinitive": "hamshackle", - "present": "hamshackles", - "gerund": "hamshackling", - "past": "hamshackled", - "past_participle": "hamshackled" - }, - { - "infinitive": "vow", - "present": "vows", - "gerund": "vowing", - "past": "vowed", - "past_participle": "vowed" - }, - { - "infinitive": "reword", - "present": "rewords", - "gerund": "rewording", - "past": "reworded", - "past_participle": "reworded" - }, - { - "infinitive": "shelve", - "present": "shelves", - "gerund": "shelving", - "past": "shelved", - "past_participle": "shelved" - }, - { - "infinitive": "exhale", - "present": "exhales", - "gerund": "exhaling", - "past": "exhaled", - "past_participle": "exhaled" - }, - { - "infinitive": "rework", - "present": "reworks", - "gerund": "reworking", - "past": "reworked", - "past_participle": "reworked" - }, - { - "infinitive": "scavenge", - "present": "scavenges", - "gerund": "scavenging", - "past": "scavenged", - "past_participle": "scavenged" - }, - { - "infinitive": "phrase", - "present": "phrases", - "gerund": "phrasing", - "past": "phrased", - "past_participle": "phrased" - }, - { - "infinitive": "triple", - "present": "triples", - "gerund": "tripling", - "past": "tripled", - "past_participle": "tripled" - }, - { - "infinitive": "wane", - "present": "wanes", - "gerund": "waning", - "past": "waned", - "past_participle": "waned" - }, - { - "infinitive": "wank", - "present": "wanks", - "gerund": "wanking", - "past": "wanked", - "past_participle": "wanked" - }, - { - "infinitive": "malign", - "present": "maligns", - "gerund": "maligning", - "past": "maligned", - "past_participle": "maligned" - }, - { - "infinitive": "caution", - "present": "cautions", - "gerund": "cautioning", - "past": "cautioned", - "past_participle": "cautioned" - }, - { - "infinitive": "want", - "present": "wants", - "gerund": "wanting", - "past": "wanted", - "past_participle": "wanted" - }, - { - "infinitive": "truncheon", - "present": "truncheons", - "gerund": "truncheoning", - "past": "truncheoned", - "past_participle": "truncheoned" - }, - { - "infinitive": "dele", - "present": "deles", - "gerund": "deleing", - "past": "deled", - "past_participle": "deled" - }, - { - "infinitive": "reprove", - "present": "reproves", - "gerund": "reproving", - "past": "reproved", - "past_participle": "reproved" - }, - { - "infinitive": "dyke", - "present": "dykes", - "gerund": "dyking", - "past": "dyked", - "past_participle": "dyked" - }, - { - "infinitive": "hog", - "present": "hogs", - "gerund": "hogging", - "past": "hogged", - "past_participle": "hogged" - }, - { - "infinitive": "hoe", - "present": "hoes", - "gerund": "hoing", - "past": "hoed", - "past_participle": "hoed" - }, - { - "infinitive": "hob", - "present": "hobs", - "gerund": "hobbing", - "past": "hobbed", - "past_participle": "hobbed" - }, - { - "infinitive": "unclothe", - "present": "unclothes", - "gerund": "unclothing", - "past": "unclothed", - "past_participle": "unclothed" - }, - { - "infinitive": "dimple", - "present": "dimples", - "gerund": "dimpling", - "past": "dimpled", - "past_participle": "dimpled" - }, - { - "infinitive": "travel", - "present": "travels", - "gerund": "travelling", - "past": "travelled", - "past_participle": "travelled" - }, - { - "infinitive": "peregrinate", - "present": "peregrinates", - "gerund": "peregrinating", - "past": "peregrinated", - "past_participle": "peregrinated" - }, - { - "infinitive": "damage", - "present": "damages", - "gerund": "damaging", - "past": "damaged", - "past_participle": "damaged" - }, - { - "infinitive": "cutback", - "present": "cutbacks", - "gerund": "cutbacking", - "past": "cutbacked", - "past_participle": "cutbacked" - }, - { - "infinitive": "revisit", - "present": "revisits", - "gerund": "revisiting", - "past": "revisited", - "past_participle": "revisited" - }, - { - "infinitive": "machine", - "present": "machines", - "gerund": "machining", - "past": "machined", - "past_participle": "machined" - }, - { - "infinitive": "playback", - "present": "playbacks", - "gerund": "playbacking", - "past": "playbacked", - "past_participle": "playbacked" - }, - { - "infinitive": "hop", - "present": "hops", - "gerund": "hopping", - "past": "hopped", - "past_participle": "hopped" - }, - { - "infinitive": "hyposensitize", - "present": "hyposensitizes", - "gerund": "hyposensitizing", - "past": "hyposensitized", - "past_participle": "hyposensitized" - }, - { - "infinitive": "classify", - "present": "classifies", - "gerund": "classifying", - "past": "classified", - "past_participle": "classified" - }, - { - "infinitive": "turmoil", - "present": "turmoils", - "gerund": "turmoiling", - "past": "turmoiled", - "past_participle": "turmoiled" - }, - { - "infinitive": "swing", - "present": "swings", - "gerund": "swinging", - "past": "swung", - "past_participle": "swung" - }, - { - "infinitive": "outfight", - "present": "outfights", - "gerund": "outfighting", - "past": "outfought", - "past_participle": "outfought" - }, - { - "infinitive": "diagram", - "present": "diagrams", - "gerund": "diagramming", - "past": "diagrammed", - "past_participle": "diagrammed" - }, - { - "infinitive": "wrong", - "present": "wrongs", - "gerund": "wronging", - "past": "wronged", - "past_participle": "wronged" - }, - { - "infinitive": "chump", - "present": "chumps", - "gerund": "chumping", - "past": "chumped", - "past_participle": "chumped" - }, - { - "infinitive": "warble", - "present": "warbles", - "gerund": "warbling", - "past": "warbled", - "past_participle": "warbled" - }, - { - "infinitive": "marginalize", - "present": "marginalizes", - "gerund": "marginalizing", - "past": "marginalized", - "past_participle": "marginalized" - }, - { - "infinitive": "scourge", - "present": "scourges", - "gerund": "scourging", - "past": "scourged", - "past_participle": "scourged" - }, - { - "infinitive": "revolt", - "present": "revolts", - "gerund": "revolting", - "past": "revolted", - "past_participle": "revolted" - }, - { - "infinitive": "season", - "present": "seasons", - "gerund": "seasoning", - "past": "seasoned", - "past_participle": "seasoned" - }, - { - "infinitive": "wink", - "present": "winks", - "gerund": "winking", - "past": "winked", - "past_participle": "winked" - }, - { - "infinitive": "wing", - "present": "wings", - "gerund": "winging", - "past": "winged", - "past_participle": "winged" - }, - { - "infinitive": "squint", - "present": "squints", - "gerund": "squinting", - "past": "squinted", - "past_participle": "squinted" - }, - { - "infinitive": "wine", - "present": "wines", - "gerund": "wining", - "past": "wined", - "past_participle": "wined" - }, - { - "infinitive": "triturate", - "present": "triturates", - "gerund": "triturating", - "past": "triturated", - "past_participle": "triturated" - }, - { - "infinitive": "transect", - "present": "transects", - "gerund": "transecting", - "past": "transected", - "past_participle": "transected" - }, - { - "infinitive": "confederate", - "present": "confederates", - "gerund": "confederating", - "past": "confederated", - "past_participle": "confederated" - }, - { - "infinitive": "vary", - "present": "varies", - "gerund": "varying", - "past": "varied", - "past_participle": "varied" - }, - { - "infinitive": "stagemanage", - "present": "stagemanages", - "gerund": "stagemanaging", - "past": "stagemanaged", - "past_participle": "stagemanaged" - }, - { - "infinitive": "handcuff", - "present": "handcuffs", - "gerund": "handcuffing", - "past": "handcuffed", - "past_participle": "handcuffed" - }, - { - "infinitive": "butcher", - "present": "butchers", - "gerund": "butchering", - "past": "butchered", - "past_participle": "butchered" - }, - { - "infinitive": "wrought", - "present": "wroughts", - "gerund": "wroughting", - "past": "wroughted", - "past_participle": "wroughted" - }, - { - "infinitive": "contuse", - "present": "contuses", - "gerund": "contusing", - "past": "contused", - "past_participle": "contused" - }, - { - "infinitive": "entrammel", - "present": "entrammels", - "gerund": "entrammelling", - "past": "entrammelled", - "past_participle": "entrammelled" - }, - { - "infinitive": "fix", - "present": "fixes", - "gerund": "fixing", - "past": "fixed", - "past_participle": "fixed" - }, - { - "infinitive": "baste", - "present": "bastes", - "gerund": "basting", - "past": "basted", - "past_participle": "basted" - }, - { - "infinitive": "secede", - "present": "secedes", - "gerund": "seceding", - "past": "seceded", - "past_participle": "seceded" - }, - { - "infinitive": "fib", - "present": "fibs", - "gerund": "fibbing", - "past": "fibbed", - "past_participle": "fibbed" - }, - { - "infinitive": "fig", - "present": "figs", - "gerund": "figging", - "past": "figged", - "past_participle": "figged" - }, - { - "infinitive": "transvalue", - "present": "transvalues", - "gerund": "transvaluing", - "past": "transvalued", - "past_participle": "transvalued" - }, - { - "infinitive": "fin", - "present": "fins", - "gerund": "finning", - "past": "finned", - "past_participle": "finned" - }, - { - "infinitive": "undercut", - "present": "undercuts", - "gerund": "undercutting", - "past": "undercut", - "past_participle": "undercut" - }, - { - "infinitive": "glorify", - "present": "glorifies", - "gerund": "glorifying", - "past": "glorified", - "past_participle": "glorified" - }, - { - "infinitive": "unpeg", - "present": "unpegs", - "gerund": "unpegging", - "past": "unpegged", - "past_participle": "unpegged" - }, - { - "infinitive": "enrich", - "present": "enriches", - "gerund": "enriching", - "past": "enriched", - "past_participle": "enriched" - }, - { - "infinitive": "slate", - "present": "slates", - "gerund": "slating", - "past": "slated", - "past_participle": "slated" - }, - { - "infinitive": "decarbonize", - "present": "decarbonizes", - "gerund": "decarbonizing", - "past": "decarbonized", - "past_participle": "decarbonized" - }, - { - "infinitive": "commemorate", - "present": "commemorates", - "gerund": "commemorating", - "past": "commemorated", - "past_participle": "commemorated" - }, - { - "infinitive": "memorialize", - "present": "memorializes", - "gerund": "memorializing", - "past": "memorialized", - "past_participle": "memorialized" - }, - { - "infinitive": "confute", - "present": "confutes", - "gerund": "confuting", - "past": "confuted", - "past_participle": "confuted" - }, - { - "infinitive": "interrupt", - "present": "interrupts", - "gerund": "interrupting", - "past": "interrupted", - "past_participle": "interrupted" - }, - { - "infinitive": "silver", - "present": "silvers", - "gerund": "silvering", - "past": "silvered", - "past_participle": "silvered" - }, - { - "infinitive": "rumour", - "present": "rumours", - "gerund": "rumouring", - "past": "rumoured", - "past_participle": "rumoured" - }, - { - "infinitive": "defecate", - "present": "defecates", - "gerund": "defecating", - "past": "defecated", - "past_participle": "defecated" - }, - { - "infinitive": "debut", - "present": "debuts", - "gerund": "debuting", - "past": "debuted", - "past_participle": "debuted" - }, - { - "infinitive": "debus", - "present": "debuses", - "gerund": "debusing", - "past": "debused", - "past_participle": "debused" - }, - { - "infinitive": "debug", - "present": "debugs", - "gerund": "debugging", - "past": "debugged", - "past_participle": "debugged" - }, - { - "infinitive": "gumshoe", - "present": "gumshoes", - "gerund": "gumshoeing", - "past": "gumshoed", - "past_participle": "gumshoed" - }, - { - "infinitive": "toll", - "present": "tolls", - "gerund": "tolling", - "past": "tolled", - "past_participle": "tolled" - }, - { - "infinitive": "telescope", - "present": "telescopes", - "gerund": "telescoping", - "past": "telescoped", - "past_participle": "telescoped" - }, - { - "infinitive": "swathe", - "present": "", - "gerund": "swathing", - "past": "swathed", - "past_participle": "swathed" - }, - { - "infinitive": "garment", - "present": "garments", - "gerund": "garmenting", - "past": "garmented", - "past_participle": "garmented" - }, - { - "infinitive": "exhume", - "present": "exhumes", - "gerund": "exhuming", - "past": "exhumed", - "past_participle": "exhumed" - }, - { - "infinitive": "whizz", - "present": "whizzes", - "gerund": "whizzing", - "past": "whizzed", - "past_participle": "whizzed" - }, - { - "infinitive": "ameliorate", - "present": "ameliorates", - "gerund": "ameliorating", - "past": "ameliorated", - "past_participle": "ameliorated" - }, - { - "infinitive": "allay", - "present": "allays", - "gerund": "allaying", - "past": "allayed", - "past_participle": "allayed" - }, - { - "infinitive": "whirr", - "present": "whirs", - "gerund": "whirring", - "past": "whirred", - "past_participle": "whirred" - }, - { - "infinitive": "ring", - "present": "rings", - "gerund": "ringing", - "past": "rung", - "past_participle": "rung" - }, - { - "infinitive": "overwrite", - "present": "overwrites", - "gerund": "overwriting", - "past": "overwrote", - "past_participle": "overwritten" - }, - { - "infinitive": "smirk", - "present": "smirks", - "gerund": "smirking", - "past": "smirked", - "past_participle": "smirked" - }, - { - "infinitive": "waive", - "present": "waives", - "gerund": "waiving", - "past": "waived", - "past_participle": "waived" - }, - { - "infinitive": "freeze", - "present": "freezes", - "gerund": "freezing", - "past": "froze", - "past_participle": "frozen" - }, - { - "infinitive": "mason", - "present": "masons", - "gerund": "masoning", - "past": "masoned", - "past_participle": "masoned" - }, - { - "infinitive": "unclog", - "present": "unclogs", - "gerund": "unclogging", - "past": "unclogged", - "past_participle": "unclogged" - }, - { - "infinitive": "nomadize", - "present": "nomadizes", - "gerund": "nomadizing", - "past": "nomadized", - "past_participle": "nomadized" - }, - { - "infinitive": "encourage", - "present": "encourages", - "gerund": "encouraging", - "past": "encouraged", - "past_participle": "encouraged" - }, - { - "infinitive": "adapt", - "present": "adapts", - "gerund": "adapting", - "past": "adapted", - "past_participle": "adapted" - }, - { - "infinitive": "teeter", - "present": "teeters", - "gerund": "teetering", - "past": "teetered", - "past_participle": "teetered" - }, - { - "infinitive": "smart", - "present": "smarts", - "gerund": "smarting", - "past": "smarted", - "past_participle": "smarted" - }, - { - "infinitive": "waddle", - "present": "waddles", - "gerund": "waddling", - "past": "waddled", - "past_participle": "waddled" - }, - { - "infinitive": "roquet", - "present": "roquets", - "gerund": "roqueting", - "past": "roqueted", - "past_participle": "roqueted" - }, - { - "infinitive": "inscribe", - "present": "inscribes", - "gerund": "inscribing", - "past": "inscribed", - "past_participle": "inscribed" - }, - { - "infinitive": "outmarch", - "present": "outmarches", - "gerund": "outmarching", - "past": "outmarched", - "past_participle": "outmarched" - }, - { - "infinitive": "broil", - "present": "broils", - "gerund": "broiling", - "past": "broiled", - "past_participle": "broiled" - }, - { - "infinitive": "knit", - "present": "knits", - "gerund": "knitting", - "past": "knitted", - "past_participle": "knitted" - }, - { - "infinitive": "quickstep", - "present": "quicksteps", - "gerund": "quickstepping", - "past": "quickstepped", - "past_participle": "quickstepped" - }, - { - "infinitive": "interpage", - "present": "interpages", - "gerund": "interpaging", - "past": "interpaged", - "past_participle": "interpaged" - }, - { - "infinitive": "superscribe", - "present": "superscribes", - "gerund": "superscribing", - "past": "superscribed", - "past_participle": "superscribed" - }, - { - "infinitive": "connive", - "present": "connives", - "gerund": "conniving", - "past": "connived", - "past_participle": "connived" - }, - { - "infinitive": "machinegun", - "present": "machineguns", - "gerund": "machineguning", - "past": "machineguned", - "past_participle": "machineguned" - }, - { - "infinitive": "untread", - "present": "untreads", - "gerund": "untreading", - "past": "untrod", - "past_participle": "untrodden" - }, - { - "infinitive": "spindle", - "present": "spindles", - "gerund": "spindling", - "past": "spindled", - "past_participle": "spindled" - }, - { - "infinitive": "symbolize", - "present": "symbolizes", - "gerund": "symbolizing", - "past": "symbolized", - "past_participle": "symbolized" - }, - { - "infinitive": "stripe", - "present": "stripes", - "gerund": "striping", - "past": "striped", - "past_participle": "striped" - }, - { - "infinitive": "deforce", - "present": "deforces", - "gerund": "deforcing", - "past": "deforced", - "past_participle": "deforced" - }, - { - "infinitive": "ogle", - "present": "ogles", - "gerund": "ogling", - "past": "ogled", - "past_participle": "ogled" - }, - { - "infinitive": "haggle", - "present": "haggles", - "gerund": "haggling", - "past": "haggled", - "past_participle": "haggled" - }, - { - "infinitive": "goggle", - "present": "goggles", - "gerund": "goggling", - "past": "goggled", - "past_participle": "goggled" - }, - { - "infinitive": "misplace", - "present": "misplaces", - "gerund": "misplacing", - "past": "misplaced", - "past_participle": "misplaced" - }, - { - "infinitive": "procreate", - "present": "procreates", - "gerund": "procreating", - "past": "procreated", - "past_participle": "procreated" - }, - { - "infinitive": "wash", - "present": "washes", - "gerund": "washing", - "past": "washed", - "past_participle": "washed" - }, - { - "infinitive": "instruct", - "present": "instructs", - "gerund": "instructing", - "past": "instructed", - "past_participle": "instructed" - }, - { - "infinitive": "declaim", - "present": "declaims", - "gerund": "declaiming", - "past": "declaimed", - "past_participle": "declaimed" - }, - { - "infinitive": "service", - "present": "services", - "gerund": "servicing", - "past": "serviced", - "past_participle": "serviced" - }, - { - "infinitive": "replevin", - "present": "replevins", - "gerund": "replevining", - "past": "replevined", - "past_participle": "replevined" - }, - { - "infinitive": "aircondition", - "present": "airconditions", - "gerund": "airconditioning", - "past": "airconditioned", - "past_participle": "airconditioned" - }, - { - "infinitive": "traumatize", - "present": "traumatizes", - "gerund": "traumatizing", - "past": "traumatized", - "past_participle": "traumatized" - }, - { - "infinitive": "rone", - "present": "rones", - "gerund": "roning", - "past": "roned", - "past_participle": "roned" - }, - { - "infinitive": "stack", - "present": "stacks", - "gerund": "stacking", - "past": "stacked", - "past_participle": "stacked" - }, - { - "infinitive": "master", - "present": "masters", - "gerund": "mastering", - "past": "mastered", - "past_participle": "mastered" - }, - { - "infinitive": "underlie", - "present": "underlies", - "gerund": "underlying", - "past": "underlay", - "past_participle": "underlain" - }, - { - "infinitive": "postulate", - "present": "postulates", - "gerund": "postulating", - "past": "postulated", - "past_participle": "postulated" - }, - { - "infinitive": "bitter", - "present": "bitters", - "gerund": "bittering", - "past": "bittered", - "past_participle": "bittered" - }, - { - "infinitive": "listen", - "present": "listens", - "gerund": "listening", - "past": "listened", - "past_participle": "listened" - }, - { - "infinitive": "abirritate", - "present": "abirritates", - "gerund": "abirritating", - "past": "abirritated", - "past_participle": "abirritated" - }, - { - "infinitive": "enthrall", - "present": "enthrals", - "gerund": "enthralling", - "past": "enthralled", - "past_participle": "enthralled" - }, - { - "infinitive": "supercalender", - "present": "supercalenders", - "gerund": "supercalendering", - "past": "supercalendered", - "past_participle": "supercalendered" - }, - { - "infinitive": "innerve", - "present": "innerves", - "gerund": "innerving", - "past": "innerved", - "past_participle": "innerved" - }, - { - "infinitive": "emaciate", - "present": "emaciates", - "gerund": "emaciating", - "past": "emaciated", - "past_participle": "emaciated" - }, - { - "infinitive": "task", - "present": "tasks", - "gerund": "tasking", - "past": "tasked", - "past_participle": "tasked" - }, - { - "infinitive": "crawl", - "present": "crawls", - "gerund": "crawling", - "past": "crawled", - "past_participle": "crawled" - }, - { - "infinitive": "white", - "present": "whites", - "gerund": "whiting", - "past": "whited", - "past_participle": "whited" - }, - { - "infinitive": "trek", - "present": "treks", - "gerund": "trekking", - "past": "trekked", - "past_participle": "trekked" - }, - { - "infinitive": "outlay", - "present": "outlays", - "gerund": "outlaying", - "past": "outlaid", - "past_participle": "outlaid" - }, - { - "infinitive": "outlaw", - "present": "outlaws", - "gerund": "outlawing", - "past": "outlawed", - "past_participle": "outlawed" - }, - { - "infinitive": "tree", - "present": "trees", - "gerund": "treeing", - "past": "treed", - "past_participle": "treed" - }, - { - "infinitive": "project", - "present": "projects", - "gerund": "projecting", - "past": "projected", - "past_participle": "projected" - }, - { - "infinitive": "enwind", - "present": "enwinds", - "gerund": "enwinding", - "past": "enwound", - "past_participle": "enwound" - }, - { - "infinitive": "idle", - "present": "idles", - "gerund": "idling", - "past": "idled", - "past_participle": "idled" - }, - { - "infinitive": "endure", - "present": "endures", - "gerund": "enduring", - "past": "endured", - "past_participle": "endured" - }, - { - "infinitive": "halve", - "present": "", - "gerund": "halving", - "past": "halved", - "past_participle": "halved" - }, - { - "infinitive": "acclaim", - "present": "acclaims", - "gerund": "acclaiming", - "past": "acclaimed", - "past_participle": "acclaimed" - }, - { - "infinitive": "napalm", - "present": "napalms", - "gerund": "napalming", - "past": "napalmed", - "past_participle": "napalmed" - }, - { - "infinitive": "hug", - "present": "hugs", - "gerund": "hugging", - "past": "hugged", - "past_participle": "hugged" - }, - { - "infinitive": "urinate", - "present": "urinates", - "gerund": "urinating", - "past": "urinated", - "past_participle": "urinated" - }, - { - "infinitive": "preponderate", - "present": "preponderates", - "gerund": "preponderating", - "past": "preponderated", - "past_participle": "preponderated" - }, - { - "infinitive": "kayo", - "present": "kayos", - "gerund": "kayoing", - "past": "kayoed", - "past_participle": "kayoed" - }, - { - "infinitive": "alkalize", - "present": "alkalizes", - "gerund": "alkalizing", - "past": "alkalized", - "past_participle": "alkalized" - }, - { - "infinitive": "gripe", - "present": "gripes", - "gerund": "griping", - "past": "griped", - "past_participle": "griped" - }, - { - "infinitive": "indite", - "present": "indites", - "gerund": "inditing", - "past": "indited", - "past_participle": "indited" - }, - { - "infinitive": "ambuscade", - "present": "ambuscades", - "gerund": "ambuscading", - "past": "ambuscaded", - "past_participle": "ambuscaded" - }, - { - "infinitive": "pander", - "present": "panders", - "gerund": "pandering", - "past": "pandered", - "past_participle": "pandered" - }, - { - "infinitive": "shall", - "present": "shalls", - "gerund": "shalling", - "past": "shalled", - "past_participle": "shalled" - }, - { - "infinitive": "overscore", - "present": "overscores", - "gerund": "overscoring", - "past": "overscored", - "past_participle": "overscored" - }, - { - "infinitive": "object", - "present": "objects", - "gerund": "objecting", - "past": "objected", - "past_participle": "objected" - }, - { - "infinitive": "impropriate", - "present": "impropriates", - "gerund": "impropriating", - "past": "impropriated", - "past_participle": "impropriated" - }, - { - "infinitive": "simplify", - "present": "simplifies", - "gerund": "simplifying", - "past": "simplified", - "past_participle": "simplified" - }, - { - "infinitive": "mouth", - "present": "mouths", - "gerund": "mouthing", - "past": "mouthed", - "past_participle": "mouthed" - }, - { - "infinitive": "addict", - "present": "addicts", - "gerund": "addicting", - "past": "addicted", - "past_participle": "addicted" - }, - { - "infinitive": "letter", - "present": "letters", - "gerund": "lettering", - "past": "lettered", - "past_participle": "lettered" - }, - { - "infinitive": "fluster", - "present": "flusters", - "gerund": "flustering", - "past": "flustered", - "past_participle": "flustered" - }, - { - "infinitive": "shalt", - "present": "shalts", - "gerund": "shalting", - "past": "shalted", - "past_participle": "shalted" - }, - { - "infinitive": "encipher", - "present": "enciphers", - "gerund": "enciphering", - "past": "enciphered", - "past_participle": "enciphered" - }, - { - "infinitive": "dummy", - "present": "dummies", - "gerund": "dummying", - "past": "dummied", - "past_participle": "dummied" - }, - { - "infinitive": "upend", - "present": "upends", - "gerund": "upending", - "past": "upended", - "past_participle": "upended" - }, - { - "infinitive": "nasalize", - "present": "nasalizes", - "gerund": "nasalizing", - "past": "nasalized", - "past_participle": "nasalized" - }, - { - "infinitive": "foist", - "present": "foists", - "gerund": "foisting", - "past": "foisted", - "past_participle": "foisted" - }, - { - "infinitive": "camp", - "present": "camps", - "gerund": "camping", - "past": "camped", - "past_participle": "camped" - }, - { - "infinitive": "departmentalize", - "present": "departmentalizes", - "gerund": "departmentalizing", - "past": "departmentalized", - "past_participle": "departmentalized" - }, - { - "infinitive": "nettle", - "present": "nettles", - "gerund": "nettling", - "past": "nettled", - "past_participle": "nettled" - }, - { - "infinitive": "disaffect", - "present": "disaffects", - "gerund": "disaffecting", - "past": "disaffected", - "past_participle": "disaffected" - }, - { - "infinitive": "consummate", - "present": "consummates", - "gerund": "consummating", - "past": "consummated", - "past_participle": "consummated" - }, - { - "infinitive": "screak", - "present": "screaks", - "gerund": "screaking", - "past": "screaked", - "past_participle": "screaked" - }, - { - "infinitive": "scream", - "present": "screams", - "gerund": "screaming", - "past": "screamed", - "past_participle": "screamed" - }, - { - "infinitive": "marvel", - "present": "marvels", - "gerund": "marvelling", - "past": "marvelled", - "past_participle": "marvelled" - }, - { - "infinitive": "mortise", - "present": "mortises", - "gerund": "mortising", - "past": "mortised", - "past_participle": "mortised" - }, - { - "infinitive": "incorporate", - "present": "incorporates", - "gerund": "incorporating", - "past": "incorporated", - "past_participle": "incorporated" - }, - { - "infinitive": "bomb", - "present": "bombs", - "gerund": "bombing", - "past": "bombed", - "past_participle": "bombed" - }, - { - "infinitive": "dicker", - "present": "dickers", - "gerund": "dickering", - "past": "dickered", - "past_participle": "dickered" - }, - { - "infinitive": "prig", - "present": "prigs", - "gerund": "prigging", - "past": "prigged", - "past_participle": "prigged" - }, - { - "infinitive": "reschedule", - "present": "reschedules", - "gerund": "rescheduling", - "past": "rescheduled", - "past_participle": "rescheduled" - }, - { - "infinitive": "concentre", - "present": "concentres", - "gerund": "concentring", - "past": "concentred", - "past_participle": "concentred" - }, - { - "infinitive": "striate", - "present": "striates", - "gerund": "striating", - "past": "striated", - "past_participle": "striated" - }, - { - "infinitive": "participate", - "present": "participates", - "gerund": "participating", - "past": "participated", - "past_participle": "participated" - }, - { - "infinitive": "caper", - "present": "capers", - "gerund": "capering", - "past": "capered", - "past_participle": "capered" - }, - { - "infinitive": "busy", - "present": "busies", - "gerund": "busying", - "past": "busied", - "past_participle": "busied" - }, - { - "infinitive": "headline", - "present": "headlines", - "gerund": "headlining", - "past": "headlined", - "past_participle": "headlined" - }, - { - "infinitive": "faradize", - "present": "faradizes", - "gerund": "faradizing", - "past": "faradized", - "past_participle": "faradized" - }, - { - "infinitive": "bust", - "present": "busts", - "gerund": "busting", - "past": "busted", - "past_participle": "busted" - }, - { - "infinitive": "busk", - "present": "busks", - "gerund": "busking", - "past": "busked", - "past_participle": "busked" - }, - { - "infinitive": "bush", - "present": "bushes", - "gerund": "bushing", - "past": "bushed", - "past_participle": "bushed" - }, - { - "infinitive": "rick", - "present": "ricks", - "gerund": "ricking", - "past": "ricked", - "past_participle": "ricked" - }, - { - "infinitive": "mend", - "present": "mends", - "gerund": "mending", - "past": "mended", - "past_participle": "mended" - }, - { - "infinitive": "rice", - "present": "rices", - "gerund": "ricing", - "past": "riced", - "past_participle": "riced" - }, - { - "infinitive": "plate", - "present": "plates", - "gerund": "plating", - "past": "plated", - "past_participle": "plated" - }, - { - "infinitive": "Gallicize", - "present": "Gallicizes", - "gerund": "Gallicizing", - "past": "Gallicized", - "past_participle": "Gallicized" - }, - { - "infinitive": "remarry", - "present": "remarries", - "gerund": "remarrying", - "past": "remarried", - "past_participle": "remarried" - }, - { - "infinitive": "preempt", - "present": "preempts", - "gerund": "preempting", - "past": "preempted", - "past_participle": "preempted" - }, - { - "infinitive": "denounce", - "present": "denounces", - "gerund": "denouncing", - "past": "denounced", - "past_participle": "denounced" - }, - { - "infinitive": "ceil", - "present": "ceils", - "gerund": "ceiling", - "past": "ceiled", - "past_participle": "ceiled" - }, - { - "infinitive": "pocket", - "present": "pockets", - "gerund": "pocketing", - "past": "pocketed", - "past_participle": "pocketed" - }, - { - "infinitive": "euphonize", - "present": "euphonizes", - "gerund": "euphonizing", - "past": "euphonized", - "past_participle": "euphonized" - }, - { - "infinitive": "cushion", - "present": "cushions", - "gerund": "cushioning", - "past": "cushioned", - "past_participle": "cushioned" - }, - { - "infinitive": "relish", - "present": "relishes", - "gerund": "relishing", - "past": "relished", - "past_participle": "relished" - }, - { - "infinitive": "enrobe", - "present": "enrobes", - "gerund": "enrobing", - "past": "enrobed", - "past_participle": "enrobed" - }, - { - "infinitive": "patch", - "present": "patches", - "gerund": "patching", - "past": "patched", - "past_participle": "patched" - }, - { - "infinitive": "release", - "present": "releases", - "gerund": "releasing", - "past": "released", - "past_participle": "released" - }, - { - "infinitive": "urticate", - "present": "urticates", - "gerund": "urticating", - "past": "urticated", - "past_participle": "urticated" - }, - { - "infinitive": "hasten", - "present": "hastens", - "gerund": "hastening", - "past": "hastened", - "past_participle": "hastened" - }, - { - "infinitive": "respond", - "present": "responds", - "gerund": "responding", - "past": "responded", - "past_participle": "responded" - }, - { - "infinitive": "traverse", - "present": "traverses", - "gerund": "traversing", - "past": "traversed", - "past_participle": "traversed" - }, - { - "infinitive": "fair", - "present": "fairs", - "gerund": "fairing", - "past": "faired", - "past_participle": "faired" - }, - { - "infinitive": "clew", - "present": "clews", - "gerund": "clewing", - "past": "clewed", - "past_participle": "clewed" - }, - { - "infinitive": "result", - "present": "results", - "gerund": "resulting", - "past": "resulted", - "past_participle": "resulted" - }, - { - "infinitive": "clem", - "present": "clems", - "gerund": "clemming", - "past": "clemmed", - "past_participle": "clemmed" - }, - { - "infinitive": "fail", - "present": "fails", - "gerund": "failing", - "past": "failed", - "past_participle": "failed" - }, - { - "infinitive": "internationalize", - "present": "internationalizes", - "gerund": "internationalizing", - "past": "internationalized", - "past_participle": "internationalized" - }, - { - "infinitive": "cockle", - "present": "cockles", - "gerund": "cockling", - "past": "cockled", - "past_participle": "cockled" - }, - { - "infinitive": "hammer", - "present": "hammers", - "gerund": "hammering", - "past": "hammered", - "past_participle": "hammered" - }, - { - "infinitive": "best", - "present": "bests", - "gerund": "besting", - "past": "bested", - "past_participle": "bested" - }, - { - "infinitive": "irk", - "present": "irks", - "gerund": "irking", - "past": "irked", - "past_participle": "irked" - }, - { - "infinitive": "flagellate", - "present": "flagellates", - "gerund": "flagellating", - "past": "flagellated", - "past_participle": "flagellated" - }, - { - "infinitive": "scorn", - "present": "scorns", - "gerund": "scorning", - "past": "scorned", - "past_participle": "scorned" - }, - { - "infinitive": "vociferate", - "present": "vociferates", - "gerund": "vociferating", - "past": "vociferated", - "past_participle": "vociferated" - }, - { - "infinitive": "pirate", - "present": "pirates", - "gerund": "pirating", - "past": "pirated", - "past_participle": "pirated" - }, - { - "infinitive": "hopple", - "present": "hopples", - "gerund": "hoppling", - "past": "hoppled", - "past_participle": "hoppled" - }, - { - "infinitive": "wage", - "present": "wages", - "gerund": "waging", - "past": "waged", - "past_participle": "waged" - }, - { - "infinitive": "pigstick", - "present": "pigsticks", - "gerund": "pigsticking", - "past": "pigsticked", - "past_participle": "pigsticked" - }, - { - "infinitive": "extend", - "present": "extends", - "gerund": "extending", - "past": "extended", - "past_participle": "extended" - }, - { - "infinitive": "quadruplicate", - "present": "quadruplicates", - "gerund": "quadruplicating", - "past": "quadruplicated", - "past_participle": "quadruplicated" - }, - { - "infinitive": "personalize", - "present": "personalizes", - "gerund": "personalizing", - "past": "personalized", - "past_participle": "personalized" - }, - { - "infinitive": "reconstitute", - "present": "reconstitutes", - "gerund": "reconstituting", - "past": "reconstituted", - "past_participle": "reconstituted" - }, - { - "infinitive": "wheelbarrow", - "present": "wheelbarrows", - "gerund": "wheelbarrowing", - "past": "wheelbarrowed", - "past_participle": "wheelbarrowed" - }, - { - "infinitive": "downgrade", - "present": "downgrades", - "gerund": "downgrading", - "past": "downgraded", - "past_participle": "downgraded" - }, - { - "infinitive": "wherrit", - "present": "wherrits", - "gerund": "wherriting", - "past": "wherrited", - "past_participle": "wherrited" - }, - { - "infinitive": "pity", - "present": "pities", - "gerund": "pitying", - "past": "pitied", - "past_participle": "pitied" - }, - { - "infinitive": "veer", - "present": "veers", - "gerund": "veering", - "past": "veered", - "past_participle": "veered" - }, - { - "infinitive": "disdain", - "present": "disdains", - "gerund": "disdaining", - "past": "disdained", - "past_participle": "disdained" - }, - { - "infinitive": "incense", - "present": "incenses", - "gerund": "incensing", - "past": "incensed", - "past_participle": "incensed" - }, - { - "infinitive": "pith", - "present": "piths", - "gerund": "pithing", - "past": "pithed", - "past_participle": "pithed" - }, - { - "infinitive": "sublime", - "present": "sublimes", - "gerund": "subliming", - "past": "sublimed", - "past_participle": "sublimed" - }, - { - "infinitive": "argue", - "present": "argues", - "gerund": "arguing", - "past": "argued", - "past_participle": "argued" - }, - { - "infinitive": "tinge", - "present": "tinges", - "gerund": "tingeing", - "past": "tinged", - "past_participle": "tinged" - }, - { - "infinitive": "schmooze", - "present": "schmoozes", - "gerund": "schmoozing", - "past": "schmoozed", - "past_participle": "schmoozed" - }, - { - "infinitive": "eradicate", - "present": "eradicates", - "gerund": "eradicating", - "past": "eradicated", - "past_participle": "eradicated" - }, - { - "infinitive": "rehash", - "present": "rehashes", - "gerund": "rehashing", - "past": "rehashed", - "past_participle": "rehashed" - }, - { - "infinitive": "vail", - "present": "vails", - "gerund": "vailing", - "past": "vailed", - "past_participle": "vailed" - }, - { - "infinitive": "extravasate", - "present": "extravasates", - "gerund": "extravasating", - "past": "extravasated", - "past_participle": "extravasated" - }, - { - "infinitive": "agglomerate", - "present": "agglomerates", - "gerund": "agglomerating", - "past": "agglomerated", - "past_participle": "agglomerated" - }, - { - "infinitive": "factorize", - "present": "factorizes", - "gerund": "factorizing", - "past": "factorized", - "past_participle": "factorized" - }, - { - "infinitive": "escalade", - "present": "escalades", - "gerund": "escalading", - "past": "escaladed", - "past_participle": "escaladed" - }, - { - "infinitive": "vitrify", - "present": "vitrifies", - "gerund": "vitrifying", - "past": "vitrified", - "past_participle": "vitrified" - }, - { - "infinitive": "penalize", - "present": "penalizes", - "gerund": "penalizing", - "past": "penalized", - "past_participle": "penalized" - }, - { - "infinitive": "vellicate", - "present": "vellicates", - "gerund": "vellicating", - "past": "vellicated", - "past_participle": "vellicated" - }, - { - "infinitive": "bewilder", - "present": "bewilders", - "gerund": "bewildering", - "past": "bewildered", - "past_participle": "bewildered" - }, - { - "infinitive": "parley", - "present": "parleys", - "gerund": "parleying", - "past": "parleyed", - "past_participle": "parleyed" - }, - { - "infinitive": "chrome", - "present": "chromes", - "gerund": "chroming", - "past": "chromed", - "past_participle": "chromed" - }, - { - "infinitive": "slay", - "present": "slays", - "gerund": "slaying", - "past": "slew", - "past_participle": "slain" - }, - { - "infinitive": "subside", - "present": "subsides", - "gerund": "subsiding", - "past": "subsided", - "past_participle": "subsided" - }, - { - "infinitive": "advert", - "present": "adverts", - "gerund": "adverting", - "past": "adverted", - "past_participle": "adverted" - }, - { - "infinitive": "privilege", - "present": "privileges", - "gerund": "privileging", - "past": "privileged", - "past_participle": "privileged" - }, - { - "infinitive": "fry", - "present": "fries", - "gerund": "frying", - "past": "fried", - "past_participle": "fried" - }, - { - "infinitive": "mothball", - "present": "mothballs", - "gerund": "mothballing", - "past": "mothballed", - "past_participle": "mothballed" - }, - { - "infinitive": "counterattack", - "present": "counterattacks", - "gerund": "counterattacking", - "past": "counterattacked", - "past_participle": "counterattacked" - }, - { - "infinitive": "dry", - "present": "dries", - "gerund": "drying", - "past": "dried", - "past_participle": "dried" - }, - { - "infinitive": "retrospect", - "present": "retrospects", - "gerund": "retrospecting", - "past": "retrospected", - "past_participle": "retrospected" - }, - { - "infinitive": "spit", - "present": "spits", - "gerund": "spitting", - "past": "spit", - "past_participle": "spit" - }, - { - "infinitive": "intermarry", - "present": "intermarries", - "gerund": "intermarrying", - "past": "intermarried", - "past_participle": "intermarried" - }, - { - "infinitive": "wish", - "present": "wishes", - "gerund": "wishing", - "past": "wished", - "past_participle": "wished" - }, - { - "infinitive": "snap", - "present": "snaps", - "gerund": "snapping", - "past": "snapped", - "past_participle": "snapped" - }, - { - "infinitive": "joust", - "present": "jousts", - "gerund": "jousting", - "past": "jousted", - "past_participle": "jousted" - }, - { - "infinitive": "lift", - "present": "lifts", - "gerund": "lifting", - "past": "lifted", - "past_participle": "lifted" - }, - { - "infinitive": "incommode", - "present": "incommodes", - "gerund": "incommoding", - "past": "incommoded", - "past_participle": "incommoded" - }, - { - "infinitive": "toboggan", - "present": "toboggans", - "gerund": "tobogganing", - "past": "tobogganed", - "past_participle": "tobogganed" - }, - { - "infinitive": "dote", - "present": "dotes", - "gerund": "doting", - "past": "doted", - "past_participle": "doted" - }, - { - "infinitive": "spin", - "present": "spins", - "gerund": "spinning", - "past": "spun", - "past_participle": "spun" - }, - { - "infinitive": "excorciate", - "present": "excorciates", - "gerund": "excorciating", - "past": "excorciated", - "past_participle": "excorciated" - }, - { - "infinitive": "chill", - "present": "chills", - "gerund": "chilling", - "past": "chilled", - "past_participle": "chilled" - }, - { - "infinitive": "iodize", - "present": "iodizes", - "gerund": "iodizing", - "past": "iodized", - "past_participle": "iodized" - }, - { - "infinitive": "dissect", - "present": "dissects", - "gerund": "dissecting", - "past": "dissected", - "past_participle": "dissected" - }, - { - "infinitive": "overweigh", - "present": "overweighs", - "gerund": "overweighing", - "past": "overweighed", - "past_participle": "overweighed" - }, - { - "infinitive": "employ", - "present": "employs", - "gerund": "employing", - "past": "employed", - "past_participle": "employed" - }, - { - "infinitive": "prostrate", - "present": "prostrates", - "gerund": "prostrating", - "past": "prostrated", - "past_participle": "prostrated" - }, - { - "infinitive": "bin", - "present": "bins", - "gerund": "binning", - "past": "binned", - "past_participle": "binned" - }, - { - "infinitive": "phosphoresce", - "present": "phosphoresces", - "gerund": "phosphorescing", - "past": "phosphoresced", - "past_participle": "phosphoresced" - }, - { - "infinitive": "characterize", - "present": "characterizes", - "gerund": "characterizing", - "past": "characterized", - "past_participle": "characterized" - }, - { - "infinitive": "elicit", - "present": "elicits", - "gerund": "eliciting", - "past": "elicited", - "past_participle": "elicited" - }, - { - "infinitive": "transfuse", - "present": "transfuses", - "gerund": "transfusing", - "past": "transfused", - "past_participle": "transfused" - }, - { - "infinitive": "hone", - "present": "hones", - "gerund": "honing", - "past": "honed", - "past_participle": "honed" - }, - { - "infinitive": "credit", - "present": "credits", - "gerund": "crediting", - "past": "credited", - "past_participle": "credited" - }, - { - "infinitive": "remand", - "present": "remands", - "gerund": "remanding", - "past": "remanded", - "past_participle": "remanded" - }, - { - "infinitive": "decant", - "present": "decants", - "gerund": "decanting", - "past": "decanted", - "past_participle": "decanted" - }, - { - "infinitive": "split", - "present": "splits", - "gerund": "splitting", - "past": "split", - "past_participle": "split" - }, - { - "infinitive": "heathenize", - "present": "heathenizes", - "gerund": "heathenizing", - "past": "heathenized", - "past_participle": "heathenized" - }, - { - "infinitive": "personify", - "present": "personifies", - "gerund": "personifying", - "past": "personified", - "past_participle": "personified" - }, - { - "infinitive": "pipette", - "present": "pipettes", - "gerund": "pipetting", - "past": "pipetted", - "past_participle": "pipetted" - }, - { - "infinitive": "refit", - "present": "refits", - "gerund": "refitting", - "past": "refitted", - "past_participle": "refitted" - }, - { - "infinitive": "misdoubt", - "present": "misdoubts", - "gerund": "misdoubting", - "past": "misdoubted", - "past_participle": "misdoubted" - }, - { - "infinitive": "titivate", - "present": "titivates", - "gerund": "titivating", - "past": "titivated", - "past_participle": "titivated" - }, - { - "infinitive": "supper", - "present": "suppers", - "gerund": "suppering", - "past": "suppered", - "past_participle": "suppered" - }, - { - "infinitive": "tope", - "present": "topes", - "gerund": "toping", - "past": "toped", - "past_participle": "toped" - }, - { - "infinitive": "tune", - "present": "tunes", - "gerund": "tuning", - "past": "tuned", - "past_participle": "tuned" - }, - { - "infinitive": "furlough", - "present": "furloughs", - "gerund": "furloughing", - "past": "furloughed", - "past_participle": "furloughed" - }, - { - "infinitive": "jargonize", - "present": "jargonizes", - "gerund": "jargonizing", - "past": "jargonized", - "past_participle": "jargonized" - }, - { - "infinitive": "cannibalize", - "present": "cannibalizes", - "gerund": "cannibalizing", - "past": "cannibalized", - "past_participle": "cannibalized" - }, - { - "infinitive": "unhook", - "present": "unhooks", - "gerund": "unhooking", - "past": "unhooked", - "past_participle": "unhooked" - }, - { - "infinitive": "subpoena", - "present": "subpoenas", - "gerund": "subpoenaing", - "past": "subpoenaed", - "past_participle": "subpoenaed" - }, - { - "infinitive": "abound", - "present": "abounds", - "gerund": "abounding", - "past": "abounded", - "past_participle": "abounded" - }, - { - "infinitive": "bellow", - "present": "bellows", - "gerund": "bellowing", - "past": "bellowed", - "past_participle": "bellowed" - }, - { - "infinitive": "distribute", - "present": "distributes", - "gerund": "distributing", - "past": "distributed", - "past_participle": "distributed" - }, - { - "infinitive": "beset", - "present": "besets", - "gerund": "besetting", - "past": "beset", - "past_participle": "beset" - }, - { - "infinitive": "disguise", - "present": "disguises", - "gerund": "disguising", - "past": "disguised", - "past_participle": "disguised" - }, - { - "infinitive": "prognosticate", - "present": "prognosticates", - "gerund": "prognosticating", - "past": "prognosticated", - "past_participle": "prognosticated" - }, - { - "infinitive": "plight", - "present": "plights", - "gerund": "plighting", - "past": "plighted", - "past_participle": "plighted" - }, - { - "infinitive": "brandish", - "present": "brandishes", - "gerund": "brandishing", - "past": "brandished", - "past_participle": "brandished" - }, - { - "infinitive": "lasso", - "present": "lassos", - "gerund": "lassoing", - "past": "lassoed", - "past_participle": "lassoed" - }, - { - "infinitive": "indue", - "present": "indues", - "gerund": "induing", - "past": "indued", - "past_participle": "indued" - }, - { - "infinitive": "ham", - "present": "hams", - "gerund": "hamming", - "past": "hammed", - "past_participle": "hammed" - }, - { - "infinitive": "aquaplane", - "present": "aquaplanes", - "gerund": "aquaplaning", - "past": "aquaplaned", - "past_participle": "aquaplaned" - }, - { - "infinitive": "ease", - "present": "eases", - "gerund": "easing", - "past": "eased", - "past_participle": "eased" - }, - { - "infinitive": "hay", - "present": "hays", - "gerund": "haying", - "past": "hayed", - "past_participle": "hayed" - }, - { - "infinitive": "falter", - "present": "falters", - "gerund": "faltering", - "past": "faltered", - "past_participle": "faltered" - }, - { - "infinitive": "hat", - "present": "hats", - "gerund": "hatting", - "past": "hatted", - "past_participle": "hatted" - }, - { - "infinitive": "haw", - "present": "haws", - "gerund": "hawing", - "past": "hawed", - "past_participle": "hawed" - }, - { - "infinitive": "footle", - "present": "footles", - "gerund": "footling", - "past": "footled", - "past_participle": "footled" - }, - { - "infinitive": "testfire", - "present": "testfires", - "gerund": "testfiring", - "past": "testfired", - "past_participle": "testfired" - }, - { - "infinitive": "collectivize", - "present": "collectivizes", - "gerund": "collectivizing", - "past": "collectivized", - "past_participle": "collectivized" - }, - { - "infinitive": "birth", - "present": "births", - "gerund": "birthing", - "past": "birthed", - "past_participle": "birthed" - }, - { - "infinitive": "roister", - "present": "roisters", - "gerund": "roistering", - "past": "roistered", - "past_participle": "roistered" - }, - { - "infinitive": "shadow", - "present": "shadows", - "gerund": "shadowing", - "past": "shadowed", - "past_participle": "shadowed" - }, - { - "infinitive": "summons", - "present": "summonses", - "gerund": "summonsing", - "past": "summonsed", - "past_participle": "summonsed" - }, - { - "infinitive": "desire", - "present": "desires", - "gerund": "desiring", - "past": "desired", - "past_participle": "desired" - }, - { - "infinitive": "seek", - "present": "seeks", - "gerund": "seeking", - "past": "sought", - "past_participle": "sought" - }, - { - "infinitive": "disaccustom", - "present": "disaccustoms", - "gerund": "disaccustoming", - "past": "disaccustomed", - "past_participle": "disaccustomed" - }, - { - "infinitive": "altercate", - "present": "altercates", - "gerund": "altercating", - "past": "altercated", - "past_participle": "altercated" - }, - { - "infinitive": "remind", - "present": "reminds", - "gerund": "reminding", - "past": "reminded", - "past_participle": "reminded" - }, - { - "infinitive": "sectarianize", - "present": "sectarianizes", - "gerund": "sectarianizing", - "past": "sectarianized", - "past_participle": "sectarianized" - }, - { - "infinitive": "prologue", - "present": "prologues", - "gerund": "prologuing", - "past": "prologued", - "past_participle": "prologued" - }, - { - "infinitive": "right", - "present": "rights", - "gerund": "righting", - "past": "righted", - "past_participle": "righted" - }, - { - "infinitive": "crowd", - "present": "crowds", - "gerund": "crowding", - "past": "crowded", - "past_participle": "crowded" - }, - { - "infinitive": "people", - "present": "peoples", - "gerund": "peopling", - "past": "peopled", - "past_participle": "peopled" - }, - { - "infinitive": "scathe", - "present": "scathes", - "gerund": "scathing", - "past": "scathed", - "past_participle": "scathed" - }, - { - "infinitive": "crown", - "present": "crowns", - "gerund": "crowning", - "past": "crowned", - "past_participle": "crowned" - }, - { - "infinitive": "outgeneral", - "present": "outgenerals", - "gerund": "outgeneralling", - "past": "outgeneralled", - "past_participle": "outgeneralled" - }, - { - "infinitive": "mishit", - "present": "mishits", - "gerund": "mishitting", - "past": "mishit", - "past_participle": "mishit" - }, - { - "infinitive": "desensitize", - "present": "desensitizes", - "gerund": "desensitizing", - "past": "desensitized", - "past_participle": "desensitized" - }, - { - "infinitive": "demineralize", - "present": "demineralizes", - "gerund": "demineralizing", - "past": "demineralized", - "past_participle": "demineralized" - }, - { - "infinitive": "prick", - "present": "pricks", - "gerund": "pricking", - "past": "pricked", - "past_participle": "pricked" - }, - { - "infinitive": "animate", - "present": "animates", - "gerund": "animating", - "past": "animated", - "past_participle": "animated" - }, - { - "infinitive": "creep", - "present": "creeps", - "gerund": "creeping", - "past": "crept", - "past_participle": "crept" - }, - { - "infinitive": "chorus", - "present": "choruses", - "gerund": "chorusing", - "past": "chorused", - "past_participle": "chorused" - }, - { - "infinitive": "blackleg", - "present": "blacklegs", - "gerund": "blacklegging", - "past": "blacklegged", - "past_participle": "blacklegged" - }, - { - "infinitive": "rehearse", - "present": "rehearses", - "gerund": "rehearsing", - "past": "rehearsed", - "past_participle": "rehearsed" - }, - { - "infinitive": "fox", - "present": "foxes", - "gerund": "foxing", - "past": "foxed", - "past_participle": "foxed" - }, - { - "infinitive": "subclass", - "present": "subclasses", - "gerund": "subclassing", - "past": "subclassed", - "past_participle": "subclassed" - }, - { - "infinitive": "fog", - "present": "fogs", - "gerund": "fogging", - "past": "fogged", - "past_participle": "fogged" - }, - { - "infinitive": "fob", - "present": "fobs", - "gerund": "fobbing", - "past": "fobbed", - "past_participle": "fobbed" - }, - { - "infinitive": "germinate", - "present": "germinates", - "gerund": "germinating", - "past": "germinated", - "past_participle": "germinated" - }, - { - "infinitive": "preside", - "present": "presides", - "gerund": "presiding", - "past": "presided", - "past_participle": "presided" - }, - { - "infinitive": "collet", - "present": "collets", - "gerund": "colleting", - "past": "colleted", - "past_participle": "colleted" - }, - { - "infinitive": "trampoline", - "present": "trampolines", - "gerund": "trampolining", - "past": "trampolined", - "past_participle": "trampolined" - }, - { - "infinitive": "regorge", - "present": "regorges", - "gerund": "regorging", - "past": "regorged", - "past_participle": "regorged" - }, - { - "infinitive": "yoke", - "present": "yokes", - "gerund": "yoking", - "past": "yoked", - "past_participle": "yoked" - }, - { - "infinitive": "digitalize", - "present": "digitalizes", - "gerund": "digitalizing", - "past": "digitalized", - "past_participle": "digitalized" - }, - { - "infinitive": "intenerate", - "present": "intenerates", - "gerund": "intenerating", - "past": "intenerated", - "past_participle": "intenerated" - }, - { - "infinitive": "slither", - "present": "slithers", - "gerund": "slithering", - "past": "slithered", - "past_participle": "slithered" - }, - { - "infinitive": "lackey", - "present": "lackeys", - "gerund": "lackeying", - "past": "lackeyed", - "past_participle": "lackeyed" - }, - { - "infinitive": "autotomize", - "present": "autotomizes", - "gerund": "autotomizing", - "past": "autotomized", - "past_participle": "autotomized" - }, - { - "infinitive": "recollect", - "present": "recollects", - "gerund": "recollecting", - "past": "recollected", - "past_participle": "recollected" - }, - { - "infinitive": "reticulate", - "present": "reticulates", - "gerund": "reticulating", - "past": "reticulated", - "past_participle": "reticulated" - }, - { - "infinitive": "Platonize", - "present": "Platonizes", - "gerund": "Platonizing", - "past": "Platonized", - "past_participle": "Platonized" - }, - { - "infinitive": "meddle", - "present": "meddles", - "gerund": "meddling", - "past": "meddled", - "past_participle": "meddled" - }, - { - "infinitive": "sob", - "present": "sobs", - "gerund": "sobbing", - "past": "sobbed", - "past_participle": "sobbed" - }, - { - "infinitive": "overshadow", - "present": "overshadows", - "gerund": "overshadowing", - "past": "overshadowed", - "past_participle": "overshadowed" - }, - { - "infinitive": "honeymoon", - "present": "honeymoons", - "gerund": "honeymooning", - "past": "honeymooned", - "past_participle": "honeymooned" - }, - { - "infinitive": "overgrow", - "present": "overgrows", - "gerund": "overgrowing", - "past": "overgrew", - "past_participle": "overgrown" - }, - { - "infinitive": "administer", - "present": "administers", - "gerund": "administering", - "past": "administered", - "past_participle": "administered" - }, - { - "infinitive": "multiply", - "present": "multiplies", - "gerund": "multiplying", - "past": "multiplied", - "past_participle": "multiplied" - }, - { - "infinitive": "inhume", - "present": "inhumes", - "gerund": "inhuming", - "past": "inhumed", - "past_participle": "inhumed" - }, - { - "infinitive": "swelter", - "present": "swelters", - "gerund": "sweltering", - "past": "sweltered", - "past_participle": "sweltered" - }, - { - "infinitive": "sow", - "present": "sows", - "gerund": "sowing", - "past": "sowed", - "past_participle": "sown" - }, - { - "infinitive": "mambo", - "present": "mambos", - "gerund": "mamboing", - "past": "mamboed", - "past_participle": "mamboed" - }, - { - "infinitive": "resile", - "present": "resiles", - "gerund": "resiling", - "past": "resiled", - "past_participle": "resiled" - }, - { - "infinitive": "nid-nod", - "present": "nid-nods", - "gerund": "nid-nodding", - "past": "nid-nodded", - "past_participle": "nid-nodded" - }, - { - "infinitive": "suffice", - "present": "suffices", - "gerund": "sufficing", - "past": "sufficed", - "past_participle": "sufficed" - }, - { - "infinitive": "decussate", - "present": "decussates", - "gerund": "decussating", - "past": "decussated", - "past_participle": "decussated" - }, - { - "infinitive": "tame", - "present": "tames", - "gerund": "taming", - "past": "tamed", - "past_participle": "tamed" - }, - { - "infinitive": "avail", - "present": "avails", - "gerund": "availing", - "past": "availed", - "past_participle": "availed" - }, - { - "infinitive": "furcate", - "present": "furcates", - "gerund": "furcating", - "past": "furcated", - "past_participle": "furcated" - }, - { - "infinitive": "tamp", - "present": "tamps", - "gerund": "tamping", - "past": "tamped", - "past_participle": "tamped" - }, - { - "infinitive": "overhand", - "present": "overhands", - "gerund": "overhanding", - "past": "overhanded", - "past_participle": "overhanded" - }, - { - "infinitive": "overhang", - "present": "overhangs", - "gerund": "overhanging", - "past": "overhung", - "past_participle": "overhung" - }, - { - "infinitive": "subtend", - "present": "subtends", - "gerund": "subtending", - "past": "subtended", - "past_participle": "subtended" - }, - { - "infinitive": "bowse", - "present": "bowses", - "gerund": "bowsing", - "past": "bowsed", - "past_participle": "bowsed" - }, - { - "infinitive": "offer", - "present": "offers", - "gerund": "offering", - "past": "offered", - "past_participle": "offered" - }, - { - "infinitive": "unroot", - "present": "unroots", - "gerund": "unrooting", - "past": "unrooted", - "past_participle": "unrooted" - }, - { - "infinitive": "straggle", - "present": "straggles", - "gerund": "straggling", - "past": "straggled", - "past_participle": "straggled" - }, - { - "infinitive": "safeguard", - "present": "safeguards", - "gerund": "safeguarding", - "past": "safeguarded", - "past_participle": "safeguarded" - }, - { - "infinitive": "duel", - "present": "duels", - "gerund": "duelling", - "past": "duelled", - "past_participle": "duelled" - }, - { - "infinitive": "misinform", - "present": "misinforms", - "gerund": "misinforming", - "past": "misinformed", - "past_participle": "misinformed" - }, - { - "infinitive": "transliterate", - "present": "transliterates", - "gerund": "transliterating", - "past": "transliterated", - "past_participle": "transliterated" - }, - { - "infinitive": "pontificate", - "present": "pontificates", - "gerund": "pontificating", - "past": "pontificated", - "past_participle": "pontificated" - }, - { - "infinitive": "communize", - "present": "communizes", - "gerund": "communizing", - "past": "communized", - "past_participle": "communized" - }, - { - "infinitive": "discountenance", - "present": "discountenances", - "gerund": "discountenancing", - "past": "discountenanced", - "past_participle": "discountenanced" - }, - { - "infinitive": "disgrace", - "present": "disgraces", - "gerund": "disgracing", - "past": "disgraced", - "past_participle": "disgraced" - }, - { - "infinitive": "sight", - "present": "sights", - "gerund": "sighting", - "past": "sighted", - "past_participle": "sighted" - }, - { - "infinitive": "suborn", - "present": "suborns", - "gerund": "suborning", - "past": "suborned", - "past_participle": "suborned" - }, - { - "infinitive": "unnerve", - "present": "unnerves", - "gerund": "unnerving", - "past": "unnerved", - "past_participle": "unnerved" - }, - { - "infinitive": "grabble", - "present": "grabbles", - "gerund": "grabbling", - "past": "grabbled", - "past_participle": "grabbled" - }, - { - "infinitive": "crumble", - "present": "crumbles", - "gerund": "crumbling", - "past": "crumbled", - "past_participle": "crumbled" - }, - { - "infinitive": "soothe", - "present": "soothes", - "gerund": "soothing", - "past": "soothed", - "past_participle": "soothed" - }, - { - "infinitive": "exist", - "present": "exists", - "gerund": "existing", - "past": "existed", - "past_participle": "existed" - }, - { - "infinitive": "splotch", - "present": "splotches", - "gerund": "splotching", - "past": "splotched", - "past_participle": "splotched" - }, - { - "infinitive": "blackmarket", - "present": "blackmarkets", - "gerund": "blackmarketing", - "past": "blackmarketed", - "past_participle": "blackmarketed" - }, - { - "infinitive": "leer", - "present": "leers", - "gerund": "leering", - "past": "leered", - "past_participle": "leered" - }, - { - "infinitive": "floor", - "present": "floors", - "gerund": "flooring", - "past": "floored", - "past_participle": "floored" - }, - { - "infinitive": "canonize", - "present": "canonizes", - "gerund": "canonizing", - "past": "canonized", - "past_participle": "canonized" - }, - { - "infinitive": "relax", - "present": "relaxes", - "gerund": "relaxing", - "past": "relaxed", - "past_participle": "relaxed" - }, - { - "infinitive": "flood", - "present": "floods", - "gerund": "flooding", - "past": "flooded", - "past_participle": "flooded" - }, - { - "infinitive": "desecrate", - "present": "desecrates", - "gerund": "desecrating", - "past": "desecrated", - "past_participle": "desecrated" - }, - { - "infinitive": "plasmolyze", - "present": "plasmolyzes", - "gerund": "plasmolyzing", - "past": "plasmolyzed", - "past_participle": "plasmolyzed" - }, - { - "infinitive": "snick", - "present": "snicks", - "gerund": "snicking", - "past": "snicked", - "past_participle": "snicked" - }, - { - "infinitive": "smell", - "present": "smells", - "gerund": "smelling", - "past": "smelt", - "past_participle": "smelled" - }, - { - "infinitive": "circumcise", - "present": "circumcises", - "gerund": "circumcising", - "past": "circumcised", - "past_participle": "circumcised" - }, - { - "infinitive": "valuate", - "present": "valuates", - "gerund": "valuating", - "past": "valuated", - "past_participle": "valuated" - }, - { - "infinitive": "asterisk", - "present": "asterisks", - "gerund": "asterisking", - "past": "asterisked", - "past_participle": "asterisked" - }, - { - "infinitive": "superadd", - "present": "superadds", - "gerund": "superadding", - "past": "superadded", - "past_participle": "superadded" - }, - { - "infinitive": "substract", - "present": "substracts", - "gerund": "substracting", - "past": "substracted", - "past_participle": "substracted" - }, - { - "infinitive": "foxhunt", - "present": "foxhunts", - "gerund": "foxhunting", - "past": "foxhunted", - "past_participle": "foxhunted" - }, - { - "infinitive": "objectify", - "present": "objectifies", - "gerund": "objectifying", - "past": "objectified", - "past_participle": "objectified" - }, - { - "infinitive": "snooze", - "present": "snoozes", - "gerund": "snoozing", - "past": "snoozed", - "past_participle": "snoozed" - }, - { - "infinitive": "intrust", - "present": "intrusts", - "gerund": "intrusting", - "past": "intrusted", - "past_participle": "intrusted" - }, - { - "infinitive": "hurt", - "present": "hurts", - "gerund": "hurting", - "past": "hurt", - "past_participle": "hurt" - }, - { - "infinitive": "warn", - "present": "warns", - "gerund": "warning", - "past": "warned", - "past_participle": "warned" - }, - { - "infinitive": "diadem", - "present": "diadems", - "gerund": "diademing", - "past": "diademed", - "past_participle": "diademed" - }, - { - "infinitive": "time", - "present": "times", - "gerund": "timing", - "past": "timed", - "past_participle": "timed" - }, - { - "infinitive": "push", - "present": "pushes", - "gerund": "pushing", - "past": "pushed", - "past_participle": "pushed" - }, - { - "infinitive": "frenzy", - "present": "frenzies", - "gerund": "frenzying", - "past": "frenzied", - "past_participle": "frenzied" - }, - { - "infinitive": "gown", - "present": "gowns", - "gerund": "gowning", - "past": "gowned", - "past_participle": "gowned" - }, - { - "infinitive": "moither", - "present": "moithers", - "gerund": "moithering", - "past": "moithered", - "past_participle": "moithered" - }, - { - "infinitive": "chain", - "present": "chains", - "gerund": "chaining", - "past": "chained", - "past_participle": "chained" - }, - { - "infinitive": "interspace", - "present": "interspaces", - "gerund": "interspacing", - "past": "interspaced", - "past_participle": "interspaced" - }, - { - "infinitive": "ruddle", - "present": "ruddles", - "gerund": "ruddling", - "past": "ruddled", - "past_participle": "ruddled" - }, - { - "infinitive": "avalanche", - "present": "avalanches", - "gerund": "avalanching", - "past": "avalanched", - "past_participle": "avalanched" - }, - { - "infinitive": "peninsulate", - "present": "peninsulates", - "gerund": "peninsulating", - "past": "peninsulated", - "past_participle": "peninsulated" - }, - { - "infinitive": "convoy", - "present": "convoys", - "gerund": "convoying", - "past": "convoyed", - "past_participle": "convoyed" - }, - { - "infinitive": "chair", - "present": "chairs", - "gerund": "chairing", - "past": "chaired", - "past_participle": "chaired" - }, - { - "infinitive": "retrofit", - "present": "retrofits", - "gerund": "retrofitting", - "past": "retrofitted", - "past_participle": "retrofitted" - }, - { - "infinitive": "vet", - "present": "vets", - "gerund": "vetting", - "past": "vetted", - "past_participle": "vetted" - }, - { - "infinitive": "freelance", - "present": "freelances", - "gerund": "freelancing", - "past": "freelanced", - "past_participle": "freelanced" - }, - { - "infinitive": "vex", - "present": "vexes", - "gerund": "vexing", - "past": "vexed", - "past_participle": "vexed" - }, - { - "infinitive": "crater", - "present": "craters", - "gerund": "cratering", - "past": "cratered", - "past_participle": "cratered" - }, - { - "infinitive": "syllogize", - "present": "syllogizes", - "gerund": "syllogizing", - "past": "syllogized", - "past_participle": "syllogized" - }, - { - "infinitive": "splutter", - "present": "splutters", - "gerund": "spluttering", - "past": "spluttered", - "past_participle": "spluttered" - }, - { - "infinitive": "persevere", - "present": "perseveres", - "gerund": "persevering", - "past": "persevered", - "past_participle": "persevered" - }, - { - "infinitive": "ingather", - "present": "ingathers", - "gerund": "ingathering", - "past": "ingathered", - "past_participle": "ingathered" - }, - { - "infinitive": "jerk", - "present": "jerks", - "gerund": "jerking", - "past": "jerked", - "past_participle": "jerked" - }, - { - "infinitive": "argufy", - "present": "argufies", - "gerund": "argufying", - "past": "argufied", - "past_participle": "argufied" - }, - { - "infinitive": "refinance", - "present": "refinances", - "gerund": "refinancing", - "past": "refinanced", - "past_participle": "refinanced" - }, - { - "infinitive": "embark", - "present": "embarks", - "gerund": "embarking", - "past": "embarked", - "past_participle": "embarked" - }, - { - "infinitive": "rook", - "present": "rooks", - "gerund": "rooking", - "past": "rooked", - "past_participle": "rooked" - }, - { - "infinitive": "mourn", - "present": "mourns", - "gerund": "mourning", - "past": "mourned", - "past_participle": "mourned" - }, - { - "infinitive": "bustle", - "present": "bustles", - "gerund": "bustling", - "past": "bustled", - "past_participle": "bustled" - }, - { - "infinitive": "exact", - "present": "exacts", - "gerund": "exacting", - "past": "exacted", - "past_participle": "exacted" - }, - { - "infinitive": "overstock", - "present": "overstocks", - "gerund": "overstocking", - "past": "overstocked", - "past_participle": "overstocked" - }, - { - "infinitive": "giftwrap", - "present": "giftwraps", - "gerund": "giftwrapping", - "past": "giftwrapped", - "past_participle": "giftwrapped" - }, - { - "infinitive": "disembody", - "present": "disembodies", - "gerund": "disembodying", - "past": "disembodied", - "past_participle": "disembodied" - }, - { - "infinitive": "re-cede", - "present": "re-cedes", - "gerund": "re-ceding", - "past": "receded", - "past_participle": "re-ceded" - }, - { - "infinitive": "tricycle", - "present": "tricycles", - "gerund": "tricycling", - "past": "tricycled", - "past_participle": "tricycled" - }, - { - "infinitive": "tear", - "present": "tears", - "gerund": "tearing", - "past": "tore", - "past_participle": "torn" - }, - { - "infinitive": "folk-dance", - "present": "folk-dances", - "gerund": "folk-dancing", - "past": "folk-danced", - "past_participle": "folk-danced" - }, - { - "infinitive": "overarch", - "present": "overarches", - "gerund": "overarching", - "past": "overarched", - "past_participle": "overarched" - }, - { - "infinitive": "larn", - "present": "larns", - "gerund": "larning", - "past": "larned", - "past_participle": "larned" - }, - { - "infinitive": "leave", - "present": "leaves", - "gerund": "leaving", - "past": "leaved", - "past_participle": "leaved" - }, - { - "infinitive": "settle", - "present": "settles", - "gerund": "settling", - "past": "settled", - "past_participle": "settled" - }, - { - "infinitive": "stockade", - "present": "stockades", - "gerund": "stockading", - "past": "stockaded", - "past_participle": "stockaded" - }, - { - "infinitive": "insufflate", - "present": "insufflates", - "gerund": "insufflating", - "past": "insufflated", - "past_participle": "insufflated" - }, - { - "infinitive": "skewer", - "present": "skewers", - "gerund": "skewering", - "past": "skewered", - "past_participle": "skewered" - }, - { - "infinitive": "gasify", - "present": "gasifies", - "gerund": "gasifying", - "past": "gasified", - "past_participle": "gasified" - }, - { - "infinitive": "re-join", - "present": "re-joins", - "gerund": "re-joining", - "past": "rejoined", - "past_participle": "re-joined" - }, - { - "infinitive": "torrify", - "present": "torrifies", - "gerund": "torrifying", - "past": "torrified", - "past_participle": "torrified" - }, - { - "infinitive": "sigh", - "present": "sighs", - "gerund": "sighing", - "past": "sighed", - "past_participle": "sighed" - }, - { - "infinitive": "sign", - "present": "signs", - "gerund": "signing", - "past": "signed", - "past_participle": "signed" - }, - { - "infinitive": "Islamize", - "present": "Islamizes", - "gerund": "Islamizing", - "past": "Islamized", - "past_participle": "Islamized" - }, - { - "infinitive": "educate", - "present": "educates", - "gerund": "educating", - "past": "educated", - "past_participle": "educated" - }, - { - "infinitive": "sequestrate", - "present": "sequestrates", - "gerund": "sequestrating", - "past": "sequestrated", - "past_participle": "sequestrated" - }, - { - "infinitive": "convulse", - "present": "convulses", - "gerund": "convulsing", - "past": "convulsed", - "past_participle": "convulsed" - }, - { - "infinitive": "melt", - "present": "melts", - "gerund": "melting", - "past": "melted", - "past_participle": "molten" - }, - { - "infinitive": "wriggle", - "present": "wriggles", - "gerund": "wriggling", - "past": "wriggled", - "past_participle": "wriggled" - }, - { - "infinitive": "jog-trot", - "present": "jog-trots", - "gerund": "jog-trotting", - "past": "jog-trotted", - "past_participle": "jog-trotted" - }, - { - "infinitive": "boost", - "present": "boosts", - "gerund": "boosting", - "past": "boosted", - "past_participle": "boosted" - }, - { - "infinitive": "accoutre", - "present": "accoutres", - "gerund": "accoutring", - "past": "accoutred", - "past_participle": "accoutred" - }, - { - "infinitive": "osmose", - "present": "osmoses", - "gerund": "osmosing", - "past": "osmosed", - "past_participle": "osmosed" - }, - { - "infinitive": "abscond", - "present": "absconds", - "gerund": "absconding", - "past": "absconded", - "past_participle": "absconded" - }, - { - "infinitive": "honour", - "present": "honours", - "gerund": "honouring", - "past": "honoured", - "past_participle": "honoured" - }, - { - "infinitive": "contemplate", - "present": "contemplates", - "gerund": "contemplating", - "past": "contemplated", - "past_participle": "contemplated" - }, - { - "infinitive": "snack", - "present": "snacks", - "gerund": "snacking", - "past": "snacked", - "past_participle": "snacked" - }, - { - "infinitive": "splice", - "present": "splices", - "gerund": "splicing", - "past": "spliced", - "past_participle": "spliced" - }, - { - "infinitive": "address", - "present": "addresses", - "gerund": "addressing", - "past": "addrest", - "past_participle": "addrest" - }, - { - "infinitive": "sublease", - "present": "subleases", - "gerund": "subleasing", - "past": "subleased", - "past_participle": "subleased" - }, - { - "infinitive": "enroll", - "present": "enrols", - "gerund": "enrolling", - "past": "enrolled", - "past_participle": "enrolled" - }, - { - "infinitive": "halogenate", - "present": "halogenates", - "gerund": "halogenating", - "past": "halogenated", - "past_participle": "halogenated" - }, - { - "infinitive": "fledge", - "present": "fledges", - "gerund": "fledging", - "past": "fledged", - "past_participle": "fledged" - }, - { - "infinitive": "root", - "present": "roots", - "gerund": "rooting", - "past": "rooted", - "past_participle": "rooted" - }, - { - "infinitive": "queue", - "present": "queues", - "gerund": "queueing", - "past": "queueed", - "past_participle": "queueed" - }, - { - "infinitive": "coextend", - "present": "coextends", - "gerund": "coextending", - "past": "coextended", - "past_participle": "coextended" - }, - { - "infinitive": "solarize", - "present": "solarizes", - "gerund": "solarizing", - "past": "solarized", - "past_participle": "solarized" - }, - { - "infinitive": "roughdry", - "present": "roughdries", - "gerund": "roughdrying", - "past": "roughdried", - "past_participle": "roughdried" - }, - { - "infinitive": "etherify", - "present": "etherifies", - "gerund": "etherifying", - "past": "etherified", - "past_participle": "etherified" - }, - { - "infinitive": "respite", - "present": "respites", - "gerund": "respiting", - "past": "respited", - "past_participle": "respited" - }, - { - "infinitive": "love", - "present": "loves", - "gerund": "loving", - "past": "loved", - "past_participle": "loved" - }, - { - "infinitive": "proportion", - "present": "proportions", - "gerund": "proportioning", - "past": "proportioned", - "past_participle": "proportioned" - }, - { - "infinitive": "prefer", - "present": "prefers", - "gerund": "preferring", - "past": "preferred", - "past_participle": "preferred" - }, - { - "infinitive": "bloody", - "present": "bloodies", - "gerund": "bloodying", - "past": "bloodied", - "past_participle": "bloodied" - }, - { - "infinitive": "abash", - "present": "abashes", - "gerund": "abashing", - "past": "abashed", - "past_participle": "abashed" - }, - { - "infinitive": "fake", - "present": "fakes", - "gerund": "faking", - "past": "faked", - "past_participle": "faked" - }, - { - "infinitive": "encyst", - "present": "encysts", - "gerund": "encysting", - "past": "encysted", - "past_participle": "encysted" - }, - { - "infinitive": "unlash", - "present": "unlashes", - "gerund": "unlashing", - "past": "unlashed", - "past_participle": "unlashed" - }, - { - "infinitive": "abase", - "present": "abases", - "gerund": "abasing", - "past": "abased", - "past_participle": "abased" - }, - { - "infinitive": "engrail", - "present": "engrails", - "gerund": "engrailing", - "past": "engrailed", - "past_participle": "engrailed" - }, - { - "infinitive": "dangle", - "present": "dangles", - "gerund": "dangling", - "past": "dangled", - "past_participle": "dangled" - }, - { - "infinitive": "crash-dive", - "present": "crash-dives'", - "gerund": "crash-diving", - "past": "crash-dived", - "past_participle": "crash-dived" - }, - { - "infinitive": "annunciate", - "present": "annunciates", - "gerund": "annunciating", - "past": "annunciated", - "past_participle": "annunciated" - }, - { - "infinitive": "afford", - "present": "affords", - "gerund": "affording", - "past": "afforded", - "past_participle": "afforded" - }, - { - "infinitive": "reprise", - "present": "reprises", - "gerund": "reprising", - "past": "reprised", - "past_participle": "reprised" - }, - { - "infinitive": "refrain", - "present": "refrains", - "gerund": "refraining", - "past": "refrained", - "past_participle": "refrained" - }, - { - "infinitive": "degrade", - "present": "degrades", - "gerund": "degrading", - "past": "degraded", - "past_participle": "degraded" - }, - { - "infinitive": "involve", - "present": "involves", - "gerund": "involving", - "past": "involved", - "past_participle": "involved" - }, - { - "infinitive": "embower", - "present": "embowers", - "gerund": "embowering", - "past": "embowered", - "past_participle": "embowered" - }, - { - "infinitive": "pretend", - "present": "pretends", - "gerund": "pretending", - "past": "pretended", - "past_participle": "pretended" - }, - { - "infinitive": "strain", - "present": "strains", - "gerund": "straining", - "past": "strained", - "past_participle": "strained" - }, - { - "infinitive": "dissimilate", - "present": "dissimilates", - "gerund": "dissimilating", - "past": "dissimilated", - "past_participle": "dissimilated" - }, - { - "infinitive": "dispossess", - "present": "dispossesses", - "gerund": "dispossessing", - "past": "dispossessed", - "past_participle": "dispossessed" - }, - { - "infinitive": "circumambulate", - "present": "circumambulates", - "gerund": "circumambulating", - "past": "circumambulated", - "past_participle": "circumambulated" - }, - { - "infinitive": "reforest", - "present": "reforests", - "gerund": "reforesting", - "past": "reforested", - "past_participle": "reforested" - }, - { - "infinitive": "deschool", - "present": "deschools", - "gerund": "deschooling", - "past": "deschooled", - "past_participle": "deschooled" - }, - { - "infinitive": "parachute", - "present": "parachutes", - "gerund": "parachuting", - "past": "parachuted", - "past_participle": "parachuted" - }, - { - "infinitive": "reestablish", - "present": "reestablishes", - "gerund": "reestablishing", - "past": "reestablished", - "past_participle": "reestablished" - }, - { - "infinitive": "evite", - "present": "evites", - "gerund": "eviting", - "past": "evited", - "past_participle": "evited" - }, - { - "infinitive": "emotionalize", - "present": "emotionalizes", - "gerund": "emotionalizing", - "past": "emotionalized", - "past_participle": "emotionalized" - }, - { - "infinitive": "disprize", - "present": "disprizes", - "gerund": "disprizing", - "past": "disprized", - "past_participle": "disprized" - }, - { - "infinitive": "winter", - "present": "winters", - "gerund": "wintering", - "past": "wintered", - "past_participle": "wintered" - }, - { - "infinitive": "ambush", - "present": "ambushes", - "gerund": "ambushing", - "past": "ambushed", - "past_participle": "ambushed" - }, - { - "infinitive": "crossrefer", - "present": "crossrefers", - "gerund": "crossrefering", - "past": "crossrefered", - "past_participle": "crossrefered" - }, - { - "infinitive": "splodge", - "present": "splodges", - "gerund": "splodging", - "past": "splodged", - "past_participle": "splodged" - }, - { - "infinitive": "cavil", - "present": "cavils", - "gerund": "cavilling", - "past": "cavilled", - "past_participle": "cavilled" - }, - { - "infinitive": "overissue", - "present": "overissues", - "gerund": "overissuing", - "past": "overissued", - "past_participle": "overissued" - }, - { - "infinitive": "spot", - "present": "spots", - "gerund": "spotting", - "past": "spotted", - "past_participle": "spotcheck" - }, - { - "infinitive": "rehabilitate", - "present": "rehabilitates", - "gerund": "rehabilitating", - "past": "rehabilitated", - "past_participle": "rehabilitated" - }, - { - "infinitive": "dropkick", - "present": "dropkicks", - "gerund": "dropkicking", - "past": "dropkicked", - "past_participle": "dropkicked" - }, - { - "infinitive": "outthink", - "present": "outthinks", - "gerund": "outthinking", - "past": "outthought", - "past_participle": "outthought" - }, - { - "infinitive": "date", - "present": "dates", - "gerund": "dating", - "past": "dated", - "past_participle": "dated" - }, - { - "infinitive": "suck", - "present": "sucks", - "gerund": "sucking", - "past": "sucked", - "past_participle": "sucked" - }, - { - "infinitive": "journalize", - "present": "journalizes", - "gerund": "journalizing", - "past": "journalized", - "past_participle": "journalized" - }, - { - "infinitive": "stress", - "present": "stresses", - "gerund": "stressing", - "past": "stressed", - "past_participle": "stressed" - }, - { - "infinitive": "correlate", - "present": "correlates", - "gerund": "correlating", - "past": "correlated", - "past_participle": "correlated" - }, - { - "infinitive": "truck", - "present": "trucks", - "gerund": "trucking", - "past": "trucked", - "past_participle": "trucked" - }, - { - "infinitive": "skirmish", - "present": "skirmishes", - "gerund": "skirmishing", - "past": "skirmished", - "past_participle": "skirmished" - }, - { - "infinitive": "feature", - "present": "features", - "gerund": "featuring", - "past": "featured", - "past_participle": "featured" - }, - { - "infinitive": "course", - "present": "courses", - "gerund": "coursing", - "past": "coursed", - "past_participle": "coursed" - }, - { - "infinitive": "yearn", - "present": "yearns", - "gerund": "yearning", - "past": "yearned", - "past_participle": "yearned" - }, - { - "infinitive": "bastardize", - "present": "bastardizes", - "gerund": "bastardizing", - "past": "bastardized", - "past_participle": "bastardized" - }, - { - "infinitive": "horrify", - "present": "horrifies", - "gerund": "horrifying", - "past": "horrified", - "past_participle": "horrified" - }, - { - "infinitive": "mishear", - "present": "mishears", - "gerund": "mishearing", - "past": "misheard", - "past_participle": "misheard" - }, - { - "infinitive": "bulldoze", - "present": "bulldozes", - "gerund": "bulldozing", - "past": "bulldozed", - "past_participle": "bulldozed" - }, - { - "infinitive": "jig", - "present": "jigs", - "gerund": "jigging", - "past": "jigged", - "past_participle": "jigged" - }, - { - "infinitive": "derive", - "present": "derives", - "gerund": "deriving", - "past": "derived", - "past_participle": "derived" - }, - { - "infinitive": "disconnect", - "present": "disconnects", - "gerund": "disconnecting", - "past": "disconnected", - "past_participle": "disconnected" - }, - { - "infinitive": "solace", - "present": "solaces", - "gerund": "solacing", - "past": "solaced", - "past_participle": "solaced" - }, - { - "infinitive": "stroll", - "present": "strolls", - "gerund": "strolling", - "past": "strolled", - "past_participle": "strolled" - }, - { - "infinitive": "thump", - "present": "thumps", - "gerund": "thumping", - "past": "thumped", - "past_participle": "thumped" - }, - { - "infinitive": "petition", - "present": "petitions", - "gerund": "petitioning", - "past": "petitioned", - "past_participle": "petitioned" - }, - { - "infinitive": "apron", - "present": "aprons", - "gerund": "aproning", - "past": "aproned", - "past_participle": "aproned" - }, - { - "infinitive": "smarten", - "present": "smartens", - "gerund": "smartening", - "past": "smartened", - "past_participle": "smartened" - }, - { - "infinitive": "babysit", - "present": "babysits", - "gerund": "babysitting", - "past": "babysat", - "past_participle": "babysat" - }, - { - "infinitive": "bedevil", - "present": "bedevils", - "gerund": "bedevilling", - "past": "bedevilled", - "past_participle": "bedevilled" - }, - { - "infinitive": "sublimate", - "present": "sublimates", - "gerund": "sublimating", - "past": "sublimated", - "past_participle": "sublimated" - }, - { - "infinitive": "hiccough", - "present": "hiccoughs", - "gerund": "hiccoughing", - "past": "hiccoughed", - "past_participle": "hiccoughed" - }, - { - "infinitive": "plunk", - "present": "plunks", - "gerund": "plunking", - "past": "plunked", - "past_participle": "plunked" - }, - { - "infinitive": "revert", - "present": "reverts", - "gerund": "reverting", - "past": "reverted", - "past_participle": "reverted" - }, - { - "infinitive": "englut", - "present": "engluts", - "gerund": "englutting", - "past": "englutted", - "past_participle": "englutted" - }, - { - "infinitive": "amnesty", - "present": "amnesties", - "gerund": "amnestying", - "past": "amnestied", - "past_participle": "amnestied" - }, - { - "infinitive": "quarter", - "present": "quarters", - "gerund": "quartering", - "past": "quartered", - "past_participle": "quartered" - }, - { - "infinitive": "revere", - "present": "reveres", - "gerund": "revering", - "past": "revered", - "past_participle": "revered" - }, - { - "infinitive": "turtle", - "present": "turtles", - "gerund": "turtling", - "past": "turtled", - "past_participle": "turtled" - }, - { - "infinitive": "concertina", - "present": "concertinas", - "gerund": "concertinaing", - "past": "concertinaed", - "past_participle": "concertinaed" - }, - { - "infinitive": "square", - "present": "squares", - "gerund": "squaring", - "past": "squared", - "past_participle": "squared" - }, - { - "infinitive": "retrieve", - "present": "retrieves", - "gerund": "retrieving", - "past": "retrieved", - "past_participle": "retrieved" - }, - { - "infinitive": "edify", - "present": "edifies", - "gerund": "edifying", - "past": "edified", - "past_participle": "edified" - }, - { - "infinitive": "receipt", - "present": "receipts", - "gerund": "receipting", - "past": "receipted", - "past_participle": "receipted" - }, - { - "infinitive": "fireproof", - "present": "fireproofs", - "gerund": "fireproofing", - "past": "fireproofed", - "past_participle": "fireproofed" - }, - { - "infinitive": "asseverate", - "present": "asseverates", - "gerund": "asseverating", - "past": "asseverated", - "past_participle": "asseverated" - }, - { - "infinitive": "inhere", - "present": "inheres", - "gerund": "inhering", - "past": "inhered", - "past_participle": "inhered" - }, - { - "infinitive": "beetle", - "present": "beetles", - "gerund": "beetling", - "past": "beetled", - "past_participle": "beetled" - }, - { - "infinitive": "propitiate", - "present": "propitiates", - "gerund": "propitiating", - "past": "propitiated", - "past_participle": "propitiated" - }, - { - "infinitive": "troll", - "present": "trolls", - "gerund": "trolling", - "past": "trolled", - "past_participle": "trolled" - }, - { - "infinitive": "jounce", - "present": "jounces", - "gerund": "jouncing", - "past": "jounced", - "past_participle": "jounced" - }, - { - "infinitive": "besprinkle", - "present": "besprinkles", - "gerund": "besprinkling", - "past": "besprinkled", - "past_participle": "besprinkled" - }, - { - "infinitive": "abide", - "present": "abides", - "gerund": "abiding", - "past": "abode", - "past_participle": "abode" - }, - { - "infinitive": "spur", - "present": "spurs", - "gerund": "spurring", - "past": "spurred", - "past_participle": "spurred" - }, - { - "infinitive": "intermix", - "present": "intermixes", - "gerund": "intermixing", - "past": "intermixed", - "past_participle": "intermixed" - }, - { - "infinitive": "intermit", - "present": "intermits", - "gerund": "intermitting", - "past": "intermitted", - "past_participle": "intermitted" - }, - { - "infinitive": "hibernate", - "present": "hibernates", - "gerund": "hibernating", - "past": "hibernated", - "past_participle": "hibernated" - }, - { - "infinitive": "dumfound", - "present": "dumfounds", - "gerund": "dumfounding", - "past": "dumfounded", - "past_participle": "dumfounded" - }, - { - "infinitive": "Braille", - "present": "Brailles", - "gerund": "Brailling", - "past": "Brailled", - "past_participle": "Brailled" - }, - { - "infinitive": "envelop", - "present": "envelops", - "gerund": "enveloping", - "past": "enveloped", - "past_participle": "enveloped" - }, - { - "infinitive": "reshuffle", - "present": "reshuffles", - "gerund": "reshuffling", - "past": "reshuffled", - "past_participle": "reshuffled" - }, - { - "infinitive": "disrespect", - "present": "disrespects", - "gerund": "disrespecting", - "past": "disrespected", - "past_participle": "disrespected" - }, - { - "infinitive": "snooker", - "present": "snookers", - "gerund": "snookering", - "past": "snookered", - "past_participle": "snookered" - }, - { - "infinitive": "jockey", - "present": "jockeys", - "gerund": "jockeying", - "past": "jockeyed", - "past_participle": "jockeyed" - }, - { - "infinitive": "mime", - "present": "mimes", - "gerund": "miming", - "past": "mimed", - "past_participle": "mimed" - }, - { - "infinitive": "remainder", - "present": "remainders", - "gerund": "remaindering", - "past": "remaindered", - "past_participle": "remaindered" - }, - { - "infinitive": "dog-paddle", - "present": "dog-paddles", - "gerund": "dog-paddling", - "past": "dog-paddled", - "past_participle": "dog-paddled" - }, - { - "infinitive": "gaff", - "present": "gaffs", - "gerund": "gaffing", - "past": "gaffed", - "past_participle": "gaffed" - }, - { - "infinitive": "bluepencil", - "present": "bluepencils", - "gerund": "bluepenciling", - "past": "bluepenciled", - "past_participle": "bluepenciled" - }, - { - "infinitive": "chevy", - "present": "chevies", - "gerund": "chevying", - "past": "chevied", - "past_participle": "chevied" - }, - { - "infinitive": "initiate", - "present": "initiates", - "gerund": "initiating", - "past": "initiated", - "past_participle": "initiated" - }, - { - "infinitive": "enkindle", - "present": "enkindles", - "gerund": "enkindling", - "past": "enkindled", - "past_participle": "enkindled" - }, - { - "infinitive": "punt", - "present": "punts", - "gerund": "punting", - "past": "punted", - "past_participle": "punted" - }, - { - "infinitive": "calque", - "present": "calques", - "gerund": "calquing", - "past": "calqued", - "past_participle": "calqued" - }, - { - "infinitive": "solubilize", - "present": "solubilizes", - "gerund": "solubilizing", - "past": "solubilized", - "past_participle": "solubilized" - }, - { - "infinitive": "neglect", - "present": "neglects", - "gerund": "neglecting", - "past": "neglected", - "past_participle": "neglected" - }, - { - "infinitive": "sock", - "present": "socks", - "gerund": "socking", - "past": "socked", - "past_participle": "socked" - }, - { - "infinitive": "unloosen", - "present": "unlooses", - "gerund": "unloosing", - "past": "unloosened", - "past_participle": "unloosened" - }, - { - "infinitive": "potter", - "present": "potters", - "gerund": "pottering", - "past": "pottered", - "past_participle": "pottered" - }, - { - "infinitive": "reopen", - "present": "reopens", - "gerund": "reopening", - "past": "reopened", - "past_participle": "reopened" - }, - { - "infinitive": "sjambok", - "present": "sjamboks", - "gerund": "sjamboking", - "past": "sjamboked", - "past_participle": "sjamboked" - }, - { - "infinitive": "submit", - "present": "submits", - "gerund": "submitting", - "past": "submitted", - "past_participle": "submitted" - }, - { - "infinitive": "croup", - "present": "croups", - "gerund": "crouping", - "past": "crouped", - "past_participle": "crouped" - }, - { - "infinitive": "open", - "present": "opens", - "gerund": "opening", - "past": "opened", - "past_participle": "opened" - }, - { - "infinitive": "summarize", - "present": "summarizes", - "gerund": "summarizing", - "past": "summarized", - "past_participle": "summarized" - }, - { - "infinitive": "languish", - "present": "languishes", - "gerund": "languishing", - "past": "languished", - "past_participle": "languished" - }, - { - "infinitive": "bite", - "present": "bites", - "gerund": "biting", - "past": "bited", - "past_participle": "bitten" - }, - { - "infinitive": "dandify", - "present": "dandifies", - "gerund": "dandifying", - "past": "dandified", - "past_participle": "dandified" - }, - { - "infinitive": "indicate", - "present": "indicates", - "gerund": "indicating", - "past": "indicated", - "past_participle": "indicated" - }, - { - "infinitive": "shiver", - "present": "shivers", - "gerund": "shivering", - "past": "shivered", - "past_participle": "shivered" - }, - { - "infinitive": "draft", - "present": "", - "gerund": "drafting", - "past": "drafted", - "past_participle": "drafted" - }, - { - "infinitive": "dissipate", - "present": "dissipates", - "gerund": "dissipating", - "past": "dissipated", - "past_participle": "dissipated" - }, - { - "infinitive": "convene", - "present": "convenes", - "gerund": "convening", - "past": "convened", - "past_participle": "convened" - }, - { - "infinitive": "cite", - "present": "cites", - "gerund": "citing", - "past": "cited", - "past_participle": "cited" - }, - { - "infinitive": "unmoor", - "present": "unmoors", - "gerund": "unmooring", - "past": "unmoored", - "past_participle": "unmoored" - }, - { - "infinitive": "demonetize", - "present": "demonetizes", - "gerund": "demonetizing", - "past": "demonetized", - "past_participle": "demonetized" - }, - { - "infinitive": "blazon", - "present": "blazons", - "gerund": "blazoning", - "past": "blazoned", - "past_participle": "blazoned" - }, - { - "infinitive": "bump-start", - "present": "bump-starts", - "gerund": "bump-starting", - "past": "bump-started", - "past_participle": "bump-started" - }, - { - "infinitive": "re-act", - "present": "re-acts", - "gerund": "re-acting", - "past": "reacted", - "past_participle": "re-acted" - }, - { - "infinitive": "snatch", - "present": "snatches", - "gerund": "snatching", - "past": "snatched", - "past_participle": "snatched" - }, - { - "infinitive": "indwell", - "present": "indwells", - "gerund": "indwelling", - "past": "indwelt", - "past_participle": "indwelt" - }, - { - "infinitive": "poultice", - "present": "poultices", - "gerund": "poulticing", - "past": "poulticed", - "past_participle": "poulticed" - }, - { - "infinitive": "carbonize", - "present": "carbonizes", - "gerund": "carbonizing", - "past": "carbonized", - "past_participle": "carbonized" - }, - { - "infinitive": "translate", - "present": "translates", - "gerund": "translating", - "past": "translated", - "past_participle": "translated" - }, - { - "infinitive": "cower", - "present": "cowers", - "gerund": "cowering", - "past": "cowered", - "past_participle": "cowered" - }, - { - "infinitive": "stammer", - "present": "stammers", - "gerund": "stammering", - "past": "stammered", - "past_participle": "stammered" - }, - { - "infinitive": "winkle", - "present": "winkles", - "gerund": "winkling", - "past": "winkled", - "past_participle": "winkled" - }, - { - "infinitive": "Africanize", - "present": "Africanizes", - "gerund": "Africanizing", - "past": "Africanized", - "past_participle": "Africanized" - }, - { - "infinitive": "prospect", - "present": "prospects", - "gerund": "prospecting", - "past": "prospected", - "past_participle": "prospected" - }, - { - "infinitive": "smutch", - "present": "smutches", - "gerund": "smutching", - "past": "smutched", - "past_participle": "smutched" - }, - { - "infinitive": "sag", - "present": "sags", - "gerund": "sagging", - "past": "sagged", - "past_participle": "sagged" - }, - { - "infinitive": "necrose", - "present": "necroses", - "gerund": "necrosing", - "past": "necrosed", - "past_participle": "necrosed" - }, - { - "infinitive": "say", - "present": "says", - "gerund": "saying", - "past": "said", - "past_participle": "said" - }, - { - "infinitive": "sap", - "present": "saps", - "gerund": "sapping", - "past": "sapped", - "past_participle": "sapped" - }, - { - "infinitive": "saw", - "present": "saws", - "gerund": "sawing", - "past": "sawed", - "past_participle": "sawn" - }, - { - "infinitive": "perplex", - "present": "perplexes", - "gerund": "perplexing", - "past": "perplexed", - "past_participle": "perplexed" - }, - { - "infinitive": "aspirate", - "present": "aspirates", - "gerund": "aspirating", - "past": "aspirated", - "past_participle": "aspirated" - }, - { - "infinitive": "knead", - "present": "kneads", - "gerund": "kneading", - "past": "kneaded", - "past_participle": "kneaded" - }, - { - "infinitive": "retroact", - "present": "retroacts", - "gerund": "retroacting", - "past": "retroacted", - "past_participle": "retroacted" - }, - { - "infinitive": "note", - "present": "notes", - "gerund": "noting", - "past": "noted", - "past_participle": "noted" - }, - { - "infinitive": "unlearn", - "present": "unlearns", - "gerund": "unlearning", - "past": "unlearnt", - "past_participle": "unlearnt" - }, - { - "infinitive": "maintain", - "present": "maintains", - "gerund": "maintaining", - "past": "maintained", - "past_participle": "maintained" - }, - { - "infinitive": "take", - "present": "takes", - "gerund": "taking", - "past": "took", - "past_participle": "taken" - }, - { - "infinitive": "destroy", - "present": "destroys", - "gerund": "destroying", - "past": "destroyed", - "past_participle": "destroyed" - }, - { - "infinitive": "coincide", - "present": "coincides", - "gerund": "coinciding", - "past": "coincided", - "past_participle": "coincided" - }, - { - "infinitive": "unfix", - "present": "unfixes", - "gerund": "unfixing", - "past": "unfixed", - "past_participle": "unfixed" - }, - { - "infinitive": "buffer", - "present": "buffers", - "gerund": "buffering", - "past": "buffered", - "past_participle": "buffered" - }, - { - "infinitive": "slump", - "present": "slumps", - "gerund": "slumping", - "past": "slumped", - "past_participle": "slumped" - }, - { - "infinitive": "compress", - "present": "compresses", - "gerund": "compressing", - "past": "compressed", - "past_participle": "compressed" - }, - { - "infinitive": "buffet", - "present": "buffets", - "gerund": "buffeting", - "past": "buffeted", - "past_participle": "buffeted" - }, - { - "infinitive": "abut", - "present": "abuts", - "gerund": "abutting", - "past": "abutted", - "past_participle": "abutted" - }, - { - "infinitive": "crochet", - "present": "crochets", - "gerund": "crocheting", - "past": "crocheted", - "past_participle": "crocheted" - }, - { - "infinitive": "putput", - "present": "putputs", - "gerund": "putputting", - "past": "putputted", - "past_participle": "putputted" - }, - { - "infinitive": "hot-press", - "present": "hot-presses", - "gerund": "hot-pressing", - "past": "hot-pressed", - "past_participle": "hot-pressed" - }, - { - "infinitive": "chomp", - "present": "chomps", - "gerund": "chomping", - "past": "chomped", - "past_participle": "chomped" - }, - { - "infinitive": "illuse", - "present": "illuses", - "gerund": "illusing", - "past": "illused", - "past_participle": "illused" - }, - { - "infinitive": "operate", - "present": "operates", - "gerund": "operating", - "past": "operated", - "past_participle": "operated" - }, - { - "infinitive": "enamel", - "present": "enamels", - "gerund": "enamelling", - "past": "enamelled", - "past_participle": "enamelled" - }, - { - "infinitive": "energize", - "present": "energizes", - "gerund": "energizing", - "past": "energized", - "past_participle": "energized" - }, - { - "infinitive": "average", - "present": "averages", - "gerund": "averaging", - "past": "averaged", - "past_participle": "averaged" - }, - { - "infinitive": "drive", - "present": "drives", - "gerund": "driving", - "past": "drove", - "past_participle": "driven" - }, - { - "infinitive": "wind", - "present": "winds", - "gerund": "winding", - "past": "wound", - "past_participle": "wound" - }, - { - "infinitive": "axe", - "present": "axes", - "gerund": "axing", - "past": "axed", - "past_participle": "axed" - }, - { - "infinitive": "salt", - "present": "salts", - "gerund": "salting", - "past": "salted", - "past_participle": "salted" - }, - { - "infinitive": "intoxicate", - "present": "intoxicates", - "gerund": "intoxicating", - "past": "intoxicated", - "past_participle": "intoxicated" - }, - { - "infinitive": "tumefy", - "present": "tumefies", - "gerund": "tumefying", - "past": "tumefied", - "past_participle": "tumefied" - }, - { - "infinitive": "infuriate", - "present": "infuriates", - "gerund": "infuriating", - "past": "infuriated", - "past_participle": "infuriated" - }, - { - "infinitive": "mince", - "present": "minces", - "gerund": "mincing", - "past": "minced", - "past_participle": "minced" - }, - { - "infinitive": "merit", - "present": "merits", - "gerund": "meriting", - "past": "merited", - "past_participle": "merited" - }, - { - "infinitive": "underlet", - "present": "underlets", - "gerund": "underletting", - "past": "underlet", - "past_participle": "underlet" - }, - { - "infinitive": "dialogize", - "present": "dialogizes", - "gerund": "dialogizing", - "past": "dialogized", - "past_participle": "dialogized" - }, - { - "infinitive": "slot", - "present": "slots", - "gerund": "slotting", - "past": "slotted", - "past_participle": "slotted" - }, - { - "infinitive": "outspan", - "present": "outspans", - "gerund": "outspanning", - "past": "outspanned", - "past_participle": "outspanned" - }, - { - "infinitive": "slop", - "present": "slops", - "gerund": "slopping", - "past": "slopped", - "past_participle": "slopped" - }, - { - "infinitive": "transact", - "present": "transacts", - "gerund": "transacting", - "past": "transacted", - "past_participle": "transacted" - }, - { - "infinitive": "cloak", - "present": "cloaks", - "gerund": "cloaking", - "past": "cloaked", - "past_participle": "cloaked" - }, - { - "infinitive": "short", - "present": "shorts", - "gerund": "shorting", - "past": "shorted", - "past_participle": "shorted" - }, - { - "infinitive": "debunk", - "present": "debunks", - "gerund": "debunking", - "past": "debunked", - "past_participle": "debunked" - }, - { - "infinitive": "slog", - "present": "slogs", - "gerund": "slogging", - "past": "slogged", - "past_participle": "slogged" - }, - { - "infinitive": "outrage", - "present": "outrages", - "gerund": "outraging", - "past": "outraged", - "past_participle": "outraged" - }, - { - "infinitive": "robe", - "present": "robes", - "gerund": "robing", - "past": "robed", - "past_participle": "robed" - }, - { - "infinitive": "dispute", - "present": "disputes", - "gerund": "disputing", - "past": "disputed", - "past_participle": "disputed" - }, - { - "infinitive": "clank", - "present": "clanks", - "gerund": "clanking", - "past": "clanked", - "past_participle": "clanked" - }, - { - "infinitive": "digitize", - "present": "digitizes", - "gerund": "digitizing", - "past": "digitized", - "past_participle": "digitized" - }, - { - "infinitive": "clang", - "present": "clangs", - "gerund": "clanging", - "past": "clanged", - "past_participle": "clanged" - }, - { - "infinitive": "submerse", - "present": "submerses", - "gerund": "submersing", - "past": "submersed", - "past_participle": "submersed" - }, - { - "infinitive": "yammer", - "present": "yammers", - "gerund": "yammering", - "past": "yammered", - "past_participle": "yammered" - }, - { - "infinitive": "prime", - "present": "primes", - "gerund": "priming", - "past": "primed", - "past_participle": "primed" - }, - { - "infinitive": "disrate", - "present": "disrates", - "gerund": "disrating", - "past": "disrated", - "past_participle": "disrated" - }, - { - "infinitive": "pimp", - "present": "pimps", - "gerund": "pimping", - "past": "pimped", - "past_participle": "pimped" - }, - { - "infinitive": "assimilate", - "present": "assimilates", - "gerund": "assimilating", - "past": "assimilated", - "past_participle": "assimilated" - }, - { - "infinitive": "brominate", - "present": "brominates", - "gerund": "brominating", - "past": "brominated", - "past_participle": "brominated" - }, - { - "infinitive": "borrow", - "present": "borrows", - "gerund": "borrowing", - "past": "borrowed", - "past_participle": "borrowed" - }, - { - "infinitive": "batfowl", - "present": "batfowls", - "gerund": "batfowling", - "past": "batfowled", - "past_participle": "batfowled" - }, - { - "infinitive": "spancel", - "present": "spancels", - "gerund": "spancelling", - "past": "spancelled", - "past_participle": "spancelled" - }, - { - "infinitive": "primp", - "present": "primps", - "gerund": "primping", - "past": "primped", - "past_participle": "primped" - }, - { - "infinitive": "fortify", - "present": "fortifies", - "gerund": "fortifying", - "past": "fortified", - "past_participle": "fortified" - }, - { - "infinitive": "disparage", - "present": "disparages", - "gerund": "disparaging", - "past": "disparaged", - "past_participle": "disparaged" - }, - { - "infinitive": "vision", - "present": "visions", - "gerund": "visioning", - "past": "visioned", - "past_participle": "visioned" - }, - { - "infinitive": "keyboard", - "present": "keyboards", - "gerund": "keyboarding", - "past": "keyboarded", - "past_participle": "keyboarded" - }, - { - "infinitive": "espy", - "present": "espies", - "gerund": "espying", - "past": "espied", - "past_participle": "espied" - }, - { - "infinitive": "expiate", - "present": "expiates", - "gerund": "expiating", - "past": "expiated", - "past_participle": "expiated" - }, - { - "infinitive": "plummet", - "present": "plummets", - "gerund": "plummeting", - "past": "plummeted", - "past_participle": "plummeted" - }, - { - "infinitive": "interpellate", - "present": "interpellates", - "gerund": "interpellating", - "past": "interpellated", - "past_participle": "interpellated" - }, - { - "infinitive": "diddle", - "present": "diddles", - "gerund": "diddling", - "past": "diddled", - "past_participle": "diddled" - }, - { - "infinitive": "bootleg", - "present": "bootlegs", - "gerund": "bootlegging", - "past": "bootlegged", - "past_participle": "bootlegged" - }, - { - "infinitive": "denizen", - "present": "denizens", - "gerund": "denizening", - "past": "denizened", - "past_participle": "denizened" - }, - { - "infinitive": "heterodyne", - "present": "heterodynes", - "gerund": "heterodyning", - "past": "heterodyned", - "past_participle": "heterodyned" - }, - { - "infinitive": "mope", - "present": "mopes", - "gerund": "moping", - "past": "moped", - "past_participle": "moped" - }, - { - "infinitive": "presage", - "present": "presages", - "gerund": "presaging", - "past": "presaged", - "past_participle": "presaged" - }, - { - "infinitive": "forsake", - "present": "forsakes", - "gerund": "forsaking", - "past": "forsook", - "past_participle": "forsaken" - }, - { - "infinitive": "gutturalize", - "present": "gutturalizes", - "gerund": "gutturalizing", - "past": "gutturalized", - "past_participle": "gutturalized" - }, - { - "infinitive": "distrain", - "present": "distrains", - "gerund": "distraining", - "past": "distrained", - "past_participle": "distrained" - }, - { - "infinitive": "screen", - "present": "screens", - "gerund": "screening", - "past": "screened", - "past_participle": "screened" - }, - { - "infinitive": "dome", - "present": "domes", - "gerund": "doming", - "past": "domed", - "past_participle": "domed" - }, - { - "infinitive": "concentrate", - "present": "concentrates", - "gerund": "concentrating", - "past": "concentrated", - "past_participle": "concentrated" - }, - { - "infinitive": "spare", - "present": "spares", - "gerund": "sparing", - "past": "spared", - "past_participle": "spared" - }, - { - "infinitive": "spark", - "present": "sparks", - "gerund": "sparking", - "past": "sparked", - "past_participle": "sparked" - }, - { - "infinitive": "undermine", - "present": "undermines", - "gerund": "undermining", - "past": "undermined", - "past_participle": "undermined" - }, - { - "infinitive": "quack", - "present": "quacks", - "gerund": "quacking", - "past": "quacked", - "past_participle": "quacked" - }, - { - "infinitive": "oust", - "present": "ousts", - "gerund": "ousting", - "past": "ousted", - "past_participle": "ousted" - }, - { - "infinitive": "fit", - "present": "fits", - "gerund": "fitting", - "past": "fitted", - "past_participle": "fitted" - }, - { - "infinitive": "belie", - "present": "belies", - "gerund": "belying", - "past": "belied", - "past_participle": "belied" - }, - { - "infinitive": "checkrow", - "present": "checkrows", - "gerund": "checkrowing", - "past": "checkrowed", - "past_participle": "checkrowed" - }, - { - "infinitive": "calumniate", - "present": "calumniates", - "gerund": "calumniating", - "past": "calumniated", - "past_participle": "calumniated" - }, - { - "infinitive": "allowance", - "present": "allowances", - "gerund": "allowancing", - "past": "allowanced", - "past_participle": "allowanced" - }, - { - "infinitive": "riddle", - "present": "riddles", - "gerund": "riddling", - "past": "riddled", - "past_participle": "riddled" - }, - { - "infinitive": "twit", - "present": "twits", - "gerund": "twitting", - "past": "twitted", - "past_participle": "twitted" - }, - { - "infinitive": "eternize", - "present": "eternizes", - "gerund": "eternizing", - "past": "eternized", - "past_participle": "eternized" - }, - { - "infinitive": "twin", - "present": "twins", - "gerund": "twinning", - "past": "twinned", - "past_participle": "twinned" - }, - { - "infinitive": "article", - "present": "articles", - "gerund": "articling", - "past": "articled", - "past_participle": "articled" - }, - { - "infinitive": "ante", - "present": "antes", - "gerund": "anteing", - "past": "anteed", - "past_participle": "anteed" - }, - { - "infinitive": "false-card", - "present": "false-cards", - "gerund": "false-carding", - "past": "false-carded", - "past_participle": "false-carded" - }, - { - "infinitive": "twig", - "present": "twigs", - "gerund": "twigging", - "past": "twigged", - "past_participle": "twigged" - }, - { - "infinitive": "boat", - "present": "boats", - "gerund": "boating", - "past": "boated", - "past_participle": "boated" - }, - { - "infinitive": "airmail", - "present": "airmails", - "gerund": "airmailing", - "past": "airmailed", - "past_participle": "airmailed" - }, - { - "infinitive": "stretch", - "present": "stretches", - "gerund": "stretching", - "past": "stretched", - "past_participle": "stretched" - }, - { - "infinitive": "vacation", - "present": "vacations", - "gerund": "vacationing", - "past": "vacationed", - "past_participle": "vacationed" - }, - { - "infinitive": "concede", - "present": "concedes", - "gerund": "conceding", - "past": "conceded", - "past_participle": "conceded" - }, - { - "infinitive": "cupel", - "present": "cupels", - "gerund": "cupeling", - "past": "cupeled", - "past_participle": "cupeled" - }, - { - "infinitive": "luff", - "present": "luffs", - "gerund": "luffing", - "past": "luffed", - "past_participle": "luffed" - }, - { - "infinitive": "enable", - "present": "enables", - "gerund": "enabling", - "past": "enabled", - "past_participle": "enabled" - }, - { - "infinitive": "disaccredit", - "present": "disaccredits", - "gerund": "disaccrediting", - "past": "disaccredited", - "past_participle": "disaccredited" - }, - { - "infinitive": "observe", - "present": "observes", - "gerund": "observing", - "past": "observed", - "past_participle": "observed" - }, - { - "infinitive": "transmogrify", - "present": "transmogrifies", - "gerund": "transmogrifying", - "past": "transmogrified", - "past_participle": "transmogrified" - }, - { - "infinitive": "stalemate", - "present": "stalemates", - "gerund": "stalemating", - "past": "stalemated", - "past_participle": "stalemated" - }, - { - "infinitive": "diffuse", - "present": "diffuses", - "gerund": "diffusing", - "past": "diffused", - "past_participle": "diffused" - }, - { - "infinitive": "infold", - "present": "infolds", - "gerund": "infolding", - "past": "infolded", - "past_participle": "infolded" - }, - { - "infinitive": "maladminister", - "present": "maladministers", - "gerund": "maladministering", - "past": "maladministered", - "past_participle": "maladministered" - }, - { - "infinitive": "trepan", - "present": "trepans", - "gerund": "trepanning", - "past": "trepanned", - "past_participle": "trepanned" - }, - { - "infinitive": "single", - "present": "singles", - "gerund": "singling", - "past": "singled", - "past_participle": "singled" - }, - { - "infinitive": "hypertrophy", - "present": "hypertrophies", - "gerund": "hypertrophying", - "past": "hypertrophied", - "past_participle": "hypertrophied" - }, - { - "infinitive": "coextrude", - "present": "coextrudes", - "gerund": "coextruding", - "past": "coextruded", - "past_participle": "coextruded" - }, - { - "infinitive": "hawse", - "present": "hawses", - "gerund": "hawsing", - "past": "hawsed", - "past_participle": "hawsed" - }, - { - "infinitive": "chamois", - "present": "chamoises", - "gerund": "chamoising", - "past": "chamoised", - "past_participle": "chamoised" - }, - { - "infinitive": "girth", - "present": "girths", - "gerund": "girthing", - "past": "girthed", - "past_participle": "girthed" - }, - { - "infinitive": "discolour", - "present": "discolours", - "gerund": "discolouring", - "past": "discoloured", - "past_participle": "discoloured" - }, - { - "infinitive": "canoe", - "present": "canoes", - "gerund": "canoeing", - "past": "canoed", - "past_participle": "canoed" - }, - { - "infinitive": "purse", - "present": "purses", - "gerund": "pursing", - "past": "pursed", - "past_participle": "pursed" - }, - { - "infinitive": "blat", - "present": "blats", - "gerund": "blatting", - "past": "blatted", - "past_participle": "blatted" - }, - { - "infinitive": "blah", - "present": "blahs", - "gerund": "blahing", - "past": "blahed", - "past_participle": "blahed" - }, - { - "infinitive": "cagmag", - "present": "cagmags", - "gerund": "cagmaging", - "past": "cagmaged", - "past_participle": "cagmaged" - }, - { - "infinitive": "imbricate", - "present": "imbricates", - "gerund": "imbricating", - "past": "imbricated", - "past_participle": "imbricated" - }, - { - "infinitive": "blab", - "present": "blabs", - "gerund": "blabbing", - "past": "blabbed", - "past_participle": "blabbed" - }, - { - "infinitive": "fame", - "present": "fames", - "gerund": "faming", - "past": "famed", - "past_participle": "famed" - }, - { - "infinitive": "gemmate", - "present": "gemmates", - "gerund": "gemmating", - "past": "gemmated", - "past_participle": "gemmated" - }, - { - "infinitive": "reanimate", - "present": "reanimates", - "gerund": "reanimating", - "past": "reanimated", - "past_participle": "reanimated" - }, - { - "infinitive": "excogitate", - "present": "excogitates", - "gerund": "excogitating", - "past": "excogitated", - "past_participle": "excogitated" - }, - { - "infinitive": "furbelow", - "present": "furbelows", - "gerund": "furbelowing", - "past": "furbelowed", - "past_participle": "furbelowed" - }, - { - "infinitive": "geminate", - "present": "geminates", - "gerund": "geminating", - "past": "geminated", - "past_participle": "geminated" - }, - { - "infinitive": "unionize", - "present": "unionizes", - "gerund": "unionizing", - "past": "unionized", - "past_participle": "unionized" - }, - { - "infinitive": "nuzzle", - "present": "nuzzles", - "gerund": "nuzzling", - "past": "nuzzled", - "past_participle": "nuzzled" - }, - { - "infinitive": "defy", - "present": "defies", - "gerund": "defying", - "past": "defied", - "past_participle": "defied" - }, - { - "infinitive": "deflate", - "present": "deflates", - "gerund": "deflating", - "past": "deflated", - "past_participle": "deflated" - }, - { - "infinitive": "bulletproof", - "present": "bulletproofs", - "gerund": "bulletproofing", - "past": "bulletproofed", - "past_participle": "bulletproofed" - }, - { - "infinitive": "barber", - "present": "barbers", - "gerund": "barbering", - "past": "barbered", - "past_participle": "barbered" - }, - { - "infinitive": "disown", - "present": "disowns", - "gerund": "disowning", - "past": "disowned", - "past_participle": "disowned" - }, - { - "infinitive": "microfilm", - "present": "microfilms", - "gerund": "microfilming", - "past": "microfilmed", - "past_participle": "microfilmed" - }, - { - "infinitive": "recapture", - "present": "recaptures", - "gerund": "recapturing", - "past": "recaptured", - "past_participle": "recaptured" - }, - { - "infinitive": "tuft", - "present": "tufts", - "gerund": "tufting", - "past": "tufted", - "past_participle": "tufted" - }, - { - "infinitive": "clobber", - "present": "clobbers", - "gerund": "clobbering", - "past": "clobbered", - "past_participle": "clobbered" - }, - { - "infinitive": "dimension", - "present": "dimensions", - "gerund": "dimensioning", - "past": "dimensioned", - "past_participle": "dimensioned" - }, - { - "infinitive": "summer", - "present": "summers", - "gerund": "summering", - "past": "summered", - "past_participle": "summered" - }, - { - "infinitive": "manifold", - "present": "manifolds", - "gerund": "manifolding", - "past": "manifolded", - "past_participle": "manifolded" - }, - { - "infinitive": "poach", - "present": "poaches", - "gerund": "poaching", - "past": "poached", - "past_participle": "poached" - }, - { - "infinitive": "sceptre", - "present": "sceptres", - "gerund": "sceptring", - "past": "sceptred", - "past_participle": "sceptred" - }, - { - "infinitive": "disconcert", - "present": "disconcerts", - "gerund": "disconcerting", - "past": "disconcerted", - "past_participle": "disconcerted" - }, - { - "infinitive": "slime", - "present": "slimes", - "gerund": "sliming", - "past": "slimed", - "past_participle": "slimed" - }, - { - "infinitive": "rest", - "present": "rests", - "gerund": "resting", - "past": "rested", - "past_participle": "rested" - }, - { - "infinitive": "amalgamate", - "present": "amalgamates", - "gerund": "amalgamating", - "past": "amalgamated", - "past_participle": "amalgamated" - }, - { - "infinitive": "apostatize", - "present": "apostatizes", - "gerund": "apostatizing", - "past": "apostatized", - "past_participle": "apostatized" - }, - { - "infinitive": "disperse", - "present": "disperses", - "gerund": "dispersing", - "past": "dispersed", - "past_participle": "dispersed" - }, - { - "infinitive": "vamp", - "present": "vamps", - "gerund": "vamping", - "past": "vamped", - "past_participle": "vamped" - }, - { - "infinitive": "jitter", - "present": "jitters", - "gerund": "jittering", - "past": "jittered", - "past_participle": "jittered" - }, - { - "infinitive": "parlay", - "present": "parlays", - "gerund": "parlaying", - "past": "parlayed", - "past_participle": "parlayed" - }, - { - "infinitive": "underline", - "present": "underlines", - "gerund": "underlining", - "past": "underlined", - "past_participle": "underlined" - }, - { - "infinitive": "uncap", - "present": "uncaps", - "gerund": "uncapping", - "past": "uncapped", - "past_participle": "uncapped" - }, - { - "infinitive": "forebode", - "present": "forebodes", - "gerund": "foreboding", - "past": "foreboded", - "past_participle": "foreboded" - }, - { - "infinitive": "overthrow", - "present": "overthrows", - "gerund": "overthrowing", - "past": "overthrew", - "past_participle": "overthrown" - }, - { - "infinitive": "overcompensate", - "present": "overcompensates", - "gerund": "overcompensating", - "past": "overcompensated", - "past_participle": "overcompensated" - }, - { - "infinitive": "cerebrate", - "present": "cerebrates", - "gerund": "cerebrating", - "past": "cerebrated", - "past_participle": "cerebrated" - }, - { - "infinitive": "rejoin", - "present": "rejoins", - "gerund": "rejoining", - "past": "rejoined", - "past_participle": "rejoined" - }, - { - "infinitive": "dart", - "present": "darts", - "gerund": "darting", - "past": "darted", - "past_participle": "darted" - }, - { - "infinitive": "dark", - "present": "darks", - "gerund": "darking", - "past": "darked", - "past_participle": "darked" - }, - { - "infinitive": "drydock", - "present": "drydocks", - "gerund": "drydocking", - "past": "drydocked", - "past_participle": "drydocked" - }, - { - "infinitive": "snarl", - "present": "snarls", - "gerund": "snarling", - "past": "snarled", - "past_participle": "snarled" - }, - { - "infinitive": "traffic", - "present": "traffics", - "gerund": "trafficking", - "past": "trafficked", - "past_participle": "trafficked" - }, - { - "infinitive": "bandage", - "present": "bandages", - "gerund": "bandaging", - "past": "bandaged", - "past_participle": "bandaged" - }, - { - "infinitive": "vacuum", - "present": "vacuums", - "gerund": "vacuuming", - "past": "vacuumed", - "past_participle": "vacuumed" - }, - { - "infinitive": "snare", - "present": "snares", - "gerund": "snaring", - "past": "snared", - "past_participle": "snared" - }, - { - "infinitive": "dare", - "present": "dares", - "gerund": "daring", - "past": "dared", - "past_participle": "dared" - }, - { - "infinitive": "clam", - "present": "clams", - "gerund": "clamming", - "past": "clammed", - "past_participle": "clammed" - }, - { - "infinitive": "expunge", - "present": "expunges", - "gerund": "expunging", - "past": "expunged", - "past_participle": "expunged" - }, - { - "infinitive": "clad", - "present": "clads", - "gerund": "cladding", - "past": "clad", - "past_participle": "clad" - }, - { - "infinitive": "shutter", - "present": "shutters", - "gerund": "shuttering", - "past": "shuttered", - "past_participle": "shuttered" - }, - { - "infinitive": "gimme", - "present": "gimmes", - "gerund": "gimming", - "past": "gimmed", - "past_participle": "gimmed" - }, - { - "infinitive": "immolate", - "present": "immolates", - "gerund": "immolating", - "past": "immolated", - "past_participle": "immolated" - }, - { - "infinitive": "clay", - "present": "clays", - "gerund": "claying", - "past": "clayed", - "past_participle": "clayed" - }, - { - "infinitive": "claw", - "present": "claws", - "gerund": "clawing", - "past": "clawed", - "past_participle": "clawed" - }, - { - "infinitive": "inter", - "present": "inters", - "gerund": "interring", - "past": "interred", - "past_participle": "interred" - }, - { - "infinitive": "kennel", - "present": "kennels", - "gerund": "kennelling", - "past": "kennelled", - "past_participle": "kennelled" - }, - { - "infinitive": "clap", - "present": "claps", - "gerund": "clapping", - "past": "clapped", - "past_participle": "clapped" - }, - { - "infinitive": "obstruct", - "present": "obstructs", - "gerund": "obstructing", - "past": "obstructed", - "past_participle": "obstructed" - }, - { - "infinitive": "sulphuret", - "present": "sulphurets", - "gerund": "sulphuretting", - "past": "sulphuretted", - "past_participle": "sulphuretted" - }, - { - "infinitive": "grub", - "present": "grubs", - "gerund": "grubbing", - "past": "grubbed", - "past_participle": "grubbed" - }, - { - "infinitive": "gaggle", - "present": "gaggles", - "gerund": "gaggling", - "past": "gaggled", - "past_participle": "gaggled" - }, - { - "infinitive": "wattle", - "present": "wattles", - "gerund": "wattling", - "past": "wattled", - "past_participle": "wattled" - }, - { - "infinitive": "winch", - "present": "winches", - "gerund": "winching", - "past": "winched", - "past_participle": "winched" - }, - { - "infinitive": "asperse", - "present": "asperses", - "gerund": "aspersing", - "past": "aspersed", - "past_participle": "aspersed" - }, - { - "infinitive": "vivisect", - "present": "vivisects", - "gerund": "vivisecting", - "past": "vivisected", - "past_participle": "vivisected" - }, - { - "infinitive": "surtax", - "present": "surtaxes", - "gerund": "surtaxing", - "past": "surtaxed", - "past_participle": "surtaxed" - }, - { - "infinitive": "divine", - "present": "divines", - "gerund": "divining", - "past": "divined", - "past_participle": "divined" - }, - { - "infinitive": "about-ship", - "present": "about-ships", - "gerund": "about-shipping", - "past": "about-shipped", - "past_participle": "about-shipped" - }, - { - "infinitive": "authenticate", - "present": "authenticates", - "gerund": "authenticating", - "past": "authenticated", - "past_participle": "authenticated" - }, - { - "infinitive": "tote", - "present": "totes", - "gerund": "toting", - "past": "toted", - "past_participle": "toted" - }, - { - "infinitive": "stanchion", - "present": "stanchions", - "gerund": "stanchioning", - "past": "stanchioned", - "past_participle": "stanchioned" - }, - { - "infinitive": "tube", - "present": "tubes", - "gerund": "tubing", - "past": "tubed", - "past_participle": "tubed" - }, - { - "infinitive": "exit", - "present": "exits", - "gerund": "exiting", - "past": "exited", - "past_participle": "exited" - }, - { - "infinitive": "crenellate", - "present": "crenellates", - "gerund": "crenellating", - "past": "crenellated", - "past_participle": "crenellated" - }, - { - "infinitive": "situate", - "present": "situates", - "gerund": "situating", - "past": "situated", - "past_participle": "situated" - }, - { - "infinitive": "outfoot", - "present": "outfoots", - "gerund": "outfooting", - "past": "outfooted", - "past_participle": "outfooted" - }, - { - "infinitive": "squabble", - "present": "squabbles", - "gerund": "squabbling", - "past": "squabbled", - "past_participle": "squabbled" - }, - { - "infinitive": "power", - "present": "powers", - "gerund": "powering", - "past": "powered", - "past_participle": "powered" - }, - { - "infinitive": "intimate", - "present": "intimates", - "gerund": "intimating", - "past": "intimated", - "past_participle": "intimated" - }, - { - "infinitive": "ration", - "present": "rations", - "gerund": "rationing", - "past": "rationed", - "past_participle": "rationed" - }, - { - "infinitive": "poise", - "present": "poises", - "gerund": "poising", - "past": "poised", - "past_participle": "poised" - }, - { - "infinitive": "throwback", - "present": "throwbacks", - "gerund": "throwbacking", - "past": "throwbacked", - "past_participle": "throwbacked" - }, - { - "infinitive": "stone", - "present": "stones", - "gerund": "stoning", - "past": "stoned", - "past_participle": "stoned" - }, - { - "infinitive": "package", - "present": "packages", - "gerund": "packaging", - "past": "packaged", - "past_participle": "packaged" - }, - { - "infinitive": "mediate", - "present": "mediates", - "gerund": "mediating", - "past": "mediated", - "past_participle": "mediated" - }, - { - "infinitive": "fishtail", - "present": "fishtails", - "gerund": "fishtailing", - "past": "fishtailed", - "past_participle": "fishtailed" - }, - { - "infinitive": "municipalize", - "present": "municipalizes", - "gerund": "municipalizing", - "past": "municipalized", - "past_participle": "municipalized" - }, - { - "infinitive": "act", - "present": "acts", - "gerund": "acting", - "past": "acted", - "past_participle": "acted" - }, - { - "infinitive": "mean", - "present": "means", - "gerund": "meaning", - "past": "meant", - "past_participle": "meant" - }, - { - "infinitive": "individualize", - "present": "individualizes", - "gerund": "individualizing", - "past": "individualized", - "past_participle": "individualized" - }, - { - "infinitive": "rebuild", - "present": "rebuilds", - "gerund": "rebuilding", - "past": "rebuilt", - "past_participle": "rebuilt" - }, - { - "infinitive": "impregnate", - "present": "impregnates", - "gerund": "impregnating", - "past": "impregnated", - "past_participle": "impregnated" - }, - { - "infinitive": "yabber", - "present": "yabbers", - "gerund": "yabbering", - "past": "yabbered", - "past_participle": "yabbered" - }, - { - "infinitive": "potentiate", - "present": "potentiates", - "gerund": "potentiating", - "past": "potentiated", - "past_participle": "potentiated" - }, - { - "infinitive": "image", - "present": "images", - "gerund": "imaging", - "past": "imaged", - "past_participle": "imaged" - }, - { - "infinitive": "acuminate", - "present": "acuminates", - "gerund": "acuminating", - "past": "acuminated", - "past_participle": "acuminated" - }, - { - "infinitive": "inculcate", - "present": "inculcates", - "gerund": "inculcating", - "past": "inculcated", - "past_participle": "inculcated" - }, - { - "infinitive": "bodycheck", - "present": "bodychecks", - "gerund": "bodychecking", - "past": "bodychecked", - "past_participle": "bodychecked" - }, - { - "infinitive": "carbonado", - "present": "carbonados", - "gerund": "carbonadoing", - "past": "carbonadoed", - "past_participle": "carbonadoed" - }, - { - "infinitive": "apologize", - "present": "apologizes", - "gerund": "apologizing", - "past": "apologized", - "past_participle": "apologized" - }, - { - "infinitive": "pivot", - "present": "pivots", - "gerund": "pivoting", - "past": "pivoted", - "past_participle": "pivoted" - }, - { - "infinitive": "overtrade", - "present": "overtrades", - "gerund": "overtrading", - "past": "overtraded", - "past_participle": "overtraded" - }, - { - "infinitive": "hew", - "present": "hews", - "gerund": "hewing", - "past": "hewed", - "past_participle": "hewn" - }, - { - "infinitive": "gleam", - "present": "gleams", - "gerund": "gleaming", - "past": "gleamed", - "past_participle": "gleamed" - }, - { - "infinitive": "glean", - "present": "gleans", - "gerund": "gleaning", - "past": "gleaned", - "past_participle": "gleaned" - }, - { - "infinitive": "hex", - "present": "hexes", - "gerund": "hexing", - "past": "hexed", - "past_participle": "hexed" - }, - { - "infinitive": "sken", - "present": "skens", - "gerund": "skenning", - "past": "skenned", - "past_participle": "skenned" - }, - { - "infinitive": "mollify", - "present": "mollifies", - "gerund": "mollifying", - "past": "mollified", - "past_participle": "mollified" - }, - { - "infinitive": "bubble", - "present": "bubbles", - "gerund": "bubbling", - "past": "bubbled", - "past_participle": "bubbled" - }, - { - "infinitive": "complete", - "present": "completes", - "gerund": "completing", - "past": "completed", - "past_participle": "completed" - }, - { - "infinitive": "outcrop", - "present": "outcrops", - "gerund": "outcropping", - "past": "outcropped", - "past_participle": "outcropped" - }, - { - "infinitive": "defrost", - "present": "defrosts", - "gerund": "defrosting", - "past": "defrosted", - "past_participle": "defrosted" - }, - { - "infinitive": "kotow", - "present": "kotows", - "gerund": "kotowing", - "past": "kotowed", - "past_participle": "kotowed" - }, - { - "infinitive": "pasteurize", - "present": "pasteurizes", - "gerund": "pasteurizing", - "past": "pasteurized", - "past_participle": "pasteurized" - }, - { - "infinitive": "whinny", - "present": "whinnies", - "gerund": "whinnying", - "past": "whinnied", - "past_participle": "whinnied" - }, - { - "infinitive": "amplify", - "present": "amplifies", - "gerund": "amplifying", - "past": "amplified", - "past_participle": "amplified" - }, - { - "infinitive": "pull", - "present": "pulls", - "gerund": "pulling", - "past": "pulled", - "past_participle": "pulled" - }, - { - "infinitive": "rush", - "present": "rushes", - "gerund": "rushing", - "past": "rushed", - "past_participle": "rushed" - }, - { - "infinitive": "darken", - "present": "darkens", - "gerund": "darkening", - "past": "darkened", - "past_participle": "darkened" - }, - { - "infinitive": "rage", - "present": "rages", - "gerund": "raging", - "past": "raged", - "past_participle": "raged" - }, - { - "infinitive": "pule", - "present": "pules", - "gerund": "puling", - "past": "puled", - "past_participle": "puled" - }, - { - "infinitive": "attenuate", - "present": "attenuates", - "gerund": "attenuating", - "past": "attenuated", - "past_participle": "attenuated" - }, - { - "infinitive": "flirt", - "present": "flirts", - "gerund": "flirting", - "past": "flirted", - "past_participle": "flirted" - }, - { - "infinitive": "impute", - "present": "imputes", - "gerund": "imputing", - "past": "imputed", - "past_participle": "imputed" - }, - { - "infinitive": "dirty", - "present": "dirties", - "gerund": "dirtying", - "past": "dirtied", - "past_participle": "dirtied" - }, - { - "infinitive": "reprimand", - "present": "reprimands", - "gerund": "reprimanding", - "past": "reprimanded", - "past_participle": "reprimanded" - }, - { - "infinitive": "suppurate", - "present": "suppurates", - "gerund": "suppurating", - "past": "suppurated", - "past_participle": "suppurated" - }, - { - "infinitive": "agree", - "present": "agrees", - "gerund": "agreeing", - "past": "agreed", - "past_participle": "agreed" - }, - { - "infinitive": "rust", - "present": "rusts", - "gerund": "rusting", - "past": "rusted", - "past_participle": "rusted" - }, - { - "infinitive": "naturalize", - "present": "naturalizes", - "gerund": "naturalizing", - "past": "naturalized", - "past_participle": "naturalized" - }, - { - "infinitive": "migrate", - "present": "migrates", - "gerund": "migrating", - "past": "migrated", - "past_participle": "migrated" - }, - { - "infinitive": "impugn", - "present": "impugns", - "gerund": "impugning", - "past": "impugned", - "past_participle": "impugned" - }, - { - "infinitive": "creak", - "present": "creaks", - "gerund": "creaking", - "past": "creaked", - "past_participle": "creaked" - }, - { - "infinitive": "jargon", - "present": "jargons", - "gerund": "jargoning", - "past": "jargoned", - "past_participle": "jargoned" - }, - { - "infinitive": "reddle", - "present": "reddles", - "gerund": "reddling", - "past": "reddled", - "past_participle": "reddled" - }, - { - "infinitive": "dawn", - "present": "dawns", - "gerund": "dawning", - "past": "dawned", - "past_participle": "dawned" - }, - { - "infinitive": "enplane", - "present": "enplanes", - "gerund": "enplaning", - "past": "enplaned", - "past_participle": "enplaned" - }, - { - "infinitive": "cream", - "present": "creams", - "gerund": "creaming", - "past": "creamed", - "past_participle": "creamed" - }, - { - "infinitive": "exasperate", - "present": "exasperates", - "gerund": "exasperating", - "past": "exasperated", - "past_participle": "exasperated" - }, - { - "infinitive": "rumple", - "present": "rumples", - "gerund": "rumpling", - "past": "rumpled", - "past_participle": "rumpled" - }, - { - "infinitive": "substantivize", - "present": "substantivizes", - "gerund": "substantivizing", - "past": "substantivized", - "past_participle": "substantivized" - }, - { - "infinitive": "abolish", - "present": "abolishes", - "gerund": "abolishing", - "past": "abolished", - "past_participle": "abolished" - }, - { - "infinitive": "whip", - "present": "whips", - "gerund": "whipping", - "past": "whipped", - "past_participle": "whipped" - }, - { - "infinitive": "leister", - "present": "leisters", - "gerund": "leistering", - "past": "leistered", - "past_participle": "leistered" - }, - { - "infinitive": "indemnify", - "present": "indemnifies", - "gerund": "indemnifying", - "past": "indemnified", - "past_participle": "indemnified" - }, - { - "infinitive": "annex", - "present": "annexes", - "gerund": "annexing", - "past": "annexed", - "past_participle": "annexed" - }, - { - "infinitive": "objurgate", - "present": "objurgates", - "gerund": "objurgating", - "past": "objurgated", - "past_participle": "objurgated" - }, - { - "infinitive": "slant", - "present": "slants", - "gerund": "slanting", - "past": "slanted", - "past_participle": "slanted" - }, - { - "infinitive": "ankylose", - "present": "ankyloses", - "gerund": "ankylosing", - "past": "ankylosed", - "past_participle": "ankylosed" - }, - { - "infinitive": "snitch", - "present": "snitches", - "gerund": "snitching", - "past": "snitched", - "past_participle": "snitched" - }, - { - "infinitive": "resell", - "present": "resells", - "gerund": "reselling", - "past": "resold", - "past_participle": "resold" - }, - { - "infinitive": "slang", - "present": "slangs", - "gerund": "slanging", - "past": "slanged", - "past_participle": "slanged" - }, - { - "infinitive": "explant", - "present": "explants", - "gerund": "explanting", - "past": "explanted", - "past_participle": "explanted" - }, - { - "infinitive": "neuter", - "present": "neuters", - "gerund": "neutering", - "past": "neutered", - "past_participle": "neutered" - }, - { - "infinitive": "groom", - "present": "grooms", - "gerund": "grooming", - "past": "groomed", - "past_participle": "groomed" - }, - { - "infinitive": "mask", - "present": "masks", - "gerund": "masking", - "past": "masked", - "past_participle": "masked" - }, - { - "infinitive": "mash", - "present": "mashes", - "gerund": "mashing", - "past": "mashed", - "past_participle": "mashed" - }, - { - "infinitive": "mimic", - "present": "mimics", - "gerund": "mimicking", - "past": "mimicked", - "past_participle": "mimicked" - }, - { - "infinitive": "mast", - "present": "masts", - "gerund": "masting", - "past": "masted", - "past_participle": "masted" - }, - { - "infinitive": "mass", - "present": "masses", - "gerund": "massing", - "past": "massed", - "past_participle": "massed" - }, - { - "infinitive": "quantify", - "present": "quantifies", - "gerund": "quantifying", - "past": "quantified", - "past_participle": "quantified" - }, - { - "infinitive": "repone", - "present": "repones", - "gerund": "reponing", - "past": "reponed", - "past_participle": "reponed" - }, - { - "infinitive": "retch", - "present": "retches", - "gerund": "retching", - "past": "retched", - "past_participle": "retched" - }, - { - "infinitive": "metastasize", - "present": "metastasizes", - "gerund": "metastasizing", - "past": "metastasized", - "past_participle": "metastasized" - }, - { - "infinitive": "consider", - "present": "considers", - "gerund": "considering", - "past": "considered", - "past_participle": "considered" - }, - { - "infinitive": "degas", - "present": "degasses", - "gerund": "degassing", - "past": "degassed", - "past_participle": "degassed" - }, - { - "infinitive": "beware", - "present": "bewares", - "gerund": "bewaring", - "past": "bewared", - "past_participle": "bewared" - }, - { - "infinitive": "neigh", - "present": "neighs", - "gerund": "neighing", - "past": "neighed", - "past_participle": "neighed" - }, - { - "infinitive": "importune", - "present": "importunes", - "gerund": "importuning", - "past": "importuned", - "past_participle": "importuned" - }, - { - "infinitive": "detruncate", - "present": "detruncates", - "gerund": "detruncating", - "past": "detruncated", - "past_participle": "detruncated" - }, - { - "infinitive": "territorialize", - "present": "territorializes", - "gerund": "territorializing", - "past": "territorialized", - "past_participle": "territorialized" - }, - { - "infinitive": "misfile", - "present": "misfiles", - "gerund": "misfiling", - "past": "misfiled", - "past_participle": "misfiled" - }, - { - "infinitive": "tinsel", - "present": "tinsels", - "gerund": "tinselling", - "past": "tinselled", - "past_participle": "tinselled" - }, - { - "infinitive": "Hellenize", - "present": "Hellenizes", - "gerund": "Hellenizing", - "past": "Hellenized", - "past_participle": "Hellenized" - }, - { - "infinitive": "overexpose", - "present": "overexposes", - "gerund": "overexposing", - "past": "overexposed", - "past_participle": "overexposed" - }, - { - "infinitive": "taway", - "present": "taways", - "gerund": "tawaying", - "past": "tawayed", - "past_participle": "tawayed" - }, - { - "infinitive": "redpencil", - "present": "redpencils", - "gerund": "redpencilling", - "past": "redpencilled", - "past_participle": "redpencilled" - }, - { - "infinitive": "fine-draw", - "present": "fine-draws", - "gerund": "fine-drawing", - "past": "fine-drew", - "past_participle": "fine-drawn" - }, - { - "infinitive": "smile", - "present": "smiles", - "gerund": "smiling", - "past": "smiled", - "past_participle": "smiled" - }, - { - "infinitive": "tatter", - "present": "tatters", - "gerund": "tattering", - "past": "tattered", - "past_participle": "tattered" - }, - { - "infinitive": "bechance", - "present": "bechances", - "gerund": "bechancing", - "past": "bechanced", - "past_participle": "bechanced" - }, - { - "infinitive": "blockade", - "present": "blockades", - "gerund": "blockading", - "past": "blockaded", - "past_participle": "blockaded" - }, - { - "infinitive": "amerce", - "present": "amerces", - "gerund": "amercing", - "past": "amerced", - "past_participle": "amerced" - }, - { - "infinitive": "condition", - "present": "conditions", - "gerund": "conditioning", - "past": "conditioned", - "past_participle": "conditioned" - }, - { - "infinitive": "cable", - "present": "cables", - "gerund": "cabling", - "past": "cabled", - "past_participle": "cabled" - }, - { - "infinitive": "recommit", - "present": "recommits", - "gerund": "recommitting", - "past": "recommitted", - "past_participle": "recommitted" - }, - { - "infinitive": "heist", - "present": "heists", - "gerund": "heisting", - "past": "heisted", - "past_participle": "heisted" - }, - { - "infinitive": "laud", - "present": "lauds", - "gerund": "lauding", - "past": "lauded", - "past_participle": "lauded" - }, - { - "infinitive": "sand", - "present": "sands", - "gerund": "sanding", - "past": "sanded", - "past_participle": "sanded" - }, - { - "infinitive": "adjust", - "present": "adjusts", - "gerund": "adjusting", - "past": "adjusted", - "past_participle": "adjusted" - }, - { - "infinitive": "exsiccate", - "present": "exsiccates", - "gerund": "exsiccating", - "past": "exsiccated", - "past_participle": "exsiccated" - }, - { - "infinitive": "harry", - "present": "harries", - "gerund": "harrying", - "past": "harried", - "past_participle": "harried" - }, - { - "infinitive": "conceptualize", - "present": "conceptualizes", - "gerund": "conceptualizing", - "past": "conceptualized", - "past_participle": "conceptualized" - }, - { - "infinitive": "enclasp", - "present": "enclasps", - "gerund": "enclasping", - "past": "enclasped", - "past_participle": "enclasped" - }, - { - "infinitive": "overpersuade", - "present": "overpersuades", - "gerund": "overpersuading", - "past": "overpersuaded", - "past_participle": "overpersuaded" - }, - { - "infinitive": "overspill", - "present": "overspills", - "gerund": "overspilling", - "past": "overspilt", - "past_participle": "overspilt" - }, - { - "infinitive": "decern", - "present": "decerns", - "gerund": "decerning", - "past": "decerned", - "past_participle": "decerned" - }, - { - "infinitive": "pash", - "present": "pashes", - "gerund": "pashing", - "past": "pashed", - "past_participle": "pashed" - }, - { - "infinitive": "sync", - "present": "syncs", - "gerund": "syncing", - "past": "synced", - "past_participle": "synced" - }, - { - "infinitive": "tongue-lash", - "present": "tongue-lashes", - "gerund": "tongue-lashing", - "past": "tongue-lashed", - "past_participle": "tongue-lashed" - }, - { - "infinitive": "past", - "present": "pasts", - "gerund": "pasting", - "past": "pasted", - "past_participle": "pasted" - }, - { - "infinitive": "burnish", - "present": "burnishes", - "gerund": "burnishing", - "past": "burnished", - "past_participle": "burnished" - }, - { - "infinitive": "pass", - "present": "passes", - "gerund": "passing", - "past": "passed", - "past_participle": "passed" - }, - { - "infinitive": "canvass", - "present": "canvasses", - "gerund": "canvassing", - "past": "canvassed", - "past_participle": "canvassed" - }, - { - "infinitive": "recalculate", - "present": "recalculates", - "gerund": "recalculating", - "past": "recalculated", - "past_participle": "recalculated" - }, - { - "infinitive": "quicken", - "present": "quickens", - "gerund": "quickening", - "past": "quickened", - "past_participle": "quickened" - }, - { - "infinitive": "scupper", - "present": "scuppers", - "gerund": "scuppering", - "past": "scuppered", - "past_participle": "scuppered" - }, - { - "infinitive": "clock", - "present": "clocks", - "gerund": "clocking", - "past": "clocked", - "past_participle": "clocked" - }, - { - "infinitive": "declass", - "present": "declasses", - "gerund": "declassing", - "past": "declassed", - "past_participle": "declassed" - }, - { - "infinitive": "forestall", - "present": "forestalls", - "gerund": "forestalling", - "past": "forestalled", - "past_participle": "forestalled" - }, - { - "infinitive": "section", - "present": "sections", - "gerund": "sectioning", - "past": "sectioned", - "past_participle": "sectioned" - }, - { - "infinitive": "whiff", - "present": "whiffs", - "gerund": "whiffing", - "past": "whiffed", - "past_participle": "whiffed" - }, - { - "infinitive": "nurse", - "present": "nurses", - "gerund": "nursing", - "past": "nursed", - "past_participle": "nursed" - }, - { - "infinitive": "perforate", - "present": "perforates", - "gerund": "perforating", - "past": "perforated", - "past_participle": "perforated" - }, - { - "infinitive": "LHlike", - "present": "LHlikes", - "gerund": "LHliking", - "past": "LHliked", - "past_participle": "LHliked" - }, - { - "infinitive": "contrast", - "present": "contrasts", - "gerund": "contrasting", - "past": "contrasted", - "past_participle": "contrasted" - }, - { - "infinitive": "fuller", - "present": "fulls", - "gerund": "fulling", - "past": "fulled", - "past_participle": "fulled" - }, - { - "infinitive": "hash", - "present": "hashes", - "gerund": "hashing", - "past": "hashed", - "past_participle": "hashed" - }, - { - "infinitive": "empower", - "present": "empowers", - "gerund": "empowering", - "past": "empowered", - "past_participle": "empowered" - }, - { - "infinitive": "compose", - "present": "composes", - "gerund": "composing", - "past": "composed", - "past_participle": "composed" - }, - { - "infinitive": "hasp", - "present": "hasps", - "gerund": "hasping", - "past": "hasped", - "past_participle": "hasped" - }, - { - "infinitive": "overawe", - "present": "overawes", - "gerund": "overawing", - "past": "overawed", - "past_participle": "overawed" - }, - { - "infinitive": "razz", - "present": "razzes", - "gerund": "razzing", - "past": "razzed", - "past_participle": "razzed" - }, - { - "infinitive": "schuss", - "present": "schusses", - "gerund": "schussing", - "past": "schussed", - "past_participle": "schussed" - }, - { - "infinitive": "experience", - "present": "experiences", - "gerund": "experiencing", - "past": "experienced", - "past_participle": "experienced" - }, - { - "infinitive": "photoengrave", - "present": "photoengraves", - "gerund": "photoengraving", - "past": "photoengraved", - "past_participle": "photoengraved" - }, - { - "infinitive": "entoil", - "present": "entoils", - "gerund": "entoiling", - "past": "entoiled", - "past_participle": "entoiled" - }, - { - "infinitive": "skyrocket", - "present": "skyrockets", - "gerund": "skyrocketing", - "past": "skyrocketed", - "past_participle": "skyrocketed" - }, - { - "infinitive": "pick", - "present": "picks", - "gerund": "picking", - "past": "picked", - "past_participle": "picked" - }, - { - "infinitive": "luck", - "present": "lucks", - "gerund": "lucking", - "past": "lucked", - "past_participle": "lucked" - }, - { - "infinitive": "raze", - "present": "razes", - "gerund": "razing", - "past": "razed", - "past_participle": "razed" - }, - { - "infinitive": "smuggle", - "present": "smuggles", - "gerund": "smuggling", - "past": "smuggled", - "past_participle": "smuggled" - }, - { - "infinitive": "re-present", - "present": "re-presents", - "gerund": "re-presenting", - "past": "represented", - "past_participle": "re-presented" - }, - { - "infinitive": "discommend", - "present": "discommends", - "gerund": "discommending", - "past": "discommended", - "past_participle": "discommended" - }, - { - "infinitive": "depart", - "present": "departs", - "gerund": "departing", - "past": "departed", - "past_participle": "departed" - }, - { - "infinitive": "vie", - "present": "vies", - "gerund": "vying", - "past": "vied", - "past_participle": "vied" - }, - { - "infinitive": "uprise", - "present": "uprises", - "gerund": "uprising", - "past": "uprose", - "past_participle": "uprisen" - }, - { - "infinitive": "regiment", - "present": "regiments", - "gerund": "regimenting", - "past": "regimented", - "past_participle": "regimented" - }, - { - "infinitive": "estimate", - "present": "estimates", - "gerund": "estimating", - "past": "estimated", - "past_participle": "estimated" - }, - { - "infinitive": "select", - "present": "selects", - "gerund": "selecting", - "past": "selected", - "past_participle": "selected" - }, - { - "infinitive": "subculture", - "present": "subcultures", - "gerund": "subculturing", - "past": "subcultured", - "past_participle": "subcultured" - }, - { - "infinitive": "palliate", - "present": "palliates", - "gerund": "palliating", - "past": "palliated", - "past_participle": "palliated" - }, - { - "infinitive": "decribe", - "present": "decribes", - "gerund": "decribing", - "past": "decribed", - "past_participle": "decribed" - }, - { - "infinitive": "enliven", - "present": "enlivens", - "gerund": "enlivening", - "past": "enlivened", - "past_participle": "enlivened" - }, - { - "infinitive": "indispose", - "present": "indisposes", - "gerund": "indisposing", - "past": "indisposed", - "past_participle": "indisposed" - }, - { - "infinitive": "maltreat", - "present": "maltreats", - "gerund": "maltreating", - "past": "maltreated", - "past_participle": "maltreated" - }, - { - "infinitive": "implore", - "present": "implores", - "gerund": "imploring", - "past": "implored", - "past_participle": "implored" - }, - { - "infinitive": "automate", - "present": "automates", - "gerund": "automating", - "past": "automated", - "past_participle": "automated" - }, - { - "infinitive": "adjoin", - "present": "adjoins", - "gerund": "adjoining", - "past": "adjoined", - "past_participle": "adjoined" - }, - { - "infinitive": "teem", - "present": "teems", - "gerund": "teeming", - "past": "teemed", - "past_participle": "teemed" - }, - { - "infinitive": "depersonalize", - "present": "depersonalizes", - "gerund": "depersonalizing", - "past": "depersonalized", - "past_participle": "depersonalized" - }, - { - "infinitive": "company", - "present": "companies", - "gerund": "companying", - "past": "companied", - "past_participle": "companied" - }, - { - "infinitive": "nitrify", - "present": "nitrifies", - "gerund": "nitrifying", - "past": "nitrified", - "past_participle": "nitrified" - }, - { - "infinitive": "pressure-cook", - "present": "pressure-cooks", - "gerund": "pressure-cooking", - "past": "pressure-cooked", - "past_participle": "pressure-cooked" - }, - { - "infinitive": "doom", - "present": "dooms", - "gerund": "dooming", - "past": "doomed", - "past_participle": "doomed" - }, - { - "infinitive": "unhinge", - "present": "unhinges", - "gerund": "unhinging", - "past": "unhinged", - "past_participle": "unhinged" - }, - { - "infinitive": "kibosh", - "present": "kiboshes", - "gerund": "kiboshing", - "past": "kiboshed", - "past_participle": "kiboshed" - }, - { - "infinitive": "fleece", - "present": "fleeces", - "gerund": "fleecing", - "past": "fleeced", - "past_participle": "fleeced" - }, - { - "infinitive": "apportion", - "present": "apportions", - "gerund": "apportioning", - "past": "apportioned", - "past_participle": "apportioned" - }, - { - "infinitive": "malt", - "present": "malts", - "gerund": "malting", - "past": "malted", - "past_participle": "malted" - }, - { - "infinitive": "chisel", - "present": "chisels", - "gerund": "chiselling", - "past": "chiselled", - "past_participle": "chiselled" - }, - { - "infinitive": "learn", - "present": "learns", - "gerund": "learning", - "past": "learnt", - "past_participle": "learnt" - }, - { - "infinitive": "grope", - "present": "gropes", - "gerund": "groping", - "past": "groped", - "past_participle": "groped" - }, - { - "infinitive": "changeover", - "present": "changeovers", - "gerund": "changeovering", - "past": "changeovered", - "past_participle": "changeovered" - }, - { - "infinitive": "scramble", - "present": "scrambles", - "gerund": "scrambling", - "past": "scrambled", - "past_participle": "scrambled" - }, - { - "infinitive": "desquamate", - "present": "desquamates", - "gerund": "desquamating", - "past": "desquamated", - "past_participle": "desquamated" - }, - { - "infinitive": "interflow", - "present": "interflows", - "gerund": "interflowing", - "past": "interflowed", - "past_participle": "interflowed" - }, - { - "infinitive": "lixiviate", - "present": "lixiviates", - "gerund": "lixiviating", - "past": "lixiviated", - "past_participle": "lixiviated" - }, - { - "infinitive": "gallop", - "present": "gallops", - "gerund": "galloping", - "past": "galloped", - "past_participle": "galloped" - }, - { - "infinitive": "scab", - "present": "scabs", - "gerund": "scabbing", - "past": "scabbed", - "past_participle": "scabbed" - }, - { - "infinitive": "dillydally", - "present": "dillydallies", - "gerund": "dillydallying", - "past": "dillydallied", - "past_participle": "dillydallied" - }, - { - "infinitive": "accept", - "present": "accepts", - "gerund": "accepting", - "past": "accepted", - "past_participle": "accepted" - }, - { - "infinitive": "pubcrawl", - "present": "pubcrawls", - "gerund": "pubcrawling", - "past": "pubcrawled", - "past_participle": "pubcrawled" - }, - { - "infinitive": "unzip", - "present": "unzips", - "gerund": "unzipping", - "past": "unzipped", - "past_participle": "unzipped" - }, - { - "infinitive": "ethicize", - "present": "ethicizes", - "gerund": "ethicizing", - "past": "ethicized", - "past_participle": "ethicized" - }, - { - "infinitive": "spore", - "present": "spores", - "gerund": "sporing", - "past": "spored", - "past_participle": "spored" - }, - { - "infinitive": "sense", - "present": "senses", - "gerund": "sensing", - "past": "sensed", - "past_participle": "sensed" - }, - { - "infinitive": "scar", - "present": "scars", - "gerund": "scarring", - "past": "scarred", - "past_participle": "scarred" - }, - { - "infinitive": "dress", - "present": "dresses", - "gerund": "dressing", - "past": "dressed", - "past_participle": "dressed" - }, - { - "infinitive": "scat", - "present": "scats", - "gerund": "scatting", - "past": "scatted", - "past_participle": "scatted" - }, - { - "infinitive": "condemn", - "present": "condemns", - "gerund": "condemning", - "past": "condemned", - "past_participle": "condemned" - }, - { - "infinitive": "dazzle", - "present": "dazzles", - "gerund": "dazzling", - "past": "dazzled", - "past_participle": "dazzled" - }, - { - "infinitive": "treadle", - "present": "treadles", - "gerund": "treadling", - "past": "treadled", - "past_participle": "treadled" - }, - { - "infinitive": "peptonize", - "present": "peptonizes", - "gerund": "peptonizing", - "past": "peptonized", - "past_participle": "peptonized" - }, - { - "infinitive": "enlarge", - "present": "enlarges", - "gerund": "enlarging", - "past": "enlarged", - "past_participle": "enlarged" - }, - { - "infinitive": "topdress", - "present": "topdresses", - "gerund": "topdressing", - "past": "topdressed", - "past_participle": "topdressed" - }, - { - "infinitive": "cling", - "present": "clings", - "gerund": "clinging", - "past": "clung", - "past_participle": "clung" - }, - { - "infinitive": "clink", - "present": "clinks", - "gerund": "clinking", - "past": "clinked", - "past_participle": "clinked" - }, - { - "infinitive": "plant", - "present": "plants", - "gerund": "planting", - "past": "planted", - "past_participle": "planted" - }, - { - "infinitive": "anoint", - "present": "anoints", - "gerund": "anointing", - "past": "anointed", - "past_participle": "anointed" - }, - { - "infinitive": "brachiate", - "present": "brachiates", - "gerund": "brachiating", - "past": "brachiated", - "past_participle": "brachiated" - }, - { - "infinitive": "domesticize", - "present": "domesticizes", - "gerund": "domesticizing", - "past": "domesticized", - "past_participle": "domesticized" - }, - { - "infinitive": "sympathize", - "present": "sympathizes", - "gerund": "sympathizing", - "past": "sympathized", - "past_participle": "sympathized" - }, - { - "infinitive": "polymerize", - "present": "polymerizes", - "gerund": "polymerizing", - "past": "polymerized", - "past_participle": "polymerized" - }, - { - "infinitive": "volatilize", - "present": "volatilizes", - "gerund": "volatilizing", - "past": "volatilized", - "past_participle": "volatilized" - }, - { - "infinitive": "plane", - "present": "planes", - "gerund": "planing", - "past": "planed", - "past_participle": "planed" - }, - { - "infinitive": "waver", - "present": "wavers", - "gerund": "wavering", - "past": "wavered", - "past_participle": "wavered" - }, - { - "infinitive": "underseal", - "present": "underseals", - "gerund": "undersealing", - "past": "undersealed", - "past_participle": "undersealed" - }, - { - "infinitive": "develop", - "present": "develops", - "gerund": "developing", - "past": "developed", - "past_participle": "developed" - }, - { - "infinitive": "flutter", - "present": "flutters", - "gerund": "fluttering", - "past": "fluttered", - "past_participle": "fluttered" - }, - { - "infinitive": "misapprehend", - "present": "misapprehends", - "gerund": "misapprehending", - "past": "misapprehended", - "past_participle": "misapprehended" - }, - { - "infinitive": "refuse", - "present": "refuses", - "gerund": "refusing", - "past": "refused", - "past_participle": "refused" - }, - { - "infinitive": "resemble", - "present": "resembles", - "gerund": "resembling", - "past": "resembled", - "past_participle": "resembled" - }, - { - "infinitive": "syphon", - "present": "syphons", - "gerund": "syphoning", - "past": "syphoned", - "past_participle": "syphoned" - }, - { - "infinitive": "register", - "present": "registers", - "gerund": "registering", - "past": "registered", - "past_participle": "registered" - }, - { - "infinitive": "pucker", - "present": "puckers", - "gerund": "puckering", - "past": "puckered", - "past_participle": "puckered" - }, - { - "infinitive": "denude", - "present": "denudes", - "gerund": "denuding", - "past": "denuded", - "past_participle": "denuded" - }, - { - "infinitive": "wrench", - "present": "wrenches", - "gerund": "wrenching", - "past": "wrenched", - "past_participle": "wrenched" - }, - { - "infinitive": "trellis", - "present": "trellises", - "gerund": "trellising", - "past": "trellised", - "past_participle": "trellised" - }, - { - "infinitive": "pant", - "present": "pants", - "gerund": "panting", - "past": "panted", - "past_participle": "panted" - }, - { - "infinitive": "parboil", - "present": "parboils", - "gerund": "parboiling", - "past": "parboiled", - "past_participle": "parboiled" - }, - { - "infinitive": "televise", - "present": "televises", - "gerund": "televising", - "past": "televised", - "past_participle": "televised" - }, - { - "infinitive": "trichinize", - "present": "trichinizes", - "gerund": "trichinizing", - "past": "trichinized", - "past_participle": "trichinized" - }, - { - "infinitive": "trade", - "present": "trades", - "gerund": "trading", - "past": "traded", - "past_participle": "traded" - }, - { - "infinitive": "wester", - "present": "westers", - "gerund": "westering", - "past": "westered", - "past_participle": "westered" - }, - { - "infinitive": "paper", - "present": "papers", - "gerund": "papering", - "past": "papered", - "past_participle": "papered" - }, - { - "infinitive": "brim", - "present": "brims", - "gerund": "brimming", - "past": "brimmed", - "past_participle": "brimmed" - }, - { - "infinitive": "kibble", - "present": "kibbles", - "gerund": "kibbling", - "past": "kibbled", - "past_participle": "kibbled" - }, - { - "infinitive": "wetnurse", - "present": "wetnurses", - "gerund": "wetnursing", - "past": "wetnursed", - "past_participle": "wetnursed" - }, - { - "infinitive": "mamaguy", - "present": "mamaguys", - "gerund": "mamaguying", - "past": "mamaguyed", - "past_participle": "mamaguyed" - }, - { - "infinitive": "commeasure", - "present": "commeasures", - "gerund": "commeasuring", - "past": "commeasured", - "past_participle": "commeasured" - }, - { - "infinitive": "coarsen", - "present": "coarsens", - "gerund": "coarsening", - "past": "coarsened", - "past_participle": "coarsened" - }, - { - "infinitive": "bypass", - "present": "bypasses", - "gerund": "bypassing", - "past": "bypassed", - "past_participle": "bypassed" - }, - { - "infinitive": "Judaize", - "present": "Judaizes", - "gerund": "Judaizing", - "past": "Judaized", - "past_participle": "Judaized" - }, - { - "infinitive": "sauce", - "present": "sauces", - "gerund": "saucing", - "past": "sauced", - "past_participle": "sauced" - }, - { - "infinitive": "ally", - "present": "allies", - "gerund": "allying", - "past": "allied", - "past_participle": "allied" - }, - { - "infinitive": "wry", - "present": "wries", - "gerund": "wrying", - "past": "wried", - "past_participle": "wried" - }, - { - "infinitive": "propose", - "present": "proposes", - "gerund": "proposing", - "past": "proposed", - "past_participle": "proposed" - }, - { - "infinitive": "consign", - "present": "consigns", - "gerund": "consigning", - "past": "consigned", - "past_participle": "consigned" - }, - { - "infinitive": "respire", - "present": "respires", - "gerund": "respiring", - "past": "respired", - "past_participle": "respired" - }, - { - "infinitive": "imperil", - "present": "imperils", - "gerund": "imperiling", - "past": "imperiled", - "past_participle": "imperiled" - }, - { - "infinitive": "skipper", - "present": "skippers", - "gerund": "skippering", - "past": "skippered", - "past_participle": "skippered" - }, - { - "infinitive": "misuse", - "present": "misuses", - "gerund": "misusing", - "past": "misused", - "past_participle": "misused" - }, - { - "infinitive": "speculate", - "present": "speculates", - "gerund": "speculating", - "past": "speculated", - "past_participle": "speculated" - }, - { - "infinitive": "harrow", - "present": "harrows", - "gerund": "harrowing", - "past": "harrowed", - "past_participle": "harrowed" - }, - { - "infinitive": "resurface", - "present": "resurfaces", - "gerund": "resurfacing", - "past": "resurfaced", - "past_participle": "resurfaced" - }, - { - "infinitive": "founder", - "present": "founds", - "gerund": "founding", - "past": "founded", - "past_participle": "founded" - }, - { - "infinitive": "mump", - "present": "mumps", - "gerund": "mumping", - "past": "mumped", - "past_participle": "mumped" - }, - { - "infinitive": "reduce", - "present": "reduces", - "gerund": "reducing", - "past": "reduced", - "past_participle": "reduced" - }, - { - "infinitive": "police", - "present": "polices", - "gerund": "policing", - "past": "policed", - "past_participle": "policed" - }, - { - "infinitive": "unhair", - "present": "unhairs", - "gerund": "unhairing", - "past": "unhaired", - "past_participle": "unhaired" - }, - { - "infinitive": "scribe", - "present": "scribes", - "gerund": "scribing", - "past": "scribed", - "past_participle": "scribed" - }, - { - "infinitive": "terrify", - "present": "terrifies", - "gerund": "terrifying", - "past": "terrified", - "past_participle": "terrified" - }, - { - "infinitive": "research", - "present": "researches", - "gerund": "researching", - "past": "researched", - "past_participle": "researched" - }, - { - "infinitive": "vowelize", - "present": "vowelizes", - "gerund": "vowelizing", - "past": "vowelized", - "past_participle": "vowelized" - }, - { - "infinitive": "Gothicize", - "present": "Gothicizes", - "gerund": "Gothicizing", - "past": "Gothicized", - "past_participle": "Gothicized" - }, - { - "infinitive": "salute", - "present": "salutes", - "gerund": "saluting", - "past": "saluted", - "past_participle": "saluted" - }, - { - "infinitive": "desulphurize", - "present": "desulphurizes", - "gerund": "desulphurizing", - "past": "desulphurized", - "past_participle": "desulphurized" - }, - { - "infinitive": "unbuckle", - "present": "unbuckles", - "gerund": "unbuckling", - "past": "unbuckled", - "past_participle": "unbuckled" - }, - { - "infinitive": "disfigure", - "present": "disfigures", - "gerund": "disfiguring", - "past": "disfigured", - "past_participle": "disfigured" - }, - { - "infinitive": "palter", - "present": "palters", - "gerund": "paltering", - "past": "paltered", - "past_participle": "paltered" - }, - { - "infinitive": "pickaxe", - "present": "pickaxes", - "gerund": "pickaxing", - "past": "pickaxed", - "past_participle": "pickaxed" - }, - { - "infinitive": "murmur", - "present": "murmurs", - "gerund": "murmuring", - "past": "murmured", - "past_participle": "murmured" - }, - { - "infinitive": "imagine", - "present": "imagines", - "gerund": "imagining", - "past": "imagined", - "past_participle": "imagined" - }, - { - "infinitive": "dehorn", - "present": "dehorns", - "gerund": "dehorning", - "past": "dehorned", - "past_participle": "dehorned" - }, - { - "infinitive": "reproach", - "present": "reproaches", - "gerund": "reproaching", - "past": "reproached", - "past_participle": "reproached" - }, - { - "infinitive": "lucubrate", - "present": "lucubrates", - "gerund": "lucubrating", - "past": "lucubrated", - "past_participle": "lucubrated" - }, - { - "infinitive": "fadge", - "present": "fadges", - "gerund": "fadging", - "past": "fadged", - "past_participle": "fadged" - }, - { - "infinitive": "sicken", - "present": "sickens", - "gerund": "sickening", - "past": "sickened", - "past_participle": "sickened" - }, - { - "infinitive": "bumper", - "present": "bumpers", - "gerund": "bumpering", - "past": "bumpered", - "past_participle": "bumpered" - }, - { - "infinitive": "constringe", - "present": "constringes", - "gerund": "constringing", - "past": "constringed", - "past_participle": "constringed" - }, - { - "infinitive": "clump", - "present": "clumps", - "gerund": "clumping", - "past": "clumped", - "past_participle": "clumped" - }, - { - "infinitive": "adduct", - "present": "adducts", - "gerund": "adducting", - "past": "adducted", - "past_participle": "adducted" - }, - { - "infinitive": "major", - "present": "majors", - "gerund": "majoring", - "past": "majored", - "past_participle": "majored" - }, - { - "infinitive": "besteaded", - "present": "besteads", - "gerund": "besteading", - "past": "besteadeded", - "past_participle": "besteadeded" - }, - { - "infinitive": "purport", - "present": "purports", - "gerund": "purporting", - "past": "purported", - "past_participle": "purported" - }, - { - "infinitive": "mercurialize", - "present": "mercurializes", - "gerund": "mercurializing", - "past": "mercurialized", - "past_participle": "mercurialized" - }, - { - "infinitive": "number", - "present": "numbers", - "gerund": "numbering", - "past": "numbered", - "past_participle": "numbered" - }, - { - "infinitive": "adduce", - "present": "adduces", - "gerund": "adducing", - "past": "adduced", - "past_participle": "adduced" - }, - { - "infinitive": "sequester", - "present": "sequesters", - "gerund": "sequestering", - "past": "sequestered", - "past_participle": "sequestered" - }, - { - "infinitive": "tango", - "present": "tangoes", - "gerund": "tangoing", - "past": "tangoed", - "past_participle": "tangoed" - }, - { - "infinitive": "glitter", - "present": "glitters", - "gerund": "glittering", - "past": "glittered", - "past_participle": "glittered" - }, - { - "infinitive": "guess", - "present": "guesses", - "gerund": "guessing", - "past": "guessed", - "past_participle": "guessed" - }, - { - "infinitive": "fuller", - "present": "fullers", - "gerund": "fullering", - "past": "fullered", - "past_participle": "fullered" - }, - { - "infinitive": "guest", - "present": "guests", - "gerund": "guesting", - "past": "guested", - "past_participle": "guested" - }, - { - "infinitive": "jet", - "present": "jets", - "gerund": "jetting", - "past": "jetted", - "past_participle": "jetted" - }, - { - "infinitive": "swipe", - "present": "swipes", - "gerund": "swiping", - "past": "swiped", - "past_participle": "swiped" - }, - { - "infinitive": "saint", - "present": "saints", - "gerund": "sainting", - "past": "sainted", - "past_participle": "sainted" - }, - { - "infinitive": "aver", - "present": "avers", - "gerund": "averring", - "past": "averred", - "past_participle": "averred" - }, - { - "infinitive": "unbolt", - "present": "unbolts", - "gerund": "unbolting", - "past": "unbolted", - "past_participle": "unbolted" - }, - { - "infinitive": "gnash", - "present": "gnashes", - "gerund": "gnashing", - "past": "gnashed", - "past_participle": "gnashed" - }, - { - "infinitive": "discombobulate", - "present": "discombobulates", - "gerund": "discombobulating", - "past": "discombobulated", - "past_participle": "discombobulated" - }, - { - "infinitive": "embattle", - "present": "embattles", - "gerund": "embattling", - "past": "embattled", - "past_participle": "embattled" - }, - { - "infinitive": "decarburize", - "present": "decarburizes", - "gerund": "decarburizing", - "past": "decarburized", - "past_participle": "decarburized" - }, - { - "infinitive": "ingurgitate", - "present": "ingurgitates", - "gerund": "ingurgitating", - "past": "ingurgitated", - "past_participle": "ingurgitated" - }, - { - "infinitive": "consult", - "present": "consults", - "gerund": "consulting", - "past": "consulted", - "past_participle": "consulted" - }, - { - "infinitive": "stifle", - "present": "stifles", - "gerund": "stifling", - "past": "stifled", - "past_participle": "stifled" - }, - { - "infinitive": "grace", - "present": "graces", - "gerund": "gracing", - "past": "graced", - "past_participle": "graced" - }, - { - "infinitive": "truckle", - "present": "truckles", - "gerund": "truckling", - "past": "truckled", - "past_participle": "truckled" - }, - { - "infinitive": "frock", - "present": "frocks", - "gerund": "frocking", - "past": "frocked", - "past_participle": "frocked" - }, - { - "infinitive": "double-declutch", - "present": "double-declutches", - "gerund": "double-declutching", - "past": "double-declutched", - "past_participle": "double-declutched" - }, - { - "infinitive": "postdate", - "present": "postdates", - "gerund": "postdating", - "past": "postdated", - "past_participle": "postdated" - }, - { - "infinitive": "defect", - "present": "defects", - "gerund": "defecting", - "past": "defected", - "past_participle": "defected" - }, - { - "infinitive": "waft", - "present": "wafts", - "gerund": "wafting", - "past": "wafted", - "past_participle": "wafted" - }, - { - "infinitive": "unsnarl", - "present": "unsnarls", - "gerund": "unsnarling", - "past": "unsnarled", - "past_participle": "unsnarled" - }, - { - "infinitive": "caress", - "present": "caresses", - "gerund": "caressing", - "past": "caressed", - "past_participle": "caressed" - }, - { - "infinitive": "conjugate", - "present": "conjugates", - "gerund": "conjugating", - "past": "conjugated", - "past_participle": "conjugated" - }, - { - "infinitive": "waff", - "present": "waffs", - "gerund": "waffing", - "past": "waffed", - "past_participle": "waffed" - }, - { - "infinitive": "collapse", - "present": "collapses", - "gerund": "collapsing", - "past": "collapsed", - "past_participle": "collapsed" - }, - { - "infinitive": "sell", - "present": "sells", - "gerund": "selling", - "past": "sold", - "past_participle": "sold" - }, - { - "infinitive": "shrivel", - "present": "shrivels", - "gerund": "shrivelling", - "past": "shrivelled", - "past_participle": "shrivelled" - }, - { - "infinitive": "ratiocinate", - "present": "ratiocinates", - "gerund": "ratiocinating", - "past": "ratiocinated", - "past_participle": "ratiocinated" - }, - { - "infinitive": "tarnish", - "present": "tarnishes", - "gerund": "tarnishing", - "past": "tarnished", - "past_participle": "tarnished" - }, - { - "infinitive": "jeopardize", - "present": "jeopardizes", - "gerund": "jeopardizing", - "past": "jeopardized", - "past_participle": "jeopardized" - }, - { - "infinitive": "trowel", - "present": "trowels", - "gerund": "trowelling", - "past": "trowelled", - "past_participle": "trowelled" - }, - { - "infinitive": "distemper", - "present": "distempers", - "gerund": "distempering", - "past": "distempered", - "past_participle": "distempered" - }, - { - "infinitive": "kraal", - "present": "kraals", - "gerund": "kraaling", - "past": "kraaled", - "past_participle": "kraaled" - }, - { - "infinitive": "justle", - "present": "justles", - "gerund": "justling", - "past": "justled", - "past_participle": "justled" - }, - { - "infinitive": "brace", - "present": "braces", - "gerund": "bracing", - "past": "braced", - "past_participle": "braced" - }, - { - "infinitive": "coff", - "present": "coffs", - "gerund": "coffing", - "past": "coffed", - "past_participle": "coffed" - }, - { - "infinitive": "pother", - "present": "pothers", - "gerund": "pothering", - "past": "pothered", - "past_participle": "pothered" - }, - { - "infinitive": "play", - "present": "plays", - "gerund": "playing", - "past": "played", - "past_participle": "played" - }, - { - "infinitive": "homologate", - "present": "homologates", - "gerund": "homologating", - "past": "homologated", - "past_participle": "homologated" - }, - { - "infinitive": "hurtle", - "present": "hurtles", - "gerund": "hurtling", - "past": "hurtled", - "past_participle": "hurtled" - }, - { - "infinitive": "die-cast", - "present": "die-casts", - "gerund": "die-casting", - "past": "die-cast", - "past_participle": "die-cast" - }, - { - "infinitive": "cinematograph", - "present": "cinematographs", - "gerund": "cinematographing", - "past": "cinematographed", - "past_participle": "cinematographed" - }, - { - "infinitive": "yawn", - "present": "yawns", - "gerund": "yawning", - "past": "yawned", - "past_participle": "yawned" - }, - { - "infinitive": "yawl", - "present": "yawls", - "gerund": "yawling", - "past": "yawled", - "past_participle": "yawled" - }, - { - "infinitive": "plan", - "present": "plans", - "gerund": "planning", - "past": "planned", - "past_participle": "planned" - }, - { - "infinitive": "wive", - "present": "wives", - "gerund": "wiving", - "past": "wived", - "past_participle": "wived" - }, - { - "infinitive": "mythologize", - "present": "mythologizes", - "gerund": "mythologizing", - "past": "mythologized", - "past_participle": "mythologized" - }, - { - "infinitive": "oyster", - "present": "oysters", - "gerund": "oystering", - "past": "oystered", - "past_participle": "oystered" - }, - { - "infinitive": "enigmatize", - "present": "enigmatizes", - "gerund": "enigmatizing", - "past": "enigmatized", - "past_participle": "enigmatized" - }, - { - "infinitive": "double-stop", - "present": "double-stops", - "gerund": "double-stopping", - "past": "double-stopped", - "past_participle": "double-stopped" - }, - { - "infinitive": "flite", - "present": "flites", - "gerund": "fliting", - "past": "flited", - "past_participle": "flited" - }, - { - "infinitive": "covet", - "present": "covets", - "gerund": "coveting", - "past": "coveted", - "past_participle": "coveted" - }, - { - "infinitive": "cover", - "present": "covers", - "gerund": "covering", - "past": "covered", - "past_participle": "covered" - }, - { - "infinitive": "institutionalize", - "present": "institutionalizes", - "gerund": "institutionalizing", - "past": "institutionalized", - "past_participle": "institutionalized" - }, - { - "infinitive": "dramatize", - "present": "dramatizes", - "gerund": "dramatizing", - "past": "dramatized", - "past_participle": "dramatized" - }, - { - "infinitive": "re-proof", - "present": "re-proofs", - "gerund": "reproofing", - "past": "reproofed", - "past_participle": "reproofed" - }, - { - "infinitive": "administrate", - "present": "administrates", - "gerund": "administrating", - "past": "administrated", - "past_participle": "administrated" - }, - { - "infinitive": "barrel", - "present": "barrels", - "gerund": "barrelling", - "past": "barrelled", - "past_participle": "barrelled" - }, - { - "infinitive": "reheat", - "present": "reheats", - "gerund": "reheating", - "past": "reheated", - "past_participle": "reheated" - }, - { - "infinitive": "bulletin", - "present": "bulletins", - "gerund": "bulletining", - "past": "bulletined", - "past_participle": "bulletined" - }, - { - "infinitive": "despise", - "present": "despises", - "gerund": "despising", - "past": "despised", - "past_participle": "despised" - }, - { - "infinitive": "ovulate", - "present": "ovulates", - "gerund": "ovulating", - "past": "ovulated", - "past_participle": "ovulated" - }, - { - "infinitive": "agonize", - "present": "agonizes", - "gerund": "agonizing", - "past": "agonized", - "past_participle": "agonized" - }, - { - "infinitive": "affix", - "present": "affixes", - "gerund": "affixing", - "past": "affixed", - "past_participle": "affixed" - }, - { - "infinitive": "misdate", - "present": "misdates", - "gerund": "misdating", - "past": "misdated", - "past_participle": "misdated" - }, - { - "infinitive": "desolate", - "present": "desolates", - "gerund": "desolating", - "past": "desolated", - "past_participle": "desolated" - }, - { - "infinitive": "freight", - "present": "freights", - "gerund": "freighting", - "past": "freighted", - "past_participle": "freighted" - }, - { - "infinitive": "impact", - "present": "impacts", - "gerund": "impacting", - "past": "impacted", - "past_participle": "impacted" - }, - { - "infinitive": "shouldst", - "present": "shouldsts", - "gerund": "shouldsting", - "past": "shouldsted", - "past_participle": "shouldsted" - }, - { - "infinitive": "surcease", - "present": "surceases", - "gerund": "surceasing", - "past": "surceased", - "past_participle": "surceased" - }, - { - "infinitive": "factor", - "present": "factors", - "gerund": "factoring", - "past": "factored", - "past_participle": "factored" - }, - { - "infinitive": "foreordain", - "present": "foreordains", - "gerund": "foreordaining", - "past": "foreordained", - "past_participle": "foreordained" - }, - { - "infinitive": "scuff", - "present": "scuffs", - "gerund": "scuffing", - "past": "scuffed", - "past_participle": "scuffed" - }, - { - "infinitive": "de-horn", - "present": "de-horns", - "gerund": "de-horning", - "past": "dehorned", - "past_participle": "de-horned" - }, - { - "infinitive": "resent", - "present": "resents", - "gerund": "resenting", - "past": "resented", - "past_participle": "resented" - }, - { - "infinitive": "remedy", - "present": "remedies", - "gerund": "remedying", - "past": "remedied", - "past_participle": "remedied" - }, - { - "infinitive": "twill", - "present": "twills", - "gerund": "twilling", - "past": "twilled", - "past_participle": "twilled" - }, - { - "infinitive": "granulate", - "present": "granulates", - "gerund": "granulating", - "past": "granulated", - "past_participle": "granulated" - }, - { - "infinitive": "compass", - "present": "compasses", - "gerund": "compassing", - "past": "compassed", - "past_participle": "compassed" - }, - { - "infinitive": "ulcerate", - "present": "ulcerates", - "gerund": "ulcerating", - "past": "ulcerated", - "past_participle": "ulcerated" - }, - { - "infinitive": "transubstantiate", - "present": "transubstantiates", - "gerund": "transubstantiating", - "past": "transubstantiated", - "past_participle": "transubstantiated" - }, - { - "infinitive": "sleeve", - "present": "sleeves", - "gerund": "sleeving", - "past": "sleeved", - "past_participle": "sleeved" - }, - { - "infinitive": "transship", - "present": "transships", - "gerund": "transshipping", - "past": "transshipped", - "past_participle": "transshipped" - }, - { - "infinitive": "cry", - "present": "cries", - "gerund": "crying", - "past": "cried", - "past_participle": "cried" - }, - { - "infinitive": "proclaim", - "present": "proclaims", - "gerund": "proclaiming", - "past": "proclaimed", - "past_participle": "proclaimed" - }, - { - "infinitive": "cease", - "present": "ceases", - "gerund": "ceasing", - "past": "ceased", - "past_participle": "ceased" - }, - { - "infinitive": "obscure", - "present": "obscures", - "gerund": "obscuring", - "past": "obscured", - "past_participle": "obscured" - }, - { - "infinitive": "rivet", - "present": "rivets", - "gerund": "riveting", - "past": "riveted", - "past_participle": "riveted" - }, - { - "infinitive": "weathercock", - "present": "weathercocks", - "gerund": "weathercocking", - "past": "weathercocked", - "past_participle": "weathercocked" - }, - { - "infinitive": "sew", - "present": "sews", - "gerund": "sewing", - "past": "sewed", - "past_participle": "sewn" - }, - { - "infinitive": "set", - "present": "sets", - "gerund": "setting", - "past": "set", - "past_participle": "set" - }, - { - "infinitive": "unpick", - "present": "unpicks", - "gerund": "unpicking", - "past": "unpicked", - "past_participle": "unpicked" - }, - { - "infinitive": "overwhelm", - "present": "overwhelms", - "gerund": "overwhelming", - "past": "overwhelmed", - "past_participle": "overwhelmed" - }, - { - "infinitive": "jade", - "present": "jades", - "gerund": "jading", - "past": "jaded", - "past_participle": "jaded" - }, - { - "infinitive": "nibble", - "present": "nibbles", - "gerund": "nibbling", - "past": "nibbled", - "past_participle": "nibbled" - }, - { - "infinitive": "sex", - "present": "sexes", - "gerund": "sexing", - "past": "sexed", - "past_participle": "sexed" - }, - { - "infinitive": "see", - "present": "sees", - "gerund": "seeing", - "past": "saw", - "past_participle": "seen" - }, - { - "infinitive": "backfire", - "present": "backfires", - "gerund": "backfiring", - "past": "backfired", - "past_participle": "backfired" - }, - { - "infinitive": "winterfeed", - "present": "winterfeeds", - "gerund": "winterfeeding", - "past": "winterfed", - "past_participle": "winterfed" - }, - { - "infinitive": "contour", - "present": "contours", - "gerund": "contouring", - "past": "contoured", - "past_participle": "contoured" - }, - { - "infinitive": "electioneer", - "present": "electioneers", - "gerund": "electioneering", - "past": "electioneered", - "past_participle": "electioneered" - }, - { - "infinitive": "shower", - "present": "showers", - "gerund": "showering", - "past": "showered", - "past_participle": "showered" - }, - { - "infinitive": "outbreed", - "present": "outbreeds", - "gerund": "outbreeding", - "past": "outbred", - "past_participle": "outbred" - }, - { - "infinitive": "phosphatize", - "present": "phosphatizes", - "gerund": "phosphatizing", - "past": "phosphatized", - "past_participle": "phosphatized" - }, - { - "infinitive": "deactivate", - "present": "deactivates", - "gerund": "deactivating", - "past": "deactivated", - "past_participle": "deactivated" - }, - { - "infinitive": "overindulge", - "present": "overindulges", - "gerund": "overindulging", - "past": "overindulged", - "past_participle": "overindulged" - }, - { - "infinitive": "jerrybuild", - "present": "jerrybuilds", - "gerund": "jerrybuilding", - "past": "jerrybuilt", - "past_participle": "jerrybuilt" - }, - { - "infinitive": "schematize", - "present": "schematizes", - "gerund": "schematizing", - "past": "schematized", - "past_participle": "schematized" - }, - { - "infinitive": "knap", - "present": "knaps", - "gerund": "knapping", - "past": "knapped", - "past_participle": "knapped" - }, - { - "infinitive": "motorize", - "present": "motorizes", - "gerund": "motorizing", - "past": "motorized", - "past_participle": "motorized" - }, - { - "infinitive": "beatify", - "present": "beatifies", - "gerund": "beatifying", - "past": "beatified", - "past_participle": "beatified" - }, - { - "infinitive": "kneel", - "present": "kneels", - "gerund": "kneeling", - "past": "knelt", - "past_participle": "knelt" - }, - { - "infinitive": "oxidize", - "present": "oxidizes", - "gerund": "oxidizing", - "past": "oxidized", - "past_participle": "oxidized" - }, - { - "infinitive": "mildew", - "present": "mildews", - "gerund": "mildewing", - "past": "mildewed", - "past_participle": "mildewed" - }, - { - "infinitive": "superimpose", - "present": "superimposes", - "gerund": "superimposing", - "past": "superimposed", - "past_participle": "superimposed" - }, - { - "infinitive": "loiter", - "present": "loiters", - "gerund": "loitering", - "past": "loitered", - "past_participle": "loitered" - }, - { - "infinitive": "disallow", - "present": "disallows", - "gerund": "disallowing", - "past": "disallowed", - "past_participle": "disallowed" - }, - { - "infinitive": "samba", - "present": "sambas", - "gerund": "sambaing", - "past": "sambaed", - "past_participle": "sambaed" - }, - { - "infinitive": "deracinate", - "present": "deracinates", - "gerund": "deracinating", - "past": "deracinated", - "past_participle": "deracinated" - }, - { - "infinitive": "milden", - "present": "mildens", - "gerund": "mildening", - "past": "mildened", - "past_participle": "mildened" - }, - { - "infinitive": "last", - "present": "lasts", - "gerund": "lasting", - "past": "lasted", - "past_participle": "lasted" - }, - { - "infinitive": "exscind", - "present": "exscinds", - "gerund": "exscinding", - "past": "exscinded", - "past_participle": "exscinded" - }, - { - "infinitive": "lase", - "present": "lases", - "gerund": "lasing", - "past": "lased", - "past_participle": "lased" - }, - { - "infinitive": "lash", - "present": "lashes", - "gerund": "lashing", - "past": "lashed", - "past_participle": "lashed" - }, - { - "infinitive": "approve", - "present": "approves", - "gerund": "approving", - "past": "approved", - "past_participle": "approved" - }, - { - "infinitive": "vesiculate", - "present": "vesiculates", - "gerund": "vesiculating", - "past": "vesiculated", - "past_participle": "vesiculated" - }, - { - "infinitive": "load", - "present": "loads", - "gerund": "loading", - "past": "loaded", - "past_participle": "loaded" - }, - { - "infinitive": "loaf", - "present": "loafs", - "gerund": "loafing", - "past": "loafed", - "past_participle": "loafed" - }, - { - "infinitive": "dizen", - "present": "dizens", - "gerund": "dizening", - "past": "dizened", - "past_participle": "dizened" - }, - { - "infinitive": "bell", - "present": "bells", - "gerund": "belling", - "past": "belled", - "past_participle": "belled" - }, - { - "infinitive": "loam", - "present": "loams", - "gerund": "loaming", - "past": "loamed", - "past_participle": "loamed" - }, - { - "infinitive": "loan", - "present": "loans", - "gerund": "loaning", - "past": "loaned", - "past_participle": "loaned" - }, - { - "infinitive": "gold-plate", - "present": "gold-plates", - "gerund": "gold-plating", - "past": "gold-plated", - "past_participle": "gold-plated" - }, - { - "infinitive": "scallop", - "present": "scallops", - "gerund": "scalloping", - "past": "scalloped", - "past_participle": "scalloped" - }, - { - "infinitive": "church", - "present": "churches", - "gerund": "churching", - "past": "churched", - "past_participle": "churched" - }, - { - "infinitive": "underlay", - "present": "underlays", - "gerund": "underlaying", - "past": "underlaid", - "past_participle": "underlaid" - }, - { - "infinitive": "entail", - "present": "entails", - "gerund": "entailing", - "past": "entailed", - "past_participle": "entailed" - }, - { - "infinitive": "devil", - "present": "devils", - "gerund": "deviling", - "past": "deviled", - "past_participle": "deviled" - }, - { - "infinitive": "seep", - "present": "seeps", - "gerund": "seeping", - "past": "seeped", - "past_participle": "seeped" - }, - { - "infinitive": "rattle", - "present": "rattles", - "gerund": "rattling", - "past": "rattled", - "past_participle": "rattled" - }, - { - "infinitive": "Mace", - "present": "Maces", - "gerund": "Maceing", - "past": "Maced", - "past_participle": "Maced" - }, - { - "infinitive": "veneer", - "present": "veneers", - "gerund": "veneering", - "past": "veneered", - "past_participle": "veneered" - }, - { - "infinitive": "firm", - "present": "firms", - "gerund": "firming", - "past": "firmed", - "past_participle": "firmed" - }, - { - "infinitive": "champion", - "present": "champions", - "gerund": "championing", - "past": "championed", - "past_participle": "championed" - }, - { - "infinitive": "fire", - "present": "fires", - "gerund": "firing", - "past": "fired", - "past_participle": "fired" - }, - { - "infinitive": "infect", - "present": "infects", - "gerund": "infecting", - "past": "infected", - "past_participle": "infected" - }, - { - "infinitive": "upstart", - "present": "upstarts", - "gerund": "upstarting", - "past": "upstarted", - "past_participle": "upstarted" - }, - { - "infinitive": "remark", - "present": "remarks", - "gerund": "remarking", - "past": "remarked", - "past_participle": "remarked" - }, - { - "infinitive": "reassert", - "present": "reasserts", - "gerund": "reasserting", - "past": "reasserted", - "past_participle": "reasserted" - }, - { - "infinitive": "fund", - "present": "funds", - "gerund": "funding", - "past": "funded", - "past_participle": "funded" - }, - { - "infinitive": "revile", - "present": "reviles", - "gerund": "reviling", - "past": "reviled", - "past_participle": "reviled" - }, - { - "infinitive": "awake", - "present": "awakes", - "gerund": "awaking", - "past": "awoke", - "past_participle": "awoken" - }, - { - "infinitive": "deport", - "present": "deports", - "gerund": "deporting", - "past": "deported", - "past_participle": "deported" - }, - { - "infinitive": "funk", - "present": "funks", - "gerund": "funking", - "past": "funked", - "past_participle": "funked" - }, - { - "infinitive": "budget", - "present": "budgets", - "gerund": "budgeting", - "past": "budgeted", - "past_participle": "budgeted" - }, - { - "infinitive": "admire", - "present": "admires", - "gerund": "admiring", - "past": "admired", - "past_participle": "admired" - }, - { - "infinitive": "harrumph", - "present": "harrumphs", - "gerund": "harrumphing", - "past": "harrumphed", - "past_participle": "harrumphed" - }, - { - "infinitive": "swim", - "present": "swims", - "gerund": "swimming", - "past": "swam", - "past_participle": "swum" - }, - { - "infinitive": "pound", - "present": "pounds", - "gerund": "pounding", - "past": "pounded", - "past_participle": "pounded" - }, - { - "infinitive": "screech", - "present": "screeches", - "gerund": "screeching", - "past": "screeched", - "past_participle": "screeched" - }, - { - "infinitive": "comport", - "present": "comports", - "gerund": "comporting", - "past": "comported", - "past_participle": "comported" - }, - { - "infinitive": "Mimeograph", - "present": "Mimeographes", - "gerund": "Mimeographing", - "past": "Mimeographed", - "past_participle": "Mimeographed" - }, - { - "infinitive": "caramelize", - "present": "caramelizes", - "gerund": "caramelizing", - "past": "caramelized", - "past_participle": "caramelized" - }, - { - "infinitive": "swage", - "present": "swages", - "gerund": "swaging", - "past": "swaged", - "past_participle": "swaged" - }, - { - "infinitive": "hover", - "present": "hovers", - "gerund": "hovering", - "past": "hovered", - "past_participle": "hovered" - }, - { - "infinitive": "enlace", - "present": "enlaces", - "gerund": "enlacing", - "past": "enlaced", - "past_participle": "enlaced" - }, - { - "infinitive": "vanish", - "present": "vanishes", - "gerund": "vanishing", - "past": "vanished", - "past_participle": "vanished" - }, - { - "infinitive": "exult", - "present": "exults", - "gerund": "exulting", - "past": "exulted", - "past_participle": "exulted" - }, - { - "infinitive": "seel", - "present": "seels", - "gerund": "seeling", - "past": "seeled", - "past_participle": "seeled" - }, - { - "infinitive": "decoy", - "present": "decoys", - "gerund": "decoying", - "past": "decoyed", - "past_participle": "decoyed" - }, - { - "infinitive": "transmigrate", - "present": "transmigrates", - "gerund": "transmigrating", - "past": "transmigrated", - "past_participle": "transmigrated" - }, - { - "infinitive": "shorten", - "present": "shortens", - "gerund": "shortening", - "past": "shortened", - "past_participle": "shortened" - }, - { - "infinitive": "survey", - "present": "surveys", - "gerund": "surveying", - "past": "surveyed", - "past_participle": "surveyed" - }, - { - "infinitive": "educe", - "present": "educes", - "gerund": "educing", - "past": "educed", - "past_participle": "educed" - }, - { - "infinitive": "holystone", - "present": "holystones", - "gerund": "holystoning", - "past": "holystoned", - "past_participle": "holystoned" - }, - { - "infinitive": "commune", - "present": "communes", - "gerund": "communing", - "past": "communed", - "past_participle": "communed" - }, - { - "infinitive": "bestrew", - "present": "bestrews", - "gerund": "bestrewing", - "past": "bestrewed", - "past_participle": "bestrewn" - }, - { - "infinitive": "ingot", - "present": "ingots", - "gerund": "ingoting", - "past": "ingoted", - "past_participle": "ingoted" - }, - { - "infinitive": "discontinue", - "present": "discontinues", - "gerund": "discontinuing", - "past": "discontinued", - "past_participle": "discontinued" - }, - { - "infinitive": "alert", - "present": "alerts", - "gerund": "alerting", - "past": "alerted", - "past_participle": "alerted" - }, - { - "infinitive": "exsect", - "present": "exsects", - "gerund": "exsecting", - "past": "exsected", - "past_participle": "exsected" - }, - { - "infinitive": "decolour", - "present": "decolours", - "gerund": "decolouring", - "past": "decoloured", - "past_participle": "decoloured" - }, - { - "infinitive": "volplane", - "present": "volplanes", - "gerund": "volplaning", - "past": "volplaned", - "past_participle": "volplaned" - }, - { - "infinitive": "uncoil", - "present": "uncoils", - "gerund": "uncoiling", - "past": "uncoiled", - "past_participle": "uncoiled" - }, - { - "infinitive": "shrive", - "present": "shrives", - "gerund": "shriving", - "past": "shrove", - "past_participle": "shriven" - }, - { - "infinitive": "nickname", - "present": "nicknames", - "gerund": "nicknaming", - "past": "nicknamed", - "past_participle": "nicknamed" - }, - { - "infinitive": "climb", - "present": "climbs", - "gerund": "climbing", - "past": "climbed", - "past_participle": "climbed" - }, - { - "infinitive": "expend", - "present": "expends", - "gerund": "expending", - "past": "expended", - "past_participle": "expended" - }, - { - "infinitive": "surrogate", - "present": "surrogates", - "gerund": "surrogating", - "past": "surrogated", - "past_participle": "surrogated" - }, - { - "infinitive": "azotize", - "present": "azotizes", - "gerund": "azotizing", - "past": "azotized", - "past_participle": "azotized" - }, - { - "infinitive": "concrete", - "present": "concretes", - "gerund": "concreting", - "past": "concreted", - "past_participle": "concreted" - }, - { - "infinitive": "obtest", - "present": "obtests", - "gerund": "obtesting", - "past": "obtested", - "past_participle": "obtested" - }, - { - "infinitive": "comprise", - "present": "comprises", - "gerund": "comprising", - "past": "comprised", - "past_participle": "comprised" - }, - { - "infinitive": "rejuvenesce", - "present": "rejuvenesces", - "gerund": "rejuvenescing", - "past": "rejuvenesced", - "past_participle": "rejuvenesced" - }, - { - "infinitive": "emblazon", - "present": "emblazons", - "gerund": "emblazoning", - "past": "emblazoned", - "past_participle": "emblazoned" - }, - { - "infinitive": "fluoresce", - "present": "fluoresces", - "gerund": "fluorescing", - "past": "fluoresced", - "past_participle": "fluoresced" - }, - { - "infinitive": "salve", - "present": "salves", - "gerund": "salving", - "past": "salved", - "past_participle": "salved" - }, - { - "infinitive": "house-train", - "present": "house-trains", - "gerund": "house-training", - "past": "house-trained", - "past_participle": "house-trained" - }, - { - "infinitive": "derange", - "present": "deranges", - "gerund": "deranging", - "past": "deranged", - "past_participle": "deranged" - }, - { - "infinitive": "cuckold", - "present": "cuckolds", - "gerund": "cuckolding", - "past": "cuckolded", - "past_participle": "cuckolded" - }, - { - "infinitive": "cordon", - "present": "cordons", - "gerund": "cordoning", - "past": "cordoned", - "past_participle": "cordoned" - }, - { - "infinitive": "format", - "present": "formats", - "gerund": "formatting", - "past": "formatted", - "past_participle": "formatted" - }, - { - "infinitive": "couple", - "present": "couples", - "gerund": "coupling", - "past": "coupled", - "past_participle": "coupled" - }, - { - "infinitive": "intuit", - "present": "intuits", - "gerund": "intuiting", - "past": "intuited", - "past_participle": "intuited" - }, - { - "infinitive": "quest", - "present": "quests", - "gerund": "questing", - "past": "quested", - "past_participle": "quested" - }, - { - "infinitive": "blackjack", - "present": "blackjacks", - "gerund": "blackjacking", - "past": "blackjacked", - "past_participle": "blackjacked" - }, - { - "infinitive": "outstay", - "present": "outstays", - "gerund": "outstaying", - "past": "outstayed", - "past_participle": "outstayed" - }, - { - "infinitive": "towel", - "present": "towels", - "gerund": "towelling", - "past": "towelled", - "past_participle": "towelled" - }, - { - "infinitive": "abduct", - "present": "abducts", - "gerund": "abducting", - "past": "abducted", - "past_participle": "abducted" - }, - { - "infinitive": "flannel", - "present": "flannels", - "gerund": "flannelling", - "past": "flannelled", - "past_participle": "flannelled" - }, - { - "infinitive": "bruit", - "present": "bruits", - "gerund": "bruiting", - "past": "bruited", - "past_participle": "bruited" - }, - { - "infinitive": "constipate", - "present": "constipates", - "gerund": "constipating", - "past": "constipated", - "past_participle": "constipated" - }, - { - "infinitive": "continue", - "present": "continues", - "gerund": "continuing", - "past": "continued", - "past_participle": "continued" - }, - { - "infinitive": "scape", - "present": "scapes", - "gerund": "scaping", - "past": "scaped", - "past_participle": "scaped" - }, - { - "infinitive": "sugarcoat", - "present": "sugarcoats", - "gerund": "sugarcoating", - "past": "sugarcoated", - "past_participle": "sugarcoated" - }, - { - "infinitive": "decrease", - "present": "decreases", - "gerund": "decreasing", - "past": "decreased", - "past_participle": "decreased" - }, - { - "infinitive": "disorder", - "present": "disorders", - "gerund": "disordering", - "past": "disordered", - "past_participle": "disordered" - }, - { - "infinitive": "sensitize", - "present": "sensitizes", - "gerund": "sensitizing", - "past": "sensitized", - "past_participle": "sensitized" - }, - { - "infinitive": "silence", - "present": "silences", - "gerund": "silencing", - "past": "silenced", - "past_participle": "silenced" - }, - { - "infinitive": "crescendo", - "present": "crescendoes", - "gerund": "crescendoing", - "past": "crescendoed", - "past_participle": "crescendoed" - }, - { - "infinitive": "gargle", - "present": "gargles", - "gerund": "gargling", - "past": "gargled", - "past_participle": "gargled" - }, - { - "infinitive": "spring", - "present": "springs", - "gerund": "springing", - "past": "sprung", - "past_participle": "" - }, - { - "infinitive": "comp`ere", - "present": "comp`eres", - "gerund": "comp`ering", - "past": "comp`ered", - "past_participle": "comp`ered" - }, - { - "infinitive": "bounce", - "present": "bounces", - "gerund": "bouncing", - "past": "bounced", - "past_participle": "bounced" - }, - { - "infinitive": "beckon", - "present": "beckons", - "gerund": "beckoning", - "past": "beckoned", - "past_participle": "beckoned" - }, - { - "infinitive": "palm", - "present": "palms", - "gerund": "palming", - "past": "palmed", - "past_participle": "palmed" - }, - { - "infinitive": "peptize", - "present": "peptizes", - "gerund": "peptizing", - "past": "peptized", - "past_participle": "peptized" - }, - { - "infinitive": "sprint", - "present": "sprints", - "gerund": "sprinting", - "past": "sprinted", - "past_participle": "sprinted" - }, - { - "infinitive": "impanel", - "present": "impanels", - "gerund": "impanelling", - "past": "impanelled", - "past_participle": "impanelled" - }, - { - "infinitive": "pale", - "present": "pales", - "gerund": "paling", - "past": "paled", - "past_participle": "paled" - }, - { - "infinitive": "etymologize", - "present": "etymologizes", - "gerund": "etymologizing", - "past": "etymologized", - "past_participle": "etymologized" - }, - { - "infinitive": "untangle", - "present": "untangles", - "gerund": "untangling", - "past": "untangled", - "past_participle": "untangled" - }, - { - "infinitive": "disinfest", - "present": "disinfests", - "gerund": "disinfesting", - "past": "disinfested", - "past_participle": "disinfested" - }, - { - "infinitive": "twinkle", - "present": "twinkles", - "gerund": "twinkling", - "past": "twinkled", - "past_participle": "twinkled" - }, - { - "infinitive": "behave", - "present": "behaves", - "gerund": "behaving", - "past": "behaved", - "past_participle": "behaved" - }, - { - "infinitive": "osculate", - "present": "osculates", - "gerund": "osculating", - "past": "osculated", - "past_participle": "osculated" - }, - { - "infinitive": "be", - "present": "is", - "gerund": "being", - "past": "were", - "past_participle": "been" - }, - { - "infinitive": "suburbanize", - "present": "suburbanizes", - "gerund": "suburbanizing", - "past": "suburbanized", - "past_participle": "suburbanized" - }, - { - "infinitive": "hachure", - "present": "hachures", - "gerund": "hachuring", - "past": "hachured", - "past_participle": "hachured" - }, - { - "infinitive": "carol", - "present": "carols", - "gerund": "carolling", - "past": "carolled", - "past_participle": "carolled" - }, - { - "infinitive": "ward", - "present": "wards", - "gerund": "warding", - "past": "warded", - "past_participle": "warded" - }, - { - "infinitive": "zip", - "present": "zips", - "gerund": "zipping", - "past": "zipped", - "past_participle": "zipped" - }, - { - "infinitive": "coexist", - "present": "coexists", - "gerund": "coexisting", - "past": "coexisted", - "past_participle": "coexisted" - }, - { - "infinitive": "hatchel", - "present": "hatchels", - "gerund": "hatcheling", - "past": "hatcheled", - "past_participle": "hatcheled" - }, - { - "infinitive": "frizzle", - "present": "frizzles", - "gerund": "frizzling", - "past": "frizzled", - "past_participle": "frizzled" - }, - { - "infinitive": "filagree", - "present": "filagrees", - "gerund": "filagreeing", - "past": "filagreed", - "past_participle": "filagreed" - }, - { - "infinitive": "upswell", - "present": "upswells", - "gerund": "upswelling", - "past": "upswelled", - "past_participle": "upswelled" - }, - { - "infinitive": "repair", - "present": "repairs", - "gerund": "repairing", - "past": "repaired", - "past_participle": "repaired" - }, - { - "infinitive": "reverence", - "present": "reverences", - "gerund": "reverencing", - "past": "reverenced", - "past_participle": "reverenced" - }, - { - "infinitive": "noddle", - "present": "noddles", - "gerund": "noddling", - "past": "noddled", - "past_participle": "noddled" - }, - { - "infinitive": "recreate", - "present": "recreates", - "gerund": "recreating", - "past": "recreated", - "past_participle": "recreated" - }, - { - "infinitive": "appropriate", - "present": "appropriates", - "gerund": "appropriating", - "past": "appropriated", - "past_participle": "appropriated" - }, - { - "infinitive": "blench", - "present": "blenches", - "gerund": "blenching", - "past": "blenched", - "past_participle": "blenched" - }, - { - "infinitive": "span", - "present": "spans", - "gerund": "spanning", - "past": "spanned", - "past_participle": "spanned" - }, - { - "infinitive": "traduce", - "present": "traduces", - "gerund": "traducing", - "past": "traduced", - "past_participle": "traduced" - }, - { - "infinitive": "phosphorate", - "present": "phosphorates", - "gerund": "phosphorating", - "past": "phosphorated", - "past_participle": "phosphorated" - }, - { - "infinitive": "spag", - "present": "spags", - "gerund": "spagging", - "past": "spagged", - "past_participle": "spagged" - }, - { - "infinitive": "chide", - "present": "chides", - "gerund": "chiding", - "past": "chided", - "past_participle": "chided" - }, - { - "infinitive": "spae", - "present": "spaes", - "gerund": "spaeing", - "past": "spaed", - "past_participle": "spaed" - }, - { - "infinitive": "occupy", - "present": "occupies", - "gerund": "occupying", - "past": "occupied", - "past_participle": "occupied" - }, - { - "infinitive": "spay", - "present": "spays", - "gerund": "spaying", - "past": "spayed", - "past_participle": "spayed" - }, - { - "infinitive": "mishandle", - "present": "mishandles", - "gerund": "mishandling", - "past": "mishandled", - "past_participle": "mishandled" - }, - { - "infinitive": "suit", - "present": "suits", - "gerund": "suiting", - "past": "suited", - "past_participle": "suited" - }, - { - "infinitive": "spar", - "present": "spars", - "gerund": "sparring", - "past": "sparred", - "past_participle": "sparred" - }, - { - "infinitive": "blueprint", - "present": "blueprints", - "gerund": "blueprinting", - "past": "blueprinted", - "past_participle": "blueprinted" - }, - { - "infinitive": "expound", - "present": "expounds", - "gerund": "expounding", - "past": "expounded", - "past_participle": "expounded" - }, - { - "infinitive": "litigate", - "present": "litigates", - "gerund": "litigating", - "past": "litigated", - "past_participle": "litigated" - }, - { - "infinitive": "fidge", - "present": "fidges", - "gerund": "fidging", - "past": "fidged", - "past_participle": "fidged" - }, - { - "infinitive": "tally", - "present": "tallies", - "gerund": "tallying", - "past": "tallied", - "past_participle": "tallied" - }, - { - "infinitive": "coedit", - "present": "coedits", - "gerund": "coediting", - "past": "coedited", - "past_participle": "coedited" - }, - { - "infinitive": "link", - "present": "links", - "gerund": "linking", - "past": "linked", - "past_participle": "linked" - }, - { - "infinitive": "don", - "present": "dons", - "gerund": "donning", - "past": "donned", - "past_participle": "donned" - }, - { - "infinitive": "line", - "present": "lines", - "gerund": "lining", - "past": "lined", - "past_participle": "lined" - }, - { - "infinitive": "photosynthesize", - "present": "photosynthesizes", - "gerund": "photosynthesizing", - "past": "photosynthesized", - "past_participle": "photosynthesized" - }, - { - "infinitive": "angle-park", - "present": "angle-parks", - "gerund": "angle-parking", - "past": "angle-parked", - "past_participle": "angle-parked" - }, - { - "infinitive": "harangue", - "present": "harangues", - "gerund": "haranguing", - "past": "harangued", - "past_participle": "harangued" - }, - { - "infinitive": "up", - "present": "", - "gerund": "upping", - "past": "upped", - "past_participle": "upped" - }, - { - "infinitive": "slander", - "present": "slanders", - "gerund": "slandering", - "past": "slandered", - "past_participle": "slandered" - }, - { - "infinitive": "mature", - "present": "matures", - "gerund": "maturing", - "past": "matured", - "past_participle": "matured" - }, - { - "infinitive": "readdress", - "present": "readdresses", - "gerund": "readdressing", - "past": "readdressed", - "past_participle": "readdressed" - }, - { - "infinitive": "dehumidify", - "present": "dehumidifies", - "gerund": "dehumidifying", - "past": "dehumidified", - "past_participle": "dehumidified" - }, - { - "infinitive": "reconcile", - "present": "reconciles", - "gerund": "reconciling", - "past": "reconciled", - "past_participle": "reconciled" - }, - { - "infinitive": "confiscate", - "present": "confiscates", - "gerund": "confiscating", - "past": "confiscated", - "past_participle": "confiscated" - }, - { - "infinitive": "overland", - "present": "overlands", - "gerund": "overlanding", - "past": "overlanded", - "past_participle": "overlanded" - }, - { - "infinitive": "influence", - "present": "influences", - "gerund": "influencing", - "past": "influenced", - "past_participle": "influenced" - }, - { - "infinitive": "haunt", - "present": "haunts", - "gerund": "haunting", - "past": "haunted", - "past_participle": "haunted" - }, - { - "infinitive": "snaffle", - "present": "snaffles", - "gerund": "snaffling", - "past": "snaffled", - "past_participle": "snaffled" - }, - { - "infinitive": "char", - "present": "chars", - "gerund": "charring", - "past": "charred", - "past_participle": "charred" - }, - { - "infinitive": "chap", - "present": "chaps", - "gerund": "chapping", - "past": "chapped", - "past_participle": "chapped" - }, - { - "infinitive": "muckrake", - "present": "muckrakes", - "gerund": "muckraking", - "past": "muckraked", - "past_participle": "muckraked" - }, - { - "infinitive": "chaw", - "present": "chaws", - "gerund": "chawing", - "past": "chawed", - "past_participle": "chawed" - }, - { - "infinitive": "chat", - "present": "chats", - "gerund": "chatting", - "past": "chatted", - "past_participle": "chatted" - }, - { - "infinitive": "disremember", - "present": "disremembers", - "gerund": "disremembering", - "past": "disremembered", - "past_participle": "disremembered" - }, - { - "infinitive": "touzle", - "present": "touzles", - "gerund": "touzling", - "past": "touzled", - "past_participle": "touzled" - }, - { - "infinitive": "copulate", - "present": "copulates", - "gerund": "copulating", - "past": "copulated", - "past_participle": "copulated" - }, - { - "infinitive": "retrace", - "present": "retraces", - "gerund": "retracing", - "past": "retraced", - "past_participle": "retraced" - }, - { - "infinitive": "metaphrase", - "present": "metaphrases", - "gerund": "metaphrasing", - "past": "metaphrased", - "past_participle": "metaphrased" - }, - { - "infinitive": "invalid", - "present": "invalids", - "gerund": "invaliding", - "past": "invalided", - "past_participle": "invalided" - }, - { - "infinitive": "mistime", - "present": "mistimes", - "gerund": "mistiming", - "past": "mistimed", - "past_participle": "mistimed" - }, - { - "infinitive": "glair", - "present": "glairs", - "gerund": "glairing", - "past": "glaired", - "past_participle": "glaired" - }, - { - "infinitive": "victual", - "present": "victuals", - "gerund": "victualling", - "past": "victualled", - "past_participle": "victualled" - }, - { - "infinitive": "stillhunt", - "present": "stillhunts", - "gerund": "stillhunting", - "past": "stillhunted", - "past_participle": "stillhunted" - }, - { - "infinitive": "retract", - "present": "retracts", - "gerund": "retracting", - "past": "retracted", - "past_participle": "retracted" - }, - { - "infinitive": "deviate", - "present": "deviates", - "gerund": "deviating", - "past": "deviated", - "past_participle": "deviated" - }, - { - "infinitive": "remilitarize", - "present": "remilitarizes", - "gerund": "remilitarizing", - "past": "remilitarized", - "past_participle": "remilitarized" - }, - { - "infinitive": "scrub", - "present": "scrubs", - "gerund": "scrubbing", - "past": "scrubbed", - "past_participle": "scrubbed" - }, - { - "infinitive": "besiege", - "present": "besieges", - "gerund": "besieging", - "past": "besieged", - "past_participle": "besieged" - }, - { - "infinitive": "oblige", - "present": "obliges", - "gerund": "obliging", - "past": "obliged", - "past_participle": "obliged" - }, - { - "infinitive": "kerfuffle", - "present": "kerfuffles", - "gerund": "kerfuffling", - "past": "kerfuffled", - "past_participle": "kerfuffled" - }, - { - "infinitive": "scrum", - "present": "scrums", - "gerund": "scrumming", - "past": "scrummed", - "past_participle": "scrummed" - }, - { - "infinitive": "worm", - "present": "worms", - "gerund": "worming", - "past": "wormed", - "past_participle": "wormed" - }, - { - "infinitive": "hackney", - "present": "hackneys", - "gerund": "hackneying", - "past": "hackneyed", - "past_participle": "hackneyed" - }, - { - "infinitive": "land", - "present": "lands", - "gerund": "landing", - "past": "landed", - "past_participle": "landed" - }, - { - "infinitive": "wafer", - "present": "wafers", - "gerund": "wafering", - "past": "wafered", - "past_participle": "wafered" - }, - { - "infinitive": "overtop", - "present": "overtops", - "gerund": "overtopping", - "past": "overtopped", - "past_participle": "overtopped" - }, - { - "infinitive": "metabolize", - "present": "metabolizes", - "gerund": "metabolizing", - "past": "metabolized", - "past_participle": "metabolized" - }, - { - "infinitive": "crease", - "present": "creases", - "gerund": "creasing", - "past": "creased", - "past_participle": "creased" - }, - { - "infinitive": "feud", - "present": "feuds", - "gerund": "feuding", - "past": "feuded", - "past_participle": "feuded" - }, - { - "infinitive": "disencumber", - "present": "disencumbers", - "gerund": "disencumbering", - "past": "disencumbered", - "past_participle": "disencumbered" - }, - { - "infinitive": "crinkle", - "present": "crinkles", - "gerund": "crinkling", - "past": "crinkled", - "past_participle": "crinkled" - }, - { - "infinitive": "fresh", - "present": "freshes", - "gerund": "freshing", - "past": "freshed", - "past_participle": "freshed" - }, - { - "infinitive": "menace", - "present": "menaces", - "gerund": "menacing", - "past": "menaced", - "past_participle": "menaced" - }, - { - "infinitive": "essay", - "present": "essays", - "gerund": "essaying", - "past": "essayed", - "past_participle": "essayed" - }, - { - "infinitive": "code", - "present": "codes", - "gerund": "coding", - "past": "coded", - "past_participle": "coded" - }, - { - "infinitive": "piddle", - "present": "piddles", - "gerund": "piddling", - "past": "piddled", - "past_participle": "piddled" - }, - { - "infinitive": "scratch", - "present": "scratches", - "gerund": "scratching", - "past": "scratched", - "past_participle": "scratched" - }, - { - "infinitive": "broaden", - "present": "broadens", - "gerund": "broadening", - "past": "broadened", - "past_participle": "broadened" - }, - { - "infinitive": "guerdon", - "present": "guerdons", - "gerund": "guerdoning", - "past": "guerdoned", - "past_participle": "guerdoned" - }, - { - "infinitive": "soften", - "present": "softens", - "gerund": "softening", - "past": "softened", - "past_participle": "softened" - }, - { - "infinitive": "toggle", - "present": "toggles", - "gerund": "toggling", - "past": "toggled", - "past_participle": "toggled" - }, - { - "infinitive": "euhemerize", - "present": "euhemerizes", - "gerund": "euhemerizing", - "past": "euhemerized", - "past_participle": "euhemerized" - }, - { - "infinitive": "gossip", - "present": "gossips", - "gerund": "gossipping", - "past": "gossipped", - "past_participle": "gossipped" - }, - { - "infinitive": "resonate", - "present": "resonates", - "gerund": "resonating", - "past": "resonated", - "past_participle": "resonated" - }, - { - "infinitive": "incrust", - "present": "incrusts", - "gerund": "incrusting", - "past": "incrusted", - "past_participle": "incrusted" - }, - { - "infinitive": "send", - "present": "sends", - "gerund": "sending", - "past": "sent", - "past_participle": "sent" - }, - { - "infinitive": "mimeograph", - "present": "mimeographs", - "gerund": "mimeographing", - "past": "mimeographed", - "past_participle": "mimeographed" - }, - { - "infinitive": "niello", - "present": "niellos", - "gerund": "nielloing", - "past": "nielloed", - "past_participle": "nielloed" - }, - { - "infinitive": "dislike", - "present": "dislikes", - "gerund": "disliking", - "past": "disliked", - "past_participle": "disliked" - }, - { - "infinitive": "retire", - "present": "retires", - "gerund": "retiring", - "past": "retired", - "past_participle": "retired" - }, - { - "infinitive": "garden", - "present": "gardens", - "gerund": "gardening", - "past": "gardened", - "past_participle": "gardened" - }, - { - "infinitive": "torture", - "present": "tortures", - "gerund": "torturing", - "past": "tortured", - "past_participle": "tortured" - }, - { - "infinitive": "nonplus", - "present": "nonplusses", - "gerund": "nonplussing", - "past": "nonplussed", - "past_participle": "nonplussed" - }, - { - "infinitive": "snowshoe", - "present": "snowshoes", - "gerund": "snowshoeing", - "past": "snowshoed", - "past_participle": "snowshoed" - }, - { - "infinitive": "promise", - "present": "promises", - "gerund": "promising", - "past": "promised", - "past_participle": "promised" - }, - { - "infinitive": "wipe", - "present": "wipes", - "gerund": "wiping", - "past": "wiped", - "past_participle": "wiped" - }, - { - "infinitive": "marry", - "present": "marries", - "gerund": "marrying", - "past": "married", - "past_participle": "married" - }, - { - "infinitive": "try", - "present": "tries", - "gerund": "trying", - "past": "tried", - "past_participle": "tried" - }, - { - "infinitive": "threat", - "present": "threats", - "gerund": "threating", - "past": "threated", - "past_participle": "threated" - }, - { - "infinitive": "race", - "present": "races", - "gerund": "racing", - "past": "raced", - "past_participle": "raced" - }, - { - "infinitive": "gauge", - "present": "gauges", - "gerund": "gauging", - "past": "gauged", - "past_participle": "gauged" - }, - { - "infinitive": "stodge", - "present": "stodges", - "gerund": "stodging", - "past": "stodged", - "past_participle": "stodged" - }, - { - "infinitive": "sextuplicate", - "present": "sextuplicates", - "gerund": "sextuplicating", - "past": "sextuplicated", - "past_participle": "sextuplicated" - }, - { - "infinitive": "abet", - "present": "abets", - "gerund": "abetting", - "past": "abetted", - "past_participle": "abetted" - }, - { - "infinitive": "wrack", - "present": "wracks", - "gerund": "wracking", - "past": "wracked", - "past_participle": "wracked" - }, - { - "infinitive": "pledge", - "present": "pledges", - "gerund": "pledging", - "past": "pledged", - "past_participle": "pledged" - }, - { - "infinitive": "ligate", - "present": "ligates", - "gerund": "ligating", - "past": "ligated", - "past_participle": "ligated" - }, - { - "infinitive": "tittup", - "present": "tittups", - "gerund": "tittupping", - "past": "tittupped", - "past_participle": "tittupped" - }, - { - "infinitive": "crook", - "present": "crooks", - "gerund": "crooking", - "past": "crooked", - "past_participle": "crooked" - }, - { - "infinitive": "imply", - "present": "implies", - "gerund": "implying", - "past": "implied", - "past_participle": "implied" - }, - { - "infinitive": "croon", - "present": "croons", - "gerund": "crooning", - "past": "crooned", - "past_participle": "crooned" - }, - { - "infinitive": "pour", - "present": "pours", - "gerund": "pouring", - "past": "poured", - "past_participle": "poured" - }, - { - "infinitive": "carillon", - "present": "carillons", - "gerund": "carillonning", - "past": "carillonned", - "past_participle": "carillonned" - }, - { - "infinitive": "index", - "present": "indexes", - "gerund": "indexing", - "past": "indexed", - "past_participle": "indexed" - }, - { - "infinitive": "twine", - "present": "twines", - "gerund": "twining", - "past": "twined", - "past_participle": "twined" - }, - { - "infinitive": "randomize", - "present": "randomizes", - "gerund": "randomizing", - "past": "randomized", - "past_participle": "randomized" - }, - { - "infinitive": "birr", - "present": "birrs", - "gerund": "birring", - "past": "birred", - "past_participle": "birred" - }, - { - "infinitive": "glissade", - "present": "glissades", - "gerund": "glissading", - "past": "glissaded", - "past_participle": "glissaded" - }, - { - "infinitive": "throb", - "present": "throbs", - "gerund": "throbbing", - "past": "throbbed", - "past_participle": "throbbed" - }, - { - "infinitive": "birl", - "present": "birls", - "gerund": "birling", - "past": "birled", - "past_participle": "birled" - }, - { - "infinitive": "proffer", - "present": "proffers", - "gerund": "proffering", - "past": "proffered", - "past_participle": "proffered" - }, - { - "infinitive": "punce", - "present": "punces", - "gerund": "puncing", - "past": "punced", - "past_participle": "punced" - }, - { - "infinitive": "unmask", - "present": "unmasks", - "gerund": "unmasking", - "past": "unmasked", - "past_participle": "unmasked" - }, - { - "infinitive": "leer", - "present": "", - "gerund": "leing", - "past": "leed", - "past_participle": "leed" - }, - { - "infinitive": "leg", - "present": "legs", - "gerund": "legging", - "past": "legged", - "past_participle": "legged" - }, - { - "infinitive": "cosset", - "present": "cossets", - "gerund": "cosseting", - "past": "cosseted", - "past_participle": "cosseted" - }, - { - "infinitive": "let", - "present": "lets", - "gerund": "letting", - "past": "let", - "past_participle": "let" - }, - { - "infinitive": "reduplicate", - "present": "reduplicates", - "gerund": "reduplicating", - "past": "reduplicated", - "past_participle": "reduplicated" - }, - { - "infinitive": "licence", - "present": "licences", - "gerund": "licencing", - "past": "licenced", - "past_participle": "licenced" - }, - { - "infinitive": "denitrify", - "present": "denitrifies", - "gerund": "denitrifying", - "past": "denitrified", - "past_participle": "denitrified" - }, - { - "infinitive": "vinegar", - "present": "vinegars", - "gerund": "vinegaring", - "past": "vinegared", - "past_participle": "vinegared" - }, - { - "infinitive": "engage", - "present": "engages", - "gerund": "engaging", - "past": "engaged", - "past_participle": "engaged" - }, - { - "infinitive": "coopt", - "present": "coopts", - "gerund": "coopting", - "past": "coopted", - "past_participle": "coopted" - }, - { - "infinitive": "receive", - "present": "receives", - "gerund": "receiving", - "past": "received", - "past_participle": "received" - }, - { - "infinitive": "cartelize", - "present": "cartelizes", - "gerund": "cartelizing", - "past": "cartelized", - "past_participle": "cartelized" - }, - { - "infinitive": "fetch", - "present": "fetches", - "gerund": "fetching", - "past": "fetched", - "past_participle": "fetched" - }, - { - "infinitive": "disenfranchise", - "present": "disenfranchises", - "gerund": "disenfranchising", - "past": "disenfranchised", - "past_participle": "disenfranchised" - }, - { - "infinitive": "defeat", - "present": "defeats", - "gerund": "defeating", - "past": "defeated", - "past_participle": "defeated" - }, - { - "infinitive": "atomize", - "present": "atomizes", - "gerund": "atomizing", - "past": "atomized", - "past_participle": "atomized" - }, - { - "infinitive": "rive", - "present": "rives", - "gerund": "riving", - "past": "rived", - "past_participle": "riven" - }, - { - "infinitive": "recriminate", - "present": "recriminates", - "gerund": "recriminating", - "past": "recriminated", - "past_participle": "recriminated" - }, - { - "infinitive": "countervail", - "present": "countervails", - "gerund": "countervailing", - "past": "countervailed", - "past_participle": "countervailed" - }, - { - "infinitive": "sire", - "present": "sires", - "gerund": "siring", - "past": "sired", - "past_participle": "sired" - }, - { - "infinitive": "disobey", - "present": "disobeys", - "gerund": "disobeying", - "past": "disobeyed", - "past_participle": "disobeyed" - }, - { - "infinitive": "extricate", - "present": "extricates", - "gerund": "extricating", - "past": "extricated", - "past_participle": "extricated" - }, - { - "infinitive": "repugn", - "present": "repugns", - "gerund": "repugning", - "past": "repugned", - "past_participle": "repugned" - }, - { - "infinitive": "reckon", - "present": "reckons", - "gerund": "reckoning", - "past": "reckoned", - "past_participle": "reckoned" - }, - { - "infinitive": "extirpate", - "present": "extirpates", - "gerund": "extirpating", - "past": "extirpated", - "past_participle": "extirpated" - }, - { - "infinitive": "clype", - "present": "clypes", - "gerund": "clyping", - "past": "clyped", - "past_participle": "clyped" - }, - { - "infinitive": "mortify", - "present": "mortifies", - "gerund": "mortifying", - "past": "mortified", - "past_participle": "mortified" - }, - { - "infinitive": "soliloquize", - "present": "soliloquizes", - "gerund": "soliloquizing", - "past": "soliloquized", - "past_participle": "soliloquized" - }, - { - "infinitive": "mutch", - "present": "mutches", - "gerund": "mutching", - "past": "mutched", - "past_participle": "mutched" - }, - { - "infinitive": "certificate", - "present": "certificates", - "gerund": "certificating", - "past": "certificated", - "past_participle": "certificated" - }, - { - "infinitive": "vocalize", - "present": "vocalizes", - "gerund": "vocalizing", - "past": "vocalized", - "past_participle": "vocalized" - }, - { - "infinitive": "levant", - "present": "levants", - "gerund": "levanting", - "past": "levanted", - "past_participle": "levanted" - }, - { - "infinitive": "process", - "present": "processes", - "gerund": "processing", - "past": "processed", - "past_participle": "processed" - }, - { - "infinitive": "duplicate", - "present": "duplicates", - "gerund": "duplicating", - "past": "duplicated", - "past_participle": "duplicated" - }, - { - "infinitive": "doubt", - "present": "doubts", - "gerund": "doubting", - "past": "doubted", - "past_participle": "doubted" - }, - { - "infinitive": "intend", - "present": "intends", - "gerund": "intending", - "past": "intended", - "past_participle": "intended" - }, - { - "infinitive": "pencil", - "present": "pencils", - "gerund": "pencilling", - "past": "pencilled", - "past_participle": "pencilled" - }, - { - "infinitive": "shipwreck", - "present": "shipwrecks", - "gerund": "shipwrecking", - "past": "shipwrecked", - "past_participle": "shipwrecked" - }, - { - "infinitive": "unplug", - "present": "unplugs", - "gerund": "unplugging", - "past": "unplugged", - "past_participle": "unplugged" - }, - { - "infinitive": "Aryanize", - "present": "Aryanizes", - "gerund": "Aryanizing", - "past": "Aryanized", - "past_participle": "Aryanized" - }, - { - "infinitive": "rubbish", - "present": "rubbishes", - "gerund": "rubbishing", - "past": "rubbished", - "past_participle": "rubbished" - }, - { - "infinitive": "baby", - "present": "babies", - "gerund": "babying", - "past": "babied", - "past_participle": "babied" - }, - { - "infinitive": "ok", - "present": "oks", - "gerund": "oking", - "past": "oked", - "past_participle": "oked" - }, - { - "infinitive": "getter", - "present": "getters", - "gerund": "gettering", - "past": "gettered", - "past_participle": "gettered" - }, - { - "infinitive": "casserole", - "present": "casseroles", - "gerund": "casseroling", - "past": "casseroled", - "past_participle": "casseroled" - }, - { - "infinitive": "entangle", - "present": "entangles", - "gerund": "entangling", - "past": "entangled", - "past_participle": "entangled" - }, - { - "infinitive": "forelock", - "present": "forelocks", - "gerund": "forelocking", - "past": "forelocked", - "past_participle": "forelocked" - }, - { - "infinitive": "pout", - "present": "pouts", - "gerund": "pouting", - "past": "pouted", - "past_participle": "pouted" - }, - { - "infinitive": "challenge", - "present": "challenges", - "gerund": "challenging", - "past": "challenged", - "past_participle": "challenged" - }, - { - "infinitive": "weed", - "present": "wees", - "gerund": "weeing", - "past": "weed", - "past_participle": "weed" - }, - { - "infinitive": "inculpate", - "present": "inculpates", - "gerund": "inculpating", - "past": "inculpated", - "past_participle": "inculpated" - }, - { - "infinitive": "reproduce", - "present": "reproduces", - "gerund": "reproducing", - "past": "reproduced", - "past_participle": "reproduced" - }, - { - "infinitive": "retell", - "present": "retells", - "gerund": "retelling", - "past": "retold", - "past_participle": "retold" - }, - { - "infinitive": "thin", - "present": "thins", - "gerund": "thinning", - "past": "thinned", - "past_participle": "thinned" - }, - { - "infinitive": "drill", - "present": "drills", - "gerund": "drilling", - "past": "drilled", - "past_participle": "drilled" - }, - { - "infinitive": "fulfill", - "present": "fulfils", - "gerund": "fulfilling", - "past": "fulfilled", - "past_participle": "fulfilled" - }, - { - "infinitive": "plug", - "present": "plugs", - "gerund": "pluging", - "past": "pluged", - "past_participle": "pluged" - }, - { - "infinitive": "wedge", - "present": "wedges", - "gerund": "wedging", - "past": "wedged", - "past_participle": "wedged" - }, - { - "infinitive": "anglify", - "present": "anglifies", - "gerund": "anglifying", - "past": "anglified", - "past_participle": "anglified" - }, - { - "infinitive": "pawn", - "present": "pawns", - "gerund": "pawning", - "past": "pawned", - "past_participle": "pawned" - }, - { - "infinitive": "diabolize", - "present": "diabolizes", - "gerund": "diabolizing", - "past": "diabolized", - "past_participle": "diabolized" - }, - { - "infinitive": "lock", - "present": "locks", - "gerund": "locking", - "past": "locked", - "past_participle": "locked" - }, - { - "infinitive": "slim", - "present": "slims", - "gerund": "sliming", - "past": "slimed", - "past_participle": "slimed" - }, - { - "infinitive": "loco", - "present": "locos", - "gerund": "locoing", - "past": "locoed", - "past_participle": "locoed" - }, - { - "infinitive": "spruce", - "present": "spruces", - "gerund": "sprucing", - "past": "spruced", - "past_participle": "spruced" - }, - { - "infinitive": "slit", - "present": "slits", - "gerund": "slitting", - "past": "slit", - "past_participle": "slit" - }, - { - "infinitive": "bend", - "present": "bends", - "gerund": "bending", - "past": "bent", - "past_participle": "bent" - }, - { - "infinitive": "slip", - "present": "slips", - "gerund": "slipping", - "past": "slipped", - "past_participle": "slipped" - }, - { - "infinitive": "martyr", - "present": "martyrs", - "gerund": "martyring", - "past": "martyred", - "past_participle": "martyred" - }, - { - "infinitive": "trumpet", - "present": "trumpets", - "gerund": "trumpeting", - "past": "trumpeted", - "past_participle": "trumpeted" - }, - { - "infinitive": "workharden", - "present": "workhardens", - "gerund": "work-hardening", - "past": "workhardened", - "past_participle": "workhardened" - }, - { - "infinitive": "weaken", - "present": "weakens", - "gerund": "weakening", - "past": "weakened", - "past_participle": "weakened" - }, - { - "infinitive": "rhubarb", - "present": "rhubarbs", - "gerund": "rhubarbing", - "past": "rhubarbed", - "past_participle": "rhubarbed" - }, - { - "infinitive": "portage", - "present": "portages", - "gerund": "portaging", - "past": "portaged", - "past_participle": "portaged" - }, - { - "infinitive": "delay", - "present": "delays", - "gerund": "delaying", - "past": "delayed", - "past_participle": "delayed" - }, - { - "infinitive": "belly-laugh", - "present": "belly-laughs'", - "gerund": "belly-laughing", - "past": "belly-laughed", - "past_participle": "belly-laughed" - }, - { - "infinitive": "opine", - "present": "opines", - "gerund": "opining", - "past": "opined", - "past_participle": "opined" - }, - { - "infinitive": "smut", - "present": "smuts", - "gerund": "smutting", - "past": "smutted", - "past_participle": "smutted" - }, - { - "infinitive": "stang", - "present": "stangs", - "gerund": "stanging", - "past": "stanged", - "past_participle": "stanged" - }, - { - "infinitive": "halter", - "present": "halters", - "gerund": "haltering", - "past": "haltered", - "past_participle": "haltered" - }, - { - "infinitive": "await", - "present": "awaits", - "gerund": "awaiting", - "past": "awaited", - "past_participle": "awaited" - }, - { - "infinitive": "electroform", - "present": "electroforms", - "gerund": "electroforming", - "past": "electroformed", - "past_participle": "electroformed" - }, - { - "infinitive": "ozonize", - "present": "ozonizes", - "gerund": "ozonizing", - "past": "ozonized", - "past_participle": "ozonized" - }, - { - "infinitive": "tier", - "present": "tiers", - "gerund": "tiering", - "past": "tiered", - "past_participle": "tiered" - }, - { - "infinitive": "cabbage", - "present": "cabbages", - "gerund": "cabbaging", - "past": "cabbaged", - "past_participle": "cabbaged" - }, - { - "infinitive": "hawk", - "present": "hawks", - "gerund": "hawking", - "past": "hawked", - "past_participle": "hawked" - }, - { - "infinitive": "autograph", - "present": "autographs", - "gerund": "autographing", - "past": "autographed", - "past_participle": "autographed" - }, - { - "infinitive": "counter", - "present": "counters", - "gerund": "countering", - "past": "countered", - "past_participle": "countered" - }, - { - "infinitive": "roughcast", - "present": "rough-casts", - "gerund": "rough-casting", - "past": "roughcast", - "past_participle": "roughcast" - }, - { - "infinitive": "writ", - "present": "writs", - "gerund": "writing", - "past": "writed", - "past_participle": "writed" - }, - { - "infinitive": "allot", - "present": "allots", - "gerund": "allotting", - "past": "allotted", - "past_participle": "allotted" - }, - { - "infinitive": "allow", - "present": "allows", - "gerund": "allowing", - "past": "allowed", - "past_participle": "allowed" - }, - { - "infinitive": "lactate", - "present": "lactates", - "gerund": "lactating", - "past": "lactated", - "past_participle": "lactated" - }, - { - "infinitive": "alloy", - "present": "alloys", - "gerund": "alloying", - "past": "alloyed", - "past_participle": "alloyed" - }, - { - "infinitive": "presuppose", - "present": "presupposes", - "gerund": "presupposing", - "past": "presupposed", - "past_participle": "presupposed" - }, - { - "infinitive": "incandesce", - "present": "incandesces", - "gerund": "incandescing", - "past": "incandesced", - "past_participle": "incandesced" - }, - { - "infinitive": "interstratify", - "present": "interstratifies", - "gerund": "interstratifying", - "past": "interstratified", - "past_participle": "interstratified" - }, - { - "infinitive": "mute", - "present": "mutes", - "gerund": "muting", - "past": "muted", - "past_participle": "muted" - }, - { - "infinitive": "move", - "present": "moves", - "gerund": "moving", - "past": "moved", - "past_participle": "moved" - }, - { - "infinitive": "parleyvoo", - "present": "parleyvoos", - "gerund": "parleyvooing", - "past": "parleyvooed", - "past_participle": "parleyvooed" - }, - { - "infinitive": "phenolate", - "present": "phenolates", - "gerund": "phenolating", - "past": "phenolated", - "past_participle": "phenolated" - }, - { - "infinitive": "perfect", - "present": "perfects", - "gerund": "perfecting", - "past": "perfected", - "past_participle": "perfected" - }, - { - "infinitive": "interlineate", - "present": "interlines", - "gerund": "interlining", - "past": "interlined", - "past_participle": "interlined" - }, - { - "infinitive": "decay", - "present": "decays", - "gerund": "decaying", - "past": "decayed", - "past_participle": "decayed" - }, - { - "infinitive": "hypothesize", - "present": "hypothesizes", - "gerund": "hypothesizing", - "past": "hypothesized", - "past_participle": "hypothesized" - }, - { - "infinitive": "dispose", - "present": "disposes", - "gerund": "disposing", - "past": "disposed", - "past_participle": "disposed" - }, - { - "infinitive": "interlink", - "present": "interlinks", - "gerund": "interlinking", - "past": "interlinked", - "past_participle": "interlinked" - }, - { - "infinitive": "shudder", - "present": "shudders", - "gerund": "shuddering", - "past": "shuddered", - "past_participle": "shuddered" - }, - { - "infinitive": "decal", - "present": "decals", - "gerund": "decaling", - "past": "decaled", - "past_participle": "decaled" - }, - { - "infinitive": "cosponsor", - "present": "cosponsors", - "gerund": "cosponsoring", - "past": "cosponsored", - "past_participle": "cosponsored" - }, - { - "infinitive": "prosper", - "present": "prospers", - "gerund": "prospering", - "past": "prospered", - "past_participle": "prospered" - }, - { - "infinitive": "impetrate", - "present": "impetrates", - "gerund": "impetrating", - "past": "impetrated", - "past_participle": "impetrated" - }, - { - "infinitive": "garb", - "present": "garbs", - "gerund": "garbing", - "past": "garbed", - "past_participle": "garbed" - }, - { - "infinitive": "Hebraize", - "present": "Hebraizes", - "gerund": "Hebraizing", - "past": "Hebraized", - "past_participle": "Hebraized" - }, - { - "infinitive": "earn", - "present": "earns", - "gerund": "earning", - "past": "earned", - "past_participle": "earned" - }, - { - "infinitive": "launder", - "present": "launders", - "gerund": "laundering", - "past": "laundered", - "past_participle": "laundered" - }, - { - "infinitive": "dock", - "present": "docks", - "gerund": "docking", - "past": "docked", - "past_participle": "docked" - }, - { - "infinitive": "sandpaper", - "present": "sandpapers", - "gerund": "sandpapering", - "past": "sandpapered", - "past_participle": "sandpapered" - }, - { - "infinitive": "kiss", - "present": "kisses", - "gerund": "kissing", - "past": "kissed", - "past_participle": "kissed" - }, - { - "infinitive": "cage", - "present": "cages", - "gerund": "caging", - "past": "caged", - "past_participle": "caged" - }, - { - "infinitive": "realize", - "present": "realizes", - "gerund": "realizing", - "past": "realized", - "past_participle": "realized" - }, - { - "infinitive": "annotate", - "present": "annotates", - "gerund": "annotating", - "past": "annotated", - "past_participle": "annotated" - }, - { - "infinitive": "vernalize", - "present": "vernalizes", - "gerund": "vernalizing", - "past": "vernalized", - "past_participle": "vernalized" - }, - { - "infinitive": "concave", - "present": "concaves", - "gerund": "concaving", - "past": "concaved", - "past_participle": "concaved" - }, - { - "infinitive": "feminize", - "present": "feminizes", - "gerund": "feminizing", - "past": "feminized", - "past_participle": "feminized" - }, - { - "infinitive": "colonize", - "present": "colonizes", - "gerund": "colonizing", - "past": "colonized", - "past_participle": "colonized" - }, - { - "infinitive": "effuse", - "present": "effuses", - "gerund": "effusing", - "past": "effused", - "past_participle": "effused" - }, - { - "infinitive": "scorch", - "present": "scorches", - "gerund": "scorching", - "past": "scorched", - "past_participle": "scorched" - }, - { - "infinitive": "bump", - "present": "bumps", - "gerund": "bumping", - "past": "bumped", - "past_participle": "bumped" - }, - { - "infinitive": "variegate", - "present": "variegates", - "gerund": "variegating", - "past": "variegated", - "past_participle": "variegated" - }, - { - "infinitive": "tack", - "present": "tacks", - "gerund": "tacking", - "past": "tacked", - "past_participle": "tacked" - }, - { - "infinitive": "xylograph", - "present": "xylographs", - "gerund": "xylographing", - "past": "xylographed", - "past_participle": "xylographed" - }, - { - "infinitive": "castigate", - "present": "castigates", - "gerund": "castigating", - "past": "castigated", - "past_participle": "castigated" - }, - { - "infinitive": "mete", - "present": "metes", - "gerund": "meting", - "past": "meted", - "past_participle": "meted" - }, - { - "infinitive": "differ", - "present": "differs", - "gerund": "differing", - "past": "differed", - "past_participle": "differed" - }, - { - "infinitive": "hackle", - "present": "hackles", - "gerund": "hackling", - "past": "hackled", - "past_participle": "hackled" - }, - { - "infinitive": "wander", - "present": "wanders", - "gerund": "wandering", - "past": "wandered", - "past_participle": "wandered" - }, - { - "infinitive": "witness", - "present": "witnesses", - "gerund": "witnessing", - "past": "witnessed", - "past_participle": "witnessed" - }, - { - "infinitive": "cess", - "present": "cesses", - "gerund": "cessing", - "past": "cessed", - "past_participle": "cessed" - }, - { - "infinitive": "burke", - "present": "burkes", - "gerund": "burking", - "past": "burked", - "past_participle": "burked" - }, - { - "infinitive": "stare", - "present": "stares", - "gerund": "staring", - "past": "stared", - "past_participle": "stared" - }, - { - "infinitive": "shut", - "present": "shuts", - "gerund": "shutting", - "past": "shut", - "past_participle": "shut" - }, - { - "infinitive": "wallpaper", - "present": "wallpapers", - "gerund": "wallpapering", - "past": "wallpapered", - "past_participle": "wallpapered" - }, - { - "infinitive": "perish", - "present": "perishes", - "gerund": "perishing", - "past": "perished", - "past_participle": "perished" - }, - { - "infinitive": "hydrogenize", - "present": "hydrogenizes", - "gerund": "hydrogenizing", - "past": "hydrogenized", - "past_participle": "hydrogenized" - }, - { - "infinitive": "expurgate", - "present": "expurgates", - "gerund": "expurgating", - "past": "expurgated", - "past_participle": "expurgated" - }, - { - "infinitive": "decoct", - "present": "decocts", - "gerund": "decocting", - "past": "decocted", - "past_participle": "decocted" - }, - { - "infinitive": "graze", - "present": "grazes", - "gerund": "grazing", - "past": "grazed", - "past_participle": "grazed" - }, - { - "infinitive": "tempt", - "present": "tempts", - "gerund": "tempting", - "past": "tempted", - "past_participle": "tempted" - }, - { - "infinitive": "initialize", - "present": "initializes", - "gerund": "initializing", - "past": "initialized", - "past_participle": "initialized" - }, - { - "infinitive": "embarrass", - "present": "embarrasses", - "gerund": "embarrassing", - "past": "embarrassed", - "past_participle": "embarrassed" - }, - { - "infinitive": "gusset", - "present": "gussets", - "gerund": "gusseting", - "past": "gusseted", - "past_participle": "gusseted" - }, - { - "infinitive": "prepare", - "present": "prepares", - "gerund": "preparing", - "past": "prepared", - "past_participle": "prepared" - }, - { - "infinitive": "spill", - "present": "spills", - "gerund": "spilling", - "past": "spilt", - "past_participle": "spilt" - }, - { - "infinitive": "scarp", - "present": "scarps", - "gerund": "scarping", - "past": "scarped", - "past_participle": "scarped" - }, - { - "infinitive": "put", - "present": "puts", - "gerund": "putting", - "past": "put", - "past_participle": "put" - }, - { - "infinitive": "spile", - "present": "spiles", - "gerund": "spiling", - "past": "spiled", - "past_participle": "spiled" - }, - { - "infinitive": "scare", - "present": "scares", - "gerund": "scaring", - "past": "scared", - "past_participle": "scared" - }, - { - "infinitive": "cannonball", - "present": "cannonballs", - "gerund": "cannonballing", - "past": "cannonballed", - "past_participle": "cannonballed" - }, - { - "infinitive": "scend", - "present": "scends", - "gerund": "scending", - "past": "sended", - "past_participle": "sended" - }, - { - "infinitive": "dogmatize", - "present": "dogmatizes", - "gerund": "dogmatizing", - "past": "dogmatized", - "past_participle": "dogmatized" - }, - { - "infinitive": "scent", - "present": "scents", - "gerund": "scenting", - "past": "scented", - "past_participle": "scented" - }, - { - "infinitive": "badmouth", - "present": "badmouths", - "gerund": "badmouthing", - "past": "badmouthed", - "past_participle": "badmouthed" - }, - { - "infinitive": "prank", - "present": "pranks", - "gerund": "pranking", - "past": "pranked", - "past_participle": "pranked" - }, - { - "infinitive": "impulse-buy", - "present": "impulse-buys", - "gerund": "impulse-buying", - "past": "impulse-bought", - "past_participle": "impulse-bought" - }, - { - "infinitive": "dilapidate", - "present": "dilapidates", - "gerund": "dilapidating", - "past": "dilapidated", - "past_participle": "dilapidated" - }, - { - "infinitive": "fray", - "present": "frays", - "gerund": "fraying", - "past": "frayed", - "past_participle": "frayed" - }, - { - "infinitive": "haver", - "present": "havers", - "gerund": "havering", - "past": "havered", - "past_participle": "havered" - }, - { - "infinitive": "accompany", - "present": "accompanies", - "gerund": "accompanying", - "past": "accompanied", - "past_participle": "accompanied" - }, - { - "infinitive": "aerate", - "present": "aerates", - "gerund": "aerating", - "past": "aerated", - "past_participle": "aerated" - }, - { - "infinitive": "chagrin", - "present": "chagrins", - "gerund": "chagrining", - "past": "chagrined", - "past_participle": "chagrined" - }, - { - "infinitive": "barnstorm", - "present": "barnstorms", - "gerund": "barnstorming", - "past": "barnstormed", - "past_participle": "barnstormed" - }, - { - "infinitive": "burlesque", - "present": "burlesques", - "gerund": "burlesquing", - "past": "burlesqued", - "past_participle": "burlesqued" - }, - { - "infinitive": "nebulize", - "present": "nebulizes", - "gerund": "nebulizing", - "past": "nebulized", - "past_participle": "nebulized" - }, - { - "infinitive": "thresh", - "present": "threshes", - "gerund": "threshing", - "past": "threshed", - "past_participle": "threshed" - }, - { - "infinitive": "haven", - "present": "havens", - "gerund": "havening", - "past": "havened", - "past_participle": "havened" - }, - { - "infinitive": "steel", - "present": "steels", - "gerund": "steeling", - "past": "steeled", - "past_participle": "steeled" - }, - { - "infinitive": "copyread", - "present": "copyreads", - "gerund": "copyreading", - "past": "copyread", - "past_participle": "copyread" - }, - { - "infinitive": "wet", - "present": "wets", - "gerund": "wetting", - "past": "wetted", - "past_participle": "wetted" - }, - { - "infinitive": "dower", - "present": "dowers", - "gerund": "dowering", - "past": "dowered", - "past_participle": "dowered" - }, - { - "infinitive": "caponize", - "present": "caponizes", - "gerund": "caponizing", - "past": "caponized", - "past_participle": "caponized" - }, - { - "infinitive": "traipse", - "present": "traipses", - "gerund": "traipsing", - "past": "traipsed", - "past_participle": "traipsed" - }, - { - "infinitive": "intertwine", - "present": "intertwines", - "gerund": "intertwining", - "past": "intertwined", - "past_participle": "intertwined" - }, - { - "infinitive": "disband", - "present": "disbands", - "gerund": "disbanding", - "past": "disbanded", - "past_participle": "disbanded" - }, - { - "infinitive": "unman", - "present": "unmans", - "gerund": "unmanning", - "past": "unmanned", - "past_participle": "unmanned" - }, - { - "infinitive": "amble", - "present": "ambles", - "gerund": "ambling", - "past": "ambled", - "past_participle": "ambled" - }, - { - "infinitive": "misunderstand", - "present": "misunderstands", - "gerund": "misunderstanding", - "past": "misunderstood", - "past_participle": "misunderstood" - }, - { - "infinitive": "prefabricate", - "present": "prefabricates", - "gerund": "prefabricating", - "past": "prefabricated", - "past_participle": "prefabricated" - }, - { - "infinitive": "beggar", - "present": "beggars", - "gerund": "beggaring", - "past": "beggared", - "past_participle": "beggared" - }, - { - "infinitive": "leach", - "present": "leaches", - "gerund": "leaching", - "past": "leached", - "past_participle": "leached" - }, - { - "infinitive": "gentle", - "present": "gentles", - "gerund": "gentling", - "past": "gentled", - "past_participle": "gentled" - }, - { - "infinitive": "skinnydip", - "present": "skinnydips", - "gerund": "skinnydipping", - "past": "skinnydipped", - "past_participle": "skinnydipped" - }, - { - "infinitive": "delaminate", - "present": "delaminates", - "gerund": "delaminating", - "past": "delaminated", - "past_participle": "delaminated" - }, - { - "infinitive": "outplay", - "present": "outplays", - "gerund": "outplaying", - "past": "outplayed", - "past_participle": "outplayed" - }, - { - "infinitive": "heft", - "present": "hefts", - "gerund": "hefting", - "past": "hefted", - "past_participle": "hefted" - }, - { - "infinitive": "soak", - "present": "soaks", - "gerund": "soaking", - "past": "soaked", - "past_participle": "soaked" - }, - { - "infinitive": "photolithograph", - "present": "photolithographs", - "gerund": "photolithographing", - "past": "photolithographed", - "past_participle": "photolithographed" - }, - { - "infinitive": "apprize", - "present": "apprizes", - "gerund": "apprizing", - "past": "apprized", - "past_participle": "apprized" - }, - { - "infinitive": "lilt", - "present": "lilts", - "gerund": "lilting", - "past": "lilted", - "past_participle": "lilted" - }, - { - "infinitive": "cozen", - "present": "cozens", - "gerund": "cozening", - "past": "cozened", - "past_participle": "cozened" - }, - { - "infinitive": "soap", - "present": "soaps", - "gerund": "soaping", - "past": "soaped", - "past_participle": "soaped" - }, - { - "infinitive": "soar", - "present": "soars", - "gerund": "soaring", - "past": "soared", - "past_participle": "soared" - }, - { - "infinitive": "voyage", - "present": "voyages", - "gerund": "voyaging", - "past": "voyaged", - "past_participle": "voyaged" - }, - { - "infinitive": "cipher", - "present": "ciphers", - "gerund": "ciphering", - "past": "ciphered", - "past_participle": "ciphered" - }, - { - "infinitive": "vise", - "present": "vises", - "gerund": "vising", - "past": "vised", - "past_participle": "vised" - }, - { - "infinitive": "medal", - "present": "medals", - "gerund": "medalling", - "past": "medalled", - "past_participle": "medalled" - }, - { - "infinitive": "tergiversate", - "present": "tergiversates", - "gerund": "tergiversating", - "past": "tergiversated", - "past_participle": "tergiversated" - }, - { - "infinitive": "duff", - "present": "duffs", - "gerund": "duffing", - "past": "duffed", - "past_participle": "duffed" - }, - { - "infinitive": "underset", - "present": "undersets", - "gerund": "undersetting", - "past": "underset", - "past_participle": "underset" - }, - { - "infinitive": "amortize", - "present": "amortizes", - "gerund": "amortizing", - "past": "amortized", - "past_participle": "amortized" - }, - { - "infinitive": "brey", - "present": "breys", - "gerund": "breying", - "past": "breyed", - "past_participle": "breyed" - }, - { - "infinitive": "reignite", - "present": "reignites", - "gerund": "reigniting", - "past": "reignited", - "past_participle": "reignited" - }, - { - "infinitive": "enlist", - "present": "enlists", - "gerund": "enlisting", - "past": "enlisted", - "past_participle": "enlisted" - }, - { - "infinitive": "unscramble", - "present": "unscrambles", - "gerund": "unscrambling", - "past": "unscrambled", - "past_participle": "unscrambled" - }, - { - "infinitive": "sideslip", - "present": "sideslips", - "gerund": "sideslipping", - "past": "sideslipped", - "past_participle": "sideslipped" - }, - { - "infinitive": "brew", - "present": "brews", - "gerund": "brewing", - "past": "brewed", - "past_participle": "brewed" - }, - { - "infinitive": "overrate", - "present": "overrates", - "gerund": "overrating", - "past": "overrated", - "past_participle": "overrated" - }, - { - "infinitive": "terminate", - "present": "terminates", - "gerund": "terminating", - "past": "terminated", - "past_participle": "terminated" - }, - { - "infinitive": "dissociate", - "present": "dissociates", - "gerund": "dissociating", - "past": "dissociated", - "past_participle": "dissociated" - }, - { - "infinitive": "crimple", - "present": "crimples", - "gerund": "crimpling", - "past": "crimpled", - "past_participle": "crimpled" - }, - { - "infinitive": "brine", - "present": "brines", - "gerund": "brining", - "past": "brined", - "past_participle": "brined" - }, - { - "infinitive": "rouge", - "present": "rouges", - "gerund": "rouging", - "past": "rouged", - "past_participle": "rouged" - }, - { - "infinitive": "rough", - "present": "roughs", - "gerund": "roughing", - "past": "roughed", - "past_participle": "roughed" - }, - { - "infinitive": "miniaturize", - "present": "miniaturizes", - "gerund": "miniaturizing", - "past": "miniaturized", - "past_participle": "miniaturized" - }, - { - "infinitive": "redirect", - "present": "redirects", - "gerund": "redirecting", - "past": "redirected", - "past_participle": "redirected" - }, - { - "infinitive": "foredoom", - "present": "foredooms", - "gerund": "foredooming", - "past": "foredoomed", - "past_participle": "foredoomed" - }, - { - "infinitive": "disillusion", - "present": "disillusions", - "gerund": "disillusioning", - "past": "disillusioned", - "past_participle": "disillusioned" - }, - { - "infinitive": "pause", - "present": "pauses", - "gerund": "pausing", - "past": "paused", - "past_participle": "paused" - }, - { - "infinitive": "typewrite", - "present": "typewrites", - "gerund": "typewriting", - "past": "typewrote", - "past_participle": "typewritten" - }, - { - "infinitive": "jaw", - "present": "jaws", - "gerund": "jawing", - "past": "jawed", - "past_participle": "jawed" - }, - { - "infinitive": "transfix", - "present": "transfixes", - "gerund": "transfixing", - "past": "transfixed", - "past_participle": "transfixed" - }, - { - "infinitive": "jar", - "present": "jars", - "gerund": "jarring", - "past": "jarred", - "past_participle": "jarred" - }, - { - "infinitive": "should", - "present": "shoulds", - "gerund": "shoulding", - "past": "shoulded", - "past_participle": "shoulded" - }, - { - "infinitive": "cocainize", - "present": "cocainizes", - "gerund": "cocainizing", - "past": "cocainized", - "past_participle": "cocainized" - }, - { - "infinitive": "jam", - "present": "jams", - "gerund": "jamming", - "past": "jammed", - "past_participle": "jammed" - }, - { - "infinitive": "tape", - "present": "tapes", - "gerund": "taping", - "past": "taped", - "past_participle": "taped" - }, - { - "infinitive": "unhallow", - "present": "unhallows", - "gerund": "unhallowing", - "past": "unhallowed", - "past_participle": "unhallowed" - }, - { - "infinitive": "enwomb", - "present": "enwombs", - "gerund": "enwombing", - "past": "enwombed", - "past_participle": "enwombed" - }, - { - "infinitive": "jagg", - "present": "jags", - "gerund": "jagging", - "past": "jagged", - "past_participle": "jagged" - }, - { - "infinitive": "anneal", - "present": "anneals", - "gerund": "annealing", - "past": "annealed", - "past_participle": "annealed" - }, - { - "infinitive": "flinch", - "present": "flinches", - "gerund": "flinching", - "past": "flinched", - "past_participle": "flinched" - }, - { - "infinitive": "hope", - "present": "hopes", - "gerund": "hoping", - "past": "hoped", - "past_participle": "hoped" - }, - { - "infinitive": "handle", - "present": "handles", - "gerund": "handling", - "past": "handled", - "past_participle": "handled" - }, - { - "infinitive": "winterkill", - "present": "winterkills", - "gerund": "winterkilling", - "past": "winterkilled", - "past_participle": "winterkilled" - }, - { - "infinitive": "scutch", - "present": "scutches", - "gerund": "scutching", - "past": "scutched", - "past_participle": "scutched" - }, - { - "infinitive": "pearl", - "present": "pearls", - "gerund": "pearling", - "past": "pearled", - "past_participle": "pearled" - }, - { - "infinitive": "wiggle", - "present": "wiggles", - "gerund": "wiggling", - "past": "wiggled", - "past_participle": "wiggled" - }, - { - "infinitive": "rubricate", - "present": "rubricates", - "gerund": "rubricating", - "past": "rubricated", - "past_participle": "rubricated" - }, - { - "infinitive": "wring", - "present": "wrings", - "gerund": "wringing", - "past": "wrung", - "past_participle": "wrung" - }, - { - "infinitive": "smash", - "present": "smashes", - "gerund": "smashing", - "past": "smashed", - "past_participle": "smashed" - }, - { - "infinitive": "dishearten", - "present": "disheartens", - "gerund": "disheartening", - "past": "disheartened", - "past_participle": "disheartened" - }, - { - "infinitive": "summons", - "present": "summons", - "gerund": "summoning", - "past": "summoned", - "past_participle": "summoned" - }, - { - "infinitive": "transpierce", - "present": "transpierces", - "gerund": "transpiercing", - "past": "transpierced", - "past_participle": "transpierced" - }, - { - "infinitive": "rappel", - "present": "rappels", - "gerund": "rappelling", - "past": "rappelled", - "past_participle": "rappelled" - }, - { - "infinitive": "stuff", - "present": "stuffs", - "gerund": "stuffing", - "past": "stuffed", - "past_participle": "stuffed" - }, - { - "infinitive": "levigate", - "present": "levigates", - "gerund": "levigating", - "past": "levigated", - "past_participle": "levigated" - }, - { - "infinitive": "rein", - "present": "reins", - "gerund": "reining", - "past": "reined", - "past_participle": "reined" - }, - { - "infinitive": "exude", - "present": "exudes", - "gerund": "exuding", - "past": "exuded", - "past_participle": "exuded" - }, - { - "infinitive": "preserve", - "present": "preserves", - "gerund": "preserving", - "past": "preserved", - "past_participle": "preserved" - }, - { - "infinitive": "frame", - "present": "frames", - "gerund": "framing", - "past": "framed", - "past_participle": "framed" - }, - { - "infinitive": "packet", - "present": "packets", - "gerund": "packeting", - "past": "packeted", - "past_participle": "packeted" - }, - { - "infinitive": "sclaff", - "present": "sclaffs", - "gerund": "sclaffing", - "past": "sclaffed", - "past_participle": "sclaffed" - }, - { - "infinitive": "tiptoe", - "present": "tiptoes", - "gerund": "tiptoeing", - "past": "tiptoed", - "past_participle": "tiptoed" - }, - { - "infinitive": "wire", - "present": "wires", - "gerund": "wiring", - "past": "wired", - "past_participle": "wired" - }, - { - "infinitive": "cense", - "present": "censes", - "gerund": "censing", - "past": "censed", - "past_participle": "censed" - }, - { - "infinitive": "posse", - "present": "", - "gerund": "possing", - "past": "possed", - "past_participle": "possed" - }, - { - "infinitive": "macadamize", - "present": "macadamizes", - "gerund": "macadamizing", - "past": "macadamized", - "past_participle": "macadamized" - }, - { - "infinitive": "slack", - "present": "slacks", - "gerund": "slacking", - "past": "slacked", - "past_participle": "slacked" - }, - { - "infinitive": "destine", - "present": "destines", - "gerund": "destining", - "past": "destined", - "past_participle": "destined" - }, - { - "infinitive": "pistol", - "present": "pistols", - "gerund": "pistolling", - "past": "pistolled", - "past_participle": "pistolled" - }, - { - "infinitive": "crossstitch", - "present": "crossstitches", - "gerund": "crossstitching", - "past": "crossstitched", - "past_participle": "crossstitched" - }, - { - "infinitive": "keynote", - "present": "keynotes", - "gerund": "keynoting", - "past": "keynoted", - "past_participle": "keynoted" - }, - { - "infinitive": "tenter", - "present": "tenters", - "gerund": "tentering", - "past": "tentered", - "past_participle": "tentered" - }, - { - "infinitive": "interpolate", - "present": "interpolates", - "gerund": "interpolating", - "past": "interpolated", - "past_participle": "interpolated" - }, - { - "infinitive": "weary", - "present": "wearies", - "gerund": "wearying", - "past": "wearied", - "past_participle": "wearied" - }, - { - "infinitive": "drum", - "present": "drums", - "gerund": "drumming", - "past": "drummed", - "past_participle": "drummed" - }, - { - "infinitive": "forcefeed", - "present": "forcefeeds", - "gerund": "forcefeeding", - "past": "forcefed", - "past_participle": "forcefed" - }, - { - "infinitive": "drub", - "present": "drubs", - "gerund": "drubbing", - "past": "drubbed", - "past_participle": "drubbed" - }, - { - "infinitive": "ramp", - "present": "ramps", - "gerund": "ramping", - "past": "ramped", - "past_participle": "ramped" - }, - { - "infinitive": "drug", - "present": "drugs", - "gerund": "drugging", - "past": "drugged", - "past_participle": "drugged" - }, - { - "infinitive": "disenthrall", - "present": "disenthrals", - "gerund": "disenthralling", - "past": "disenthralled", - "past_participle": "disenthralled" - }, - { - "infinitive": "cinder", - "present": "cinders", - "gerund": "cindering", - "past": "cindered", - "past_participle": "cindered" - }, - { - "infinitive": "itemize", - "present": "itemizes", - "gerund": "itemizing", - "past": "itemized", - "past_participle": "itemized" - }, - { - "infinitive": "ticktock", - "present": "ticktocks", - "gerund": "ticktocking", - "past": "ticktocked", - "past_participle": "ticktocked" - }, - { - "infinitive": "roughen", - "present": "roughens", - "gerund": "roughening", - "past": "roughened", - "past_participle": "roughened" - }, - { - "infinitive": "conclude", - "present": "concludes", - "gerund": "concluding", - "past": "concluded", - "past_participle": "concluded" - }, - { - "infinitive": "revamp", - "present": "revamps", - "gerund": "revamping", - "past": "revamped", - "past_participle": "revamped" - }, - { - "infinitive": "distill", - "present": "distils", - "gerund": "distilling", - "past": "distilled", - "past_participle": "distilled" - }, - { - "infinitive": "lustrate", - "present": "lustrates", - "gerund": "lustrating", - "past": "lustrated", - "past_participle": "lustrated" - }, - { - "infinitive": "indict", - "present": "indicts", - "gerund": "indicting", - "past": "indicted", - "past_participle": "indicted" - }, - { - "infinitive": "denitrate", - "present": "denitrates", - "gerund": "denitrating", - "past": "denitrated", - "past_participle": "denitrated" - }, - { - "infinitive": "jubilate", - "present": "jubilates", - "gerund": "jubilating", - "past": "jubilated", - "past_participle": "jubilated" - }, - { - "infinitive": "elute", - "present": "elutes", - "gerund": "eluting", - "past": "eluted", - "past_participle": "eluted" - }, - { - "infinitive": "disject", - "present": "disjects", - "gerund": "disjecting", - "past": "disjected", - "past_participle": "disjected" - }, - { - "infinitive": "quaver", - "present": "quavers", - "gerund": "quavering", - "past": "quavered", - "past_participle": "quavered" - }, - { - "infinitive": "mismanage", - "present": "mismanages", - "gerund": "mismanaging", - "past": "mismanaged", - "past_participle": "mismanaged" - }, - { - "infinitive": "entitle", - "present": "entitles", - "gerund": "entitling", - "past": "entitled", - "past_participle": "entitled" - }, - { - "infinitive": "feather", - "present": "feathers", - "gerund": "feathering", - "past": "feathered", - "past_participle": "feathered" - }, - { - "infinitive": "waste", - "present": "wastes", - "gerund": "wasting", - "past": "wasted", - "past_participle": "wasted" - }, - { - "infinitive": "deflower", - "present": "deflowers", - "gerund": "deflowering", - "past": "deflowered", - "past_participle": "deflowered" - }, - { - "infinitive": "ballast", - "present": "ballasts", - "gerund": "ballasting", - "past": "ballasted", - "past_participle": "ballasted" - }, - { - "infinitive": "crisscross", - "present": "crisscrosses", - "gerund": "crisscrossing", - "past": "crisscrossed", - "past_participle": "crisscrossed" - }, - { - "infinitive": "huggermugger", - "present": "huggermuggers", - "gerund": "huggermuggering", - "past": "huggermuggered", - "past_participle": "huggermuggered" - }, - { - "infinitive": "neighbour", - "present": "neighbours", - "gerund": "neighbouring", - "past": "neighboured", - "past_participle": "neighboured" - }, - { - "infinitive": "globe-trot", - "present": "globe-trots", - "gerund": "globe-trotting", - "past": "globe-trotted", - "past_participle": "globe-trotted" - }, - { - "infinitive": "misguide", - "present": "misguides", - "gerund": "misguiding", - "past": "misguided", - "past_participle": "misguided" - }, - { - "infinitive": "banish", - "present": "banishes", - "gerund": "banishing", - "past": "banished", - "past_participle": "banished" - }, - { - "infinitive": "afforest", - "present": "afforests", - "gerund": "afforesting", - "past": "afforested", - "past_participle": "afforested" - }, - { - "infinitive": "bespangle", - "present": "bespangles", - "gerund": "bespangling", - "past": "bespangled", - "past_participle": "bespangled" - }, - { - "infinitive": "fornicate", - "present": "fornicates", - "gerund": "fornicating", - "past": "fornicated", - "past_participle": "fornicated" - }, - { - "infinitive": "sentimentalize", - "present": "sentimentalizes", - "gerund": "sentimentalizing", - "past": "sentimentalized", - "past_participle": "sentimentalized" - }, - { - "infinitive": "work-to-rule", - "present": "", - "gerund": "work-to-ruling", - "past": "work-to-ruled", - "past_participle": "work-to-ruled" - }, - { - "infinitive": "maul", - "present": "mauls", - "gerund": "mauling", - "past": "mauled", - "past_participle": "mauled" - }, - { - "infinitive": "groin", - "present": "groins", - "gerund": "groining", - "past": "groined", - "past_participle": "groined" - }, - { - "infinitive": "inarch", - "present": "inarches", - "gerund": "inarching", - "past": "inarched", - "past_participle": "inarched" - }, - { - "infinitive": "eyeball", - "present": "eyeballs", - "gerund": "eyeballing", - "past": "eyeballed", - "past_participle": "eyeballed" - }, - { - "infinitive": "nictitate", - "present": "nictitates", - "gerund": "nictitating", - "past": "nictitated", - "past_participle": "nictitated" - }, - { - "infinitive": "tenon", - "present": "tenons", - "gerund": "tenoning", - "past": "tenoned", - "past_participle": "tenoned" - }, - { - "infinitive": "lush", - "present": "lushes", - "gerund": "lushing", - "past": "lushed", - "past_participle": "lushed" - }, - { - "infinitive": "site", - "present": "sites", - "gerund": "siting", - "past": "sited", - "past_participle": "sited" - }, - { - "infinitive": "lust", - "present": "lusts", - "gerund": "lusting", - "past": "lusted", - "past_participle": "lusted" - }, - { - "infinitive": "denuclearize", - "present": "denuclearizes", - "gerund": "denuclearizing", - "past": "denuclearized", - "past_participle": "denuclearized" - }, - { - "infinitive": "dag", - "present": "dags", - "gerund": "dagging", - "past": "dagged", - "past_participle": "dagged" - }, - { - "infinitive": "overspend", - "present": "overspends", - "gerund": "overspending", - "past": "overspent", - "past_participle": "overspent" - }, - { - "infinitive": "conserve", - "present": "conserves", - "gerund": "conserving", - "past": "conserved", - "past_participle": "conserved" - }, - { - "infinitive": "ransom", - "present": "ransoms", - "gerund": "ransoming", - "past": "ransomed", - "past_participle": "ransomed" - }, - { - "infinitive": "tattoo", - "present": "tattoos", - "gerund": "tattooing", - "past": "tattooed", - "past_participle": "tattooed" - }, - { - "infinitive": "dilate", - "present": "dilates", - "gerund": "dilating", - "past": "dilated", - "past_participle": "dilated" - }, - { - "infinitive": "ligature", - "present": "ligatures", - "gerund": "ligaturing", - "past": "ligatured", - "past_participle": "ligatured" - }, - { - "infinitive": "incarnadine", - "present": "incarnadines", - "gerund": "incarnadining", - "past": "incarnadined", - "past_participle": "incarnadined" - }, - { - "infinitive": "romance", - "present": "romances", - "gerund": "romancing", - "past": "romanced", - "past_participle": "romanced" - }, - { - "infinitive": "belch", - "present": "belches", - "gerund": "belching", - "past": "belched", - "past_participle": "belched" - }, - { - "infinitive": "unteach", - "present": "unteaches", - "gerund": "unteaching", - "past": "untaught", - "past_participle": "untaught" - }, - { - "infinitive": "covenant", - "present": "covenants", - "gerund": "covenanting", - "past": "covenanted", - "past_participle": "covenanted" - }, - { - "infinitive": "ball", - "present": "balls", - "gerund": "balling", - "past": "balled", - "past_participle": "balled" - }, - { - "infinitive": "baulk", - "present": "baulks", - "gerund": "baulking", - "past": "baulked", - "past_participle": "baulked" - }, - { - "infinitive": "dusk", - "present": "dusks", - "gerund": "dusking", - "past": "dusked", - "past_participle": "dusked" - }, - { - "infinitive": "bale", - "present": "bales", - "gerund": "baling", - "past": "baled", - "past_participle": "baled" - }, - { - "infinitive": "drink", - "present": "drinks", - "gerund": "drinking", - "past": "drank", - "past_participle": "drunk" - }, - { - "infinitive": "tassel", - "present": "tassels", - "gerund": "tasselling", - "past": "tasselled", - "past_participle": "tasselled" - }, - { - "infinitive": "weigh", - "present": "weighs", - "gerund": "weighing", - "past": "weighed", - "past_participle": "weighed" - }, - { - "infinitive": "dust", - "present": "dusts", - "gerund": "dusting", - "past": "dusted", - "past_participle": "dusted" - }, - { - "infinitive": "nidify", - "present": "nidifies", - "gerund": "nidifying", - "past": "nidified", - "past_participle": "nidified" - }, - { - "infinitive": "expand", - "present": "expands", - "gerund": "expanding", - "past": "expanded", - "past_participle": "expanded" - }, - { - "infinitive": "audit", - "present": "audits", - "gerund": "auditing", - "past": "audited", - "past_participle": "audited" - }, - { - "infinitive": "dislocate", - "present": "dislocates", - "gerund": "dislocating", - "past": "dislocated", - "past_participle": "dislocated" - }, - { - "infinitive": "fascinate", - "present": "fascinates", - "gerund": "fascinating", - "past": "fascinated", - "past_participle": "fascinated" - }, - { - "infinitive": "trudge", - "present": "trudges", - "gerund": "trudging", - "past": "trudged", - "past_participle": "trudged" - }, - { - "infinitive": "shotgun", - "present": "shotguns", - "gerund": "shotgunning", - "past": "shotgunned", - "past_participle": "shotgunned" - }, - { - "infinitive": "colour", - "present": "colours", - "gerund": "colouring", - "past": "coloured", - "past_participle": "coloured" - }, - { - "infinitive": "undernourish", - "present": "undernourishes", - "gerund": "undernourishing", - "past": "undernourished", - "past_participle": "undernourished" - }, - { - "infinitive": "enrage", - "present": "enrages", - "gerund": "enraging", - "past": "enraged", - "past_participle": "enraged" - }, - { - "infinitive": "depurate", - "present": "depurates", - "gerund": "depurating", - "past": "depurated", - "past_participle": "depurated" - }, - { - "infinitive": "command", - "present": "commands", - "gerund": "commanding", - "past": "commanded", - "past_participle": "commanded" - }, - { - "infinitive": "circumstantiate", - "present": "circumstantiates", - "gerund": "circumstantiating", - "past": "circumstantiated", - "past_participle": "circumstantiated" - }, - { - "infinitive": "disrelish", - "present": "disrelishes", - "gerund": "disrelishing", - "past": "disrelished", - "past_participle": "disrelished" - }, - { - "infinitive": "methodize", - "present": "methodizes", - "gerund": "methodizing", - "past": "methodized", - "past_participle": "methodized" - }, - { - "infinitive": "depict", - "present": "depicts", - "gerund": "depicting", - "past": "depicted", - "past_participle": "depicted" - }, - { - "infinitive": "snake", - "present": "snakes", - "gerund": "snaking", - "past": "snaked", - "past_participle": "snaked" - }, - { - "infinitive": "gully", - "present": "gullies", - "gerund": "gullying", - "past": "gullied", - "past_participle": "gullied" - }, - { - "infinitive": "deescalate", - "present": "deescalates", - "gerund": "deescalating", - "past": "deescalated", - "past_participle": "deescalated" - }, - { - "infinitive": "flesh", - "present": "fleshes", - "gerund": "fleshing", - "past": "fleshed", - "past_participle": "fleshed" - }, - { - "infinitive": "overcloud", - "present": "overclouds", - "gerund": "overclouding", - "past": "overclouded", - "past_participle": "overclouded" - }, - { - "infinitive": "glut", - "present": "gluts", - "gerund": "glutting", - "past": "glutted", - "past_participle": "glutted" - }, - { - "infinitive": "inmesh", - "present": "inmeshes", - "gerund": "inmeshing", - "past": "inmeshed", - "past_participle": "inmeshed" - }, - { - "infinitive": "parabolize", - "present": "parabolizes", - "gerund": "parabolizing", - "past": "parabolized", - "past_participle": "parabolized" - }, - { - "infinitive": "glue", - "present": "glues", - "gerund": "gluing", - "past": "glued", - "past_participle": "glued" - }, - { - "infinitive": "permute", - "present": "permutes", - "gerund": "permuting", - "past": "permuted", - "past_participle": "permuted" - }, - { - "infinitive": "web", - "present": "webs", - "gerund": "webbing", - "past": "webbed", - "past_participle": "webbed" - }, - { - "infinitive": "doublebogey", - "present": "doublebogeys", - "gerund": "doublebogeying", - "past": "doublebogeyed", - "past_participle": "doublebogeyed" - }, - { - "infinitive": "wed", - "present": "weds", - "gerund": "wedding", - "past": "wedded", - "past_participle": "wedded" - }, - { - "infinitive": "upraise", - "present": "upraises", - "gerund": "upraising", - "past": "upraised", - "past_participle": "upraised" - }, - { - "infinitive": "lattice", - "present": "lattices", - "gerund": "latticing", - "past": "latticed", - "past_participle": "latticed" - }, - { - "infinitive": "combine", - "present": "combines", - "gerund": "combining", - "past": "combined", - "past_participle": "combined" - }, - { - "infinitive": "exempt", - "present": "exempts", - "gerund": "exempting", - "past": "exempted", - "past_participle": "exempted" - }, - { - "infinitive": "practise", - "present": "practises", - "gerund": "practising", - "past": "practised", - "past_participle": "practised" - }, - { - "infinitive": "syncopate", - "present": "syncopates", - "gerund": "syncopating", - "past": "syncopated", - "past_participle": "syncopated" - }, - { - "infinitive": "magnify", - "present": "magnifies", - "gerund": "magnifying", - "past": "magnified", - "past_participle": "magnified" - }, - { - "infinitive": "taunt", - "present": "taunts", - "gerund": "taunting", - "past": "taunted", - "past_participle": "taunted" - }, - { - "infinitive": "criminalize", - "present": "criminalizes", - "gerund": "criminalizing", - "past": "criminalized", - "past_participle": "criminalized" - }, - { - "infinitive": "haul", - "present": "hauls", - "gerund": "hauling", - "past": "hauled", - "past_participle": "hauled" - }, - { - "infinitive": "supervise", - "present": "supervises", - "gerund": "supervising", - "past": "supervised", - "past_participle": "supervised" - }, - { - "infinitive": "atrophy", - "present": "atrophies", - "gerund": "atrophying", - "past": "atrophied", - "past_participle": "atrophied" - }, - { - "infinitive": "tick", - "present": "ticks", - "gerund": "ticking", - "past": "ticked", - "past_participle": "ticked" - }, - { - "infinitive": "crisp", - "present": "crisps", - "gerund": "crisping", - "past": "crisped", - "past_participle": "crisped" - }, - { - "infinitive": "bulge", - "present": "bulges", - "gerund": "bulging", - "past": "bulged", - "past_participle": "bulged" - }, - { - "infinitive": "resin", - "present": "resins", - "gerund": "resining", - "past": "resined", - "past_participle": "resined" - }, - { - "infinitive": "garage", - "present": "garages", - "gerund": "garaging", - "past": "garaged", - "past_participle": "garaged" - }, - { - "infinitive": "stagger", - "present": "staggers", - "gerund": "staggering", - "past": "staggered", - "past_participle": "staggered" - }, - { - "infinitive": "resit", - "present": "resits", - "gerund": "resitting", - "past": "resat", - "past_participle": "resat" - }, - { - "infinitive": "imprison", - "present": "imprisons", - "gerund": "imprisoning", - "past": "imprisoned", - "past_participle": "imprisoned" - }, - { - "infinitive": "become", - "present": "becomes", - "gerund": "becoming", - "past": "became", - "past_participle": "become" - }, - { - "infinitive": "sprain", - "present": "sprains", - "gerund": "spraining", - "past": "sprained", - "past_participle": "sprained" - }, - { - "infinitive": "guaranty", - "present": "guaranties", - "gerund": "guarantying", - "past": "guarantied", - "past_participle": "guarantied" - }, - { - "infinitive": "mure", - "present": "mures", - "gerund": "muring", - "past": "mured", - "past_participle": "mured" - }, - { - "infinitive": "gride", - "present": "grides", - "gerund": "griding", - "past": "grided", - "past_participle": "grided" - }, - { - "infinitive": "soothsay", - "present": "soothsays", - "gerund": "soothsaying", - "past": "soothsaid", - "past_participle": "soothsaid" - }, - { - "infinitive": "flush", - "present": "flushes", - "gerund": "flushing", - "past": "flushed", - "past_participle": "flushed" - }, - { - "infinitive": "wisecrack", - "present": "wisecracks", - "gerund": "wisecracking", - "past": "wisecracked", - "past_participle": "wisecracked" - }, - { - "infinitive": "ballot", - "present": "ballots", - "gerund": "balloting", - "past": "balloted", - "past_participle": "balloted" - }, - { - "infinitive": "transport", - "present": "transports", - "gerund": "transporting", - "past": "transported", - "past_participle": "transported" - }, - { - "infinitive": "merge", - "present": "merges", - "gerund": "merging", - "past": "merged", - "past_participle": "merged" - }, - { - "infinitive": "avoid", - "present": "avoids", - "gerund": "avoiding", - "past": "avoided", - "past_participle": "avoided" - }, - { - "infinitive": "mezzotint", - "present": "mezzotints", - "gerund": "mezzotinting", - "past": "mezzotinted", - "past_participle": "mezzotinted" - }, - { - "infinitive": "sustain", - "present": "sustains", - "gerund": "sustaining", - "past": "sustained", - "past_participle": "sustained" - }, - { - "infinitive": "Hispanicize", - "present": "Hispanicizes", - "gerund": "Hispanicizing", - "past": "Hispanicized", - "past_participle": "Hispanicized" - }, - { - "infinitive": "disfeature", - "present": "disfeatures", - "gerund": "disfeaturing", - "past": "disfeatured", - "past_participle": "disfeatured" - }, - { - "infinitive": "demarcate", - "present": "demarcates", - "gerund": "demarcating", - "past": "demarcated", - "past_participle": "demarcated" - }, - { - "infinitive": "pilfer", - "present": "pilfers", - "gerund": "pilfering", - "past": "pilfered", - "past_participle": "pilfered" - }, - { - "infinitive": "putt", - "present": "putts", - "gerund": "putting", - "past": "putted", - "past_participle": "putted" - }, - { - "infinitive": "electrolyze", - "present": "electrolyzes", - "gerund": "electrolyzing", - "past": "electrolyzed", - "past_participle": "electrolyzed" - }, - { - "infinitive": "pressure", - "present": "pressures", - "gerund": "pressuring", - "past": "pressured", - "past_participle": "pressured" - }, - { - "infinitive": "tint", - "present": "tints", - "gerund": "tinting", - "past": "tinted", - "past_participle": "tinted" - }, - { - "infinitive": "belay", - "present": "belays", - "gerund": "belaying", - "past": "belayed", - "past_participle": "belayed" - }, - { - "infinitive": "subsume", - "present": "subsumes", - "gerund": "subsuming", - "past": "subsumed", - "past_participle": "subsumed" - }, - { - "infinitive": "stage", - "present": "stages", - "gerund": "staging", - "past": "staged", - "past_participle": "staged" - }, - { - "infinitive": "disseize", - "present": "disseizes", - "gerund": "disseizing", - "past": "disseized", - "past_participle": "disseized" - }, - { - "infinitive": "overreach", - "present": "overreaches", - "gerund": "overreaching", - "past": "overreached", - "past_participle": "overreached" - }, - { - "infinitive": "ingest", - "present": "ingests", - "gerund": "ingesting", - "past": "ingested", - "past_participle": "ingested" - }, - { - "infinitive": "idolize", - "present": "idolizes", - "gerund": "idolizing", - "past": "idolized", - "past_participle": "idolized" - }, - { - "infinitive": "grangerize", - "present": "grangerizes", - "gerund": "grangerizing", - "past": "grangerized", - "past_participle": "grangerized" - }, - { - "infinitive": "revise", - "present": "revises", - "gerund": "revising", - "past": "revised", - "past_participle": "revised" - }, - { - "infinitive": "concretize", - "present": "concretizes", - "gerund": "concretizing", - "past": "concretized", - "past_participle": "concretized" - }, - { - "infinitive": "rectify", - "present": "rectifies", - "gerund": "rectifying", - "past": "rectified", - "past_participle": "rectified" - }, - { - "infinitive": "stultify", - "present": "stultifies", - "gerund": "stultifying", - "past": "stultified", - "past_participle": "stultified" - }, - { - "infinitive": "vituperate", - "present": "vituperates", - "gerund": "vituperating", - "past": "vituperated", - "past_participle": "vituperated" - }, - { - "infinitive": "assess", - "present": "assesses", - "gerund": "assessing", - "past": "assessed", - "past_participle": "assessed" - }, - { - "infinitive": "saccharize", - "present": "saccharizes", - "gerund": "saccharizing", - "past": "saccharized", - "past_participle": "saccharized" - }, - { - "infinitive": "muck", - "present": "mucks", - "gerund": "mucking", - "past": "mucked", - "past_participle": "mucked" - }, - { - "infinitive": "copolymerize", - "present": "copolymerizes", - "gerund": "copolymerizing", - "past": "copolymerized", - "past_participle": "copolymerized" - }, - { - "infinitive": "reactivate", - "present": "reactivates", - "gerund": "reactivating", - "past": "reactivated", - "past_participle": "reactivated" - }, - { - "infinitive": "overestimate", - "present": "overestimates", - "gerund": "overestimating", - "past": "overestimated", - "past_participle": "overestimated" - }, - { - "infinitive": "jumpstart", - "present": "jumpstarts", - "gerund": "jumpstarting", - "past": "jumpstarted", - "past_participle": "jumpstarted" - }, - { - "infinitive": "divebomb", - "present": "divebombs", - "gerund": "divebombing", - "past": "divebombed", - "past_participle": "divebombed" - }, - { - "infinitive": "discant", - "present": "discants", - "gerund": "discanting", - "past": "discanted", - "past_participle": "discanted" - }, - { - "infinitive": "paganize", - "present": "paganizes", - "gerund": "paganizing", - "past": "paganized", - "past_participle": "paganized" - }, - { - "infinitive": "function", - "present": "functions", - "gerund": "functioning", - "past": "functioned", - "past_participle": "functioned" - }, - { - "infinitive": "funnel", - "present": "funnels", - "gerund": "funnelling", - "past": "funnelled", - "past_participle": "funnelled" - }, - { - "infinitive": "frisk", - "present": "frisks", - "gerund": "frisking", - "past": "frisked", - "past_participle": "frisked" - }, - { - "infinitive": "unbind", - "present": "unbinds", - "gerund": "unbinding", - "past": "unbound", - "past_participle": "unbound" - }, - { - "infinitive": "unstick", - "present": "unsticks", - "gerund": "unsticking", - "past": "unstuck", - "past_participle": "unstuck" - }, - { - "infinitive": "foretaste", - "present": "foretastes", - "gerund": "foretasting", - "past": "foretasted", - "past_participle": "foretasted" - }, - { - "infinitive": "grate", - "present": "grates", - "gerund": "grating", - "past": "grated", - "past_participle": "grated" - }, - { - "infinitive": "count", - "present": "counts", - "gerund": "counting", - "past": "counted", - "past_participle": "counted" - }, - { - "infinitive": "compute", - "present": "computes", - "gerund": "computing", - "past": "computed", - "past_participle": "computed" - }, - { - "infinitive": "shrunk", - "present": "shrunks", - "gerund": "shrunking", - "past": "shrunked", - "past_participle": "shrunked" - }, - { - "infinitive": "smooth", - "present": "smooths", - "gerund": "smoothing", - "past": "smoothed", - "past_participle": "smoothed" - }, - { - "infinitive": "convince", - "present": "convinces", - "gerund": "convincing", - "past": "convinced", - "past_participle": "convinced" - }, - { - "infinitive": "freewheel", - "present": "freewheels", - "gerund": "freewheeling", - "past": "freewheeled", - "past_participle": "freewheeled" - }, - { - "infinitive": "enthrone", - "present": "enthrones", - "gerund": "enthroning", - "past": "enthroned", - "past_participle": "enthroned" - }, - { - "infinitive": "appraise", - "present": "appraises", - "gerund": "appraising", - "past": "appraised", - "past_participle": "appraised" - }, - { - "infinitive": "kowtow", - "present": "kowtows", - "gerund": "kowtowing", - "past": "kowtowed", - "past_participle": "kowtowed" - }, - { - "infinitive": "fractionate", - "present": "fractionates", - "gerund": "fractionating", - "past": "fractionated", - "past_participle": "fractionated" - }, - { - "infinitive": "recognize", - "present": "recognizes", - "gerund": "recognizing", - "past": "recognized", - "past_participle": "recognized" - }, - { - "infinitive": "gasconade", - "present": "gasconades", - "gerund": "gasconading", - "past": "gasconaded", - "past_participle": "gasconaded" - }, - { - "infinitive": "contribute", - "present": "contributes", - "gerund": "contributing", - "past": "contributed", - "past_participle": "contributed" - }, - { - "infinitive": "denote", - "present": "denotes", - "gerund": "denoting", - "past": "denoted", - "past_participle": "denoted" - }, - { - "infinitive": "withstand", - "present": "withstands", - "gerund": "withstanding", - "past": "withstood", - "past_participle": "withstood" - }, - { - "infinitive": "ink", - "present": "inks", - "gerund": "inking", - "past": "inked", - "past_participle": "inked" - }, - { - "infinitive": "insolate", - "present": "insolates", - "gerund": "insolating", - "past": "insolated", - "past_participle": "insolated" - }, - { - "infinitive": "engorge", - "present": "engorges", - "gerund": "engorging", - "past": "engorged", - "past_participle": "engorged" - }, - { - "infinitive": "warsle", - "present": "warsles", - "gerund": "warsling", - "past": "warsled", - "past_participle": "warsled" - }, - { - "infinitive": "flummox", - "present": "flummoxes", - "gerund": "flummoxing", - "past": "flummoxed", - "past_participle": "flummoxed" - }, - { - "infinitive": "decarbonate", - "present": "decarbonates", - "gerund": "decarbonating", - "past": "decarbonated", - "past_participle": "decarbonated" - }, - { - "infinitive": "stockpile", - "present": "stockpiles", - "gerund": "stockpiling", - "past": "stockpiled", - "past_participle": "stockpiled" - }, - { - "infinitive": "disforest", - "present": "disforests", - "gerund": "disforesting", - "past": "disforested", - "past_participle": "disforested" - }, - { - "infinitive": "behold", - "present": "beholds", - "gerund": "beholding", - "past": "beheld", - "past_participle": "beheld" - }, - { - "infinitive": "vulgarize", - "present": "vulgarizes", - "gerund": "vulgarizing", - "past": "vulgarized", - "past_participle": "vulgarized" - }, - { - "infinitive": "satirize", - "present": "satirizes", - "gerund": "satirizing", - "past": "satirized", - "past_participle": "satirized" - }, - { - "infinitive": "dismiss", - "present": "dismisses", - "gerund": "dismissing", - "past": "dismissed", - "past_participle": "dismissed" - }, - { - "infinitive": "freeboot", - "present": "freeboots", - "gerund": "freebooting", - "past": "freebooted", - "past_participle": "freebooted" - }, - { - "infinitive": "dismantle", - "present": "dismantles", - "gerund": "dismantling", - "past": "dismantled", - "past_participle": "dismantled" - }, - { - "infinitive": "vignette", - "present": "vignettes", - "gerund": "vignetting", - "past": "vignetted", - "past_participle": "vignetted" - }, - { - "infinitive": "crosscut", - "present": "crosscuts", - "gerund": "crosscutting", - "past": "crosscut", - "past_participle": "crosscut" - }, - { - "infinitive": "chance", - "present": "chances", - "gerund": "chancing", - "past": "chanced", - "past_participle": "chanced" - }, - { - "infinitive": "pacify", - "present": "pacifies", - "gerund": "pacifying", - "past": "pacified", - "past_participle": "pacified" - }, - { - "infinitive": "scintillate", - "present": "scintillates", - "gerund": "scintillating", - "past": "scintillated", - "past_participle": "scintillated" - }, - { - "infinitive": "repeal", - "present": "repeals", - "gerund": "repealing", - "past": "repealed", - "past_participle": "repealed" - }, - { - "infinitive": "mastermind", - "present": "masterminds", - "gerund": "masterminding", - "past": "masterminded", - "past_participle": "masterminded" - }, - { - "infinitive": "vein", - "present": "veins", - "gerund": "veining", - "past": "veined", - "past_participle": "veined" - }, - { - "infinitive": "ghost", - "present": "ghosts", - "gerund": "ghosting", - "past": "ghosted", - "past_participle": "ghosted" - }, - { - "infinitive": "unthread", - "present": "unthreads", - "gerund": "unthreading", - "past": "unthreaded", - "past_participle": "unthreaded" - }, - { - "infinitive": "re-sound", - "present": "re-sounds", - "gerund": "re-sounding", - "past": "resounded", - "past_participle": "re-sounded" - }, - { - "infinitive": "rule", - "present": "rules", - "gerund": "ruling", - "past": "ruled", - "past_participle": "ruled" - }, - { - "infinitive": "compete", - "present": "competes", - "gerund": "competing", - "past": "competed", - "past_participle": "competed" - }, - { - "infinitive": "pension", - "present": "pensions", - "gerund": "pensioning", - "past": "pensioned", - "past_participle": "pensioned" - }, - { - "infinitive": "upspring", - "present": "upsprings", - "gerund": "upspringing", - "past": "upsprung", - "past_participle": "upsprung" - }, - { - "infinitive": "abhor", - "present": "abhors", - "gerund": "abhorring", - "past": "abhorred", - "past_participle": "abhorred" - }, - { - "infinitive": "buoy", - "present": "buoys", - "gerund": "buoying", - "past": "buoyed", - "past_participle": "buoyed" - }, - { - "infinitive": "rubefy", - "present": "rubefies", - "gerund": "rubefying", - "past": "rubefied", - "past_participle": "rubefied" - }, - { - "infinitive": "brevet", - "present": "brevets", - "gerund": "brevetting", - "past": "brevetted", - "past_participle": "brevetted" - }, - { - "infinitive": "divaricate", - "present": "divaricates", - "gerund": "divaricating", - "past": "divaricated", - "past_participle": "divaricated" - }, - { - "infinitive": "rev", - "present": "revs", - "gerund": "revving", - "past": "revved", - "past_participle": "revved" - }, - { - "infinitive": "copy", - "present": "copies", - "gerund": "copying", - "past": "copied", - "past_participle": "copied" - }, - { - "infinitive": "precondition", - "present": "preconditions", - "gerund": "preconditioning", - "past": "preconditioned", - "past_participle": "preconditioned" - }, - { - "infinitive": "shortchange", - "present": "shortchanges", - "gerund": "shortchanging", - "past": "shortchanged", - "past_participle": "shortchanged" - }, - { - "infinitive": "rekindle", - "present": "rekindles", - "gerund": "rekindling", - "past": "rekindled", - "past_participle": "rekindled" - }, - { - "infinitive": "defraud", - "present": "defrauds", - "gerund": "defrauding", - "past": "defrauded", - "past_participle": "defrauded" - }, - { - "infinitive": "lace", - "present": "laces", - "gerund": "lacing", - "past": "laced", - "past_participle": "laced" - }, - { - "infinitive": "aquatint", - "present": "aquatints", - "gerund": "aquatinting", - "past": "aquatinted", - "past_participle": "aquatinted" - }, - { - "infinitive": "spew", - "present": "spews", - "gerund": "spewing", - "past": "spewed", - "past_participle": "spewed" - }, - { - "infinitive": "automatize", - "present": "automatizes", - "gerund": "automatizing", - "past": "automatized", - "past_participle": "automatized" - }, - { - "infinitive": "bludgeon", - "present": "bludgeons", - "gerund": "bludgeoning", - "past": "bludgeoned", - "past_participle": "bludgeoned" - }, - { - "infinitive": "tickle", - "present": "tickles", - "gerund": "tickling", - "past": "tickled", - "past_participle": "tickled" - }, - { - "infinitive": "bike", - "present": "bikes", - "gerund": "biking", - "past": "biked", - "past_participle": "biked" - }, - { - "infinitive": "man-handle", - "present": "man-handles", - "gerund": "man-handling", - "past": "manhandled", - "past_participle": "man-handled" - }, - { - "infinitive": "daze", - "present": "dazes", - "gerund": "dazing", - "past": "dazed", - "past_participle": "dazed" - }, - { - "infinitive": "dapple", - "present": "dapples", - "gerund": "dappling", - "past": "dappled", - "past_participle": "dappled" - }, - { - "infinitive": "wildcat", - "present": "wildcats", - "gerund": "wildcatting", - "past": "wildcatted", - "past_participle": "wildcatted" - }, - { - "infinitive": "psychologize", - "present": "psychologizes", - "gerund": "psychologizing", - "past": "psychologized", - "past_participle": "psychologized" - }, - { - "infinitive": "whack", - "present": "whacks", - "gerund": "whacking", - "past": "whacked", - "past_participle": "whacked" - }, - { - "infinitive": "rainproof", - "present": "rainproofs", - "gerund": "rainproofing", - "past": "rainproofed", - "past_participle": "rainproofed" - }, - { - "infinitive": "lack", - "present": "lacks", - "gerund": "lacking", - "past": "lacked", - "past_participle": "lacked" - }, - { - "infinitive": "denudate", - "present": "denudates", - "gerund": "denudating", - "past": "denudated", - "past_participle": "denudated" - }, - { - "infinitive": "thermalize", - "present": "thermalizes", - "gerund": "thermalizing", - "past": "thermalized", - "past_participle": "thermalized" - }, - { - "infinitive": "blanket", - "present": "blankets", - "gerund": "blanketing", - "past": "blanketed", - "past_participle": "blanketed" - }, - { - "infinitive": "distort", - "present": "distorts", - "gerund": "distorting", - "past": "distorted", - "past_participle": "distorted" - }, - { - "infinitive": "hocuspocus", - "present": "hocuspocuses", - "gerund": "hocuspocussing", - "past": "hocuspocussed", - "past_participle": "hocuspocussed" - }, - { - "infinitive": "begrudge", - "present": "begrudges", - "gerund": "begrudging", - "past": "begrudged", - "past_participle": "begrudged" - }, - { - "infinitive": "retrocede", - "present": "retrocedes", - "gerund": "retroceding", - "past": "retroceded", - "past_participle": "retroceded" - }, - { - "infinitive": "sherardize", - "present": "sherardizes", - "gerund": "sherardizing", - "past": "sherardized", - "past_participle": "sherardized" - }, - { - "infinitive": "whish", - "present": "whishes", - "gerund": "whishing", - "past": "whished", - "past_participle": "whished" - }, - { - "infinitive": "daydream", - "present": "daydreams", - "gerund": "daydreaming", - "past": "daydreamed", - "past_participle": "daydreamed" - }, - { - "infinitive": "pinch", - "present": "pinches", - "gerund": "pinching", - "past": "pinched", - "past_participle": "pinched" - }, - { - "infinitive": "affirm", - "present": "affirms", - "gerund": "affirming", - "past": "affirmed", - "past_participle": "affirmed" - }, - { - "infinitive": "undersign", - "present": "undersigns", - "gerund": "undersigning", - "past": "undersigned", - "past_participle": "undersigned" - }, - { - "infinitive": "generalize", - "present": "generalizes", - "gerund": "generalizing", - "past": "generalized", - "past_participle": "generalized" - }, - { - "infinitive": "whist", - "present": "whists", - "gerund": "whisting", - "past": "whisted", - "past_participle": "whisted" - }, - { - "infinitive": "reinvent", - "present": "reinvents", - "gerund": "reinventing", - "past": "reinvented", - "past_participle": "reinvented" - }, - { - "infinitive": "triumph", - "present": "triumphs", - "gerund": "triumphing", - "past": "triumphed", - "past_participle": "triumphed" - }, - { - "infinitive": "chew", - "present": "chews", - "gerund": "chewing", - "past": "chewed", - "past_participle": "chewed" - }, - { - "infinitive": "pandy", - "present": "pandies", - "gerund": "pandying", - "past": "pandied", - "past_participle": "pandied" - }, - { - "infinitive": "disbud", - "present": "disbuds", - "gerund": "disbudding", - "past": "disbudded", - "past_participle": "disbudded" - }, - { - "infinitive": "horn", - "present": "horns", - "gerund": "horning", - "past": "horned", - "past_participle": "horned" - }, - { - "infinitive": "blaspheme", - "present": "blasphemes", - "gerund": "blaspheming", - "past": "blasphemed", - "past_participle": "blasphemed" - }, - { - "infinitive": "guillotine", - "present": "guillotines", - "gerund": "guillotining", - "past": "guillotined", - "past_participle": "guillotined" - }, - { - "infinitive": "homologize", - "present": "homologizes", - "gerund": "homologizing", - "past": "homologized", - "past_participle": "homologized" - }, - { - "infinitive": "levitate", - "present": "levitates", - "gerund": "levitating", - "past": "levitated", - "past_participle": "levitated" - }, - { - "infinitive": "contemn", - "present": "contemns", - "gerund": "contemning", - "past": "contemned", - "past_participle": "contemned" - }, - { - "infinitive": "deliberate", - "present": "deliberates", - "gerund": "deliberating", - "past": "deliberated", - "past_participle": "deliberated" - }, - { - "infinitive": "revolutionize", - "present": "revolutionizes", - "gerund": "revolutionizing", - "past": "revolutionized", - "past_participle": "revolutionized" - }, - { - "infinitive": "disserve", - "present": "disserves", - "gerund": "disserving", - "past": "disserved", - "past_participle": "disserved" - }, - { - "infinitive": "bleep", - "present": "bleeps", - "gerund": "bleeping", - "past": "bleeped", - "past_participle": "bleeped" - }, - { - "infinitive": "unhand", - "present": "unhands", - "gerund": "unhanding", - "past": "unhanded", - "past_participle": "unhanded" - }, - { - "infinitive": "murther", - "present": "murthers", - "gerund": "murthering", - "past": "murthered", - "past_participle": "murthered" - }, - { - "infinitive": "swive", - "present": "swives", - "gerund": "swiving", - "past": "swived", - "past_participle": "swived" - }, - { - "infinitive": "crunch", - "present": "crunches", - "gerund": "crunching", - "past": "crunched", - "past_participle": "crunched" - }, - { - "infinitive": "redeploy", - "present": "redeploys", - "gerund": "redeploying", - "past": "redeployed", - "past_participle": "redeployed" - }, - { - "infinitive": "conglomerate", - "present": "conglomerates", - "gerund": "conglomerating", - "past": "conglomerated", - "past_participle": "conglomerated" - }, - { - "infinitive": "undershot", - "present": "", - "gerund": "", - "past": "undershot", - "past_participle": "undershot" - }, - { - "infinitive": "burgle", - "present": "burgles", - "gerund": "burgling", - "past": "burgled", - "past_participle": "burgled" - }, - { - "infinitive": "X-ray", - "present": "X-rays", - "gerund": "X-raying", - "past": "X-rayed", - "past_participle": "X-rayed" - }, - { - "infinitive": "overcall", - "present": "overcalls", - "gerund": "overcalling", - "past": "overcalled", - "past_participle": "overcalled" - }, - { - "infinitive": "study", - "present": "studies", - "gerund": "studying", - "past": "studied", - "past_participle": "studied" - }, - { - "infinitive": "reappraise", - "present": "reappraises", - "gerund": "reappraising", - "past": "reappraised", - "past_participle": "reappraised" - }, - { - "infinitive": "displode", - "present": "displodes", - "gerund": "disploding", - "past": "disploded", - "past_participle": "disploded" - }, - { - "infinitive": "bunker", - "present": "bunkers", - "gerund": "bunkering", - "past": "bunkered", - "past_participle": "bunkered" - }, - { - "infinitive": "maunder", - "present": "maunders", - "gerund": "maundering", - "past": "maundered", - "past_participle": "maundered" - }, - { - "infinitive": "Jew", - "present": "Jews", - "gerund": "Jewing", - "past": "Jewed", - "past_participle": "Jewed" - }, - { - "infinitive": "synonymize", - "present": "synonymizes", - "gerund": "synonymizing", - "past": "synonymized", - "past_participle": "synonymized" - }, - { - "infinitive": "federalize", - "present": "federalizes", - "gerund": "federalizing", - "past": "federalized", - "past_participle": "federalized" - }, - { - "infinitive": "nauseate", - "present": "nauseates", - "gerund": "nauseating", - "past": "nauseated", - "past_participle": "nauseated" - }, - { - "infinitive": "shun", - "present": "shuns", - "gerund": "shunning", - "past": "shunned", - "past_participle": "shunned" - }, - { - "infinitive": "glance", - "present": "glances", - "gerund": "glancing", - "past": "glanced", - "past_participle": "glanced" - }, - { - "infinitive": "total", - "present": "totals", - "gerund": "totalling", - "past": "totalled", - "past_participle": "totalled" - }, - { - "infinitive": "plot", - "present": "plots", - "gerund": "plotting", - "past": "plotted", - "past_participle": "plotted" - }, - { - "infinitive": "plow", - "present": "plows", - "gerund": "plowing", - "past": "plowed", - "past_participle": "plowed" - }, - { - "infinitive": "reflate", - "present": "reflates", - "gerund": "reflating", - "past": "reflated", - "past_participle": "reflated" - }, - { - "infinitive": "plop", - "present": "plops", - "gerund": "plopping", - "past": "plopped", - "past_participle": "plopped" - }, - { - "infinitive": "acculturate", - "present": "acculturates", - "gerund": "acculturating", - "past": "acculturated", - "past_participle": "acculturated" - }, - { - "infinitive": "gloss", - "present": "glosses", - "gerund": "glossing", - "past": "glossed", - "past_participle": "glossed" - }, - { - "infinitive": "insult", - "present": "insults", - "gerund": "insulting", - "past": "insulted", - "past_participle": "insulted" - }, - { - "infinitive": "plod", - "present": "plods", - "gerund": "plodding", - "past": "plodded", - "past_participle": "plodded" - }, - { - "infinitive": "beeswax", - "present": "beeswaxes", - "gerund": "beeswaxing", - "past": "beeswaxed", - "past_participle": "beeswaxed" - }, - { - "infinitive": "vegetate", - "present": "vegetates", - "gerund": "vegetating", - "past": "vegetated", - "past_participle": "vegetated" - }, - { - "infinitive": "plagiarize", - "present": "plagiarizes", - "gerund": "plagiarizing", - "past": "plagiarized", - "past_participle": "plagiarized" - }, - { - "infinitive": "inflect", - "present": "inflects", - "gerund": "inflecting", - "past": "inflected", - "past_participle": "inflected" - }, - { - "infinitive": "ascribe", - "present": "ascribes", - "gerund": "ascribing", - "past": "ascribed", - "past_participle": "ascribed" - }, - { - "infinitive": "award", - "present": "awards", - "gerund": "awarding", - "past": "awarded", - "past_participle": "awarded" - }, - { - "infinitive": "scribble", - "present": "scribbles", - "gerund": "scribbling", - "past": "scribbled", - "past_participle": "scribbled" - }, - { - "infinitive": "overrun", - "present": "overruns", - "gerund": "overrunning", - "past": "overran", - "past_participle": "overrun" - }, - { - "infinitive": "word", - "present": "words", - "gerund": "wording", - "past": "worded", - "past_participle": "worded" - }, - { - "infinitive": "err", - "present": "errs", - "gerund": "erring", - "past": "erred", - "past_participle": "erred" - }, - { - "infinitive": "shame", - "present": "shames", - "gerund": "shaming", - "past": "shamed", - "past_participle": "shamed" - }, - { - "infinitive": "work", - "present": "works", - "gerund": "working", - "past": "worked", - "past_participle": "worked" - }, - { - "infinitive": "eclipse", - "present": "eclipses", - "gerund": "eclipsing", - "past": "eclipsed", - "past_participle": "eclipsed" - }, - { - "infinitive": "grovel", - "present": "grovels", - "gerund": "grovelling", - "past": "grovelled", - "past_participle": "grovelled" - }, - { - "infinitive": "cuddle", - "present": "cuddles", - "gerund": "cuddling", - "past": "cuddled", - "past_participle": "cuddled" - }, - { - "infinitive": "elbow", - "present": "elbows", - "gerund": "elbowing", - "past": "elbowed", - "past_participle": "elbowed" - }, - { - "infinitive": "versify", - "present": "versifies", - "gerund": "versifying", - "past": "versified", - "past_participle": "versified" - }, - { - "infinitive": "quiver", - "present": "quivers", - "gerund": "quivering", - "past": "quivered", - "past_participle": "quivered" - }, - { - "infinitive": "pollute", - "present": "pollutes", - "gerund": "polluting", - "past": "polluted", - "past_participle": "polluted" - }, - { - "infinitive": "flunk", - "present": "flunks", - "gerund": "flunking", - "past": "flunked", - "past_participle": "flunked" - }, - { - "infinitive": "federate", - "present": "federates", - "gerund": "federating", - "past": "federated", - "past_participle": "federated" - }, - { - "infinitive": "repot", - "present": "repots", - "gerund": "repotting", - "past": "repotted", - "past_participle": "repotted" - }, - { - "infinitive": "impair", - "present": "impairs", - "gerund": "impairing", - "past": "impaired", - "past_participle": "impaired" - }, - { - "infinitive": "woman", - "present": "womans", - "gerund": "womaning", - "past": "womaned", - "past_participle": "womaned" - }, - { - "infinitive": "radiotelegraph", - "present": "radiotelegraphs", - "gerund": "radiotelegraphing", - "past": "radiotelegraphed", - "past_participle": "radiotelegraphed" - }, - { - "infinitive": "electrodeposit", - "present": "electrodeposits", - "gerund": "electrodepositing", - "past": "electrodeposited", - "past_participle": "electrodeposited" - }, - { - "infinitive": "betide", - "present": "betides", - "gerund": "betiding", - "past": "betided", - "past_participle": "betided" - }, - { - "infinitive": "secern", - "present": "secerns", - "gerund": "secerning", - "past": "secerned", - "past_participle": "secerned" - }, - { - "infinitive": "farce", - "present": "farces", - "gerund": "farcing", - "past": "farced", - "past_participle": "farced" - }, - { - "infinitive": "particularize", - "present": "particularizes", - "gerund": "particularizing", - "past": "particularized", - "past_participle": "particularized" - }, - { - "infinitive": "verify", - "present": "verifies", - "gerund": "verifying", - "past": "verified", - "past_participle": "verified" - }, - { - "infinitive": "photocopy", - "present": "photocopies", - "gerund": "photocopying", - "past": "photocopied", - "past_participle": "photocopied" - }, - { - "infinitive": "sever", - "present": "severs", - "gerund": "severing", - "past": "severed", - "past_participle": "severed" - }, - { - "infinitive": "rewind", - "present": "rewinds", - "gerund": "rewinding", - "past": "rewound", - "past_participle": "rewound" - }, - { - "infinitive": "interview", - "present": "interviews", - "gerund": "interviewing", - "past": "interviewed", - "past_participle": "interviewed" - }, - { - "infinitive": "disappoint", - "present": "disappoints", - "gerund": "disappointing", - "past": "disappointed", - "past_participle": "disappointed" - }, - { - "infinitive": "poleax", - "present": "poleaxes", - "gerund": "poleaxing", - "past": "poleaxed", - "past_participle": "poleaxed" - }, - { - "infinitive": "beach", - "present": "beaches", - "gerund": "beaching", - "past": "beached", - "past_participle": "beached" - }, - { - "infinitive": "underexpose", - "present": "underexposes", - "gerund": "underexposing", - "past": "underexposed", - "past_participle": "underexposed" - }, - { - "infinitive": "countersink", - "present": "countersinks", - "gerund": "countersinking", - "past": "countersank", - "past_participle": "countersunk" - }, - { - "infinitive": "deliquesce", - "present": "deliquesces", - "gerund": "deliquescing", - "past": "deliquesced", - "past_participle": "deliquesced" - }, - { - "infinitive": "lam", - "present": "lams", - "gerund": "lamming", - "past": "lammed", - "past_participle": "lammed" - }, - { - "infinitive": "fever", - "present": "fevers", - "gerund": "fevering", - "past": "fevered", - "past_participle": "fevered" - }, - { - "infinitive": "aggrade", - "present": "aggrades", - "gerund": "aggrading", - "past": "aggraded", - "past_participle": "aggraded" - }, - { - "infinitive": "ladder", - "present": "ladders", - "gerund": "laddering", - "past": "laddered", - "past_participle": "laddered" - }, - { - "infinitive": "lag", - "present": "lags", - "gerund": "lagging", - "past": "lagged", - "past_participle": "lagged" - }, - { - "infinitive": "fat", - "present": "fats", - "gerund": "fatting", - "past": "fatted", - "past_participle": "fatted" - }, - { - "infinitive": "disentomb", - "present": "disentombs", - "gerund": "disentombing", - "past": "disentombed", - "past_participle": "disentombed" - }, - { - "infinitive": "unreeve", - "present": "unreeves", - "gerund": "unreeving", - "past": "unrove", - "past_participle": "unrove" - }, - { - "infinitive": "arch", - "present": "arches", - "gerund": "arching", - "past": "arched", - "past_participle": "arched" - }, - { - "infinitive": "scrummage", - "present": "scrummages", - "gerund": "scrummaging", - "past": "scrummaged", - "past_participle": "scrummaged" - }, - { - "infinitive": "scull", - "present": "sculls", - "gerund": "sculling", - "past": "sculled", - "past_participle": "sculled" - }, - { - "infinitive": "invaginate", - "present": "invaginates", - "gerund": "invaginating", - "past": "invaginated", - "past_participle": "invaginated" - }, - { - "infinitive": "alienate", - "present": "alienates", - "gerund": "alienating", - "past": "alienated", - "past_participle": "alienated" - }, - { - "infinitive": "appreciate", - "present": "appreciates", - "gerund": "appreciating", - "past": "appreciated", - "past_participle": "appreciated" - }, - { - "infinitive": "greet", - "present": "greets", - "gerund": "greeting", - "past": "greeted", - "past_participle": "greeted" - }, - { - "infinitive": "stimulate", - "present": "stimulates", - "gerund": "stimulating", - "past": "stimulated", - "past_participle": "stimulated" - }, - { - "infinitive": "haste", - "present": "hastes", - "gerund": "hasting", - "past": "hasted", - "past_participle": "hasted" - }, - { - "infinitive": "scarf", - "present": "scarfs", - "gerund": "scarfing", - "past": "scarfed", - "past_participle": "scarfed" - }, - { - "infinitive": "worst", - "present": "worsts", - "gerund": "worsting", - "past": "worsted", - "past_participle": "worsted" - }, - { - "infinitive": "remonstrate", - "present": "remonstrates", - "gerund": "remonstrating", - "past": "remonstrated", - "past_participle": "remonstrated" - }, - { - "infinitive": "order", - "present": "orders", - "gerund": "ordering", - "past": "ordered", - "past_participle": "ordered" - }, - { - "infinitive": "devote", - "present": "devotes", - "gerund": "devoting", - "past": "devoted", - "past_participle": "devoted" - }, - { - "infinitive": "consent", - "present": "consents", - "gerund": "consenting", - "past": "consented", - "past_participle": "consented" - }, - { - "infinitive": "proportionate", - "present": "proportionates", - "gerund": "proportionating", - "past": "proportionated", - "past_participle": "proportionated" - }, - { - "infinitive": "natter", - "present": "natters", - "gerund": "nattering", - "past": "nattered", - "past_participle": "nattered" - }, - { - "infinitive": "japan", - "present": "japans", - "gerund": "japanning", - "past": "japanned", - "past_participle": "japanned" - }, - { - "infinitive": "estrange", - "present": "estranges", - "gerund": "estranging", - "past": "estranged", - "past_participle": "estranged" - }, - { - "infinitive": "casefy", - "present": "casefies", - "gerund": "casefying", - "past": "casefied", - "past_participle": "casefied" - }, - { - "infinitive": "sheaf", - "present": "sheaves", - "gerund": "sheafing", - "past": "sheafed", - "past_participle": "sheafed" - }, - { - "infinitive": "Xerox", - "present": "Xeroxes", - "gerund": "Xeroxing", - "past": "Xeroxed", - "past_participle": "Xeroxed" - }, - { - "infinitive": "fag", - "present": "fags", - "gerund": "fagging", - "past": "fagged", - "past_participle": "fagged" - }, - { - "infinitive": "strafe", - "present": "strafes", - "gerund": "strafing", - "past": "strafed", - "past_participle": "strafed" - }, - { - "infinitive": "bespeak", - "present": "bespeaks", - "gerund": "bespeaking", - "past": "bespoke", - "past_participle": "bespoken" - }, - { - "infinitive": "precipitate", - "present": "precipitates", - "gerund": "precipitating", - "past": "precipitated", - "past_participle": "precipitated" - }, - { - "infinitive": "savour", - "present": "savours", - "gerund": "savouring", - "past": "savoured", - "past_participle": "savoured" - }, - { - "infinitive": "shear", - "present": "shears", - "gerund": "shearing", - "past": "sheared", - "past_participle": "shorn" - }, - { - "infinitive": "bant", - "present": "bants", - "gerund": "banting", - "past": "banted", - "past_participle": "banted" - }, - { - "infinitive": "swound", - "present": "swounds", - "gerund": "swounding", - "past": "swounded", - "past_participle": "swounded" - }, - { - "infinitive": "fragment", - "present": "fragments", - "gerund": "fragmenting", - "past": "fragmented", - "past_participle": "fragmented" - }, - { - "infinitive": "collide", - "present": "collides", - "gerund": "colliding", - "past": "collided", - "past_participle": "collided" - }, - { - "infinitive": "break", - "present": "breaks", - "gerund": "breaking", - "past": "broke", - "past_participle": "broken" - }, - { - "infinitive": "band", - "present": "bands", - "gerund": "banding", - "past": "banded", - "past_participle": "banded" - }, - { - "infinitive": "bang", - "present": "bangs", - "gerund": "banging", - "past": "banged", - "past_participle": "banged" - }, - { - "infinitive": "coffer", - "present": "coffers", - "gerund": "coffering", - "past": "coffered", - "past_participle": "coffered" - }, - { - "infinitive": "bream", - "present": "breams", - "gerund": "breaming", - "past": "breamed", - "past_participle": "breamed" - }, - { - "infinitive": "declutch", - "present": "declutches", - "gerund": "declutching", - "past": "declutched", - "past_participle": "declutched" - }, - { - "infinitive": "draft", - "present": "drafts", - "gerund": "banking", - "past": "banked", - "past_participle": "banked" - }, - { - "infinitive": "bread", - "present": "breads", - "gerund": "breading", - "past": "breaded", - "past_participle": "breaded" - }, - { - "infinitive": "crock", - "present": "crocks", - "gerund": "crocking", - "past": "crocked", - "past_participle": "crocked" - }, - { - "infinitive": "absolve", - "present": "absolves", - "gerund": "absolving", - "past": "absolved", - "past_participle": "absolved" - }, - { - "infinitive": "naysay", - "present": "naysays", - "gerund": "naysaying", - "past": "naysayed", - "past_participle": "naysayed" - }, - { - "infinitive": "misbehave", - "present": "misbehaves", - "gerund": "misbehaving", - "past": "misbehaved", - "past_participle": "misbehaved" - }, - { - "infinitive": "outstretch", - "present": "outstretches", - "gerund": "outstretching", - "past": "outstretched", - "past_participle": "outstretched" - }, - { - "infinitive": "pinpoint", - "present": "pinpoints", - "gerund": "pin-pointing", - "past": "pinpointed", - "past_participle": "pin-pointed" - }, - { - "infinitive": "flock", - "present": "flocks", - "gerund": "flocking", - "past": "flocked", - "past_participle": "flocked" - }, - { - "infinitive": "trench", - "present": "trenches", - "gerund": "trenching", - "past": "trenched", - "past_participle": "trenched" - }, - { - "infinitive": "network", - "present": "networks", - "gerund": "networking", - "past": "networked", - "past_participle": "networked" - }, - { - "infinitive": "engrave", - "present": "engraves", - "gerund": "engraving", - "past": "engraved", - "past_participle": "engraved" - }, - { - "infinitive": "monotonize", - "present": "monotonizes", - "gerund": "monotonizing", - "past": "monotonized", - "past_participle": "monotonized" - }, - { - "infinitive": "redevelop", - "present": "redevelops", - "gerund": "redeveloping", - "past": "redeveloped", - "past_participle": "redeveloped" - }, - { - "infinitive": "veto", - "present": "vetoes", - "gerund": "vetoing", - "past": "vetoed", - "past_participle": "vetoed" - }, - { - "infinitive": "apotheosize", - "present": "apotheosizes", - "gerund": "apotheosizing", - "past": "apotheosized", - "past_participle": "apotheosized" - }, - { - "infinitive": "putty", - "present": "putties", - "gerund": "puttying", - "past": "puttied", - "past_participle": "puttied" - }, - { - "infinitive": "mutilate", - "present": "mutilates", - "gerund": "mutilating", - "past": "mutilated", - "past_participle": "mutilated" - }, - { - "infinitive": "drench", - "present": "drenches", - "gerund": "drenching", - "past": "drenched", - "past_participle": "drenched" - }, - { - "infinitive": "renew", - "present": "renews", - "gerund": "renewing", - "past": "renewed", - "past_participle": "renewed" - }, - { - "infinitive": "oppose", - "present": "opposes", - "gerund": "opposing", - "past": "opposed", - "past_participle": "opposed" - }, - { - "infinitive": "recondition", - "present": "reconditions", - "gerund": "reconditioning", - "past": "reconditioned", - "past_participle": "reconditioned" - }, - { - "infinitive": "regress", - "present": "regresses", - "gerund": "regressing", - "past": "regressed", - "past_participle": "regressed" - }, - { - "infinitive": "disafforest", - "present": "disafforests", - "gerund": "disafforesting", - "past": "disafforested", - "past_participle": "disafforested" - }, - { - "infinitive": "vanquish", - "present": "vanquishes", - "gerund": "vanquishing", - "past": "vanquished", - "past_participle": "vanquished" - }, - { - "infinitive": "organize", - "present": "organizes", - "gerund": "organizing", - "past": "organized", - "past_participle": "organized" - }, - { - "infinitive": "render", - "present": "renders", - "gerund": "rendering", - "past": "rendered", - "past_participle": "rendered" - }, - { - "infinitive": "reenact", - "present": "reenacts", - "gerund": "reenacting", - "past": "reenacted", - "past_participle": "reenacted" - }, - { - "infinitive": "jackknife", - "present": "jackknifes", - "gerund": "jackknifing", - "past": "jackknifed", - "past_participle": "jackknifed" - }, - { - "infinitive": "hamstring", - "present": "hamstrings", - "gerund": "hamstringing", - "past": "hamstrung", - "past_participle": "hamstrung" - }, - { - "infinitive": "operatize", - "present": "operatizes", - "gerund": "operatizing", - "past": "operatized", - "past_participle": "operatized" - }, - { - "infinitive": "guzzle", - "present": "guzzles", - "gerund": "guzzling", - "past": "guzzled", - "past_participle": "guzzled" - }, - { - "infinitive": "unsnap", - "present": "unsnaps", - "gerund": "unsnapping", - "past": "unsnapped", - "past_participle": "unsnapped" - }, - { - "infinitive": "disembark", - "present": "disembarks", - "gerund": "disembarking", - "past": "disembarked", - "past_participle": "disembarked" - }, - { - "infinitive": "headreach", - "present": "headreaches", - "gerund": "headreaching", - "past": "headreached", - "past_participle": "headreached" - }, - { - "infinitive": "tangle", - "present": "tangles", - "gerund": "tangling", - "past": "tangled", - "past_participle": "tangled" - }, - { - "infinitive": "equipoise", - "present": "equipoises", - "gerund": "equipoising", - "past": "equipoised", - "past_participle": "equipoised" - }, - { - "infinitive": "illustrate", - "present": "illustrates", - "gerund": "illustrating", - "past": "illustrated", - "past_participle": "illustrated" - }, - { - "infinitive": "centrifuge", - "present": "centrifuges", - "gerund": "centrifuging", - "past": "centrifuged", - "past_participle": "centrifuged" - }, - { - "infinitive": "unfetter", - "present": "unfetters", - "gerund": "unfettering", - "past": "unfettered", - "past_participle": "unfettered" - }, - { - "infinitive": "vibrate", - "present": "vibrates", - "gerund": "vibrating", - "past": "vibrated", - "past_participle": "vibrated" - }, - { - "infinitive": "compromise", - "present": "compromises", - "gerund": "compromising", - "past": "compromised", - "past_participle": "compromised" - }, - { - "infinitive": "fumble", - "present": "fumbles", - "gerund": "fumbling", - "past": "fumbled", - "past_participle": "fumbled" - }, - { - "infinitive": "gate-crash", - "present": "gate-crashes", - "gerund": "gate-crashing", - "past": "gate-crashed", - "past_participle": "gate-crashed" - }, - { - "infinitive": "inflate", - "present": "inflates", - "gerund": "inflating", - "past": "inflated", - "past_participle": "inflated" - }, - { - "infinitive": "filibuster", - "present": "filibusters", - "gerund": "filibustering", - "past": "filibustered", - "past_participle": "filibustered" - }, - { - "infinitive": "efface", - "present": "effaces", - "gerund": "effacing", - "past": "effaced", - "past_participle": "effaced" - }, - { - "infinitive": "decentralize", - "present": "decentralizes", - "gerund": "decentralizing", - "past": "decentralized", - "past_participle": "decentralized" - }, - { - "infinitive": "scant", - "present": "scants", - "gerund": "scanting", - "past": "scanted", - "past_participle": "scanted" - }, - { - "infinitive": "tithe", - "present": "tithes", - "gerund": "tithing", - "past": "tithed", - "past_participle": "tithed" - }, - { - "infinitive": "rebuff", - "present": "rebuffs", - "gerund": "rebuffing", - "past": "rebuffed", - "past_participle": "rebuffed" - }, - { - "infinitive": "earbash", - "present": "earbashes", - "gerund": "earbashing", - "past": "earbashed", - "past_participle": "earbashed" - }, - { - "infinitive": "septuple", - "present": "septuples", - "gerund": "septupling", - "past": "septupled", - "past_participle": "septupled" - }, - { - "infinitive": "hike", - "present": "hikes", - "gerund": "hiking", - "past": "hiked", - "past_participle": "hiked" - }, - { - "infinitive": "incase", - "present": "incases", - "gerund": "incasing", - "past": "incased", - "past_participle": "incased" - }, - { - "infinitive": "iron", - "present": "irons", - "gerund": "ironing", - "past": "ironed", - "past_participle": "ironed" - }, - { - "infinitive": "encash", - "present": "encashes", - "gerund": "encashing", - "past": "encashed", - "past_participle": "encashed" - }, - { - "infinitive": "tritiate", - "present": "tritiates", - "gerund": "tritiating", - "past": "tritiated", - "past_participle": "tritiated" - }, - { - "infinitive": "effectuate", - "present": "effectuates", - "gerund": "effectuating", - "past": "effectuated", - "past_participle": "effectuated" - }, - { - "infinitive": "rewrite", - "present": "rewrites", - "gerund": "rewriting", - "past": "rewrote", - "past_participle": "rewritten" - }, - { - "infinitive": "temporize", - "present": "temporizes", - "gerund": "temporizing", - "past": "temporized", - "past_participle": "temporized" - }, - { - "infinitive": "navigate", - "present": "navigates", - "gerund": "navigating", - "past": "navigated", - "past_participle": "navigated" - }, - { - "infinitive": "resound", - "present": "resounds", - "gerund": "resounding", - "past": "resounded", - "past_participle": "resounded" - }, - { - "infinitive": "metathesize", - "present": "metathesizes", - "gerund": "metathesizing", - "past": "metathesized", - "past_participle": "metathesized" - }, - { - "infinitive": "sconce", - "present": "sconces", - "gerund": "sconcing", - "past": "sconced", - "past_participle": "sconced" - }, - { - "infinitive": "lull", - "present": "lulls", - "gerund": "lulling", - "past": "lulled", - "past_participle": "lulled" - }, - { - "infinitive": "cadge", - "present": "cadges", - "gerund": "cadging", - "past": "cadged", - "past_participle": "cadged" - }, - { - "infinitive": "ponder", - "present": "ponders", - "gerund": "pondering", - "past": "pondered", - "past_participle": "pondered" - }, - { - "infinitive": "quarry", - "present": "quarries", - "gerund": "quarrying", - "past": "quarried", - "past_participle": "quarried" - }, - { - "infinitive": "widen", - "present": "widens", - "gerund": "widening", - "past": "widened", - "past_participle": "widened" - }, - { - "infinitive": "leapfrog", - "present": "leapfrogs", - "gerund": "leapfrogging", - "past": "leapfrogged", - "past_participle": "leapfrogged" - }, - { - "infinitive": "rehouse", - "present": "rehouses", - "gerund": "rehousing", - "past": "rehoused", - "past_participle": "rehoused" - }, - { - "infinitive": "transmit", - "present": "transmits", - "gerund": "transmitting", - "past": "transmitted", - "past_participle": "transmitted" - }, - { - "infinitive": "pilgrimage", - "present": "pilgrimages", - "gerund": "pilgrimaging", - "past": "pilgrimaged", - "past_participle": "pilgrimaged" - }, - { - "infinitive": "finagle", - "present": "finagles", - "gerund": "finagling", - "past": "finagled", - "past_participle": "finagled" - }, - { - "infinitive": "quieten", - "present": "quietens", - "gerund": "quietening", - "past": "quietened", - "past_participle": "quietened" - }, - { - "infinitive": "writhe", - "present": "writhes", - "gerund": "writhing", - "past": "writhed", - "past_participle": "writhed" - }, - { - "infinitive": "backcross", - "present": "backcrosses", - "gerund": "backcrossing", - "past": "backcrossed", - "past_participle": "backcrossed" - }, - { - "infinitive": "affiance", - "present": "affiances", - "gerund": "affiancing", - "past": "affianced", - "past_participle": "affianced" - }, - { - "infinitive": "fillagree", - "present": "fillagrees", - "gerund": "fillagreeing", - "past": "fillagreed", - "past_participle": "fillagreed" - }, - { - "infinitive": "phase", - "present": "phases", - "gerund": "phasing", - "past": "phased", - "past_participle": "phased" - }, - { - "infinitive": "grave", - "present": "graves", - "gerund": "graving", - "past": "graven", - "past_participle": "graven" - }, - { - "infinitive": "unship", - "present": "unships", - "gerund": "unshipping", - "past": "unshipped", - "past_participle": "unshipped" - }, - { - "infinitive": "syllabize", - "present": "syllabizes", - "gerund": "syllabizing", - "past": "syllabized", - "past_participle": "syllabized" - }, - { - "infinitive": "demagnetize", - "present": "demagnetizes", - "gerund": "demagnetizing", - "past": "demagnetized", - "past_participle": "demagnetized" - }, - { - "infinitive": "vouch", - "present": "vouches", - "gerund": "vouching", - "past": "vouched", - "past_participle": "vouched" - }, - { - "infinitive": "swamp", - "present": "swamps", - "gerund": "swamping", - "past": "swamped", - "past_participle": "swamped" - }, - { - "infinitive": "bracket", - "present": "brackets", - "gerund": "bracketing", - "past": "bracketed", - "past_participle": "bracketed" - }, - { - "infinitive": "oppress", - "present": "oppresses", - "gerund": "oppressing", - "past": "oppressed", - "past_participle": "oppressed" - }, - { - "infinitive": "reserve", - "present": "reserves", - "gerund": "reserving", - "past": "reserved", - "past_participle": "reserved" - }, - { - "infinitive": "iodate", - "present": "iodates", - "gerund": "iodating", - "past": "iodated", - "past_participle": "iodated" - }, - { - "infinitive": "toast", - "present": "toasts", - "gerund": "toasting", - "past": "toasted", - "past_participle": "toasted" - }, - { - "infinitive": "tauten", - "present": "tautens", - "gerund": "tautening", - "past": "tautened", - "past_participle": "tautened" - }, - { - "infinitive": "re-dress", - "present": "re-dresses", - "gerund": "re-dressing", - "past": "redressed", - "past_participle": "re-dressed" - }, - { - "infinitive": "do", - "present": "does", - "gerund": "doing", - "past": "did", - "past_participle": "done" - }, - { - "infinitive": "reorientate", - "present": "reorientates", - "gerund": "reorientating", - "past": "reorientated", - "past_participle": "reorientated" - }, - { - "infinitive": "aestivate", - "present": "aestivates", - "gerund": "aestivating", - "past": "aestivated", - "past_participle": "aestivated" - }, - { - "infinitive": "wham", - "present": "whams", - "gerund": "whamming", - "past": "whammed", - "past_participle": "whammed" - }, - { - "infinitive": "photostat", - "present": "photostats", - "gerund": "photostatting", - "past": "photostatted", - "past_participle": "photostatted" - }, - { - "infinitive": "stead", - "present": "steads", - "gerund": "steading", - "past": "steaded", - "past_participle": "steaded" - }, - { - "infinitive": "psyche", - "present": "psyches", - "gerund": "psyching", - "past": "psyched", - "past_participle": "psyched" - }, - { - "infinitive": "recurve", - "present": "recurves", - "gerund": "recurving", - "past": "recurved", - "past_participle": "recurved" - }, - { - "infinitive": "disincline", - "present": "disinclines", - "gerund": "disinclining", - "past": "disinclined", - "past_participle": "disinclined" - }, - { - "infinitive": "bother", - "present": "bothers", - "gerund": "bothering", - "past": "bothered", - "past_participle": "bothered" - }, - { - "infinitive": "compere", - "present": "comperes", - "gerund": "compering", - "past": "compered", - "past_participle": "compered" - }, - { - "infinitive": "reread", - "present": "rereads", - "gerund": "rereading", - "past": "reread", - "past_participle": "reread" - }, - { - "infinitive": "misdirect", - "present": "misdirects", - "gerund": "misdirecting", - "past": "misdirected", - "past_participle": "misdirected" - }, - { - "infinitive": "bioassay", - "present": "bioassays", - "gerund": "bioassaying", - "past": "bioassayed", - "past_participle": "bioassayed" - }, - { - "infinitive": "misname", - "present": "misnames", - "gerund": "misnaming", - "past": "misnamed", - "past_participle": "misnamed" - }, - { - "infinitive": "ruffle", - "present": "ruffles", - "gerund": "ruffling", - "past": "ruffled", - "past_participle": "ruffled" - }, - { - "infinitive": "mitch", - "present": "mitches", - "gerund": "mitching", - "past": "mitched", - "past_participle": "mitched" - }, - { - "infinitive": "begrime", - "present": "begrimes", - "gerund": "begriming", - "past": "begrimed", - "past_participle": "begrimed" - }, - { - "infinitive": "drawl", - "present": "drawls", - "gerund": "drawling", - "past": "drawled", - "past_participle": "drawled" - }, - { - "infinitive": "breakaway", - "present": "breakaways", - "gerund": "breakawaying", - "past": "breakawayed", - "past_participle": "breakawayed" - }, - { - "infinitive": "disorganize", - "present": "disorganizes", - "gerund": "disorganizing", - "past": "disorganized", - "past_participle": "disorganized" - }, - { - "infinitive": "embody", - "present": "embodies", - "gerund": "embodying", - "past": "embodied", - "past_participle": "embodied" - }, - { - "infinitive": "emulsify", - "present": "emulsifies", - "gerund": "emulsifying", - "past": "emulsified", - "past_participle": "emulsified" - }, - { - "infinitive": "unfold", - "present": "unfolds", - "gerund": "unfolding", - "past": "unfolded", - "past_participle": "unfolded" - }, - { - "infinitive": "anele", - "present": "aneles", - "gerund": "aneling", - "past": "aneled", - "past_participle": "aneled" - }, - { - "infinitive": "cop", - "present": "cops", - "gerund": "copping", - "past": "copped", - "past_participle": "copped" - }, - { - "infinitive": "cow", - "present": "cows", - "gerund": "cowing", - "past": "cowed", - "past_participle": "cowed" - }, - { - "infinitive": "cox", - "present": "coxes", - "gerund": "coxing", - "past": "coxed", - "past_participle": "coxed" - }, - { - "infinitive": "bray", - "present": "brays", - "gerund": "braying", - "past": "brayed", - "past_participle": "brayed" - }, - { - "infinitive": "cob", - "present": "cobs", - "gerund": "cobbing", - "past": "cobbed", - "past_participle": "cobbed" - }, - { - "infinitive": "brag", - "present": "brags", - "gerund": "bragging", - "past": "bragged", - "past_participle": "bragged" - }, - { - "infinitive": "cod", - "present": "cods", - "gerund": "codding", - "past": "codded", - "past_participle": "codded" - }, - { - "infinitive": "cog", - "present": "cogs", - "gerund": "cogging", - "past": "cogged", - "past_participle": "cogged" - }, - { - "infinitive": "coo", - "present": "coos", - "gerund": "cooing", - "past": "cooed", - "past_participle": "cooed" - }, - { - "infinitive": "conn", - "present": "cons", - "gerund": "conning", - "past": "conned", - "past_participle": "conned" - }, - { - "infinitive": "tone", - "present": "tones", - "gerund": "toning", - "past": "toned", - "past_participle": "toned" - }, - { - "infinitive": "abbreviate", - "present": "abbreviates", - "gerund": "abbreviating", - "past": "abbreviated", - "past_participle": "abbreviated" - }, - { - "infinitive": "spear", - "present": "spears", - "gerund": "spearing", - "past": "speared", - "past_participle": "speared" - }, - { - "infinitive": "boxhaul", - "present": "boxhauls", - "gerund": "boxhauling", - "past": "boxhauled", - "past_participle": "boxhauled" - }, - { - "infinitive": "refile", - "present": "refiles", - "gerund": "refiling", - "past": "refiled", - "past_participle": "refiled" - }, - { - "infinitive": "edulcorate", - "present": "edulcorates", - "gerund": "edulcorating", - "past": "edulcorated", - "past_participle": "edulcorated" - }, - { - "infinitive": "speak", - "present": "speaks", - "gerund": "speaking", - "past": "spoke", - "past_participle": "spoken" - }, - { - "infinitive": "impersonalize", - "present": "impersonalizes", - "gerund": "impersonalizing", - "past": "impersonalized", - "past_participle": "impersonalized" - }, - { - "infinitive": "revegetate", - "present": "revegetates", - "gerund": "revegetating", - "past": "revegetated", - "past_participle": "revegetated" - }, - { - "infinitive": "accentuate", - "present": "accentuates", - "gerund": "accentuating", - "past": "accentuated", - "past_participle": "accentuated" - }, - { - "infinitive": "backwash", - "present": "backwashes", - "gerund": "backwashing", - "past": "backwashed", - "past_participle": "backwashed" - }, - { - "infinitive": "Christianize", - "present": "Christianizes", - "gerund": "Christianizing", - "past": "Christianized", - "past_participle": "Christianized" - }, - { - "infinitive": "revoice", - "present": "revoices", - "gerund": "revoicing", - "past": "revoiced", - "past_participle": "revoiced" - }, - { - "infinitive": "excite", - "present": "excites", - "gerund": "exciting", - "past": "excited", - "past_participle": "excited" - }, - { - "infinitive": "hacksaw", - "present": "hacksaws", - "gerund": "hacksawing", - "past": "hacksawed", - "past_participle": "hacksawn" - }, - { - "infinitive": "overtax", - "present": "overtaxes", - "gerund": "overtaxing", - "past": "overtaxed", - "past_participle": "overtaxed" - }, - { - "infinitive": "hap", - "present": "haps", - "gerund": "happing", - "past": "happed", - "past_participle": "happed" - }, - { - "infinitive": "hoist", - "present": "hoists", - "gerund": "hoisting", - "past": "hoisted", - "past_participle": "hoisted" - }, - { - "infinitive": "spellbind", - "present": "spellbinds", - "gerund": "spellbinding", - "past": "spellbound", - "past_participle": "spellbound" - }, - { - "infinitive": "disarrange", - "present": "disarranges", - "gerund": "disarranging", - "past": "disarranged", - "past_participle": "disarranged" - }, - { - "infinitive": "nosedive", - "present": "nosedives", - "gerund": "nosediving", - "past": "nosedived", - "past_participle": "nosedived" - }, - { - "infinitive": "inhibit", - "present": "inhibits", - "gerund": "inhibiting", - "past": "inhibited", - "past_participle": "inhibited" - }, - { - "infinitive": "solvate", - "present": "solvates", - "gerund": "solvating", - "past": "solvated", - "past_participle": "solvated" - }, - { - "infinitive": "sculpt", - "present": "sculpts", - "gerund": "sculpting", - "past": "sculpted", - "past_participle": "sculpted" - }, - { - "infinitive": "air", - "present": "airs", - "gerund": "airing", - "past": "aired", - "past_participle": "aired" - }, - { - "infinitive": "aim", - "present": "aims", - "gerund": "aiming", - "past": "aimed", - "past_participle": "aimed" - }, - { - "infinitive": "ail", - "present": "ails", - "gerund": "ailing", - "past": "ailed", - "past_participle": "ailed" - }, - { - "infinitive": "thrash", - "present": "thrashes", - "gerund": "thrashing", - "past": "thrashed", - "past_participle": "thrashed" - }, - { - "infinitive": "aid", - "present": "aids", - "gerund": "aiding", - "past": "aided", - "past_participle": "aided" - }, - { - "infinitive": "voice", - "present": "voices", - "gerund": "voicing", - "past": "voiced", - "past_participle": "voiced" - }, - { - "infinitive": "mistake", - "present": "mistakes", - "gerund": "mistaking", - "past": "mistook", - "past_participle": "mistaken" - }, - { - "infinitive": "souse", - "present": "souses", - "gerund": "sousing", - "past": "soused", - "past_participle": "soused" - }, - { - "infinitive": "dislimn", - "present": "dislimns", - "gerund": "dislimning", - "past": "dislimned", - "past_participle": "dislimned" - }, - { - "infinitive": "sting", - "present": "stings", - "gerund": "stinging", - "past": "stung", - "past_participle": "stung" - }, - { - "infinitive": "dizzy", - "present": "dizzies", - "gerund": "dizzying", - "past": "dizzied", - "past_participle": "dizzied" - }, - { - "infinitive": "brake", - "present": "brakes", - "gerund": "braking", - "past": "braked", - "past_participle": "braked" - }, - { - "infinitive": "cone", - "present": "cones", - "gerund": "coning", - "past": "coned", - "past_participle": "coned" - }, - { - "infinitive": "exile", - "present": "exiles", - "gerund": "exiling", - "past": "exiled", - "past_participle": "exiled" - }, - { - "infinitive": "uplift", - "present": "uplifts", - "gerund": "uplifting", - "past": "uplifted", - "past_participle": "uplifted" - }, - { - "infinitive": "conk", - "present": "conks", - "gerund": "conking", - "past": "conked", - "past_participle": "conked" - }, - { - "infinitive": "stint", - "present": "stints", - "gerund": "stinting", - "past": "stinted", - "past_participle": "stinted" - }, - { - "infinitive": "deadhead", - "present": "deadheads", - "gerund": "deadheading", - "past": "deadheaded", - "past_participle": "deadheaded" - }, - { - "infinitive": "feaze", - "present": "feazes", - "gerund": "feazing", - "past": "feazed", - "past_participle": "feazed" - }, - { - "infinitive": "perform", - "present": "performs", - "gerund": "performing", - "past": "performed", - "past_participle": "performed" - }, - { - "infinitive": "grapple", - "present": "grapples", - "gerund": "grappling", - "past": "grappled", - "past_participle": "grappled" - }, - { - "infinitive": "descend", - "present": "descends", - "gerund": "descending", - "past": "descended", - "past_participle": "descended" - }, - { - "infinitive": "hank", - "present": "hanks", - "gerund": "hanking", - "past": "hanked", - "past_participle": "hanked" - }, - { - "infinitive": "raid", - "present": "raids", - "gerund": "raiding", - "past": "raided", - "past_participle": "raided" - }, - { - "infinitive": "fuss", - "present": "fusses", - "gerund": "fussing", - "past": "fussed", - "past_participle": "fussed" - }, - { - "infinitive": "coproduce", - "present": "coproduces", - "gerund": "coproducing", - "past": "coproduced", - "past_participle": "coproduced" - }, - { - "infinitive": "swell", - "present": "swells", - "gerund": "swelling", - "past": "swelled", - "past_participle": "swollen" - }, - { - "infinitive": "hang", - "present": "hangs", - "gerund": "hanging", - "past": "hung", - "past_participle": "hung" - }, - { - "infinitive": "rain", - "present": "rains", - "gerund": "raining", - "past": "rained", - "past_participle": "rained" - }, - { - "infinitive": "hand", - "present": "hands", - "gerund": "handing", - "past": "handed", - "past_participle": "handed" - }, - { - "infinitive": "larrup", - "present": "larrups", - "gerund": "larruping", - "past": "larruped", - "past_participle": "larruped" - }, - { - "infinitive": "nix", - "present": "nixes", - "gerund": "nixing", - "past": "nixed", - "past_participle": "nixed" - }, - { - "infinitive": "fuze", - "present": "fuzes", - "gerund": "fuzing", - "past": "fuzed", - "past_participle": "fuzed" - }, - { - "infinitive": "descry", - "present": "descries", - "gerund": "descrying", - "past": "descried", - "past_participle": "descried" - }, - { - "infinitive": "sweettalk", - "present": "sweettalks", - "gerund": "sweettalking", - "past": "sweettalked", - "past_participle": "sweettalked" - }, - { - "infinitive": "deemphasize", - "present": "deemphasizes", - "gerund": "deemphasizing", - "past": "deemphasized", - "past_participle": "deemphasized" - }, - { - "infinitive": "jangle", - "present": "jangles", - "gerund": "jangling", - "past": "jangled", - "past_participle": "jangled" - }, - { - "infinitive": "humble", - "present": "humbles", - "gerund": "humbling", - "past": "humbled", - "past_participle": "humbled" - }, - { - "infinitive": "drip", - "present": "drips", - "gerund": "dripping", - "past": "dripped", - "past_participle": "dripped" - }, - { - "infinitive": "gratulate", - "present": "gratulates", - "gerund": "gratulating", - "past": "gratulated", - "past_participle": "gratulated" - }, - { - "infinitive": "jay-walk", - "present": "jay-walks", - "gerund": "jaywalking", - "past": "jaywalked", - "past_participle": "jay-walked" - }, - { - "infinitive": "contact", - "present": "contacts", - "gerund": "contacting", - "past": "contacted", - "past_participle": "contacted" - }, - { - "infinitive": "snigger", - "present": "sniggers", - "gerund": "sniggering", - "past": "sniggered", - "past_participle": "sniggered" - }, - { - "infinitive": "singlespace", - "present": "singlespaces", - "gerund": "singlespacing", - "past": "singlespaced", - "past_participle": "singlespaced" - }, - { - "infinitive": "skivvy", - "present": "skivvies", - "gerund": "skivvying", - "past": "skivvied", - "past_participle": "skivvied" - }, - { - "infinitive": "bereave", - "present": "bereaves", - "gerund": "bereaving", - "past": "bereaved", - "past_participle": "bereaved" - }, - { - "infinitive": "mingle", - "present": "mingles", - "gerund": "mingling", - "past": "mingled", - "past_participle": "mingled" - }, - { - "infinitive": "halloo", - "present": "halloos", - "gerund": "hallooing", - "past": "hallooed", - "past_participle": "hallooed" - }, - { - "infinitive": "dignify", - "present": "dignifies", - "gerund": "dignifying", - "past": "dignified", - "past_participle": "dignified" - }, - { - "infinitive": "repose", - "present": "reposes", - "gerund": "reposing", - "past": "reposed", - "past_participle": "reposed" - }, - { - "infinitive": "rarify", - "present": "rarifies", - "gerund": "rarifying", - "past": "rarified", - "past_participle": "rarified" - }, - { - "infinitive": "extoll", - "present": "extols", - "gerund": "extolling", - "past": "extolled", - "past_participle": "extolled" - }, - { - "infinitive": "rollerskate", - "present": "rollerskates", - "gerund": "rollerskating", - "past": "rollerskated", - "past_participle": "rollerskated" - }, - { - "infinitive": "interweave", - "present": "interweaves", - "gerund": "interweaving", - "past": "interwove", - "past_participle": "interwoven" - }, - { - "infinitive": "varitype", - "present": "varitypes", - "gerund": "varityping", - "past": "varityped", - "past_participle": "varityped" - }, - { - "infinitive": "attemper", - "present": "attempers", - "gerund": "attempering", - "past": "attempered", - "past_participle": "attempered" - }, - { - "infinitive": "exalt", - "present": "exalts", - "gerund": "exalting", - "past": "exalted", - "past_participle": "exalted" - }, - { - "infinitive": "shout", - "present": "shouts", - "gerund": "shouting", - "past": "shouted", - "past_participle": "shouted" - }, - { - "infinitive": "spread", - "present": "spreads", - "gerund": "spreading", - "past": "spread", - "past_participle": "spread" - }, - { - "infinitive": "board", - "present": "boards", - "gerund": "boarding", - "past": "boarded", - "past_participle": "boarded" - }, - { - "infinitive": "basset", - "present": "bassets", - "gerund": "basseting", - "past": "basseted", - "past_participle": "basseted" - }, - { - "infinitive": "shoulder", - "present": "shoulders", - "gerund": "shouldering", - "past": "shouldered", - "past_participle": "shouldered" - }, - { - "infinitive": "retread", - "present": "retreads", - "gerund": "retreading", - "past": "retreaded", - "past_participle": "retreaded" - }, - { - "infinitive": "botanize", - "present": "botanizes", - "gerund": "botanizing", - "past": "botanized", - "past_participle": "botanized" - }, - { - "infinitive": "barge", - "present": "barges", - "gerund": "barging", - "past": "barged", - "past_participle": "barged" - }, - { - "infinitive": "retreat", - "present": "retreats", - "gerund": "retreating", - "past": "retreated", - "past_participle": "retreated" - }, - { - "infinitive": "disadvantage", - "present": "disadvantages", - "gerund": "disadvantaging", - "past": "disadvantaged", - "past_participle": "disadvantaged" - }, - { - "infinitive": "rustle", - "present": "rustles", - "gerund": "rustling", - "past": "rustled", - "past_participle": "rustled" - }, - { - "infinitive": "overfly", - "present": "overflies", - "gerund": "overflying", - "past": "overflew", - "past_participle": "overflown" - }, - { - "infinitive": "airdrop", - "present": "airdrops", - "gerund": "airdropping", - "past": "airdropped", - "past_participle": "airdropped" - }, - { - "infinitive": "kyanize", - "present": "kyanizes", - "gerund": "kyanizing", - "past": "kyanized", - "past_participle": "kyanized" - }, - { - "infinitive": "snug", - "present": "snugs", - "gerund": "snugging", - "past": "snugged", - "past_participle": "snugged" - }, - { - "infinitive": "revalorize", - "present": "revalorizes", - "gerund": "revalorizing", - "past": "revalorized", - "past_participle": "revalorized" - }, - { - "infinitive": "grizzle", - "present": "grizzles", - "gerund": "grizzling", - "past": "grizzled", - "past_participle": "grizzled" - }, - { - "infinitive": "reassign", - "present": "reassigns", - "gerund": "reassigning", - "past": "reassigned", - "past_participle": "reassigned" - }, - { - "infinitive": "augur", - "present": "augurs", - "gerund": "auguring", - "past": "augured", - "past_participle": "augured" - }, - { - "infinitive": "thole", - "present": "tholes", - "gerund": "tholing", - "past": "tholed", - "past_participle": "tholed" - }, - { - "infinitive": "antique", - "present": "antiques", - "gerund": "antiquing", - "past": "antiqued", - "past_participle": "antiqued" - }, - { - "infinitive": "snub", - "present": "snubs", - "gerund": "snubbing", - "past": "snubbed", - "past_participle": "snubbed" - }, - { - "infinitive": "flatter", - "present": "flatters", - "gerund": "flattering", - "past": "flattered", - "past_participle": "flattered" - }, - { - "infinitive": "rile", - "present": "riles", - "gerund": "riling", - "past": "riled", - "past_participle": "riled" - }, - { - "infinitive": "hassle", - "present": "hassles", - "gerund": "hassling", - "past": "hassled", - "past_participle": "hassled" - }, - { - "infinitive": "flatten", - "present": "flattens", - "gerund": "flattening", - "past": "flattened", - "past_participle": "flattened" - }, - { - "infinitive": "bore", - "present": "bores", - "gerund": "boring", - "past": "bored", - "past_participle": "bored" - }, - { - "infinitive": "glamourize", - "present": "glamourizes", - "gerund": "glamourizing", - "past": "glamourized", - "past_participle": "glamourized" - }, - { - "infinitive": "cede", - "present": "cedes", - "gerund": "ceding", - "past": "ceded", - "past_participle": "ceded" - }, - { - "infinitive": "matriculate", - "present": "matriculates", - "gerund": "matriculating", - "past": "matriculated", - "past_participle": "matriculated" - }, - { - "infinitive": "vassalize", - "present": "vassalizes", - "gerund": "vassalizing", - "past": "vassalized", - "past_participle": "vassalized" - }, - { - "infinitive": "peek", - "present": "peeks", - "gerund": "peeking", - "past": "peeked", - "past_participle": "peeked" - }, - { - "infinitive": "peen", - "present": "peens", - "gerund": "peening", - "past": "peened", - "past_participle": "peened" - }, - { - "infinitive": "peel", - "present": "peels", - "gerund": "peeling", - "past": "peeled", - "past_participle": "peeled" - }, - { - "infinitive": "pulverize", - "present": "pulverizes", - "gerund": "pulverizing", - "past": "pulverized", - "past_participle": "pulverized" - }, - { - "infinitive": "elucidate", - "present": "elucidates", - "gerund": "elucidating", - "past": "elucidated", - "past_participle": "elucidated" - }, - { - "infinitive": "pose", - "present": "poses", - "gerund": "posing", - "past": "posed", - "past_participle": "posed" - }, - { - "infinitive": "confer", - "present": "confers", - "gerund": "conferring", - "past": "conferred", - "past_participle": "conferred" - }, - { - "infinitive": "ply", - "present": "plies", - "gerund": "plying", - "past": "plied", - "past_participle": "plied" - }, - { - "infinitive": "depoliticize", - "present": "depoliticizes", - "gerund": "depoliticizing", - "past": "depoliticized", - "past_participle": "depoliticized" - }, - { - "infinitive": "outrival", - "present": "outrivals", - "gerund": "outrivalling", - "past": "outrivalled", - "past_participle": "outrivalled" - }, - { - "infinitive": "peep", - "present": "peeps", - "gerund": "peeping", - "past": "peeped", - "past_participle": "peeped" - }, - { - "infinitive": "poss", - "present": "posses", - "gerund": "possing", - "past": "possed", - "past_participle": "possed" - }, - { - "infinitive": "chafe", - "present": "chafes", - "gerund": "chafing", - "past": "chafed", - "past_participle": "chafed" - }, - { - "infinitive": "chaff", - "present": "chaffs", - "gerund": "chaffing", - "past": "chaffed", - "past_participle": "chaffed" - }, - { - "infinitive": "tryst", - "present": "trysts", - "gerund": "trysting", - "past": "trysted", - "past_participle": "trysted" - }, - { - "infinitive": "visa", - "present": "visas", - "gerund": "visaing", - "past": "visaed", - "past_participle": "visaed" - }, - { - "infinitive": "plenish", - "present": "plenishes", - "gerund": "plenishing", - "past": "plenished", - "past_participle": "plenished" - }, - { - "infinitive": "cherish", - "present": "cherishes", - "gerund": "cherishing", - "past": "cherished", - "past_participle": "cherished" - }, - { - "infinitive": "croak", - "present": "croaks", - "gerund": "croaking", - "past": "croaked", - "past_participle": "croaked" - }, - { - "infinitive": "clomb", - "present": "clombs", - "gerund": "clombing", - "past": "clombed", - "past_participle": "clombed" - }, - { - "infinitive": "mantle", - "present": "mantles", - "gerund": "mantling", - "past": "mantled", - "past_participle": "mantled" - }, - { - "infinitive": "float", - "present": "floats", - "gerund": "floating", - "past": "floated", - "past_participle": "floated" - }, - { - "infinitive": "bound", - "present": "bounds", - "gerund": "bounding", - "past": "bounded", - "past_participle": "bounded" - }, - { - "infinitive": "clomp", - "present": "clomps", - "gerund": "clomping", - "past": "clomped", - "past_participle": "clomped" - }, - { - "infinitive": "obligate", - "present": "obligates", - "gerund": "obligating", - "past": "obligated", - "past_participle": "obligated" - }, - { - "infinitive": "wrongfoot", - "present": "wrongfoots", - "gerund": "wrongfooting", - "past": "wrongfooted", - "past_participle": "wrongfooted" - }, - { - "infinitive": "stumble", - "present": "stumbles", - "gerund": "stumbling", - "past": "stumbled", - "past_participle": "stumbled" - }, - { - "infinitive": "wan", - "present": "wans", - "gerund": "wanning", - "past": "wanned", - "past_participle": "wanned" - }, - { - "infinitive": "familiarize", - "present": "familiarizes", - "gerund": "familiarizing", - "past": "familiarized", - "past_participle": "familiarized" - }, - { - "infinitive": "connote", - "present": "connotes", - "gerund": "connoting", - "past": "connoted", - "past_participle": "connoted" - }, - { - "infinitive": "wag", - "present": "wags", - "gerund": "wagging", - "past": "wagged", - "past_participle": "wagged" - }, - { - "infinitive": "segment", - "present": "segments", - "gerund": "segmenting", - "past": "segmented", - "past_participle": "segmented" - }, - { - "infinitive": "wad", - "present": "wads", - "gerund": "wadding", - "past": "wadded", - "past_participle": "wadded" - }, - { - "infinitive": "frill", - "present": "frills", - "gerund": "frilling", - "past": "frilled", - "past_participle": "frilled" - }, - { - "infinitive": "fight", - "present": "fights", - "gerund": "fighting", - "past": "fought", - "past_participle": "fought" - }, - { - "infinitive": "gybe", - "present": "gybes", - "gerund": "gybing", - "past": "gybed", - "past_participle": "gybed" - }, - { - "infinitive": "tartarize", - "present": "tartarizes", - "gerund": "tartarizing", - "past": "tartarized", - "past_participle": "tartarized" - }, - { - "infinitive": "fizz", - "present": "fizzes", - "gerund": "fizzing", - "past": "fizzed", - "past_participle": "fizzed" - }, - { - "infinitive": "catalyze", - "present": "catalyzes", - "gerund": "catalyzing", - "past": "catalyzed", - "past_participle": "catalyzed" - }, - { - "infinitive": "pirouette", - "present": "pirouettes", - "gerund": "pirouetting", - "past": "pirouetted", - "past_participle": "pirouetted" - }, - { - "infinitive": "bespatter", - "present": "bespatters", - "gerund": "bespattering", - "past": "bespattered", - "past_participle": "bespattered" - }, - { - "infinitive": "converse", - "present": "converses", - "gerund": "conversing", - "past": "conversed", - "past_participle": "conversed" - }, - { - "infinitive": "imparadise", - "present": "imparadises", - "gerund": "imparadising", - "past": "imparadised", - "past_participle": "imparadised" - }, - { - "infinitive": "true", - "present": "trues", - "gerund": "truing", - "past": "trued", - "past_participle": "trued" - }, - { - "infinitive": "muss", - "present": "musses", - "gerund": "mussing", - "past": "mussed", - "past_participle": "mussed" - }, - { - "infinitive": "absent", - "present": "absents", - "gerund": "absenting", - "past": "absented", - "past_participle": "absented" - }, - { - "infinitive": "scrimmage", - "present": "scrimmages", - "gerund": "scrimmaging", - "past": "scrimmaged", - "past_participle": "scrimmaged" - }, - { - "infinitive": "detribalize", - "present": "detribalizes", - "gerund": "detribalizing", - "past": "detribalized", - "past_participle": "detribalized" - }, - { - "infinitive": "variolate", - "present": "variolates", - "gerund": "variolating", - "past": "variolated", - "past_participle": "variolated" - }, - { - "infinitive": "emit", - "present": "emits", - "gerund": "emitting", - "past": "emitted", - "past_participle": "emitted" - }, - { - "infinitive": "corrade", - "present": "corrades", - "gerund": "corrading", - "past": "corraded", - "past_participle": "corraded" - }, - { - "infinitive": "flatter", - "present": "flats", - "gerund": "flatting", - "past": "flatted", - "past_participle": "flatted" - }, - { - "infinitive": "abstract", - "present": "abstracts", - "gerund": "abstracting", - "past": "abstracted", - "past_participle": "abstracted" - }, - { - "infinitive": "molt", - "present": "molts", - "gerund": "molting", - "past": "molted", - "past_participle": "molted" - }, - { - "infinitive": "evidence", - "present": "evidences", - "gerund": "evidencing", - "past": "evidenced", - "past_participle": "evidenced" - }, - { - "infinitive": "manure", - "present": "manures", - "gerund": "manuring", - "past": "manured", - "past_participle": "manured" - }, - { - "infinitive": "subsist", - "present": "subsists", - "gerund": "subsisting", - "past": "subsisted", - "past_participle": "subsisted" - }, - { - "infinitive": "face", - "present": "faces", - "gerund": "facing", - "past": "faced", - "past_participle": "faced" - }, - { - "infinitive": "encrypt", - "present": "encrypts", - "gerund": "encrypting", - "past": "encrypted", - "past_participle": "encrypted" - }, - { - "infinitive": "stake", - "present": "stakes", - "gerund": "staking", - "past": "staked", - "past_participle": "staked" - }, - { - "infinitive": "shrine", - "present": "shrines", - "gerund": "shrining", - "past": "shrined", - "past_participle": "shrined" - }, - { - "infinitive": "repay", - "present": "repays", - "gerund": "repaying", - "past": "repaid", - "past_participle": "repaid" - }, - { - "infinitive": "test", - "present": "tests", - "gerund": "testing", - "past": "tested", - "past_participle": "tested" - }, - { - "infinitive": "upholster", - "present": "upholsters", - "gerund": "upholstering", - "past": "upholstered", - "past_participle": "upholstered" - }, - { - "infinitive": "outmanoeuvre", - "present": "outmanoeuvres", - "gerund": "outmanoeuvring", - "past": "outmanoeuvred", - "past_participle": "outmanoeuvred" - }, - { - "infinitive": "frolic", - "present": "frolics", - "gerund": "frolicking", - "past": "frolicked", - "past_participle": "frolicked" - }, - { - "infinitive": "cicatrize", - "present": "cicatrizes", - "gerund": "cicatrizing", - "past": "cicatrized", - "past_participle": "cicatrized" - }, - { - "infinitive": "orate", - "present": "orates", - "gerund": "orating", - "past": "orated", - "past_participle": "orated" - }, - { - "infinitive": "heroworship", - "present": "heroworships", - "gerund": "heroworshipping", - "past": "heroworshipped", - "past_participle": "heroworshipped" - }, - { - "infinitive": "truncate", - "present": "truncates", - "gerund": "truncating", - "past": "truncated", - "past_participle": "truncated" - }, - { - "infinitive": "stutter", - "present": "stutters", - "gerund": "stuttering", - "past": "stuttered", - "past_participle": "stuttered" - }, - { - "infinitive": "welcome", - "present": "welcomes", - "gerund": "welcoming", - "past": "welcomed", - "past_participle": "welcomed" - }, - { - "infinitive": "outreach", - "present": "outreaches", - "gerund": "outreaching", - "past": "outreached", - "past_participle": "outreached" - }, - { - "infinitive": "troupe", - "present": "troupes", - "gerund": "trouping", - "past": "trouped", - "past_participle": "trouped" - }, - { - "infinitive": "volcanize", - "present": "volcanizes", - "gerund": "volcanizing", - "past": "volcanized", - "past_participle": "volcanized" - }, - { - "infinitive": "ramify", - "present": "ramifies", - "gerund": "ramifying", - "past": "ramified", - "past_participle": "ramified" - }, - { - "infinitive": "contango", - "present": "contangoes", - "gerund": "contangoing", - "past": "contangoed", - "past_participle": "contangoed" - }, - { - "infinitive": "faze", - "present": "fazes", - "gerund": "fazing", - "past": "fazed", - "past_participle": "fazed" - }, - { - "infinitive": "tautologize", - "present": "tautologizes", - "gerund": "tautologizing", - "past": "tautologized", - "past_participle": "tautologized" - }, - { - "infinitive": "bottom", - "present": "bottoms", - "gerund": "bottoming", - "past": "bottomed", - "past_participle": "bottomed" - }, - { - "infinitive": "urbanize", - "present": "urbanizes", - "gerund": "urbanizing", - "past": "urbanized", - "past_participle": "urbanized" - }, - { - "infinitive": "gyrate", - "present": "gyrates", - "gerund": "gyrating", - "past": "gyrated", - "past_participle": "gyrated" - }, - { - "infinitive": "re-trace", - "present": "re-traces", - "gerund": "re-tracing", - "past": "retraced", - "past_participle": "re-traced" - }, - { - "infinitive": "denunciate", - "present": "denunciates", - "gerund": "denunciating", - "past": "denunciated", - "past_participle": "denunciated" - }, - { - "infinitive": "platemark", - "present": "platemarks", - "gerund": "platemarking", - "past": "platemarked", - "past_participle": "platemarked" - }, - { - "infinitive": "incarcerate", - "present": "incarcerates", - "gerund": "incarcerating", - "past": "incarcerated", - "past_participle": "incarcerated" - }, - { - "infinitive": "dance", - "present": "dances", - "gerund": "dancing", - "past": "danced", - "past_participle": "danced" - }, - { - "infinitive": "debauch", - "present": "debauches", - "gerund": "debauching", - "past": "debauched", - "past_participle": "debauched" - }, - { - "infinitive": "supplement", - "present": "supplements", - "gerund": "supplementing", - "past": "supplemented", - "past_participle": "supplemented" - }, - { - "infinitive": "battle", - "present": "battles", - "gerund": "battling", - "past": "battled", - "past_participle": "battled" - }, - { - "infinitive": "bottlefeed", - "present": "bottlefeeds", - "gerund": "bottlefeeding", - "past": "bottlefed", - "past_participle": "bottlefed" - }, - { - "infinitive": "suffumigate", - "present": "suffumigates", - "gerund": "suffumigating", - "past": "suffumigated", - "past_participle": "suffumigated" - }, - { - "infinitive": "varnish", - "present": "varnishes", - "gerund": "varnishing", - "past": "varnished", - "past_participle": "varnished" - }, - { - "infinitive": "matchmark", - "present": "matchmarks", - "gerund": "matchmarking", - "past": "matchmarked", - "past_participle": "matchmarked" - }, - { - "infinitive": "zone", - "present": "zones", - "gerund": "zoning", - "past": "zoned", - "past_participle": "zoned" - }, - { - "infinitive": "graph", - "present": "graphs", - "gerund": "graphing", - "past": "graphed", - "past_participle": "graphed" - }, - { - "infinitive": "hump", - "present": "humps", - "gerund": "humping", - "past": "humped", - "past_participle": "humped" - }, - { - "infinitive": "flash", - "present": "flashes", - "gerund": "flashing", - "past": "flashed", - "past_participle": "flashed" - }, - { - "infinitive": "counterattack", - "present": "counterattacks'", - "gerund": "counter-attacking", - "past": "counterattacked", - "past_participle": "counter-attacked" - }, - { - "infinitive": "compensate", - "present": "compensates", - "gerund": "compensating", - "past": "compensated", - "past_participle": "compensated" - }, - { - "infinitive": "tusk", - "present": "tusks", - "gerund": "tusking", - "past": "tusked", - "past_participle": "tusked" - }, - { - "infinitive": "overbuild", - "present": "overbuilds", - "gerund": "overbuilding", - "past": "overbuilt", - "past_participle": "overbuilt" - }, - { - "infinitive": "brown", - "present": "browns", - "gerund": "browning", - "past": "browned", - "past_participle": "browned" - }, - { - "infinitive": "predicate", - "present": "predicates", - "gerund": "predicating", - "past": "predicated", - "past_participle": "predicated" - }, - { - "infinitive": "congest", - "present": "congests", - "gerund": "congesting", - "past": "congested", - "past_participle": "congested" - }, - { - "infinitive": "faceharden", - "present": "facehardens", - "gerund": "facehardening", - "past": "facehardened", - "past_participle": "facehardened" - }, - { - "infinitive": "chirrup", - "present": "chirrups", - "gerund": "chirruping", - "past": "chirruped", - "past_participle": "chirruped" - }, - { - "infinitive": "twotime", - "present": "twotimes", - "gerund": "twotiming", - "past": "twotimed", - "past_participle": "twotimed" - }, - { - "infinitive": "sunbathe", - "present": "sunbathes", - "gerund": "sunbathing", - "past": "sunbathed", - "past_participle": "sunbathed" - }, - { - "infinitive": "kitten", - "present": "kittens", - "gerund": "kittening", - "past": "kittened", - "past_participle": "kittened" - }, - { - "infinitive": "trouble", - "present": "troubles", - "gerund": "troubling", - "past": "troubled", - "past_participle": "troubled" - }, - { - "infinitive": "blast", - "present": "blasts", - "gerund": "blasting", - "past": "blasted", - "past_participle": "blasted" - }, - { - "infinitive": "bring", - "present": "brings", - "gerund": "bringing", - "past": "brought", - "past_participle": "brought" - }, - { - "infinitive": "subinfeudate", - "present": "subinfeudates", - "gerund": "subinfeudating", - "past": "subinfeudated", - "past_participle": "subinfeudated" - }, - { - "infinitive": "Latinize", - "present": "Latinizes", - "gerund": "Latinizing", - "past": "Latinized", - "past_participle": "Latinized" - }, - { - "infinitive": "gun", - "present": "guns", - "gerund": "gunning", - "past": "gunned", - "past_participle": "gunned" - }, - { - "infinitive": "gum", - "present": "gums", - "gerund": "gumming", - "past": "gummed", - "past_participle": "gummed" - }, - { - "infinitive": "stylopize", - "present": "stylopizes", - "gerund": "stylopizing", - "past": "stylopized", - "past_participle": "stylopized" - }, - { - "infinitive": "burgeon", - "present": "burgeons", - "gerund": "burgeoning", - "past": "burgeoned", - "past_participle": "burgeoned" - }, - { - "infinitive": "guy", - "present": "guys", - "gerund": "guying", - "past": "guyed", - "past_participle": "guyed" - }, - { - "infinitive": "disqualify", - "present": "disqualifies", - "gerund": "disqualifying", - "past": "disqualified", - "past_participle": "disqualified" - }, - { - "infinitive": "Grecize", - "present": "Grecizes", - "gerund": "Grecizing", - "past": "Grecized", - "past_participle": "Grecized" - }, - { - "infinitive": "brave", - "present": "braves", - "gerund": "braving", - "past": "braved", - "past_participle": "braved" - }, - { - "infinitive": "regret", - "present": "regrets", - "gerund": "regretting", - "past": "regretted", - "past_participle": "regretted" - }, - { - "infinitive": "trill", - "present": "trills", - "gerund": "trilling", - "past": "trilled", - "past_participle": "trilled" - }, - { - "infinitive": "discover", - "present": "discovers", - "gerund": "discovering", - "past": "discovered", - "past_participle": "discovered" - }, - { - "infinitive": "agitate", - "present": "agitates", - "gerund": "agitating", - "past": "agitated", - "past_participle": "agitated" - }, - { - "infinitive": "cosh", - "present": "coshes", - "gerund": "coshing", - "past": "coshed", - "past_participle": "coshed" - }, - { - "infinitive": "circumnutate", - "present": "circumnutates", - "gerund": "circumnutating", - "past": "circumnutated", - "past_participle": "circumnutated" - }, - { - "infinitive": "grump", - "present": "grumps", - "gerund": "grumping", - "past": "grumped", - "past_participle": "grumped" - }, - { - "infinitive": "cost", - "present": "costs", - "gerund": "costing", - "past": "cost", - "past_participle": "cost" - }, - { - "infinitive": "stupefy", - "present": "stupefies", - "gerund": "stupefying", - "past": "stupefied", - "past_participle": "stupefied" - }, - { - "infinitive": "tempest", - "present": "tempests", - "gerund": "tempesting", - "past": "tempested", - "past_participle": "tempested" - }, - { - "infinitive": "curse", - "present": "curses", - "gerund": "cursing", - "past": "curst", - "past_participle": "curst" - }, - { - "infinitive": "appear", - "present": "appears", - "gerund": "appearing", - "past": "appeared", - "past_participle": "appeared" - }, - { - "infinitive": "avouch", - "present": "avouches", - "gerund": "avouching", - "past": "avouched", - "past_participle": "avouched" - }, - { - "infinitive": "galumph", - "present": "galumphs", - "gerund": "galumphing", - "past": "galumphed", - "past_participle": "galumphed" - }, - { - "infinitive": "havoc", - "present": "havocs", - "gerund": "havocking", - "past": "havocked", - "past_participle": "havocked" - }, - { - "infinitive": "chuff", - "present": "chuffs", - "gerund": "chuffing", - "past": "chuffed", - "past_participle": "chuffed" - }, - { - "infinitive": "telex", - "present": "telexes", - "gerund": "telexing", - "past": "telexed", - "past_participle": "telexed" - }, - { - "infinitive": "handpick", - "present": "handpicks", - "gerund": "handpicking", - "past": "handpicked", - "past_participle": "handpicked" - }, - { - "infinitive": "appeal", - "present": "appeals", - "gerund": "appealing", - "past": "appealed", - "past_participle": "appealed" - }, - { - "infinitive": "satisfy", - "present": "satisfies", - "gerund": "satisfying", - "past": "satisfied", - "past_participle": "satisfied" - }, - { - "infinitive": "unbosom", - "present": "unbosoms", - "gerund": "unbosoming", - "past": "unbosomed", - "past_participle": "unbosomed" - }, - { - "infinitive": "chicane", - "present": "chicanes", - "gerund": "chicaning", - "past": "chicaned", - "past_participle": "chicaned" - }, - { - "infinitive": "widow", - "present": "widows", - "gerund": "widowing", - "past": "widowed", - "past_participle": "widowed" - }, - { - "infinitive": "gawk", - "present": "gawks", - "gerund": "gawking", - "past": "gawked", - "past_participle": "gawked" - }, - { - "infinitive": "disclaim", - "present": "disclaims", - "gerund": "disclaiming", - "past": "disclaimed", - "past_participle": "disclaimed" - }, - { - "infinitive": "illumine", - "present": "illumines", - "gerund": "illumining", - "past": "illumined", - "past_participle": "illumined" - }, - { - "infinitive": "gawp", - "present": "gawps", - "gerund": "gawping", - "past": "gawped", - "past_participle": "gawped" - }, - { - "infinitive": "English", - "present": "Englishes", - "gerund": "Englishing", - "past": "Englished", - "past_participle": "Englished" - }, - { - "infinitive": "gorge", - "present": "gorges", - "gerund": "gorging", - "past": "gorged", - "past_participle": "gorged" - }, - { - "infinitive": "reexamine", - "present": "reexamines", - "gerund": "reexamining", - "past": "reexamined", - "past_participle": "reexamined" - }, - { - "infinitive": "tubulate", - "present": "tubulates", - "gerund": "tubulating", - "past": "tubulated", - "past_participle": "tubulated" - }, - { - "infinitive": "change", - "present": "changes", - "gerund": "changing", - "past": "changed", - "past_participle": "changed" - }, - { - "infinitive": "buck", - "present": "bucks", - "gerund": "bucking", - "past": "bucked", - "past_participle": "bucked" - }, - { - "infinitive": "theorize", - "present": "theorizes", - "gerund": "theorizing", - "past": "theorized", - "past_participle": "theorized" - }, - { - "infinitive": "eke", - "present": "ekes", - "gerund": "eking", - "past": "eked", - "past_participle": "eked" - }, - { - "infinitive": "disavow", - "present": "disavows", - "gerund": "disavowing", - "past": "disavowed", - "past_participle": "disavowed" - }, - { - "infinitive": "detonate", - "present": "detonates", - "gerund": "detonating", - "past": "detonated", - "past_participle": "detonated" - }, - { - "infinitive": "conciliate", - "present": "conciliates", - "gerund": "conciliating", - "past": "conciliated", - "past_participle": "conciliated" - }, - { - "infinitive": "pillow", - "present": "pillows", - "gerund": "pillowing", - "past": "pillowed", - "past_participle": "pillowed" - }, - { - "infinitive": "boult", - "present": "boults", - "gerund": "boulting", - "past": "boulted", - "past_participle": "boulted" - }, - { - "infinitive": "infract", - "present": "infracts", - "gerund": "infracting", - "past": "infracted", - "past_participle": "infracted" - }, - { - "infinitive": "paragon", - "present": "paragons", - "gerund": "paragoning", - "past": "paragoned", - "past_participle": "paragoned" - }, - { - "infinitive": "gesticulate", - "present": "gesticulates", - "gerund": "gesticulating", - "past": "gesticulated", - "past_participle": "gesticulated" - }, - { - "infinitive": "market", - "present": "markets", - "gerund": "marketing", - "past": "marketed", - "past_participle": "marketed" - }, - { - "infinitive": "knurl", - "present": "knurls", - "gerund": "knurling", - "past": "knurled", - "past_participle": "knurled" - }, - { - "infinitive": "subvert", - "present": "subverts", - "gerund": "subverting", - "past": "subverted", - "past_participle": "subverted" - }, - { - "infinitive": "captivate", - "present": "captivates", - "gerund": "captivating", - "past": "captivated", - "past_participle": "captivated" - }, - { - "infinitive": "rejuvenate", - "present": "rejuvenates", - "gerund": "rejuvenating", - "past": "rejuvenated", - "past_participle": "rejuvenated" - }, - { - "infinitive": "coalesce", - "present": "coalesces", - "gerund": "coalescing", - "past": "coalesced", - "past_participle": "coalesced" - }, - { - "infinitive": "live", - "present": "lives", - "gerund": "living", - "past": "lived", - "past_participle": "lived" - }, - { - "infinitive": "slough", - "present": "sloughs", - "gerund": "sloughing", - "past": "sloughed", - "past_participle": "sloughed" - }, - { - "infinitive": "meliorate", - "present": "meliorates", - "gerund": "meliorating", - "past": "meliorated", - "past_participle": "meliorated" - }, - { - "infinitive": "stomach", - "present": "stomaches", - "gerund": "stomaching", - "past": "stomached", - "past_participle": "stomached" - }, - { - "infinitive": "privateer", - "present": "privateers", - "gerund": "privateering", - "past": "privateered", - "past_participle": "privateered" - }, - { - "infinitive": "entrance", - "present": "entrances", - "gerund": "entrancing", - "past": "entranced", - "past_participle": "entranced" - }, - { - "infinitive": "club", - "present": "clubs", - "gerund": "clubbing", - "past": "clubbed", - "past_participle": "clubbed" - }, - { - "infinitive": "cluck", - "present": "clucks", - "gerund": "clucking", - "past": "clucked", - "past_participle": "clucked" - }, - { - "infinitive": "clue", - "present": "clues", - "gerund": "cluing", - "past": "clued", - "past_participle": "clued" - }, - { - "infinitive": "reunify", - "present": "reunifies", - "gerund": "reunifying", - "past": "reunified", - "past_participle": "reunified" - }, - { - "infinitive": "judder", - "present": "judders", - "gerund": "juddering", - "past": "juddered", - "past_participle": "juddered" - }, - { - "infinitive": "pedestrianize", - "present": "pedestrianizes", - "gerund": "pedestrianizing", - "past": "pedestrianized", - "past_participle": "pedestrianized" - }, - { - "infinitive": "prepay", - "present": "prepays", - "gerund": "prepaying", - "past": "prepaid", - "past_participle": "prepaid" - }, - { - "infinitive": "douche", - "present": "douches", - "gerund": "douching", - "past": "douched", - "past_participle": "douched" - }, - { - "infinitive": "machicolate", - "present": "machicolates", - "gerund": "machicolating", - "past": "machicolated", - "past_participle": "machicolated" - }, - { - "infinitive": "cap", - "present": "caps", - "gerund": "capping", - "past": "capped", - "past_participle": "capped" - }, - { - "infinitive": "caw", - "present": "caws", - "gerund": "cawing", - "past": "cawed", - "past_participle": "cawed" - }, - { - "infinitive": "cat", - "present": "cats", - "gerund": "catting", - "past": "catted", - "past_participle": "catted" - }, - { - "infinitive": "purge", - "present": "purges", - "gerund": "purging", - "past": "purged", - "past_participle": "purged" - }, - { - "infinitive": "miaul", - "present": "miauls", - "gerund": "miauling", - "past": "miauled", - "past_participle": "miauled" - }, - { - "infinitive": "can", - "present": "", - "gerund": "", - "past": "could", - "past_participle": "" - }, - { - "infinitive": "heart", - "present": "hearts", - "gerund": "hearting", - "past": "hearted", - "past_participle": "hearted" - }, - { - "infinitive": "attribute", - "present": "attributes", - "gerund": "attributing", - "past": "attributed", - "past_participle": "attributed" - }, - { - "infinitive": "chip", - "present": "chips", - "gerund": "chipping", - "past": "chipped", - "past_participle": "chipped" - }, - { - "infinitive": "nock", - "present": "nocks", - "gerund": "nocking", - "past": "nocked", - "past_participle": "nocked" - }, - { - "infinitive": "chondrify", - "present": "chondrifies", - "gerund": "chondrifying", - "past": "chondrified", - "past_participle": "chondrified" - }, - { - "infinitive": "abort", - "present": "aborts", - "gerund": "aborting", - "past": "aborted", - "past_participle": "aborted" - }, - { - "infinitive": "chin", - "present": "chins", - "gerund": "chinning", - "past": "chinned", - "past_participle": "chinned" - }, - { - "infinitive": "refine", - "present": "refines", - "gerund": "refining", - "past": "refined", - "past_participle": "refined" - }, - { - "infinitive": "manhandle", - "present": "manhandles", - "gerund": "manhandling", - "past": "manhandled", - "past_participle": "manhandled" - }, - { - "infinitive": "occur", - "present": "occurs", - "gerund": "occurring", - "past": "occurred", - "past_participle": "occurred" - }, - { - "infinitive": "bankrupt", - "present": "bankrupts", - "gerund": "bankrupting", - "past": "bankrupted", - "past_participle": "bankrupted" - }, - { - "infinitive": "lounge", - "present": "lounges", - "gerund": "lounging", - "past": "lounged", - "past_participle": "lounged" - }, - { - "infinitive": "despair", - "present": "despairs", - "gerund": "despairing", - "past": "despaired", - "past_participle": "despaired" - }, - { - "infinitive": "intrench", - "present": "intrenches", - "gerund": "intrenching", - "past": "intrenched", - "past_participle": "intrenched" - }, - { - "infinitive": "deteriorate", - "present": "deteriorates", - "gerund": "deteriorating", - "past": "deteriorated", - "past_participle": "deteriorated" - }, - { - "infinitive": "escalate", - "present": "escalates", - "gerund": "escalating", - "past": "escalated", - "past_participle": "escalated" - }, - { - "infinitive": "dive", - "present": "dives", - "gerund": "diving", - "past": "dove", - "past_participle": "dived" - }, - { - "infinitive": "bawl", - "present": "bawls", - "gerund": "bawling", - "past": "bawled", - "past_participle": "bawled" - }, - { - "infinitive": "countermand", - "present": "countermands", - "gerund": "countermanding", - "past": "countermanded", - "past_participle": "countermanded" - }, - { - "infinitive": "produce", - "present": "produces", - "gerund": "producing", - "past": "produced", - "past_participle": "produced" - }, - { - "infinitive": "restate", - "present": "restates", - "gerund": "restating", - "past": "restated", - "past_participle": "restated" - }, - { - "infinitive": "coagulate", - "present": "coagulates", - "gerund": "coagulating", - "past": "coagulated", - "past_participle": "coagulated" - }, - { - "infinitive": "flourish", - "present": "flourishes", - "gerund": "flourishing", - "past": "flourished", - "past_participle": "flourished" - }, - { - "infinitive": "wainscot", - "present": "wainscots", - "gerund": "wainscoting", - "past": "wainscoted", - "past_participle": "wainscoted" - }, - { - "infinitive": "crepe", - "present": "crepes", - "gerund": "creping", - "past": "creped", - "past_participle": "creped" - }, - { - "infinitive": "remember", - "present": "remembers", - "gerund": "remembering", - "past": "remembered", - "past_participle": "remembered" - }, - { - "infinitive": "ammonify", - "present": "ammonifies", - "gerund": "ammonifying", - "past": "ammonified", - "past_participle": "ammonified" - }, - { - "infinitive": "rebut", - "present": "rebuts", - "gerund": "rebutting", - "past": "rebutted", - "past_participle": "rebutted" - }, - { - "infinitive": "denaturalize", - "present": "denaturalizes", - "gerund": "denaturalizing", - "past": "denaturalized", - "past_participle": "denaturalized" - }, - { - "infinitive": "offend", - "present": "offends", - "gerund": "offending", - "past": "offended", - "past_participle": "offended" - }, - { - "infinitive": "crumple", - "present": "crumples", - "gerund": "crumpling", - "past": "crumpled", - "past_participle": "crumpled" - }, - { - "infinitive": "stilt", - "present": "stilts", - "gerund": "stilting", - "past": "stilted", - "past_participle": "stilted" - }, - { - "infinitive": "forfeit", - "present": "forfeits", - "gerund": "forfeiting", - "past": "forfeited", - "past_participle": "forfeited" - }, - { - "infinitive": "utilize", - "present": "utilizes", - "gerund": "utilizing", - "past": "utilized", - "past_participle": "utilized" - }, - { - "infinitive": "brain", - "present": "brains", - "gerund": "braining", - "past": "brained", - "past_participle": "brained" - }, - { - "infinitive": "brail", - "present": "brails", - "gerund": "brailing", - "past": "brailed", - "past_participle": "brailed" - }, - { - "infinitive": "cityfy", - "present": "cityfies", - "gerund": "cityfying", - "past": "cityfied", - "past_participle": "cityfied" - }, - { - "infinitive": "birdy", - "present": "birdies", - "gerund": "birdying", - "past": "birdied", - "past_participle": "birdied" - }, - { - "infinitive": "cachinnate", - "present": "cachinnates", - "gerund": "cachinnating", - "past": "cachinnated", - "past_participle": "cachinnated" - }, - { - "infinitive": "cold", - "present": "colds", - "gerund": "colding", - "past": "colded", - "past_participle": "colded" - }, - { - "infinitive": "brede", - "present": "bredes", - "gerund": "breding", - "past": "breded", - "past_participle": "breded" - }, - { - "infinitive": "iceskate", - "present": "iceskates", - "gerund": "iceskating", - "past": "iceskated", - "past_participle": "iceskated" - }, - { - "infinitive": "trifle", - "present": "trifles", - "gerund": "trifling", - "past": "trifled", - "past_participle": "trifled" - }, - { - "infinitive": "acknowledge", - "present": "acknowledges", - "gerund": "acknowledging", - "past": "acknowledged", - "past_participle": "acknowledged" - }, - { - "infinitive": "moisturize", - "present": "moisturizes", - "gerund": "moisturizing", - "past": "moisturized", - "past_participle": "moisturized" - }, - { - "infinitive": "window", - "present": "windows", - "gerund": "windowing", - "past": "windowed", - "past_participle": "windowed" - }, - { - "infinitive": "suffocate", - "present": "suffocates", - "gerund": "suffocating", - "past": "suffocated", - "past_participle": "suffocated" - }, - { - "infinitive": "waggle", - "present": "waggles", - "gerund": "waggling", - "past": "waggled", - "past_participle": "waggled" - }, - { - "infinitive": "crossindex", - "present": "crossindexes", - "gerund": "crossindexing", - "past": "crossindexed", - "past_participle": "crossindexed" - }, - { - "infinitive": "interrelate", - "present": "interrelates", - "gerund": "interrelating", - "past": "interrelated", - "past_participle": "interrelated" - }, - { - "infinitive": "halter", - "present": "halts", - "gerund": "halting", - "past": "halted", - "past_participle": "halted" - }, - { - "infinitive": "fling", - "present": "flings", - "gerund": "flinging", - "past": "flung", - "past_participle": "flung" - }, - { - "infinitive": "nod", - "present": "nods", - "gerund": "nodding", - "past": "nodded", - "past_participle": "nodded" - }, - { - "infinitive": "rake", - "present": "rakes", - "gerund": "raking", - "past": "raked", - "past_participle": "raked" - }, - { - "infinitive": "overcrowd", - "present": "overcrowds", - "gerund": "overcrowding", - "past": "overcrowded", - "past_participle": "overcrowded" - }, - { - "infinitive": "introduce", - "present": "introduces", - "gerund": "introducing", - "past": "introduced", - "past_participle": "introduced" - }, - { - "infinitive": "flint", - "present": "flints", - "gerund": "flinting", - "past": "flinted", - "past_participle": "flinted" - }, - { - "infinitive": "recap", - "present": "recaps", - "gerund": "recaping", - "past": "recaped", - "past_participle": "recaped" - }, - { - "infinitive": "damnify", - "present": "damnifies", - "gerund": "damnifying", - "past": "damnified", - "past_participle": "damnified" - }, - { - "infinitive": "provision", - "present": "provisions", - "gerund": "provisioning", - "past": "provisioned", - "past_participle": "provisioned" - }, - { - "infinitive": "discuss", - "present": "discusses", - "gerund": "discussing", - "past": "discussed", - "past_participle": "discussed" - }, - { - "infinitive": "expedite", - "present": "expedites", - "gerund": "expediting", - "past": "expedited", - "past_participle": "expedited" - }, - { - "infinitive": "wont", - "present": "wonts", - "gerund": "wonting", - "past": "wonted", - "past_participle": "wonted" - }, - { - "infinitive": "daub", - "present": "daubs", - "gerund": "daubing", - "past": "daubed", - "past_participle": "daubed" - }, - { - "infinitive": "placate", - "present": "placates", - "gerund": "placating", - "past": "placated", - "past_participle": "placated" - }, - { - "infinitive": "sop", - "present": "sops", - "gerund": "sopping", - "past": "sopped", - "past_participle": "sopped" - }, - { - "infinitive": "drop", - "present": "drops", - "gerund": "dropping", - "past": "dropped", - "past_participle": "dropped" - }, - { - "infinitive": "deify", - "present": "deifies", - "gerund": "deifying", - "past": "deified", - "past_participle": "deified" - }, - { - "infinitive": "kerne", - "present": "kerns", - "gerund": "kerning", - "past": "kerned", - "past_participle": "kerned" - }, - { - "infinitive": "degauss", - "present": "degausses", - "gerund": "degaussing", - "past": "degaussed", - "past_participle": "degaussed" - }, - { - "infinitive": "outsail", - "present": "outsails", - "gerund": "outsailing", - "past": "outsailed", - "past_participle": "outsailed" - }, - { - "infinitive": "pommel", - "present": "pommels", - "gerund": "pommelling", - "past": "pommelled", - "past_participle": "pommelled" - }, - { - "infinitive": "double-fault", - "present": "double-faults", - "gerund": "double-faulting", - "past": "double-faulted", - "past_participle": "double-faulted" - }, - { - "infinitive": "enisle", - "present": "enisles", - "gerund": "enisling", - "past": "enisled", - "past_participle": "enisled" - }, - { - "infinitive": "grouse", - "present": "grouses", - "gerund": "grousing", - "past": "groused", - "past_participle": "groused" - }, - { - "infinitive": "yean", - "present": "yeans", - "gerund": "yeaning", - "past": "yeaned", - "past_participle": "yeaned" - }, - { - "infinitive": "obturate", - "present": "obturates", - "gerund": "obturating", - "past": "obturated", - "past_participle": "obturated" - }, - { - "infinitive": "wrapped", - "present": "wraps", - "gerund": "wrapping", - "past": "wrapped", - "past_participle": "wrapped" - }, - { - "infinitive": "replay", - "present": "replays", - "gerund": "replaying", - "past": "replayed", - "past_participle": "replayed" - }, - { - "infinitive": "forgat", - "present": "forgats", - "gerund": "forgating", - "past": "forgated", - "past_participle": "forgated" - }, - { - "infinitive": "counteract", - "present": "counteracts", - "gerund": "counteracting", - "past": "counteracted", - "past_participle": "counteracted" - }, - { - "infinitive": "accomplish", - "present": "accomplishes", - "gerund": "accomplishing", - "past": "accomplished", - "past_participle": "accomplished" - }, - { - "infinitive": "precontract", - "present": "precontracts", - "gerund": "precontracting", - "past": "precontracted", - "past_participle": "precontracted" - }, - { - "infinitive": "space", - "present": "spaces", - "gerund": "spacing", - "past": "spaced", - "past_participle": "spaced" - }, - { - "infinitive": "showd", - "present": "showds", - "gerund": "showding", - "past": "showded", - "past_participle": "showded" - }, - { - "infinitive": "thirst", - "present": "thirsts", - "gerund": "thirsting", - "past": "thirsted", - "past_participle": "thirsted" - }, - { - "infinitive": "increase", - "present": "increases", - "gerund": "increasing", - "past": "increased", - "past_participle": "increased" - }, - { - "infinitive": "hallucinate", - "present": "hallucinates", - "gerund": "hallucinating", - "past": "hallucinated", - "past_participle": "hallucinated" - }, - { - "infinitive": "instate", - "present": "instates", - "gerund": "instating", - "past": "instated", - "past_participle": "instated" - }, - { - "infinitive": "circumscribe", - "present": "circumscribes", - "gerund": "circumscribing", - "past": "circumscribed", - "past_participle": "circumscribed" - }, - { - "infinitive": "tweeze", - "present": "tweezes", - "gerund": "tweezing", - "past": "tweezed", - "past_participle": "tweezed" - }, - { - "infinitive": "scandalize", - "present": "scandalizes", - "gerund": "scandalizing", - "past": "scandalized", - "past_participle": "scandalized" - }, - { - "infinitive": "carp", - "present": "carps", - "gerund": "carping", - "past": "carped", - "past_participle": "carped" - }, - { - "infinitive": "caway", - "present": "caways", - "gerund": "cawaying", - "past": "cawayed", - "past_participle": "cawayed" - }, - { - "infinitive": "cark", - "present": "carks", - "gerund": "carking", - "past": "carked", - "past_participle": "carked" - }, - { - "infinitive": "conglutinate", - "present": "conglutinates", - "gerund": "conglutinating", - "past": "conglutinated", - "past_participle": "conglutinated" - }, - { - "infinitive": "repurchase", - "present": "repurchases", - "gerund": "repurchasing", - "past": "repurchased", - "past_participle": "repurchased" - }, - { - "infinitive": "card", - "present": "cards", - "gerund": "carding", - "past": "carded", - "past_participle": "carded" - }, - { - "infinitive": "care", - "present": "cares", - "gerund": "caring", - "past": "cared", - "past_participle": "cared" - }, - { - "infinitive": "moult", - "present": "moults", - "gerund": "moulting", - "past": "moulted", - "past_participle": "moulted" - }, - { - "infinitive": "clarion", - "present": "clarions", - "gerund": "clarioning", - "past": "clarioned", - "past_participle": "clarioned" - }, - { - "infinitive": "outcry", - "present": "outcries", - "gerund": "outcrying", - "past": "outcried", - "past_participle": "outcried" - }, - { - "infinitive": "profess", - "present": "professes", - "gerund": "professing", - "past": "professed", - "past_participle": "professed" - }, - { - "infinitive": "support", - "present": "supports", - "gerund": "supporting", - "past": "supported", - "past_participle": "supported" - }, - { - "infinitive": "blind", - "present": "blinds", - "gerund": "blinding", - "past": "blinded", - "past_participle": "blinded" - }, - { - "infinitive": "incurvate", - "present": "incurvates", - "gerund": "incurvating", - "past": "incurvated", - "past_participle": "incurvated" - }, - { - "infinitive": "trode", - "present": "trodes", - "gerund": "troding", - "past": "troded", - "past_participle": "troded" - }, - { - "infinitive": "antevert", - "present": "anteverts", - "gerund": "anteverting", - "past": "anteverted", - "past_participle": "anteverted" - }, - { - "infinitive": "blink", - "present": "blinks", - "gerund": "blinking", - "past": "blinked", - "past_participle": "blinked" - }, - { - "infinitive": "consecrate", - "present": "consecrates", - "gerund": "consecrating", - "past": "consecrated", - "past_participle": "consecrated" - }, - { - "infinitive": "demote", - "present": "demotes", - "gerund": "demoting", - "past": "demoted", - "past_participle": "demoted" - }, - { - "infinitive": "zap", - "present": "zaps", - "gerund": "zapping", - "past": "zapped", - "past_participle": "zapped" - }, - { - "infinitive": "size", - "present": "sizes", - "gerund": "sizing", - "past": "sized", - "past_participle": "sized" - }, - { - "infinitive": "imprecate", - "present": "imprecates", - "gerund": "imprecating", - "past": "imprecated", - "past_participle": "imprecated" - }, - { - "infinitive": "sheer", - "present": "sheers", - "gerund": "sheering", - "past": "sheered", - "past_participle": "sheered" - }, - { - "infinitive": "sheet", - "present": "sheets", - "gerund": "sheeting", - "past": "sheeted", - "past_participle": "sheeted" - }, - { - "infinitive": "breed", - "present": "breeds", - "gerund": "breeding", - "past": "bred", - "past_participle": "bred" - }, - { - "infinitive": "callous", - "present": "callouses", - "gerund": "callousing", - "past": "calloused", - "past_participle": "calloused" - }, - { - "infinitive": "browbeat", - "present": "browbeats", - "gerund": "browbeating", - "past": "browbeat", - "past_participle": "browbeaten" - }, - { - "infinitive": "purloin", - "present": "purloins", - "gerund": "purloining", - "past": "purloined", - "past_participle": "purloined" - }, - { - "infinitive": "checker", - "present": "checkers", - "gerund": "checkering", - "past": "checkered", - "past_participle": "checkered" - }, - { - "infinitive": "trephine", - "present": "trephines", - "gerund": "trephining", - "past": "trephined", - "past_participle": "trephined" - }, - { - "infinitive": "uncurl", - "present": "uncurls", - "gerund": "uncurling", - "past": "uncurled", - "past_participle": "uncurled" - }, - { - "infinitive": "friend", - "present": "friends", - "gerund": "friending", - "past": "friended", - "past_participle": "friended" - }, - { - "infinitive": "thaw", - "present": "thaws", - "gerund": "thawing", - "past": "thawed", - "past_participle": "thawed" - }, - { - "infinitive": "fraction", - "present": "fractions", - "gerund": "fractioning", - "past": "fractioned", - "past_participle": "fractioned" - }, - { - "infinitive": "delate", - "present": "delates", - "gerund": "delating", - "past": "delated", - "past_participle": "delated" - }, - { - "infinitive": "sewer", - "present": "sewers", - "gerund": "sewering", - "past": "sewered", - "past_participle": "sewered" - }, - { - "infinitive": "repossess", - "present": "repossesses", - "gerund": "repossessing", - "past": "repossessed", - "past_participle": "repossessed" - }, - { - "infinitive": "disabuse", - "present": "disabuses", - "gerund": "disabusing", - "past": "disabused", - "past_participle": "disabused" - }, - { - "infinitive": "glimmer", - "present": "glimmers", - "gerund": "glimmering", - "past": "glimmered", - "past_participle": "glimmered" - }, - { - "infinitive": "peck", - "present": "pecks", - "gerund": "pecking", - "past": "pecked", - "past_participle": "pecked" - }, - { - "infinitive": "aromatize", - "present": "aromatizes", - "gerund": "aromatizing", - "past": "aromatized", - "past_participle": "aromatized" - }, - { - "infinitive": "hypersensitize", - "present": "hypersensitizes", - "gerund": "hypersensitizing", - "past": "hypersensitized", - "past_participle": "hypersensitized" - }, - { - "infinitive": "recruit", - "present": "recruits", - "gerund": "recruiting", - "past": "recruited", - "past_participle": "recruited" - }, - { - "infinitive": "massproduce", - "present": "massproduces", - "gerund": "massproducing", - "past": "massproduced", - "past_participle": "massproduced" - }, - { - "infinitive": "double-bank", - "present": "double-banks", - "gerund": "double-banking", - "past": "double-banked", - "past_participle": "double-banked" - }, - { - "infinitive": "impinge", - "present": "impinges", - "gerund": "impinging", - "past": "impinged", - "past_participle": "impinged" - }, - { - "infinitive": "gobble", - "present": "gobbles", - "gerund": "gobbling", - "past": "gobbled", - "past_participle": "gobbled" - }, - { - "infinitive": "extinguish", - "present": "extinguishes", - "gerund": "extinguishing", - "past": "extinguished", - "past_participle": "extinguished" - }, - { - "infinitive": "intercalate", - "present": "intercalates", - "gerund": "intercalating", - "past": "intercalated", - "past_participle": "intercalated" - }, - { - "infinitive": "decompose", - "present": "decomposes", - "gerund": "decomposing", - "past": "decomposed", - "past_participle": "decomposed" - }, - { - "infinitive": "surname", - "present": "surnames", - "gerund": "surnaming", - "past": "surnamed", - "past_participle": "surnamed" - }, - { - "infinitive": "evanish", - "present": "evanishes", - "gerund": "evanishing", - "past": "evanished", - "past_participle": "evanished" - }, - { - "infinitive": "slat", - "present": "slats", - "gerund": "slatting", - "past": "slatted", - "past_participle": "slatted" - }, - { - "infinitive": "premier", - "present": "premiers", - "gerund": "premiering", - "past": "premiered", - "past_participle": "premiered" - }, - { - "infinitive": "slap", - "present": "slaps", - "gerund": "slapping", - "past": "slapped", - "past_participle": "slapped" - }, - { - "infinitive": "undercool", - "present": "undercools", - "gerund": "undercooling", - "past": "undercooled", - "past_participle": "undercooled" - }, - { - "infinitive": "slam", - "present": "slams", - "gerund": "slamming", - "past": "slammed", - "past_participle": "slammed" - }, - { - "infinitive": "anger", - "present": "angers", - "gerund": "angering", - "past": "angered", - "past_participle": "angered" - }, - { - "infinitive": "breakfast", - "present": "breakfasts", - "gerund": "breakfasting", - "past": "breakfasted", - "past_participle": "breakfasted" - }, - { - "infinitive": "recover", - "present": "recovers", - "gerund": "recovering", - "past": "recovered", - "past_participle": "recovered" - }, - { - "infinitive": "slab", - "present": "slabs", - "gerund": "slabbing", - "past": "slabbed", - "past_participle": "slabbed" - }, - { - "infinitive": "pong", - "present": "pongs", - "gerund": "ponging", - "past": "ponged", - "past_participle": "ponged" - }, - { - "infinitive": "wassail", - "present": "wassails", - "gerund": "wassailing", - "past": "wassailed", - "past_participle": "wassailed" - }, - { - "infinitive": "gangrene", - "present": "gangrenes", - "gerund": "gangrening", - "past": "gangrened", - "past_participle": "gangrened" - }, - { - "infinitive": "begin", - "present": "begins", - "gerund": "beginning", - "past": "began", - "past_participle": "begun" - }, - { - "infinitive": "mountaineer", - "present": "mountaineers", - "gerund": "mountaineering", - "past": "mountaineered", - "past_participle": "mountaineered" - }, - { - "infinitive": "sledge", - "present": "sleds", - "gerund": "sleding", - "past": "sledged", - "past_participle": "sledged" - }, - { - "infinitive": "price", - "present": "prices", - "gerund": "pricing", - "past": "priced", - "past_participle": "priced" - }, - { - "infinitive": "evaporate", - "present": "evaporates", - "gerund": "evaporating", - "past": "evaporated", - "past_participle": "evaporated" - }, - { - "infinitive": "syncretize", - "present": "syncretizes", - "gerund": "syncretizing", - "past": "syncretized", - "past_participle": "syncretized" - }, - { - "infinitive": "oxidate", - "present": "oxidates", - "gerund": "oxidating", - "past": "oxidated", - "past_participle": "oxidated" - }, - { - "infinitive": "dream", - "present": "dreams", - "gerund": "dreaming", - "past": "dreamt", - "past_participle": "dreamt" - }, - { - "infinitive": "reform", - "present": "reforms", - "gerund": "reforming", - "past": "reformed", - "past_participle": "reformed" - }, - { - "infinitive": "steady", - "present": "steadies", - "gerund": "steadying", - "past": "steadied", - "past_participle": "steadied" - }, - { - "infinitive": "tooth", - "present": "tooths", - "gerund": "toothing", - "past": "toothed", - "past_participle": "toothed" - }, - { - "infinitive": "slaver", - "present": "slavers", - "gerund": "slavering", - "past": "slavered", - "past_participle": "slavered" - }, - { - "infinitive": "claver", - "present": "clavers", - "gerund": "clavering", - "past": "clavered", - "past_participle": "clavered" - }, - { - "infinitive": "syndicate", - "present": "syndicates", - "gerund": "syndicating", - "past": "syndicated", - "past_participle": "syndicated" - }, - { - "infinitive": "overdye", - "present": "overdyes", - "gerund": "overdying", - "past": "overdyed", - "past_participle": "overdyed" - }, - { - "infinitive": "boggle", - "present": "boggles", - "gerund": "boggling", - "past": "boggled", - "past_participle": "boggled" - }, - { - "infinitive": "ground", - "present": "grounds", - "gerund": "grounding", - "past": "grounded", - "past_participle": "grounded" - }, - { - "infinitive": "gnaw", - "present": "gnaws", - "gerund": "gnawing", - "past": "gnawn", - "past_participle": "gnawn" - }, - { - "infinitive": "title", - "present": "titles", - "gerund": "titling", - "past": "titled", - "past_participle": "titled" - }, - { - "infinitive": "waddy", - "present": "waddies", - "gerund": "waddying", - "past": "waddied", - "past_participle": "waddied" - }, - { - "infinitive": "industrialize", - "present": "industrializes", - "gerund": "industrializing", - "past": "industrialized", - "past_participle": "industrialized" - }, - { - "infinitive": "jolt", - "present": "jolts", - "gerund": "jolting", - "past": "jolted", - "past_participle": "jolted" - }, - { - "infinitive": "transude", - "present": "transudes", - "gerund": "transuding", - "past": "transuded", - "past_participle": "transuded" - }, - { - "infinitive": "unravel", - "present": "unravels", - "gerund": "unravelling", - "past": "unravelled", - "past_participle": "unravelled" - }, - { - "infinitive": "stain", - "present": "stains", - "gerund": "staining", - "past": "stained", - "past_participle": "stained" - }, - { - "infinitive": "skite", - "present": "skites", - "gerund": "skiting", - "past": "skited", - "past_participle": "skited" - }, - { - "infinitive": "shrill", - "present": "shrills", - "gerund": "shrilling", - "past": "shrilled", - "past_participle": "shrilled" - }, - { - "infinitive": "cannon", - "present": "cannons", - "gerund": "cannoning", - "past": "cannoned", - "past_participle": "cannoned" - }, - { - "infinitive": "celebrate", - "present": "celebrates", - "gerund": "celebrating", - "past": "celebrated", - "past_participle": "celebrated" - }, - { - "infinitive": "deprecate", - "present": "deprecates", - "gerund": "deprecating", - "past": "deprecated", - "past_participle": "deprecated" - }, - { - "infinitive": "leather", - "present": "leathers", - "gerund": "leathering", - "past": "leathered", - "past_participle": "leathered" - }, - { - "infinitive": "bullwhip", - "present": "bullwhips", - "gerund": "bullwhipping", - "past": "bullwhipped", - "past_participle": "bullwhipped" - }, - { - "infinitive": "entomb", - "present": "entombs", - "gerund": "entombing", - "past": "entombed", - "past_participle": "entombed" - }, - { - "infinitive": "husband", - "present": "husbands", - "gerund": "husbanding", - "past": "husbanded", - "past_participle": "husbanded" - }, - { - "infinitive": "murdabad", - "present": "murdabads", - "gerund": "murdabading", - "past": "murdabaded", - "past_participle": "murdabaded" - }, - { - "infinitive": "burst", - "present": "bursts", - "gerund": "bursting", - "past": "burst", - "past_participle": "burst" - }, - { - "infinitive": "allegorize", - "present": "allegorizes", - "gerund": "allegorizing", - "past": "allegorized", - "past_participle": "allegorized" - }, - { - "infinitive": "whitewash", - "present": "whitewashes", - "gerund": "whitewashing", - "past": "whitewashed", - "past_participle": "whitewashed" - }, - { - "infinitive": "unfit", - "present": "unfits", - "gerund": "unfitting", - "past": "unfitted", - "past_participle": "unfitted" - }, - { - "infinitive": "inseminate", - "present": "inseminates", - "gerund": "inseminating", - "past": "inseminated", - "past_participle": "inseminated" - }, - { - "infinitive": "habilitate", - "present": "habilitates", - "gerund": "habilitating", - "past": "habilitated", - "past_participle": "habilitated" - }, - { - "infinitive": "sport", - "present": "sports", - "gerund": "sporting", - "past": "sported", - "past_participle": "sported" - }, - { - "infinitive": "re-tread", - "present": "re-treads", - "gerund": "re-treading", - "past": "retrod", - "past_participle": "retrodden" - }, - { - "infinitive": "laicize", - "present": "laicizes", - "gerund": "laicizing", - "past": "laicized", - "past_participle": "laicized" - }, - { - "infinitive": "concern", - "present": "concerns", - "gerund": "concerning", - "past": "concerned", - "past_participle": "concerned" - }, - { - "infinitive": "canoodle", - "present": "canoodles", - "gerund": "canoodling", - "past": "canoodled", - "past_participle": "canoodled" - }, - { - "infinitive": "pomade", - "present": "pomades", - "gerund": "pomading", - "past": "pomaded", - "past_participle": "pomaded" - }, - { - "infinitive": "incite", - "present": "incites", - "gerund": "inciting", - "past": "incited", - "past_participle": "incited" - }, - { - "infinitive": "glaze", - "present": "glazes", - "gerund": "glazing", - "past": "glazed", - "past_participle": "glazed" - }, - { - "infinitive": "rephrase", - "present": "rephrases", - "gerund": "rephrasing", - "past": "rephrased", - "past_participle": "rephrased" - }, - { - "infinitive": "gazette", - "present": "gazettes", - "gerund": "gazetting", - "past": "gazetted", - "past_participle": "gazetted" - }, - { - "infinitive": "import", - "present": "imports", - "gerund": "importing", - "past": "imported", - "past_participle": "imported" - }, - { - "infinitive": "clench", - "present": "clenches", - "gerund": "clenching", - "past": "clenched", - "past_participle": "clenched" - }, - { - "infinitive": "orchestrate", - "present": "orchestrates", - "gerund": "orchestrating", - "past": "orchestrated", - "past_participle": "orchestrated" - }, - { - "infinitive": "notice", - "present": "notices", - "gerund": "noticing", - "past": "noticed", - "past_participle": "noticed" - }, - { - "infinitive": "pettifog", - "present": "pettifogs", - "gerund": "pettifogging", - "past": "pettifogged", - "past_participle": "pettifogged" - }, - { - "infinitive": "transpose", - "present": "transposes", - "gerund": "transposing", - "past": "transposed", - "past_participle": "transposed" - }, - { - "infinitive": "rerun", - "present": "reruns", - "gerund": "rerunning", - "past": "reran", - "past_participle": "rerun" - }, - { - "infinitive": "pluck", - "present": "plucks", - "gerund": "plucking", - "past": "plucked", - "past_participle": "plucked" - }, - { - "infinitive": "blame", - "present": "blames", - "gerund": "blaming", - "past": "blamed", - "past_participle": "blamed" - }, - { - "infinitive": "decoke", - "present": "decokes", - "gerund": "decoking", - "past": "decoked", - "past_participle": "decoked" - }, - { - "infinitive": "hydrate", - "present": "hydrates", - "gerund": "hydrating", - "past": "hydrated", - "past_participle": "hydrated" - }, - { - "infinitive": "animalize", - "present": "animalizes", - "gerund": "animalizing", - "past": "animalized", - "past_participle": "animalized" - }, - { - "infinitive": "syllabify", - "present": "syllabifies", - "gerund": "syllabifying", - "past": "syllabified", - "past_participle": "syllabified" - }, - { - "infinitive": "cleave", - "present": "cleaves", - "gerund": "cleaving", - "past": "clove", - "past_participle": "cloven" - }, - { - "infinitive": "glide", - "present": "glides", - "gerund": "gliding", - "past": "glided", - "past_participle": "glided" - }, - { - "infinitive": "guffaw", - "present": "guffaws", - "gerund": "guffawing", - "past": "guffawed", - "past_participle": "guffawed" - }, - { - "infinitive": "pertain", - "present": "pertains", - "gerund": "pertaining", - "past": "pertained", - "past_participle": "pertained" - }, - { - "infinitive": "temper", - "present": "tempers", - "gerund": "tempering", - "past": "tempered", - "past_participle": "tempered" - }, - { - "infinitive": "adhibit", - "present": "adhibits", - "gerund": "adhibiting", - "past": "adhibited", - "past_participle": "adhibited" - }, - { - "infinitive": "evict", - "present": "evicts", - "gerund": "evicting", - "past": "evicted", - "past_participle": "evicted" - }, - { - "infinitive": "disentitle", - "present": "disentitles", - "gerund": "disentitling", - "past": "disentitled", - "past_participle": "disentitled" - }, - { - "infinitive": "despond", - "present": "desponds", - "gerund": "desponding", - "past": "desponded", - "past_participle": "desponded" - }, - { - "infinitive": "wreathe", - "present": "wreathes", - "gerund": "wreathing", - "past": "wreathed", - "past_participle": "wreathed" - }, - { - "infinitive": "mummify", - "present": "mummifies", - "gerund": "mummifying", - "past": "mummified", - "past_participle": "mummified" - }, - { - "infinitive": "dispatch", - "present": "dispatches", - "gerund": "dispatching", - "past": "dispatched", - "past_participle": "dispatched" - }, - { - "infinitive": "exploit", - "present": "exploits", - "gerund": "exploiting", - "past": "exploited", - "past_participle": "exploited" - }, - { - "infinitive": "forehand", - "present": "forehands", - "gerund": "forehanding", - "past": "forehanded", - "past_participle": "forehanded" - }, - { - "infinitive": "labialize", - "present": "labializes", - "gerund": "labializing", - "past": "labialized", - "past_participle": "labialized" - }, - { - "infinitive": "deregister", - "present": "deregisters", - "gerund": "deregistering", - "past": "deregistered", - "past_participle": "deregistered" - }, - { - "infinitive": "uglify", - "present": "uglifies", - "gerund": "uglifying", - "past": "uglified", - "past_participle": "uglified" - }, - { - "infinitive": "resort", - "present": "resorts", - "gerund": "resorting", - "past": "resorted", - "past_participle": "resorted" - }, - { - "infinitive": "sket", - "present": "skets", - "gerund": "sketting", - "past": "sketted", - "past_participle": "sketted" - }, - { - "infinitive": "invert", - "present": "inverts", - "gerund": "inverting", - "past": "inverted", - "past_participle": "inverted" - }, - { - "infinitive": "overjoy", - "present": "overjoys", - "gerund": "overjoying", - "past": "overjoyed", - "past_participle": "overjoyed" - }, - { - "infinitive": "toss", - "present": "tosses", - "gerund": "tossing", - "past": "tossed", - "past_participle": "tossed" - }, - { - "infinitive": "heattreat", - "present": "heattreats", - "gerund": "heattreating", - "past": "heattreated", - "past_participle": "heattreated" - }, - { - "infinitive": "asphyxiate", - "present": "asphyxiates", - "gerund": "asphyxiating", - "past": "asphyxiated", - "past_participle": "asphyxiated" - }, - { - "infinitive": "conflate", - "present": "conflates", - "gerund": "conflating", - "past": "conflated", - "past_participle": "conflated" - }, - { - "infinitive": "agglutinate", - "present": "agglutinates", - "gerund": "agglutinating", - "past": "agglutinated", - "past_participle": "agglutinated" - }, - { - "infinitive": "exclaim", - "present": "exclaims", - "gerund": "exclaiming", - "past": "exclaimed", - "past_participle": "exclaimed" - }, - { - "infinitive": "encage", - "present": "encages", - "gerund": "encaging", - "past": "encaged", - "past_participle": "encaged" - }, - { - "infinitive": "crumb", - "present": "crumbs", - "gerund": "crumbing", - "past": "crumbed", - "past_participle": "crumbed" - }, - { - "infinitive": "compartmentalize", - "present": "compartmentalizes", - "gerund": "compartmentalizing", - "past": "compartmentalized", - "past_participle": "compartmentalized" - }, - { - "infinitive": "soft-solder", - "present": "soft-solders", - "gerund": "soft-soldering", - "past": "soft-soldered", - "past_participle": "soft-soldered" - }, - { - "infinitive": "trick", - "present": "tricks", - "gerund": "tricking", - "past": "tricked", - "past_participle": "tricked" - }, - { - "infinitive": "scud", - "present": "scuds", - "gerund": "scudding", - "past": "scudded", - "past_participle": "scudded" - }, - { - "infinitive": "crump", - "present": "crumps", - "gerund": "crumping", - "past": "crumped", - "past_participle": "crumped" - }, - { - "infinitive": "scum", - "present": "scums", - "gerund": "scumming", - "past": "scummed", - "past_participle": "scummed" - }, - { - "infinitive": "trice", - "present": "trices", - "gerund": "tricing", - "past": "triced", - "past_participle": "triced" - }, - { - "infinitive": "forbear", - "present": "forbears", - "gerund": "forbearing", - "past": "forbore", - "past_participle": "forborne" - }, - { - "infinitive": "Americanize", - "present": "Americanizes", - "gerund": "Americanizing", - "past": "Americanized", - "past_participle": "Americanized" - }, - { - "infinitive": "soil", - "present": "soils", - "gerund": "soiling", - "past": "soiled", - "past_participle": "soiled" - }, - { - "infinitive": "suss", - "present": "susses", - "gerund": "sussing", - "past": "sussed", - "past_participle": "sussed" - }, - { - "infinitive": "bias", - "present": "biases", - "gerund": "biassing", - "past": "biassed", - "past_participle": "biassed" - }, - { - "infinitive": "embrace", - "present": "embraces", - "gerund": "embracing", - "past": "embraced", - "past_participle": "embraced" - }, - { - "infinitive": "beaver", - "present": "beavers", - "gerund": "beavering", - "past": "beavered", - "past_participle": "beavered" - }, - { - "infinitive": "hent", - "present": "hents", - "gerund": "henting", - "past": "hented", - "past_participle": "hented" - }, - { - "infinitive": "worry", - "present": "worries", - "gerund": "worrying", - "past": "worried", - "past_participle": "worried" - }, - { - "infinitive": "impassion", - "present": "impassions", - "gerund": "impassioning", - "past": "impassioned", - "past_participle": "impassioned" - }, - { - "infinitive": "unbutton", - "present": "unbuttons", - "gerund": "unbuttoning", - "past": "unbuttoned", - "past_participle": "unbuttoned" - }, - { - "infinitive": "inquire", - "present": "inquires", - "gerund": "inquiring", - "past": "inquired", - "past_participle": "inquired" - }, - { - "infinitive": "pester", - "present": "pesters", - "gerund": "pestering", - "past": "pestered", - "past_participle": "pestered" - }, - { - "infinitive": "about-turn", - "present": "about-turns", - "gerund": "about-turning", - "past": "about-turned", - "past_participle": "about-turned" - }, - { - "infinitive": "document", - "present": "documents", - "gerund": "documenting", - "past": "documented", - "past_participle": "documented" - }, - { - "infinitive": "finish", - "present": "finishes", - "gerund": "finishing", - "past": "finished", - "past_participle": "finished" - }, - { - "infinitive": "unlace", - "present": "unlaces", - "gerund": "unlacing", - "past": "unlaced", - "past_participle": "unlaced" - }, - { - "infinitive": "foal", - "present": "foals", - "gerund": "foaling", - "past": "foaled", - "past_participle": "foaled" - }, - { - "infinitive": "foam", - "present": "foams", - "gerund": "foaming", - "past": "foamed", - "past_participle": "foamed" - }, - { - "infinitive": "crosscheck", - "present": "crosschecks'", - "gerund": "cross-checking", - "past": "crosschecked", - "past_participle": "cross-checked" - }, - { - "infinitive": "fruit", - "present": "fruits", - "gerund": "fruiting", - "past": "fruited", - "past_participle": "fruited" - }, - { - "infinitive": "puff", - "present": "puffs", - "gerund": "puffing", - "past": "puffed", - "past_participle": "puffed" - }, - { - "infinitive": "obvert", - "present": "obverts", - "gerund": "obverting", - "past": "obverted", - "past_participle": "obverted" - }, - { - "infinitive": "smelt", - "present": "smelts", - "gerund": "smelting", - "past": "smelted", - "past_participle": "smelted" - }, - { - "infinitive": "validate", - "present": "validates", - "gerund": "validating", - "past": "validated", - "past_participle": "validated" - }, - { - "infinitive": "desalinize", - "present": "desalinizes", - "gerund": "desalinizing", - "past": "desalinized", - "past_participle": "desalinized" - }, - { - "infinitive": "breeze", - "present": "breezes", - "gerund": "breezing", - "past": "breezed", - "past_participle": "breezed" - }, - { - "infinitive": "demean", - "present": "demeans", - "gerund": "demeaning", - "past": "demeaned", - "past_participle": "demeaned" - }, - { - "infinitive": "hypostatize", - "present": "hypostatizes", - "gerund": "hypostatizing", - "past": "hypostatized", - "past_participle": "hypostatized" - }, - { - "infinitive": "alleviate", - "present": "alleviates", - "gerund": "alleviating", - "past": "alleviated", - "past_participle": "alleviated" - }, - { - "infinitive": "perpend", - "present": "perpends", - "gerund": "perpending", - "past": "perpended", - "past_participle": "perpended" - }, - { - "infinitive": "coordinate", - "present": "coordinates", - "gerund": "coordinating", - "past": "coordinated", - "past_participle": "coordinated" - }, - { - "infinitive": "vomit", - "present": "vomits", - "gerund": "vomiting", - "past": "vomited", - "past_participle": "vomited" - }, - { - "infinitive": "taxi", - "present": "taxies", - "gerund": "taxying", - "past": "taxied", - "past_participle": "taxied" - }, - { - "infinitive": "vent", - "present": "vents", - "gerund": "venting", - "past": "vented", - "past_participle": "vented" - }, - { - "infinitive": "centuplicate", - "present": "centuplicates", - "gerund": "centuplicating", - "past": "centuplicated", - "past_participle": "centuplicated" - }, - { - "infinitive": "armour", - "present": "armours", - "gerund": "armouring", - "past": "armoured", - "past_participle": "armoured" - }, - { - "infinitive": "sulphate", - "present": "sulphates", - "gerund": "sulphating", - "past": "sulphated", - "past_participle": "sulphated" - }, - { - "infinitive": "touch", - "present": "touches", - "gerund": "touching", - "past": "touched", - "past_participle": "touched" - }, - { - "infinitive": "tare", - "present": "tares", - "gerund": "taring", - "past": "tared", - "past_participle": "tared" - }, - { - "infinitive": "speed", - "present": "speeds", - "gerund": "speeding", - "past": "speeded", - "past_participle": "speeded" - }, - { - "infinitive": "domicile", - "present": "domicils", - "gerund": "domiciling", - "past": "domiciled", - "past_participle": "domiciled" - }, - { - "infinitive": "refurbish", - "present": "refurbishes", - "gerund": "refurbishing", - "past": "refurbished", - "past_participle": "refurbished" - }, - { - "infinitive": "counterpunch", - "present": "counterpunches", - "gerund": "counterpunching", - "past": "counterpunched", - "past_participle": "counterpunched" - }, - { - "infinitive": "allude", - "present": "alludes", - "gerund": "alluding", - "past": "alluded", - "past_participle": "alluded" - }, - { - "infinitive": "verse", - "present": "verses", - "gerund": "versing", - "past": "versed", - "past_participle": "versed" - }, - { - "infinitive": "cogitate", - "present": "cogitates", - "gerund": "cogitating", - "past": "cogitated", - "past_participle": "cogitated" - }, - { - "infinitive": "Russianize", - "present": "Russianizes", - "gerund": "Russianizing", - "past": "Russianized", - "past_participle": "Russianized" - }, - { - "infinitive": "disproportionate", - "present": "disproportionates", - "gerund": "disproportionating", - "past": "disproportionated", - "past_participle": "disproportionated" - }, - { - "infinitive": "lade", - "present": "lades", - "gerund": "lading", - "past": "laded", - "past_participle": "laden" - }, - { - "infinitive": "ream", - "present": "reams", - "gerund": "reaming", - "past": "reamed", - "past_participle": "reamed" - }, - { - "infinitive": "breastfeed", - "present": "breastfeeds", - "gerund": "breastfeeding", - "past": "breastfed", - "past_participle": "breastfed" - }, - { - "infinitive": "frown", - "present": "frowns", - "gerund": "frowning", - "past": "frowned", - "past_participle": "frowned" - }, - { - "infinitive": "stunk", - "present": "stunks", - "gerund": "stunking", - "past": "stunked", - "past_participle": "stunked" - }, - { - "infinitive": "read", - "present": "reads", - "gerund": "reading", - "past": "read", - "past_participle": "read" - }, - { - "infinitive": "swig", - "present": "swigs", - "gerund": "swigging", - "past": "swigged", - "past_participle": "swigged" - }, - { - "infinitive": "plodge", - "present": "plodges", - "gerund": "plodging", - "past": "plodged", - "past_participle": "plodged" - }, - { - "infinitive": "detoxify", - "present": "detoxifies", - "gerund": "detoxifying", - "past": "detoxified", - "past_participle": "detoxified" - }, - { - "infinitive": "detract", - "present": "detracts", - "gerund": "detracting", - "past": "detracted", - "past_participle": "detracted" - }, - { - "infinitive": "chemosorb", - "present": "chemosorbs", - "gerund": "chemosorbing", - "past": "chemosorbed", - "past_participle": "chemosorbed" - }, - { - "infinitive": "stunt", - "present": "stunts", - "gerund": "stunting", - "past": "stunted", - "past_participle": "stunted" - }, - { - "infinitive": "reap", - "present": "reaps", - "gerund": "reaping", - "past": "reaped", - "past_participle": "reaped" - }, - { - "infinitive": "hovel", - "present": "hovels", - "gerund": "hovelling", - "past": "hovelled", - "past_participle": "hovelled" - }, - { - "infinitive": "rear", - "present": "rears", - "gerund": "rearing", - "past": "reared", - "past_participle": "reared" - }, - { - "infinitive": "secularize", - "present": "secularizes", - "gerund": "secularizing", - "past": "secularized", - "past_participle": "secularized" - }, - { - "infinitive": "commove", - "present": "commoves", - "gerund": "commoving", - "past": "commoved", - "past_participle": "commoved" - }, - { - "infinitive": "fortune", - "present": "fortunes", - "gerund": "fortuning", - "past": "fortuned", - "past_participle": "fortuned" - }, - { - "infinitive": "misquote", - "present": "misquotes", - "gerund": "misquoting", - "past": "misquoted", - "past_participle": "misquoted" - }, - { - "infinitive": "roll", - "present": "rolls", - "gerund": "rolling", - "past": "rolled", - "past_participle": "rolled" - }, - { - "infinitive": "engross", - "present": "engrosses", - "gerund": "engrossing", - "past": "engrossed", - "past_participle": "engrossed" - }, - { - "infinitive": "interleave", - "present": "interleaves", - "gerund": "interleaving", - "past": "interleaved", - "past_participle": "interleaved" - }, - { - "infinitive": "benefit", - "present": "benefits", - "gerund": "benefiting", - "past": "benefited", - "past_participle": "benefited" - }, - { - "infinitive": "hoarsen", - "present": "hoarsens", - "gerund": "hoarsening", - "past": "hoarsened", - "past_participle": "hoarsened" - }, - { - "infinitive": "ensile", - "present": "ensiles", - "gerund": "ensiling", - "past": "ensiled", - "past_participle": "ensiled" - }, - { - "infinitive": "laugh", - "present": "laughs", - "gerund": "laughing", - "past": "laughed", - "past_participle": "laughed" - }, - { - "infinitive": "Orientalize", - "present": "Orientalizes", - "gerund": "Orientalizing", - "past": "Orientalized", - "past_participle": "Orientalized" - }, - { - "infinitive": "doublecross", - "present": "doublecrosses", - "gerund": "doublecrossing", - "past": "doublecrossed", - "past_participle": "doublecrossed" - }, - { - "infinitive": "uppercase", - "present": "uppercases", - "gerund": "uppercasing", - "past": "uppercased", - "past_participle": "uppercased" - }, - { - "infinitive": "squirm", - "present": "squirms", - "gerund": "squirming", - "past": "squirmed", - "past_participle": "squirmed" - }, - { - "infinitive": "hebetate", - "present": "hebetates", - "gerund": "hebetating", - "past": "hebetated", - "past_participle": "hebetated" - }, - { - "infinitive": "putter", - "present": "putters", - "gerund": "puttering", - "past": "puttered", - "past_participle": "puttered" - }, - { - "infinitive": "squire", - "present": "squires", - "gerund": "squiring", - "past": "squired", - "past_participle": "squired" - }, - { - "infinitive": "circumnavigate", - "present": "circumnavigates", - "gerund": "circumnavigating", - "past": "circumnavigated", - "past_participle": "circumnavigated" - }, - { - "infinitive": "squirt", - "present": "squirts", - "gerund": "squirting", - "past": "squirted", - "past_participle": "squirted" - }, - { - "infinitive": "underbuy", - "present": "underbuys", - "gerund": "underbuying", - "past": "underbought", - "past_participle": "underbought" - }, - { - "infinitive": "unstring", - "present": "unstrings", - "gerund": "unstringing", - "past": "unstrung", - "past_participle": "unstrung" - }, - { - "infinitive": "hustle", - "present": "hustles", - "gerund": "hustling", - "past": "hustled", - "past_participle": "hustled" - }, - { - "infinitive": "sadden", - "present": "saddens", - "gerund": "saddening", - "past": "saddened", - "past_participle": "saddened" - }, - { - "infinitive": "revivify", - "present": "revivifies", - "gerund": "revivifying", - "past": "revivified", - "past_participle": "revivified" - }, - { - "infinitive": "seine", - "present": "seines", - "gerund": "seining", - "past": "seined", - "past_participle": "seined" - }, - { - "infinitive": "steam-heat", - "present": "steam-heats", - "gerund": "steam-heating", - "past": "steam-heated", - "past_participle": "steam-heated" - }, - { - "infinitive": "restring", - "present": "restrings", - "gerund": "restringing", - "past": "restrung", - "past_participle": "restrung" - }, - { - "infinitive": "assemble", - "present": "assembles", - "gerund": "assembling", - "past": "assembled", - "past_participle": "assembled" - }, - { - "infinitive": "throw", - "present": "throws", - "gerund": "throwing", - "past": "threw", - "past_participle": "thrown" - }, - { - "infinitive": "emasculate", - "present": "emasculates", - "gerund": "emasculating", - "past": "emasculated", - "past_participle": "emasculated" - }, - { - "infinitive": "placard", - "present": "placards", - "gerund": "placarding", - "past": "placarded", - "past_participle": "placarded" - }, - { - "infinitive": "cutinize", - "present": "cutinizes", - "gerund": "cutinizing", - "past": "cutinized", - "past_participle": "cutinized" - }, - { - "infinitive": "discern", - "present": "discerns", - "gerund": "discerning", - "past": "discerned", - "past_participle": "discerned" - }, - { - "infinitive": "chop", - "present": "chops", - "gerund": "chopping", - "past": "chopped", - "past_participle": "chopped" - }, - { - "infinitive": "wolf", - "present": "wolfs", - "gerund": "wolfing", - "past": "wolfed", - "past_participle": "wolfed" - }, - { - "infinitive": "internalize", - "present": "internalizes", - "gerund": "internalizing", - "past": "internalized", - "past_participle": "internalized" - }, - { - "infinitive": "unquote", - "present": "unquotes", - "gerund": "unquoting", - "past": "unquoted", - "past_participle": "unquoted" - }, - { - "infinitive": "intromit", - "present": "intromits", - "gerund": "intromitting", - "past": "intromitted", - "past_participle": "intromitted" - }, - { - "infinitive": "lionize", - "present": "lionizes", - "gerund": "lionizing", - "past": "lionized", - "past_participle": "lionized" - }, - { - "infinitive": "stoke", - "present": "stokes", - "gerund": "stoking", - "past": "stoked", - "past_participle": "stoked" - }, - { - "infinitive": "resuscitate", - "present": "resuscitates", - "gerund": "resuscitating", - "past": "resuscitated", - "past_participle": "resuscitated" - }, - { - "infinitive": "lob", - "present": "lobs", - "gerund": "lobbing", - "past": "lobbed", - "past_participle": "lobbed" - }, - { - "infinitive": "log", - "present": "logs", - "gerund": "logging", - "past": "logged", - "past_participle": "logged" - }, - { - "infinitive": "countermine", - "present": "countermines", - "gerund": "countermining", - "past": "countermined", - "past_participle": "countermined" - }, - { - "infinitive": "preregister", - "present": "preregisters", - "gerund": "preregistering", - "past": "preregistered", - "past_participle": "preregistered" - }, - { - "infinitive": "criminate", - "present": "criminates", - "gerund": "criminating", - "past": "criminated", - "past_participle": "criminated" - }, - { - "infinitive": "wigwag", - "present": "wigwags", - "gerund": "wigwagging", - "past": "wigwagged", - "past_participle": "wigwagged" - }, - { - "infinitive": "start", - "present": "starts", - "gerund": "starting", - "past": "started", - "past_participle": "started" - }, - { - "infinitive": "lop", - "present": "lops", - "gerund": "lopping", - "past": "lopped", - "past_participle": "lopped" - }, - { - "infinitive": "lower", - "present": "lows", - "gerund": "lowing", - "past": "lowed", - "past_participle": "lowed" - }, - { - "infinitive": "lot", - "present": "lots", - "gerund": "lotting", - "past": "lotted", - "past_participle": "lotted" - }, - { - "infinitive": "gudgeon", - "present": "gudgeons", - "gerund": "gudgeoning", - "past": "gudgeoned", - "past_participle": "gudgeoned" - }, - { - "infinitive": "glaciate", - "present": "glaciates", - "gerund": "glaciating", - "past": "glaciated", - "past_participle": "glaciated" - }, - { - "infinitive": "groan", - "present": "groans", - "gerund": "groaning", - "past": "groaned", - "past_participle": "groaned" - }, - { - "infinitive": "deject", - "present": "dejects", - "gerund": "dejecting", - "past": "dejected", - "past_participle": "dejected" - }, - { - "infinitive": "recoil", - "present": "recoils", - "gerund": "recoiling", - "past": "recoiled", - "past_participle": "recoiled" - }, - { - "infinitive": "gatecrash", - "present": "gatecrashes", - "gerund": "gatecrashing", - "past": "gatecrashed", - "past_participle": "gatecrashed" - }, - { - "infinitive": "hire", - "present": "hires", - "gerund": "hiring", - "past": "hired", - "past_participle": "hired" - }, - { - "infinitive": "expropriate", - "present": "expropriates", - "gerund": "expropriating", - "past": "expropriated", - "past_participle": "expropriated" - }, - { - "infinitive": "skedaddle", - "present": "skedaddles", - "gerund": "skedaddling", - "past": "skedaddled", - "past_participle": "skedaddled" - }, - { - "infinitive": "hoiden", - "present": "hoidens", - "gerund": "hoidening", - "past": "hoidened", - "past_participle": "hoidened" - }, - { - "infinitive": "default", - "present": "defaults", - "gerund": "defaulting", - "past": "defaulted", - "past_participle": "defaulted" - }, - { - "infinitive": "enchase", - "present": "enchases", - "gerund": "enchasing", - "past": "enchased", - "past_participle": "enchased" - }, - { - "infinitive": "bucket", - "present": "buckets", - "gerund": "bucketing", - "past": "bucketed", - "past_participle": "bucketed" - }, - { - "infinitive": "overpay", - "present": "overpays", - "gerund": "overpaying", - "past": "overpaid", - "past_participle": "overpaid" - }, - { - "infinitive": "cleck", - "present": "clecks", - "gerund": "clecking", - "past": "clecked", - "past_participle": "clecked" - }, - { - "infinitive": "dander", - "present": "danders", - "gerund": "dandering", - "past": "dandered", - "past_participle": "dandered" - }, - { - "infinitive": "popularize", - "present": "popularizes", - "gerund": "popularizing", - "past": "popularized", - "past_participle": "popularized" - }, - { - "infinitive": "undertake", - "present": "undertakes", - "gerund": "undertaking", - "past": "undertook", - "past_participle": "undertaken" - }, - { - "infinitive": "subdue", - "present": "subdues", - "gerund": "subduing", - "past": "subdued", - "past_participle": "subdued" - }, - { - "infinitive": "describe", - "present": "describes", - "gerund": "describing", - "past": "described", - "past_participle": "described" - }, - { - "infinitive": "denationalize", - "present": "denationalizes", - "gerund": "denationalizing", - "past": "denationalized", - "past_participle": "denationalized" - }, - { - "infinitive": "sheath", - "present": "sheaths", - "gerund": "sheathing", - "past": "sheathed", - "past_participle": "sheathed" - }, - { - "infinitive": "impend", - "present": "impends", - "gerund": "impending", - "past": "impended", - "past_participle": "impended" - }, - { - "infinitive": "confab", - "present": "confabs", - "gerund": "confabbing", - "past": "confabbed", - "past_participle": "confabbed" - }, - { - "infinitive": "backstroke", - "present": "backstrokes", - "gerund": "backstroking", - "past": "backstroked", - "past_participle": "backstroked" - }, - { - "infinitive": "trample", - "present": "tramples", - "gerund": "trampling", - "past": "trampled", - "past_participle": "trampled" - }, - { - "infinitive": "colly", - "present": "collies", - "gerund": "collying", - "past": "collied", - "past_participle": "collied" - }, - { - "infinitive": "quadrisect", - "present": "quadrisects", - "gerund": "quadrisecting", - "past": "quadrisected", - "past_participle": "quadrisected" - }, - { - "infinitive": "poop", - "present": "poops", - "gerund": "pooping", - "past": "pooped", - "past_participle": "pooped" - }, - { - "infinitive": "vaccinate", - "present": "vaccinates", - "gerund": "vaccinating", - "past": "vaccinated", - "past_participle": "vaccinated" - }, - { - "infinitive": "drift", - "present": "drifts", - "gerund": "drifting", - "past": "drifted", - "past_participle": "drifted" - }, - { - "infinitive": "carpenter", - "present": "carpenters", - "gerund": "carpentering", - "past": "carpentered", - "past_participle": "carpentered" - }, - { - "infinitive": "overreact", - "present": "overreacts", - "gerund": "overreacting", - "past": "overreacted", - "past_participle": "overreacted" - }, - { - "infinitive": "peal", - "present": "peals", - "gerund": "pealing", - "past": "pealed", - "past_participle": "pealed" - }, - { - "infinitive": "peak", - "present": "peaks", - "gerund": "peaking", - "past": "peaked", - "past_participle": "peaked" - }, - { - "infinitive": "pool", - "present": "pools", - "gerund": "pooling", - "past": "pooled", - "past_participle": "pooled" - }, - { - "infinitive": "assert", - "present": "asserts", - "gerund": "asserting", - "past": "asserted", - "past_participle": "asserted" - }, - { - "infinitive": "dabble", - "present": "dabbles", - "gerund": "dabbling", - "past": "dabbled", - "past_participle": "dabbled" - }, - { - "infinitive": "smooch", - "present": "smooches", - "gerund": "smooching", - "past": "smooched", - "past_participle": "smooched" - }, - { - "infinitive": "phonate", - "present": "phonates", - "gerund": "phonating", - "past": "phonated", - "past_participle": "phonated" - }, - { - "infinitive": "untidy", - "present": "untidies", - "gerund": "untidying", - "past": "untidied", - "past_participle": "untidied" - }, - { - "infinitive": "moonlight", - "present": "moonlights", - "gerund": "moonlighting", - "past": "moonlighted", - "past_participle": "moonlighted" - }, - { - "infinitive": "head-load", - "present": "head-loads", - "gerund": "head-loading", - "past": "head-loaded", - "past_participle": "head-loaded" - }, - { - "infinitive": "requisition", - "present": "requisitions", - "gerund": "requisitioning", - "past": "requisitioned", - "past_participle": "requisitioned" - }, - { - "infinitive": "forswear", - "present": "forswears", - "gerund": "forswearing", - "past": "forswore", - "past_participle": "forsworn" - }, - { - "infinitive": "disentail", - "present": "disentails", - "gerund": "disentailing", - "past": "disentailed", - "past_participle": "disentailed" - }, - { - "infinitive": "overwatch", - "present": "overwatches", - "gerund": "overwatching", - "past": "overwatched", - "past_participle": "overwatched" - }, - { - "infinitive": "peacock", - "present": "peacocks", - "gerund": "peacocking", - "past": "peacocked", - "past_participle": "peacocked" - }, - { - "infinitive": "expatiate", - "present": "expatiates", - "gerund": "expatiating", - "past": "expatiated", - "past_participle": "expatiated" - }, - { - "infinitive": "milt", - "present": "milts", - "gerund": "milting", - "past": "milted", - "past_participle": "milted" - }, - { - "infinitive": "pique", - "present": "piques", - "gerund": "piquing", - "past": "piqued", - "past_participle": "piqued" - }, - { - "infinitive": "bequeath", - "present": "bequeaths", - "gerund": "bequeathing", - "past": "bequeathed", - "past_participle": "bequeathed" - }, - { - "infinitive": "rock-and-roll", - "present": "rock-and-rolls", - "gerund": "rock-and-rolling", - "past": "rock-and-rolled", - "past_participle": "rock-and-rolled" - }, - { - "infinitive": "delocalize", - "present": "delocalizes", - "gerund": "delocalizing", - "past": "delocalized", - "past_participle": "delocalized" - }, - { - "infinitive": "foreshow", - "present": "foreshows", - "gerund": "foreshowing", - "past": "foreshowed", - "past_participle": "foreshown" - }, - { - "infinitive": "adhere", - "present": "adheres", - "gerund": "adhering", - "past": "adhered", - "past_participle": "adhered" - }, - { - "infinitive": "obnubilate", - "present": "obnubilates", - "gerund": "obnubilating", - "past": "obnubilated", - "past_participle": "obnubilated" - }, - { - "infinitive": "carpet", - "present": "carpets", - "gerund": "carpeting", - "past": "carpeted", - "past_participle": "carpeted" - }, - { - "infinitive": "speechify", - "present": "speechifies", - "gerund": "speechifying", - "past": "speechified", - "past_participle": "speechified" - }, - { - "infinitive": "disassociate", - "present": "disassociates", - "gerund": "disassociating", - "past": "disassociated", - "past_participle": "disassociated" - }, - { - "infinitive": "carbolize", - "present": "carbolizes", - "gerund": "carbolizing", - "past": "carbolized", - "past_participle": "carbolized" - }, - { - "infinitive": "insulate", - "present": "insulates", - "gerund": "insulating", - "past": "insulated", - "past_participle": "insulated" - }, - { - "infinitive": "upbuild", - "present": "upbuilds", - "gerund": "upbuilding", - "past": "upbuilt", - "past_participle": "upbuilt" - }, - { - "infinitive": "foster", - "present": "fosters", - "gerund": "fostering", - "past": "fostered", - "past_participle": "fostered" - }, - { - "infinitive": "spearhead", - "present": "spearheads", - "gerund": "spearheading", - "past": "spearheaded", - "past_participle": "spearheaded" - }, - { - "infinitive": "solicit", - "present": "solicits", - "gerund": "soliciting", - "past": "solicited", - "past_participle": "solicited" - }, - { - "infinitive": "safety", - "present": "safeties", - "gerund": "safetying", - "past": "safetied", - "past_participle": "safetied" - }, - { - "infinitive": "desiderate", - "present": "desiderates", - "gerund": "desiderating", - "past": "desiderated", - "past_participle": "desiderated" - }, - { - "infinitive": "hearken", - "present": "hearkens", - "gerund": "hearkening", - "past": "hearkened", - "past_participle": "hearkened" - }, - { - "infinitive": "serrate", - "present": "serrates", - "gerund": "serrating", - "past": "serrated", - "past_participle": "serrated" - }, - { - "infinitive": "parry", - "present": "parries", - "gerund": "parrying", - "past": "parried", - "past_participle": "parried" - }, - { - "infinitive": "cypher", - "present": "cyphers", - "gerund": "cyphering", - "past": "cyphered", - "past_participle": "cyphered" - }, - { - "infinitive": "decide", - "present": "decides", - "gerund": "deciding", - "past": "decided", - "past_participle": "decided" - }, - { - "infinitive": "lapidify", - "present": "lapidifies", - "gerund": "lapidifying", - "past": "lapidified", - "past_participle": "lapidified" - }, - { - "infinitive": "underperform", - "present": "underperforms", - "gerund": "underperforming", - "past": "underperformed", - "past_participle": "underperformed" - }, - { - "infinitive": "curdle", - "present": "curdles", - "gerund": "curdling", - "past": "curdled", - "past_participle": "curdled" - }, - { - "infinitive": "fusillade", - "present": "fusillades", - "gerund": "fusillading", - "past": "fusilladed", - "past_participle": "fusilladed" - }, - { - "infinitive": "shimmy", - "present": "shimmies", - "gerund": "shimmying", - "past": "shimmied", - "past_participle": "shimmied" - }, - { - "infinitive": "plain", - "present": "plains", - "gerund": "plaining", - "past": "plained", - "past_participle": "plained" - }, - { - "infinitive": "skim", - "present": "skims", - "gerund": "skimming", - "past": "skimmed", - "past_participle": "skimmed" - }, - { - "infinitive": "blackout", - "present": "blackouts", - "gerund": "blackouting", - "past": "blackouted", - "past_participle": "blackouted" - }, - { - "infinitive": "dunk", - "present": "dunks", - "gerund": "dunking", - "past": "dunked", - "past_participle": "dunked" - }, - { - "infinitive": "fence", - "present": "fences", - "gerund": "fencing", - "past": "fenced", - "past_participle": "fenced" - }, - { - "infinitive": "French-polish", - "present": "French-polishes", - "gerund": "French-polishing", - "past": "French-polished", - "past_participle": "French-polished" - }, - { - "infinitive": "archaize", - "present": "archaizes", - "gerund": "archaizing", - "past": "archaized", - "past_participle": "archaized" - }, - { - "infinitive": "stigmatize", - "present": "stigmatizes", - "gerund": "stigmatizing", - "past": "stigmatized", - "past_participle": "stigmatized" - }, - { - "infinitive": "enfeeble", - "present": "enfeebles", - "gerund": "enfeebling", - "past": "enfeebled", - "past_participle": "enfeebled" - }, - { - "infinitive": "enjoin", - "present": "enjoins", - "gerund": "enjoining", - "past": "enjoined", - "past_participle": "enjoined" - }, - { - "infinitive": "hamper", - "present": "hampers", - "gerund": "hampering", - "past": "hampered", - "past_participle": "hampered" - }, - { - "infinitive": "chuckle", - "present": "chuckles", - "gerund": "chuckling", - "past": "chuckled", - "past_participle": "chuckled" - }, - { - "infinitive": "mediatize", - "present": "mediatizes", - "gerund": "mediatizing", - "past": "mediatized", - "past_participle": "mediatized" - }, - { - "infinitive": "tussle", - "present": "tussles", - "gerund": "tussling", - "past": "tussled", - "past_participle": "tussled" - }, - { - "infinitive": "f^ete", - "present": "f^etes", - "gerund": "f^eting", - "past": "f^eted", - "past_participle": "f^eted" - }, - { - "infinitive": "lurch", - "present": "lurches", - "gerund": "lurching", - "past": "lurched", - "past_participle": "lurched" - }, - { - "infinitive": "skid", - "present": "skids", - "gerund": "skidding", - "past": "skidded", - "past_participle": "skidded" - }, - { - "infinitive": "overrule", - "present": "overrules", - "gerund": "overruling", - "past": "overruled", - "past_participle": "overruled" - }, - { - "infinitive": "obtund", - "present": "obtunds", - "gerund": "obtunding", - "past": "obtunded", - "past_participle": "obtunded" - }, - { - "infinitive": "burglarize", - "present": "burglarizes", - "gerund": "burglarizing", - "past": "burglarized", - "past_participle": "burglarized" - }, - { - "infinitive": "pleach", - "present": "pleaches", - "gerund": "pleaching", - "past": "pleached", - "past_participle": "pleached" - }, - { - "infinitive": "loose", - "present": "looses", - "gerund": "loosing", - "past": "loosed", - "past_participle": "loosed" - }, - { - "infinitive": "modify", - "present": "modifies", - "gerund": "modifying", - "past": "modified", - "past_participle": "modified" - }, - { - "infinitive": "outdistance", - "present": "outdistances", - "gerund": "outdistancing", - "past": "outdistanced", - "past_participle": "outdistanced" - }, - { - "infinitive": "whine", - "present": "whines", - "gerund": "whining", - "past": "whined", - "past_participle": "whined" - }, - { - "infinitive": "telecasted", - "present": "telecasts", - "gerund": "telecasting", - "past": "telecasteded", - "past_participle": "telecasteded" - }, - { - "infinitive": "soldier", - "present": "soldiers", - "gerund": "soldiering", - "past": "soldiered", - "past_participle": "soldiered" - }, - { - "infinitive": "amount", - "present": "amounts", - "gerund": "amounting", - "past": "amounted", - "past_participle": "amounted" - }, - { - "infinitive": "obtrude", - "present": "obtrudes", - "gerund": "obtruding", - "past": "obtruded", - "past_participle": "obtruded" - }, - { - "infinitive": "invalidate", - "present": "invalidates", - "gerund": "invalidating", - "past": "invalidated", - "past_participle": "invalidated" - }, - { - "infinitive": "shuffle", - "present": "shuffles", - "gerund": "shuffling", - "past": "shuffled", - "past_participle": "shuffled" - }, - { - "infinitive": "misdemean", - "present": "misdemeans", - "gerund": "misdemeaning", - "past": "misdemeaned", - "past_participle": "misdemeaned" - }, - { - "infinitive": "ask", - "present": "asks", - "gerund": "asking", - "past": "asked", - "past_participle": "asked" - }, - { - "infinitive": "overpraise", - "present": "overpraises", - "gerund": "overpraising", - "past": "overpraised", - "past_participle": "overpraised" - }, - { - "infinitive": "foretoken", - "present": "foretokens", - "gerund": "foretokening", - "past": "foretokened", - "past_participle": "foretokened" - }, - { - "infinitive": "aggress", - "present": "aggresses", - "gerund": "aggressing", - "past": "aggressed", - "past_participle": "aggressed" - }, - { - "infinitive": "decompound", - "present": "decompounds", - "gerund": "decompounding", - "past": "decompounded", - "past_participle": "decompounded" - }, - { - "infinitive": "injure", - "present": "injures", - "gerund": "injuring", - "past": "injured", - "past_participle": "injured" - }, - { - "infinitive": "generate", - "present": "generates", - "gerund": "generating", - "past": "generated", - "past_participle": "generated" - }, - { - "infinitive": "enwreath", - "present": "enwreaths", - "gerund": "enwreathing", - "past": "enwreathed", - "past_participle": "enwreathed" - }, - { - "infinitive": "handfeed", - "present": "handfeeds", - "gerund": "handfeeding", - "past": "handfed", - "past_participle": "handfed" - }, - { - "infinitive": "telepathize", - "present": "telepathizes", - "gerund": "telepathizing", - "past": "telepathized", - "past_participle": "telepathized" - }, - { - "infinitive": "coiffure", - "present": "coiffures", - "gerund": "coiffuring", - "past": "coiffured", - "past_participle": "coiffured" - }, - { - "infinitive": "erode", - "present": "erodes", - "gerund": "eroding", - "past": "eroded", - "past_participle": "eroded" - }, - { - "infinitive": "decrepitate", - "present": "decrepitates", - "gerund": "decrepitating", - "past": "decrepitated", - "past_participle": "decrepitated" - }, - { - "infinitive": "splosh", - "present": "sploshes", - "gerund": "sploshing", - "past": "sploshed", - "past_participle": "sploshed" - }, - { - "infinitive": "indenture", - "present": "indentures", - "gerund": "indenturing", - "past": "indentured", - "past_participle": "indentured" - }, - { - "infinitive": "excuse", - "present": "excuses", - "gerund": "excusing", - "past": "excused", - "past_participle": "excused" - }, - { - "infinitive": "hurry", - "present": "hurries", - "gerund": "hurrying", - "past": "hurried", - "past_participle": "hurried" - }, - { - "infinitive": "italicize", - "present": "italicizes", - "gerund": "italicizing", - "past": "italicized", - "past_participle": "italicized" - }, - { - "infinitive": "grill", - "present": "grills", - "gerund": "grilling", - "past": "grilled", - "past_participle": "grilled" - }, - { - "infinitive": "unyoke", - "present": "unyokes", - "gerund": "unyoking", - "past": "unyoked", - "past_participle": "unyoked" - }, - { - "infinitive": "titrate", - "present": "titrates", - "gerund": "titrating", - "past": "titrated", - "past_participle": "titrated" - }, - { - "infinitive": "muzz", - "present": "muzzes", - "gerund": "muzzing", - "past": "muzzed", - "past_participle": "muzzed" - }, - { - "infinitive": "swash", - "present": "swashes", - "gerund": "swashing", - "past": "swashed", - "past_participle": "swashed" - }, - { - "infinitive": "cowk", - "present": "cowks", - "gerund": "cowking", - "past": "cowked", - "past_participle": "cowked" - }, - { - "infinitive": "transcend", - "present": "transcends", - "gerund": "transcending", - "past": "transcended", - "past_participle": "transcended" - }, - { - "infinitive": "cowl", - "present": "cowls", - "gerund": "cowling", - "past": "cowled", - "past_participle": "cowled" - }, - { - "infinitive": "boycott", - "present": "boycotts", - "gerund": "boycotting", - "past": "boycotted", - "past_participle": "boycotted" - }, - { - "infinitive": "henpeck", - "present": "henpecks", - "gerund": "henpecking", - "past": "henpecked", - "past_participle": "henpecked" - }, - { - "infinitive": "appose", - "present": "apposes", - "gerund": "apposing", - "past": "apposed", - "past_participle": "apposed" - }, - { - "infinitive": "surcingle", - "present": "surcingles", - "gerund": "surcingling", - "past": "surcingled", - "past_participle": "surcingled" - }, - { - "infinitive": "exclude", - "present": "excludes", - "gerund": "excluding", - "past": "excluded", - "past_participle": "excluded" - }, - { - "infinitive": "cornice", - "present": "cornices", - "gerund": "cornicing", - "past": "corniced", - "past_participle": "corniced" - }, - { - "infinitive": "dimidiate", - "present": "dimidiates", - "gerund": "dimidiating", - "past": "dimidiated", - "past_participle": "dimidiated" - }, - { - "infinitive": "fortress", - "present": "fortresses", - "gerund": "fortressing", - "past": "fortressed", - "past_participle": "fortressed" - }, - { - "infinitive": "stymy", - "present": "stymies", - "gerund": "stymying", - "past": "stymied", - "past_participle": "stymied" - }, - { - "infinitive": "thieve", - "present": "thieves", - "gerund": "thieving", - "past": "thieved", - "past_participle": "thieved" - }, - { - "infinitive": "ledger", - "present": "ledgers", - "gerund": "ledgering", - "past": "ledgered", - "past_participle": "ledgered" - }, - { - "infinitive": "reject", - "present": "rejects", - "gerund": "rejecting", - "past": "rejected", - "past_participle": "rejected" - }, - { - "infinitive": "gash", - "present": "gashes", - "gerund": "gashing", - "past": "gashed", - "past_participle": "gashed" - }, - { - "infinitive": "slipsheet", - "present": "slipsheets", - "gerund": "slipsheeting", - "past": "slipsheeted", - "past_participle": "slipsheeted" - }, - { - "infinitive": "ladyfy", - "present": "ladyfies", - "gerund": "ladyfying", - "past": "ladyfied", - "past_participle": "ladyfied" - }, - { - "infinitive": "whirl", - "present": "whirls", - "gerund": "whirling", - "past": "whirled", - "past_participle": "whirled" - }, - { - "infinitive": "sneak", - "present": "sneaks", - "gerund": "sneaking", - "past": "snuck", - "past_participle": "snuck" - }, - { - "infinitive": "keelhaul", - "present": "keelhauls", - "gerund": "keelhauling", - "past": "keelhauled", - "past_participle": "keelhauled" - }, - { - "infinitive": "offload", - "present": "offloads", - "gerund": "offloading", - "past": "offloaded", - "past_participle": "offloaded" - }, - { - "infinitive": "gasp", - "present": "gasps", - "gerund": "gasping", - "past": "gasped", - "past_participle": "gasped" - }, - { - "infinitive": "humbug", - "present": "humbugs", - "gerund": "humbugging", - "past": "humbugged", - "past_participle": "humbugged" - }, - { - "infinitive": "criticize", - "present": "criticizes", - "gerund": "criticizing", - "past": "criticized", - "past_participle": "criticized" - }, - { - "infinitive": "deluge", - "present": "deluges", - "gerund": "deluging", - "past": "deluged", - "past_participle": "deluged" - }, - { - "infinitive": "laminate", - "present": "laminates", - "gerund": "laminating", - "past": "laminated", - "past_participle": "laminated" - }, - { - "infinitive": "genuflect", - "present": "genuflects", - "gerund": "genuflecting", - "past": "genuflected", - "past_participle": "genuflected" - }, - { - "infinitive": "dread", - "present": "dreads", - "gerund": "dreading", - "past": "dreaded", - "past_participle": "dreaded" - }, - { - "infinitive": "decamp", - "present": "decamps", - "gerund": "decamping", - "past": "decamped", - "past_participle": "decamped" - }, - { - "infinitive": "egg", - "present": "eggs", - "gerund": "egging", - "past": "egged", - "past_participle": "egged" - }, - { - "infinitive": "ding", - "present": "dings", - "gerund": "dinging", - "past": "dinged", - "past_participle": "dinged" - }, - { - "infinitive": "splay", - "present": "splays", - "gerund": "splaying", - "past": "splayed", - "past_participle": "splayed" - }, - { - "infinitive": "help", - "present": "helps", - "gerund": "helping", - "past": "helped", - "past_participle": "helped" - }, - { - "infinitive": "slouch", - "present": "slouches", - "gerund": "slouching", - "past": "slouched", - "past_participle": "slouched" - }, - { - "infinitive": "soot", - "present": "soots", - "gerund": "sooting", - "past": "sooted", - "past_participle": "sooted" - }, - { - "infinitive": "helm", - "present": "helms", - "gerund": "helming", - "past": "helmed", - "past_participle": "helmed" - }, - { - "infinitive": "expectorate", - "present": "expectorates", - "gerund": "expectorating", - "past": "expectorated", - "past_participle": "expectorated" - }, - { - "infinitive": "caseharden", - "present": "casehardens", - "gerund": "casehardening", - "past": "casehardened", - "past_participle": "casehardened" - }, - { - "infinitive": "reseat", - "present": "reseats", - "gerund": "reseating", - "past": "reseated", - "past_participle": "reseated" - }, - { - "infinitive": "autoclave", - "present": "autoclaves", - "gerund": "autoclaving", - "past": "autoclaved", - "past_participle": "autoclaved" - }, - { - "infinitive": "astonish", - "present": "astonishes", - "gerund": "astonishing", - "past": "astonished", - "past_participle": "astonished" - }, - { - "infinitive": "rabble", - "present": "rabbles", - "gerund": "rabbling", - "past": "rabbled", - "past_participle": "rabbled" - }, - { - "infinitive": "team", - "present": "teams", - "gerund": "teaming", - "past": "teamed", - "past_participle": "teamed" - }, - { - "infinitive": "flabbergast", - "present": "flabbergasts", - "gerund": "flabbergasting", - "past": "flabbergasted", - "past_participle": "flabbergasted" - }, - { - "infinitive": "fool", - "present": "fools", - "gerund": "fooling", - "past": "fooled", - "past_participle": "fooled" - }, - { - "infinitive": "stiffen", - "present": "stiffens", - "gerund": "stiffening", - "past": "stiffened", - "past_participle": "stiffened" - }, - { - "infinitive": "decollate", - "present": "decollates", - "gerund": "decollating", - "past": "decollated", - "past_participle": "decollated" - }, - { - "infinitive": "foot", - "present": "foots", - "gerund": "footing", - "past": "footed", - "past_participle": "footed" - }, - { - "infinitive": "menstruate", - "present": "menstruates", - "gerund": "menstruating", - "past": "menstruated", - "past_participle": "menstruated" - }, - { - "infinitive": "stopper", - "present": "stoppers", - "gerund": "stoppering", - "past": "stoppered", - "past_participle": "stoppered" - }, - { - "infinitive": "chamfer", - "present": "chamfers", - "gerund": "chamfering", - "past": "chamfered", - "past_participle": "chamfered" - }, - { - "infinitive": "intervene", - "present": "intervenes", - "gerund": "intervening", - "past": "intervened", - "past_participle": "intervened" - }, - { - "infinitive": "fanaticize", - "present": "fanaticizes", - "gerund": "fanaticizing", - "past": "fanaticized", - "past_participle": "fanaticized" - }, - { - "infinitive": "bless", - "present": "blesses", - "gerund": "blessing", - "past": "blest", - "past_participle": "blessed" - }, - { - "infinitive": "circularize", - "present": "circularizes", - "gerund": "circularizing", - "past": "circularized", - "past_participle": "circularized" - }, - { - "infinitive": "blest", - "present": "blests", - "gerund": "blesting", - "past": "blested", - "past_participle": "blested" - }, - { - "infinitive": "oppugn", - "present": "oppugns", - "gerund": "oppugning", - "past": "oppugned", - "past_participle": "oppugned" - }, - { - "infinitive": "contextualize", - "present": "contextualizes", - "gerund": "contextualizing", - "past": "contextualized", - "past_participle": "contextualized" - }, - { - "infinitive": "transcribe", - "present": "transcribes", - "gerund": "transcribing", - "past": "transcribed", - "past_participle": "transcribed" - }, - { - "infinitive": "pamper", - "present": "pampers", - "gerund": "pampering", - "past": "pampered", - "past_participle": "pampered" - }, - { - "infinitive": "trapes", - "present": "", - "gerund": "trapesing", - "past": "trapesed", - "past_participle": "trapesed" - }, - { - "infinitive": "tighten", - "present": "tightens", - "gerund": "tightening", - "past": "tightened", - "past_participle": "tightened" - }, - { - "infinitive": "deride", - "present": "derides", - "gerund": "deriding", - "past": "derided", - "past_participle": "derided" - }, - { - "infinitive": "unharness", - "present": "unharnesses", - "gerund": "unharnessing", - "past": "unharnessed", - "past_participle": "unharnessed" - }, - { - "infinitive": "unlead", - "present": "unleads", - "gerund": "unleading", - "past": "unleaded", - "past_participle": "unleaded" - }, - { - "infinitive": "heave", - "present": "heaves", - "gerund": "heaving", - "past": "hove", - "past_participle": "hove" - }, - { - "infinitive": "feoff", - "present": "", - "gerund": "feoffing", - "past": "feoffed", - "past_participle": "feoffed" - }, - { - "infinitive": "testify", - "present": "testifies", - "gerund": "testifying", - "past": "testified", - "past_participle": "testified" - }, - { - "infinitive": "publish", - "present": "publishes", - "gerund": "publishing", - "past": "published", - "past_participle": "published" - }, - { - "infinitive": "jolly", - "present": "jollies", - "gerund": "jollying", - "past": "jollied", - "past_participle": "jollied" - }, - { - "infinitive": "equate", - "present": "equates", - "gerund": "equating", - "past": "equated", - "past_participle": "equated" - }, - { - "infinitive": "desexualize", - "present": "desexualizes", - "gerund": "desexualizing", - "past": "desexualized", - "past_participle": "desexualized" - }, - { - "infinitive": "lord", - "present": "lords", - "gerund": "lording", - "past": "lorded", - "past_participle": "lorded" - }, - { - "infinitive": "issue", - "present": "issues", - "gerund": "issuing", - "past": "issued", - "past_participle": "issued" - }, - { - "infinitive": "outrun", - "present": "outruns", - "gerund": "outrunning", - "past": "outran", - "past_participle": "outrun" - }, - { - "infinitive": "coinsure", - "present": "coinsures", - "gerund": "coinsuring", - "past": "coinsured", - "past_participle": "coinsured" - }, - { - "infinitive": "reck", - "present": "recks", - "gerund": "recking", - "past": "recked", - "past_participle": "recked" - }, - { - "infinitive": "pun", - "present": "puns", - "gerund": "punning", - "past": "punned", - "past_participle": "punned" - }, - { - "infinitive": "swob", - "present": "swobs", - "gerund": "swobbing", - "past": "swobbed", - "past_participle": "swobbed" - }, - { - "infinitive": "pug", - "present": "pugs", - "gerund": "pugging", - "past": "pugged", - "past_participle": "pugged" - }, - { - "infinitive": "dung", - "present": "dungs", - "gerund": "dunging", - "past": "dunged", - "past_participle": "dunged" - }, - { - "infinitive": "derate", - "present": "derates", - "gerund": "derating", - "past": "derated", - "past_participle": "derated" - }, - { - "infinitive": "housel", - "present": "housels", - "gerund": "houselling", - "past": "houselled", - "past_participle": "houselled" - }, - { - "infinitive": "reason", - "present": "reasons", - "gerund": "reasoning", - "past": "reasoned", - "past_participle": "reasoned" - }, - { - "infinitive": "base", - "present": "bases", - "gerund": "basing", - "past": "based", - "past_participle": "based" - }, - { - "infinitive": "dirk", - "present": "dirks", - "gerund": "dirking", - "past": "dirked", - "past_participle": "dirked" - }, - { - "infinitive": "resettle", - "present": "resettles", - "gerund": "resettling", - "past": "resettled", - "past_participle": "resettled" - }, - { - "infinitive": "swop", - "present": "swops", - "gerund": "swopping", - "past": "swopped", - "past_participle": "swopped" - }, - { - "infinitive": "pup", - "present": "pups", - "gerund": "pupping", - "past": "pupped", - "past_participle": "pupped" - }, - { - "infinitive": "bask", - "present": "basks", - "gerund": "basking", - "past": "basked", - "past_participle": "basked" - }, - { - "infinitive": "bash", - "present": "bashes", - "gerund": "bashing", - "past": "bashed", - "past_participle": "bashed" - }, - { - "infinitive": "dunt", - "present": "dunts", - "gerund": "dunting", - "past": "dunted", - "past_participle": "dunted" - }, - { - "infinitive": "palpebrate", - "present": "palpebrates", - "gerund": "palpebrating", - "past": "palpebrated", - "past_participle": "palpebrated" - }, - { - "infinitive": "execrate", - "present": "execrates", - "gerund": "execrating", - "past": "execrated", - "past_participle": "execrated" - }, - { - "infinitive": "launch", - "present": "launches", - "gerund": "launching", - "past": "launched", - "past_participle": "launched" - }, - { - "infinitive": "caption", - "present": "captions", - "gerund": "captioning", - "past": "captioned", - "past_participle": "captioned" - }, - { - "infinitive": "blush", - "present": "blushes", - "gerund": "blushing", - "past": "blushed", - "past_participle": "blushed" - }, - { - "infinitive": "devolve", - "present": "devolves", - "gerund": "devolving", - "past": "devolved", - "past_participle": "devolved" - }, - { - "infinitive": "assign", - "present": "assigns", - "gerund": "assigning", - "past": "assigned", - "past_participle": "assigned" - }, - { - "infinitive": "prevent", - "present": "prevents", - "gerund": "preventing", - "past": "prevented", - "past_participle": "prevented" - }, - { - "infinitive": "chain-stitch", - "present": "chain-stitches", - "gerund": "chain-stitching", - "past": "chain-stitched", - "past_participle": "chain-stitched" - }, - { - "infinitive": "ingenerate", - "present": "ingenerates", - "gerund": "ingenerating", - "past": "ingenerated", - "past_participle": "ingenerated" - }, - { - "infinitive": "mist", - "present": "mists", - "gerund": "misting", - "past": "misted", - "past_participle": "misted" - }, - { - "infinitive": "miss", - "present": "misses", - "gerund": "missing", - "past": "missed", - "past_participle": "missed" - }, - { - "infinitive": "horse", - "present": "horses", - "gerund": "horsing", - "past": "horsed", - "past_participle": "horsed" - }, - { - "infinitive": "inure", - "present": "inures", - "gerund": "inuring", - "past": "inured", - "past_participle": "inured" - }, - { - "infinitive": "ostracize", - "present": "ostracizes", - "gerund": "ostracizing", - "past": "ostracized", - "past_participle": "ostracized" - }, - { - "infinitive": "blossom", - "present": "blossoms", - "gerund": "blossoming", - "past": "blossomed", - "past_participle": "blossomed" - }, - { - "infinitive": "shrinkwrap", - "present": "shrinkwraps", - "gerund": "shrinkwrapping", - "past": "shrinkwrapped", - "past_participle": "shrinkwrapped" - }, - { - "infinitive": "novelize", - "present": "novelizes", - "gerund": "novelizing", - "past": "novelized", - "past_participle": "novelized" - }, - { - "infinitive": "purvey", - "present": "purveys", - "gerund": "purveying", - "past": "purveyed", - "past_participle": "purveyed" - }, - { - "infinitive": "inurn", - "present": "inurns", - "gerund": "inurning", - "past": "inurned", - "past_participle": "inurned" - }, - { - "infinitive": "eddy", - "present": "eddies", - "gerund": "eddying", - "past": "eddied", - "past_participle": "eddied" - }, - { - "infinitive": "station", - "present": "stations", - "gerund": "stationing", - "past": "stationed", - "past_participle": "stationed" - }, - { - "infinitive": "scheme", - "present": "schemes", - "gerund": "scheming", - "past": "schemed", - "past_participle": "schemed" - }, - { - "infinitive": "demystify", - "present": "demystifies", - "gerund": "demystifying", - "past": "demystified", - "past_participle": "demystified" - }, - { - "infinitive": "slosh", - "present": "sloshes", - "gerund": "sloshing", - "past": "sloshed", - "past_participle": "sloshed" - }, - { - "infinitive": "underdevelop", - "present": "underdevelops", - "gerund": "underdeveloping", - "past": "underdeveloped", - "past_participle": "underdeveloped" - }, - { - "infinitive": "interplead", - "present": "interpleads", - "gerund": "interpleading", - "past": "interpled", - "past_participle": "interpled" - }, - { - "infinitive": "outrange", - "present": "outranges", - "gerund": "outranging", - "past": "outranged", - "past_participle": "outranged" - }, - { - "infinitive": "waterski", - "present": "waterskis", - "gerund": "waterskiing", - "past": "waterskied", - "past_participle": "waterskied" - }, - { - "infinitive": "overdrive", - "present": "overdrives", - "gerund": "overdriving", - "past": "overdrove", - "past_participle": "overdriven" - }, - { - "infinitive": "dissemble", - "present": "dissembles", - "gerund": "dissembling", - "past": "dissembled", - "past_participle": "dissembled" - }, - { - "infinitive": "chainreact", - "present": "chainreacts", - "gerund": "chainreacting", - "past": "chainreacted", - "past_participle": "chainreacted" - }, - { - "infinitive": "apprentice", - "present": "apprentices", - "gerund": "apprenticing", - "past": "apprenticed", - "past_participle": "apprenticed" - }, - { - "infinitive": "lament", - "present": "laments", - "gerund": "lamenting", - "past": "lamented", - "past_participle": "lamented" - }, - { - "infinitive": "anticipate", - "present": "anticipates", - "gerund": "anticipating", - "past": "anticipated", - "past_participle": "anticipated" - }, - { - "infinitive": "grey", - "present": "greys", - "gerund": "greying", - "past": "greyed", - "past_participle": "greyed" - }, - { - "infinitive": "gree", - "present": "grees", - "gerund": "greeing", - "past": "greed", - "past_participle": "greed" - }, - { - "infinitive": "obfuscate", - "present": "obfuscates", - "gerund": "obfuscating", - "past": "obfuscated", - "past_participle": "obfuscated" - }, - { - "infinitive": "kindle", - "present": "kindles", - "gerund": "kindling", - "past": "kindled", - "past_participle": "kindled" - }, - { - "infinitive": "garrison", - "present": "garrisons", - "gerund": "garrisoning", - "past": "garrisoned", - "past_participle": "garrisoned" - }, - { - "infinitive": "sty", - "present": "sties", - "gerund": "stying", - "past": "stied", - "past_participle": "stied" - }, - { - "infinitive": "bejewel", - "present": "bejewels", - "gerund": "bejewelling", - "past": "bejewelled", - "past_participle": "bejewelled" - }, - { - "infinitive": "vitriolize", - "present": "vitriolizes", - "gerund": "vitriolizing", - "past": "vitriolized", - "past_participle": "vitriolized" - }, - { - "infinitive": "footnote", - "present": "footnotes", - "gerund": "footnoting", - "past": "footnoted", - "past_participle": "footnoted" - }, - { - "infinitive": "overstate", - "present": "overstates", - "gerund": "overstating", - "past": "overstated", - "past_participle": "overstated" - }, - { - "infinitive": "controvert", - "present": "controverts", - "gerund": "controverting", - "past": "controverted", - "past_participle": "controverted" - }, - { - "infinitive": "yowl", - "present": "yowls", - "gerund": "yowling", - "past": "yowled", - "past_participle": "yowled" - }, - { - "infinitive": "disbranch", - "present": "disbranches", - "gerund": "disbranching", - "past": "disbranched", - "past_participle": "disbranched" - }, - { - "infinitive": "upsweep", - "present": "upsweeps", - "gerund": "upsweeping", - "past": "upswept", - "past_participle": "upswept" - }, - { - "infinitive": "lie", - "present": "lies", - "gerund": "lying", - "past": "lied", - "past_participle": "lied" - }, - { - "infinitive": "trance", - "present": "trances", - "gerund": "trancing", - "past": "tranced", - "past_participle": "tranced" - }, - { - "infinitive": "cave", - "present": "caves", - "gerund": "caving", - "past": "caved", - "past_participle": "caved" - }, - { - "infinitive": "classicize", - "present": "classicizes", - "gerund": "classicizing", - "past": "classicized", - "past_participle": "classicized" - }, - { - "infinitive": "camouflage", - "present": "camouflages", - "gerund": "camouflaging", - "past": "camouflaged", - "past_participle": "camouflaged" - }, - { - "infinitive": "auctioneer", - "present": "auctioneers", - "gerund": "auctioneering", - "past": "auctioneered", - "past_participle": "auctioneered" - }, - { - "infinitive": "lit", - "present": "", - "gerund": "", - "past": "lit", - "past_participle": "lit" - }, - { - "infinitive": "steal", - "present": "steals", - "gerund": "stealing", - "past": "stole", - "past_participle": "stolen" - }, - { - "infinitive": "lip", - "present": "lips", - "gerund": "lipping", - "past": "lipped", - "past_participle": "lipped" - }, - { - "infinitive": "honeycomb", - "present": "honeycombs", - "gerund": "honeycombing", - "past": "honeycombed", - "past_participle": "honeycombed" - }, - { - "infinitive": "exsert", - "present": "exserts", - "gerund": "exserting", - "past": "exserted", - "past_participle": "exserted" - }, - { - "infinitive": "quote", - "present": "quotes", - "gerund": "quoting", - "past": "quoth", - "past_participle": "quoted" - }, - { - "infinitive": "venge", - "present": "venges", - "gerund": "venging", - "past": "venged", - "past_participle": "venged" - }, - { - "infinitive": "promenade", - "present": "promenades", - "gerund": "promenading", - "past": "promenaded", - "past_participle": "promenaded" - }, - { - "infinitive": "plunder", - "present": "plunders", - "gerund": "plundering", - "past": "plundered", - "past_participle": "plundered" - }, - { - "infinitive": "bridle", - "present": "bridles", - "gerund": "bridling", - "past": "bridled", - "past_participle": "bridled" - }, - { - "infinitive": "diversify", - "present": "diversifies", - "gerund": "diversifying", - "past": "diversified", - "past_participle": "diversified" - }, - { - "infinitive": "deflocculate", - "present": "deflocculates", - "gerund": "deflocculating", - "past": "deflocculated", - "past_participle": "deflocculated" - }, - { - "infinitive": "detoxicate", - "present": "detoxicates", - "gerund": "detoxicating", - "past": "detoxicated", - "past_participle": "detoxicated" - }, - { - "infinitive": "chronicle", - "present": "chronicles", - "gerund": "chronicling", - "past": "chronicled", - "past_participle": "chronicled" - }, - { - "infinitive": "scumble", - "present": "scumbles", - "gerund": "scumbling", - "past": "scumbled", - "past_participle": "scumbled" - }, - { - "infinitive": "smoulder", - "present": "smoulders", - "gerund": "smouldering", - "past": "smouldered", - "past_participle": "smouldered" - }, - { - "infinitive": "clear", - "present": "clears", - "gerund": "clearing", - "past": "cleared", - "past_participle": "cleared" - }, - { - "infinitive": "cleat", - "present": "cleats", - "gerund": "cleating", - "past": "cleated", - "past_participle": "cleated" - }, - { - "infinitive": "adulate", - "present": "adulates", - "gerund": "adulating", - "past": "adulated", - "past_participle": "adulated" - }, - { - "infinitive": "clean", - "present": "cleans", - "gerund": "cleaning", - "past": "cleaned", - "past_participle": "cleaned" - }, - { - "infinitive": "displant", - "present": "displants", - "gerund": "displanting", - "past": "displanted", - "past_participle": "displanted" - }, - { - "infinitive": "blend", - "present": "blends", - "gerund": "blending", - "past": "blended", - "past_participle": "blended" - }, - { - "infinitive": "counterplot", - "present": "counterplots", - "gerund": "counterplotting", - "past": "counterplotted", - "past_participle": "counterplotted" - }, - { - "infinitive": "ennoble", - "present": "ennobles", - "gerund": "ennobling", - "past": "ennobled", - "past_participle": "ennobled" - }, - { - "infinitive": "tincture", - "present": "tinctures", - "gerund": "tincturing", - "past": "tinctured", - "past_participle": "tinctured" - }, - { - "infinitive": "flicker", - "present": "flickers", - "gerund": "flickering", - "past": "flickered", - "past_participle": "flickered" - }, - { - "infinitive": "testmarket", - "present": "testmarkets", - "gerund": "testmarketing", - "past": "testmarketed", - "past_participle": "testmarketed" - }, - { - "infinitive": "booze", - "present": "boozes", - "gerund": "boozing", - "past": "boozed", - "past_participle": "boozed" - }, - { - "infinitive": "crayon", - "present": "crayons", - "gerund": "crayoning", - "past": "crayoned", - "past_participle": "crayoned" - }, - { - "infinitive": "illegalize", - "present": "illegalizes", - "gerund": "illegalizing", - "past": "illegalized", - "past_participle": "illegalized" - }, - { - "infinitive": "sheave", - "present": "", - "gerund": "sheaving", - "past": "sheaved", - "past_participle": "sheaved" - }, - { - "infinitive": "acidulate", - "present": "acidulates", - "gerund": "acidulating", - "past": "acidulated", - "past_participle": "acidulated" - }, - { - "infinitive": "inlace", - "present": "inlaces", - "gerund": "inlacing", - "past": "inlaced", - "past_participle": "inlaced" - }, - { - "infinitive": "copyright", - "present": "copyrights", - "gerund": "copyrighting", - "past": "copyrighted", - "past_participle": "copyrighted" - }, - { - "infinitive": "undersell", - "present": "undersells", - "gerund": "underselling", - "past": "undersold", - "past_participle": "undersold" - }, - { - "infinitive": "circle", - "present": "circles", - "gerund": "circling", - "past": "circled", - "past_participle": "circled" - }, - { - "infinitive": "waterproof", - "present": "waterproofs", - "gerund": "waterproofing", - "past": "waterproofed", - "past_participle": "waterproofed" - }, - { - "infinitive": "outlast", - "present": "outlasts", - "gerund": "outlasting", - "past": "outlasted", - "past_participle": "outlasted" - }, - { - "infinitive": "bellyache", - "present": "bellyaches'", - "gerund": "belly-aching", - "past": "bellyached", - "past_participle": "belly-ached" - }, - { - "infinitive": "strut", - "present": "struts", - "gerund": "strutting", - "past": "strutted", - "past_participle": "strutted" - }, - { - "infinitive": "bedew", - "present": "bedews", - "gerund": "bedewing", - "past": "bedewed", - "past_participle": "bedewed" - }, - { - "infinitive": "strum", - "present": "strums", - "gerund": "strumming", - "past": "strummed", - "past_participle": "strummed" - }, - { - "infinitive": "intensify", - "present": "intensifies", - "gerund": "intensifying", - "past": "intensified", - "past_participle": "intensified" - }, - { - "infinitive": "fluff", - "present": "fluffs", - "gerund": "fluffing", - "past": "fluffed", - "past_participle": "fluffed" - }, - { - "infinitive": "immerse", - "present": "immerses", - "gerund": "immersing", - "past": "immersed", - "past_participle": "immersed" - }, - { - "infinitive": "withe", - "present": "withes", - "gerund": "withing", - "past": "withed", - "past_participle": "withed" - }, - { - "infinitive": "lipread", - "present": "lipreads", - "gerund": "lipreading", - "past": "lipread", - "past_participle": "lipread" - }, - { - "infinitive": "perfume", - "present": "perfumes", - "gerund": "perfuming", - "past": "perfumed", - "past_participle": "perfumed" - }, - { - "infinitive": "unsaddle", - "present": "unsaddles", - "gerund": "unsaddling", - "past": "unsaddled", - "past_participle": "unsaddled" - }, - { - "infinitive": "rejig", - "present": "rejigs", - "gerund": "rejigging", - "past": "rejigged", - "past_participle": "rejigged" - }, - { - "infinitive": "geld", - "present": "gelds", - "gerund": "gelding", - "past": "gelt", - "past_participle": "gelt" - }, - { - "infinitive": "meld", - "present": "melds", - "gerund": "melding", - "past": "melded", - "past_participle": "melded" - }, - { - "infinitive": "carnify", - "present": "carnifies", - "gerund": "carnifying", - "past": "carnified", - "past_participle": "carnified" - }, - { - "infinitive": "dissertate", - "present": "dissertates", - "gerund": "dissertating", - "past": "dissertated", - "past_participle": "dissertated" - }, - { - "infinitive": "cramp", - "present": "cramps", - "gerund": "cramping", - "past": "cramped", - "past_participle": "cramped" - }, - { - "infinitive": "backtrack", - "present": "backtracks", - "gerund": "backtracking", - "past": "backtracked", - "past_participle": "backtracked" - }, - { - "infinitive": "crackle", - "present": "crackles", - "gerund": "crackling", - "past": "crackled", - "past_participle": "crackled" - }, - { - "infinitive": "plough", - "present": "ploughs", - "gerund": "ploughing", - "past": "ploughed", - "past_participle": "ploughed" - }, - { - "infinitive": "culture", - "present": "cultures", - "gerund": "culturing", - "past": "cultured", - "past_participle": "cultured" - }, - { - "infinitive": "venerate", - "present": "venerates", - "gerund": "venerating", - "past": "venerated", - "past_participle": "venerated" - }, - { - "infinitive": "close", - "present": "closes", - "gerund": "closing", - "past": "closed", - "past_participle": "closed" - }, - { - "infinitive": "despatch", - "present": "despatches", - "gerund": "despatching", - "past": "despatched", - "past_participle": "despatched" - }, - { - "infinitive": "introject", - "present": "introjects", - "gerund": "introjecting", - "past": "introjected", - "past_participle": "introjected" - }, - { - "infinitive": "bifurcate", - "present": "bifurcates", - "gerund": "bifurcating", - "past": "bifurcated", - "past_participle": "bifurcated" - }, - { - "infinitive": "pepsinate", - "present": "pepsinates", - "gerund": "pepsinating", - "past": "pepsinated", - "past_participle": "pepsinated" - }, - { - "infinitive": "podzolize", - "present": "podzolizes", - "gerund": "podzolizing", - "past": "podzolized", - "past_participle": "podzolized" - }, - { - "infinitive": "throve", - "present": "throves", - "gerund": "throving", - "past": "throved", - "past_participle": "throved" - }, - { - "infinitive": "wow", - "present": "wows", - "gerund": "wowing", - "past": "wowed", - "past_participle": "wowed" - }, - { - "infinitive": "wail", - "present": "wails", - "gerund": "wailing", - "past": "wailed", - "past_participle": "wailed" - }, - { - "infinitive": "woo", - "present": "woos", - "gerund": "wooing", - "past": "wooed", - "past_participle": "wooed" - }, - { - "infinitive": "premeditate", - "present": "premeditates", - "gerund": "premeditating", - "past": "premeditated", - "past_participle": "premeditated" - }, - { - "infinitive": "checkmate", - "present": "checkmates", - "gerund": "checkmating", - "past": "checkmated", - "past_participle": "checkmated" - }, - { - "infinitive": "delouse", - "present": "delouses", - "gerund": "delousing", - "past": "deloused", - "past_participle": "deloused" - }, - { - "infinitive": "philander", - "present": "philanders", - "gerund": "philandering", - "past": "philandered", - "past_participle": "philandered" - }, - { - "infinitive": "vitalize", - "present": "vitalizes", - "gerund": "vitalizing", - "past": "vitalized", - "past_participle": "vitalized" - }, - { - "infinitive": "piss", - "present": "pisses", - "gerund": "pissing", - "past": "pissed", - "past_participle": "pissed" - }, - { - "infinitive": "backfill", - "present": "backfills", - "gerund": "backfilling", - "past": "backfilled", - "past_participle": "backfilled" - }, - { - "infinitive": "conjoin", - "present": "conjoins", - "gerund": "conjoining", - "past": "conjoined", - "past_participle": "conjoined" - }, - { - "infinitive": "spray", - "present": "sprays", - "gerund": "spraying", - "past": "sprayed", - "past_participle": "sprayed" - }, - { - "infinitive": "aggrieve", - "present": "aggrieves", - "gerund": "aggrieving", - "past": "aggrieved", - "past_participle": "aggrieved" - }, - { - "infinitive": "distinguish", - "present": "distinguishes", - "gerund": "distinguishing", - "past": "distinguished", - "past_participle": "distinguished" - }, - { - "infinitive": "dally", - "present": "dallies", - "gerund": "dallying", - "past": "dallied", - "past_participle": "dallied" - }, - { - "infinitive": "league", - "present": "leagues", - "gerund": "leaguing", - "past": "leagued", - "past_participle": "leagued" - }, - { - "infinitive": "delimitate", - "present": "delimits", - "gerund": "delimiting", - "past": "delimited", - "past_participle": "delimited" - }, - { - "infinitive": "suspire", - "present": "suspires", - "gerund": "suspiring", - "past": "suspired", - "past_participle": "suspired" - }, - { - "infinitive": "buzz", - "present": "buzzes", - "gerund": "buzzing", - "past": "buzzed", - "past_participle": "buzzed" - }, - { - "infinitive": "vault", - "present": "vaults", - "gerund": "vaulting", - "past": "vaulted", - "past_participle": "vaulted" - }, - { - "infinitive": "stargaze", - "present": "stargazes", - "gerund": "stargazing", - "past": "stargazed", - "past_participle": "stargazed" - }, - { - "infinitive": "secrete", - "present": "secretes", - "gerund": "secreting", - "past": "secreted", - "past_participle": "secreted" - }, - { - "infinitive": "oversleep", - "present": "oversleeps", - "gerund": "oversleeping", - "past": "overslept", - "past_participle": "overslept" - }, - { - "infinitive": "liken", - "present": "likens", - "gerund": "likening", - "past": "likened", - "past_participle": "likened" - }, - { - "infinitive": "rebate", - "present": "rebates", - "gerund": "rebating", - "past": "rebated", - "past_participle": "rebated" - }, - { - "infinitive": "mumble", - "present": "mumbles", - "gerund": "mumbling", - "past": "mumbled", - "past_participle": "mumbled" - }, - { - "infinitive": "arrest", - "present": "arrests", - "gerund": "arresting", - "past": "arrested", - "past_participle": "arrested" - }, - { - "infinitive": "stamp", - "present": "stamps", - "gerund": "stamping", - "past": "stamped", - "past_participle": "stamped" - }, - { - "infinitive": "damp", - "present": "damps", - "gerund": "damping", - "past": "damped", - "past_participle": "damped" - }, - { - "infinitive": "bobsleigh", - "present": "bobsleighs", - "gerund": "bobsleighing", - "past": "bobsleighed", - "past_participle": "bobsleighed" - }, - { - "infinitive": "reciprocate", - "present": "reciprocates", - "gerund": "reciprocating", - "past": "reciprocated", - "past_participle": "reciprocated" - }, - { - "infinitive": "damn", - "present": "damns", - "gerund": "damning", - "past": "damned", - "past_participle": "damned" - }, - { - "infinitive": "mutiny", - "present": "mutinies", - "gerund": "mutinying", - "past": "mutinied", - "past_participle": "mutinied" - }, - { - "infinitive": "threaten", - "present": "threatens", - "gerund": "threatening", - "past": "threatened", - "past_participle": "threatened" - }, - { - "infinitive": "empty", - "present": "empties", - "gerund": "emptying", - "past": "emptied", - "past_participle": "emptied" - }, - { - "infinitive": "dialogue", - "present": "dialogues", - "gerund": "dialoguing", - "past": "dialogued", - "past_participle": "dialogued" - }, - { - "infinitive": "regroup", - "present": "regroups", - "gerund": "regrouping", - "past": "regrouped", - "past_participle": "regrouped" - }, - { - "infinitive": "liven", - "present": "livens", - "gerund": "livening", - "past": "livened", - "past_participle": "livened" - }, - { - "infinitive": "hoodoo", - "present": "hoodoos", - "gerund": "hoodooing", - "past": "hoodooed", - "past_participle": "hoodooed" - }, - { - "infinitive": "crack", - "present": "cracks", - "gerund": "cracking", - "past": "cracked", - "past_participle": "cracked" - }, - { - "infinitive": "misconceive", - "present": "misconceives", - "gerund": "misconceiving", - "past": "misconceived", - "past_participle": "misconceived" - }, - { - "infinitive": "deter", - "present": "deters", - "gerund": "deterring", - "past": "deterred", - "past_participle": "deterred" - }, - { - "infinitive": "bight", - "present": "bights", - "gerund": "bighting", - "past": "bighted", - "past_participle": "bighted" - }, - { - "infinitive": "panegyrize", - "present": "panegyrizes", - "gerund": "panegyrizing", - "past": "panegyrized", - "past_participle": "panegyrized" - }, - { - "infinitive": "hobnob", - "present": "hobnobs", - "gerund": "hobnobbing", - "past": "hobnobbed", - "past_participle": "hobnobbed" - }, - { - "infinitive": "furrow", - "present": "furrows", - "gerund": "furrowing", - "past": "furrowed", - "past_participle": "furrowed" - }, - { - "infinitive": "loom", - "present": "looms", - "gerund": "looming", - "past": "loomed", - "past_participle": "loomed" - }, - { - "infinitive": "overplay", - "present": "overplays", - "gerund": "overplaying", - "past": "overplayed", - "past_participle": "overplayed" - }, - { - "infinitive": "look", - "present": "looks", - "gerund": "looking", - "past": "looked", - "past_participle": "looked" - }, - { - "infinitive": "disport", - "present": "disports", - "gerund": "disporting", - "past": "disported", - "past_participle": "disported" - }, - { - "infinitive": "pace", - "present": "paces", - "gerund": "pacing", - "past": "paced", - "past_participle": "paced" - }, - { - "infinitive": "infamize", - "present": "infamizes", - "gerund": "infamizing", - "past": "infamized", - "past_participle": "infamized" - }, - { - "infinitive": "match", - "present": "matches", - "gerund": "matching", - "past": "matched", - "past_participle": "matched" - }, - { - "infinitive": "deplane", - "present": "deplanes", - "gerund": "deplaning", - "past": "deplaned", - "past_participle": "deplaned" - }, - { - "infinitive": "immaterialize", - "present": "immaterializes", - "gerund": "immaterializing", - "past": "immaterialized", - "past_participle": "immaterialized" - }, - { - "infinitive": "fleet", - "present": "fleets", - "gerund": "fleeting", - "past": "fleeted", - "past_participle": "fleeted" - }, - { - "infinitive": "loot", - "present": "loots", - "gerund": "looting", - "past": "looted", - "past_participle": "looted" - }, - { - "infinitive": "guide", - "present": "guides", - "gerund": "guiding", - "past": "guided", - "past_participle": "guided" - }, - { - "infinitive": "loop", - "present": "loops", - "gerund": "looping", - "past": "looped", - "past_participle": "looped" - }, - { - "infinitive": "fleer", - "present": "fleers", - "gerund": "fleering", - "past": "fleered", - "past_participle": "fleered" - }, - { - "infinitive": "consociate", - "present": "consociates", - "gerund": "consociating", - "past": "consociated", - "past_participle": "consociated" - }, - { - "infinitive": "sluice", - "present": "sluices", - "gerund": "sluicing", - "past": "sluiced", - "past_participle": "sluiced" - }, - { - "infinitive": "ready", - "present": "readies", - "gerund": "readying", - "past": "readied", - "past_participle": "readied" - }, - { - "infinitive": "sharecrop", - "present": "sharecrops", - "gerund": "sharecropping", - "past": "sharecropped", - "past_participle": "sharecropped" - }, - { - "infinitive": "etherize", - "present": "etherizes", - "gerund": "etherizing", - "past": "etherized", - "past_participle": "etherized" - }, - { - "infinitive": "grant", - "present": "grants", - "gerund": "granting", - "past": "granted", - "past_participle": "granted" - }, - { - "infinitive": "fluorinate", - "present": "fluorinates", - "gerund": "fluorinating", - "past": "fluorinated", - "past_participle": "fluorinated" - }, - { - "infinitive": "refocuse", - "present": "refocuses", - "gerund": "refocusing", - "past": "refocused", - "past_participle": "refocused" - }, - { - "infinitive": "belong", - "present": "belongs", - "gerund": "belonging", - "past": "belonged", - "past_participle": "belonged" - }, - { - "infinitive": "discredit", - "present": "discredits", - "gerund": "discrediting", - "past": "discredited", - "past_participle": "discredited" - }, - { - "infinitive": "shag", - "present": "shags", - "gerund": "shagging", - "past": "shagged", - "past_participle": "shagged" - }, - { - "infinitive": "vermiculate", - "present": "vermiculates", - "gerund": "vermiculating", - "past": "vermiculated", - "past_participle": "vermiculated" - }, - { - "infinitive": "conflict", - "present": "conflicts", - "gerund": "conflicting", - "past": "conflicted", - "past_participle": "conflicted" - }, - { - "infinitive": "sham", - "present": "shams", - "gerund": "shamming", - "past": "shammed", - "past_participle": "shammed" - }, - { - "infinitive": "banter", - "present": "banters", - "gerund": "bantering", - "past": "bantered", - "past_participle": "bantered" - }, - { - "infinitive": "overweight", - "present": "overweights", - "gerund": "overweighting", - "past": "overweighted", - "past_participle": "overweighted" - }, - { - "infinitive": "censure", - "present": "censures", - "gerund": "censuring", - "past": "censured", - "past_participle": "censured" - }, - { - "infinitive": "spiritualize", - "present": "spiritualizes", - "gerund": "spiritualizing", - "past": "spiritualized", - "past_participle": "spiritualized" - }, - { - "infinitive": "bellyland", - "present": "bellylands", - "gerund": "bellylanding", - "past": "bellylanded", - "past_participle": "bellylanded" - }, - { - "infinitive": "racemize", - "present": "racemizes", - "gerund": "racemizing", - "past": "racemized", - "past_participle": "racemized" - }, - { - "infinitive": "infibulate", - "present": "infibulates", - "gerund": "infibulating", - "past": "infibulated", - "past_participle": "infibulated" - }, - { - "infinitive": "vitriol", - "present": "vitriols", - "gerund": "vitrioling", - "past": "vitrioled", - "past_participle": "vitrioled" - }, - { - "infinitive": "unbalance", - "present": "unbalances", - "gerund": "unbalancing", - "past": "unbalanced", - "past_participle": "unbalanced" - }, - { - "infinitive": "grind", - "present": "grinds", - "gerund": "grinding", - "past": "ground", - "past_participle": "grinded" - }, - { - "infinitive": "reclaim", - "present": "reclaims", - "gerund": "reclaiming", - "past": "reclaimed", - "past_participle": "reclaimed" - }, - { - "infinitive": "savvy", - "present": "savvies", - "gerund": "savvying", - "past": "savvied", - "past_participle": "savvied" - }, - { - "infinitive": "docket", - "present": "dockets", - "gerund": "docketing", - "past": "docketed", - "past_participle": "docketed" - }, - { - "infinitive": "romanticize", - "present": "romanticizes", - "gerund": "romanticizing", - "past": "romanticized", - "past_participle": "romanticized" - }, - { - "infinitive": "cowp", - "present": "cowps", - "gerund": "cowping", - "past": "cowped", - "past_participle": "cowped" - }, - { - "infinitive": "abstain", - "present": "abstains", - "gerund": "abstaining", - "past": "abstained", - "past_participle": "abstained" - }, - { - "infinitive": "pillory", - "present": "pillories", - "gerund": "pillorying", - "past": "pilloried", - "past_participle": "pilloried" - }, - { - "infinitive": "rebellow", - "present": "rebellows", - "gerund": "rebellowing", - "past": "rebellowed", - "past_participle": "rebellowed" - }, - { - "infinitive": "behove", - "present": "behoves", - "gerund": "behoving", - "past": "behoved", - "past_participle": "behoved" - }, - { - "infinitive": "kedge", - "present": "kedges", - "gerund": "kedging", - "past": "kedged", - "past_participle": "kedged" - }, - { - "infinitive": "re-fund", - "present": "re-funds", - "gerund": "re-funding", - "past": "refunded", - "past_participle": "re-funded" - }, - { - "infinitive": "gormandize", - "present": "gormandizes", - "gerund": "gormandizing", - "past": "gormandized", - "past_participle": "gormandized" - }, - { - "infinitive": "disseminate", - "present": "disseminates", - "gerund": "disseminating", - "past": "disseminated", - "past_participle": "disseminated" - }, - { - "infinitive": "superheat", - "present": "superheats", - "gerund": "superheating", - "past": "superheated", - "past_participle": "superheated" - }, - { - "infinitive": "exhilarate", - "present": "exhilarates", - "gerund": "exhilarating", - "past": "exhilarated", - "past_participle": "exhilarated" - }, - { - "infinitive": "harmonize", - "present": "harmonizes", - "gerund": "harmonizing", - "past": "harmonized", - "past_participle": "harmonized" - }, - { - "infinitive": "oversteer", - "present": "oversteers", - "gerund": "oversteering", - "past": "oversteered", - "past_participle": "oversteered" - }, - { - "infinitive": "march", - "present": "marches", - "gerund": "marching", - "past": "marched", - "past_participle": "marched" - }, - { - "infinitive": "filmset", - "present": "filmsets", - "gerund": "filmseting", - "past": "filmseted", - "past_participle": "filmseted" - }, - { - "infinitive": "finalize", - "present": "finalizes", - "gerund": "finalizing", - "past": "finalized", - "past_participle": "finalized" - }, - { - "infinitive": "sneck", - "present": "snecks", - "gerund": "snecking", - "past": "snecked", - "past_participle": "snecked" - }, - { - "infinitive": "evaluate", - "present": "evaluates", - "gerund": "evaluating", - "past": "evaluated", - "past_participle": "evaluated" - }, - { - "infinitive": "pullulate", - "present": "pullulates", - "gerund": "pullulating", - "past": "pullulated", - "past_participle": "pullulated" - }, - { - "infinitive": "game", - "present": "games", - "gerund": "gaming", - "past": "gamed", - "past_participle": "gamed" - }, - { - "infinitive": "jibe", - "present": "jibes", - "gerund": "jibing", - "past": "jibed", - "past_participle": "jibed" - }, - { - "infinitive": "rusticate", - "present": "rusticates", - "gerund": "rusticating", - "past": "rusticated", - "past_participle": "rusticated" - }, - { - "infinitive": "pillar", - "present": "pillars", - "gerund": "pillaring", - "past": "pillared", - "past_participle": "pillared" - }, - { - "infinitive": "stagnate", - "present": "stagnates", - "gerund": "stagnating", - "past": "stagnated", - "past_participle": "stagnated" - }, - { - "infinitive": "manifest", - "present": "manifests", - "gerund": "manifesting", - "past": "manifested", - "past_participle": "manifested" - }, - { - "infinitive": "redound", - "present": "redounds", - "gerund": "redounding", - "past": "redounded", - "past_participle": "redounded" - }, - { - "infinitive": "pre-digest", - "present": "pre-digests", - "gerund": "pre-digesting", - "past": "predigested", - "past_participle": "pre-digested" - }, - { - "infinitive": "sleigh", - "present": "sleighs", - "gerund": "sleighing", - "past": "sleighed", - "past_participle": "sleighed" - }, - { - "infinitive": "resole", - "present": "resoles", - "gerund": "resoling", - "past": "resoled", - "past_participle": "resoled" - }, - { - "infinitive": "centralize", - "present": "centralizes", - "gerund": "centralizing", - "past": "centralized", - "past_participle": "centralized" - }, - { - "infinitive": "sketch", - "present": "sketches", - "gerund": "sketching", - "past": "sketched", - "past_participle": "sketched" - }, - { - "infinitive": "parade", - "present": "parades", - "gerund": "parading", - "past": "paraded", - "past_participle": "paraded" - }, - { - "infinitive": "aliment", - "present": "aliments", - "gerund": "alimenting", - "past": "alimented", - "past_participle": "alimented" - }, - { - "infinitive": "furbish", - "present": "furbishes", - "gerund": "furbishing", - "past": "furbished", - "past_participle": "furbished" - }, - { - "infinitive": "lathe", - "present": "lathes", - "gerund": "lathing", - "past": "lathed", - "past_participle": "lathed" - }, - { - "infinitive": "undress", - "present": "undresses", - "gerund": "undressing", - "past": "undressed", - "past_participle": "undressed" - }, - { - "infinitive": "outnumber", - "present": "outnumbers", - "gerund": "outnumbering", - "past": "outnumbered", - "past_participle": "outnumbered" - }, - { - "infinitive": "collocate", - "present": "collocates", - "gerund": "collocating", - "past": "collocated", - "past_participle": "collocated" - }, - { - "infinitive": "impoverish", - "present": "impoverishes", - "gerund": "impoverishing", - "past": "impoverished", - "past_participle": "impoverished" - }, - { - "infinitive": "stir", - "present": "stirs", - "gerund": "stirring", - "past": "stirred", - "past_participle": "stirred" - }, - { - "infinitive": "interlaminate", - "present": "interlaminates", - "gerund": "interlaminating", - "past": "interlaminated", - "past_participle": "interlaminated" - }, - { - "infinitive": "savage", - "present": "savages", - "gerund": "savaging", - "past": "savaged", - "past_participle": "savaged" - }, - { - "infinitive": "sheen", - "present": "sheens", - "gerund": "sheening", - "past": "sheened", - "past_participle": "sheened" - }, - { - "infinitive": "fettle", - "present": "fettles", - "gerund": "fettling", - "past": "fettled", - "past_participle": "fettled" - }, - { - "infinitive": "gild", - "present": "gilds", - "gerund": "gilding", - "past": "gilt", - "past_participle": "gilt" - }, - { - "infinitive": "unbonnet", - "present": "unbonnets", - "gerund": "unbonneting", - "past": "unbonneted", - "past_participle": "unbonneted" - }, - { - "infinitive": "simmer", - "present": "simmers", - "gerund": "simmering", - "past": "simmered", - "past_participle": "simmered" - }, - { - "infinitive": "slash", - "present": "slashes", - "gerund": "slashing", - "past": "slashed", - "past_participle": "slashed" - }, - { - "infinitive": "overcook", - "present": "overcooks", - "gerund": "overcooking", - "past": "overcooked", - "past_participle": "overcooked" - }, - { - "infinitive": "flameout", - "present": "flameouts", - "gerund": "flameouting", - "past": "flameouted", - "past_participle": "flameouted" - }, - { - "infinitive": "dehydrate", - "present": "dehydrates", - "gerund": "dehydrating", - "past": "dehydrated", - "past_participle": "dehydrated" - }, - { - "infinitive": "run", - "present": "runs", - "gerund": "running", - "past": "ran", - "past_participle": "run" - }, - { - "infinitive": "rub", - "present": "rubs", - "gerund": "rubbing", - "past": "rubbed", - "past_participle": "rubbed" - }, - { - "infinitive": "triple-tongue", - "present": "triple-tongues", - "gerund": "triple-tonguing", - "past": "triple-tongued", - "past_participle": "triple-tongued" - }, - { - "infinitive": "rue", - "present": "rues", - "gerund": "ruing", - "past": "rued", - "past_participle": "rued" - }, - { - "infinitive": "step", - "present": "steps", - "gerund": "stepping", - "past": "stepped", - "past_participle": "stepped" - }, - { - "infinitive": "stew", - "present": "stews", - "gerund": "stewing", - "past": "stewed", - "past_participle": "stewed" - }, - { - "infinitive": "bastinado", - "present": "bastinadoes", - "gerund": "bastinadoing", - "past": "bastinadoed", - "past_participle": "bastinadoed" - }, - { - "infinitive": "ache", - "present": "aches", - "gerund": "aching", - "past": "ached", - "past_participle": "ached" - }, - { - "infinitive": "panhandle", - "present": "panhandles", - "gerund": "panhandling", - "past": "panhandled", - "past_participle": "panhandled" - }, - { - "infinitive": "ochre", - "present": "ochres", - "gerund": "ochring", - "past": "ochred", - "past_participle": "ochred" - }, - { - "infinitive": "rut", - "present": "ruts", - "gerund": "rutting", - "past": "rutted", - "past_participle": "rutted" - }, - { - "infinitive": "shine", - "present": "shines", - "gerund": "shining", - "past": "shone", - "past_participle": "shone" - }, - { - "infinitive": "react", - "present": "reacts", - "gerund": "reacting", - "past": "reacted", - "past_participle": "reacted" - }, - { - "infinitive": "reappear", - "present": "reappears", - "gerund": "reappearing", - "past": "reappeared", - "past_participle": "reappeared" - }, - { - "infinitive": "yirr", - "present": "yirrs", - "gerund": "yirring", - "past": "yirred", - "past_participle": "yirred" - }, - { - "infinitive": "stonewall", - "present": "stonewalls", - "gerund": "stonewalling", - "past": "stonewalled", - "past_participle": "stonewalled" - }, - { - "infinitive": "hinge", - "present": "hinges", - "gerund": "hinging", - "past": "hinged", - "past_participle": "hinged" - }, - { - "infinitive": "perk", - "present": "perks", - "gerund": "perking", - "past": "perked", - "past_participle": "perked" - }, - { - "infinitive": "ullage", - "present": "ullages", - "gerund": "ullaging", - "past": "ullaged", - "past_participle": "ullaged" - }, - { - "infinitive": "posturize", - "present": "posturizes", - "gerund": "posturizing", - "past": "posturized", - "past_participle": "posturized" - }, - { - "infinitive": "misspend", - "present": "misspends", - "gerund": "misspending", - "past": "misspent", - "past_participle": "misspent" - }, - { - "infinitive": "block", - "present": "blocks", - "gerund": "blocking", - "past": "blocked", - "past_participle": "blocked" - }, - { - "infinitive": "foreswear", - "present": "foreswears", - "gerund": "foreswearing", - "past": "foreswore", - "past_participle": "foresworn" - }, - { - "infinitive": "decertify", - "present": "decertifies", - "gerund": "decertifying", - "past": "decertified", - "past_participle": "decertified" - }, - { - "infinitive": "ensue", - "present": "ensues", - "gerund": "ensuing", - "past": "ensued", - "past_participle": "ensued" - }, - { - "infinitive": "calcine", - "present": "calcines", - "gerund": "calcining", - "past": "calcined", - "past_participle": "calcined" - }, - { - "infinitive": "douse", - "present": "douses", - "gerund": "dousing", - "past": "doused", - "past_participle": "doused" - }, - { - "infinitive": "manufacture", - "present": "manufactures", - "gerund": "manufacturing", - "past": "manufactured", - "past_participle": "manufactured" - }, - { - "infinitive": "rummage", - "present": "rummages", - "gerund": "rummaging", - "past": "rummaged", - "past_participle": "rummaged" - }, - { - "infinitive": "sizzle", - "present": "sizzles", - "gerund": "sizzling", - "past": "sizzled", - "past_participle": "sizzled" - }, - { - "infinitive": "refrigerate", - "present": "refrigerates", - "gerund": "refrigerating", - "past": "refrigerated", - "past_participle": "refrigerated" - }, - { - "infinitive": "sideswipe", - "present": "sideswipes", - "gerund": "sideswiping", - "past": "sideswiped", - "past_participle": "sideswiped" - }, - { - "infinitive": "frost", - "present": "frosts", - "gerund": "frosting", - "past": "frosted", - "past_participle": "frosted" - }, - { - "infinitive": "disaffirm", - "present": "disaffirms", - "gerund": "disaffirming", - "past": "disaffirmed", - "past_participle": "disaffirmed" - }, - { - "infinitive": "higgle", - "present": "higgles", - "gerund": "higgling", - "past": "higgled", - "past_participle": "higgled" - }, - { - "infinitive": "reef", - "present": "reefs", - "gerund": "reefing", - "past": "reefed", - "past_participle": "reefed" - }, - { - "infinitive": "reek", - "present": "reeks", - "gerund": "reeking", - "past": "reeked", - "past_participle": "reeked" - }, - { - "infinitive": "reel", - "present": "reels", - "gerund": "reeling", - "past": "reeled", - "past_participle": "reeled" - }, - { - "infinitive": "dull", - "present": "dulls", - "gerund": "dulling", - "past": "dulled", - "past_participle": "dulled" - }, - { - "infinitive": "maraud", - "present": "marauds", - "gerund": "marauding", - "past": "marauded", - "past_participle": "marauded" - }, - { - "infinitive": "skulk", - "present": "skulks", - "gerund": "skulking", - "past": "skulked", - "past_participle": "skulked" - }, - { - "infinitive": "ballyhoo", - "present": "ballyhoos", - "gerund": "ballyhooing", - "past": "ballyhooed", - "past_participle": "ballyhooed" - }, - { - "infinitive": "immure", - "present": "immures", - "gerund": "immuring", - "past": "immured", - "past_participle": "immured" - }, - { - "infinitive": "maffick", - "present": "mafficks", - "gerund": "mafficking", - "past": "mafficked", - "past_participle": "mafficked" - }, - { - "infinitive": "nestle", - "present": "nestles", - "gerund": "nestling", - "past": "nestled", - "past_participle": "nestled" - }, - { - "infinitive": "blent", - "present": "blents", - "gerund": "blenting", - "past": "blented", - "past_participle": "blented" - }, - { - "infinitive": "seethe", - "present": "seethes", - "gerund": "seething", - "past": "seethed", - "past_participle": "seethed" - }, - { - "infinitive": "underquote", - "present": "underquotes", - "gerund": "underquoting", - "past": "underquoted", - "past_participle": "underquoted" - }, - { - "infinitive": "unwish", - "present": "unwishes", - "gerund": "unwishing", - "past": "unwished", - "past_participle": "unwished" - }, - { - "infinitive": "surmise", - "present": "surmises", - "gerund": "surmising", - "past": "surmised", - "past_participle": "surmised" - }, - { - "infinitive": "nab", - "present": "nabs", - "gerund": "nabbing", - "past": "nabbed", - "past_participle": "nabbed" - }, - { - "infinitive": "liberalize", - "present": "liberalizes", - "gerund": "liberalizing", - "past": "liberalized", - "past_participle": "liberalized" - }, - { - "infinitive": "nag", - "present": "nags", - "gerund": "nagging", - "past": "nagged", - "past_participle": "nagged" - }, - { - "infinitive": "upstage", - "present": "upstages", - "gerund": "upstaging", - "past": "upstaged", - "past_participle": "upstaged" - }, - { - "infinitive": "nap", - "present": "naps", - "gerund": "napping", - "past": "napped", - "past_participle": "napped" - }, - { - "infinitive": "haft", - "present": "hafts", - "gerund": "hafting", - "past": "hafted", - "past_participle": "hafted" - }, - { - "infinitive": "forge", - "present": "forges", - "gerund": "forging", - "past": "forged", - "past_participle": "forged" - }, - { - "infinitive": "deuterate", - "present": "deuterates", - "gerund": "deuterating", - "past": "deuterated", - "past_participle": "deuterated" - }, - { - "infinitive": "disfavour", - "present": "disfavours", - "gerund": "disfavouring", - "past": "disfavoured", - "past_participle": "disfavoured" - }, - { - "infinitive": "kibitz", - "present": "kibitzes", - "gerund": "kibitzing", - "past": "kibitzed", - "past_participle": "kibitzed" - }, - { - "infinitive": "drat", - "present": "drats", - "gerund": "dratting", - "past": "dratted", - "past_participle": "dratted" - }, - { - "infinitive": "draw", - "present": "draws", - "gerund": "drawing", - "past": "drew", - "past_participle": "drawn" - }, - { - "infinitive": "depolarize", - "present": "depolarizes", - "gerund": "depolarizing", - "past": "depolarized", - "past_participle": "depolarized" - }, - { - "infinitive": "recalesce", - "present": "recalesces", - "gerund": "recalescing", - "past": "recalesced", - "past_participle": "recalesced" - }, - { - "infinitive": "resign", - "present": "resigns", - "gerund": "resigning", - "past": "resigned", - "past_participle": "resigned" - }, - { - "infinitive": "tepefy", - "present": "tepefies", - "gerund": "tepefying", - "past": "tepefied", - "past_participle": "tepefied" - }, - { - "infinitive": "draghunt", - "present": "drags", - "gerund": "draghunting", - "past": "draghunted", - "past_participle": "draghunted" - }, - { - "infinitive": "diphthongize", - "present": "diphthongizes", - "gerund": "diphthongizing", - "past": "diphthongized", - "past_participle": "diphthongized" - }, - { - "infinitive": "drab", - "present": "drabs", - "gerund": "drabbing", - "past": "drabbed", - "past_participle": "drabbed" - }, - { - "infinitive": "structure", - "present": "structures", - "gerund": "structuring", - "past": "structured", - "past_participle": "structured" - }, - { - "infinitive": "miscue", - "present": "miscues", - "gerund": "miscuing", - "past": "miscued", - "past_participle": "miscued" - }, - { - "infinitive": "windlass", - "present": "windlasses", - "gerund": "windlassing", - "past": "windlassed", - "past_participle": "windlassed" - }, - { - "infinitive": "demagogue", - "present": "demagogues", - "gerund": "demagoguing", - "past": "demagogued", - "past_participle": "demagogued" - }, - { - "infinitive": "orbit", - "present": "orbits", - "gerund": "orbiting", - "past": "orbited", - "past_participle": "orbited" - }, - { - "infinitive": "bribe", - "present": "bribes", - "gerund": "bribing", - "past": "bribed", - "past_participle": "bribed" - }, - { - "infinitive": "rencounter", - "present": "rencounters", - "gerund": "rencountering", - "past": "rencountered", - "past_participle": "rencountered" - }, - { - "infinitive": "pinion", - "present": "pinions", - "gerund": "pinioning", - "past": "pinioned", - "past_participle": "pinioned" - }, - { - "infinitive": "proposition", - "present": "propositions", - "gerund": "propositioning", - "past": "propositioned", - "past_participle": "propositioned" - }, - { - "infinitive": "ionize", - "present": "ionizes", - "gerund": "ionizing", - "past": "ionized", - "past_participle": "ionized" - }, - { - "infinitive": "go", - "present": "goes", - "gerund": "going", - "past": "went", - "past_participle": "gone" - }, - { - "infinitive": "emboss", - "present": "embosses", - "gerund": "embossing", - "past": "embossed", - "past_participle": "embossed" - }, - { - "infinitive": "compact", - "present": "compacts", - "gerund": "compacting", - "past": "compacted", - "past_participle": "compacted" - }, - { - "infinitive": "asphalt", - "present": "asphalts", - "gerund": "asphalting", - "past": "asphalted", - "past_participle": "asphalted" - }, - { - "infinitive": "analogize", - "present": "analogizes", - "gerund": "analogizing", - "past": "analogized", - "past_participle": "analogized" - }, - { - "infinitive": "stave", - "present": "staves", - "gerund": "staving", - "past": "staved", - "past_participle": "staved" - }, - { - "infinitive": "teethe", - "present": "teethes", - "gerund": "teething", - "past": "teethed", - "past_participle": "teethed" - }, - { - "infinitive": "incrassate", - "present": "incrassates", - "gerund": "incrassating", - "past": "incrassated", - "past_participle": "incrassated" - }, - { - "infinitive": "adsorb", - "present": "adsorbs", - "gerund": "adsorbing", - "past": "adsorbed", - "past_participle": "adsorbed" - }, - { - "infinitive": "concertize", - "present": "concertizes", - "gerund": "concertizing", - "past": "concertized", - "past_participle": "concertized" - }, - { - "infinitive": "simulcast", - "present": "simulcasts", - "gerund": "simulcasting", - "past": "simulcasted", - "past_participle": "simulcasted" - }, - { - "infinitive": "wave", - "present": "waves", - "gerund": "waving", - "past": "waved", - "past_participle": "waved" - }, - { - "infinitive": "disinter", - "present": "disinters", - "gerund": "disinterring", - "past": "disinterred", - "past_participle": "disinterred" - }, - { - "infinitive": "Germanize", - "present": "Germanizes", - "gerund": "Germanizing", - "past": "Germanized", - "past_participle": "Germanized" - }, - { - "infinitive": "underscore", - "present": "underscores", - "gerund": "underscoring", - "past": "underscored", - "past_participle": "underscored" - }, - { - "infinitive": "skewer", - "present": "skews", - "gerund": "skewing", - "past": "skewed", - "past_participle": "skewed" - }, - { - "infinitive": "button", - "present": "buttons", - "gerund": "buttoning", - "past": "buttoned", - "past_participle": "buttoned" - }, - { - "infinitive": "hive", - "present": "hives", - "gerund": "hiving", - "past": "hived", - "past_participle": "hived" - }, - { - "infinitive": "mewl", - "present": "mewls", - "gerund": "mewling", - "past": "mewled", - "past_participle": "mewled" - }, - { - "infinitive": "evangelize", - "present": "evangelizes", - "gerund": "evangelizing", - "past": "evangelized", - "past_participle": "evangelized" - }, - { - "infinitive": "cloister", - "present": "cloisters", - "gerund": "cloistering", - "past": "cloistered", - "past_participle": "cloistered" - }, - { - "infinitive": "castrate", - "present": "castrates", - "gerund": "castrating", - "past": "castrated", - "past_participle": "castrated" - }, - { - "infinitive": "enforce", - "present": "enforces", - "gerund": "enforcing", - "past": "enforced", - "past_participle": "enforced" - }, - { - "infinitive": "slow", - "present": "slows", - "gerund": "slowing", - "past": "slowed", - "past_participle": "slowed" - }, - { - "infinitive": "dilute", - "present": "dilutes", - "gerund": "diluting", - "past": "diluted", - "past_participle": "diluted" - }, - { - "infinitive": "renegotiate", - "present": "renegotiates", - "gerund": "renegotiating", - "past": "renegotiated", - "past_participle": "renegotiated" - }, - { - "infinitive": "picket", - "present": "pickets", - "gerund": "picketing", - "past": "picketed", - "past_participle": "picketed" - }, - { - "infinitive": "reline", - "present": "relines", - "gerund": "relining", - "past": "relined", - "past_participle": "relined" - }, - { - "infinitive": "blitz", - "present": "blitzes", - "gerund": "blitzing", - "past": "blitzed", - "past_participle": "blitzed" - }, - { - "infinitive": "jump", - "present": "jumps", - "gerund": "jumping", - "past": "jumped", - "past_participle": "jumped" - }, - { - "infinitive": "hose", - "present": "hoses", - "gerund": "hosing", - "past": "hosed", - "past_participle": "hosed" - }, - { - "infinitive": "click", - "present": "clicks", - "gerund": "clicking", - "past": "clicked", - "past_participle": "clicked" - }, - { - "infinitive": "clangour", - "present": "clangours", - "gerund": "clangouring", - "past": "clangoured", - "past_participle": "clangoured" - }, - { - "infinitive": "poke", - "present": "pokes", - "gerund": "poking", - "past": "poked", - "past_participle": "poked" - }, - { - "infinitive": "impearl", - "present": "impearls", - "gerund": "impearling", - "past": "impearled", - "past_participle": "impearled" - }, - { - "infinitive": "opaque", - "present": "opaques", - "gerund": "opaquing", - "past": "opaqued", - "past_participle": "opaqued" - }, - { - "infinitive": "sepulchre", - "present": "sepulchres", - "gerund": "sepulchring", - "past": "sepulchred", - "past_participle": "sepulchred" - }, - { - "infinitive": "schedule", - "present": "schedules", - "gerund": "scheduling", - "past": "scheduled", - "past_participle": "scheduled" - }, - { - "infinitive": "exacerbate", - "present": "exacerbates", - "gerund": "exacerbating", - "past": "exacerbated", - "past_participle": "exacerbated" - }, - { - "infinitive": "valet", - "present": "valets", - "gerund": "valeting", - "past": "valeted", - "past_participle": "valeted" - }, - { - "infinitive": "experiment", - "present": "experiments", - "gerund": "experimenting", - "past": "experimented", - "past_participle": "experimented" - }, - { - "infinitive": "unspeak", - "present": "unspeaks", - "gerund": "unspeaking", - "past": "unspoke", - "past_participle": "unspoken" - }, - { - "infinitive": "infuse", - "present": "infuses", - "gerund": "infusing", - "past": "infused", - "past_participle": "infused" - }, - { - "infinitive": "old-talk", - "present": "old-talks", - "gerund": "old-talking", - "past": "old-talked", - "past_participle": "old-talked" - }, - { - "infinitive": "hysterectomize", - "present": "hysterectomizes", - "gerund": "hysterectomizing", - "past": "hysterectomized", - "past_participle": "hysterectomized" - }, - { - "infinitive": "Teutonize", - "present": "Teutonizes", - "gerund": "Teutonizing", - "past": "Teutonized", - "past_participle": "Teutonized" - }, - { - "infinitive": "embowel", - "present": "embowels", - "gerund": "emboweling", - "past": "emboweled", - "past_participle": "emboweled" - }, - { - "infinitive": "goosestep", - "present": "goosesteps", - "gerund": "goosesteping", - "past": "goosesteped", - "past_participle": "goosesteped" - }, - { - "infinitive": "staunch", - "present": "staunches", - "gerund": "staunching", - "past": "staunched", - "past_participle": "staunched" - }, - { - "infinitive": "prescribe", - "present": "prescribes", - "gerund": "prescribing", - "past": "prescribed", - "past_participle": "prescribed" - }, - { - "infinitive": "mothproof", - "present": "mothproofs", - "gerund": "mothproofing", - "past": "mothproofed", - "past_participle": "mothproofed" - }, - { - "infinitive": "quell", - "present": "quells", - "gerund": "quelling", - "past": "quelled", - "past_participle": "quelled" - }, - { - "infinitive": "bowdlerize", - "present": "bowdlerizes", - "gerund": "bowdlerizing", - "past": "bowdlerized", - "past_participle": "bowdlerized" - }, - { - "infinitive": "cumber", - "present": "cumbers", - "gerund": "cumbering", - "past": "cumbered", - "past_participle": "cumbered" - }, - { - "infinitive": "adulterate", - "present": "adulterates", - "gerund": "adulterating", - "past": "adulterated", - "past_participle": "adulterated" - }, - { - "infinitive": "traject", - "present": "trajects", - "gerund": "trajecting", - "past": "trajected", - "past_participle": "trajected" - }, - { - "infinitive": "convert", - "present": "converts", - "gerund": "converting", - "past": "converted", - "past_participle": "converted" - }, - { - "infinitive": "copper-bottom", - "present": "copper-bottoms", - "gerund": "copper-bottoming", - "past": "copper-bottomed", - "past_participle": "copper-bottomed" - }, - { - "infinitive": "chant", - "present": "chants", - "gerund": "chanting", - "past": "chanted", - "past_participle": "chanted" - }, - { - "infinitive": "perfuse", - "present": "perfuses", - "gerund": "perfusing", - "past": "perfused", - "past_participle": "perfused" - }, - { - "infinitive": "repel", - "present": "repels", - "gerund": "repelling", - "past": "repelled", - "past_participle": "repelled" - }, - { - "infinitive": "wolfwhistle", - "present": "wolfwhistles", - "gerund": "wolfwhistling", - "past": "wolfwhistled", - "past_participle": "wolfwhistled" - }, - { - "infinitive": "strongarm", - "present": "strongarms", - "gerund": "strongarming", - "past": "strongarmed", - "past_participle": "strongarmed" - }, - { - "infinitive": "behead", - "present": "beheads", - "gerund": "beheading", - "past": "beheaded", - "past_participle": "beheaded" - }, - { - "infinitive": "wig", - "present": "wigs", - "gerund": "wigging", - "past": "wigged", - "past_participle": "wigged" - }, - { - "infinitive": "foresee", - "present": "foresees", - "gerund": "foreseeing", - "past": "foresaw", - "past_participle": "foreseen" - }, - { - "infinitive": "shake", - "present": "shakes", - "gerund": "shaking", - "past": "shook", - "past_participle": "shaken" - }, - { - "infinitive": "win", - "present": "wins", - "gerund": "winning", - "past": "won", - "past_participle": "won" - }, - { - "infinitive": "manage", - "present": "manages", - "gerund": "managing", - "past": "managed", - "past_participle": "managed" - }, - { - "infinitive": "clout", - "present": "clouts", - "gerund": "clouting", - "past": "clouted", - "past_participle": "clouted" - }, - { - "infinitive": "subserve", - "present": "subserves", - "gerund": "subserving", - "past": "subserved", - "past_participle": "subserved" - }, - { - "infinitive": "overvalue", - "present": "overvalues", - "gerund": "overvaluing", - "past": "overvalued", - "past_participle": "overvalued" - }, - { - "infinitive": "infest", - "present": "infests", - "gerund": "infesting", - "past": "infested", - "past_participle": "infested" - }, - { - "infinitive": "cybernate", - "present": "cybernates", - "gerund": "cybernating", - "past": "cybernated", - "past_participle": "cybernated" - }, - { - "infinitive": "manipulate", - "present": "manipulates", - "gerund": "manipulating", - "past": "manipulated", - "past_participle": "manipulated" - }, - { - "infinitive": "imbue", - "present": "imbues", - "gerund": "imbuing", - "past": "imbued", - "past_participle": "imbued" - }, - { - "infinitive": "crap", - "present": "craps", - "gerund": "crapping", - "past": "crapped", - "past_participle": "crapped" - }, - { - "infinitive": "opalesce", - "present": "opalesces", - "gerund": "opalescing", - "past": "opalesced", - "past_participle": "opalesced" - }, - { - "infinitive": "softsoap", - "present": "softsoaps", - "gerund": "softsoaping", - "past": "softsoaped", - "past_participle": "softsoaped" - }, - { - "infinitive": "snood", - "present": "snoods", - "gerund": "snooding", - "past": "snooded", - "past_participle": "snooded" - }, - { - "infinitive": "plasticize", - "present": "plasticizes", - "gerund": "plasticizing", - "past": "plasticized", - "past_participle": "plasticized" - }, - { - "infinitive": "platitudinize", - "present": "platitudinizes", - "gerund": "platitudinizing", - "past": "platitudinized", - "past_participle": "platitudinized" - }, - { - "infinitive": "crab", - "present": "crabs", - "gerund": "crabbing", - "past": "crabbed", - "past_participle": "crabs" - }, - { - "infinitive": "mercurate", - "present": "mercurates", - "gerund": "mercurating", - "past": "mercurated", - "past_participle": "mercurated" - }, - { - "infinitive": "cram", - "present": "crams", - "gerund": "cramming", - "past": "crammed", - "past_participle": "crammed" - }, - { - "infinitive": "recompose", - "present": "recomposes", - "gerund": "recomposing", - "past": "recomposed", - "past_participle": "recomposed" - }, - { - "infinitive": "depreciate", - "present": "depreciates", - "gerund": "depreciating", - "past": "depreciated", - "past_participle": "depreciated" - }, - { - "infinitive": "sand-blast", - "present": "sand-blasts", - "gerund": "sandblasting", - "past": "sandblasted", - "past_participle": "sandblasted" - }, - { - "infinitive": "stem", - "present": "stems", - "gerund": "stemming", - "past": "stemmed", - "past_participle": "stemmed" - }, - { - "infinitive": "cackle", - "present": "cackles", - "gerund": "cackling", - "past": "cackled", - "past_participle": "cackled" - }, - { - "infinitive": "lacerate", - "present": "lacerates", - "gerund": "lacerating", - "past": "lacerated", - "past_participle": "lacerated" - }, - { - "infinitive": "mismatch", - "present": "mismatches", - "gerund": "mismatching", - "past": "mismatched", - "past_participle": "mismatched" - }, - { - "infinitive": "hotfoot", - "present": "hotfoots", - "gerund": "hotfooting", - "past": "hotfooted", - "past_participle": "hotfooted" - }, - { - "infinitive": "embrocate", - "present": "embrocates", - "gerund": "embrocating", - "past": "embrocated", - "past_participle": "embrocated" - }, - { - "infinitive": "reindict", - "present": "reindicts", - "gerund": "reindicting", - "past": "reindicted", - "past_participle": "reindicted" - }, - { - "infinitive": "re-cover", - "present": "re-covers", - "gerund": "re-covering", - "past": "recovered", - "past_participle": "re-covered" - }, - { - "infinitive": "felicitate", - "present": "felicitates", - "gerund": "felicitating", - "past": "felicitated", - "past_participle": "felicitated" - }, - { - "infinitive": "disrobe", - "present": "disrobes", - "gerund": "disrobing", - "past": "disrobed", - "past_participle": "disrobed" - }, - { - "infinitive": "consort", - "present": "consorts", - "gerund": "consorting", - "past": "consorted", - "past_participle": "consorted" - }, - { - "infinitive": "lapse", - "present": "lapses", - "gerund": "lapsing", - "past": "lapsed", - "past_participle": "lapsed" - }, - { - "infinitive": "meet", - "present": "meets", - "gerund": "meeting", - "past": "met", - "past_participle": "met" - }, - { - "infinitive": "nurture", - "present": "nurtures", - "gerund": "nurturing", - "past": "nurtured", - "past_participle": "nurtured" - }, - { - "infinitive": "vaunt", - "present": "vaunts", - "gerund": "vaunting", - "past": "vaunted", - "past_participle": "vaunted" - }, - { - "infinitive": "control", - "present": "controls", - "gerund": "controlling", - "past": "controlled", - "past_participle": "controlled" - }, - { - "infinitive": "wharf", - "present": "wharfs", - "gerund": "wharfing", - "past": "wharfed", - "past_participle": "wharfed" - }, - { - "infinitive": "skirl", - "present": "skirls", - "gerund": "skirling", - "past": "skirled", - "past_participle": "skirled" - }, - { - "infinitive": "crevasse", - "present": "crevasses", - "gerund": "crevassing", - "past": "crevassed", - "past_participle": "crevassed" - }, - { - "infinitive": "beleaguer", - "present": "beleaguers", - "gerund": "beleaguering", - "past": "beleaguered", - "past_participle": "beleaguered" - }, - { - "infinitive": "atone", - "present": "atones", - "gerund": "atoning", - "past": "atoned", - "past_participle": "atoned" - }, - { - "infinitive": "skirr", - "present": "skirrs", - "gerund": "skirring", - "past": "skirred", - "past_participle": "skirred" - }, - { - "infinitive": "skirt", - "present": "skirts", - "gerund": "skirting", - "past": "skirted", - "past_participle": "skirted" - }, - { - "infinitive": "undeceive", - "present": "undeceives", - "gerund": "undeceiving", - "past": "undeceived", - "past_participle": "undeceived" - }, - { - "infinitive": "hesitate", - "present": "hesitates", - "gerund": "hesitating", - "past": "hesitated", - "past_participle": "hesitated" - }, - { - "infinitive": "over-expose", - "present": "over-exposes", - "gerund": "over-exposing", - "past": "overexposed", - "past_participle": "over-exposed" - }, - { - "infinitive": "scramb", - "present": "scrambs", - "gerund": "scrambing", - "past": "scrambed", - "past_participle": "scrambed" - }, - { - "infinitive": "perspire", - "present": "perspires", - "gerund": "perspiring", - "past": "perspired", - "past_participle": "perspired" - }, - { - "infinitive": "nark", - "present": "narks", - "gerund": "narking", - "past": "narked", - "past_participle": "narked" - }, - { - "infinitive": "deplore", - "present": "deplores", - "gerund": "deploring", - "past": "deplored", - "past_participle": "deplored" - }, - { - "infinitive": "inweave", - "present": "inweaves", - "gerund": "inweaving", - "past": "inwove", - "past_participle": "inwoven" - }, - { - "infinitive": "mislike", - "present": "mislikes", - "gerund": "misliking", - "past": "misliked", - "past_participle": "misliked" - }, - { - "infinitive": "free-select", - "present": "free-selects", - "gerund": "free-selecting", - "past": "free-selected", - "past_participle": "free-selected" - }, - { - "infinitive": "pink", - "present": "pinks", - "gerund": "pinking", - "past": "pinked", - "past_participle": "pinked" - }, - { - "infinitive": "farm", - "present": "farms", - "gerund": "farming", - "past": "farmed", - "past_participle": "farmed" - }, - { - "infinitive": "canker", - "present": "cankers", - "gerund": "cankering", - "past": "cankered", - "past_participle": "cankered" - }, - { - "infinitive": "fart", - "present": "farts", - "gerund": "farting", - "past": "farted", - "past_participle": "farted" - }, - { - "infinitive": "cantillate", - "present": "cantillates", - "gerund": "cantillating", - "past": "cantillated", - "past_participle": "cantillated" - }, - { - "infinitive": "fatigue", - "present": "fatigues", - "gerund": "fatiguing", - "past": "fatigued", - "past_participle": "fatigued" - }, - { - "infinitive": "prance", - "present": "prances", - "gerund": "prancing", - "past": "pranced", - "past_participle": "pranced" - }, - { - "infinitive": "tomb", - "present": "tombs", - "gerund": "tombing", - "past": "tombed", - "past_participle": "tombed" - }, - { - "infinitive": "foment", - "present": "foments", - "gerund": "fomenting", - "past": "fomented", - "past_participle": "fomented" - }, - { - "infinitive": "unmuzzle", - "present": "unmuzzles", - "gerund": "unmuzzling", - "past": "unmuzzled", - "past_participle": "unmuzzled" - }, - { - "infinitive": "prettify", - "present": "prettifies", - "gerund": "prettifying", - "past": "prettified", - "past_participle": "prettified" - }, - { - "infinitive": "overdress", - "present": "overdresses", - "gerund": "overdressing", - "past": "overdressed", - "past_participle": "overdressed" - }, - { - "infinitive": "encamp", - "present": "encamps", - "gerund": "encamping", - "past": "encamped", - "past_participle": "encamped" - }, - { - "infinitive": "decorticate", - "present": "decorticates", - "gerund": "decorticating", - "past": "decorticated", - "past_participle": "decorticated" - }, - { - "infinitive": "day-dream", - "present": "daydreams'", - "gerund": "daydream", - "past": "daydreamed", - "past_participle": "day-dreamed" - }, - { - "infinitive": "corral", - "present": "corrals", - "gerund": "corralling", - "past": "corralled", - "past_participle": "corralled" - }, - { - "infinitive": "scoop", - "present": "scoops", - "gerund": "scooping", - "past": "scooped", - "past_participle": "scooped" - }, - { - "infinitive": "scoot", - "present": "scoots", - "gerund": "scooting", - "past": "scooted", - "past_participle": "scooted" - }, - { - "infinitive": "rove", - "present": "", - "gerund": "", - "past": "rove", - "past_participle": "" - }, - { - "infinitive": "wadset", - "present": "wadsets", - "gerund": "wadsetting", - "past": "wadsetted", - "past_participle": "wadsetted" - }, - { - "infinitive": "deoxygenize", - "present": "deoxygenizes", - "gerund": "deoxygenizing", - "past": "deoxygenized", - "past_participle": "deoxygenized" - }, - { - "infinitive": "shush", - "present": "shushes", - "gerund": "shushing", - "past": "shushed", - "past_participle": "shushed" - }, - { - "infinitive": "acetylate", - "present": "acetylates", - "gerund": "acetylating", - "past": "acetylated", - "past_participle": "acetylated" - }, - { - "infinitive": "inclose", - "present": "incloses", - "gerund": "inclosing", - "past": "inclosed", - "past_participle": "inclosed" - }, - { - "infinitive": "costume", - "present": "costumes", - "gerund": "costuming", - "past": "costumed", - "past_participle": "costumed" - }, - { - "infinitive": "cruise", - "present": "cruises", - "gerund": "cruising", - "past": "cruised", - "past_participle": "cruised" - }, - { - "infinitive": "embezzle", - "present": "embezzles", - "gerund": "embezzling", - "past": "embezzled", - "past_participle": "embezzled" - }, - { - "infinitive": "vilify", - "present": "vilifies", - "gerund": "vilifying", - "past": "vilified", - "past_participle": "vilified" - }, - { - "infinitive": "hock", - "present": "hocks", - "gerund": "hocking", - "past": "hocked", - "past_participle": "hocked" - }, - { - "infinitive": "brood", - "present": "broods", - "gerund": "brooding", - "past": "brooded", - "past_participle": "brooded" - }, - { - "infinitive": "brook", - "present": "brooks", - "gerund": "brooking", - "past": "brooked", - "past_participle": "brooked" - }, - { - "infinitive": "intercrop", - "present": "intercrops", - "gerund": "intercropping", - "past": "intercropped", - "past_participle": "intercropped" - }, - { - "infinitive": "bestialize", - "present": "bestializes", - "gerund": "bestializing", - "past": "bestialized", - "past_participle": "bestialized" - }, - { - "infinitive": "demoralize", - "present": "demoralizes", - "gerund": "demoralizing", - "past": "demoralized", - "past_participle": "demoralized" - }, - { - "infinitive": "swaddle", - "present": "swaddles", - "gerund": "swaddling", - "past": "swaddled", - "past_participle": "swaddled" - }, - { - "infinitive": "frogmarch", - "present": "frogmarches", - "gerund": "frogmarching", - "past": "frogmarched", - "past_participle": "frogmarched" - }, - { - "infinitive": "dike", - "present": "dikes", - "gerund": "diking", - "past": "diked", - "past_participle": "diked" - }, - { - "infinitive": "snorkel", - "present": "snorkels", - "gerund": "snorkeling", - "past": "snorkeled", - "past_participle": "snorkeled" - }, - { - "infinitive": "propound", - "present": "propounds", - "gerund": "propounding", - "past": "propounded", - "past_participle": "propounded" - }, - { - "infinitive": "front", - "present": "fronts", - "gerund": "fronting", - "past": "fronted", - "past_participle": "fronted" - }, - { - "infinitive": "refuel", - "present": "refuels", - "gerund": "refuelling", - "past": "refuelled", - "past_participle": "refuelled" - }, - { - "infinitive": "chasten", - "present": "chastens", - "gerund": "chastening", - "past": "chastened", - "past_participle": "chastened" - }, - { - "infinitive": "profane", - "present": "profanes", - "gerund": "profaning", - "past": "profaned", - "past_participle": "profaned" - }, - { - "infinitive": "spoon-feed", - "present": "spoon-feeds", - "gerund": "spoon-feeding", - "past": "spoon-fed", - "past_participle": "spoon-fed" - }, - { - "infinitive": "muff", - "present": "muffs", - "gerund": "muffing", - "past": "muffed", - "past_participle": "muffed" - }, - { - "infinitive": "beshrew", - "present": "beshrews", - "gerund": "beshrewing", - "past": "beshrewed", - "past_participle": "beshrewed" - }, - { - "infinitive": "unwind", - "present": "unwinds", - "gerund": "unwinding", - "past": "unwound", - "past_participle": "unwound" - }, - { - "infinitive": "illuminate", - "present": "illuminates", - "gerund": "illuminating", - "past": "illuminated", - "past_participle": "illuminated" - }, - { - "infinitive": "globe", - "present": "globes", - "gerund": "globing", - "past": "globed", - "past_participle": "globed" - }, - { - "infinitive": "constitute", - "present": "constitutes", - "gerund": "constituting", - "past": "constituted", - "past_participle": "constituted" - }, - { - "infinitive": "seesaw", - "present": "seesaws", - "gerund": "seesawing", - "past": "seesawed", - "past_participle": "seesawed" - }, - { - "infinitive": "muckamuck", - "present": "muckamucks", - "gerund": "muckamucking", - "past": "muckamucked", - "past_participle": "muckamucked" - }, - { - "infinitive": "measure", - "present": "measures", - "gerund": "measuring", - "past": "measured", - "past_participle": "measured" - }, - { - "infinitive": "gallant", - "present": "gallants", - "gerund": "gallanting", - "past": "gallanted", - "past_participle": "gallanted" - }, - { - "infinitive": "bobol", - "present": "bobols", - "gerund": "boboling", - "past": "boboled", - "past_participle": "boboled" - }, - { - "infinitive": "remise", - "present": "remises", - "gerund": "remising", - "past": "remised", - "past_participle": "remised" - }, - { - "infinitive": "confess", - "present": "confesses", - "gerund": "confessing", - "past": "confessed", - "past_participle": "confessed" - }, - { - "infinitive": "crashland", - "present": "crashlands", - "gerund": "crashlanding", - "past": "crashlanded", - "past_participle": "crashlanded" - }, - { - "infinitive": "geologize", - "present": "geologizes", - "gerund": "geologizing", - "past": "geologized", - "past_participle": "geologized" - }, - { - "infinitive": "rival", - "present": "rivals", - "gerund": "rivalling", - "past": "rivalled", - "past_participle": "rivalled" - }, - { - "infinitive": "complect", - "present": "complects", - "gerund": "complecting", - "past": "complected", - "past_participle": "complected" - }, - { - "infinitive": "cause", - "present": "causes", - "gerund": "causing", - "past": "caused", - "past_participle": "caused" - }, - { - "infinitive": "slush", - "present": "slushes", - "gerund": "slushing", - "past": "slushed", - "past_participle": "slushed" - }, - { - "infinitive": "obsess", - "present": "obsesses", - "gerund": "obsessing", - "past": "obsessed", - "past_participle": "obsessed" - }, - { - "infinitive": "contemporize", - "present": "contemporizes", - "gerund": "contemporizing", - "past": "contemporized", - "past_participle": "contemporized" - }, - { - "infinitive": "watermark", - "present": "watermarks", - "gerund": "watermarking", - "past": "watermarked", - "past_participle": "watermarked" - }, - { - "infinitive": "chitchat", - "present": "chitchats", - "gerund": "chitchatting", - "past": "chitchatted", - "past_participle": "chitchatted" - }, - { - "infinitive": "chunter", - "present": "chunters", - "gerund": "chuntering", - "past": "chuntered", - "past_participle": "chuntered" - }, - { - "infinitive": "jilt", - "present": "jilts", - "gerund": "jilting", - "past": "jilted", - "past_participle": "jilted" - }, - { - "infinitive": "undo", - "present": "undoes", - "gerund": "undoing", - "past": "undid", - "past_participle": "undone" - }, - { - "infinitive": "reive", - "present": "reives", - "gerund": "reiving", - "past": "reived", - "past_participle": "reived" - }, - { - "infinitive": "darkle", - "present": "darkles", - "gerund": "darkling", - "past": "darkled", - "past_participle": "darkled" - }, - { - "infinitive": "sneer", - "present": "sneers", - "gerund": "sneering", - "past": "sneered", - "past_participle": "sneered" - }, - { - "infinitive": "brattice", - "present": "brattices", - "gerund": "bratticing", - "past": "bratticed", - "past_participle": "bratticed" - }, - { - "infinitive": "route", - "present": "routes", - "gerund": "routing", - "past": "routed", - "past_participle": "routed" - }, - { - "infinitive": "keep", - "present": "keeps", - "gerund": "keeping", - "past": "kept", - "past_participle": "kept" - }, - { - "infinitive": "keen", - "present": "keens", - "gerund": "keening", - "past": "keened", - "past_participle": "keened" - }, - { - "infinitive": "keel", - "present": "keels", - "gerund": "keeling", - "past": "keeled", - "past_participle": "keeled" - }, - { - "infinitive": "keek", - "present": "keeks", - "gerund": "keeking", - "past": "keeked", - "past_participle": "keeked" - }, - { - "infinitive": "bootlick", - "present": "bootlicks", - "gerund": "bootlicking", - "past": "bootlicked", - "past_participle": "bootlicked" - }, - { - "infinitive": "manumit", - "present": "manumits", - "gerund": "manumitting", - "past": "manumitted", - "past_participle": "manumitted" - }, - { - "infinitive": "watercool", - "present": "watercools", - "gerund": "watercooling", - "past": "watercooled", - "past_participle": "watercooled" - }, - { - "infinitive": "incarnate", - "present": "incarnates", - "gerund": "incarnating", - "past": "incarnated", - "past_participle": "incarnated" - }, - { - "infinitive": "clamour", - "present": "clamours", - "gerund": "clamouring", - "past": "clamoured", - "past_participle": "clamoured" - }, - { - "infinitive": "confuse", - "present": "confuses", - "gerund": "confusing", - "past": "confused", - "past_participle": "confused" - }, - { - "infinitive": "extrude", - "present": "extrudes", - "gerund": "extruding", - "past": "extruded", - "past_participle": "extruded" - }, - { - "infinitive": "fillagree", - "present": "filigrees", - "gerund": "filigreeing", - "past": "filigreed", - "past_participle": "filigreed" - }, - { - "infinitive": "maturate", - "present": "maturates", - "gerund": "maturating", - "past": "maturated", - "past_participle": "maturated" - }, - { - "infinitive": "stump", - "present": "stumps", - "gerund": "stumping", - "past": "stumped", - "past_participle": "stumped" - }, - { - "infinitive": "conga", - "present": "congas", - "gerund": "congaing", - "past": "congaed", - "past_participle": "congaed" - }, - { - "infinitive": "unsteel", - "present": "unsteels", - "gerund": "unsteeling", - "past": "unsteeled", - "past_participle": "unsteeled" - }, - { - "infinitive": "grow", - "present": "grows", - "gerund": "growing", - "past": "grew", - "past_participle": "grown" - }, - { - "infinitive": "attach", - "present": "attaches", - "gerund": "attaching", - "past": "attached", - "past_participle": "attached" - }, - { - "infinitive": "attack", - "present": "attacks", - "gerund": "attacking", - "past": "attacked", - "past_participle": "attacked" - }, - { - "infinitive": "inearth", - "present": "inearths", - "gerund": "inearthing", - "past": "inearthed", - "past_participle": "inearthed" - }, - { - "infinitive": "prolapse", - "present": "prolapses", - "gerund": "prolapsing", - "past": "prolapsed", - "past_participle": "prolapsed" - }, - { - "infinitive": "man", - "present": "mans", - "gerund": "manning", - "past": "manned", - "past_participle": "manned" - }, - { - "infinitive": "prong", - "present": "prongs", - "gerund": "pronging", - "past": "pronged", - "past_participle": "pronged" - }, - { - "infinitive": "circulate", - "present": "circulates", - "gerund": "circulating", - "past": "circulated", - "past_participle": "circulated" - }, - { - "infinitive": "relinquish", - "present": "relinquishes", - "gerund": "relinquishing", - "past": "relinquished", - "past_participle": "relinquished" - }, - { - "infinitive": "misspell", - "present": "misspells", - "gerund": "misspelling", - "past": "misspelt", - "past_participle": "misspelt" - }, - { - "infinitive": "punish", - "present": "punishes", - "gerund": "punishing", - "past": "punished", - "past_participle": "punished" - }, - { - "infinitive": "curarize", - "present": "curarizes", - "gerund": "curarizing", - "past": "curarized", - "past_participle": "curarized" - }, - { - "infinitive": "minute", - "present": "minutes", - "gerund": "minuting", - "past": "minuted", - "past_participle": "minuted" - }, - { - "infinitive": "innovate", - "present": "innovates", - "gerund": "innovating", - "past": "innovated", - "past_participle": "innovated" - }, - { - "infinitive": "feint", - "present": "feints", - "gerund": "feinting", - "past": "feinted", - "past_participle": "feinted" - }, - { - "infinitive": "neck", - "present": "necks", - "gerund": "necking", - "past": "necked", - "past_participle": "necked" - }, - { - "infinitive": "photograph", - "present": "photographs", - "gerund": "photographing", - "past": "photographed", - "past_participle": "photographed" - }, - { - "infinitive": "spurn", - "present": "spurns", - "gerund": "spurning", - "past": "spurned", - "past_participle": "spurned" - }, - { - "infinitive": "placekick", - "present": "placekicks", - "gerund": "placekicking", - "past": "placekicked", - "past_participle": "placekicked" - }, - { - "infinitive": "bloat", - "present": "bloats", - "gerund": "bloating", - "past": "bloated", - "past_participle": "bloated" - }, - { - "infinitive": "girdle", - "present": "girdles", - "gerund": "girdling", - "past": "girdled", - "past_participle": "girdled" - }, - { - "infinitive": "beg", - "present": "begs", - "gerund": "begging", - "past": "begged", - "past_participle": "begged" - }, - { - "infinitive": "bed", - "present": "beds", - "gerund": "bedding", - "past": "bedded", - "past_participle": "bedded" - }, - { - "infinitive": "spurt", - "present": "spurts", - "gerund": "spurting", - "past": "spurted", - "past_participle": "spurted" - }, - { - "infinitive": "subjoin", - "present": "subjoins", - "gerund": "subjoining", - "past": "subjoined", - "past_participle": "subjoined" - }, - { - "infinitive": "bet", - "present": "bets", - "gerund": "betting", - "past": "betted", - "past_participle": "betted" - }, - { - "infinitive": "exhibit", - "present": "exhibits", - "gerund": "exhibiting", - "past": "exhibited", - "past_participle": "exhibited" - }, - { - "infinitive": "torment", - "present": "torments", - "gerund": "tormenting", - "past": "tormented", - "past_participle": "tormented" - }, - { - "infinitive": "hallal", - "present": "hallals", - "gerund": "hallaling", - "past": "hallaled", - "past_participle": "hallaled" - }, - { - "infinitive": "becloud", - "present": "beclouds", - "gerund": "beclouding", - "past": "beclouded", - "past_participle": "beclouded" - }, - { - "infinitive": "need", - "present": "needs", - "gerund": "needing", - "past": "needed", - "past_participle": "needed" - }, - { - "infinitive": "border", - "present": "borders", - "gerund": "bordering", - "past": "bordered", - "past_participle": "bordered" - }, - { - "infinitive": "sendoff", - "present": "sendoffs", - "gerund": "sendoffing", - "past": "sendoffed", - "past_participle": "sendoffed" - }, - { - "infinitive": "screw", - "present": "screws", - "gerund": "screwing", - "past": "screwed", - "past_participle": "screwed" - }, - { - "infinitive": "arrogate", - "present": "arrogates", - "gerund": "arrogating", - "past": "arrogated", - "past_participle": "arrogated" - }, - { - "infinitive": "switch", - "present": "switches", - "gerund": "switching", - "past": "switched", - "past_participle": "switched" - }, - { - "infinitive": "instance", - "present": "instances", - "gerund": "instancing", - "past": "instanced", - "past_participle": "instanced" - }, - { - "infinitive": "jaunt", - "present": "jaunts", - "gerund": "jaunting", - "past": "jaunted", - "past_participle": "jaunted" - }, - { - "infinitive": "singe", - "present": "singes", - "gerund": "singeing", - "past": "singed", - "past_participle": "singed" - }, - { - "infinitive": "metricize", - "present": "metricizes", - "gerund": "metricizing", - "past": "metricized", - "past_participle": "metricized" - }, - { - "infinitive": "visor", - "present": "visors", - "gerund": "visoring", - "past": "visored", - "past_participle": "visored" - }, - { - "infinitive": "coke", - "present": "cokes", - "gerund": "coking", - "past": "coked", - "past_participle": "coked" - }, - { - "infinitive": "demist", - "present": "demists", - "gerund": "demisting", - "past": "demisted", - "past_participle": "demisted" - }, - { - "infinitive": "talc", - "present": "talcs", - "gerund": "talcking", - "past": "talcked", - "past_participle": "talcked" - }, - { - "infinitive": "deploy", - "present": "deploys", - "gerund": "deploying", - "past": "deployed", - "past_participle": "deployed" - }, - { - "infinitive": "disgorge", - "present": "disgorges", - "gerund": "disgorging", - "past": "disgorged", - "past_participle": "disgorged" - }, - { - "infinitive": "demise", - "present": "demises", - "gerund": "demising", - "past": "demised", - "past_participle": "demised" - }, - { - "infinitive": "counterbalance", - "present": "counterbalances", - "gerund": "counterbalancing", - "past": "counterbalanced", - "past_participle": "counterbalanced" - }, - { - "infinitive": "pish", - "present": "pishes", - "gerund": "pishing", - "past": "pished", - "past_participle": "pished" - }, - { - "infinitive": "awe", - "present": "awes", - "gerund": "awing", - "past": "awed", - "past_participle": "awed" - }, - { - "infinitive": "detrain", - "present": "detrains", - "gerund": "detraining", - "past": "detrained", - "past_participle": "detrained" - }, - { - "infinitive": "damascene", - "present": "damascenes", - "gerund": "damascening", - "past": "damascened", - "past_participle": "damascened" - }, - { - "infinitive": "gallivant", - "present": "gallivants", - "gerund": "gallivanting", - "past": "gallivanted", - "past_participle": "gallivanted" - }, - { - "infinitive": "eject", - "present": "ejects", - "gerund": "ejecting", - "past": "ejected", - "past_participle": "ejected" - }, - { - "infinitive": "upset", - "present": "upsets", - "gerund": "upsetting", - "past": "upset", - "past_participle": "upset" - }, - { - "infinitive": "prickle", - "present": "prickles", - "gerund": "prickling", - "past": "prickled", - "past_participle": "prickled" - }, - { - "infinitive": "carburize", - "present": "carburizes", - "gerund": "carburizing", - "past": "carburized", - "past_participle": "carburized" - }, - { - "infinitive": "suture", - "present": "sutures", - "gerund": "suturing", - "past": "sutured", - "past_participle": "sutured" - }, - { - "infinitive": "talk", - "present": "talks", - "gerund": "talking", - "past": "talked", - "past_participle": "talked" - }, - { - "infinitive": "constrain", - "present": "constrains", - "gerund": "constraining", - "past": "constrained", - "past_participle": "constrained" - }, - { - "infinitive": "skunks", - "present": "skunkses", - "gerund": "skunksing", - "past": "skunksed", - "past_participle": "skunksed" - }, - { - "infinitive": "deface", - "present": "defaces", - "gerund": "defacing", - "past": "defaced", - "past_participle": "defaced" - }, - { - "infinitive": "unsettle", - "present": "unsettles", - "gerund": "unsettling", - "past": "unsettled", - "past_participle": "unsettled" - }, - { - "infinitive": "seclude", - "present": "secludes", - "gerund": "secluding", - "past": "secluded", - "past_participle": "secluded" - }, - { - "infinitive": "crate", - "present": "crates", - "gerund": "crating", - "past": "crated", - "past_participle": "crated" - }, - { - "infinitive": "conventionalize", - "present": "conventionalizes", - "gerund": "conventionalizing", - "past": "conventionalized", - "past_participle": "conventionalized" - }, - { - "infinitive": "molest", - "present": "molests", - "gerund": "molesting", - "past": "molested", - "past_participle": "molested" - }, - { - "infinitive": "wrestle", - "present": "wrestles", - "gerund": "wrestling", - "past": "wrestled", - "past_participle": "wrestled" - }, - { - "infinitive": "inebriate", - "present": "inebriates", - "gerund": "inebriating", - "past": "inebriated", - "past_participle": "inebriated" - }, - { - "infinitive": "envy", - "present": "envies", - "gerund": "envying", - "past": "envied", - "past_participle": "envied" - }, - { - "infinitive": "cavort", - "present": "cavorts", - "gerund": "cavorting", - "past": "cavorted", - "past_participle": "cavorted" - }, - { - "infinitive": "tire", - "present": "tires", - "gerund": "tiring", - "past": "tired", - "past_participle": "tired" - }, - { - "infinitive": "outflank", - "present": "outflanks", - "gerund": "outflanking", - "past": "outflanked", - "past_participle": "outflanked" - }, - { - "infinitive": "hade", - "present": "hades", - "gerund": "hading", - "past": "haded", - "past_participle": "haded" - }, - { - "infinitive": "brighten", - "present": "brightens", - "gerund": "brightening", - "past": "brightened", - "past_participle": "brightened" - }, - { - "infinitive": "rash", - "present": "rashes", - "gerund": "rashing", - "past": "rashed", - "past_participle": "rashed" - }, - { - "infinitive": "hector", - "present": "hectors", - "gerund": "hectoring", - "past": "hectored", - "past_participle": "hectored" - }, - { - "infinitive": "rasp", - "present": "rasps", - "gerund": "rasping", - "past": "rasped", - "past_participle": "rasped" - }, - { - "infinitive": "enface", - "present": "enfaces", - "gerund": "enfacing", - "past": "enfaced", - "past_participle": "enfaced" - }, - { - "infinitive": "achieve", - "present": "achieves", - "gerund": "achieving", - "past": "achieved", - "past_participle": "achieved" - }, - { - "infinitive": "dodge", - "present": "dodges", - "gerund": "dodging", - "past": "dodged", - "past_participle": "dodged" - }, - { - "infinitive": "gratify", - "present": "gratifies", - "gerund": "gratifying", - "past": "gratified", - "past_participle": "gratified" - }, - { - "infinitive": "tropicalize", - "present": "tropicalizes", - "gerund": "tropicalizing", - "past": "tropicalized", - "past_participle": "tropicalized" - }, - { - "infinitive": "bowwow", - "present": "bowwows", - "gerund": "bowwowing", - "past": "bowwowed", - "past_participle": "bowwowed" - }, - { - "infinitive": "swirl", - "present": "swirls", - "gerund": "swirling", - "past": "swirled", - "past_participle": "swirled" - }, - { - "infinitive": "legitimate", - "present": "legitimates", - "gerund": "legitimating", - "past": "legitimated", - "past_participle": "legitimated" - }, - { - "infinitive": "computerize", - "present": "computerizes", - "gerund": "computerizing", - "past": "computerized", - "past_participle": "computerized" - }, - { - "infinitive": "shy", - "present": "shies", - "gerund": "shying", - "past": "shied", - "past_participle": "shied" - }, - { - "infinitive": "quarantine", - "present": "quarantines", - "gerund": "quarantining", - "past": "quarantined", - "past_participle": "quarantined" - }, - { - "infinitive": "instantiate", - "present": "instantiates", - "gerund": "instantiating", - "past": "instantiated", - "past_participle": "instantiated" - }, - { - "infinitive": "ordain", - "present": "ordains", - "gerund": "ordaining", - "past": "ordained", - "past_participle": "ordained" - }, - { - "infinitive": "trammel", - "present": "trammels", - "gerund": "trammelling", - "past": "trammelled", - "past_participle": "trammelled" - }, - { - "infinitive": "gush", - "present": "gushes", - "gerund": "gushing", - "past": "gushed", - "past_participle": "gushed" - }, - { - "infinitive": "contain", - "present": "contains", - "gerund": "containing", - "past": "contained", - "past_participle": "contained" - }, - { - "infinitive": "grab", - "present": "grabs", - "gerund": "grabbing", - "past": "grabbed", - "past_participle": "grabbed" - }, - { - "infinitive": "conduct", - "present": "conducts", - "gerund": "conducting", - "past": "conducted", - "past_participle": "conducted" - }, - { - "infinitive": "preach", - "present": "preaches", - "gerund": "preaching", - "past": "preached", - "past_participle": "preached" - }, - { - "infinitive": "Occidentalize", - "present": "Occidentalizes", - "gerund": "Occidentalizing", - "past": "Occidentalized", - "past_participle": "Occidentalized" - }, - { - "infinitive": "encarnalize", - "present": "encarnalizes", - "gerund": "encarnalizing", - "past": "encarnalized", - "past_participle": "encarnalized" - }, - { - "infinitive": "orphan", - "present": "orphans", - "gerund": "orphaning", - "past": "orphaned", - "past_participle": "orphaned" - }, - { - "infinitive": "oversubscribe", - "present": "oversubscribes", - "gerund": "oversubscribing", - "past": "oversubscribed", - "past_participle": "oversubscribed" - }, - { - "infinitive": "reinforce", - "present": "reinforces", - "gerund": "reinforcing", - "past": "reinforced", - "past_participle": "reinforced" - }, - { - "infinitive": "powder", - "present": "powders", - "gerund": "powdering", - "past": "powdered", - "past_participle": "powdered" - }, - { - "infinitive": "solder", - "present": "solders", - "gerund": "soldering", - "past": "soldered", - "past_participle": "soldered" - }, - { - "infinitive": "joypop", - "present": "joypops", - "gerund": "joypopping", - "past": "joypopped", - "past_participle": "joypopped" - }, - { - "infinitive": "unearth", - "present": "unearths", - "gerund": "unearthing", - "past": "unearthed", - "past_participle": "unearthed" - }, - { - "infinitive": "metrify", - "present": "metrifies", - "gerund": "metrifying", - "past": "metrified", - "past_participle": "metrified" - }, - { - "infinitive": "thumb", - "present": "thumbs", - "gerund": "thumbing", - "past": "thumbed", - "past_participle": "thumbed" - }, - { - "infinitive": "tend", - "present": "tends", - "gerund": "tending", - "past": "tended", - "past_participle": "tended" - }, - { - "infinitive": "realign", - "present": "realigns", - "gerund": "realigning", - "past": "realigned", - "past_participle": "realigned" - }, - { - "infinitive": "state", - "present": "states", - "gerund": "stating", - "past": "stated", - "past_participle": "stated" - }, - { - "infinitive": "beautify", - "present": "beautifies", - "gerund": "beautifying", - "past": "beautified", - "past_participle": "beautified" - }, - { - "infinitive": "tyre", - "present": "tyres", - "gerund": "tyring", - "past": "tyred", - "past_participle": "tyred" - }, - { - "infinitive": "lug", - "present": "lugs", - "gerund": "lugging", - "past": "lugged", - "past_participle": "lugged" - }, - { - "infinitive": "juggle", - "present": "juggles", - "gerund": "juggling", - "past": "juggled", - "past_participle": "juggled" - }, - { - "infinitive": "wouldst", - "present": "wouldsts", - "gerund": "wouldsting", - "past": "wouldsted", - "past_participle": "wouldsted" - }, - { - "infinitive": "sabotage", - "present": "sabotages", - "gerund": "sabotaging", - "past": "sabotaged", - "past_participle": "sabotaged" - }, - { - "infinitive": "tent", - "present": "tents", - "gerund": "tenting", - "past": "tented", - "past_participle": "tented" - }, - { - "infinitive": "ken", - "present": "kens", - "gerund": "kenning", - "past": "kent", - "past_participle": "kent" - }, - { - "infinitive": "splurge", - "present": "splurges", - "gerund": "splurging", - "past": "splurged", - "past_participle": "splurged" - }, - { - "infinitive": "interfere", - "present": "interferes", - "gerund": "interfering", - "past": "interfered", - "past_participle": "interfered" - }, - { - "infinitive": "foreshadow", - "present": "foreshadows", - "gerund": "foreshadowing", - "past": "foreshadowed", - "past_participle": "foreshadowed" - }, - { - "infinitive": "relegate", - "present": "relegates", - "gerund": "relegating", - "past": "relegated", - "past_participle": "relegated" - }, - { - "infinitive": "key", - "present": "keys", - "gerund": "keying", - "past": "keyed", - "past_participle": "keyed" - }, - { - "infinitive": "bedraggle", - "present": "bedraggles", - "gerund": "bedraggling", - "past": "bedraggled", - "past_participle": "bedraggled" - }, - { - "infinitive": "jib", - "present": "jibs", - "gerund": "jibbing", - "past": "jibbed", - "past_participle": "jibbed" - }, - { - "infinitive": "kep", - "present": "keps", - "gerund": "keping", - "past": "keped", - "past_participle": "keped" - }, - { - "infinitive": "inundate", - "present": "inundates", - "gerund": "inundating", - "past": "inundated", - "past_participle": "inundated" - }, - { - "infinitive": "sniff", - "present": "sniffs", - "gerund": "sniffing", - "past": "sniffed", - "past_participle": "sniffed" - }, - { - "infinitive": "ballyrag", - "present": "ballyrags", - "gerund": "ballyragging", - "past": "ballyragged", - "past_participle": "ballyragged" - }, - { - "infinitive": "career", - "present": "careers", - "gerund": "careering", - "past": "careered", - "past_participle": "careered" - }, - { - "infinitive": "outrank", - "present": "outranks", - "gerund": "outranking", - "past": "outranked", - "past_participle": "outranked" - }, - { - "infinitive": "roil", - "present": "roils", - "gerund": "roiling", - "past": "roiled", - "past_participle": "roiled" - }, - { - "infinitive": "admit", - "present": "admits", - "gerund": "admitting", - "past": "admitted", - "past_participle": "admitted" - }, - { - "infinitive": "careen", - "present": "careens", - "gerund": "careening", - "past": "careened", - "past_participle": "careened" - }, - { - "infinitive": "propagandize", - "present": "propagandizes", - "gerund": "propagandizing", - "past": "propagandized", - "past_participle": "propagandized" - }, - { - "infinitive": "admix", - "present": "admixes", - "gerund": "admixing", - "past": "admixed", - "past_participle": "admixed" - }, - { - "infinitive": "christen", - "present": "christens", - "gerund": "christening", - "past": "christened", - "past_participle": "christened" - }, - { - "infinitive": "subtitle", - "present": "subtitles", - "gerund": "subtitling", - "past": "subtitled", - "past_participle": "subtitled" - }, - { - "infinitive": "illude", - "present": "illudes", - "gerund": "illuding", - "past": "illuded", - "past_participle": "illuded" - }, - { - "infinitive": "maximize", - "present": "maximizes", - "gerund": "maximizing", - "past": "maximized", - "past_participle": "maximized" - }, - { - "infinitive": "cohere", - "present": "coheres", - "gerund": "cohering", - "past": "cohered", - "past_participle": "cohered" - }, - { - "infinitive": "fiddlefaddle", - "present": "fiddlefaddles", - "gerund": "fiddlefaddling", - "past": "fiddlefaddled", - "past_participle": "fiddlefaddled" - }, - { - "infinitive": "quit", - "present": "quits", - "gerund": "quitting", - "past": "quitted", - "past_participle": "quitted" - }, - { - "infinitive": "inhale", - "present": "inhales", - "gerund": "inhaling", - "past": "inhaled", - "past_participle": "inhaled" - }, - { - "infinitive": "quip", - "present": "quips", - "gerund": "quipping", - "past": "quipped", - "past_participle": "quipped" - }, - { - "infinitive": "disintegrate", - "present": "disintegrates", - "gerund": "disintegrating", - "past": "disintegrated", - "past_participle": "disintegrated" - }, - { - "infinitive": "yaw", - "present": "yaws", - "gerund": "yawing", - "past": "yawed", - "past_participle": "yawed" - }, - { - "infinitive": "polka", - "present": "polkas", - "gerund": "polkaing", - "past": "polkaed", - "past_participle": "polkaed" - }, - { - "infinitive": "yap", - "present": "yaps", - "gerund": "yapping", - "past": "yapped", - "past_participle": "yapped" - }, - { - "infinitive": "undercoat", - "present": "undercoats", - "gerund": "undercoating", - "past": "undercoated", - "past_participle": "undercoated" - }, - { - "infinitive": "quiz", - "present": "quizzes", - "gerund": "quizzing", - "past": "quizzed", - "past_participle": "quizzed" - }, - { - "infinitive": "hemorrhage", - "present": "hemorrhages", - "gerund": "hemorrhaging", - "past": "hemorrhaged", - "past_participle": "hemorrhaged" - }, - { - "infinitive": "spoliate", - "present": "spoliates", - "gerund": "spoliating", - "past": "spoliated", - "past_participle": "spoliated" - }, - { - "infinitive": "treat", - "present": "treats", - "gerund": "treating", - "past": "treated", - "past_participle": "treated" - }, - { - "infinitive": "misapply", - "present": "misapplies", - "gerund": "misapplying", - "past": "misapplied", - "past_participle": "misapplied" - }, - { - "infinitive": "disannul", - "present": "disannuls", - "gerund": "disannulling", - "past": "disannulled", - "past_participle": "disannulled" - }, - { - "infinitive": "overprotect", - "present": "overprotects", - "gerund": "overprotecting", - "past": "overprotected", - "past_participle": "overprotected" - }, - { - "infinitive": "oxygenize", - "present": "oxygenizes", - "gerund": "oxygenizing", - "past": "oxygenized", - "past_participle": "oxygenized" - }, - { - "infinitive": "snivel", - "present": "snivels", - "gerund": "snivelling", - "past": "snivelled", - "past_participle": "snivelled" - }, - { - "infinitive": "undertrump", - "present": "undertrumps", - "gerund": "undertrumping", - "past": "undertrumped", - "past_participle": "undertrumped" - }, - { - "infinitive": "titter", - "present": "titters", - "gerund": "tittering", - "past": "tittered", - "past_participle": "tittered" - }, - { - "infinitive": "outspread", - "present": "outspreads", - "gerund": "outspreading", - "past": "outspread", - "past_participle": "outspread" - }, - { - "infinitive": "steep", - "present": "steeps", - "gerund": "steeping", - "past": "steeped", - "past_participle": "steeped" - }, - { - "infinitive": "crusade", - "present": "crusades", - "gerund": "crusading", - "past": "crusaded", - "past_participle": "crusaded" - }, - { - "infinitive": "harden", - "present": "hardens", - "gerund": "hardening", - "past": "hardened", - "past_participle": "hardened" - }, - { - "infinitive": "metaphysicize", - "present": "metaphysicizes", - "gerund": "metaphysicizing", - "past": "metaphysicized", - "past_participle": "metaphysicized" - }, - { - "infinitive": "riposte", - "present": "riposts", - "gerund": "riposting", - "past": "riposted", - "past_participle": "riposted" - }, - { - "infinitive": "dight", - "present": "dights", - "gerund": "dighting", - "past": "dighted", - "past_participle": "dighted" - }, - { - "infinitive": "backcomb", - "present": "backcombs", - "gerund": "backcombing", - "past": "backcombed", - "past_participle": "backcombed" - }, - { - "infinitive": "backdate", - "present": "backdates", - "gerund": "backdating", - "past": "backdated", - "past_participle": "backdated" - }, - { - "infinitive": "surface", - "present": "surfaces", - "gerund": "surfacing", - "past": "surfaced", - "past_participle": "surfaced" - }, - { - "infinitive": "unstop", - "present": "unstops", - "gerund": "unstopping", - "past": "unstopped", - "past_participle": "unstopped" - }, - { - "infinitive": "equilibrate", - "present": "equilibrates", - "gerund": "equilibrating", - "past": "equilibrated", - "past_participle": "equilibrated" - }, - { - "infinitive": "hearten", - "present": "heartens", - "gerund": "heartening", - "past": "heartened", - "past_participle": "heartened" - }, - { - "infinitive": "capture", - "present": "captures", - "gerund": "capturing", - "past": "captured", - "past_participle": "captured" - }, - { - "infinitive": "steer", - "present": "steers", - "gerund": "steering", - "past": "steered", - "past_participle": "steered" - }, - { - "infinitive": "balloon", - "present": "balloons", - "gerund": "ballooning", - "past": "ballooned", - "past_participle": "ballooned" - }, - { - "infinitive": "wangle", - "present": "wangles", - "gerund": "wangling", - "past": "wangled", - "past_participle": "wangled" - }, - { - "infinitive": "wheel", - "present": "wheels", - "gerund": "wheeling", - "past": "wheeled", - "past_participle": "wheeled" - }, - { - "infinitive": "blight", - "present": "blights", - "gerund": "blighting", - "past": "blighted", - "past_participle": "blighted" - }, - { - "infinitive": "joist", - "present": "joists", - "gerund": "joisting", - "past": "joisted", - "past_participle": "joisted" - }, - { - "infinitive": "absorb", - "present": "absorbs", - "gerund": "absorbing", - "past": "absorbed", - "past_participle": "absorbed" - }, - { - "infinitive": "proscribe", - "present": "proscribes", - "gerund": "proscribing", - "past": "proscribed", - "past_participle": "proscribed" - }, - { - "infinitive": "singularize", - "present": "singularizes", - "gerund": "singularizing", - "past": "singularized", - "past_participle": "singularized" - }, - { - "infinitive": "effect", - "present": "effects", - "gerund": "effecting", - "past": "effected", - "past_participle": "effected" - }, - { - "infinitive": "overset", - "present": "oversets", - "gerund": "oversetting", - "past": "overset", - "past_participle": "overset" - }, - { - "infinitive": "oversew", - "present": "oversews", - "gerund": "oversewing", - "past": "oversewed", - "past_participle": "oversewn" - }, - { - "infinitive": "rift", - "present": "rifts", - "gerund": "rifting", - "past": "rifted", - "past_participle": "rifted" - }, - { - "infinitive": "weld", - "present": "welds", - "gerund": "welding", - "past": "welded", - "past_participle": "welded" - }, - { - "infinitive": "intercede", - "present": "intercedes", - "gerund": "interceding", - "past": "interceded", - "past_participle": "interceded" - }, - { - "infinitive": "glower", - "present": "glowers", - "gerund": "glowering", - "past": "glowered", - "past_participle": "glowered" - }, - { - "infinitive": "universalize", - "present": "universalizes", - "gerund": "universalizing", - "past": "universalized", - "past_participle": "universalized" - }, - { - "infinitive": "well", - "present": "wells", - "gerund": "welling", - "past": "welled", - "past_participle": "welled" - }, - { - "infinitive": "scunge", - "present": "scunges", - "gerund": "scunging", - "past": "scunged", - "past_participle": "scunged" - }, - { - "infinitive": "drone", - "present": "drones", - "gerund": "droning", - "past": "droned", - "past_participle": "droned" - }, - { - "infinitive": "welt", - "present": "welts", - "gerund": "welting", - "past": "welted", - "past_participle": "welted" - }, - { - "infinitive": "mottle", - "present": "mottles", - "gerund": "mottling", - "past": "mottled", - "past_participle": "mottled" - }, - { - "infinitive": "wee-wee", - "present": "wee-wees", - "gerund": "wee-weeing", - "past": "wee-weed", - "past_participle": "wee-weed" - }, - { - "infinitive": "restore", - "present": "restores", - "gerund": "restoring", - "past": "restored", - "past_participle": "restored" - }, - { - "infinitive": "discord", - "present": "discords", - "gerund": "discording", - "past": "discorded", - "past_participle": "discorded" - }, - { - "infinitive": "dose", - "present": "doses", - "gerund": "dosing", - "past": "dosed", - "past_participle": "dosed" - }, - { - "infinitive": "doss", - "present": "dosses", - "gerund": "dossing", - "past": "dossed", - "past_participle": "dossed" - }, - { - "infinitive": "snicker", - "present": "snickers", - "gerund": "snickering", - "past": "snickered", - "past_participle": "snickered" - }, - { - "infinitive": "outvote", - "present": "outvotes", - "gerund": "outvoting", - "past": "outvoted", - "past_participle": "outvoted" - }, - { - "infinitive": "mitre", - "present": "mitres", - "gerund": "mitring", - "past": "mitred", - "past_participle": "mitred" - }, - { - "infinitive": "ensanguine", - "present": "ensanguines", - "gerund": "ensanguining", - "past": "ensanguined", - "past_participle": "ensanguined" - }, - { - "infinitive": "warrant", - "present": "warrants", - "gerund": "warranting", - "past": "warranted", - "past_participle": "warranted" - }, - { - "infinitive": "kick", - "present": "kicks", - "gerund": "kicking", - "past": "kicked", - "past_participle": "kicked" - }, - { - "infinitive": "canter", - "present": "canters", - "gerund": "cantering", - "past": "cantered", - "past_participle": "cantered" - }, - { - "infinitive": "kick-start", - "present": "kick-starts", - "gerund": "kick-starting", - "past": "kick-started", - "past_participle": "kick-started" - }, - { - "infinitive": "fate", - "present": "fates", - "gerund": "fating", - "past": "fated", - "past_participle": "fated" - }, - { - "infinitive": "castoff", - "present": "castoffs", - "gerund": "castoffing", - "past": "castoffed", - "past_participle": "castoffed" - }, - { - "infinitive": "interlap", - "present": "interlaps", - "gerund": "interlapping", - "past": "interlapped", - "past_participle": "interlapped" - }, - { - "infinitive": "burden", - "present": "burdens", - "gerund": "burdening", - "past": "burdened", - "past_participle": "burdened" - }, - { - "infinitive": "interlay", - "present": "interlays", - "gerund": "interlaying", - "past": "interlaid", - "past_participle": "interlaid" - }, - { - "infinitive": "candy", - "present": "candies", - "gerund": "candying", - "past": "candied", - "past_participle": "candied" - }, - { - "infinitive": "tipple", - "present": "tipples", - "gerund": "tippling", - "past": "tippled", - "past_participle": "tippled" - }, - { - "infinitive": "lose", - "present": "loses", - "gerund": "losing", - "past": "lost", - "past_participle": "lost" - }, - { - "infinitive": "divest", - "present": "divests", - "gerund": "divesting", - "past": "divested", - "past_participle": "divested" - }, - { - "infinitive": "recrystallize", - "present": "recrystallizes", - "gerund": "recrystallizing", - "past": "recrystallized", - "past_participle": "recrystallized" - }, - { - "infinitive": "page", - "present": "pages", - "gerund": "paging", - "past": "paged", - "past_participle": "paged" - }, - { - "infinitive": "shed", - "present": "sheds", - "gerund": "shedding", - "past": "shed", - "past_participle": "shed" - }, - { - "infinitive": "glare", - "present": "glares", - "gerund": "glaring", - "past": "glared", - "past_participle": "glared" - }, - { - "infinitive": "startle", - "present": "startles", - "gerund": "startling", - "past": "startled", - "past_participle": "startled" - }, - { - "infinitive": "twitter", - "present": "twitters", - "gerund": "twittering", - "past": "twittered", - "past_participle": "twittered" - }, - { - "infinitive": "scuffle", - "present": "scuffles", - "gerund": "scuffling", - "past": "scuffled", - "past_participle": "scuffled" - }, - { - "infinitive": "motive", - "present": "motives", - "gerund": "motiving", - "past": "motived", - "past_participle": "motived" - }, - { - "infinitive": "shew", - "present": "shews", - "gerund": "shewing", - "past": "shewed", - "past_participle": "shewn" - }, - { - "infinitive": "profiteer", - "present": "profiteers", - "gerund": "profiteering", - "past": "profiteered", - "past_participle": "profiteered" - }, - { - "infinitive": "fumigate", - "present": "fumigates", - "gerund": "fumigating", - "past": "fumigated", - "past_participle": "fumigated" - }, - { - "infinitive": "mizzle", - "present": "mizzles", - "gerund": "mizzling", - "past": "mizzled", - "past_participle": "mizzled" - }, - { - "infinitive": "home", - "present": "homes", - "gerund": "homing", - "past": "homed", - "past_participle": "homed" - }, - { - "infinitive": "peter", - "present": "peters", - "gerund": "petering", - "past": "petered", - "past_participle": "petered" - }, - { - "infinitive": "drizzle", - "present": "drizzles", - "gerund": "drizzling", - "past": "drizzled", - "past_participle": "drizzled" - }, - { - "infinitive": "pinpoint", - "present": "pinpoints", - "gerund": "pinpointing", - "past": "pinpointed", - "past_participle": "pinpointed" - }, - { - "infinitive": "overlay", - "present": "overlays", - "gerund": "overlaying", - "past": "overlaid", - "past_participle": "overlaid" - }, - { - "infinitive": "upswing", - "present": "upswings", - "gerund": "upswinging", - "past": "upswung", - "past_participle": "upswung" - }, - { - "infinitive": "overlap", - "present": "overlaps", - "gerund": "overlapping", - "past": "overlapped", - "past_participle": "overlapped" - }, - { - "infinitive": "rubberneck", - "present": "rubbernecks", - "gerund": "rubber-necking", - "past": "rubbernecked", - "past_participle": "rubber-necked" - }, - { - "infinitive": "outgo", - "present": "outgoes", - "gerund": "outgoing", - "past": "outwent", - "past_participle": "outgone" - }, - { - "infinitive": "percolate", - "present": "percolates", - "gerund": "percolating", - "past": "percolated", - "past_participle": "percolated" - }, - { - "infinitive": "radiotelephone", - "present": "radiotelephones", - "gerund": "radiotelephoning", - "past": "radiotelephoned", - "past_participle": "radiotelephoned" - }, - { - "infinitive": "miscreate", - "present": "miscreates", - "gerund": "miscreating", - "past": "miscreated", - "past_participle": "miscreated" - }, - { - "infinitive": "prerecord", - "present": "prerecords", - "gerund": "prerecording", - "past": "prerecorded", - "past_participle": "prerecorded" - }, - { - "infinitive": "disentangle", - "present": "disentangles", - "gerund": "disentangling", - "past": "disentangled", - "past_participle": "disentangled" - }, - { - "infinitive": "superabound", - "present": "superabounds", - "gerund": "superabounding", - "past": "superabounded", - "past_participle": "superabounded" - }, - { - "infinitive": "standardize", - "present": "standardizes", - "gerund": "standardizing", - "past": "standardized", - "past_participle": "standardized" - }, - { - "infinitive": "offset", - "present": "offsets", - "gerund": "offsetting", - "past": "offset", - "past_participle": "offset" - }, - { - "infinitive": "refuge", - "present": "refuges", - "gerund": "refuging", - "past": "refuged", - "past_participle": "refuged" - }, - { - "infinitive": "eradiate", - "present": "eradiates", - "gerund": "eradiating", - "past": "eradiated", - "past_participle": "eradiated" - }, - { - "infinitive": "spot-weld", - "present": "spot-welds", - "gerund": "spot-welding", - "past": "spot-welded", - "past_participle": "spot-welded" - }, - { - "infinitive": "twirl", - "present": "twirls", - "gerund": "twirling", - "past": "twirled", - "past_participle": "twirled" - }, - { - "infinitive": "formicate", - "present": "formicates", - "gerund": "formicating", - "past": "formicated", - "past_participle": "formicated" - }, - { - "infinitive": "epitomize", - "present": "epitomizes", - "gerund": "epitomizing", - "past": "epitomized", - "past_participle": "epitomized" - }, - { - "infinitive": "fuddle", - "present": "fuddles", - "gerund": "fuddling", - "past": "fuddled", - "past_participle": "fuddled" - }, - { - "infinitive": "tongue", - "present": "tongues", - "gerund": "tonguing", - "past": "tongued", - "past_participle": "tongued" - }, - { - "infinitive": "dub", - "present": "dubs", - "gerund": "dubbing", - "past": "dubbed", - "past_participle": "dubbed" - }, - { - "infinitive": "attaint", - "present": "attaints", - "gerund": "attainting", - "past": "attainted", - "past_participle": "attainted" - }, - { - "infinitive": "articulate", - "present": "articulates", - "gerund": "articulating", - "past": "articulated", - "past_participle": "articulated" - }, - { - "infinitive": "black-lead", - "present": "black-leads", - "gerund": "black-leading", - "past": "black-leaded", - "past_participle": "black-leaded" - }, - { - "infinitive": "congregate", - "present": "congregates", - "gerund": "congregating", - "past": "congregated", - "past_participle": "congregated" - }, - { - "infinitive": "holpen", - "present": "holpens", - "gerund": "holpening", - "past": "holpened", - "past_participle": "holpened" - }, - { - "infinitive": "miscount", - "present": "miscounts", - "gerund": "miscounting", - "past": "miscounted", - "past_participle": "miscounted" - }, - { - "infinitive": "veil", - "present": "veils", - "gerund": "veiling", - "past": "veiled", - "past_participle": "veiled" - }, - { - "infinitive": "jink", - "present": "jinks", - "gerund": "jinking", - "past": "jinked", - "past_participle": "jinked" - }, - { - "infinitive": "jinx", - "present": "jinxes", - "gerund": "jinxing", - "past": "jinxed", - "past_participle": "jinxed" - }, - { - "infinitive": "backhand", - "present": "backhands", - "gerund": "backhanding", - "past": "backhanded", - "past_participle": "backhanded" - }, - { - "infinitive": "elate", - "present": "elates", - "gerund": "elating", - "past": "elated", - "past_participle": "elated" - }, - { - "infinitive": "revalue", - "present": "revalues", - "gerund": "revaluing", - "past": "revalued", - "past_participle": "revalued" - }, - { - "infinitive": "seise", - "present": "seises", - "gerund": "seising", - "past": "seised", - "past_participle": "seised" - }, - { - "infinitive": "evacuate", - "present": "evacuates", - "gerund": "evacuating", - "past": "evacuated", - "past_participle": "evacuated" - }, - { - "infinitive": "admonish", - "present": "admonishes", - "gerund": "admonishing", - "past": "admonished", - "past_participle": "admonished" - }, - { - "infinitive": "gain", - "present": "gains", - "gerund": "gaining", - "past": "gained", - "past_participle": "gained" - }, - { - "infinitive": "wince", - "present": "winces", - "gerund": "wincing", - "past": "winced", - "past_participle": "winced" - }, - { - "infinitive": "overflow", - "present": "overflows", - "gerund": "overflowing", - "past": "overflowed", - "past_participle": "overflowed" - }, - { - "infinitive": "ear", - "present": "ears", - "gerund": "earing", - "past": "eared", - "past_participle": "eared" - }, - { - "infinitive": "eat", - "present": "eats", - "gerund": "eating", - "past": "ate", - "past_participle": "eaten" - }, - { - "infinitive": "denominate", - "present": "denominates", - "gerund": "denominating", - "past": "denominated", - "past_participle": "denominated" - }, - { - "infinitive": "outgun", - "present": "outguns", - "gerund": "outgunning", - "past": "outgunned", - "past_participle": "outgunned" - }, - { - "infinitive": "unlock", - "present": "unlocks", - "gerund": "unlocking", - "past": "unlocked", - "past_participle": "unlocked" - }, - { - "infinitive": "pinprick", - "present": "pinpricks", - "gerund": "pinpricking", - "past": "pinpricked", - "past_participle": "pinpricked" - }, - { - "infinitive": "rootle", - "present": "rootles", - "gerund": "rootling", - "past": "rootled", - "past_participle": "rootled" - }, - { - "infinitive": "limit", - "present": "limits", - "gerund": "limiting", - "past": "limited", - "past_participle": "limited" - }, - { - "infinitive": "piece", - "present": "pieces", - "gerund": "piecing", - "past": "pieced", - "past_participle": "pieced" - }, - { - "infinitive": "display", - "present": "displays", - "gerund": "displaying", - "past": "displayed", - "past_participle": "displayed" - }, - { - "infinitive": "signet", - "present": "signets", - "gerund": "signeting", - "past": "signeted", - "past_participle": "signeted" - }, - { - "infinitive": "sponsor", - "present": "sponsors", - "gerund": "sponsoring", - "past": "sponsored", - "past_participle": "sponsored" - }, - { - "infinitive": "steeplechase", - "present": "steeplechases", - "gerund": "steeplechasing", - "past": "steeplechased", - "past_participle": "steeplechased" - }, - { - "infinitive": "devise", - "present": "devises", - "gerund": "devising", - "past": "devised", - "past_participle": "devised" - }, - { - "infinitive": "hinny", - "present": "hinnies", - "gerund": "hinnying", - "past": "hinnied", - "past_participle": "hinnied" - }, - { - "infinitive": "horsewhip", - "present": "horsewhips", - "gerund": "horsewhipping", - "past": "horsewhipped", - "past_participle": "horsewhipped" - }, - { - "infinitive": "Teletype", - "present": "Teletypes", - "gerund": "Teletyping", - "past": "Teletyped", - "past_participle": "Teletyped" - }, - { - "infinitive": "baksheesh", - "present": "baksheeshes", - "gerund": "baksheeshing", - "past": "baksheeshed", - "past_participle": "baksheeshed" - }, - { - "infinitive": "folio", - "present": "folios", - "gerund": "folioing", - "past": "folioed", - "past_participle": "folioed" - }, - { - "infinitive": "contest", - "present": "contests", - "gerund": "contesting", - "past": "contested", - "past_participle": "contested" - }, - { - "infinitive": "humidify", - "present": "humidifies", - "gerund": "humidifying", - "past": "humidified", - "past_participle": "humidified" - }, - { - "infinitive": "fodder", - "present": "fodders", - "gerund": "foddering", - "past": "foddered", - "past_participle": "foddered" - }, - { - "infinitive": "star", - "present": "stars", - "gerund": "starring", - "past": "starred", - "past_participle": "starred" - }, - { - "infinitive": "lubricate", - "present": "lubricates", - "gerund": "lubricating", - "past": "lubricated", - "past_participle": "lubricated" - }, - { - "infinitive": "stay", - "present": "stays", - "gerund": "staying", - "past": "stayed", - "past_participle": "stayed" - }, - { - "infinitive": "foin", - "present": "foins", - "gerund": "foining", - "past": "foined", - "past_participle": "foined" - }, - { - "infinitive": "dragoon", - "present": "dragoons", - "gerund": "dragooning", - "past": "dragooned", - "past_participle": "dragooned" - }, - { - "infinitive": "foil", - "present": "foils", - "gerund": "foiling", - "past": "foiled", - "past_participle": "foiled" - }, - { - "infinitive": "stab", - "present": "stabs", - "gerund": "stabbing", - "past": "stabbed", - "past_participle": "stabbed" - }, - { - "infinitive": "jackknife", - "present": "jack-knifes", - "gerund": "jack-knifing", - "past": "jackknifed", - "past_participle": "jack-knifed" - }, - { - "infinitive": "photosensitize", - "present": "photosensitizes", - "gerund": "photosensitizing", - "past": "photosensitized", - "past_participle": "photosensitized" - }, - { - "infinitive": "appoint", - "present": "appoints", - "gerund": "appointing", - "past": "appointed", - "past_participle": "appointed" - }, - { - "infinitive": "shunt", - "present": "shunts", - "gerund": "shunting", - "past": "shunted", - "past_participle": "shunted" - }, - { - "infinitive": "fertilize", - "present": "fertilizes", - "gerund": "fertilizing", - "past": "fertilized", - "past_participle": "fertilized" - }, - { - "infinitive": "unlive", - "present": "unlives", - "gerund": "unliving", - "past": "unlived", - "past_participle": "unlived" - }, - { - "infinitive": "inset", - "present": "insets", - "gerund": "insetting", - "past": "inset", - "past_participle": "inset" - }, - { - "infinitive": "overleap", - "present": "overleaps", - "gerund": "overleaping", - "past": "overleapt", - "past_participle": "overleapt" - }, - { - "infinitive": "pardon", - "present": "pardons", - "gerund": "pardoning", - "past": "pardoned", - "past_participle": "pardoned" - }, - { - "infinitive": "predestine", - "present": "predestines", - "gerund": "predestining", - "past": "predestined", - "past_participle": "predestined" - }, - { - "infinitive": "unfurl", - "present": "unfurls", - "gerund": "unfurling", - "past": "unfurled", - "past_participle": "unfurled" - }, - { - "infinitive": "single-step", - "present": "single-steps", - "gerund": "single-stepping", - "past": "single-stepped", - "past_participle": "single-stepped" - }, - { - "infinitive": "protest", - "present": "protests", - "gerund": "protesting", - "past": "protested", - "past_participle": "protested" - }, - { - "infinitive": "knoll", - "present": "knolls", - "gerund": "knolling", - "past": "knolled", - "past_participle": "knolled" - }, - { - "infinitive": "psycho-analyse", - "present": "psycho-analyses", - "gerund": "psycho-analysing", - "past": "psycho-analysed", - "past_participle": "psycho-analysed" - }, - { - "infinitive": "Romanize", - "present": "Romanizes", - "gerund": "Romanizing", - "past": "Romanized", - "past_participle": "Romanized" - }, - { - "infinitive": "rampart", - "present": "ramparts", - "gerund": "ramparting", - "past": "ramparted", - "past_participle": "ramparted" - }, - { - "infinitive": "toenail", - "present": "toenails", - "gerund": "toenailing", - "past": "toenailed", - "past_participle": "toenailed" - }, - { - "infinitive": "captain", - "present": "captains", - "gerund": "captaining", - "past": "captained", - "past_participle": "captained" - }, - { - "infinitive": "exenterate", - "present": "exenterates", - "gerund": "exenterating", - "past": "exenterated", - "past_participle": "exenterated" - }, - { - "infinitive": "swag", - "present": "swags", - "gerund": "swagging", - "past": "swagged", - "past_participle": "swagged" - }, - { - "infinitive": "calculate", - "present": "calculates", - "gerund": "calculating", - "past": "calculated", - "past_participle": "calculated" - }, - { - "infinitive": "swab", - "present": "swabs", - "gerund": "swabbing", - "past": "swabbed", - "past_participle": "swabbed" - }, - { - "infinitive": "disembarrass", - "present": "disembarrasses", - "gerund": "disembarrassing", - "past": "disembarrassed", - "past_participle": "disembarrassed" - }, - { - "infinitive": "swat", - "present": "swats", - "gerund": "swatting", - "past": "swatted", - "past_participle": "swatted" - }, - { - "infinitive": "unroll", - "present": "unrolls", - "gerund": "unrolling", - "past": "unrolled", - "past_participle": "unrolled" - }, - { - "infinitive": "swap", - "present": "swaps", - "gerund": "swapping", - "past": "swopped", - "past_participle": "swapped" - }, - { - "infinitive": "recycle", - "present": "recycles", - "gerund": "recycling", - "past": "recycled", - "past_participle": "recycled" - }, - { - "infinitive": "sway", - "present": "sways", - "gerund": "swaying", - "past": "swayed", - "past_participle": "swayed" - }, - { - "infinitive": "collaborate", - "present": "collaborates", - "gerund": "collaborating", - "past": "collaborated", - "past_participle": "collaborated" - }, - { - "infinitive": "rescue", - "present": "rescues", - "gerund": "rescuing", - "past": "rescued", - "past_participle": "rescued" - }, - { - "infinitive": "habituate", - "present": "habituates", - "gerund": "habituating", - "past": "habituated", - "past_participle": "habituated" - }, - { - "infinitive": "void", - "present": "voids", - "gerund": "voiding", - "past": "voided", - "past_participle": "voided" - }, - { - "infinitive": "untruss", - "present": "untrusses", - "gerund": "untrussing", - "past": "untrussed", - "past_participle": "untrussed" - }, - { - "infinitive": "redact", - "present": "redacts", - "gerund": "redacting", - "past": "redacted", - "past_participle": "redacted" - }, - { - "infinitive": "smack", - "present": "smacks", - "gerund": "smacking", - "past": "smacked", - "past_participle": "smacked" - }, - { - "infinitive": "govern", - "present": "governs", - "gerund": "governing", - "past": "governed", - "past_participle": "governed" - }, - { - "infinitive": "affect", - "present": "affects", - "gerund": "affecting", - "past": "affected", - "past_participle": "affected" - }, - { - "infinitive": "sleek", - "present": "sleeks", - "gerund": "sleeking", - "past": "sleeked", - "past_participle": "sleeked" - }, - { - "infinitive": "embroider", - "present": "embroiders", - "gerund": "embroidering", - "past": "embroidered", - "past_participle": "embroidered" - }, - { - "infinitive": "indurate", - "present": "indurates", - "gerund": "indurating", - "past": "indurated", - "past_participle": "indurated" - }, - { - "infinitive": "propend", - "present": "propends", - "gerund": "propending", - "past": "propended", - "past_participle": "propended" - }, - { - "infinitive": "boohoo", - "present": "boohoos", - "gerund": "boohooing", - "past": "boohooed", - "past_participle": "boohooed" - }, - { - "infinitive": "vector", - "present": "vectors", - "gerund": "vectoring", - "past": "vectored", - "past_participle": "vectored" - }, - { - "infinitive": "enhance", - "present": "enhances", - "gerund": "enhancing", - "past": "enhanced", - "past_participle": "enhanced" - }, - { - "infinitive": "interfile", - "present": "interfiles", - "gerund": "interfiling", - "past": "interfiled", - "past_participle": "interfiled" - }, - { - "infinitive": "rollick", - "present": "rollicks", - "gerund": "rollicking", - "past": "rollicked", - "past_participle": "rollicked" - }, - { - "infinitive": "force", - "present": "forces", - "gerund": "forcing", - "past": "forced", - "past_participle": "forced" - }, - { - "infinitive": "quilt", - "present": "quilts", - "gerund": "quilting", - "past": "quilted", - "past_participle": "quilted" - }, - { - "infinitive": "lustre", - "present": "lustres", - "gerund": "lustring", - "past": "lustred", - "past_participle": "lustred" - }, - { - "infinitive": "colligate", - "present": "colligates", - "gerund": "colligating", - "past": "colligated", - "past_participle": "colligated" - }, - { - "infinitive": "crave", - "present": "craves", - "gerund": "craving", - "past": "craved", - "past_participle": "craved" - }, - { - "infinitive": "yack", - "present": "yacks", - "gerund": "yacking", - "past": "yacked", - "past_participle": "yacked" - }, - { - "infinitive": "subordinate", - "present": "subordinates", - "gerund": "subordinating", - "past": "subordinated", - "past_participle": "subordinated" - }, - { - "infinitive": "kidnap", - "present": "kidnaps", - "gerund": "kidnapping", - "past": "kidnapped", - "past_participle": "kidnapped" - }, - { - "infinitive": "quill", - "present": "quills", - "gerund": "quilling", - "past": "quilled", - "past_participle": "quilled" - }, - { - "infinitive": "even", - "present": "evens", - "gerund": "evening", - "past": "evened", - "past_participle": "evened" - }, - { - "infinitive": "coquet", - "present": "coquets", - "gerund": "coquetting", - "past": "coquetted", - "past_participle": "coquetted" - }, - { - "infinitive": "wreck", - "present": "wrecks", - "gerund": "wrecking", - "past": "wrecked", - "past_participle": "wrecked" - }, - { - "infinitive": "unbrace", - "present": "unbraces", - "gerund": "unbracing", - "past": "unbraced", - "past_participle": "unbraced" - }, - { - "infinitive": "blow-wave", - "present": "blow-waves", - "gerund": "blow-waving", - "past": "blow-waved", - "past_participle": "blow-waved" - }, - { - "infinitive": "siege", - "present": "sieges", - "gerund": "sieging", - "past": "sieged", - "past_participle": "sieged" - }, - { - "infinitive": "haze", - "present": "hazes", - "gerund": "hazing", - "past": "hazed", - "past_participle": "hazed" - }, - { - "infinitive": "sunder", - "present": "sunders", - "gerund": "sundering", - "past": "sundered", - "past_participle": "sundered" - }, - { - "infinitive": "net", - "present": "nets", - "gerund": "netting", - "past": "netted", - "past_participle": "netted" - }, - { - "infinitive": "battledore", - "present": "battledores", - "gerund": "battledoring", - "past": "battledored", - "past_participle": "battledored" - }, - { - "infinitive": "endanger", - "present": "endangers", - "gerund": "endangering", - "past": "endangered", - "past_participle": "endangered" - }, - { - "infinitive": "mew", - "present": "mews", - "gerund": "mewing", - "past": "mewed", - "past_participle": "mewed" - }, - { - "infinitive": "disoblige", - "present": "disobliges", - "gerund": "disobliging", - "past": "disobliged", - "past_participle": "disobliged" - }, - { - "infinitive": "dree", - "present": "drees", - "gerund": "dreeing", - "past": "dreed", - "past_participle": "dreed" - }, - { - "infinitive": "interpret", - "present": "interprets", - "gerund": "interpreting", - "past": "interpreted", - "past_participle": "interpreted" - }, - { - "infinitive": "depasture", - "present": "depastures", - "gerund": "depasturing", - "past": "depastured", - "past_participle": "depastured" - }, - { - "infinitive": "taper", - "present": "tapers", - "gerund": "tapering", - "past": "tapered", - "past_participle": "tapered" - }, - { - "infinitive": "buckler", - "present": "bucklers", - "gerund": "bucklering", - "past": "bucklered", - "past_participle": "bucklered" - }, - { - "infinitive": "harass", - "present": "harasses", - "gerund": "harassing", - "past": "harassed", - "past_participle": "harassed" - }, - { - "infinitive": "permit", - "present": "permits", - "gerund": "permitting", - "past": "permitted", - "past_participle": "permitted" - }, - { - "infinitive": "pack", - "present": "packs", - "gerund": "packing", - "past": "packed", - "past_participle": "packed" - }, - { - "infinitive": "intrigue", - "present": "intrigues", - "gerund": "intriguing", - "past": "intrigued", - "past_participle": "intrigued" - }, - { - "infinitive": "excoriate", - "present": "excoriates", - "gerund": "excoriating", - "past": "excoriated", - "past_participle": "excoriated" - }, - { - "infinitive": "prelect", - "present": "prelects", - "gerund": "prelecting", - "past": "prelected", - "past_participle": "prelected" - }, - { - "infinitive": "hunch", - "present": "hunches", - "gerund": "hunching", - "past": "hunched", - "past_participle": "hunched" - }, - { - "infinitive": "campaign", - "present": "campaigns", - "gerund": "campaigning", - "past": "campaigned", - "past_participle": "campaigned" - }, - { - "infinitive": "bayonet", - "present": "bayonets", - "gerund": "bayoneting", - "past": "bayoneted", - "past_participle": "bayoneted" - }, - { - "infinitive": "dehumanize", - "present": "dehumanizes", - "gerund": "dehumanizing", - "past": "dehumanized", - "past_participle": "dehumanized" - }, - { - "infinitive": "elude", - "present": "eludes", - "gerund": "eluding", - "past": "eluded", - "past_participle": "eluded" - }, - { - "infinitive": "immix", - "present": "immixes", - "gerund": "immixing", - "past": "immixed", - "past_participle": "immixed" - }, - { - "infinitive": "worrit", - "present": "worrits", - "gerund": "worriting", - "past": "worrited", - "past_participle": "worrited" - }, - { - "infinitive": "overstuff", - "present": "overstuffs", - "gerund": "overstuffing", - "past": "overstuffed", - "past_participle": "overstuffed" - }, - { - "infinitive": "welch", - "present": "welches", - "gerund": "welching", - "past": "welched", - "past_participle": "welched" - }, - { - "infinitive": "remould", - "present": "remoulds", - "gerund": "remoulding", - "past": "remoulded", - "past_participle": "remoulded" - }, - { - "infinitive": "circumvent", - "present": "circumvents", - "gerund": "circumventing", - "past": "circumvented", - "past_participle": "circumvented" - }, - { - "infinitive": "landscape", - "present": "landscapes", - "gerund": "landscaping", - "past": "landscaped", - "past_participle": "landscaped" - }, - { - "infinitive": "mooch", - "present": "mooches", - "gerund": "mooching", - "past": "mooched", - "past_participle": "mooched" - }, - { - "infinitive": "overhear", - "present": "overhears", - "gerund": "overhearing", - "past": "overheard", - "past_participle": "overheard" - }, - { - "infinitive": "overheat", - "present": "overheats", - "gerund": "overheating", - "past": "overheated", - "past_participle": "overheated" - }, - { - "infinitive": "embrangle", - "present": "embrangles", - "gerund": "embrangling", - "past": "embrangled", - "past_participle": "embrangled" - }, - { - "infinitive": "calk", - "present": "calks", - "gerund": "calking", - "past": "calked", - "past_participle": "calked" - }, - { - "infinitive": "call", - "present": "calls", - "gerund": "calling", - "past": "called", - "past_participle": "called" - }, - { - "infinitive": "calm", - "present": "calms", - "gerund": "calming", - "past": "calmed", - "past_participle": "calmed" - }, - { - "infinitive": "recommend", - "present": "recommends", - "gerund": "recommending", - "past": "recommended", - "past_participle": "recommended" - }, - { - "infinitive": "survive", - "present": "survives", - "gerund": "surviving", - "past": "survived", - "past_participle": "survived" - }, - { - "infinitive": "type", - "present": "types", - "gerund": "typing", - "past": "typed", - "past_participle": "typed" - }, - { - "infinitive": "tell", - "present": "tells", - "gerund": "telling", - "past": "told", - "past_participle": "told" - }, - { - "infinitive": "expose", - "present": "exposes", - "gerund": "exposing", - "past": "exposed", - "past_participle": "exposed" - }, - { - "infinitive": "moulder", - "present": "moulders", - "gerund": "mouldering", - "past": "mouldered", - "past_participle": "mouldered" - }, - { - "infinitive": "warp", - "present": "warps", - "gerund": "warping", - "past": "warped", - "past_participle": "warped" - }, - { - "infinitive": "lunge", - "present": "lunges", - "gerund": "lunging", - "past": "lunged", - "past_participle": "lunged" - }, - { - "infinitive": "warm", - "present": "warms", - "gerund": "warming", - "past": "warmed", - "past_participle": "warmed" - }, - { - "infinitive": "bewray", - "present": "bewrays", - "gerund": "bewraying", - "past": "bewrayed", - "past_participle": "bewrayed" - }, - { - "infinitive": "undergird", - "present": "undergirds", - "gerund": "undergirding", - "past": "undergirded", - "past_participle": "undergirded" - }, - { - "infinitive": "sparge", - "present": "sparges", - "gerund": "sparging", - "past": "sparged", - "past_participle": "sparged" - }, - { - "infinitive": "ware", - "present": "wares", - "gerund": "waring", - "past": "wared", - "past_participle": "wared" - }, - { - "infinitive": "blindfold", - "present": "blindfolds", - "gerund": "blindfolding", - "past": "blindfolded", - "past_participle": "blindfolded" - }, - { - "infinitive": "prescind", - "present": "prescinds", - "gerund": "prescinding", - "past": "prescinded", - "past_participle": "prescinded" - }, - { - "infinitive": "hoax", - "present": "hoaxes", - "gerund": "hoaxing", - "past": "hoaxed", - "past_participle": "hoaxed" - }, - { - "infinitive": "retouch", - "present": "retouches", - "gerund": "retouching", - "past": "retouched", - "past_participle": "retouched" - }, - { - "infinitive": "restock", - "present": "restocks", - "gerund": "restocking", - "past": "restocked", - "past_participle": "restocked" - }, - { - "infinitive": "roof", - "present": "roofs", - "gerund": "roofing", - "past": "roofed", - "past_participle": "roofed" - }, - { - "infinitive": "worth", - "present": "worths", - "gerund": "worthing", - "past": "worthed", - "past_participle": "worthed" - }, - { - "infinitive": "guise", - "present": "guises", - "gerund": "guising", - "past": "guised", - "past_participle": "guised" - }, - { - "infinitive": "proofread", - "present": "proof-reads", - "gerund": "proof-reading", - "past": "proofread", - "past_participle": "proof-read" - }, - { - "infinitive": "glac_e", - "present": "glac_es", - "gerund": "glac_eing", - "past": "glac_eed", - "past_participle": "glac_eed" - }, - { - "infinitive": "endow", - "present": "endows", - "gerund": "endowing", - "past": "endowed", - "past_participle": "endowed" - }, - { - "infinitive": "crosshatch", - "present": "crosshatches", - "gerund": "crosshatching", - "past": "crosshatched", - "past_participle": "crosshatched" - }, - { - "infinitive": "defer", - "present": "defers", - "gerund": "deferring", - "past": "deferred", - "past_participle": "deferred" - }, - { - "infinitive": "give", - "present": "gives", - "gerund": "giving", - "past": "gave", - "past_participle": "given" - }, - { - "infinitive": "climax", - "present": "climaxes", - "gerund": "climaxing", - "past": "climaxed", - "past_participle": "climaxed" - }, - { - "infinitive": "slenderize", - "present": "slenderizes", - "gerund": "slenderizing", - "past": "slenderized", - "past_participle": "slenderized" - }, - { - "infinitive": "assent", - "present": "assents", - "gerund": "assenting", - "past": "assented", - "past_participle": "assented" - }, - { - "infinitive": "lure", - "present": "", - "gerund": "luring", - "past": "lured", - "past_participle": "lured" - }, - { - "infinitive": "honey", - "present": "honeys", - "gerund": "honeying", - "past": "honied", - "past_participle": "honied" - }, - { - "infinitive": "degenerate", - "present": "degenerates", - "gerund": "degenerating", - "past": "degenerated", - "past_participle": "degenerated" - }, - { - "infinitive": "rig", - "present": "rigs", - "gerund": "rigging", - "past": "rigged", - "past_participle": "rigged" - }, - { - "infinitive": "freshen", - "present": "freshens", - "gerund": "freshening", - "past": "freshened", - "past_participle": "freshened" - }, - { - "infinitive": "loathe", - "present": "loathes", - "gerund": "loathing", - "past": "loathed", - "past_participle": "loathed" - }, - { - "infinitive": "cross-fade", - "present": "cross-fades", - "gerund": "cross-fading", - "past": "cross-faded", - "past_participle": "cross-faded" - }, - { - "infinitive": "strow", - "present": "strows", - "gerund": "strowing", - "past": "strowed", - "past_participle": "strowed" - }, - { - "infinitive": "sideline", - "present": "sidelines", - "gerund": "sidelining", - "past": "sidelined", - "past_participle": "sidelined" - }, - { - "infinitive": "strop", - "present": "strops", - "gerund": "stropping", - "past": "stropped", - "past_participle": "stropped" - }, - { - "infinitive": "fribble", - "present": "fribbles", - "gerund": "fribbling", - "past": "fribbled", - "past_participle": "fribbled" - }, - { - "infinitive": "raddle", - "present": "raddles", - "gerund": "raddling", - "past": "raddled", - "past_participle": "raddled" - }, - { - "infinitive": "rib", - "present": "ribs", - "gerund": "ribbing", - "past": "ribbed", - "past_participle": "ribbed" - }, - { - "infinitive": "stroy", - "present": "stroys", - "gerund": "stroying", - "past": "stroyed", - "past_participle": "stroyed" - }, - { - "infinitive": "salivate", - "present": "salivates", - "gerund": "salivating", - "past": "salivated", - "past_participle": "salivated" - }, - { - "infinitive": "sate", - "present": "sates", - "gerund": "sating", - "past": "sated", - "past_participle": "sated" - }, - { - "infinitive": "egotrip", - "present": "egotrips'", - "gerund": "egotripping", - "past": "egotripped", - "past_participle": "egotripped" - }, - { - "infinitive": "answer", - "present": "answers", - "gerund": "answering", - "past": "answered", - "past_participle": "answered" - }, - { - "infinitive": "bedight", - "present": "bedights", - "gerund": "bedighting", - "past": "bedighted", - "past_participle": "bedighted" - }, - { - "infinitive": "construe", - "present": "construes", - "gerund": "construing", - "past": "construed", - "past_participle": "construed" - }, - { - "infinitive": "disassemble", - "present": "disassembles", - "gerund": "disassembling", - "past": "disassembled", - "past_participle": "disassembled" - }, - { - "infinitive": "misfit", - "present": "misfits", - "gerund": "misfitting", - "past": "misfitted", - "past_participle": "misfitted" - }, - { - "infinitive": "hydroplane", - "present": "hydroplanes", - "gerund": "hydroplaning", - "past": "hydroplaned", - "past_participle": "hydroplaned" - }, - { - "infinitive": "purchase", - "present": "purchases", - "gerund": "purchasing", - "past": "purchased", - "past_participle": "purchased" - }, - { - "infinitive": "attempt", - "present": "attempts", - "gerund": "attempting", - "past": "attempted", - "past_participle": "attempted" - }, - { - "infinitive": "fecundate", - "present": "fecundates", - "gerund": "fecundating", - "past": "fecundated", - "past_participle": "fecundated" - }, - { - "infinitive": "pulsate", - "present": "pulsates", - "gerund": "pulsating", - "past": "pulsated", - "past_participle": "pulsated" - }, - { - "infinitive": "oviposit", - "present": "oviposits", - "gerund": "ovipositing", - "past": "oviposited", - "past_participle": "oviposited" - }, - { - "infinitive": "thirl", - "present": "thirls", - "gerund": "thirling", - "past": "thirled", - "past_participle": "thirled" - }, - { - "infinitive": "bedazzle", - "present": "bedazzles", - "gerund": "bedazzling", - "past": "bedazzled", - "past_participle": "bedazzled" - }, - { - "infinitive": "squiggle", - "present": "squiggles", - "gerund": "squiggling", - "past": "squiggled", - "past_participle": "squiggled" - }, - { - "infinitive": "embow", - "present": "embows", - "gerund": "embowing", - "past": "embowed", - "past_participle": "embowed" - }, - { - "infinitive": "fife", - "present": "fifes", - "gerund": "fifing", - "past": "fifed", - "past_participle": "fifed" - }, - { - "infinitive": "deck", - "present": "decks", - "gerund": "decking", - "past": "decked", - "past_participle": "decked" - }, - { - "infinitive": "insnare", - "present": "insnares", - "gerund": "insnaring", - "past": "insnared", - "past_participle": "insnared" - }, - { - "infinitive": "befall", - "present": "befalls", - "gerund": "befalling", - "past": "befell", - "past_participle": "befallen" - }, - { - "infinitive": "fable", - "present": "fables", - "gerund": "fabling", - "past": "fabled", - "past_participle": "fabled" - }, - { - "infinitive": "toady", - "present": "toadies", - "gerund": "toadying", - "past": "toadied", - "past_participle": "toadied" - }, - { - "infinitive": "miscarry", - "present": "miscarries", - "gerund": "miscarrying", - "past": "miscarried", - "past_participle": "miscarried" - }, - { - "infinitive": "outleap", - "present": "outleaps", - "gerund": "outleaping", - "past": "outleaped", - "past_participle": "outleaped" - }, - { - "infinitive": "canulate", - "present": "canulates", - "gerund": "canulating", - "past": "canulated", - "past_participle": "canulated" - }, - { - "infinitive": "shackle", - "present": "shackles", - "gerund": "shackling", - "past": "shackled", - "past_participle": "shackled" - }, - { - "infinitive": "crew", - "present": "crews", - "gerund": "crewing", - "past": "crewed", - "past_participle": "crewed" - }, - { - "infinitive": "better", - "present": "betters", - "gerund": "bettering", - "past": "bettered", - "past_participle": "bettered" - }, - { - "infinitive": "persist", - "present": "persists", - "gerund": "persisting", - "past": "persisted", - "past_participle": "persisted" - }, - { - "infinitive": "carve", - "present": "carves", - "gerund": "carving", - "past": "carved", - "past_participle": "carven" - }, - { - "infinitive": "containerize", - "present": "containerizes", - "gerund": "containerizing", - "past": "containerized", - "past_participle": "containerized" - }, - { - "infinitive": "unsling", - "present": "unslings", - "gerund": "unslinging", - "past": "unslung", - "past_participle": "unslung" - }, - { - "infinitive": "overcome", - "present": "overcomes", - "gerund": "overcoming", - "past": "overcame", - "past_participle": "overcome" - }, - { - "infinitive": "misstate", - "present": "misstates", - "gerund": "misstating", - "past": "misstated", - "past_participle": "misstated" - }, - { - "infinitive": "demythologize", - "present": "demythologizes", - "gerund": "demythologizing", - "past": "demythologized", - "past_participle": "demythologized" - }, - { - "infinitive": "unthink", - "present": "unthinks", - "gerund": "unthinking", - "past": "unthought", - "past_participle": "unthought" - }, - { - "infinitive": "deglutinate", - "present": "deglutinates", - "gerund": "deglutinating", - "past": "deglutinated", - "past_participle": "deglutinated" - }, - { - "infinitive": "bankroll", - "present": "bankrolls", - "gerund": "bankrolling", - "past": "bankrolled", - "past_participle": "bankrolled" - }, - { - "infinitive": "indulge", - "present": "indulges", - "gerund": "indulging", - "past": "indulged", - "past_participle": "indulged" - }, - { - "infinitive": "rhapsodize", - "present": "rhapsodizes", - "gerund": "rhapsodizing", - "past": "rhapsodized", - "past_participle": "rhapsodized" - }, - { - "infinitive": "shirk", - "present": "shirks", - "gerund": "shirking", - "past": "shirked", - "past_participle": "shirked" - }, - { - "infinitive": "whisk", - "present": "whisks", - "gerund": "whisking", - "past": "whisked", - "past_participle": "whisked" - }, - { - "infinitive": "wend", - "present": "wends", - "gerund": "wending", - "past": "wended", - "past_participle": "wended" - }, - { - "infinitive": "exaggerate", - "present": "exaggerates", - "gerund": "exaggerating", - "past": "exaggerated", - "past_participle": "exaggerated" - }, - { - "infinitive": "mistrust", - "present": "mistrusts", - "gerund": "mistrusting", - "past": "mistrusted", - "past_participle": "mistrusted" - }, - { - "infinitive": "roast", - "present": "roasts", - "gerund": "roasting", - "past": "roasted", - "past_participle": "roasted" - }, - { - "infinitive": "demount", - "present": "demounts", - "gerund": "demounting", - "past": "demounted", - "past_participle": "demounted" - }, - { - "infinitive": "bong", - "present": "bongs", - "gerund": "bonging", - "past": "bonged", - "past_participle": "bonged" - }, - { - "infinitive": "side", - "present": "sides", - "gerund": "siding", - "past": "sided", - "past_participle": "sided" - }, - { - "infinitive": "bone", - "present": "bones", - "gerund": "boning", - "past": "boned", - "past_participle": "boned" - }, - { - "infinitive": "bond", - "present": "bonds", - "gerund": "bonding", - "past": "bonded", - "past_participle": "bonded" - }, - { - "infinitive": "powerdive", - "present": "powerdives", - "gerund": "powerdiving", - "past": "powerdived", - "past_participle": "powerdived" - }, - { - "infinitive": "improvise", - "present": "improvises", - "gerund": "improvising", - "past": "improvised", - "past_participle": "improvised" - }, - { - "infinitive": "siwash", - "present": "siwashes", - "gerund": "siwashing", - "past": "siwashed", - "past_participle": "siwashed" - }, - { - "infinitive": "vote", - "present": "votes", - "gerund": "voting", - "past": "voted", - "past_participle": "voted" - }, - { - "infinitive": "combust", - "present": "combusts", - "gerund": "combusting", - "past": "combusted", - "past_participle": "combusted" - }, - { - "infinitive": "besmear", - "present": "besmears", - "gerund": "besmearing", - "past": "besmeared", - "past_participle": "besmeared" - }, - { - "infinitive": "extract", - "present": "extracts", - "gerund": "extracting", - "past": "extracted", - "past_participle": "extracted" - }, - { - "infinitive": "inosculate", - "present": "inosculates", - "gerund": "inosculating", - "past": "inosculated", - "past_participle": "inosculated" - }, - { - "infinitive": "jell", - "present": "jells", - "gerund": "jelling", - "past": "jelled", - "past_participle": "jelled" - }, - { - "infinitive": "contend", - "present": "contends", - "gerund": "contending", - "past": "contended", - "past_participle": "contended" - }, - { - "infinitive": "decree", - "present": "decrees", - "gerund": "decreeing", - "past": "decreed", - "past_participle": "decreed" - }, - { - "infinitive": "typecast", - "present": "typecasts", - "gerund": "typecasting", - "past": "typecast", - "past_participle": "typecast" - }, - { - "infinitive": "videotape", - "present": "videotapes", - "gerund": "videotapeing", - "past": "videotapeed", - "past_participle": "videotapeed" - }, - { - "infinitive": "contraindicate", - "present": "contraindicates", - "gerund": "contraindicating", - "past": "contraindicated", - "past_participle": "contraindicated" - }, - { - "infinitive": "portend", - "present": "portends", - "gerund": "portending", - "past": "portended", - "past_participle": "portended" - }, - { - "infinitive": "devitrify", - "present": "devitrifies", - "gerund": "devitrifying", - "past": "devitrified", - "past_participle": "devitrified" - }, - { - "infinitive": "content", - "present": "contents", - "gerund": "contenting", - "past": "contented", - "past_participle": "contented" - }, - { - "infinitive": "sparkle", - "present": "sparkles", - "gerund": "sparkling", - "past": "sparkled", - "past_participle": "sparkled" - }, - { - "infinitive": "pitchfork", - "present": "pitchforks", - "gerund": "pitchforking", - "past": "pitchforked", - "past_participle": "pitchforked" - }, - { - "infinitive": "debit", - "present": "debits", - "gerund": "debiting", - "past": "debited", - "past_participle": "debited" - }, - { - "infinitive": "surprise", - "present": "surprises", - "gerund": "surprising", - "past": "surprised", - "past_participle": "surprised" - }, - { - "infinitive": "palaver", - "present": "palavers", - "gerund": "palavering", - "past": "palavered", - "past_participle": "palavered" - }, - { - "infinitive": "instigate", - "present": "instigates", - "gerund": "instigating", - "past": "instigated", - "past_participle": "instigated" - }, - { - "infinitive": "overrefine", - "present": "overrefines", - "gerund": "overrefining", - "past": "overrefined", - "past_participle": "overrefined" - }, - { - "infinitive": "playact", - "present": "playacts", - "gerund": "playacting", - "past": "playacted", - "past_participle": "playacted" - }, - { - "infinitive": "grease", - "present": "greases", - "gerund": "greasing", - "past": "greased", - "past_participle": "greased" - }, - { - "infinitive": "totalize", - "present": "totalizes", - "gerund": "totalizing", - "past": "totalized", - "past_participle": "totalized" - }, - { - "infinitive": "resume", - "present": "resumes", - "gerund": "resuming", - "past": "resumed", - "past_participle": "resumed" - }, - { - "infinitive": "revenge", - "present": "revenges", - "gerund": "revenging", - "past": "revenged", - "past_participle": "revenged" - }, - { - "infinitive": "dodder", - "present": "dodders", - "gerund": "doddering", - "past": "doddered", - "past_participle": "doddered" - }, - { - "infinitive": "bestow", - "present": "bestows", - "gerund": "bestowing", - "past": "bestowed", - "past_participle": "bestowed" - }, - { - "infinitive": "struggle", - "present": "struggles", - "gerund": "struggling", - "past": "struggled", - "past_participle": "struggled" - }, - { - "infinitive": "abate", - "present": "abates", - "gerund": "abating", - "past": "abated", - "past_participle": "abated" - }, - { - "infinitive": "overemphasize", - "present": "overemphasizes", - "gerund": "overemphasizing", - "past": "overemphasized", - "past_participle": "overemphasized" - }, - { - "infinitive": "entrap", - "present": "entraps", - "gerund": "entrapping", - "past": "entrapped", - "past_participle": "entrapped" - }, - { - "infinitive": "infix", - "present": "infixes", - "gerund": "infixing", - "past": "infixed", - "past_participle": "infixed" - }, - { - "infinitive": "chortle", - "present": "chortles", - "gerund": "chortling", - "past": "chortled", - "past_participle": "chortled" - }, - { - "infinitive": "lour", - "present": "lours", - "gerund": "louring", - "past": "loured", - "past_participle": "loured" - }, - { - "infinitive": "lout", - "present": "louts", - "gerund": "louting", - "past": "louted", - "past_participle": "louted" - }, - { - "infinitive": "scrounge", - "present": "scrounges", - "gerund": "scrounging", - "past": "scrounged", - "past_participle": "scrounged" - }, - { - "infinitive": "steward", - "present": "stewards", - "gerund": "stewarding", - "past": "stewarded", - "past_participle": "stewarded" - }, - { - "infinitive": "skyjack", - "present": "skyjacks", - "gerund": "skyjacking", - "past": "skyjacked", - "past_participle": "skyjacked" - }, - { - "infinitive": "fleck", - "present": "flecks", - "gerund": "flecking", - "past": "flecked", - "past_participle": "flecked" - }, - { - "infinitive": "attune", - "present": "attunes", - "gerund": "attuning", - "past": "attuned", - "past_participle": "attuned" - }, - { - "infinitive": "heckle", - "present": "heckles", - "gerund": "heckling", - "past": "heckled", - "past_participle": "heckled" - }, - { - "infinitive": "inbred", - "present": "", - "gerund": "", - "past": "inbred", - "past_participle": "inbred" - }, - { - "infinitive": "repoint", - "present": "repoints", - "gerund": "repointing", - "past": "repointed", - "past_participle": "repointed" - }, - { - "infinitive": "grade", - "present": "grades", - "gerund": "grading", - "past": "graded", - "past_participle": "graded" - }, - { - "infinitive": "hoop", - "present": "hoops", - "gerund": "hooping", - "past": "hooped", - "past_participle": "hooped" - }, - { - "infinitive": "superpose", - "present": "superposes", - "gerund": "superposing", - "past": "superposed", - "past_participle": "superposed" - }, - { - "infinitive": "reassure", - "present": "reassures", - "gerund": "reassuring", - "past": "reassured", - "past_participle": "reassured" - }, - { - "infinitive": "hoot", - "present": "hoots", - "gerund": "hooting", - "past": "hooted", - "past_participle": "hooted" - }, - { - "infinitive": "hook", - "present": "hooks", - "gerund": "hooking", - "past": "hooked", - "past_participle": "hooked" - }, - { - "infinitive": "synthetize", - "present": "synthetizes", - "gerund": "synthetizing", - "past": "synthetized", - "past_participle": "synthetized" - }, - { - "infinitive": "deplete", - "present": "depletes", - "gerund": "depleting", - "past": "depleted", - "past_participle": "depleted" - }, - { - "infinitive": "enumerate", - "present": "enumerates", - "gerund": "enumerating", - "past": "enumerated", - "past_participle": "enumerated" - }, - { - "infinitive": "radiate", - "present": "radiates", - "gerund": "radiating", - "past": "radiated", - "past_participle": "radiated" - }, - { - "infinitive": "ditch", - "present": "ditches", - "gerund": "ditching", - "past": "ditched", - "past_participle": "ditched" - }, - { - "infinitive": "hoof", - "present": "hoofs", - "gerund": "hoofing", - "past": "hoofed", - "past_participle": "hoofed" - }, - { - "infinitive": "hood", - "present": "hoods", - "gerund": "hooding", - "past": "hooded", - "past_participle": "hooded" - }, - { - "infinitive": "discompose", - "present": "discomposes", - "gerund": "discomposing", - "past": "discomposed", - "past_participle": "discomposed" - }, - { - "infinitive": "debase", - "present": "debases", - "gerund": "debasing", - "past": "debased", - "past_participle": "debased" - }, - { - "infinitive": "acquaint", - "present": "acquaints", - "gerund": "acquainting", - "past": "acquainted", - "past_participle": "acquainted" - }, - { - "infinitive": "scrape", - "present": "scrapes", - "gerund": "scraping", - "past": "scraped", - "past_participle": "scraped" - }, - { - "infinitive": "wreak", - "present": "wreaks", - "gerund": "wreaking", - "past": "wreaked", - "past_participle": "wreaked" - }, - { - "infinitive": "sidle", - "present": "sidles", - "gerund": "sidling", - "past": "sidled", - "past_participle": "sidled" - }, - { - "infinitive": "brabble", - "present": "brabbles", - "gerund": "brabbling", - "past": "brabbled", - "past_participle": "brabbled" - }, - { - "infinitive": "brainwash", - "present": "brainwashes", - "gerund": "brainwashing", - "past": "brainwashed", - "past_participle": "brainwashed" - }, - { - "infinitive": "dwell", - "present": "dwells", - "gerund": "dwelling", - "past": "dwelt", - "past_participle": "dwelt" - }, - { - "infinitive": "mutate", - "present": "mutates", - "gerund": "mutating", - "past": "mutated", - "past_participle": "mutated" - }, - { - "infinitive": "reprobate", - "present": "reprobates", - "gerund": "reprobating", - "past": "reprobated", - "past_participle": "reprobated" - }, - { - "infinitive": "foreclose", - "present": "forecloses", - "gerund": "foreclosing", - "past": "foreclosed", - "past_participle": "foreclosed" - }, - { - "infinitive": "touchtype", - "present": "touchtypes", - "gerund": "touchtyping", - "past": "touchtyped", - "past_participle": "touchtyped" - }, - { - "infinitive": "gyp", - "present": "gyps", - "gerund": "gypping", - "past": "gypped", - "past_participle": "gypped" - }, - { - "infinitive": "cuirass", - "present": "cuirasses", - "gerund": "cuirassing", - "past": "cuirassed", - "past_participle": "cuirassed" - }, - { - "infinitive": "distance", - "present": "distances", - "gerund": "distancing", - "past": "distanced", - "past_participle": "distanced" - }, - { - "infinitive": "affront", - "present": "affronts", - "gerund": "affronting", - "past": "affronted", - "past_participle": "affronted" - }, - { - "infinitive": "dredge", - "present": "dredges", - "gerund": "dredging", - "past": "dredged", - "past_participle": "dredged" - }, - { - "infinitive": "sky-rocket", - "present": "sky-rockets", - "gerund": "sky-rocketing", - "past": "skyrocketed", - "past_participle": "sky-rocketed" - }, - { - "infinitive": "legalize", - "present": "legalizes", - "gerund": "legalizing", - "past": "legalized", - "past_participle": "legalized" - }, - { - "infinitive": "matter", - "present": "matters", - "gerund": "mattering", - "past": "mattered", - "past_participle": "mattered" - }, - { - "infinitive": "pitapat", - "present": "pitapats", - "gerund": "pitapatting", - "past": "pitapatted", - "past_participle": "pitapatted" - }, - { - "infinitive": "mammock", - "present": "mammocks", - "gerund": "mammocking", - "past": "mammocked", - "past_participle": "mammocked" - }, - { - "infinitive": "espouse", - "present": "espouses", - "gerund": "espousing", - "past": "espoused", - "past_participle": "espoused" - }, - { - "infinitive": "exorcize", - "present": "exorcizes", - "gerund": "exorcizing", - "past": "exorcized", - "past_participle": "exorcized" - }, - { - "infinitive": "churr", - "present": "churrs", - "gerund": "churring", - "past": "churred", - "past_participle": "churred" - }, - { - "infinitive": "quench", - "present": "quenches", - "gerund": "quenching", - "past": "quenched", - "past_participle": "quenched" - }, - { - "infinitive": "mind", - "present": "minds", - "gerund": "minding", - "past": "minded", - "past_participle": "minded" - }, - { - "infinitive": "mine", - "present": "mines", - "gerund": "mining", - "past": "mined", - "past_participle": "mined" - }, - { - "infinitive": "ginger", - "present": "gingers", - "gerund": "gingering", - "past": "gingered", - "past_participle": "gingered" - }, - { - "infinitive": "seed", - "present": "seeds", - "gerund": "seeding", - "past": "seeded", - "past_participle": "seeded" - }, - { - "infinitive": "seem", - "present": "seems", - "gerund": "seeming", - "past": "seemed", - "past_participle": "seemed" - }, - { - "infinitive": "churn", - "present": "churns", - "gerund": "churning", - "past": "churned", - "past_participle": "churned" - }, - { - "infinitive": "mint", - "present": "mints", - "gerund": "minting", - "past": "minted", - "past_participle": "minted" - }, - { - "infinitive": "unfasten", - "present": "unfastens", - "gerund": "unfastening", - "past": "unfastened", - "past_participle": "unfastened" - }, - { - "infinitive": "wabble", - "present": "wabbles", - "gerund": "wabbling", - "past": "wabbled", - "past_participle": "wabbled" - }, - { - "infinitive": "reprieve", - "present": "reprieves", - "gerund": "reprieving", - "past": "reprieved", - "past_participle": "reprieved" - }, - { - "infinitive": "horde", - "present": "hordes", - "gerund": "hording", - "past": "horded", - "past_participle": "horded" - }, - { - "infinitive": "alibi", - "present": "alibis", - "gerund": "alibiing", - "past": "alibied", - "past_participle": "alibied" - }, - { - "infinitive": "draggle", - "present": "draggles", - "gerund": "draggling", - "past": "draggled", - "past_participle": "draggled" - }, - { - "infinitive": "divulge", - "present": "divulges", - "gerund": "divulging", - "past": "divulged", - "past_participle": "divulged" - }, - { - "infinitive": "desist", - "present": "desists", - "gerund": "desisting", - "past": "desisted", - "past_participle": "desisted" - }, - { - "infinitive": "ransack", - "present": "ransacks", - "gerund": "ransacking", - "past": "ransacked", - "past_participle": "ransacked" - }, - { - "infinitive": "narcotize", - "present": "narcotizes", - "gerund": "narcotizing", - "past": "narcotized", - "past_participle": "narcotized" - }, - { - "infinitive": "flense", - "present": "flenses", - "gerund": "flensing", - "past": "flensed", - "past_participle": "flensed" - }, - { - "infinitive": "scarify", - "present": "scarifies", - "gerund": "scarifying", - "past": "scarified", - "past_participle": "scarified" - }, - { - "infinitive": "iterate", - "present": "iterates", - "gerund": "iterating", - "past": "iterated", - "past_participle": "iterated" - }, - { - "infinitive": "subtotal", - "present": "subtotals", - "gerund": "subtotalling", - "past": "subtotalled", - "past_participle": "subtotalled" - }, - { - "infinitive": "exonerate", - "present": "exonerates", - "gerund": "exonerating", - "past": "exonerated", - "past_participle": "exonerated" - }, - { - "infinitive": "blacklist", - "present": "blacklists", - "gerund": "blacklisting", - "past": "blacklisted", - "past_participle": "blacklisted" - }, - { - "infinitive": "mitigate", - "present": "mitigates", - "gerund": "mitigating", - "past": "mitigated", - "past_participle": "mitigated" - }, - { - "infinitive": "euphemize", - "present": "euphemizes", - "gerund": "euphemizing", - "past": "euphemized", - "past_participle": "euphemized" - }, - { - "infinitive": "bypass", - "present": "bypasses'", - "gerund": "by-passing", - "past": "bypassed", - "past_participle": "by-passed" - }, - { - "infinitive": "entrain", - "present": "entrains", - "gerund": "entraining", - "past": "entrained", - "past_participle": "entrained" - }, - { - "infinitive": "alarm", - "present": "alarms", - "gerund": "alarming", - "past": "alarmed", - "past_participle": "alarmed" - }, - { - "infinitive": "dog", - "present": "dogs", - "gerund": "dogging", - "past": "dogged", - "past_participle": "dogged" - }, - { - "infinitive": "vizor", - "present": "vizors", - "gerund": "vizoring", - "past": "vizored", - "past_participle": "vizored" - }, - { - "infinitive": "digress", - "present": "digresses", - "gerund": "digressing", - "past": "digressed", - "past_participle": "digressed" - }, - { - "infinitive": "constrict", - "present": "constricts", - "gerund": "constricting", - "past": "constricted", - "past_participle": "constricted" - }, - { - "infinitive": "throwaway", - "present": "throwaways", - "gerund": "throwawaying", - "past": "throwawayed", - "past_participle": "throwawayed" - }, - { - "infinitive": "scotch", - "present": "scotches", - "gerund": "scotching", - "past": "scotched", - "past_participle": "scotched" - }, - { - "infinitive": "dow", - "present": "dows", - "gerund": "dowing", - "past": "dowed", - "past_participle": "dowed" - }, - { - "infinitive": "dot", - "present": "dots", - "gerund": "dotting", - "past": "dotted", - "past_participle": "dotted" - }, - { - "infinitive": "discontent", - "present": "discontents", - "gerund": "discontenting", - "past": "discontented", - "past_participle": "discontented" - }, - { - "infinitive": "hunger", - "present": "hungers", - "gerund": "hungering", - "past": "hungered", - "past_participle": "hungered" - }, - { - "infinitive": "rapture", - "present": "raptures", - "gerund": "rapturing", - "past": "raptured", - "past_participle": "raptured" - }, - { - "infinitive": "spangle", - "present": "spangles", - "gerund": "spangling", - "past": "spangled", - "past_participle": "spangled" - }, - { - "infinitive": "probe", - "present": "probes", - "gerund": "probing", - "past": "probed", - "past_participle": "probed" - }, - { - "infinitive": "bespread", - "present": "bespreads", - "gerund": "bespreading", - "past": "bespreaded", - "past_participle": "bespreaded" - }, - { - "infinitive": "chord", - "present": "chords", - "gerund": "chording", - "past": "chorded", - "past_participle": "chorded" - }, - { - "infinitive": "camphorate", - "present": "camphorates", - "gerund": "camphorating", - "past": "camphorated", - "past_participle": "camphorated" - }, - { - "infinitive": "subvene", - "present": "subvenes", - "gerund": "subvening", - "past": "subvened", - "past_participle": "subvened" - }, - { - "infinitive": "capitulate", - "present": "capitulates", - "gerund": "capitulating", - "past": "capitulated", - "past_participle": "capitulated" - }, - { - "infinitive": "acquit", - "present": "acquits", - "gerund": "acquitting", - "past": "acquitted", - "past_participle": "acquitted" - }, - { - "infinitive": "overtask", - "present": "overtasks", - "gerund": "overtasking", - "past": "overtasked", - "past_participle": "overtasked" - }, - { - "infinitive": "cleanse", - "present": "cleanses", - "gerund": "cleansing", - "past": "cleansed", - "past_participle": "cleansed" - }, - { - "infinitive": "explain", - "present": "explains", - "gerund": "explaining", - "past": "explained", - "past_participle": "explained" - }, - { - "infinitive": "cripple", - "present": "cripples", - "gerund": "crippling", - "past": "crippled", - "past_participle": "crippled" - }, - { - "infinitive": "sugar", - "present": "sugars", - "gerund": "sugaring", - "past": "sugared", - "past_participle": "sugared" - }, - { - "infinitive": "mutualize", - "present": "mutualizes", - "gerund": "mutualizing", - "past": "mutualized", - "past_participle": "mutualized" - }, - { - "infinitive": "integrate", - "present": "integrates", - "gerund": "integrating", - "past": "integrated", - "past_participle": "integrated" - }, - { - "infinitive": "hoard", - "present": "hoards", - "gerund": "hoarding", - "past": "hoarded", - "past_participle": "hoarded" - }, - { - "infinitive": "razor-cut", - "present": "razor-cuts", - "gerund": "razor-cutting", - "past": "razor-cut", - "past_participle": "razor-cut" - }, - { - "infinitive": "patter", - "present": "patters", - "gerund": "pattering", - "past": "pattered", - "past_participle": "pattered" - }, - { - "infinitive": "stot", - "present": "stots", - "gerund": "stotting", - "past": "stotted", - "past_participle": "stotted" - }, - { - "infinitive": "deforest", - "present": "deforests", - "gerund": "deforesting", - "past": "deforested", - "past_participle": "deforested" - }, - { - "infinitive": "blur", - "present": "blurs", - "gerund": "blurring", - "past": "blurred", - "past_participle": "blurred" - }, - { - "infinitive": "stop", - "present": "stops", - "gerund": "stopping", - "past": "stopped", - "past_participle": "stopped" - }, - { - "infinitive": "perceive", - "present": "perceives", - "gerund": "perceiving", - "past": "perceived", - "past_participle": "perceived" - }, - { - "infinitive": "coast", - "present": "coasts", - "gerund": "coasting", - "past": "coasted", - "past_participle": "coasted" - }, - { - "infinitive": "meditate", - "present": "meditates", - "gerund": "meditating", - "past": "meditated", - "past_participle": "meditated" - }, - { - "infinitive": "subminiaturize", - "present": "subminiaturizes", - "gerund": "subminiaturizing", - "past": "subminiaturized", - "past_participle": "subminiaturized" - }, - { - "infinitive": "comply", - "present": "complies", - "gerund": "complying", - "past": "complied", - "past_participle": "complied" - }, - { - "infinitive": "bat", - "present": "bats", - "gerund": "batting", - "past": "batted", - "past_participle": "batted" - }, - { - "infinitive": "bar", - "present": "bars", - "gerund": "barring", - "past": "barred", - "past_participle": "barred" - }, - { - "infinitive": "braze", - "present": "brazes", - "gerund": "brazing", - "past": "brazed", - "past_participle": "brazed" - }, - { - "infinitive": "bay", - "present": "bays", - "gerund": "baying", - "past": "bayed", - "past_participle": "bayed" - }, - { - "infinitive": "bag", - "present": "bags", - "gerund": "bagging", - "past": "bagged", - "past_participle": "bagged" - }, - { - "infinitive": "troop", - "present": "troops", - "gerund": "trooping", - "past": "trooped", - "past_participle": "trooped" - }, - { - "infinitive": "baa", - "present": "baas", - "gerund": "baaing", - "past": "baaed", - "past_participle": "baaed" - }, - { - "infinitive": "ban", - "present": "bans", - "gerund": "banning", - "past": "banned", - "past_participle": "banned" - }, - { - "infinitive": "enchant", - "present": "enchants", - "gerund": "enchanting", - "past": "enchanted", - "past_participle": "enchanted" - }, - { - "infinitive": "attest", - "present": "attests", - "gerund": "attesting", - "past": "attested", - "past_participle": "attested" - }, - { - "infinitive": "reference", - "present": "references", - "gerund": "referencing", - "past": "referenced", - "past_participle": "referenced" - }, - { - "infinitive": "imitate", - "present": "imitates", - "gerund": "imitating", - "past": "imitated", - "past_participle": "imitated" - }, - { - "infinitive": "prophesy", - "present": "prophesies", - "gerund": "prophesying", - "past": "prophesied", - "past_participle": "prophesied" - }, - { - "infinitive": "allure", - "present": "allures", - "gerund": "alluring", - "past": "allured", - "past_participle": "allured" - }, - { - "infinitive": "insalivate", - "present": "insalivates", - "gerund": "insalivating", - "past": "insalivated", - "past_participle": "insalivated" - }, - { - "infinitive": "decerebrate", - "present": "decerebrates", - "gerund": "decerebrating", - "past": "decerebrated", - "past_participle": "decerebrated" - }, - { - "infinitive": "subject", - "present": "subjects", - "gerund": "subjecting", - "past": "subjected", - "past_participle": "subjected" - }, - { - "infinitive": "misrule", - "present": "misrules", - "gerund": "misruling", - "past": "misruled", - "past_participle": "misruled" - }, - { - "infinitive": "snuff", - "present": "snuffs", - "gerund": "snuffing", - "past": "snuffed", - "past_participle": "snuffed" - }, - { - "infinitive": "hydrolyze", - "present": "hydrolyzes", - "gerund": "hydrolyzing", - "past": "hydrolyzed", - "past_participle": "hydrolyzed" - }, - { - "infinitive": "sain", - "present": "sains", - "gerund": "saining", - "past": "sained", - "past_participle": "sained" - }, - { - "infinitive": "scrap", - "present": "scraps", - "gerund": "scrapping", - "past": "scrapped", - "past_participle": "scrapped" - }, - { - "infinitive": "sail", - "present": "sails", - "gerund": "sailing", - "past": "sailed", - "past_participle": "sailed" - }, - { - "infinitive": "disprove", - "present": "disproves", - "gerund": "disproving", - "past": "disproved", - "past_participle": "disproved" - }, - { - "infinitive": "scram", - "present": "scrams", - "gerund": "scramming", - "past": "scrammed", - "past_participle": "scrammed" - }, - { - "infinitive": "unriddle", - "present": "unriddles", - "gerund": "unriddling", - "past": "unriddled", - "past_participle": "unriddled" - }, - { - "infinitive": "scrag", - "present": "scrags", - "gerund": "scragging", - "past": "scragged", - "past_participle": "scragged" - }, - { - "infinitive": "juxtapose", - "present": "juxtaposes", - "gerund": "juxtaposing", - "past": "juxtaposed", - "past_participle": "juxtaposed" - }, - { - "infinitive": "personate", - "present": "personates", - "gerund": "personating", - "past": "personated", - "past_participle": "personated" - }, - { - "infinitive": "bemuse", - "present": "bemuses", - "gerund": "bemusing", - "past": "bemused", - "past_participle": "bemused" - }, - { - "infinitive": "craunch", - "present": "craunches", - "gerund": "craunching", - "past": "craunched", - "past_participle": "craunched" - }, - { - "infinitive": "sulphonate", - "present": "sulphonates", - "gerund": "sulphonating", - "past": "sulphonated", - "past_participle": "sulphonated" - }, - { - "infinitive": "excavate", - "present": "excavates", - "gerund": "excavating", - "past": "excavated", - "past_participle": "excavated" - }, - { - "infinitive": "laze", - "present": "lazes", - "gerund": "lazing", - "past": "lazed", - "past_participle": "lazed" - }, - { - "infinitive": "socialize", - "present": "socializes", - "gerund": "socializing", - "past": "socialized", - "past_participle": "socialized" - }, - { - "infinitive": "short-list", - "present": "short-lists", - "gerund": "short-listing", - "past": "short-listed", - "past_participle": "short-listed" - }, - { - "infinitive": "botch", - "present": "botches", - "gerund": "botching", - "past": "botched", - "past_participle": "botched" - }, - { - "infinitive": "synopsize", - "present": "synopsizes", - "gerund": "synopsizing", - "past": "synopsized", - "past_participle": "synopsized" - }, - { - "infinitive": "discommode", - "present": "discommodes", - "gerund": "discommoding", - "past": "discommoded", - "past_participle": "discommoded" - }, - { - "infinitive": "monopolize", - "present": "monopolizes", - "gerund": "monopolizing", - "past": "monopolized", - "past_participle": "monopolized" - }, - { - "infinitive": "estreat", - "present": "estreats", - "gerund": "estreating", - "past": "estreated", - "past_participle": "estreated" - }, - { - "infinitive": "regrate", - "present": "regrates", - "gerund": "regrating", - "past": "regrated", - "past_participle": "regrated" - }, - { - "infinitive": "burthen", - "present": "burthens", - "gerund": "burthening", - "past": "burthened", - "past_participle": "burthened" - }, - { - "infinitive": "eloin", - "present": "eloins", - "gerund": "eloining", - "past": "eloined", - "past_participle": "eloined" - }, - { - "infinitive": "burble", - "present": "burbles", - "gerund": "burbling", - "past": "burbled", - "past_participle": "burbled" - }, - { - "infinitive": "cobble", - "present": "cobbles", - "gerund": "cobbling", - "past": "cobbled", - "past_participle": "cobbled" - }, - { - "infinitive": "whisper", - "present": "whispers", - "gerund": "whispering", - "past": "whispered", - "past_participle": "whispered" - }, - { - "infinitive": "foray", - "present": "forays", - "gerund": "foraying", - "past": "forayed", - "past_participle": "forayed" - }, - { - "infinitive": "relumine", - "present": "relumines", - "gerund": "relumining", - "past": "relumined", - "past_participle": "relumined" - }, - { - "infinitive": "accustom", - "present": "accustoms", - "gerund": "accustoming", - "past": "accustomed", - "past_participle": "accustomed" - }, - { - "infinitive": "pupate", - "present": "pupates", - "gerund": "pupating", - "past": "pupated", - "past_participle": "pupated" - }, - { - "infinitive": "recur", - "present": "recurs", - "gerund": "recurring", - "past": "recurred", - "past_participle": "recurred" - }, - { - "infinitive": "regenerate", - "present": "regenerates", - "gerund": "regenerating", - "past": "regenerated", - "past_participle": "regenerated" - }, - { - "infinitive": "erect", - "present": "erects", - "gerund": "erecting", - "past": "erected", - "past_participle": "erected" - }, - { - "infinitive": "chelp", - "present": "chelps", - "gerund": "chelping", - "past": "chelped", - "past_participle": "chelped" - }, - { - "infinitive": "ting", - "present": "tings", - "gerund": "tinging", - "past": "tinged", - "past_participle": "tinged" - }, - { - "infinitive": "commission", - "present": "commissions", - "gerund": "commissioning", - "past": "commissioned", - "past_participle": "commissioned" - }, - { - "infinitive": "trigger", - "present": "triggers", - "gerund": "triggering", - "past": "triggered", - "past_participle": "triggered" - }, - { - "infinitive": "replicate", - "present": "replicates", - "gerund": "replicating", - "past": "replicated", - "past_participle": "replicated" - }, - { - "infinitive": "interest", - "present": "interests", - "gerund": "interesting", - "past": "interested", - "past_participle": "interested" - }, - { - "infinitive": "chug", - "present": "chugs", - "gerund": "chugging", - "past": "chugged", - "past_participle": "chugged" - }, - { - "infinitive": "wheedle", - "present": "wheedles", - "gerund": "wheedling", - "past": "wheedled", - "past_participle": "wheedled" - }, - { - "infinitive": "mushroom", - "present": "mushrooms", - "gerund": "mushrooming", - "past": "mushroomed", - "past_participle": "mushroomed" - }, - { - "infinitive": "suppress", - "present": "suppresses", - "gerund": "suppressing", - "past": "suppressed", - "past_participle": "suppressed" - }, - { - "infinitive": "chum", - "present": "chums", - "gerund": "chumming", - "past": "chummed", - "past_participle": "chummed" - }, - { - "infinitive": "disgruntle", - "present": "disgruntles", - "gerund": "disgruntling", - "past": "disgruntled", - "past_participle": "disgruntled" - }, - { - "infinitive": "deepen", - "present": "deepens", - "gerund": "deepening", - "past": "deepened", - "past_participle": "deepened" - }, - { - "infinitive": "downplay", - "present": "downplays", - "gerund": "downplaying", - "past": "downplayed", - "past_participle": "downplayed" - }, - { - "infinitive": "diffract", - "present": "diffracts", - "gerund": "diffracting", - "past": "diffracted", - "past_participle": "diffracted" - }, - { - "infinitive": "intubate", - "present": "intubates", - "gerund": "intubating", - "past": "intubated", - "past_participle": "intubated" - }, - { - "infinitive": "originate", - "present": "originates", - "gerund": "originating", - "past": "originated", - "past_participle": "originated" - }, - { - "infinitive": "chainsmoke", - "present": "chainsmokes", - "gerund": "chainsmoking", - "past": "chainsmoked", - "past_participle": "chainsmoked" - }, - { - "infinitive": "near", - "present": "nears", - "gerund": "nearing", - "past": "neared", - "past_participle": "neared" - }, - { - "infinitive": "suppose", - "present": "supposes", - "gerund": "supposing", - "past": "supposed", - "past_participle": "supposed" - }, - { - "infinitive": "convalesce", - "present": "convalesces", - "gerund": "convalescing", - "past": "convalesced", - "past_participle": "convalesced" - }, - { - "infinitive": "balance", - "present": "balances", - "gerund": "balancing", - "past": "balanced", - "past_participle": "balanced" - }, - { - "infinitive": "mangle", - "present": "mangles", - "gerund": "mangling", - "past": "mangled", - "past_participle": "mangled" - }, - { - "infinitive": "anchor", - "present": "anchors", - "gerund": "anchoring", - "past": "anchored", - "past_participle": "anchored" - }, - { - "infinitive": "spawn", - "present": "spawns", - "gerund": "spawning", - "past": "spawned", - "past_participle": "spawned" - }, - { - "infinitive": "upgrade", - "present": "upgrades", - "gerund": "upgrading", - "past": "upgraded", - "past_participle": "upgraded" - }, - { - "infinitive": "cane", - "present": "canes", - "gerund": "caning", - "past": "caned", - "past_participle": "caned" - }, - { - "infinitive": "recuperate", - "present": "recuperates", - "gerund": "recuperating", - "past": "recuperated", - "past_participle": "recuperated" - }, - { - "infinitive": "womanize", - "present": "womanizes", - "gerund": "womanizing", - "past": "womanized", - "past_participle": "womanized" - }, - { - "infinitive": "remount", - "present": "remounts", - "gerund": "remounting", - "past": "remounted", - "past_participle": "remounted" - }, - { - "infinitive": "jess", - "present": "jesses", - "gerund": "jessing", - "past": "jessed", - "past_participle": "jessed" - }, - { - "infinitive": "canter", - "present": "cants", - "gerund": "canting", - "past": "canted", - "past_participle": "canted" - }, - { - "infinitive": "lyophilize", - "present": "lyophilizes", - "gerund": "lyophilizing", - "past": "lyophilized", - "past_participle": "lyophilized" - }, - { - "infinitive": "jest", - "present": "jests", - "gerund": "jesting", - "past": "jested", - "past_participle": "jested" - }, - { - "infinitive": "mouse", - "present": "mouses", - "gerund": "mousing", - "past": "moused", - "past_participle": "moused" - }, - { - "infinitive": "disappear", - "present": "disappears", - "gerund": "disappearing", - "past": "disappeared", - "past_participle": "disappeared" - }, - { - "infinitive": "abscess", - "present": "abscesses", - "gerund": "abscessing", - "past": "abscessed", - "past_participle": "abscessed" - }, - { - "infinitive": "growl", - "present": "growls", - "gerund": "growling", - "past": "growled", - "past_participle": "growled" - }, - { - "infinitive": "reimport", - "present": "reimports", - "gerund": "reimporting", - "past": "reimported", - "past_participle": "reimported" - }, - { - "infinitive": "make", - "present": "makes", - "gerund": "making", - "past": "made", - "past_participle": "made" - }, - { - "infinitive": "costar", - "present": "costars", - "gerund": "costarring", - "past": "costarred", - "past_participle": "costarred" - }, - { - "infinitive": "quant", - "present": "quants", - "gerund": "quanting", - "past": "quanted", - "past_participle": "quanted" - }, - { - "infinitive": "belly", - "present": "bellies", - "gerund": "bellying", - "past": "bellied", - "past_participle": "bellied" - }, - { - "infinitive": "contaminate", - "present": "contaminates", - "gerund": "contaminating", - "past": "contaminated", - "past_participle": "contaminated" - }, - { - "infinitive": "sodden", - "present": "soddens", - "gerund": "soddening", - "past": "soddened", - "past_participle": "soddened" - }, - { - "infinitive": "surprint", - "present": "surprints", - "gerund": "surprinting", - "past": "surprinted", - "past_participle": "surprinted" - }, - { - "infinitive": "evolve", - "present": "evolves", - "gerund": "evolving", - "past": "evolved", - "past_participle": "evolved" - }, - { - "infinitive": "smoke", - "present": "smokes", - "gerund": "smoking", - "past": "smoked", - "past_participle": "smoked" - }, - { - "infinitive": "kip", - "present": "kips", - "gerund": "kipping", - "past": "kipped", - "past_participle": "kipped" - }, - { - "infinitive": "delight", - "present": "delights", - "gerund": "delighting", - "past": "delighted", - "past_participle": "delighted" - }, - { - "infinitive": "consternate", - "present": "consternates", - "gerund": "consternating", - "past": "consternated", - "past_participle": "consternated" - }, - { - "infinitive": "misconstrue", - "present": "misconstrues", - "gerund": "misconstruing", - "past": "misconstrued", - "past_participle": "misconstrued" - }, - { - "infinitive": "ruff", - "present": "ruffs", - "gerund": "ruffing", - "past": "ruffed", - "past_participle": "ruffed" - }, - { - "infinitive": "kid", - "present": "kids", - "gerund": "kidding", - "past": "kidded", - "past_participle": "kidded" - }, - { - "infinitive": "butter", - "present": "butters", - "gerund": "buttering", - "past": "buttered", - "past_participle": "buttered" - }, - { - "infinitive": "reest", - "present": "reests", - "gerund": "reesting", - "past": "reested", - "past_participle": "reested" - }, - { - "infinitive": "romp", - "present": "romps", - "gerund": "romping", - "past": "romped", - "past_participle": "romped" - }, - { - "infinitive": "whicker", - "present": "whickers", - "gerund": "whickering", - "past": "whickered", - "past_participle": "whickered" - }, - { - "infinitive": "strangulate", - "present": "strangulates", - "gerund": "strangulating", - "past": "strangulated", - "past_participle": "strangulated" - }, - { - "infinitive": "inherit", - "present": "inherits", - "gerund": "inheriting", - "past": "inherited", - "past_participle": "inherited" - }, - { - "infinitive": "berate", - "present": "berates", - "gerund": "berating", - "past": "berated", - "past_participle": "berated" - }, - { - "infinitive": "left", - "present": "", - "gerund": "", - "past": "left", - "past_participle": "left" - }, - { - "infinitive": "sentence", - "present": "sentences", - "gerund": "sentencing", - "past": "sentenced", - "past_participle": "sentenced" - }, - { - "infinitive": "plash", - "present": "plashes", - "gerund": "plashing", - "past": "plashed", - "past_participle": "plashed" - }, - { - "infinitive": "alliterate", - "present": "alliterates", - "gerund": "alliterating", - "past": "alliterated", - "past_participle": "alliterated" - }, - { - "infinitive": "presume", - "present": "presumes", - "gerund": "presuming", - "past": "presumed", - "past_participle": "presumed" - }, - { - "infinitive": "identify", - "present": "identifies", - "gerund": "identifying", - "past": "identified", - "past_participle": "identified" - }, - { - "infinitive": "achromatize", - "present": "achromatizes", - "gerund": "achromatizing", - "past": "achromatized", - "past_participle": "achromatized" - }, - { - "infinitive": "secure", - "present": "secures", - "gerund": "securing", - "past": "secured", - "past_participle": "secured" - }, - { - "infinitive": "outbalance", - "present": "outbalances", - "gerund": "outbalancing", - "past": "outbalanced", - "past_participle": "outbalanced" - }, - { - "infinitive": "nudge", - "present": "nudges", - "gerund": "nudging", - "past": "nudged", - "past_participle": "nudged" - }, - { - "infinitive": "fourflush", - "present": "fourflushes", - "gerund": "fourflushing", - "past": "fourflushed", - "past_participle": "fourflushed" - }, - { - "infinitive": "shortcircuit", - "present": "shortcircuits", - "gerund": "shortcircuiting", - "past": "shortcircuited", - "past_participle": "shortcircuited" - }, - { - "infinitive": "character", - "present": "characters", - "gerund": "charactering", - "past": "charactered", - "past_participle": "charactered" - }, - { - "infinitive": "defray", - "present": "defrays", - "gerund": "defraying", - "past": "defrayed", - "past_participle": "defrayed" - }, - { - "infinitive": "save", - "present": "saves", - "gerund": "saving", - "past": "saved", - "past_participle": "saved" - }, - { - "infinitive": "dehisce", - "present": "dehisces", - "gerund": "dehiscing", - "past": "dehisced", - "past_participle": "dehisced" - }, - { - "infinitive": "designate", - "present": "designates", - "gerund": "designating", - "past": "designated", - "past_participle": "designated" - }, - { - "infinitive": "opt", - "present": "opts", - "gerund": "opting", - "past": "opted", - "past_participle": "opted" - }, - { - "infinitive": "ope", - "present": "opes", - "gerund": "oping", - "past": "oped", - "past_participle": "oped" - }, - { - "infinitive": "commentate", - "present": "commentates", - "gerund": "commentating", - "past": "commentated", - "past_participle": "commentated" - }, - { - "infinitive": "legitimize", - "present": "legitimizes", - "gerund": "legitimizing", - "past": "legitimized", - "past_participle": "legitimized" - }, - { - "infinitive": "implead", - "present": "impleads", - "gerund": "impleading", - "past": "impleaded", - "past_participle": "impleaded" - }, - { - "infinitive": "illtreat", - "present": "illtreats", - "gerund": "illtreating", - "past": "illtreated", - "past_participle": "illtreated" - }, - { - "infinitive": "chlorinate", - "present": "chlorinates", - "gerund": "chlorinating", - "past": "chlorinated", - "past_participle": "chlorinated" - }, - { - "infinitive": "jugulate", - "present": "jugulates", - "gerund": "jugulating", - "past": "jugulated", - "past_participle": "jugulated" - }, - { - "infinitive": "radioactivate", - "present": "radioactivates", - "gerund": "radioactivating", - "past": "radioactivated", - "past_participle": "radioactivated" - }, - { - "infinitive": "signal", - "present": "signals", - "gerund": "signalling", - "past": "signalled", - "past_participle": "signalled" - }, - { - "infinitive": "squander", - "present": "squanders", - "gerund": "squandering", - "past": "squandered", - "past_participle": "squandered" - }, - { - "infinitive": "deal", - "present": "deals", - "gerund": "dealing", - "past": "dealt", - "past_participle": "dealt" - }, - { - "infinitive": "repudiate", - "present": "repudiates", - "gerund": "repudiating", - "past": "repudiated", - "past_participle": "repudiated" - }, - { - "infinitive": "revet", - "present": "revets", - "gerund": "revetting", - "past": "revetted", - "past_participle": "revetted" - }, - { - "infinitive": "revel", - "present": "revels", - "gerund": "revelling", - "past": "revelled", - "past_participle": "revelled" - }, - { - "infinitive": "intern", - "present": "interns", - "gerund": "interning", - "past": "interned", - "past_participle": "interned" - }, - { - "infinitive": "arterialize", - "present": "arterializes", - "gerund": "arterializing", - "past": "arterialized", - "past_participle": "arterialized" - }, - { - "infinitive": "invoice", - "present": "invoices", - "gerund": "invoicing", - "past": "invoiced", - "past_participle": "invoiced" - }, - { - "infinitive": "sprawl", - "present": "sprawls", - "gerund": "sprawling", - "past": "sprawled", - "past_participle": "sprawled" - }, - { - "infinitive": "deice", - "present": "deices", - "gerund": "deicing", - "past": "deiced", - "past_participle": "deiced" - }, - { - "infinitive": "collect", - "present": "collects", - "gerund": "collecting", - "past": "collected", - "past_participle": "collected" - }, - { - "infinitive": "defilade", - "present": "defilades", - "gerund": "defilading", - "past": "defiladed", - "past_participle": "defiladed" - }, - { - "infinitive": "superfuse", - "present": "superfuses", - "gerund": "superfusing", - "past": "superfused", - "past_participle": "superfused" - }, - { - "infinitive": "flounder", - "present": "flounders", - "gerund": "floundering", - "past": "floundered", - "past_participle": "floundered" - }, - { - "infinitive": "drudge", - "present": "drudges", - "gerund": "drudging", - "past": "drudged", - "past_participle": "drudged" - }, - { - "infinitive": "beget", - "present": "begets", - "gerund": "begetting", - "past": "begot", - "past_participle": "begotten" - }, - { - "infinitive": "egest", - "present": "egests", - "gerund": "egesting", - "past": "egested", - "past_participle": "egested" - }, - { - "infinitive": "bamboozle", - "present": "bamboozles", - "gerund": "bamboozling", - "past": "bamboozled", - "past_participle": "bamboozled" - }, - { - "infinitive": "burl", - "present": "burls", - "gerund": "burling", - "past": "burled", - "past_participle": "burled" - }, - { - "infinitive": "protuberate", - "present": "protuberates", - "gerund": "protuberating", - "past": "protuberated", - "past_participle": "protuberated" - }, - { - "infinitive": "burn", - "present": "burns", - "gerund": "burning", - "past": "burnt", - "past_participle": "burnt" - }, - { - "infinitive": "blackmail", - "present": "blackmails", - "gerund": "blackmailing", - "past": "blackmailed", - "past_participle": "blackmailed" - }, - { - "infinitive": "sift", - "present": "sifts", - "gerund": "sifting", - "past": "sifted", - "past_participle": "sifted" - }, - { - "infinitive": "etiolate", - "present": "etiolates", - "gerund": "etiolating", - "past": "etiolated", - "past_participle": "etiolated" - }, - { - "infinitive": "burp", - "present": "burps", - "gerund": "burping", - "past": "burped", - "past_participle": "burped" - }, - { - "infinitive": "bury", - "present": "buries", - "gerund": "burying", - "past": "buried", - "past_participle": "buried" - }, - { - "infinitive": "conceal", - "present": "conceals", - "gerund": "concealing", - "past": "concealed", - "past_participle": "concealed" - }, - { - "infinitive": "palisade", - "present": "palisades", - "gerund": "palisading", - "past": "palisaded", - "past_participle": "palisaded" - }, - { - "infinitive": "stow", - "present": "stows", - "gerund": "stowing", - "past": "stowed", - "past_participle": "stowed" - }, - { - "infinitive": "commix", - "present": "commixes", - "gerund": "commixing", - "past": "commixed", - "past_participle": "commixed" - }, - { - "infinitive": "commit", - "present": "commits", - "gerund": "committing", - "past": "committed", - "past_participle": "committed" - }, - { - "infinitive": "clapboard", - "present": "clapboards", - "gerund": "clapboarding", - "past": "clapboarded", - "past_participle": "clapboarded" - }, - { - "infinitive": "marshal", - "present": "marshals", - "gerund": "marshalling", - "past": "marshalled", - "past_participle": "marshalled" - }, - { - "infinitive": "unsay", - "present": "unsays", - "gerund": "unsaying", - "past": "unsaid", - "past_participle": "unsaid" - }, - { - "infinitive": "gestate", - "present": "gestates", - "gerund": "gestating", - "past": "gestated", - "past_participle": "gestated" - }, - { - "infinitive": "nerve", - "present": "nerves", - "gerund": "nerving", - "past": "nerved", - "past_participle": "nerved" - }, - { - "infinitive": "motivate", - "present": "motivates", - "gerund": "motivating", - "past": "motivated", - "past_participle": "motivated" - }, - { - "infinitive": "stone-wall", - "present": "stone-walls", - "gerund": "stonewalling", - "past": "stonewalled", - "past_participle": "stone-walled" - }, - { - "infinitive": "Frenchify", - "present": "Frenchifies", - "gerund": "Frenchifying", - "past": "Frenchified", - "past_participle": "Frenchified" - }, - { - "infinitive": "down", - "present": "downs", - "gerund": "downing", - "past": "downed", - "past_participle": "downed" - }, - { - "infinitive": "slurp", - "present": "slurps", - "gerund": "slurping", - "past": "slurped", - "past_participle": "slurped" - }, - { - "infinitive": "translocate", - "present": "translocates", - "gerund": "translocating", - "past": "translocated", - "past_participle": "translocated" - }, - { - "infinitive": "chime", - "present": "chimes", - "gerund": "chiming", - "past": "chimed", - "past_participle": "chimed" - }, - { - "infinitive": "unseal", - "present": "unseals", - "gerund": "unsealing", - "past": "unsealed", - "past_participle": "unsealed" - }, - { - "infinitive": "unseam", - "present": "unseams", - "gerund": "unseaming", - "past": "unseamed", - "past_participle": "unseamed" - }, - { - "infinitive": "chitter", - "present": "chitters", - "gerund": "chittering", - "past": "chittered", - "past_participle": "chittered" - }, - { - "infinitive": "initial", - "present": "initials", - "gerund": "initialling", - "past": "initialled", - "past_participle": "initialled" - }, - { - "infinitive": "subdivide", - "present": "subdivides", - "gerund": "subdividing", - "past": "subdivided", - "past_participle": "subdivided" - }, - { - "infinitive": "chelate", - "present": "chelates", - "gerund": "chelating", - "past": "chelated", - "past_participle": "chelated" - }, - { - "infinitive": "misbecome", - "present": "misbecomes", - "gerund": "misbecoming", - "past": "misbecame", - "past_participle": "misbecame" - }, - { - "infinitive": "lampoon", - "present": "lampoons", - "gerund": "lampooning", - "past": "lampooned", - "past_participle": "lampooned" - }, - { - "infinitive": "deputize", - "present": "deputizes", - "gerund": "deputizing", - "past": "deputized", - "past_participle": "deputized" - }, - { - "infinitive": "unseat", - "present": "unseats", - "gerund": "unseating", - "past": "unseated", - "past_participle": "unseated" - }, - { - "infinitive": "stalk", - "present": "stalks", - "gerund": "stalking", - "past": "stalked", - "past_participle": "stalked" - }, - { - "infinitive": "smoodge", - "present": "smoodges", - "gerund": "smoodging", - "past": "smoodged", - "past_participle": "smoodged" - }, - { - "infinitive": "fork", - "present": "forks", - "gerund": "forking", - "past": "forked", - "past_participle": "forked" - }, - { - "infinitive": "starve", - "present": "starves", - "gerund": "starving", - "past": "starved", - "past_participle": "starved" - }, - { - "infinitive": "form", - "present": "forms", - "gerund": "forming", - "past": "formed", - "past_participle": "formed" - }, - { - "infinitive": "analyze", - "present": "analyzes", - "gerund": "analyzing", - "past": "analyzed", - "past_participle": "analyzed" - }, - { - "infinitive": "forest", - "present": "", - "gerund": "foring", - "past": "fored", - "past_participle": "fored" - }, - { - "infinitive": "ford", - "present": "fords", - "gerund": "fording", - "past": "forded", - "past_participle": "forded" - }, - { - "infinitive": "diaper", - "present": "diapers", - "gerund": "diapering", - "past": "diapered", - "past_participle": "diapered" - }, - { - "infinitive": "turpentine", - "present": "turpentines", - "gerund": "turpentining", - "past": "turpentined", - "past_participle": "turpentined" - }, - { - "infinitive": "polevault", - "present": "polevaults", - "gerund": "polevaulting", - "past": "polevaulted", - "past_participle": "polevaulted" - }, - { - "infinitive": "overburden", - "present": "overburdens", - "gerund": "overburdening", - "past": "overburdened", - "past_participle": "overburdened" - }, - { - "infinitive": "surrender", - "present": "surrenders", - "gerund": "surrendering", - "past": "surrendered", - "past_participle": "surrendered" - }, - { - "infinitive": "pavilion", - "present": "pavilions", - "gerund": "pavilioning", - "past": "pavilioned", - "past_participle": "pavilioned" - }, - { - "infinitive": "empt", - "present": "empts", - "gerund": "empting", - "past": "empted", - "past_participle": "empted" - }, - { - "infinitive": "ingraft", - "present": "ingrafts", - "gerund": "ingrafting", - "past": "ingrafted", - "past_participle": "ingrafted" - }, - { - "infinitive": "boomerang", - "present": "boomerangs", - "gerund": "boomeranging", - "past": "boomeranged", - "past_participle": "boomeranged" - }, - { - "infinitive": "aircool", - "present": "aircools", - "gerund": "aircooling", - "past": "aircooled", - "past_participle": "aircooled" - }, - { - "infinitive": "delete", - "present": "deletes", - "gerund": "deleting", - "past": "deleted", - "past_participle": "deleted" - }, - { - "infinitive": "diagnose", - "present": "diagnoses", - "gerund": "diagnosing", - "past": "diagnosed", - "past_participle": "diagnosed" - }, - { - "infinitive": "forespeak", - "present": "forespeaks", - "gerund": "forespeaking", - "past": "forespoke", - "past_participle": "forespoken" - }, - { - "infinitive": "shin", - "present": "shins", - "gerund": "shinning", - "past": "shinned", - "past_participle": "shinned" - }, - { - "infinitive": "shim", - "present": "shims", - "gerund": "shimming", - "past": "shimmed", - "past_participle": "shimmed" - }, - { - "infinitive": "bureaucratize", - "present": "bureaucratizes", - "gerund": "bureaucratizing", - "past": "bureaucratized", - "past_participle": "bureaucratized" - }, - { - "infinitive": "sidestep", - "present": "sidesteps", - "gerund": "sidestepping", - "past": "sidestepped", - "past_participle": "sidestepped" - }, - { - "infinitive": "sticky", - "present": "stickies", - "gerund": "stickying", - "past": "stickied", - "past_participle": "stickied" - }, - { - "infinitive": "scrawl", - "present": "scrawls", - "gerund": "scrawling", - "past": "scrawled", - "past_participle": "scrawled" - }, - { - "infinitive": "revitalize", - "present": "revitalizes", - "gerund": "revitalizing", - "past": "revitalized", - "past_participle": "revitalized" - }, - { - "infinitive": "vivify", - "present": "vivifies", - "gerund": "vivifying", - "past": "vivified", - "past_participle": "vivified" - }, - { - "infinitive": "ship", - "present": "ships", - "gerund": "shipping", - "past": "shipped", - "past_participle": "shipped" - }, - { - "infinitive": "swill", - "present": "swills", - "gerund": "swilling", - "past": "swilled", - "past_participle": "swilled" - }, - { - "infinitive": "addle", - "present": "addles", - "gerund": "addling", - "past": "addled", - "past_participle": "addled" - }, - { - "infinitive": "shit", - "present": "shits", - "gerund": "shitting", - "past": "shit", - "past_participle": "shit" - }, - { - "infinitive": "graft", - "present": "grafts", - "gerund": "grafting", - "past": "grafted", - "past_participle": "grafted" - }, - { - "infinitive": "discriminate", - "present": "discriminates", - "gerund": "discriminating", - "past": "discriminated", - "past_participle": "discriminated" - }, - { - "infinitive": "disaccord", - "present": "disaccords", - "gerund": "disaccording", - "past": "disaccorded", - "past_participle": "disaccorded" - }, - { - "infinitive": "excel", - "present": "excels", - "gerund": "excelling", - "past": "excelled", - "past_participle": "excelled" - }, - { - "infinitive": "maledict", - "present": "maledicts", - "gerund": "maledicting", - "past": "maledicted", - "past_participle": "maledicted" - }, - { - "infinitive": "congeal", - "present": "congeals", - "gerund": "congealing", - "past": "congealed", - "past_participle": "congealed" - }, - { - "infinitive": "warehouse", - "present": "warehouses", - "gerund": "warehousing", - "past": "warehoused", - "past_participle": "warehoused" - }, - { - "infinitive": "interlard", - "present": "interlards", - "gerund": "interlarding", - "past": "interlarded", - "past_participle": "interlarded" - }, - { - "infinitive": "garland", - "present": "garlands", - "gerund": "garlanding", - "past": "garlanded", - "past_participle": "garlanded" - }, - { - "infinitive": "handicap", - "present": "handicaps", - "gerund": "handicapping", - "past": "handicapped", - "past_participle": "handicapped" - }, - { - "infinitive": "bilge", - "present": "bilges", - "gerund": "bilging", - "past": "bilged", - "past_participle": "bilged" - }, - { - "infinitive": "slink", - "present": "slinks", - "gerund": "slinking", - "past": "slunk", - "past_participle": "slunk" - }, - { - "infinitive": "diet", - "present": "diets", - "gerund": "dieting", - "past": "dieted", - "past_participle": "dieted" - }, - { - "infinitive": "infatuate", - "present": "infatuates", - "gerund": "infatuating", - "past": "infatuated", - "past_participle": "infatuated" - }, - { - "infinitive": "journey", - "present": "journeys", - "gerund": "journeying", - "past": "journeyed", - "past_participle": "journeyed" - }, - { - "infinitive": "reign", - "present": "reigns", - "gerund": "reigning", - "past": "reigned", - "past_participle": "reigned" - }, - { - "infinitive": "skinpop", - "present": "skinpops", - "gerund": "skinpopping", - "past": "skinpopped", - "past_participle": "skinpopped" - }, - { - "infinitive": "weekend", - "present": "weekends", - "gerund": "weekending", - "past": "weekended", - "past_participle": "weekended" - }, - { - "infinitive": "endamage", - "present": "endamages", - "gerund": "endamaging", - "past": "endamaged", - "past_participle": "endamaged" - }, - { - "infinitive": "derail", - "present": "derails", - "gerund": "derailing", - "past": "derailed", - "past_participle": "derailed" - }, - { - "infinitive": "assume", - "present": "assumes", - "gerund": "assuming", - "past": "assumed", - "past_participle": "assumed" - }, - { - "infinitive": "jacket", - "present": "jackets", - "gerund": "jacketing", - "past": "jacketed", - "past_participle": "jacketed" - }, - { - "infinitive": "reroute", - "present": "reroutes", - "gerund": "rerouting", - "past": "rerouted", - "past_participle": "rerouted" - }, - { - "infinitive": "meander", - "present": "meanders", - "gerund": "meandering", - "past": "meandered", - "past_participle": "meandered" - }, - { - "infinitive": "decelerate", - "present": "decelerates", - "gerund": "decelerating", - "past": "decelerated", - "past_participle": "decelerated" - }, - { - "infinitive": "camber", - "present": "cambers", - "gerund": "cambering", - "past": "cambered", - "past_participle": "cambered" - }, - { - "infinitive": "befriend", - "present": "befriends", - "gerund": "befriending", - "past": "befriended", - "past_participle": "befriended" - }, - { - "infinitive": "revoke", - "present": "revokes", - "gerund": "revoking", - "past": "revoked", - "past_participle": "revoked" - }, - { - "infinitive": "fletch", - "present": "fletches", - "gerund": "fletching", - "past": "fletched", - "past_participle": "fletched" - }, - { - "infinitive": "skip", - "present": "skips", - "gerund": "skipping", - "past": "skipped", - "past_participle": "skipped" - }, - { - "infinitive": "relieve", - "present": "relieves", - "gerund": "relieving", - "past": "relieved", - "past_participle": "relieved" - }, - { - "infinitive": "peruse", - "present": "peruses", - "gerund": "perusing", - "past": "perused", - "past_participle": "perused" - }, - { - "infinitive": "invent", - "present": "invents", - "gerund": "inventing", - "past": "invented", - "past_participle": "invented" - }, - { - "infinitive": "doubletongue", - "present": "doubletongues", - "gerund": "doubletonguing", - "past": "doubletongued", - "past_participle": "doubletongued" - }, - { - "infinitive": "redouble", - "present": "redoubles", - "gerund": "redoubling", - "past": "redoubled", - "past_participle": "redoubled" - }, - { - "infinitive": "skin", - "present": "skins", - "gerund": "skinning", - "past": "skinned", - "past_participle": "skinned" - }, - { - "infinitive": "spruik", - "present": "spruiks", - "gerund": "spruiking", - "past": "spruiked", - "past_participle": "spruiked" - }, - { - "infinitive": "interdigitate", - "present": "interdigitates", - "gerund": "interdigitating", - "past": "interdigitated", - "past_participle": "interdigitated" - }, - { - "infinitive": "smock", - "present": "smocks", - "gerund": "smocking", - "past": "smocked", - "past_participle": "smocked" - }, - { - "infinitive": "milk", - "present": "milks", - "gerund": "milking", - "past": "milked", - "past_participle": "milked" - }, - { - "infinitive": "skeletonize", - "present": "skeletonizes", - "gerund": "skeletonizing", - "past": "skeletonized", - "past_participle": "skeletonized" - }, - { - "infinitive": "sidetrack", - "present": "sidetracks", - "gerund": "side-tracking", - "past": "sidetracked", - "past_participle": "side-tracked" - }, - { - "infinitive": "misread", - "present": "misreads", - "gerund": "misreading", - "past": "misread", - "past_participle": "misread" - }, - { - "infinitive": "depend", - "present": "depends", - "gerund": "depending", - "past": "depended", - "past_participle": "depended" - }, - { - "infinitive": "summersault", - "present": "", - "gerund": "summersaulting", - "past": "summersaulted", - "past_participle": "summersaulted" - }, - { - "infinitive": "tariff", - "present": "tariffs", - "gerund": "tariffing", - "past": "tariffed", - "past_participle": "tariffed" - }, - { - "infinitive": "swoon", - "present": "swoons", - "gerund": "swooning", - "past": "swooned", - "past_participle": "swooned" - }, - { - "infinitive": "father", - "present": "fathers", - "gerund": "fathering", - "past": "fathered", - "past_participle": "fathered" - }, - { - "infinitive": "pressgang", - "present": "pressgangs", - "gerund": "pressganging", - "past": "pressganged", - "past_participle": "pressganged" - }, - { - "infinitive": "amaze", - "present": "amazes", - "gerund": "amazing", - "past": "amazed", - "past_participle": "amazed" - }, - { - "infinitive": "swoop", - "present": "swoops", - "gerund": "swooping", - "past": "swooped", - "past_participle": "swooped" - }, - { - "infinitive": "quintuplicate", - "present": "quintuplicates", - "gerund": "quintuplicating", - "past": "quintuplicated", - "past_participle": "quintuplicated" - }, - { - "infinitive": "unburden", - "present": "unburdens", - "gerund": "unburdening", - "past": "unburdened", - "past_participle": "unburdened" - }, - { - "infinitive": "encircle", - "present": "encircles", - "gerund": "encircling", - "past": "encircled", - "past_participle": "encircled" - }, - { - "infinitive": "keck", - "present": "kecks", - "gerund": "kecking", - "past": "kecked", - "past_participle": "kecked" - }, - { - "infinitive": "string", - "present": "strings", - "gerund": "stringing", - "past": "strung", - "past_participle": "strung" - }, - { - "infinitive": "shoogle", - "present": "shoogles", - "gerund": "shoogling", - "past": "shoogled", - "past_participle": "shoogled" - }, - { - "infinitive": "bullyrag", - "present": "bullyrags", - "gerund": "bullyragging", - "past": "bullyragged", - "past_participle": "bullyragged" - }, - { - "infinitive": "nationalize", - "present": "nationalizes", - "gerund": "nationalizing", - "past": "nationalized", - "past_participle": "nationalized" - }, - { - "infinitive": "Europeanize", - "present": "Europeanizes", - "gerund": "Europeanizing", - "past": "Europeanized", - "past_participle": "Europeanized" - }, - { - "infinitive": "lynch", - "present": "lynches", - "gerund": "lynching", - "past": "lynched", - "past_participle": "lynched" - }, - { - "infinitive": "jettison", - "present": "jettisons", - "gerund": "jettisoning", - "past": "jettisoned", - "past_participle": "jettisoned" - }, - { - "infinitive": "materialize", - "present": "materializes", - "gerund": "materializing", - "past": "materialized", - "past_participle": "materialized" - }, - { - "infinitive": "dim", - "present": "dims", - "gerund": "dimming", - "past": "dimmed", - "past_participle": "dimmed" - }, - { - "infinitive": "din", - "present": "dins", - "gerund": "dinning", - "past": "dinned", - "past_participle": "dinned" - }, - { - "infinitive": "die", - "present": "dies", - "gerund": "dying", - "past": "died", - "past_participle": "died" - }, - { - "infinitive": "economize", - "present": "economizes", - "gerund": "economizing", - "past": "economized", - "past_participle": "economized" - }, - { - "infinitive": "dig", - "present": "digs", - "gerund": "digging", - "past": "dug", - "past_participle": "dug" - }, - { - "infinitive": "dib", - "present": "dibs", - "gerund": "dibbing", - "past": "dibbed", - "past_participle": "dibbed" - }, - { - "infinitive": "hooray", - "present": "hoorays", - "gerund": "hooraying", - "past": "hoorayed", - "past_participle": "hoorayed" - }, - { - "infinitive": "item", - "present": "items", - "gerund": "iteming", - "past": "itemed", - "past_participle": "itemed" - }, - { - "infinitive": "grimace", - "present": "grimaces", - "gerund": "grimacing", - "past": "grimaced", - "past_participle": "grimaced" - }, - { - "infinitive": "dip", - "present": "dips", - "gerund": "dipping", - "past": "dipped", - "past_participle": "dipped" - }, - { - "infinitive": "round", - "present": "rounds", - "gerund": "rounding", - "past": "rounded", - "past_participle": "rounded" - }, - { - "infinitive": "shave", - "present": "shaves", - "gerund": "shaving", - "past": "shaved", - "past_participle": "shaven" - }, - { - "infinitive": "overhaul", - "present": "overhauls", - "gerund": "overhauling", - "past": "overhauled", - "past_participle": "overhauled" - }, - { - "infinitive": "slake", - "present": "slakes", - "gerund": "slaking", - "past": "slaked", - "past_participle": "slaked" - }, - { - "infinitive": "trisect", - "present": "trisects", - "gerund": "trisecting", - "past": "trisected", - "past_participle": "trisected" - }, - { - "infinitive": "twaddle", - "present": "twaddles", - "gerund": "twaddling", - "past": "twaddled", - "past_participle": "twaddled" - }, - { - "infinitive": "unbar", - "present": "unbars", - "gerund": "unbarring", - "past": "unbarred", - "past_participle": "unbarred" - }, - { - "infinitive": "favour", - "present": "favours", - "gerund": "favouring", - "past": "favoured", - "past_participle": "favoured" - }, - { - "infinitive": "fillet", - "present": "fillets", - "gerund": "filleting", - "past": "filleted", - "past_participle": "filleted" - }, - { - "infinitive": "reunite", - "present": "reunites", - "gerund": "reuniting", - "past": "reunited", - "past_participle": "reunited" - }, - { - "infinitive": "suspect", - "present": "suspects", - "gerund": "suspecting", - "past": "suspected", - "past_participle": "suspected" - }, - { - "infinitive": "divinize", - "present": "divinizes", - "gerund": "divinizing", - "past": "divinized", - "past_participle": "divinized" - }, - { - "infinitive": "extemporize", - "present": "extemporizes", - "gerund": "extemporizing", - "past": "extemporized", - "past_participle": "extemporized" - }, - { - "infinitive": "dwarf", - "present": "dwarfs", - "gerund": "dwarfing", - "past": "dwarfed", - "past_participle": "dwarfed" - }, - { - "infinitive": "etherealize", - "present": "etherealizes", - "gerund": "etherealizing", - "past": "etherealized", - "past_participle": "etherealized" - }, - { - "infinitive": "clerk", - "present": "clerks", - "gerund": "clerking", - "past": "clerked", - "past_participle": "clerked" - }, - { - "infinitive": "briquette", - "present": "briquettes", - "gerund": "briquetting", - "past": "briquetted", - "past_participle": "briquetted" - }, - { - "infinitive": "overwinter", - "present": "overwinters", - "gerund": "overwintering", - "past": "overwintered", - "past_participle": "overwintered" - }, - { - "infinitive": "detest", - "present": "detests", - "gerund": "detesting", - "past": "detested", - "past_participle": "detested" - }, - { - "infinitive": "decipher", - "present": "deciphers", - "gerund": "deciphering", - "past": "deciphered", - "past_participle": "deciphered" - }, - { - "infinitive": "oversimplify", - "present": "oversimplifies", - "gerund": "oversimplifying", - "past": "oversimplified", - "past_participle": "oversimplified" - }, - { - "infinitive": "wait", - "present": "waits", - "gerund": "waiting", - "past": "waited", - "past_participle": "waited" - }, - { - "infinitive": "box", - "present": "boxes", - "gerund": "boxing", - "past": "boxed", - "past_participle": "boxed" - }, - { - "infinitive": "cuckoo", - "present": "cuckoos", - "gerund": "cuckooing", - "past": "cuckooed", - "past_participle": "cuckooed" - }, - { - "infinitive": "bop", - "present": "bops", - "gerund": "bopping", - "past": "bopped", - "past_participle": "bopped" - }, - { - "infinitive": "shift", - "present": "shifts", - "gerund": "shifting", - "past": "shifted", - "past_participle": "shifted" - }, - { - "infinitive": "bow", - "present": "bows", - "gerund": "bowing", - "past": "bowed", - "past_participle": "bowed" - }, - { - "infinitive": "dither", - "present": "dithers", - "gerund": "dithering", - "past": "dithered", - "past_participle": "dithered" - }, - { - "infinitive": "boo", - "present": "boos", - "gerund": "booing", - "past": "booed", - "past_participle": "booed" - }, - { - "infinitive": "bob", - "present": "bobs", - "gerund": "bobbing", - "past": "bobbed", - "past_participle": "bobbed" - }, - { - "infinitive": "conglobate", - "present": "conglobates", - "gerund": "conglobating", - "past": "conglobated", - "past_participle": "conglobated" - }, - { - "infinitive": "massage", - "present": "massages", - "gerund": "massaging", - "past": "massaged", - "past_participle": "massaged" - }, - { - "infinitive": "demodulate", - "present": "demodulates", - "gerund": "demodulating", - "past": "demodulated", - "past_participle": "demodulated" - }, - { - "infinitive": "treasure", - "present": "treasures", - "gerund": "treasuring", - "past": "treasured", - "past_participle": "treasured" - }, - { - "infinitive": "elect", - "present": "elects", - "gerund": "electing", - "past": "elected", - "past_participle": "elected" - }, - { - "infinitive": "stet", - "present": "stets", - "gerund": "stetting", - "past": "stetted", - "past_participle": "stetted" - }, - { - "infinitive": "sightread", - "present": "sightreads", - "gerund": "sightreading", - "past": "sightread", - "past_participle": "sightread" - }, - { - "infinitive": "supinate", - "present": "supinates", - "gerund": "supinating", - "past": "supinated", - "past_participle": "supinated" - }, - { - "infinitive": "quibble", - "present": "quibbles", - "gerund": "quibbling", - "past": "quibbled", - "past_participle": "quibbled" - }, - { - "infinitive": "verge", - "present": "verges", - "gerund": "verging", - "past": "verged", - "past_participle": "verged" - }, - { - "infinitive": "surmount", - "present": "surmounts", - "gerund": "surmounting", - "past": "surmounted", - "past_participle": "surmounted" - }, - { - "infinitive": "tabu", - "present": "tabus", - "gerund": "tabuing", - "past": "tabued", - "past_participle": "tabued" - }, - { - "infinitive": "transplant", - "present": "transplants", - "gerund": "transplanting", - "past": "transplanted", - "past_participle": "transplanted" - }, - { - "infinitive": "anthropomorphize", - "present": "anthropomorphizes", - "gerund": "anthropomorphizing", - "past": "anthropomorphized", - "past_participle": "anthropomorphized" - }, - { - "infinitive": "telpher", - "present": "telphers", - "gerund": "telphering", - "past": "telphered", - "past_participle": "telphered" - }, - { - "infinitive": "cocknify", - "present": "cocknifies", - "gerund": "cocknifying", - "past": "cocknified", - "past_participle": "cocknified" - }, - { - "infinitive": "confound", - "present": "confounds", - "gerund": "confounding", - "past": "confounded", - "past_participle": "confounded" - }, - { - "infinitive": "subtract", - "present": "subtracts", - "gerund": "subtracting", - "past": "subtracted", - "past_participle": "subtracted" - }, - { - "infinitive": "visit", - "present": "visits", - "gerund": "visiting", - "past": "visited", - "past_participle": "visited" - }, - { - "infinitive": "summersault", - "present": "summersaults", - "gerund": "somersaulting", - "past": "somersaulted", - "past_participle": "somersaulted" - }, - { - "infinitive": "encode", - "present": "encodes", - "gerund": "encoding", - "past": "encoded", - "past_participle": "encoded" - }, - { - "infinitive": "sharpen", - "present": "sharpens", - "gerund": "sharpening", - "past": "sharpened", - "past_participle": "sharpened" - }, - { - "infinitive": "swagger", - "present": "swaggers", - "gerund": "swaggering", - "past": "swaggered", - "past_participle": "swaggered" - }, - { - "infinitive": "excide", - "present": "excides", - "gerund": "exciding", - "past": "excided", - "past_participle": "excided" - }, - { - "infinitive": "cremate", - "present": "cremates", - "gerund": "cremating", - "past": "cremated", - "past_participle": "cremated" - }, - { - "infinitive": "repast", - "present": "repasts", - "gerund": "repasting", - "past": "repasted", - "past_participle": "repasted" - }, - { - "infinitive": "pipeline", - "present": "pipelines", - "gerund": "pipelining", - "past": "pipelined", - "past_participle": "pipelined" - }, - { - "infinitive": "fly", - "present": "flies", - "gerund": "flying", - "past": "flew", - "past_participle": "flown" - }, - { - "infinitive": "demolish", - "present": "demolishes", - "gerund": "demolishing", - "past": "demolished", - "past_participle": "demolished" - }, - { - "infinitive": "impel", - "present": "impels", - "gerund": "impelling", - "past": "impelled", - "past_participle": "impelled" - }, - { - "infinitive": "sour", - "present": "sours", - "gerund": "souring", - "past": "soured", - "past_participle": "soured" - }, - { - "infinitive": "symmetrize", - "present": "symmetrizes", - "gerund": "symmetrizing", - "past": "symmetrized", - "past_participle": "symmetrized" - }, - { - "infinitive": "arrive", - "present": "arrives", - "gerund": "arriving", - "past": "arrived", - "past_participle": "arrived" - }, - { - "infinitive": "claim", - "present": "claims", - "gerund": "claiming", - "past": "claimed", - "past_participle": "claimed" - }, - { - "infinitive": "immortalize", - "present": "immortalizes", - "gerund": "immortalizing", - "past": "immortalized", - "past_participle": "immortalized" - }, - { - "infinitive": "intergrade", - "present": "intergrades", - "gerund": "intergrading", - "past": "intergraded", - "past_participle": "intergraded" - }, - { - "infinitive": "predict", - "present": "predicts", - "gerund": "predicting", - "past": "predicted", - "past_participle": "predicted" - }, - { - "infinitive": "fuck", - "present": "fucks", - "gerund": "fucking", - "past": "fucked", - "past_participle": "fucked" - }, - { - "infinitive": "sample", - "present": "samples", - "gerund": "sampling", - "past": "sampled", - "past_participle": "sampled" - }, - { - "infinitive": "disbelieve", - "present": "disbelieves", - "gerund": "disbelieving", - "past": "disbelieved", - "past_participle": "disbelieved" - }, - { - "infinitive": "craze", - "present": "crazes", - "gerund": "crazing", - "past": "crazed", - "past_participle": "crazed" - }, - { - "infinitive": "normalize", - "present": "normalizes", - "gerund": "normalizing", - "past": "normalized", - "past_participle": "normalized" - }, - { - "infinitive": "purr", - "present": "purrs", - "gerund": "purring", - "past": "purred", - "past_participle": "purred" - }, - { - "infinitive": "shinty", - "present": "shinties", - "gerund": "shintying", - "past": "shintied", - "past_participle": "shintied" - }, - { - "infinitive": "tilt", - "present": "tilts", - "gerund": "tilting", - "past": "tilted", - "past_participle": "tilted" - }, - { - "infinitive": "ping", - "present": "pings", - "gerund": "pinging", - "past": "pinged", - "past_participle": "pinged" - }, - { - "infinitive": "parch", - "present": "parches", - "gerund": "parching", - "past": "parched", - "past_participle": "parched" - }, - { - "infinitive": "pine", - "present": "pines", - "gerund": "pining", - "past": "pined", - "past_participle": "pined" - }, - { - "infinitive": "till", - "present": "tills", - "gerund": "tilling", - "past": "tilled", - "past_participle": "tilled" - }, - { - "infinitive": "tile", - "present": "tiles", - "gerund": "tiling", - "past": "tiled", - "past_participle": "tiled" - }, - { - "infinitive": "purl", - "present": "purls", - "gerund": "purling", - "past": "purled", - "past_participle": "purled" - }, - { - "infinitive": "map", - "present": "maps", - "gerund": "mapping", - "past": "mapped", - "past_participle": "mapped" - }, - { - "infinitive": "mar", - "present": "mars", - "gerund": "marring", - "past": "marred", - "past_participle": "marred" - }, - { - "infinitive": "mat", - "present": "mats", - "gerund": "matting", - "past": "matted", - "past_participle": "matted" - }, - { - "infinitive": "legislate", - "present": "legislates", - "gerund": "legislating", - "past": "legislated", - "past_participle": "legislated" - }, - { - "infinitive": "mad", - "present": "mads", - "gerund": "madding", - "past": "madded", - "past_participle": "madded" - }, - { - "infinitive": "methylate", - "present": "methylates", - "gerund": "methylating", - "past": "methylated", - "past_participle": "methylated" - }, - { - "infinitive": "subrogate", - "present": "subrogates", - "gerund": "subrogating", - "past": "subrogated", - "past_participle": "subrogated" - }, - { - "infinitive": "catcall", - "present": "catcalls", - "gerund": "catcalling", - "past": "catcalled", - "past_participle": "catcalled" - }, - { - "infinitive": "metricate", - "present": "metricates", - "gerund": "metricating", - "past": "metricated", - "past_participle": "metricated" - }, - { - "infinitive": "fossilize", - "present": "fossilizes", - "gerund": "fossilizing", - "past": "fossilized", - "past_participle": "fossilized" - }, - { - "infinitive": "itinerate", - "present": "itinerates", - "gerund": "itinerating", - "past": "itinerated", - "past_participle": "itinerated" - }, - { - "infinitive": "omen", - "present": "omens", - "gerund": "omening", - "past": "omened", - "past_participle": "omened" - }, - { - "infinitive": "perambulate", - "present": "perambulates", - "gerund": "perambulating", - "past": "perambulated", - "past_participle": "perambulated" - }, - { - "infinitive": "purify", - "present": "purifies", - "gerund": "purifying", - "past": "purified", - "past_participle": "purified" - }, - { - "infinitive": "disembowel", - "present": "disembowels", - "gerund": "disembowelling", - "past": "disembowelled", - "past_participle": "disembowelled" - }, - { - "infinitive": "cascade", - "present": "cascades", - "gerund": "cascading", - "past": "cascaded", - "past_participle": "cascaded" - }, - { - "infinitive": "absquatulate", - "present": "absquatulates", - "gerund": "absquatulating", - "past": "absquatulated", - "past_participle": "absquatulated" - }, - { - "infinitive": "jail", - "present": "jails", - "gerund": "jailing", - "past": "jailed", - "past_participle": "jailed" - }, - { - "infinitive": "deposit", - "present": "deposits", - "gerund": "depositing", - "past": "deposited", - "past_participle": "deposited" - }, - { - "infinitive": "deceive", - "present": "deceives", - "gerund": "deceiving", - "past": "deceived", - "past_participle": "deceived" - }, - { - "infinitive": "unleash", - "present": "unleashes", - "gerund": "unleashing", - "past": "unleashed", - "past_participle": "unleashed" - }, - { - "infinitive": "tawse", - "present": "tawses", - "gerund": "tawsing", - "past": "tawsed", - "past_participle": "tawsed" - }, - { - "infinitive": "bungle", - "present": "bungles", - "gerund": "bungling", - "past": "bungled", - "past_participle": "bungled" - }, - { - "infinitive": "gesture", - "present": "gestures", - "gerund": "gesturing", - "past": "gestured", - "past_participle": "gestured" - }, - { - "infinitive": "uncork", - "present": "uncorks", - "gerund": "uncorking", - "past": "uncorked", - "past_participle": "uncorked" - }, - { - "infinitive": "shop-lift", - "present": "shop-lifts", - "gerund": "shop-lifting", - "past": "shop-lifted", - "past_participle": "shop-lifted" - }, - { - "infinitive": "shield", - "present": "shields", - "gerund": "shielding", - "past": "shielded", - "past_participle": "shielded" - }, - { - "infinitive": "re-sign", - "present": "re-signs", - "gerund": "re-signing", - "past": "re-signed", - "past_participle": "re-signed" - }, - { - "infinitive": "clubhaul", - "present": "clubhauls", - "gerund": "clubhauling", - "past": "clubhauled", - "past_participle": "clubhauled" - }, - { - "infinitive": "recoup", - "present": "recoups", - "gerund": "recouping", - "past": "recouped", - "past_participle": "recouped" - }, - { - "infinitive": "terrace", - "present": "terraces", - "gerund": "terracing", - "past": "terraced", - "past_participle": "terraced" - }, - { - "infinitive": "pitch", - "present": "pitches", - "gerund": "pitching", - "past": "pitched", - "past_participle": "pitched" - }, - { - "infinitive": "equip", - "present": "equips", - "gerund": "equipping", - "past": "equipped", - "past_participle": "equipped" - }, - { - "infinitive": "grout", - "present": "grouts", - "gerund": "grouting", - "past": "grouted", - "past_participle": "grouted" - }, - { - "infinitive": "outbrave", - "present": "outbraves", - "gerund": "outbraving", - "past": "outbraved", - "past_participle": "outbraved" - }, - { - "infinitive": "group", - "present": "groups", - "gerund": "grouping", - "past": "grouped", - "past_participle": "grouped" - }, - { - "infinitive": "monitor", - "present": "monitors", - "gerund": "monitoring", - "past": "monitored", - "past_participle": "monitored" - }, - { - "infinitive": "gibbet", - "present": "gibbets", - "gerund": "gibbeting", - "past": "gibbeted", - "past_participle": "gibbeted" - }, - { - "infinitive": "tellurize", - "present": "tellurizes", - "gerund": "tellurizing", - "past": "tellurized", - "past_participle": "tellurized" - }, - { - "infinitive": "maim", - "present": "maims", - "gerund": "maiming", - "past": "maimed", - "past_participle": "maimed" - }, - { - "infinitive": "mail", - "present": "mails", - "gerund": "mailing", - "past": "mailed", - "past_participle": "mailed" - }, - { - "infinitive": "enfeoff", - "present": "enfeoffs", - "gerund": "enfeoffing", - "past": "enfeoffed", - "past_participle": "enfeoffed" - }, - { - "infinitive": "mollycoddle", - "present": "mollycoddles", - "gerund": "mollycoddling", - "past": "mollycoddled", - "past_participle": "mollycoddled" - }, - { - "infinitive": "finance", - "present": "finances", - "gerund": "financing", - "past": "financed", - "past_participle": "financed" - }, - { - "infinitive": "shatter", - "present": "shatters", - "gerund": "shattering", - "past": "shattered", - "past_participle": "shattered" - }, - { - "infinitive": "emplane", - "present": "emplanes", - "gerund": "emplaning", - "past": "emplaned", - "past_participle": "emplaned" - }, - { - "infinitive": "tucker", - "present": "tuckers", - "gerund": "tuckering", - "past": "tuckered", - "past_participle": "tuckered" - }, - { - "infinitive": "lunch", - "present": "lunches", - "gerund": "lunching", - "past": "lunched", - "past_participle": "lunched" - }, - { - "infinitive": "titillate", - "present": "titillates", - "gerund": "titillating", - "past": "titillated", - "past_participle": "titillated" - }, - { - "infinitive": "bullshit", - "present": "bullshits", - "gerund": "bullshitting", - "past": "bullshitted", - "past_participle": "bullshitted" - }, - { - "infinitive": "possess", - "present": "possesses", - "gerund": "possessing", - "past": "possessed", - "past_participle": "possessed" - }, - { - "infinitive": "outweigh", - "present": "outweighs", - "gerund": "outweighing", - "past": "outweighed", - "past_participle": "outweighed" - }, - { - "infinitive": "fudge", - "present": "fudges", - "gerund": "fudging", - "past": "fudged", - "past_participle": "fudged" - }, - { - "infinitive": "promulgate", - "present": "promulgates", - "gerund": "promulgating", - "past": "promulgated", - "past_participle": "promulgated" - }, - { - "infinitive": "gamble", - "present": "gambles", - "gerund": "gambling", - "past": "gambled", - "past_participle": "gambled" - }, - { - "infinitive": "rock", - "present": "rocks", - "gerund": "rocking", - "past": "rocked", - "past_participle": "rocked" - }, - { - "infinitive": "hijack", - "present": "hijacks", - "gerund": "hijacking", - "past": "hijacked", - "past_participle": "hijacked" - }, - { - "infinitive": "redraw", - "present": "redraws", - "gerund": "redrawing", - "past": "redrawed", - "past_participle": "redrawed" - }, - { - "infinitive": "precancel", - "present": "precancels", - "gerund": "precancelling", - "past": "precancelled", - "past_participle": "precancelled" - }, - { - "infinitive": "surfeit", - "present": "surfeits", - "gerund": "surfeiting", - "past": "surfeited", - "past_participle": "surfeited" - }, - { - "infinitive": "nonpros", - "present": "nonprosses", - "gerund": "nonprossing", - "past": "nonprossed", - "past_participle": "nonprossed" - }, - { - "infinitive": "gird", - "present": "girds", - "gerund": "girding", - "past": "girt", - "past_participle": "girt" - }, - { - "infinitive": "unclasp", - "present": "unclasps", - "gerund": "unclasping", - "past": "unclasped", - "past_participle": "unclasped" - }, - { - "infinitive": "obsolesce", - "present": "obsolesces", - "gerund": "obsolescing", - "past": "obsolesced", - "past_participle": "obsolesced" - }, - { - "infinitive": "despumate", - "present": "despumates", - "gerund": "despumating", - "past": "despumated", - "past_participle": "despumated" - }, - { - "infinitive": "relive", - "present": "relives", - "gerund": "reliving", - "past": "relived", - "past_participle": "relived" - }, - { - "infinitive": "stitch", - "present": "stitches", - "gerund": "stitching", - "past": "stitched", - "past_participle": "stitched" - }, - { - "infinitive": "undulate", - "present": "undulates", - "gerund": "undulating", - "past": "undulated", - "past_participle": "undulated" - }, - { - "infinitive": "bitch", - "present": "bitches", - "gerund": "bitching", - "past": "bitched", - "past_participle": "bitched" - }, - { - "infinitive": "unlimber", - "present": "unlimbers", - "gerund": "unlimbering", - "past": "unlimbered", - "past_participle": "unlimbered" - }, - { - "infinitive": "blubber", - "present": "blubbers", - "gerund": "blubbering", - "past": "blubbered", - "past_participle": "blubbered" - }, - { - "infinitive": "dominate", - "present": "dominates", - "gerund": "dominating", - "past": "dominated", - "past_participle": "dominated" - }, - { - "infinitive": "correct", - "present": "corrects", - "gerund": "correcting", - "past": "corrected", - "past_participle": "corrected" - }, - { - "infinitive": "ammoniate", - "present": "ammoniates", - "gerund": "ammoniating", - "past": "ammoniated", - "past_participle": "ammoniated" - }, - { - "infinitive": "smatter", - "present": "smatters", - "gerund": "smattering", - "past": "smattered", - "past_participle": "smattered" - }, - { - "infinitive": "smudge", - "present": "smudges", - "gerund": "smudging", - "past": "smudged", - "past_participle": "smudged" - }, - { - "infinitive": "doublespace", - "present": "doublespaces", - "gerund": "doublespacing", - "past": "doublespaced", - "past_participle": "doublespaced" - }, - { - "infinitive": "previse", - "present": "previses", - "gerund": "prevising", - "past": "prevised", - "past_participle": "prevised" - }, - { - "infinitive": "spiel", - "present": "spiels", - "gerund": "spieling", - "past": "spieled", - "past_participle": "spieled" - }, - { - "infinitive": "baptize", - "present": "baptizes", - "gerund": "baptizing", - "past": "baptized", - "past_participle": "baptized" - }, - { - "infinitive": "fluidize", - "present": "fluidizes", - "gerund": "fluidizing", - "past": "fluidized", - "past_participle": "fluidized" - }, - { - "infinitive": "uncover", - "present": "uncovers", - "gerund": "uncovering", - "past": "uncovered", - "past_participle": "uncovered" - }, - { - "infinitive": "jaywalk", - "present": "jaywalks", - "gerund": "jaywalking", - "past": "jaywalked", - "past_participle": "jaywalked" - }, - { - "infinitive": "cough", - "present": "coughs", - "gerund": "coughing", - "past": "coughed", - "past_participle": "coughed" - }, - { - "infinitive": "orb", - "present": "orbs", - "gerund": "orbing", - "past": "orbed", - "past_participle": "orbed" - }, - { - "infinitive": "advance", - "present": "advances", - "gerund": "advancing", - "past": "advanced", - "past_participle": "advanced" - }, - { - "infinitive": "pollard", - "present": "pollards", - "gerund": "pollarding", - "past": "pollarded", - "past_participle": "pollarded" - }, - { - "infinitive": "corrugate", - "present": "corrugates", - "gerund": "corrugating", - "past": "corrugated", - "past_participle": "corrugated" - }, - { - "infinitive": "think", - "present": "thinks", - "gerund": "thinking", - "past": "thought", - "past_participle": "thought" - }, - { - "infinitive": "frequent", - "present": "frequents", - "gerund": "frequenting", - "past": "frequented", - "past_participle": "frequented" - }, - { - "infinitive": "layer", - "present": "lays", - "gerund": "laying", - "past": "laid", - "past_participle": "laid" - }, - { - "infinitive": "cheese", - "present": "", - "gerund": "cheesing", - "past": "cheesed", - "past_participle": "cheesed" - }, - { - "infinitive": "commercialize", - "present": "commercializes", - "gerund": "commercializing", - "past": "commercialized", - "past_participle": "commercialized" - }, - { - "infinitive": "crib", - "present": "cribs", - "gerund": "cribbing", - "past": "cribbed", - "past_participle": "cribbed" - }, - { - "infinitive": "disburse", - "present": "disburses", - "gerund": "disbursing", - "past": "disbursed", - "past_participle": "disbursed" - }, - { - "infinitive": "long", - "present": "longs", - "gerund": "longing", - "past": "longed", - "past_participle": "longed" - }, - { - "infinitive": "carry", - "present": "carries", - "gerund": "carrying", - "past": "carried", - "past_participle": "carried" - }, - { - "infinitive": "cloture", - "present": "clotures", - "gerund": "cloturing", - "past": "clotured", - "past_participle": "clotured" - }, - { - "infinitive": "basify", - "present": "basifies", - "gerund": "basifying", - "past": "basified", - "past_participle": "basified" - }, - { - "infinitive": "interchange", - "present": "interchanges", - "gerund": "interchanging", - "past": "interchanged", - "past_participle": "interchanged" - }, - { - "infinitive": "lap", - "present": "laps", - "gerund": "lapping", - "past": "lapped", - "past_participle": "lapped" - }, - { - "infinitive": "lambaste", - "present": "lambasts", - "gerund": "lambasting", - "past": "lambasted", - "past_participle": "lambasted" - }, - { - "infinitive": "escort", - "present": "escorts", - "gerund": "escorting", - "past": "escorted", - "past_participle": "escorted" - }, - { - "infinitive": "artificialize", - "present": "artificializes", - "gerund": "artificializing", - "past": "artificialized", - "past_participle": "artificialized" - }, - { - "infinitive": "daunt", - "present": "daunts", - "gerund": "daunting", - "past": "daunted", - "past_participle": "daunted" - }, - { - "infinitive": "repatriate", - "present": "repatriates", - "gerund": "repatriating", - "past": "repatriated", - "past_participle": "repatriated" - }, - { - "infinitive": "broadcast", - "present": "broadcasts", - "gerund": "broadcasting", - "past": "broadcasted", - "past_participle": "broadcasted" - }, - { - "infinitive": "interdict", - "present": "interdicts", - "gerund": "interdicting", - "past": "interdicted", - "past_participle": "interdicted" - }, - { - "infinitive": "butt", - "present": "butts", - "gerund": "butting", - "past": "butted", - "past_participle": "butted" - }, - { - "infinitive": "blackguard", - "present": "blackguards", - "gerund": "blackguarding", - "past": "blackguarded", - "past_participle": "blackguarded" - }, - { - "infinitive": "hemstitch", - "present": "hemstitches", - "gerund": "hemstitching", - "past": "hemstitched", - "past_participle": "hemstitched" - }, - { - "infinitive": "infiltrate", - "present": "infiltrates", - "gerund": "infiltrating", - "past": "infiltrated", - "past_participle": "infiltrated" - }, - { - "infinitive": "deafen", - "present": "deafens", - "gerund": "deafening", - "past": "deafened", - "past_participle": "deafened" - }, - { - "infinitive": "graphitize", - "present": "graphitizes", - "gerund": "graphitizing", - "past": "graphitized", - "past_participle": "graphitized" - }, - { - "infinitive": "underprice", - "present": "underprices", - "gerund": "underpricing", - "past": "underpriced", - "past_participle": "underpriced" - }, - { - "infinitive": "venture", - "present": "ventures", - "gerund": "venturing", - "past": "ventured", - "past_participle": "ventured" - }, - { - "infinitive": "proofread", - "present": "proofreads", - "gerund": "proofreading", - "past": "proofread", - "past_participle": "proofread" - }, - { - "infinitive": "lullaby", - "present": "lullabies", - "gerund": "lullabying", - "past": "lullabied", - "past_participle": "lullabied" - }, - { - "infinitive": "lick", - "present": "licks", - "gerund": "licking", - "past": "licked", - "past_participle": "licked" - }, - { - "infinitive": "capsize", - "present": "capsizes", - "gerund": "capsizing", - "past": "capsized", - "past_participle": "capsized" - }, - { - "infinitive": "stereochrome", - "present": "stereochromes", - "gerund": "stereochroming", - "past": "stereochromed", - "past_participle": "stereochromed" - }, - { - "infinitive": "tantalize", - "present": "tantalizes", - "gerund": "tantalizing", - "past": "tantalized", - "past_participle": "tantalized" - }, - { - "infinitive": "retort", - "present": "retorts", - "gerund": "retorting", - "past": "retorted", - "past_participle": "retorted" - }, - { - "infinitive": "seal", - "present": "seals", - "gerund": "sealing", - "past": "sealed", - "past_participle": "sealed" - }, - { - "infinitive": "dash", - "present": "dashes", - "gerund": "dashing", - "past": "dashed", - "past_participle": "dashed" - }, - { - "infinitive": "sulk", - "present": "sulks", - "gerund": "sulking", - "past": "sulked", - "past_participle": "sulked" - }, - { - "infinitive": "mechanize", - "present": "mechanizes", - "gerund": "mechanizing", - "past": "mechanized", - "past_participle": "mechanized" - }, - { - "infinitive": "calendar", - "present": "calendars", - "gerund": "calendaring", - "past": "calendared", - "past_participle": "calendared" - }, - { - "infinitive": "squat", - "present": "squats", - "gerund": "squatting", - "past": "squatted", - "past_participle": "squatted" - }, - { - "infinitive": "isolate", - "present": "isolates", - "gerund": "isolating", - "past": "isolated", - "past_participle": "isolated" - }, - { - "infinitive": "clunk", - "present": "clunks", - "gerund": "clunking", - "past": "clunked", - "past_participle": "clunked" - }, - { - "infinitive": "canton", - "present": "cantons", - "gerund": "cantoning", - "past": "cantoned", - "past_participle": "cantoned" - }, - { - "infinitive": "channel", - "present": "channels", - "gerund": "channelling", - "past": "channelled", - "past_participle": "channelled" - }, - { - "infinitive": "pain", - "present": "pains", - "gerund": "paining", - "past": "pained", - "past_participle": "pained" - }, - { - "infinitive": "trace", - "present": "traces", - "gerund": "tracing", - "past": "traced", - "past_participle": "traced" - }, - { - "infinitive": "roster", - "present": "rosters", - "gerund": "rostering", - "past": "rostered", - "past_participle": "rostered" - }, - { - "infinitive": "track", - "present": "tracks", - "gerund": "tracking", - "past": "tracked", - "past_participle": "tracked" - }, - { - "infinitive": "baize", - "present": "baizes", - "gerund": "baizing", - "past": "baized", - "past_participle": "baized" - }, - { - "infinitive": "zigzag", - "present": "zigzags", - "gerund": "zigzagging", - "past": "zigzagged", - "past_participle": "zigzagged" - }, - { - "infinitive": "assault", - "present": "assaults", - "gerund": "assaulting", - "past": "assaulted", - "past_participle": "assaulted" - }, - { - "infinitive": "barrage", - "present": "barrages", - "gerund": "barraging", - "past": "barraged", - "past_participle": "barraged" - }, - { - "infinitive": "inspirit", - "present": "inspirits", - "gerund": "inspiriting", - "past": "inspirited", - "past_participle": "inspirited" - }, - { - "infinitive": "pair", - "present": "pairs", - "gerund": "pairing", - "past": "paired", - "past_participle": "paired" - }, - { - "infinitive": "marginate", - "present": "marginates", - "gerund": "marginating", - "past": "marginated", - "past_participle": "marginated" - }, - { - "infinitive": "typeset", - "present": "typesets", - "gerund": "typesetting", - "past": "typeset", - "past_participle": "typeset" - }, - { - "infinitive": "scowl", - "present": "scowls", - "gerund": "scowling", - "past": "scowled", - "past_participle": "scowled" - }, - { - "infinitive": "voodoo", - "present": "voodoos", - "gerund": "voodooing", - "past": "voodooed", - "past_participle": "voodooed" - }, - { - "infinitive": "reed", - "present": "reeds", - "gerund": "reeding", - "past": "reeded", - "past_participle": "reeded" - }, - { - "infinitive": "unstep", - "present": "unsteps", - "gerund": "unstepping", - "past": "unstepped", - "past_participle": "unstepped" - }, - { - "infinitive": "shop", - "present": "shops", - "gerund": "shopping", - "past": "shopped", - "past_participle": "shopped" - }, - { - "infinitive": "flyfish", - "present": "flyfishes", - "gerund": "flyfishing", - "past": "flyfished", - "past_participle": "flyfished" - }, - { - "infinitive": "shot", - "present": "", - "gerund": "", - "past": "shot", - "past_participle": "shot" - }, - { - "infinitive": "show", - "present": "shows", - "gerund": "showing", - "past": "showed", - "past_participle": "shown" - }, - { - "infinitive": "Prussianize", - "present": "Prussianizes", - "gerund": "Prussianizing", - "past": "Prussianized", - "past_participle": "Prussianized" - }, - { - "infinitive": "accession", - "present": "accessions", - "gerund": "accessioning", - "past": "accessioned", - "past_participle": "accessioned" - }, - { - "infinitive": "elevate", - "present": "elevates", - "gerund": "elevating", - "past": "elevated", - "past_participle": "elevated" - }, - { - "infinitive": "revest", - "present": "revests", - "gerund": "revesting", - "past": "revested", - "past_participle": "revested" - }, - { - "infinitive": "premonish", - "present": "premonishes", - "gerund": "premonishing", - "past": "premonished", - "past_participle": "premonished" - }, - { - "infinitive": "shoe", - "present": "shoes", - "gerund": "shoeing", - "past": "shod", - "past_participle": "shod" - }, - { - "infinitive": "disunite", - "present": "disunites", - "gerund": "disuniting", - "past": "disunited", - "past_participle": "disunited" - }, - { - "infinitive": "estop", - "present": "estops", - "gerund": "estopping", - "past": "estopped", - "past_participle": "estopped" - }, - { - "infinitive": "corner", - "present": "corners", - "gerund": "cornering", - "past": "cornered", - "past_participle": "cornered" - }, - { - "infinitive": "forecast", - "present": "forecasts", - "gerund": "forecasting", - "past": "forecasted", - "past_participle": "forecasted" - }, - { - "infinitive": "shoo", - "present": "shoos", - "gerund": "shooing", - "past": "shooed", - "past_participle": "shooed" - }, - { - "infinitive": "fend", - "present": "fends", - "gerund": "fending", - "past": "fended", - "past_participle": "fended" - }, - { - "infinitive": "dice", - "present": "dices", - "gerund": "dicing", - "past": "diced", - "past_participle": "diced" - }, - { - "infinitive": "plume", - "present": "plumes", - "gerund": "pluming", - "past": "plumed", - "past_participle": "plumed" - }, - { - "infinitive": "machinate", - "present": "machinates", - "gerund": "machinating", - "past": "machinated", - "past_participle": "machinated" - }, - { - "infinitive": "plumb", - "present": "plumbs", - "gerund": "plumbing", - "past": "plumbed", - "past_participle": "plumbed" - }, - { - "infinitive": "re-create", - "present": "re-creates", - "gerund": "re-creating", - "past": "recreated", - "past_participle": "re-created" - }, - { - "infinitive": "manoeuvre", - "present": "manoeuvres", - "gerund": "manoeuvring", - "past": "manoeuvred", - "past_participle": "manoeuvred" - }, - { - "infinitive": "mistranslate", - "present": "mistranslates", - "gerund": "mistranslating", - "past": "mistranslated", - "past_participle": "mistranslated" - }, - { - "infinitive": "travesty", - "present": "travesties", - "gerund": "travestying", - "past": "travestied", - "past_participle": "travestied" - }, - { - "infinitive": "plump", - "present": "plumps", - "gerund": "plumping", - "past": "plumped", - "past_participle": "plumped" - }, - { - "infinitive": "programtrade", - "present": "programtrades", - "gerund": "programtrading", - "past": "programtraded", - "past_participle": "programtraded" - }, - { - "infinitive": "dulcify", - "present": "dulcifies", - "gerund": "dulcifying", - "past": "dulcified", - "past_participle": "dulcified" - }, - { - "infinitive": "esterify", - "present": "esterifies", - "gerund": "esterifying", - "past": "esterified", - "past_participle": "esterified" - }, - { - "infinitive": "got", - "present": "gets", - "gerund": "getting", - "past": "got", - "past_participle": "gotten" - }, - { - "infinitive": "stomp", - "present": "stomps", - "gerund": "stomping", - "past": "stomped", - "past_participle": "stomped" - }, - { - "infinitive": "grubstake", - "present": "grubstakes", - "gerund": "grubstaking", - "past": "grubstaked", - "past_participle": "grubstaked" - }, - { - "infinitive": "wheeze", - "present": "wheezes", - "gerund": "wheezing", - "past": "wheezed", - "past_participle": "wheezed" - }, - { - "infinitive": "gibber", - "present": "gibbers", - "gerund": "gibbering", - "past": "gibbered", - "past_participle": "gibbered" - }, - { - "infinitive": "hyphenate", - "present": "hyphenates", - "gerund": "hyphening", - "past": "hyphened", - "past_participle": "hyphened" - }, - { - "infinitive": "gem", - "present": "gems", - "gerund": "gemming", - "past": "gemmed", - "past_participle": "gemmed" - }, - { - "infinitive": "disinherit", - "present": "disinherits", - "gerund": "disinheriting", - "past": "disinherited", - "past_participle": "disinherited" - }, - { - "infinitive": "beseech", - "present": "beseeches", - "gerund": "beseeching", - "past": "besought", - "past_participle": "besought" - }, - { - "infinitive": "harbinger", - "present": "harbingers", - "gerund": "harbingering", - "past": "harbingered", - "past_participle": "harbingered" - }, - { - "infinitive": "shadowbox", - "present": "shadowboxes", - "gerund": "shadowboxing", - "past": "shadowboxed", - "past_participle": "shadowboxed" - }, - { - "infinitive": "overmatch", - "present": "overmatches", - "gerund": "overmatching", - "past": "overmatched", - "past_participle": "overmatched" - }, - { - "infinitive": "gammon", - "present": "gammons", - "gerund": "gammoning", - "past": "gammoned", - "past_participle": "gammoned" - }, - { - "infinitive": "tallow", - "present": "tallows", - "gerund": "tallowing", - "past": "tallowed", - "past_participle": "tallowed" - }, - { - "infinitive": "consubstantiate", - "present": "consubstantiates", - "gerund": "consubstantiating", - "past": "consubstantiated", - "past_participle": "consubstantiated" - }, - { - "infinitive": "kernel", - "present": "kernels", - "gerund": "kernelling", - "past": "kernelled", - "past_participle": "kernelled" - }, - { - "infinitive": "fixate", - "present": "fixates", - "gerund": "fixating", - "past": "fixated", - "past_participle": "fixated" - }, - { - "infinitive": "seat", - "present": "seats", - "gerund": "seating", - "past": "seated", - "past_participle": "seated" - }, - { - "infinitive": "seam", - "present": "seams", - "gerund": "seaming", - "past": "seamed", - "past_participle": "seamed" - }, - { - "infinitive": "misconduct", - "present": "misconducts", - "gerund": "misconducting", - "past": "misconducted", - "past_participle": "misconducted" - }, - { - "infinitive": "pebble", - "present": "pebbles", - "gerund": "pebbling", - "past": "pebbled", - "past_participle": "pebbled" - }, - { - "infinitive": "adjudge", - "present": "adjudges", - "gerund": "adjudging", - "past": "adjudged", - "past_participle": "adjudged" - }, - { - "infinitive": "wonder", - "present": "wonders", - "gerund": "wondering", - "past": "wondered", - "past_participle": "wondered" - }, - { - "infinitive": "limber", - "present": "limbers", - "gerund": "limbering", - "past": "limbered", - "past_participle": "limbered" - }, - { - "infinitive": "ornament", - "present": "ornaments", - "gerund": "ornamenting", - "past": "ornamented", - "past_participle": "ornamented" - }, - { - "infinitive": "ideate", - "present": "ideates", - "gerund": "ideating", - "past": "ideated", - "past_participle": "ideated" - }, - { - "infinitive": "label", - "present": "labels", - "gerund": "labelling", - "past": "labelled", - "past_participle": "labelled" - }, - { - "infinitive": "pump", - "present": "pumps", - "gerund": "pumping", - "past": "pumped", - "past_participle": "pumped" - }, - { - "infinitive": "satiate", - "present": "satiates", - "gerund": "satiating", - "past": "satiated", - "past_participle": "satiated" - }, - { - "infinitive": "tup", - "present": "tups", - "gerund": "tupping", - "past": "tupped", - "past_participle": "tupped" - }, - { - "infinitive": "tut", - "present": "tuts", - "gerund": "tutting", - "past": "tutted", - "past_participle": "tutted" - }, - { - "infinitive": "countenance", - "present": "countenances", - "gerund": "countenancing", - "past": "countenanced", - "past_participle": "countenanced" - }, - { - "infinitive": "tun", - "present": "tuns", - "gerund": "tunning", - "past": "tunned", - "past_participle": "tunned" - }, - { - "infinitive": "tub", - "present": "tubs", - "gerund": "tubbing", - "past": "tubbed", - "past_participle": "tubbed" - }, - { - "infinitive": "tug", - "present": "tugs", - "gerund": "tugging", - "past": "tugged", - "past_participle": "tugged" - }, - { - "infinitive": "librate", - "present": "librates", - "gerund": "librating", - "past": "librated", - "past_participle": "librated" - }, - { - "infinitive": "tonsure", - "present": "tonsures", - "gerund": "tonsuring", - "past": "tonsured", - "past_participle": "tonsured" - }, - { - "infinitive": "hoke", - "present": "hokes", - "gerund": "hoking", - "past": "hoked", - "past_participle": "hoked" - }, - { - "infinitive": "fulminate", - "present": "fulminates", - "gerund": "fulminating", - "past": "fulminated", - "past_participle": "fulminated" - }, - { - "infinitive": "dedicate", - "present": "dedicates", - "gerund": "dedicating", - "past": "dedicated", - "past_participle": "dedicated" - }, - { - "infinitive": "tour", - "present": "tours", - "gerund": "touring", - "past": "toured", - "past_participle": "toured" - }, - { - "infinitive": "tout", - "present": "touts", - "gerund": "touting", - "past": "touted", - "past_participle": "touted" - }, - { - "infinitive": "remake", - "present": "remakes", - "gerund": "remaking", - "past": "remade", - "past_participle": "remade" - }, - { - "infinitive": "valorize", - "present": "valorizes", - "gerund": "valorizing", - "past": "valorized", - "past_participle": "valorized" - }, - { - "infinitive": "shikar", - "present": "shikars", - "gerund": "shikarring", - "past": "shikarred", - "past_participle": "shikarred" - }, - { - "infinitive": "aboutface", - "present": "aboutfaces", - "gerund": "aboutfacing", - "past": "aboutfaced", - "past_participle": "aboutfaced" - }, - { - "infinitive": "spank", - "present": "spanks", - "gerund": "spanking", - "past": "spanked", - "past_participle": "spanked" - }, - { - "infinitive": "uncouple", - "present": "uncouples", - "gerund": "uncoupling", - "past": "uncoupled", - "past_participle": "uncoupled" - }, - { - "infinitive": "cancel", - "present": "cancels", - "gerund": "cancelling", - "past": "cancelled", - "past_participle": "cancelled" - }, - { - "infinitive": "undock", - "present": "undocks", - "gerund": "undocking", - "past": "undocked", - "past_participle": "undocked" - }, - { - "infinitive": "tinkle", - "present": "tinkles", - "gerund": "tinkling", - "past": "tinkled", - "past_participle": "tinkled" - }, - { - "infinitive": "sned", - "present": "sneds", - "gerund": "snedding", - "past": "snedded", - "past_participle": "snedded" - }, - { - "infinitive": "intrude", - "present": "intrudes", - "gerund": "intruding", - "past": "intruded", - "past_participle": "intruded" - }, - { - "infinitive": "caricature", - "present": "caricatures", - "gerund": "caricaturing", - "past": "caricatured", - "past_participle": "caricatured" - }, - { - "infinitive": "tramp", - "present": "tramps", - "gerund": "tramping", - "past": "tramped", - "past_participle": "tramped" - }, - { - "infinitive": "marl", - "present": "marls", - "gerund": "marling", - "past": "marled", - "past_participle": "marled" - }, - { - "infinitive": "wobble", - "present": "wobbles", - "gerund": "wobbling", - "past": "wobbled", - "past_participle": "wobbled" - }, - { - "infinitive": "certify", - "present": "certifies", - "gerund": "certifying", - "past": "certified", - "past_participle": "certified" - }, - { - "infinitive": "mark", - "present": "marks", - "gerund": "marking", - "past": "marked", - "past_participle": "marked" - }, - { - "infinitive": "understate", - "present": "understates", - "gerund": "understating", - "past": "understated", - "past_participle": "understated" - }, - { - "infinitive": "sentinel", - "present": "sentinels", - "gerund": "sentineling", - "past": "sentineled", - "past_participle": "sentineled" - }, - { - "infinitive": "clepe", - "present": "clepes", - "gerund": "cleping", - "past": "yclept", - "past_participle": "yclept" - }, - { - "infinitive": "squash", - "present": "squashes", - "gerund": "squashing", - "past": "squashed", - "past_participle": "squashed" - }, - { - "infinitive": "disesteem", - "present": "disesteems", - "gerund": "disesteeming", - "past": "disesteemed", - "past_participle": "disesteemed" - }, - { - "infinitive": "deconsecrate", - "present": "deconsecrates", - "gerund": "deconsecrating", - "past": "deconsecrated", - "past_participle": "deconsecrated" - }, - { - "infinitive": "wake", - "present": "wakes", - "gerund": "waking", - "past": "woke", - "past_participle": "woken" - }, - { - "infinitive": "overdose", - "present": "overdoses", - "gerund": "overdosing", - "past": "overdosed", - "past_participle": "overdosed" - }, - { - "infinitive": "sound", - "present": "sounds", - "gerund": "sounding", - "past": "sounded", - "past_participle": "sounded" - }, - { - "infinitive": "gloze", - "present": "glozes", - "gerund": "glozing", - "past": "glozed", - "past_participle": "glozed" - }, - { - "infinitive": "master-mind", - "present": "master-minds", - "gerund": "master-minding", - "past": "masterminded", - "past_participle": "master-minded" - }, - { - "infinitive": "invigorate", - "present": "invigorates", - "gerund": "invigorating", - "past": "invigorated", - "past_participle": "invigorated" - }, - { - "infinitive": "slumber", - "present": "slumbers", - "gerund": "slumbering", - "past": "slumbered", - "past_participle": "slumbered" - }, - { - "infinitive": "tuck", - "present": "tucks", - "gerund": "tucking", - "past": "tucked", - "past_participle": "tucked" - }, - { - "infinitive": "cannonade", - "present": "cannonades", - "gerund": "cannonading", - "past": "cannonaded", - "past_participle": "cannonaded" - }, - { - "infinitive": "compile", - "present": "compiles", - "gerund": "compiling", - "past": "compiled", - "past_participle": "compiled" - }, - { - "infinitive": "cock", - "present": "cocks", - "gerund": "cocking", - "past": "cocked", - "past_participle": "cocked" - }, - { - "infinitive": "huckster", - "present": "hucksters", - "gerund": "huckstering", - "past": "huckstered", - "past_participle": "huckstered" - }, - { - "infinitive": "bathe", - "present": "bathes", - "gerund": "bathing", - "past": "bathed", - "past_participle": "bathed" - }, - { - "infinitive": "hedge-hop", - "present": "hedge-hops", - "gerund": "hedgehopping", - "past": "hedgehopped", - "past_participle": "hedge-hopped" - }, - { - "infinitive": "marcel", - "present": "marcels", - "gerund": "marcelling", - "past": "marcelled", - "past_participle": "marcelled" - }, - { - "infinitive": "cluster", - "present": "clusters", - "gerund": "clustering", - "past": "clustered", - "past_participle": "clustered" - }, - { - "infinitive": "idolatrize", - "present": "idolatrizes", - "gerund": "idolatrizing", - "past": "idolatrized", - "past_participle": "idolatrized" - }, - { - "infinitive": "pat", - "present": "pats", - "gerund": "patting", - "past": "patted", - "past_participle": "patted" - }, - { - "infinitive": "doctor", - "present": "doctors", - "gerund": "doctoring", - "past": "doctored", - "past_participle": "doctored" - }, - { - "infinitive": "pay", - "present": "pays", - "gerund": "paying", - "past": "payed", - "past_participle": "payed" - }, - { - "infinitive": "lave", - "present": "laves", - "gerund": "laving", - "past": "laved", - "past_participle": "laved" - }, - { - "infinitive": "demur", - "present": "demurs", - "gerund": "demurring", - "past": "demurred", - "past_participle": "demurred" - }, - { - "infinitive": "pad", - "present": "pads", - "gerund": "padding", - "past": "padded", - "past_participle": "padded" - }, - { - "infinitive": "pal", - "present": "pals", - "gerund": "palling", - "past": "palled", - "past_participle": "palled" - }, - { - "infinitive": "pan", - "present": "pans", - "gerund": "panning", - "past": "panned", - "past_participle": "panned" - }, - { - "infinitive": "spring-clean", - "present": "spring-cleans", - "gerund": "spring-cleaning", - "past": "spring-cleaned", - "past_participle": "spring-cleaned" - }, - { - "infinitive": "exhaust", - "present": "exhausts", - "gerund": "exhausting", - "past": "exhausted", - "past_participle": "exhausted" - }, - { - "infinitive": "oil", - "present": "oils", - "gerund": "oiling", - "past": "oiled", - "past_participle": "oiled" - }, - { - "infinitive": "assist", - "present": "assists", - "gerund": "assisting", - "past": "assisted", - "past_participle": "assisted" - }, - { - "infinitive": "munch", - "present": "munches", - "gerund": "munching", - "past": "munched", - "past_participle": "munched" - }, - { - "infinitive": "cauterize", - "present": "cauterizes", - "gerund": "cauterizing", - "past": "cauterized", - "past_participle": "cauterized" - }, - { - "infinitive": "companion", - "present": "companions", - "gerund": "companioning", - "past": "companioned", - "past_participle": "companioned" - }, - { - "infinitive": "steamroller", - "present": "steamrollers", - "gerund": "steam-rollering", - "past": "steamrollered", - "past_participle": "steam-rollered" - }, - { - "infinitive": "adjure", - "present": "adjures", - "gerund": "adjuring", - "past": "adjured", - "past_participle": "adjured" - }, - { - "infinitive": "weave", - "present": "weaves", - "gerund": "weaving", - "past": "wove", - "past_participle": "woven" - }, - { - "infinitive": "countermarch", - "present": "countermarches", - "gerund": "countermarching", - "past": "countermarched", - "past_participle": "countermarched" - }, - { - "infinitive": "drain", - "present": "drains", - "gerund": "draining", - "past": "drained", - "past_participle": "drained" - }, - { - "infinitive": "suffuse", - "present": "suffuses", - "gerund": "suffusing", - "past": "suffused", - "past_participle": "suffused" - }, - { - "infinitive": "strickle", - "present": "strickles", - "gerund": "strickling", - "past": "strickled", - "past_participle": "strickled" - }, - { - "infinitive": "solve", - "present": "solves", - "gerund": "solving", - "past": "solved", - "past_participle": "solved" - }, - { - "infinitive": "bottle", - "present": "bottles", - "gerund": "bottling", - "past": "bottled", - "past_participle": "bottled" - }, - { - "infinitive": "soundproof", - "present": "soundproofs", - "gerund": "soundproofing", - "past": "soundproofed", - "past_participle": "soundproofed" - }, - { - "infinitive": "parody", - "present": "parodys", - "gerund": "parodying", - "past": "parodied", - "past_participle": "parodied" - }, - { - "infinitive": "overprint", - "present": "overprints", - "gerund": "overprinting", - "past": "overprinted", - "past_participle": "overprinted" - }, - { - "infinitive": "fume", - "present": "fumes", - "gerund": "fuming", - "past": "fumed", - "past_participle": "fumed" - }, - { - "infinitive": "superinduce", - "present": "superinduces", - "gerund": "superinducing", - "past": "superinduced", - "past_participle": "superinduced" - }, - { - "infinitive": "imprint", - "present": "imprints", - "gerund": "imprinting", - "past": "imprinted", - "past_participle": "imprinted" - }, - { - "infinitive": "griddle", - "present": "griddles", - "gerund": "griddling", - "past": "griddled", - "past_participle": "griddled" - }, - { - "infinitive": "sinter", - "present": "sinters", - "gerund": "sintering", - "past": "sintered", - "past_participle": "sintered" - }, - { - "infinitive": "prill", - "present": "prills", - "gerund": "prilling", - "past": "prilled", - "past_participle": "prilled" - }, - { - "infinitive": "ski-jump", - "present": "ski-jumps", - "gerund": "ski-jumping", - "past": "ski-jumped", - "past_participle": "ski-jumped" - }, - { - "infinitive": "forgo", - "present": "forgoes", - "gerund": "forgoing", - "past": "forwent", - "past_participle": "forgone" - }, - { - "infinitive": "beagle", - "present": "beagles", - "gerund": "beagling", - "past": "beagled", - "past_participle": "beagled" - }, - { - "infinitive": "pile", - "present": "piles", - "gerund": "piling", - "past": "piled", - "past_participle": "piled" - }, - { - "infinitive": "decalcify", - "present": "decalcifies", - "gerund": "decalcifying", - "past": "decalcified", - "past_participle": "decalcified" - }, - { - "infinitive": "eviscerate", - "present": "eviscerates", - "gerund": "eviscerating", - "past": "eviscerated", - "past_participle": "eviscerated" - }, - { - "infinitive": "pill", - "present": "pills", - "gerund": "pilling", - "past": "pilled", - "past_participle": "pilled" - }, - { - "infinitive": "grip", - "present": "grips", - "gerund": "gripping", - "past": "gript", - "past_participle": "gript" - }, - { - "infinitive": "zugzwang", - "present": "zugzwangs", - "gerund": "zugzwanging", - "past": "zugzwanged", - "past_participle": "zugzwanged" - }, - { - "infinitive": "grit", - "present": "grits", - "gerund": "gritting", - "past": "gritted", - "past_participle": "gritted" - }, - { - "infinitive": "mop", - "present": "mops", - "gerund": "mopping", - "past": "mopped", - "past_participle": "mopped" - }, - { - "infinitive": "mow", - "present": "mows", - "gerund": "mowing", - "past": "mowed", - "past_participle": "mown" - }, - { - "infinitive": "moo", - "present": "moos", - "gerund": "mooing", - "past": "mooed", - "past_participle": "mooed" - }, - { - "infinitive": "mob", - "present": "mobs", - "gerund": "mobbing", - "past": "mobbed", - "past_participle": "mobbed" - }, - { - "infinitive": "railroad", - "present": "", - "gerund": "railroading", - "past": "railroaded", - "past_participle": "railroaded" - }, - { - "infinitive": "implicate", - "present": "implicates", - "gerund": "implicating", - "past": "implicated", - "past_participle": "implicated" - }, - { - "infinitive": "grin", - "present": "grins", - "gerund": "grinning", - "past": "grinned", - "past_participle": "grinned" - }, - { - "infinitive": "militarize", - "present": "militarizes", - "gerund": "militarizing", - "past": "militarized", - "past_participle": "militarized" - }, - { - "infinitive": "first-foot", - "present": "first-foots", - "gerund": "first-footing", - "past": "first-footed", - "past_participle": "first-footed" - }, - { - "infinitive": "chamber", - "present": "chambers", - "gerund": "chambering", - "past": "chambered", - "past_participle": "chambered" - }, - { - "infinitive": "nose", - "present": "noses", - "gerund": "nosing", - "past": "nosed", - "past_participle": "nosed" - }, - { - "infinitive": "nosh", - "present": "noshes", - "gerund": "noshing", - "past": "noshed", - "past_participle": "noshed" - }, - { - "infinitive": "overpitch", - "present": "overpitches", - "gerund": "overpitching", - "past": "overpitched", - "past_participle": "overpitched" - }, - { - "infinitive": "afflict", - "present": "afflicts", - "gerund": "afflicting", - "past": "afflicted", - "past_participle": "afflicted" - }, - { - "infinitive": "re-press", - "present": "re-presses", - "gerund": "re-pressing", - "past": "repressed", - "past_participle": "re-pressed" - }, - { - "infinitive": "commandeer", - "present": "commandeers", - "gerund": "commandeering", - "past": "commandeered", - "past_participle": "commandeered" - }, - { - "infinitive": "ascend", - "present": "ascends", - "gerund": "ascending", - "past": "ascended", - "past_participle": "ascended" - }, - { - "infinitive": "dole", - "present": "doles", - "gerund": "doling", - "past": "doled", - "past_participle": "doled" - }, - { - "infinitive": "impolder", - "present": "impolders", - "gerund": "impoldering", - "past": "impoldered", - "past_participle": "impoldered" - }, - { - "infinitive": "erase", - "present": "erases", - "gerund": "erasing", - "past": "erased", - "past_participle": "erased" - }, - { - "infinitive": "pasture", - "present": "pastures", - "gerund": "pasturing", - "past": "pastured", - "past_participle": "pastured" - }, - { - "infinitive": "gross", - "present": "grosses", - "gerund": "grossing", - "past": "grossed", - "past_participle": "grossed" - }, - { - "infinitive": "skelly", - "present": "skellies", - "gerund": "skellying", - "past": "skellied", - "past_participle": "skellied" - }, - { - "infinitive": "confirm", - "present": "confirms", - "gerund": "confirming", - "past": "confirmed", - "past_participle": "confirmed" - }, - { - "infinitive": "ruggedize", - "present": "ruggedizes", - "gerund": "ruggedizing", - "past": "ruggedized", - "past_participle": "ruggedized" - }, - { - "infinitive": "trow", - "present": "trows", - "gerund": "trowing", - "past": "trowed", - "past_participle": "trowed" - }, - { - "infinitive": "pioneer", - "present": "pioneers", - "gerund": "pioneering", - "past": "pioneered", - "past_participle": "pioneered" - }, - { - "infinitive": "inject", - "present": "injects", - "gerund": "injecting", - "past": "injected", - "past_participle": "injected" - }, - { - "infinitive": "gladden", - "present": "gladdens", - "gerund": "gladdening", - "past": "gladdened", - "past_participle": "gladdened" - }, - { - "infinitive": "moderate", - "present": "moderates", - "gerund": "moderating", - "past": "moderated", - "past_participle": "moderated" - }, - { - "infinitive": "knife", - "present": "knifes", - "gerund": "knifing", - "past": "knifed", - "past_participle": "knifed" - }, - { - "infinitive": "squall", - "present": "squalls", - "gerund": "squalling", - "past": "squalled", - "past_participle": "squalled" - }, - { - "infinitive": "giggle", - "present": "giggles", - "gerund": "giggling", - "past": "giggled", - "past_participle": "giggled" - }, - { - "infinitive": "chirp", - "present": "chirps", - "gerund": "chirping", - "past": "chirped", - "past_participle": "chirped" - }, - { - "infinitive": "roar", - "present": "roars", - "gerund": "roaring", - "past": "roared", - "past_participle": "roared" - }, - { - "infinitive": "island", - "present": "islands", - "gerund": "islanding", - "past": "islanded", - "past_participle": "islanded" - }, - { - "infinitive": "fringe", - "present": "fringes", - "gerund": "fringing", - "past": "fringed", - "past_participle": "fringed" - }, - { - "infinitive": "thrive", - "present": "thrives", - "gerund": "thriving", - "past": "thrived", - "past_participle": "thriven" - }, - { - "infinitive": "lithograph", - "present": "lithographs", - "gerund": "lithographing", - "past": "lithographed", - "past_participle": "lithographed" - }, - { - "infinitive": "solidify", - "present": "solidifies", - "gerund": "solidifying", - "past": "solidified", - "past_participle": "solidified" - }, - { - "infinitive": "roam", - "present": "roams", - "gerund": "roaming", - "past": "roamed", - "past_participle": "roamed" - }, - { - "infinitive": "remonetize", - "present": "remonetizes", - "gerund": "remonetizing", - "past": "remonetized", - "past_participle": "remonetized" - }, - { - "infinitive": "repine", - "present": "repines", - "gerund": "repining", - "past": "repined", - "past_participle": "repined" - }, - { - "infinitive": "dagger", - "present": "daggers", - "gerund": "daggering", - "past": "daggered", - "past_participle": "daggered" - }, - { - "infinitive": "prohibit", - "present": "prohibits", - "gerund": "prohibiting", - "past": "prohibited", - "past_participle": "prohibited" - }, - { - "infinitive": "actuate", - "present": "actuates", - "gerund": "actuating", - "past": "actuated", - "past_participle": "actuated" - }, - { - "infinitive": "harness", - "present": "harnesses", - "gerund": "harnessing", - "past": "harnessed", - "past_participle": "harnessed" - }, - { - "infinitive": "whiten", - "present": "whitens", - "gerund": "whitening", - "past": "whitened", - "past_participle": "whitened" - }, - { - "infinitive": "strip", - "present": "strips", - "gerund": "stripping", - "past": "stripped", - "past_participle": "stripped" - }, - { - "infinitive": "spline", - "present": "splines", - "gerund": "splining", - "past": "splined", - "past_participle": "splined" - }, - { - "infinitive": "purfle", - "present": "purfles", - "gerund": "purfling", - "past": "purfled", - "past_participle": "purfled" - }, - { - "infinitive": "bedim", - "present": "bedims", - "gerund": "bedimming", - "past": "bedimmed", - "past_participle": "bedimmed" - }, - { - "infinitive": "enroot", - "present": "enroots", - "gerund": "enrooting", - "past": "enrooted", - "past_participle": "enrooted" - }, - { - "infinitive": "vaporize", - "present": "vaporizes", - "gerund": "vaporizing", - "past": "vaporized", - "past_participle": "vaporized" - }, - { - "infinitive": "madden", - "present": "maddens", - "gerund": "maddening", - "past": "maddened", - "past_participle": "maddened" - }, - { - "infinitive": "decode", - "present": "decodes", - "gerund": "decoding", - "past": "decoded", - "past_participle": "decoded" - }, - { - "infinitive": "galvanize", - "present": "galvanizes", - "gerund": "galvanizing", - "past": "galvanized", - "past_participle": "galvanized" - }, - { - "infinitive": "outmatch", - "present": "outmatches", - "gerund": "outmatching", - "past": "outmatched", - "past_participle": "outmatched" - }, - { - "infinitive": "disfrock", - "present": "disfrocks", - "gerund": "disfrocking", - "past": "disfrocked", - "past_participle": "disfrocked" - }, - { - "infinitive": "coldshoulder", - "present": "coldshoulders", - "gerund": "coldshouldering", - "past": "coldshouldered", - "past_participle": "coldshouldered" - }, - { - "infinitive": "immerge", - "present": "immerges", - "gerund": "immerging", - "past": "immerged", - "past_participle": "immerged" - }, - { - "infinitive": "shroud", - "present": "shrouds", - "gerund": "shrouding", - "past": "shrouded", - "past_participle": "shrouded" - }, - { - "infinitive": "hiccup", - "present": "hiccups", - "gerund": "hiccuping", - "past": "hiccuped", - "past_participle": "hiccuped" - }, - { - "infinitive": "gore", - "present": "gores", - "gerund": "goring", - "past": "gored", - "past_participle": "gored" - }, - { - "infinitive": "defoliate", - "present": "defoliates", - "gerund": "defoliating", - "past": "defoliated", - "past_participle": "defoliated" - }, - { - "infinitive": "supervene", - "present": "supervenes", - "gerund": "supervening", - "past": "supervened", - "past_participle": "supervened" - }, - { - "infinitive": "fulgurate", - "present": "fulgurates", - "gerund": "fulgurating", - "past": "fulgurated", - "past_participle": "fulgurated" - }, - { - "infinitive": "spice", - "present": "spices", - "gerund": "spicing", - "past": "spiced", - "past_participle": "spiced" - }, - { - "infinitive": "annihilate", - "present": "annihilates", - "gerund": "annihilating", - "past": "annihilated", - "past_participle": "annihilated" - }, - { - "infinitive": "proselyte", - "present": "proselytes", - "gerund": "proselyting", - "past": "proselyted", - "past_participle": "proselyted" - }, - { - "infinitive": "imbrue", - "present": "imbrues", - "gerund": "imbruing", - "past": "imbrued", - "past_participle": "imbrued" - }, - { - "infinitive": "rewire", - "present": "rewires", - "gerund": "rewiring", - "past": "rewired", - "past_participle": "rewired" - }, - { - "infinitive": "eschew", - "present": "eschews", - "gerund": "eschewing", - "past": "eschewed", - "past_participle": "eschewed" - }, - { - "infinitive": "grouch", - "present": "grouches", - "gerund": "grouching", - "past": "grouched", - "past_participle": "grouched" - }, - { - "infinitive": "blackbird", - "present": "blackbirds", - "gerund": "blackbirding", - "past": "blackbirded", - "past_participle": "blackbirded" - }, - { - "infinitive": "imbed", - "present": "imbeds", - "gerund": "imbedding", - "past": "imbedded", - "past_participle": "imbedded" - }, - { - "infinitive": "deadlock", - "present": "deadlocks", - "gerund": "deadlocking", - "past": "deadlocked", - "past_participle": "deadlocked" - }, - { - "infinitive": "censor", - "present": "censors", - "gerund": "censoring", - "past": "censored", - "past_participle": "censored" - }, - { - "infinitive": "devitalize", - "present": "devitalizes", - "gerund": "devitalizing", - "past": "devitalized", - "past_participle": "devitalized" - }, - { - "infinitive": "examine", - "present": "examines", - "gerund": "examining", - "past": "examined", - "past_participle": "examined" - }, - { - "infinitive": "deem", - "present": "deems", - "gerund": "deeming", - "past": "deemed", - "past_participle": "deemed" - }, - { - "infinitive": "nucleate", - "present": "nucleates", - "gerund": "nucleating", - "past": "nucleated", - "past_participle": "nucleated" - }, - { - "infinitive": "file", - "present": "files", - "gerund": "filing", - "past": "filed", - "past_participle": "filed" - }, - { - "infinitive": "deed", - "present": "deeds", - "gerund": "deeding", - "past": "deeded", - "past_participle": "deeded" - }, - { - "infinitive": "hound", - "present": "hounds", - "gerund": "hounding", - "past": "hounded", - "past_participle": "hounded" - }, - { - "infinitive": "film", - "present": "films", - "gerund": "filming", - "past": "filmed", - "past_participle": "filmed" - }, - { - "infinitive": "fill", - "present": "fills", - "gerund": "filling", - "past": "filled", - "past_participle": "filled" - }, - { - "infinitive": "repent", - "present": "repents", - "gerund": "repenting", - "past": "repented", - "past_participle": "repented" - }, - { - "infinitive": "commingle", - "present": "commingles", - "gerund": "commingling", - "past": "commingled", - "past_participle": "commingled" - }, - { - "infinitive": "field", - "present": "fields", - "gerund": "fielding", - "past": "fielded", - "past_participle": "fielded" - }, - { - "infinitive": "prise", - "present": "prises", - "gerund": "prising", - "past": "prised", - "past_participle": "prised" - }, - { - "infinitive": "victimize", - "present": "victimizes", - "gerund": "victimizing", - "past": "victimized", - "past_participle": "victimized" - }, - { - "infinitive": "forjudge", - "present": "forjudges", - "gerund": "forjudging", - "past": "forjudged", - "past_participle": "forjudged" - }, - { - "infinitive": "shelter", - "present": "shelters", - "gerund": "sheltering", - "past": "sheltered", - "past_participle": "sheltered" - }, - { - "infinitive": "rigidify", - "present": "rigidifies", - "gerund": "rigidifying", - "past": "rigidified", - "past_participle": "rigidified" - }, - { - "infinitive": "scarper", - "present": "scarpers", - "gerund": "scarpering", - "past": "scarpered", - "past_participle": "scarpered" - }, - { - "infinitive": "democratize", - "present": "democratizes", - "gerund": "democratizing", - "past": "democratized", - "past_participle": "democratized" - }, - { - "infinitive": "tackle", - "present": "tackles", - "gerund": "tackling", - "past": "tackled", - "past_participle": "tackled" - }, - { - "infinitive": "revolve", - "present": "revolves", - "gerund": "revolving", - "past": "revolved", - "past_participle": "revolved" - }, - { - "infinitive": "sneeze", - "present": "sneezes", - "gerund": "sneezing", - "past": "sneezed", - "past_participle": "sneezed" - }, - { - "infinitive": "delineate", - "present": "delineates", - "gerund": "delineating", - "past": "delineated", - "past_participle": "delineated" - }, - { - "infinitive": "grudge", - "present": "grudges", - "gerund": "grudging", - "past": "grudged", - "past_participle": "grudged" - }, - { - "infinitive": "syllable", - "present": "syllables", - "gerund": "syllabling", - "past": "syllabled", - "past_participle": "syllabled" - }, - { - "infinitive": "scroll", - "present": "scrolls", - "gerund": "scrolling", - "past": "scrolled", - "past_participle": "scrolled" - }, - { - "infinitive": "unsex", - "present": "unsexes", - "gerund": "unsexing", - "past": "unsexed", - "past_participle": "unsexed" - }, - { - "infinitive": "burrow", - "present": "burrows", - "gerund": "burrowing", - "past": "burrowed", - "past_participle": "burrowed" - }, - { - "infinitive": "represent", - "present": "represents", - "gerund": "representing", - "past": "represented", - "past_participle": "represented" - }, - { - "infinitive": "forget", - "present": "forgets", - "gerund": "forgetting", - "past": "forgot", - "past_participle": "forgotten" - }, - { - "infinitive": "founder", - "present": "founders", - "gerund": "foundering", - "past": "foundered", - "past_participle": "foundered" - }, - { - "infinitive": "paginate", - "present": "paginates", - "gerund": "paginating", - "past": "paginated", - "past_participle": "paginated" - }, - { - "infinitive": "rebound", - "present": "rebinds", - "gerund": "rebinding", - "past": "rebound", - "past_participle": "rebound" - }, - { - "infinitive": "sunk", - "present": "sunks", - "gerund": "sunking", - "past": "sunked", - "past_participle": "sunked" - }, - { - "infinitive": "zing", - "present": "zings", - "gerund": "zinging", - "past": "zinged", - "past_participle": "zinged" - }, - { - "infinitive": "commute", - "present": "commutes", - "gerund": "commuting", - "past": "commuted", - "past_participle": "commuted" - }, - { - "infinitive": "catheterize", - "present": "catheterizes", - "gerund": "catheterizing", - "past": "catheterized", - "past_participle": "catheterized" - }, - { - "infinitive": "misadvise", - "present": "misadvises", - "gerund": "misadvising", - "past": "misadvised", - "past_participle": "misadvised" - }, - { - "infinitive": "codename", - "present": "codenames", - "gerund": "codenaming", - "past": "codenamed", - "past_participle": "codenamed" - }, - { - "infinitive": "crimson", - "present": "crimsons", - "gerund": "crimsoning", - "past": "crimsoned", - "past_participle": "crimsoned" - }, - { - "infinitive": "bestir", - "present": "bestirs", - "gerund": "bestirring", - "past": "bestirred", - "past_participle": "bestirred" - }, - { - "infinitive": "parcel", - "present": "parcels", - "gerund": "parcelling", - "past": "parcelled", - "past_participle": "parcelled" - }, - { - "infinitive": "counterproposal", - "present": "counterproposals", - "gerund": "counterproposaling", - "past": "counterproposaled", - "past_participle": "counterproposaled" - }, - { - "infinitive": "righten", - "present": "rightens", - "gerund": "rightening", - "past": "rightened", - "past_participle": "rightened" - }, - { - "infinitive": "hybridize", - "present": "hybridizes", - "gerund": "hybridizing", - "past": "hybridized", - "past_participle": "hybridized" - }, - { - "infinitive": "malinger", - "present": "malingers", - "gerund": "malingering", - "past": "malingered", - "past_participle": "malingered" - }, - { - "infinitive": "scour", - "present": "scours", - "gerund": "scouring", - "past": "scoured", - "past_participle": "scoured" - }, - { - "infinitive": "fall", - "present": "falls", - "gerund": "falling", - "past": "fell", - "past_participle": "fallen" - }, - { - "infinitive": "bottleneck", - "present": "bottlenecks", - "gerund": "bottlenecking", - "past": "bottlenecked", - "past_participle": "bottlenecked" - }, - { - "infinitive": "alien", - "present": "aliens", - "gerund": "aliening", - "past": "aliened", - "past_participle": "aliened" - }, - { - "infinitive": "dampen", - "present": "dampens", - "gerund": "dampening", - "past": "dampened", - "past_participle": "dampened" - }, - { - "infinitive": "unrip", - "present": "unrips", - "gerund": "unripping", - "past": "unripped", - "past_participle": "unripped" - }, - { - "infinitive": "subsoil", - "present": "subsoils", - "gerund": "subsoiling", - "past": "subsoiled", - "past_participle": "subsoiled" - }, - { - "infinitive": "triangulate", - "present": "triangulates", - "gerund": "triangulating", - "past": "triangulated", - "past_participle": "triangulated" - }, - { - "infinitive": "enrapture", - "present": "enraptures", - "gerund": "enrapturing", - "past": "enraptured", - "past_participle": "enraptured" - }, - { - "infinitive": "unrig", - "present": "unrigs", - "gerund": "unrigging", - "past": "unrigged", - "past_participle": "unrigged" - }, - { - "infinitive": "chandelle", - "present": "chandelles", - "gerund": "chandelling", - "past": "chandelled", - "past_participle": "chandelled" - }, - { - "infinitive": "underwrite", - "present": "underwrites", - "gerund": "underwriting", - "past": "underwrote", - "past_participle": "underwritten" - }, - { - "infinitive": "abridge", - "present": "abridges", - "gerund": "abridging", - "past": "abridged", - "past_participle": "abridged" - }, - { - "infinitive": "clinch", - "present": "clinches", - "gerund": "clinching", - "past": "clinched", - "past_participle": "clinched" - }, - { - "infinitive": "outwork", - "present": "outworks", - "gerund": "outworking", - "past": "outworked", - "past_participle": "outworked" - }, - { - "infinitive": "gnarl", - "present": "gnars", - "gerund": "gnarling", - "past": "gnarled", - "past_participle": "gnarled" - }, - { - "infinitive": "zero", - "present": "zeroes", - "gerund": "zeroing", - "past": "zeroed", - "past_participle": "zeroed" - }, - { - "infinitive": "overlie", - "present": "overlies", - "gerund": "overlying", - "past": "overlay", - "past_participle": "overlain" - }, - { - "infinitive": "depicture", - "present": "depictures", - "gerund": "depicturing", - "past": "depictured", - "past_participle": "depictured" - }, - { - "infinitive": "further", - "present": "furthers", - "gerund": "furthering", - "past": "furthered", - "past_participle": "furthered" - }, - { - "infinitive": "misrepresent", - "present": "misrepresents", - "gerund": "misrepresenting", - "past": "misrepresented", - "past_participle": "misrepresented" - }, - { - "infinitive": "ribbon", - "present": "ribbons", - "gerund": "ribboning", - "past": "ribboned", - "past_participle": "ribboned" - }, - { - "infinitive": "dial", - "present": "dials", - "gerund": "dialing", - "past": "dialed", - "past_participle": "dialed" - }, - { - "infinitive": "ruminate", - "present": "ruminates", - "gerund": "ruminating", - "past": "ruminated", - "past_participle": "ruminated" - }, - { - "infinitive": "stook", - "present": "stooks", - "gerund": "stooking", - "past": "stooked", - "past_participle": "stooked" - }, - { - "infinitive": "stool", - "present": "stools", - "gerund": "stooling", - "past": "stooled", - "past_participle": "stooled" - }, - { - "infinitive": "overshot", - "present": "", - "gerund": "", - "past": "overshot", - "past_participle": "overshot" - }, - { - "infinitive": "verbalize", - "present": "verbalizes", - "gerund": "verbalizing", - "past": "verbalized", - "past_participle": "verbalized" - }, - { - "infinitive": "stoop", - "present": "stoops", - "gerund": "stooping", - "past": "stooped", - "past_participle": "stooped" - }, - { - "infinitive": "abye", - "present": "abys", - "gerund": "abying", - "past": "abought", - "past_participle": "abought" - }, - { - "infinitive": "falsify", - "present": "falsifies", - "gerund": "falsifying", - "past": "falsified", - "past_participle": "falsified" - }, - { - "infinitive": "oppilate", - "present": "oppilates", - "gerund": "oppilating", - "past": "oppilated", - "past_participle": "oppilated" - }, - { - "infinitive": "apocopate", - "present": "apocopates", - "gerund": "apocopating", - "past": "apocopated", - "past_participle": "apocopated" - }, - { - "infinitive": "mull", - "present": "mulls", - "gerund": "mulling", - "past": "mulled", - "past_participle": "mulled" - }, - { - "infinitive": "twang", - "present": "twangs", - "gerund": "twanging", - "past": "twanged", - "past_participle": "twanged" - }, - { - "infinitive": "mothproof", - "present": "moth-proofs", - "gerund": "moth-proofing", - "past": "mothproofed", - "past_participle": "moth-proofed" - }, - { - "infinitive": "ingratiate", - "present": "ingratiates", - "gerund": "ingratiating", - "past": "ingratiated", - "past_participle": "ingratiated" - }, - { - "infinitive": "beacon", - "present": "beacons", - "gerund": "beaconing", - "past": "beaconed", - "past_participle": "beaconed" - }, - { - "infinitive": "table", - "present": "tables", - "gerund": "tabling", - "past": "tabled", - "past_participle": "tabled" - }, - { - "infinitive": "monetize", - "present": "monetizes", - "gerund": "monetizing", - "past": "monetized", - "past_participle": "monetized" - }, - { - "infinitive": "search", - "present": "searches", - "gerund": "searching", - "past": "searched", - "past_participle": "searched" - }, - { - "infinitive": "upcast", - "present": "upcasts", - "gerund": "upcasting", - "past": "upcast", - "past_participle": "upcast" - }, - { - "infinitive": "luxuriate", - "present": "luxuriates", - "gerund": "luxuriating", - "past": "luxuriated", - "past_participle": "luxuriated" - }, - { - "infinitive": "margin", - "present": "margins", - "gerund": "margining", - "past": "margined", - "past_participle": "margined" - }, - { - "infinitive": "scurry", - "present": "scurries", - "gerund": "scurrying", - "past": "scurried", - "past_participle": "scurried" - }, - { - "infinitive": "spotlight", - "present": "spotlights", - "gerund": "spotlighting", - "past": "spotlit", - "past_participle": "spotlit" - }, - { - "infinitive": "narrow", - "present": "narrows", - "gerund": "narrowing", - "past": "narrowed", - "past_participle": "narrowed" - }, - { - "infinitive": "fatten", - "present": "fattens", - "gerund": "fattening", - "past": "fattened", - "past_participle": "fattened" - }, - { - "infinitive": "authorize", - "present": "authorizes", - "gerund": "authorizing", - "past": "authorized", - "past_participle": "authorized" - }, - { - "infinitive": "alphabetize", - "present": "alphabetizes", - "gerund": "alphabetizing", - "past": "alphabetized", - "past_participle": "alphabetized" - }, - { - "infinitive": "shanghai", - "present": "shanghais", - "gerund": "shanghaiing", - "past": "shanghaied", - "past_participle": "shanghaied" - }, - { - "infinitive": "perpetuate", - "present": "perpetuates", - "gerund": "perpetuating", - "past": "perpetuated", - "past_participle": "perpetuated" - }, - { - "infinitive": "prejudge", - "present": "prejudges", - "gerund": "prejudging", - "past": "prejudged", - "past_participle": "prejudged" - }, - { - "infinitive": "caravan", - "present": "caravans", - "gerund": "caravanning", - "past": "caravanned", - "past_participle": "caravanned" - }, - { - "infinitive": "transit", - "present": "transits", - "gerund": "transiting", - "past": "transited", - "past_participle": "transited" - }, - { - "infinitive": "chalk", - "present": "chalks", - "gerund": "chalking", - "past": "chalked", - "past_participle": "chalked" - }, - { - "infinitive": "sanction", - "present": "sanctions", - "gerund": "sanctioning", - "past": "sanctioned", - "past_participle": "sanctioned" - }, - { - "infinitive": "huzzah", - "present": "huzzahs", - "gerund": "huzzahing", - "past": "huzzahed", - "past_participle": "huzzahed" - }, - { - "infinitive": "melodramatize", - "present": "melodramatizes", - "gerund": "melodramatizing", - "past": "melodramatized", - "past_participle": "melodramatized" - }, - { - "infinitive": "plane-table", - "present": "plane-tables", - "gerund": "plane-tabling", - "past": "plane-tabled", - "past_participle": "plane-tabled" - }, - { - "infinitive": "eye", - "present": "eyes", - "gerund": "eying", - "past": "eyed", - "past_participle": "eyed" - }, - { - "infinitive": "score", - "present": "scores", - "gerund": "scoring", - "past": "scored", - "past_participle": "scored" - }, - { - "infinitive": "codify", - "present": "codifies", - "gerund": "codifying", - "past": "codified", - "past_participle": "codified" - }, - { - "infinitive": "trounce", - "present": "trounces", - "gerund": "trouncing", - "past": "trounced", - "past_participle": "trounced" - }, - { - "infinitive": "over-burden", - "present": "over-burdens", - "gerund": "over-burdening", - "past": "overburdened", - "past_participle": "over-burdened" - }, - { - "infinitive": "puke", - "present": "pukes", - "gerund": "puking", - "past": "puked", - "past_participle": "puked" - }, - { - "infinitive": "splash", - "present": "splashes", - "gerund": "splashing", - "past": "splashed", - "past_participle": "splashed" - }, - { - "infinitive": "libel", - "present": "libels", - "gerund": "libelling", - "past": "libelled", - "past_participle": "libelled" - }, - { - "infinitive": "crepitate", - "present": "crepitates", - "gerund": "crepitating", - "past": "crepitated", - "past_participle": "crepitated" - }, - { - "infinitive": "raft", - "present": "rafts", - "gerund": "rafting", - "past": "rafted", - "past_participle": "rafted" - }, - { - "infinitive": "intumesce", - "present": "intumesces", - "gerund": "intumescing", - "past": "intumesced", - "past_participle": "intumesced" - }, - { - "infinitive": "popple", - "present": "popples", - "gerund": "poppling", - "past": "poppled", - "past_participle": "poppled" - }, - { - "infinitive": "diamond", - "present": "diamonds", - "gerund": "diamonding", - "past": "diamonded", - "past_participle": "diamonded" - }, - { - "infinitive": "tenderize", - "present": "tenderizes", - "gerund": "tenderizing", - "past": "tenderized", - "past_participle": "tenderized" - }, - { - "infinitive": "dematerialize", - "present": "dematerializes", - "gerund": "dematerializing", - "past": "dematerialized", - "past_participle": "dematerialized" - }, - { - "infinitive": "stable", - "present": "stables", - "gerund": "stabling", - "past": "stabled", - "past_participle": "stabled" - }, - { - "infinitive": "reconvert", - "present": "reconverts", - "gerund": "reconverting", - "past": "reconverted", - "past_participle": "reconverted" - }, - { - "infinitive": "sniggle", - "present": "sniggles", - "gerund": "sniggling", - "past": "sniggled", - "past_participle": "sniggled" - }, - { - "infinitive": "mill", - "present": "mills", - "gerund": "milling", - "past": "milled", - "past_participle": "milled" - }, - { - "infinitive": "animadvert", - "present": "animadverts", - "gerund": "animadverting", - "past": "animadverted", - "past_participle": "animadverted" - }, - { - "infinitive": "watersoak", - "present": "watersoaks", - "gerund": "watersoaking", - "past": "watersoaked", - "past_participle": "watersoaked" - }, - { - "infinitive": "blandish", - "present": "blandishes", - "gerund": "blandishing", - "past": "blandished", - "past_participle": "blandished" - }, - { - "infinitive": "counterclaim", - "present": "counterclaims", - "gerund": "counterclaiming", - "past": "counterclaimed", - "past_participle": "counterclaimed" - }, - { - "infinitive": "middle", - "present": "middles", - "gerund": "middling", - "past": "middled", - "past_participle": "middled" - }, - { - "infinitive": "flyblow", - "present": "flyblows", - "gerund": "flyblowing", - "past": "flyblew", - "past_participle": "flyblown" - }, - { - "infinitive": "recall", - "present": "recalls", - "gerund": "recalling", - "past": "recalled", - "past_participle": "recalled" - }, - { - "infinitive": "dew", - "present": "dews", - "gerund": "dewing", - "past": "dewed", - "past_participle": "dewed" - }, - { - "infinitive": "remain", - "present": "remains", - "gerund": "remaining", - "past": "remained", - "past_participle": "remained" - }, - { - "infinitive": "paragraph", - "present": "paragraphs", - "gerund": "paragraphing", - "past": "paragraphed", - "past_participle": "paragraphed" - }, - { - "infinitive": "den", - "present": "dens", - "gerund": "denning", - "past": "denned", - "past_participle": "denned" - }, - { - "infinitive": "flyte", - "present": "flytes", - "gerund": "flyting", - "past": "flyted", - "past_participle": "flyted" - }, - { - "infinitive": "abandon", - "present": "abandons", - "gerund": "abandoning", - "past": "abandoned", - "past_participle": "abandoned" - }, - { - "infinitive": "marble", - "present": "marbles", - "gerund": "marbling", - "past": "marbled", - "past_participle": "marbled" - }, - { - "infinitive": "bivouac", - "present": "bivouacs", - "gerund": "bivouacking", - "past": "bivouacked", - "past_participle": "bivouacked" - }, - { - "infinitive": "sleuth", - "present": "sleuths", - "gerund": "sleuthing", - "past": "sleuthed", - "past_participle": "sleuthed" - }, - { - "infinitive": "compare", - "present": "compares", - "gerund": "comparing", - "past": "compared", - "past_participle": "compared" - }, - { - "infinitive": "buttress", - "present": "buttresses", - "gerund": "buttressing", - "past": "buttressed", - "past_participle": "buttressed" - }, - { - "infinitive": "share", - "present": "shares", - "gerund": "sharing", - "past": "shared", - "past_participle": "shared" - }, - { - "infinitive": "spall", - "present": "spalls", - "gerund": "spalling", - "past": "spalled", - "past_participle": "spalled" - }, - { - "infinitive": "attain", - "present": "attains", - "gerund": "attaining", - "past": "attained", - "past_participle": "attained" - }, - { - "infinitive": "junket", - "present": "junkets", - "gerund": "junketing", - "past": "junketed", - "past_participle": "junketed" - }, - { - "infinitive": "sharp", - "present": "sharps", - "gerund": "sharping", - "past": "sharped", - "past_participle": "sharped" - }, - { - "infinitive": "fillip", - "present": "fillips", - "gerund": "filliping", - "past": "filliped", - "past_participle": "filliped" - }, - { - "infinitive": "freckle", - "present": "freckles", - "gerund": "freckling", - "past": "freckled", - "past_participle": "freckled" - }, - { - "infinitive": "interbreed", - "present": "interbreeds", - "gerund": "interbreeding", - "past": "interbred", - "past_participle": "interbred" - }, - { - "infinitive": "incubate", - "present": "incubates", - "gerund": "incubating", - "past": "incubated", - "past_participle": "incubated" - }, - { - "infinitive": "sermonize", - "present": "sermonizes", - "gerund": "sermonizing", - "past": "sermonized", - "past_participle": "sermonized" - }, - { - "infinitive": "comfort", - "present": "comforts", - "gerund": "comforting", - "past": "comforted", - "past_participle": "comforted" - }, - { - "infinitive": "sprig", - "present": "sprigs", - "gerund": "sprigging", - "past": "sprigged", - "past_participle": "sprigged" - }, - { - "infinitive": "Balkanize", - "present": "Balkanizes", - "gerund": "Balkanizing", - "past": "Balkanized", - "past_participle": "Balkanized" - }, - { - "infinitive": "bleat", - "present": "bleats", - "gerund": "bleating", - "past": "bleated", - "past_participle": "bleated" - }, - { - "infinitive": "blear", - "present": "blear", - "gerund": "blearing", - "past": "bleared", - "past_participle": "bleared" - }, - { - "infinitive": "blacken", - "present": "blackens", - "gerund": "blacking", - "past": "blackened", - "past_participle": "blackened" - }, - { - "infinitive": "interpose", - "present": "interposes", - "gerund": "interposing", - "past": "interposed", - "past_participle": "interposed" - }, - { - "infinitive": "explicate", - "present": "explicates", - "gerund": "explicating", - "past": "explicated", - "past_participle": "explicated" - }, - { - "infinitive": "blood", - "present": "bloods", - "gerund": "blooding", - "past": "blooded", - "past_participle": "blooded" - }, - { - "infinitive": "reclassify", - "present": "reclassifies", - "gerund": "reclassifying", - "past": "reclassified", - "past_participle": "reclassified" - }, - { - "infinitive": "bloom", - "present": "blooms", - "gerund": "blooming", - "past": "bloomed", - "past_participle": "bloomed" - }, - { - "infinitive": "chute", - "present": "chutes", - "gerund": "chuting", - "past": "chuted", - "past_participle": "chuted" - }, - { - "infinitive": "coax", - "present": "coaxes", - "gerund": "coaxing", - "past": "coaxed", - "past_participle": "coaxed" - }, - { - "infinitive": "reiterate", - "present": "reiterates", - "gerund": "reiterating", - "past": "reiterated", - "past_participle": "reiterated" - }, - { - "infinitive": "coat", - "present": "coats", - "gerund": "coating", - "past": "coated", - "past_participle": "coated" - }, - { - "infinitive": "paw", - "present": "paws", - "gerund": "pawing", - "past": "pawed", - "past_participle": "pawed" - }, - { - "infinitive": "blunder", - "present": "blunders", - "gerund": "blundering", - "past": "blundered", - "past_participle": "blundered" - }, - { - "infinitive": "mislead", - "present": "misleads", - "gerund": "misleading", - "past": "misled", - "past_participle": "misled" - }, - { - "infinitive": "coal", - "present": "coals", - "gerund": "coaling", - "past": "coaled", - "past_participle": "coaled" - }, - { - "infinitive": "evanesce", - "present": "evanesces", - "gerund": "evanescing", - "past": "evanesced", - "past_participle": "evanesced" - }, - { - "infinitive": "pleasure", - "present": "pleasures", - "gerund": "pleasuring", - "past": "pleasured", - "past_participle": "pleasured" - }, - { - "infinitive": "lollop", - "present": "lollops", - "gerund": "lolloping", - "past": "lolloped", - "past_participle": "lolloped" - }, - { - "infinitive": "serenade", - "present": "serenades", - "gerund": "serenading", - "past": "serenaded", - "past_participle": "serenaded" - }, - { - "infinitive": "unchurch", - "present": "unchurches", - "gerund": "unchurching", - "past": "unchurched", - "past_participle": "unchurched" - }, - { - "infinitive": "displease", - "present": "displeases", - "gerund": "displeasing", - "past": "displeased", - "past_participle": "displeased" - }, - { - "infinitive": "oblique", - "present": "obliques", - "gerund": "obliquing", - "past": "obliqued", - "past_participle": "obliqued" - }, - { - "infinitive": "name-drop", - "present": "name-drops", - "gerund": "name-dropping", - "past": "name-dropped", - "past_participle": "name-dropped" - }, - { - "infinitive": "suffer", - "present": "suffers", - "gerund": "suffering", - "past": "suffered", - "past_participle": "suffered" - }, - { - "infinitive": "prevaricate", - "present": "prevaricates", - "gerund": "prevaricating", - "past": "prevaricated", - "past_participle": "prevaricated" - }, - { - "infinitive": "fissure", - "present": "fissures", - "gerund": "fissuring", - "past": "fissured", - "past_participle": "fissured" - }, - { - "infinitive": "bosom", - "present": "bosoms", - "gerund": "bosoming", - "past": "bosomed", - "past_participle": "bosomed" - }, - { - "infinitive": "pend", - "present": "pends", - "gerund": "pending", - "past": "pended", - "past_participle": "pended" - }, - { - "infinitive": "emend", - "present": "emends", - "gerund": "emending", - "past": "emended", - "past_participle": "emended" - }, - { - "infinitive": "dolly", - "present": "dollies", - "gerund": "dollying", - "past": "dollied", - "past_participle": "dollied" - }, - { - "infinitive": "unswear", - "present": "unswears", - "gerund": "unswearing", - "past": "unswore", - "past_participle": "unsworn" - }, - { - "infinitive": "redraft", - "present": "redrafts", - "gerund": "redrafting", - "past": "redrafted", - "past_participle": "redrafted" - }, - { - "infinitive": "braise", - "present": "braises", - "gerund": "braising", - "past": "braised", - "past_participle": "braised" - }, - { - "infinitive": "bereft", - "present": "", - "gerund": "", - "past": "bereft", - "past_participle": "bereft" - }, - { - "infinitive": "lath", - "present": "laths", - "gerund": "lathing", - "past": "lathed", - "past_participle": "lathed" - }, - { - "infinitive": "underestimate", - "present": "underestimates", - "gerund": "underestimating", - "past": "underestimated", - "past_participle": "underestimated" - }, - { - "infinitive": "goof", - "present": "goofs", - "gerund": "goofing", - "past": "goofed", - "past_participle": "goofed" - }, - { - "infinitive": "detour", - "present": "detours", - "gerund": "detouring", - "past": "detoured", - "past_participle": "detoured" - }, - { - "infinitive": "compound", - "present": "compounds", - "gerund": "compounding", - "past": "compounded", - "past_participle": "compounded" - }, - { - "infinitive": "wiredraw", - "present": "wiredraws", - "gerund": "wiredrawing", - "past": "wiredrew", - "past_participle": "wiredrawn" - }, - { - "infinitive": "detach", - "present": "detaches", - "gerund": "detaching", - "past": "detached", - "past_participle": "detached" - }, - { - "infinitive": "complain", - "present": "complains", - "gerund": "complaining", - "past": "complained", - "past_participle": "complained" - }, - { - "infinitive": "restrict", - "present": "restricts", - "gerund": "restricting", - "past": "restricted", - "past_participle": "restricted" - }, - { - "infinitive": "huddle", - "present": "huddles", - "gerund": "huddling", - "past": "huddled", - "past_participle": "huddled" - }, - { - "infinitive": "rant", - "present": "rants", - "gerund": "ranting", - "past": "ranted", - "past_participle": "ranted" - }, - { - "infinitive": "auspicate", - "present": "auspicates", - "gerund": "auspicating", - "past": "auspicated", - "past_participle": "auspicated" - }, - { - "infinitive": "safeconduct", - "present": "safeconducts", - "gerund": "safeconducting", - "past": "safeconducted", - "past_participle": "safeconducted" - }, - { - "infinitive": "countersign", - "present": "countersigns", - "gerund": "countersigning", - "past": "countersigned", - "past_participle": "countersigned" - }, - { - "infinitive": "evade", - "present": "evades", - "gerund": "evading", - "past": "evaded", - "past_participle": "evaded" - }, - { - "infinitive": "token", - "present": "tokens", - "gerund": "tokening", - "past": "tokened", - "past_participle": "tokened" - }, - { - "infinitive": "reft", - "present": "", - "gerund": "", - "past": "reft", - "past_participle": "reft" - }, - { - "infinitive": "quintuple", - "present": "quintuples", - "gerund": "quintupling", - "past": "quintupled", - "past_participle": "quintupled" - }, - { - "infinitive": "politicize", - "present": "politicizes", - "gerund": "politicizing", - "past": "politicized", - "past_participle": "politicized" - }, - { - "infinitive": "clamp", - "present": "clamps", - "gerund": "clamping", - "past": "clamped", - "past_participle": "clamped" - }, - { - "infinitive": "harm", - "present": "harms", - "gerund": "harming", - "past": "harmed", - "past_participle": "harmed" - }, - { - "infinitive": "hark", - "present": "harks", - "gerund": "harking", - "past": "harked", - "past_participle": "harked" - }, - { - "infinitive": "house", - "present": "houses", - "gerund": "housing", - "past": "housed", - "past_participle": "housed" - }, - { - "infinitive": "hare", - "present": "hares", - "gerund": "haring", - "past": "hared", - "past_participle": "hared" - }, - { - "infinitive": "electroplate", - "present": "electroplates", - "gerund": "electroplating", - "past": "electroplated", - "past_participle": "electroplated" - }, - { - "infinitive": "connect", - "present": "connects", - "gerund": "connecting", - "past": "connected", - "past_participle": "connected" - }, - { - "infinitive": "fist", - "present": "fists", - "gerund": "fisting", - "past": "fisted", - "past_participle": "fisted" - }, - { - "infinitive": "ripple", - "present": "ripples", - "gerund": "rippling", - "past": "rippled", - "past_participle": "rippled" - }, - { - "infinitive": "callus", - "present": "calluses", - "gerund": "callusing", - "past": "callused", - "past_participle": "callused" - }, - { - "infinitive": "orient", - "present": "orients", - "gerund": "orienting", - "past": "oriented", - "past_participle": "oriented" - }, - { - "infinitive": "harp", - "present": "harps", - "gerund": "harping", - "past": "harped", - "past_participle": "harped" - }, - { - "infinitive": "inshrine", - "present": "inshrines", - "gerund": "inshrining", - "past": "inshrined", - "past_participle": "inshrined" - }, - { - "infinitive": "flower", - "present": "flowers", - "gerund": "flowering", - "past": "flowered", - "past_participle": "flowered" - }, - { - "infinitive": "prink", - "present": "prinks", - "gerund": "prinking", - "past": "prinked", - "past_participle": "prinked" - }, - { - "infinitive": "coauthor", - "present": "coauthors", - "gerund": "coauthoring", - "past": "coauthored", - "past_participle": "coauthored" - }, - { - "infinitive": "vitiate", - "present": "vitiates", - "gerund": "vitiating", - "past": "vitiated", - "past_participle": "vitiated" - }, - { - "infinitive": "avenge", - "present": "avenges", - "gerund": "avenging", - "past": "avenged", - "past_participle": "avenged" - }, - { - "infinitive": "print", - "present": "prints", - "gerund": "printing", - "past": "printed", - "past_participle": "printed" - }, - { - "infinitive": "bully", - "present": "bullies", - "gerund": "bullying", - "past": "bullied", - "past_participle": "bullied" - }, - { - "infinitive": "idealize", - "present": "idealizes", - "gerund": "idealizing", - "past": "idealized", - "past_participle": "idealized" - }, - { - "infinitive": "decompress", - "present": "decompresses", - "gerund": "decompressing", - "past": "decompressed", - "past_participle": "decompressed" - }, - { - "infinitive": "golly", - "present": "gollies", - "gerund": "gollying", - "past": "gollied", - "past_participle": "gollied" - }, - { - "infinitive": "recast", - "present": "recasts", - "gerund": "recasting", - "past": "recast", - "past_participle": "recast" - }, - { - "infinitive": "stratify", - "present": "stratifies", - "gerund": "stratifying", - "past": "stratified", - "past_participle": "stratified" - }, - { - "infinitive": "omit", - "present": "omits", - "gerund": "omitting", - "past": "omitted", - "past_participle": "omitted" - }, - { - "infinitive": "desiccate", - "present": "desiccates", - "gerund": "desiccating", - "past": "desiccated", - "past_participle": "desiccated" - }, - { - "infinitive": "predate", - "present": "predates", - "gerund": "predating", - "past": "predated", - "past_participle": "predated" - }, - { - "infinitive": "wither", - "present": "withers", - "gerund": "withering", - "past": "withered", - "past_participle": "withered" - }, - { - "infinitive": "subjectify", - "present": "subjectifies", - "gerund": "subjectifying", - "past": "subjectified", - "past_participle": "subjectified" - }, - { - "infinitive": "corkscrew", - "present": "corkscrews", - "gerund": "corkscrewing", - "past": "corkscrewed", - "past_participle": "corkscrewed" - }, - { - "infinitive": "trickle", - "present": "trickles", - "gerund": "trickling", - "past": "trickled", - "past_participle": "trickled" - }, - { - "infinitive": "copper", - "present": "coppers", - "gerund": "coppering", - "past": "coppered", - "past_participle": "coppered" - }, - { - "infinitive": "perturb", - "present": "perturbs", - "gerund": "perturbing", - "past": "perturbed", - "past_participle": "perturbed" - }, - { - "infinitive": "pop", - "present": "pops", - "gerund": "popping", - "past": "popped", - "past_participle": "popped" - }, - { - "infinitive": "dong", - "present": "dongs", - "gerund": "donging", - "past": "donged", - "past_participle": "donged" - }, - { - "infinitive": "wager", - "present": "wagers", - "gerund": "wagering", - "past": "wagered", - "past_participle": "wagered" - }, - { - "infinitive": "jabber", - "present": "jabbers", - "gerund": "jabbering", - "past": "jabbered", - "past_participle": "jabbered" - }, - { - "infinitive": "yawp", - "present": "yawps", - "gerund": "yawping", - "past": "yawped", - "past_participle": "yawped" - }, - { - "infinitive": "clapperclaw", - "present": "clapperclaws", - "gerund": "clapperclawing", - "past": "clapperclawed", - "past_participle": "clapperclawed" - }, - { - "infinitive": "foot-slog", - "present": "foot-slogs", - "gerund": "foot-slogging", - "past": "foot-slogged", - "past_participle": "foot-slogged" - }, - { - "infinitive": "divorce", - "present": "divorces", - "gerund": "divorcing", - "past": "divorced", - "past_participle": "divorced" - }, - { - "infinitive": "triplicate", - "present": "triplicates", - "gerund": "triplicating", - "past": "triplicated", - "past_participle": "triplicated" - }, - { - "infinitive": "subtilize", - "present": "subtilizes", - "gerund": "subtilizing", - "past": "subtilized", - "past_participle": "subtilized" - }, - { - "infinitive": "revive", - "present": "revives", - "gerund": "reviving", - "past": "revived", - "past_participle": "revived" - }, - { - "infinitive": "construct", - "present": "constructs", - "gerund": "constructing", - "past": "constructed", - "past_participle": "constructed" - }, - { - "infinitive": "paint", - "present": "paints", - "gerund": "painting", - "past": "painted", - "past_participle": "painted" - }, - { - "infinitive": "leash", - "present": "leashes", - "gerund": "leashing", - "past": "leashed", - "past_participle": "leashed" - }, - { - "infinitive": "smoothen", - "present": "smoothens", - "gerund": "smoothening", - "past": "smoothened", - "past_participle": "smoothened" - }, - { - "infinitive": "lease", - "present": "leases", - "gerund": "leasing", - "past": "leased", - "past_participle": "leased" - }, - { - "infinitive": "catapult", - "present": "catapults", - "gerund": "catapulting", - "past": "catapulted", - "past_participle": "catapulted" - }, - { - "infinitive": "bumble", - "present": "bumbles", - "gerund": "bumbling", - "past": "bumbled", - "past_participle": "bumbled" - }, - { - "infinitive": "pare", - "present": "pares", - "gerund": "paring", - "past": "pared", - "past_participle": "pared" - }, - { - "infinitive": "travail", - "present": "travails", - "gerund": "travailing", - "past": "travailed", - "past_participle": "travailed" - }, - { - "infinitive": "needle", - "present": "needles", - "gerund": "needling", - "past": "needled", - "past_participle": "needled" - }, - { - "infinitive": "park", - "present": "parks", - "gerund": "parking", - "past": "parked", - "past_participle": "parked" - }, - { - "infinitive": "part", - "present": "parts", - "gerund": "parting", - "past": "parted", - "past_participle": "parted" - }, - { - "infinitive": "differentiate", - "present": "differentiates", - "gerund": "differentiating", - "past": "differentiated", - "past_participle": "differentiated" - }, - { - "infinitive": "believe", - "present": "believes", - "gerund": "believing", - "past": "believed", - "past_participle": "believed" - }, - { - "infinitive": "oscillate", - "present": "oscillates", - "gerund": "oscillating", - "past": "oscillated", - "past_participle": "oscillated" - }, - { - "infinitive": "preachify", - "present": "preachifies", - "gerund": "preachifying", - "past": "preachified", - "past_participle": "preachified" - }, - { - "infinitive": "commiserate", - "present": "commiserates", - "gerund": "commiserating", - "past": "commiserated", - "past_participle": "commiserated" - }, - { - "infinitive": "fractionize", - "present": "fractionizes", - "gerund": "fractionizing", - "past": "fractionized", - "past_participle": "fractionized" - }, - { - "infinitive": "airdry", - "present": "airdries", - "gerund": "airdrying", - "past": "airdried", - "past_participle": "airdried" - }, - { - "infinitive": "sedate", - "present": "sedates", - "gerund": "sedating", - "past": "sedated", - "past_participle": "sedated" - }, - { - "infinitive": "garble", - "present": "garbles", - "gerund": "garbling", - "past": "garbled", - "past_participle": "garbled" - }, - { - "infinitive": "declare", - "present": "declares", - "gerund": "declaring", - "past": "declared", - "past_participle": "declared" - }, - { - "infinitive": "flitter", - "present": "flitters", - "gerund": "flittering", - "past": "flittered", - "past_participle": "flittered" - }, - { - "infinitive": "swerve", - "present": "swerves", - "gerund": "swerving", - "past": "swerved", - "past_participle": "swerved" - }, - { - "infinitive": "prefigure", - "present": "prefigures", - "gerund": "prefiguring", - "past": "prefigured", - "past_participle": "prefigured" - }, - { - "infinitive": "plead", - "present": "pleads", - "gerund": "pleading", - "past": "pled", - "past_participle": "pled" - }, - { - "infinitive": "elegize", - "present": "elegizes", - "gerund": "elegizing", - "past": "elegized", - "past_participle": "elegized" - }, - { - "infinitive": "affray", - "present": "affrays", - "gerund": "affraying", - "past": "affrayed", - "past_participle": "affrayed" - }, - { - "infinitive": "twiddle", - "present": "twiddles", - "gerund": "twiddling", - "past": "twiddled", - "past_participle": "twiddled" - }, - { - "infinitive": "protrude", - "present": "protrudes", - "gerund": "protruding", - "past": "protruded", - "past_participle": "protruded" - }, - { - "infinitive": "dismember", - "present": "dismembers", - "gerund": "dismembering", - "past": "dismembered", - "past_participle": "dismembered" - }, - { - "infinitive": "blanch", - "present": "blanches", - "gerund": "blanching", - "past": "blanched", - "past_participle": "blanched" - }, - { - "infinitive": "refute", - "present": "refutes", - "gerund": "refuting", - "past": "refuted", - "past_participle": "refuted" - }, - { - "infinitive": "trip", - "present": "trips", - "gerund": "tripping", - "past": "tripped", - "past_participle": "tripped" - }, - { - "infinitive": "feeze", - "present": "feezes", - "gerund": "feezing", - "past": "feezed", - "past_participle": "feezed" - }, - { - "infinitive": "couch", - "present": "couches", - "gerund": "couching", - "past": "couched", - "past_participle": "couched" - }, - { - "infinitive": "build", - "present": "builds", - "gerund": "building", - "past": "built", - "past_participle": "built" - }, - { - "infinitive": "rowel", - "present": "rowels", - "gerund": "rowelling", - "past": "rowelled", - "past_participle": "rowelled" - }, - { - "infinitive": "pressurize", - "present": "pressurizes", - "gerund": "pressurizing", - "past": "pressurized", - "past_participle": "pressurized" - }, - { - "infinitive": "flute", - "present": "flutes", - "gerund": "fluting", - "past": "fluted", - "past_participle": "fluted" - }, - { - "infinitive": "chart", - "present": "charts", - "gerund": "charting", - "past": "charted", - "past_participle": "charted" - }, - { - "infinitive": "charm", - "present": "charms", - "gerund": "charming", - "past": "charmed", - "past_participle": "charmed" - }, - { - "infinitive": "outpoint", - "present": "outpoints", - "gerund": "outpointing", - "past": "outpointed", - "past_participle": "outpointed" - }, - { - "infinitive": "booby-trap", - "present": "booby-traps", - "gerund": "booby-trapping", - "past": "booby-trapped", - "past_participle": "booby-trapped" - }, - { - "infinitive": "pauperize", - "present": "pauperizes", - "gerund": "pauperizing", - "past": "pauperized", - "past_participle": "pauperized" - }, - { - "infinitive": "fluctuate", - "present": "fluctuates", - "gerund": "fluctuating", - "past": "fluctuated", - "past_participle": "fluctuated" - }, - { - "infinitive": "saturate", - "present": "saturates", - "gerund": "saturating", - "past": "saturated", - "past_participle": "saturated" - }, - { - "infinitive": "squelch", - "present": "squelches", - "gerund": "squelching", - "past": "squelched", - "past_participle": "squelched" - }, - { - "infinitive": "elasticate", - "present": "elasticates", - "gerund": "elasticating", - "past": "elasticated", - "past_participle": "elasticated" - }, - { - "infinitive": "impaste", - "present": "impastes", - "gerund": "impasting", - "past": "impasted", - "past_participle": "impasted" - }, - { - "infinitive": "tampon", - "present": "tampons", - "gerund": "tamponing", - "past": "tamponed", - "past_participle": "tamponed" - }, - { - "infinitive": "carny", - "present": "carnies", - "gerund": "carnying", - "past": "carnied", - "past_participle": "carnied" - }, - { - "infinitive": "converge", - "present": "converges", - "gerund": "converging", - "past": "converged", - "past_participle": "converged" - }, - { - "infinitive": "fink", - "present": "finks", - "gerund": "finking", - "past": "finked", - "past_participle": "finked" - }, - { - "infinitive": "chock", - "present": "chocks", - "gerund": "chocking", - "past": "chocked", - "past_participle": "chocked" - }, - { - "infinitive": "fine", - "present": "fines", - "gerund": "fining", - "past": "fined", - "past_participle": "fined" - }, - { - "infinitive": "found", - "present": "finds", - "gerund": "finding", - "past": "found", - "past_participle": "found" - }, - { - "infinitive": "scorify", - "present": "scorifies", - "gerund": "scorifying", - "past": "scorified", - "past_participle": "scorified" - }, - { - "infinitive": "mineralize", - "present": "mineralizes", - "gerund": "mineralizing", - "past": "mineralized", - "past_participle": "mineralized" - }, - { - "infinitive": "relent", - "present": "relents", - "gerund": "relenting", - "past": "relented", - "past_participle": "relented" - }, - { - "infinitive": "lather", - "present": "lathers", - "gerund": "lathering", - "past": "lathered", - "past_participle": "lathered" - }, - { - "infinitive": "override", - "present": "overrides", - "gerund": "overriding", - "past": "overrode", - "past_participle": "overridden" - }, - { - "infinitive": "prearrange", - "present": "prearranges", - "gerund": "prearranging", - "past": "prearranged", - "past_participle": "prearranged" - }, - { - "infinitive": "devastate", - "present": "devastates", - "gerund": "devastating", - "past": "devastated", - "past_participle": "devastated" - }, - { - "infinitive": "batten", - "present": "battens", - "gerund": "battening", - "past": "battened", - "past_participle": "battened" - }, - { - "infinitive": "express", - "present": "expresses", - "gerund": "expressing", - "past": "expressed", - "past_participle": "expressed" - }, - { - "infinitive": "ferret", - "present": "ferrets", - "gerund": "ferreting", - "past": "ferreted", - "past_participle": "ferreted" - }, - { - "infinitive": "cheapen", - "present": "cheapens", - "gerund": "cheapening", - "past": "cheapened", - "past_participle": "cheapened" - }, - { - "infinitive": "batter", - "present": "batters", - "gerund": "battering", - "past": "battered", - "past_participle": "battered" - }, - { - "infinitive": "breast", - "present": "breasts", - "gerund": "breasting", - "past": "breasted", - "past_participle": "breasted" - }, - { - "infinitive": "cumulate", - "present": "cumulates", - "gerund": "cumulating", - "past": "cumulated", - "past_participle": "cumulated" - }, - { - "infinitive": "inaugurate", - "present": "inaugurates", - "gerund": "inaugurating", - "past": "inaugurated", - "past_participle": "inaugurated" - }, - { - "infinitive": "pellet", - "present": "pellets", - "gerund": "pelleting", - "past": "pelleted", - "past_participle": "pelleted" - }, - { - "infinitive": "target", - "present": "targets", - "gerund": "targeting", - "past": "targeted", - "past_participle": "targeted" - }, - { - "infinitive": "huff", - "present": "huffs", - "gerund": "huffing", - "past": "huffed", - "past_participle": "huffed" - }, - { - "infinitive": "elapse", - "present": "elapses", - "gerund": "elapsing", - "past": "elapsed", - "past_participle": "elapsed" - }, - { - "infinitive": "resolve", - "present": "resolves", - "gerund": "resolving", - "past": "resolved", - "past_participle": "resolved" - }, - { - "infinitive": "susurrate", - "present": "susurrates", - "gerund": "susurrating", - "past": "susurrated", - "past_participle": "susurrated" - }, - { - "infinitive": "remove", - "present": "removes", - "gerund": "removing", - "past": "removed", - "past_participle": "removed" - }, - { - "infinitive": "supercede", - "present": "supercedes", - "gerund": "superceding", - "past": "superceded", - "past_participle": "superceded" - }, - { - "infinitive": "toe-dance", - "present": "toe-dances", - "gerund": "toe-dancing", - "past": "toe-danced", - "past_participle": "toe-danced" - }, - { - "infinitive": "gazump", - "present": "gazumps", - "gerund": "gazumping", - "past": "gazumped", - "past_participle": "gazumped" - }, - { - "infinitive": "arouse", - "present": "arouses", - "gerund": "arousing", - "past": "aroused", - "past_participle": "aroused" - }, - { - "infinitive": "softland", - "present": "softlands", - "gerund": "softlanding", - "past": "softlanded", - "past_participle": "softlanded" - }, - { - "infinitive": "tender", - "present": "tenders", - "gerund": "tendering", - "past": "tendered", - "past_participle": "tendered" - }, - { - "infinitive": "petrify", - "present": "petrifies", - "gerund": "petrifying", - "past": "petrified", - "past_participle": "petrified" - }, - { - "infinitive": "marinate", - "present": "marinates", - "gerund": "marinating", - "past": "marinated", - "past_participle": "marinated" - }, - { - "infinitive": "debar", - "present": "debars", - "gerund": "debarring", - "past": "debarred", - "past_participle": "debarred" - }, - { - "infinitive": "equivocate", - "present": "equivocates", - "gerund": "equivocating", - "past": "equivocated", - "past_participle": "equivocated" - }, - { - "infinitive": "please", - "present": "pleases", - "gerund": "pleasing", - "past": "pleased", - "past_participle": "pleased" - }, - { - "infinitive": "phototype", - "present": "phototypes", - "gerund": "phototyping", - "past": "phototyped", - "past_participle": "phototyped" - }, - { - "infinitive": "abrade", - "present": "abrades", - "gerund": "abrading", - "past": "abraded", - "past_participle": "abraded" - }, - { - "infinitive": "donate", - "present": "donates", - "gerund": "donating", - "past": "donated", - "past_participle": "donated" - }, - { - "infinitive": "debag", - "present": "debags", - "gerund": "debagging", - "past": "debagged", - "past_participle": "debagged" - }, - { - "infinitive": "concatenate", - "present": "concatenates", - "gerund": "concatenating", - "past": "concatenated", - "past_participle": "concatenated" - }, - { - "infinitive": "rosin", - "present": "rosins", - "gerund": "rosining", - "past": "rosined", - "past_participle": "rosined" - }, - { - "infinitive": "complement", - "present": "complements", - "gerund": "complementing", - "past": "complemented", - "past_participle": "complemented" - }, - { - "infinitive": "silver-plate", - "present": "silver-plates", - "gerund": "silver-plating", - "past": "silver-plated", - "past_participle": "silver-plated" - }, - { - "infinitive": "parbuckle", - "present": "parbuckles", - "gerund": "parbuckling", - "past": "parbuckled", - "past_participle": "parbuckled" - }, - { - "infinitive": "barrack", - "present": "barracks", - "gerund": "barracking", - "past": "barracked", - "past_participle": "barracked" - }, - { - "infinitive": "scuttle", - "present": "scuttles", - "gerund": "scuttling", - "past": "scuttled", - "past_participle": "scuttled" - }, - { - "infinitive": "premise", - "present": "premises", - "gerund": "premising", - "past": "premised", - "past_participle": "premised" - }, - { - "infinitive": "incapsulate", - "present": "incapsulates", - "gerund": "incapsulating", - "past": "incapsulated", - "past_participle": "incapsulated" - }, - { - "infinitive": "poniard", - "present": "poniards", - "gerund": "poniarding", - "past": "poniarded", - "past_participle": "poniarded" - }, - { - "infinitive": "reverse", - "present": "reverses", - "gerund": "reversing", - "past": "reversed", - "past_participle": "reversed" - }, - { - "infinitive": "scythe", - "present": "scythes", - "gerund": "scything", - "past": "scythed", - "past_participle": "scythed" - }, - { - "infinitive": "spume", - "present": "spumes", - "gerund": "spuming", - "past": "spumed", - "past_participle": "spumed" - }, - { - "infinitive": "keypunch", - "present": "keypunches", - "gerund": "keypunching", - "past": "keypunched", - "past_participle": "keypunched" - }, - { - "infinitive": "confabulate", - "present": "confabulates", - "gerund": "confabulating", - "past": "confabulated", - "past_participle": "confabulated" - }, - { - "infinitive": "consume", - "present": "consumes", - "gerund": "consuming", - "past": "consumed", - "past_participle": "consumed" - }, - { - "infinitive": "point", - "present": "points", - "gerund": "pointing", - "past": "pointed", - "past_participle": "pointed" - }, - { - "infinitive": "dwindle", - "present": "dwindles", - "gerund": "dwindling", - "past": "dwindled", - "past_participle": "dwindled" - }, - { - "infinitive": "smother", - "present": "smothers", - "gerund": "smothering", - "past": "smothered", - "past_participle": "smothered" - }, - { - "infinitive": "poind", - "present": "poinds", - "gerund": "poinding", - "past": "poinded", - "past_participle": "poinded" - }, - { - "infinitive": "wrick", - "present": "wricks", - "gerund": "wricking", - "past": "wricked", - "past_participle": "wricked" - }, - { - "infinitive": "toddle", - "present": "toddles", - "gerund": "toddling", - "past": "toddled", - "past_participle": "toddled" - }, - { - "infinitive": "civilize", - "present": "civilizes", - "gerund": "civilizing", - "past": "civilized", - "past_participle": "civilized" - }, - { - "infinitive": "raise", - "present": "raises", - "gerund": "raising", - "past": "raised", - "past_participle": "raised" - }, - { - "infinitive": "dovetail", - "present": "dovetails", - "gerund": "dovetailing", - "past": "dovetailed", - "past_participle": "dovetailed" - }, - { - "infinitive": "smote", - "present": "smotes", - "gerund": "smoting", - "past": "smoted", - "past_participle": "smoted" - }, - { - "infinitive": "create", - "present": "creates", - "gerund": "creating", - "past": "created", - "past_participle": "created" - }, - { - "infinitive": "appall", - "present": "appals", - "gerund": "appalling", - "past": "appalled", - "past_participle": "appalled" - }, - { - "infinitive": "volley", - "present": "volleys", - "gerund": "volleying", - "past": "volleyed", - "past_participle": "volleyed" - }, - { - "infinitive": "gat", - "present": "gats", - "gerund": "gating", - "past": "gated", - "past_participle": "gated" - }, - { - "infinitive": "gas", - "present": "gasses", - "gerund": "gassing", - "past": "gassed", - "past_participle": "gassed" - }, - { - "infinitive": "misgive", - "present": "misgives", - "gerund": "misgiving", - "past": "misgave", - "past_participle": "misgiven" - }, - { - "infinitive": "gam", - "present": "gams", - "gerund": "gamming", - "past": "gammed", - "past_participle": "gammed" - }, - { - "infinitive": "jellify", - "present": "jellifies", - "gerund": "jellifying", - "past": "jellified", - "past_participle": "jellified" - }, - { - "infinitive": "formularize", - "present": "formularizes", - "gerund": "formularizing", - "past": "formularized", - "past_participle": "formularized" - }, - { - "infinitive": "undercharge", - "present": "undercharges", - "gerund": "undercharging", - "past": "undercharged", - "past_participle": "undercharged" - }, - { - "infinitive": "gag", - "present": "gags", - "gerund": "gagging", - "past": "gagged", - "past_participle": "gagged" - }, - { - "infinitive": "gad", - "present": "gads", - "gerund": "gadding", - "past": "gadded", - "past_participle": "gadded" - }, - { - "infinitive": "chatter", - "present": "chatters", - "gerund": "chattering", - "past": "chattered", - "past_participle": "chattered" - }, - { - "infinitive": "gab", - "present": "gabs", - "gerund": "gabbing", - "past": "gabbed", - "past_participle": "gabbed" - }, - { - "infinitive": "cognize", - "present": "cognizes", - "gerund": "cognizing", - "past": "cognized", - "past_participle": "cognized" - }, - { - "infinitive": "straiten", - "present": "straitens", - "gerund": "straitening", - "past": "straitened", - "past_participle": "straitened" - }, - { - "infinitive": "pierce", - "present": "pierces", - "gerund": "piercing", - "past": "pierced", - "past_participle": "pierced" - }, - { - "infinitive": "fur", - "present": "furs", - "gerund": "furring", - "past": "furred", - "past_participle": "furred" - }, - { - "infinitive": "dehypnotize", - "present": "dehypnotizes", - "gerund": "dehypnotizing", - "past": "dehypnotized", - "past_participle": "dehypnotized" - }, - { - "infinitive": "bill", - "present": "bills", - "gerund": "billing", - "past": "billed", - "past_participle": "billed" - }, - { - "infinitive": "bilk", - "present": "bilks", - "gerund": "bilking", - "past": "bilked", - "past_participle": "bilked" - }, - { - "infinitive": "horseshoe", - "present": "horseshoes", - "gerund": "horseshoeing", - "past": "horseshoed", - "past_participle": "horseshoed" - }, - { - "infinitive": "fun", - "present": "funs", - "gerund": "funning", - "past": "funned", - "past_participle": "funned" - }, - { - "infinitive": "astrict", - "present": "astricts", - "gerund": "astricting", - "past": "astricted", - "past_participle": "astricted" - }, - { - "infinitive": "approximate", - "present": "approximates", - "gerund": "approximating", - "past": "approximated", - "past_participle": "approximated" - }, - { - "infinitive": "escheat", - "present": "escheats", - "gerund": "escheating", - "past": "escheated", - "past_participle": "escheated" - }, - { - "infinitive": "astound", - "present": "astounds", - "gerund": "astounding", - "past": "astounded", - "past_participle": "astounded" - }, - { - "infinitive": "echelon", - "present": "echelons", - "gerund": "echeloning", - "past": "echeloned", - "past_participle": "echeloned" - }, - { - "infinitive": "calender", - "present": "calenders", - "gerund": "calendering", - "past": "calendered", - "past_participle": "calendered" - }, - { - "infinitive": "backpedal", - "present": "backpedals", - "gerund": "backpedalling", - "past": "backpedalled", - "past_participle": "backpedalled" - }, - { - "infinitive": "enervate", - "present": "enervates", - "gerund": "enervating", - "past": "enervated", - "past_participle": "enervated" - }, - { - "infinitive": "solemnify", - "present": "solemnifies", - "gerund": "solemnifying", - "past": "solemnified", - "past_participle": "solemnified" - }, - { - "infinitive": "commutate", - "present": "commutates", - "gerund": "commutating", - "past": "commutated", - "past_participle": "commutated" - }, - { - "infinitive": "regulate", - "present": "regulates", - "gerund": "regulating", - "past": "regulated", - "past_participle": "regulated" - }, - { - "infinitive": "irradiate", - "present": "irradiates", - "gerund": "irradiating", - "past": "irradiated", - "past_participle": "irradiated" - }, - { - "infinitive": "ingrain", - "present": "ingrains", - "gerund": "ingraining", - "past": "ingrained", - "past_participle": "ingrained" - }, - { - "infinitive": "seduce", - "present": "seduces", - "gerund": "seducing", - "past": "seduced", - "past_participle": "seduced" - }, - { - "infinitive": "externalize", - "present": "externalizes", - "gerund": "externalizing", - "past": "externalized", - "past_participle": "externalized" - }, - { - "infinitive": "discourse", - "present": "discourses", - "gerund": "discoursing", - "past": "discoursed", - "past_participle": "discoursed" - }, - { - "infinitive": "republicanize", - "present": "republicanizes", - "gerund": "republicanizing", - "past": "republicanized", - "past_participle": "republicanized" - }, - { - "infinitive": "emphasize", - "present": "emphasizes", - "gerund": "emphasizing", - "past": "emphasized", - "past_participle": "emphasized" - }, - { - "infinitive": "bristle", - "present": "bristles", - "gerund": "bristling", - "past": "bristled", - "past_participle": "bristled" - }, - { - "infinitive": "ray", - "present": "rays", - "gerund": "raying", - "past": "rayed", - "past_participle": "rayed" - }, - { - "infinitive": "relativize", - "present": "relativizes", - "gerund": "relativizing", - "past": "relativized", - "past_participle": "relativized" - }, - { - "infinitive": "windmill", - "present": "windmills", - "gerund": "windmilling", - "past": "windmilled", - "past_participle": "windmilled" - }, - { - "infinitive": "contravene", - "present": "contravenes", - "gerund": "contravening", - "past": "contravened", - "past_participle": "contravened" - }, - { - "infinitive": "equiponderate", - "present": "equiponderates", - "gerund": "equiponderating", - "past": "equiponderated", - "past_participle": "equiponderated" - }, - { - "infinitive": "itch", - "present": "itches", - "gerund": "itching", - "past": "itched", - "past_participle": "itched" - }, - { - "infinitive": "kill", - "present": "kills", - "gerund": "killing", - "past": "killed", - "past_participle": "killed" - }, - { - "infinitive": "flurry", - "present": "flurries", - "gerund": "flurrying", - "past": "flurried", - "past_participle": "flurried" - }, - { - "infinitive": "purpose", - "present": "purposes", - "gerund": "purposing", - "past": "purposed", - "past_participle": "purposed" - }, - { - "infinitive": "aggregate", - "present": "aggregates", - "gerund": "aggregating", - "past": "aggregated", - "past_participle": "aggregated" - }, - { - "infinitive": "unveil", - "present": "unveils", - "gerund": "unveiling", - "past": "unveiled", - "past_participle": "unveiled" - }, - { - "infinitive": "degustate", - "present": "degusts", - "gerund": "degusting", - "past": "degusted", - "past_participle": "degusted" - }, - { - "infinitive": "swish", - "present": "swishes", - "gerund": "swishing", - "past": "swished", - "past_participle": "swished" - }, - { - "infinitive": "finesse", - "present": "finesses", - "gerund": "finessing", - "past": "finessed", - "past_participle": "finessed" - }, - { - "infinitive": "supersede", - "present": "supersedes", - "gerund": "superseding", - "past": "superseded", - "past_participle": "superseded" - }, - { - "infinitive": "rearm", - "present": "rearms", - "gerund": "rearming", - "past": "rearmed", - "past_participle": "rearmed" - }, - { - "infinitive": "unlay", - "present": "unlays", - "gerund": "unlaying", - "past": "unlaid", - "past_participle": "unlaid" - }, - { - "infinitive": "decuple", - "present": "decuples", - "gerund": "decupling", - "past": "decupled", - "past_participle": "decupled" - }, - { - "infinitive": "crossreference", - "present": "crossreferences", - "gerund": "crossreferencing", - "past": "crossreferenced", - "past_participle": "crossreferenced" - }, - { - "infinitive": "reard", - "present": "reards", - "gerund": "rearding", - "past": "rearded", - "past_participle": "rearded" - }, - { - "infinitive": "appertain", - "present": "appertains", - "gerund": "appertaining", - "past": "appertained", - "past_participle": "appertained" - }, - { - "infinitive": "withdraw", - "present": "withdraws", - "gerund": "withdrawing", - "past": "withdrew", - "past_participle": "withdrawn" - }, - { - "infinitive": "toil", - "present": "toils", - "gerund": "toiling", - "past": "toiled", - "past_participle": "toiled" - }, - { - "infinitive": "recant", - "present": "recants", - "gerund": "recanting", - "past": "recanted", - "past_participle": "recanted" - }, - { - "infinitive": "spend", - "present": "spends", - "gerund": "spending", - "past": "spent", - "past_participle": "spent" - }, - { - "infinitive": "howl", - "present": "howls", - "gerund": "howling", - "past": "howled", - "past_participle": "howled" - }, - { - "infinitive": "darn", - "present": "darns", - "gerund": "darning", - "past": "darned", - "past_participle": "darned" - }, - { - "infinitive": "segregate", - "present": "segregates", - "gerund": "segregating", - "past": "segregated", - "past_participle": "segregated" - }, - { - "infinitive": "shape", - "present": "shapes", - "gerund": "shaping", - "past": "shaped", - "past_participle": "shaped" - }, - { - "infinitive": "disendow", - "present": "disendows", - "gerund": "disendowing", - "past": "disendowed", - "past_participle": "disendowed" - }, - { - "infinitive": "timber", - "present": "timbers", - "gerund": "timbering", - "past": "timbered", - "past_participle": "timbered" - }, - { - "infinitive": "discipline", - "present": "disciplines", - "gerund": "disciplining", - "past": "disciplined", - "past_participle": "disciplined" - }, - { - "infinitive": "cut", - "present": "cuts", - "gerund": "cutting", - "past": "cut", - "past_participle": "cut" - }, - { - "infinitive": "cup", - "present": "cups", - "gerund": "cupping", - "past": "cupped", - "past_participle": "cupped" - }, - { - "infinitive": "courtmartial", - "present": "courtmartials", - "gerund": "courtmartialing", - "past": "courtmartialed", - "past_participle": "courtmartialed" - }, - { - "infinitive": "alternate", - "present": "alternates", - "gerund": "alternating", - "past": "alternated", - "past_participle": "alternated" - }, - { - "infinitive": "cue", - "present": "cues", - "gerund": "cuing", - "past": "cued", - "past_participle": "cued" - }, - { - "infinitive": "misshape", - "present": "misshapes", - "gerund": "misshaping", - "past": "misshaped", - "past_participle": "misshaped" - }, - { - "infinitive": "cub", - "present": "cubs", - "gerund": "cubbing", - "past": "cubbed", - "past_participle": "cubbed" - }, - { - "infinitive": "misdeal", - "present": "misdeals", - "gerund": "misdealing", - "past": "misdealt", - "past_participle": "misdealt" - }, - { - "infinitive": "squawk", - "present": "squawks", - "gerund": "squawking", - "past": "squawked", - "past_participle": "squawked" - }, - { - "infinitive": "over-simplify", - "present": "over-simplifies", - "gerund": "over-simplifying", - "past": "oversimplified", - "past_participle": "over-simplified" - }, - { - "infinitive": "bid", - "present": "bids", - "gerund": "bidding", - "past": "bid", - "past_participle": "bidden" - }, - { - "infinitive": "Mohammedanize", - "present": "Mohammedanizes", - "gerund": "Mohammedanizing", - "past": "Mohammedanized", - "past_participle": "Mohammedanized" - }, - { - "infinitive": "displace", - "present": "displaces", - "gerund": "displacing", - "past": "displaced", - "past_participle": "displaced" - }, - { - "infinitive": "redeem", - "present": "redeems", - "gerund": "redeeming", - "past": "redeemed", - "past_participle": "redeemed" - }, - { - "infinitive": "divagate", - "present": "divagates", - "gerund": "divagating", - "past": "divagated", - "past_participle": "divagated" - }, - { - "infinitive": "decaffeinate", - "present": "decaffeinates", - "gerund": "decaffeinating", - "past": "decaffeinated", - "past_participle": "decaffeinated" - }, - { - "infinitive": "bit", - "present": "bits", - "gerund": "bitting", - "past": "bitted", - "past_participle": "bitted" - }, - { - "infinitive": "pollinate", - "present": "pollinates", - "gerund": "pollinating", - "past": "pollinated", - "past_participle": "pollinated" - }, - { - "infinitive": "knock", - "present": "knocks", - "gerund": "knocking", - "past": "knocked", - "past_participle": "knocked" - }, - { - "infinitive": "phlebotomize", - "present": "phlebotomizes", - "gerund": "phlebotomizing", - "past": "phlebotomized", - "past_participle": "phlebotomized" - }, - { - "infinitive": "blemish", - "present": "blemishes", - "gerund": "blemishing", - "past": "blemished", - "past_participle": "blemished" - }, - { - "infinitive": "miff", - "present": "miffs", - "gerund": "miffing", - "past": "miffed", - "past_participle": "miffed" - }, - { - "infinitive": "retake", - "present": "retakes", - "gerund": "retaking", - "past": "retook", - "past_participle": "retaken" - }, - { - "infinitive": "glove", - "present": "gloves", - "gerund": "gloving", - "past": "gloved", - "past_participle": "gloved" - }, - { - "infinitive": "flux", - "present": "fluxes", - "gerund": "fluxing", - "past": "fluxed", - "past_participle": "fluxed" - }, - { - "infinitive": "isomerize", - "present": "isomerizes", - "gerund": "isomerizing", - "past": "isomerized", - "past_participle": "isomerized" - }, - { - "infinitive": "wis", - "present": "wises", - "gerund": "wising", - "past": "wised", - "past_participle": "wised" - }, - { - "infinitive": "transgress", - "present": "transgresses", - "gerund": "transgressing", - "past": "transgressed", - "past_participle": "transgressed" - }, - { - "infinitive": "disconsider", - "present": "disconsiders", - "gerund": "disconsidering", - "past": "disconsidered", - "past_participle": "disconsidered" - }, - { - "infinitive": "back", - "present": "backs", - "gerund": "backing", - "past": "backed", - "past_participle": "backed" - }, - { - "infinitive": "impeach", - "present": "impeaches", - "gerund": "impeaching", - "past": "impeached", - "past_participle": "impeached" - }, - { - "infinitive": "accelerate", - "present": "accelerates", - "gerund": "accelerating", - "past": "accelerated", - "past_participle": "accelerated" - }, - { - "infinitive": "mirror", - "present": "mirrors", - "gerund": "mirroring", - "past": "mirrored", - "past_participle": "mirrored" - }, - { - "infinitive": "candle", - "present": "candles", - "gerund": "candling", - "past": "candled", - "past_participle": "candled" - }, - { - "infinitive": "scrump", - "present": "scrumps", - "gerund": "scrumping", - "past": "scrumped", - "past_participle": "scrumped" - }, - { - "infinitive": "scald", - "present": "scalds", - "gerund": "scalding", - "past": "scalded", - "past_participle": "scalded" - }, - { - "infinitive": "scale", - "present": "scales", - "gerund": "scaling", - "past": "scaled", - "past_participle": "scaled" - }, - { - "infinitive": "reinstitute", - "present": "reinstitutes", - "gerund": "reinstituting", - "past": "reinstituted", - "past_participle": "reinstituted" - }, - { - "infinitive": "pet", - "present": "pets", - "gerund": "petting", - "past": "petted", - "past_participle": "petted" - }, - { - "infinitive": "pelt", - "present": "pelts", - "gerund": "pelting", - "past": "pelted", - "past_participle": "pelted" - }, - { - "infinitive": "pep", - "present": "peps", - "gerund": "pepping", - "past": "pepped", - "past_participle": "pepped" - }, - { - "infinitive": "pen", - "present": "pens", - "gerund": "penning", - "past": "pent", - "past_participle": "penned" - }, - { - "infinitive": "eliminate", - "present": "eliminates", - "gerund": "eliminating", - "past": "eliminated", - "past_participle": "eliminated" - }, - { - "infinitive": "scalp", - "present": "scalps", - "gerund": "scalping", - "past": "scalped", - "past_participle": "scalped" - }, - { - "infinitive": "lard", - "present": "lards", - "gerund": "larding", - "past": "larded", - "past_participle": "larded" - }, - { - "infinitive": "lark", - "present": "larks", - "gerund": "larking", - "past": "larked", - "past_participle": "larked" - }, - { - "infinitive": "pee", - "present": "pees", - "gerund": "peeing", - "past": "peed", - "past_participle": "peed" - }, - { - "infinitive": "peg", - "present": "pegs", - "gerund": "pegging", - "past": "pegged", - "past_participle": "pegged" - }, - { - "infinitive": "invade", - "present": "invades", - "gerund": "invading", - "past": "invaded", - "past_participle": "invaded" - }, - { - "infinitive": "corrival", - "present": "corrivals", - "gerund": "corrivaling", - "past": "corrivaled", - "past_participle": "corrivaled" - }, - { - "infinitive": "tut-tut", - "present": "tut-tuts", - "gerund": "tut-tutting", - "past": "tut-tutted", - "past_participle": "tut-tutted" - }, - { - "infinitive": "militate", - "present": "militates", - "gerund": "militating", - "past": "militated", - "past_participle": "militated" - }, - { - "infinitive": "used", - "present": "uses", - "gerund": "using", - "past": "used", - "past_participle": "used" - }, - { - "infinitive": "kockelsch", - "present": "kockelsches", - "gerund": "kockelsching", - "past": "kockelsched", - "past_participle": "kockelsched" - }, - { - "infinitive": "foliate", - "present": "foliates", - "gerund": "foliating", - "past": "foliated", - "past_participle": "foliated" - }, - { - "infinitive": "optimize", - "present": "optimizes", - "gerund": "optimizing", - "past": "optimized", - "past_participle": "optimized" - }, - { - "infinitive": "snoop", - "present": "snoops", - "gerund": "snooping", - "past": "snooped", - "past_participle": "snooped" - }, - { - "infinitive": "hypnotize", - "present": "hypnotizes", - "gerund": "hypnotizing", - "past": "hypnotized", - "past_participle": "hypnotized" - }, - { - "infinitive": "preconize", - "present": "preconizes", - "gerund": "preconizing", - "past": "preconized", - "past_participle": "preconized" - }, - { - "infinitive": "bluster", - "present": "blusters", - "gerund": "blustering", - "past": "blustered", - "past_participle": "blustered" - }, - { - "infinitive": "alkalify", - "present": "alkalifies", - "gerund": "alkalifying", - "past": "alkalified", - "past_participle": "alkalified" - }, - { - "infinitive": "ebonize", - "present": "ebonizes", - "gerund": "ebonizing", - "past": "ebonized", - "past_participle": "ebonized" - }, - { - "infinitive": "jimmy", - "present": "jimmies", - "gerund": "jimmying", - "past": "jimmied", - "past_participle": "jimmied" - }, - { - "infinitive": "sniffle", - "present": "sniffles", - "gerund": "sniffling", - "past": "sniffled", - "past_participle": "sniffled" - }, - { - "infinitive": "depose", - "present": "deposes", - "gerund": "deposing", - "past": "deposed", - "past_participle": "deposed" - }, - { - "infinitive": "tiff", - "present": "tiffs", - "gerund": "tiffing", - "past": "tiffed", - "past_participle": "tiffed" - }, - { - "infinitive": "clack", - "present": "clacks", - "gerund": "clacking", - "past": "clacked", - "past_participle": "clacked" - }, - { - "infinitive": "epilate", - "present": "epilates", - "gerund": "epilating", - "past": "epilated", - "past_participle": "epilated" - }, - { - "infinitive": "lesson", - "present": "lessons", - "gerund": "lessoning", - "past": "lessoned", - "past_participle": "lessoned" - }, - { - "infinitive": "dispend", - "present": "dispends", - "gerund": "dispending", - "past": "dispended", - "past_participle": "dispended" - }, - { - "infinitive": "vamoose", - "present": "vamooses", - "gerund": "vamoosing", - "past": "vamoosed", - "past_participle": "vamoosed" - }, - { - "infinitive": "singlefoot", - "present": "singlefoots", - "gerund": "singlefooting", - "past": "singlefooted", - "past_participle": "singlefooted" - }, - { - "infinitive": "overstrain", - "present": "overstrains", - "gerund": "overstraining", - "past": "overstrained", - "past_participle": "overstrained" - }, - { - "infinitive": "emblaze", - "present": "emblazes", - "gerund": "emblazing", - "past": "emblazed", - "past_participle": "emblazed" - }, - { - "infinitive": "scrimshank", - "present": "scrimshanks", - "gerund": "scrimshanking", - "past": "scrimshanked", - "past_participle": "scrimshanked" - }, - { - "infinitive": "overpower", - "present": "overpowers", - "gerund": "overpowering", - "past": "overpowered", - "past_participle": "overpowered" - }, - { - "infinitive": "copyedit", - "present": "copyedits", - "gerund": "copyediting", - "past": "copyedited", - "past_participle": "copyedited" - }, - { - "infinitive": "debilitate", - "present": "debilitates", - "gerund": "debilitating", - "past": "debilitated", - "past_participle": "debilitated" - }, - { - "infinitive": "forward", - "present": "forwards", - "gerund": "forwarding", - "past": "forwarded", - "past_participle": "forwarded" - }, - { - "infinitive": "prostitute", - "present": "prostitutes", - "gerund": "prostituting", - "past": "prostituted", - "past_participle": "prostituted" - }, - { - "infinitive": "invite", - "present": "invites", - "gerund": "inviting", - "past": "invited", - "past_participle": "invited" - }, - { - "infinitive": "pronounce", - "present": "pronounces", - "gerund": "pronouncing", - "past": "pronounced", - "past_participle": "pronounced" - }, - { - "infinitive": "jaga", - "present": "jagas", - "gerund": "jagaing", - "past": "jagaed", - "past_participle": "jagaed" - }, - { - "infinitive": "fankle", - "present": "fankles", - "gerund": "fankling", - "past": "fankled", - "past_participle": "fankled" - }, - { - "infinitive": "cloud", - "present": "clouds", - "gerund": "clouding", - "past": "clouded", - "past_participle": "clouded" - }, - { - "infinitive": "discomfit", - "present": "discomfits", - "gerund": "discomfiting", - "past": "discomfited", - "past_participle": "discomfited" - }, - { - "infinitive": "gollop", - "present": "gollops", - "gerund": "golloping", - "past": "golloped", - "past_participle": "golloped" - }, - { - "infinitive": "carburet", - "present": "carburets", - "gerund": "carburetting", - "past": "carburetted", - "past_participle": "carburetted" - }, - { - "infinitive": "groove", - "present": "grooves", - "gerund": "grooving", - "past": "grooved", - "past_participle": "grooved" - }, - { - "infinitive": "repulse", - "present": "repulses", - "gerund": "repulsing", - "past": "repulsed", - "past_participle": "repulsed" - }, - { - "infinitive": "flop", - "present": "flops", - "gerund": "flopping", - "past": "flopped", - "past_participle": "flopped" - }, - { - "infinitive": "metal", - "present": "metals", - "gerund": "metaling", - "past": "metaled", - "past_participle": "metaled" - }, - { - "infinitive": "foregather", - "present": "foregathers", - "gerund": "foregathering", - "past": "foregathered", - "past_participle": "foregathered" - }, - { - "infinitive": "deprive", - "present": "deprives", - "gerund": "depriving", - "past": "deprived", - "past_participle": "deprived" - }, - { - "infinitive": "curd", - "present": "curds", - "gerund": "curding", - "past": "curded", - "past_participle": "curded" - }, - { - "infinitive": "cure", - "present": "cures", - "gerund": "curing", - "past": "cured", - "past_participle": "cured" - }, - { - "infinitive": "curb", - "present": "curbs", - "gerund": "curbing", - "past": "curbed", - "past_participle": "curbed" - }, - { - "infinitive": "curl", - "present": "curls", - "gerund": "curling", - "past": "curled", - "past_participle": "curled" - }, - { - "infinitive": "antiquate", - "present": "antiquates", - "gerund": "antiquating", - "past": "antiquated", - "past_participle": "antiquated" - }, - { - "infinitive": "prevail", - "present": "prevails", - "gerund": "prevailing", - "past": "prevailed", - "past_participle": "prevailed" - }, - { - "infinitive": "overfeed", - "present": "overfeeds", - "gerund": "overfeeding", - "past": "overfed", - "past_participle": "overfed" - }, - { - "infinitive": "adjudicate", - "present": "adjudicates", - "gerund": "adjudicating", - "past": "adjudicated", - "past_participle": "adjudicated" - }, - { - "infinitive": "anesthetize", - "present": "anesthetizes", - "gerund": "anesthetizing", - "past": "anesthetized", - "past_participle": "anesthetized" - }, - { - "infinitive": "sterilize", - "present": "sterilizes", - "gerund": "sterilizing", - "past": "sterilized", - "past_participle": "sterilized" - }, - { - "infinitive": "excrete", - "present": "excretes", - "gerund": "excreting", - "past": "excreted", - "past_participle": "excreted" - }, - { - "infinitive": "assassinate", - "present": "assassinates", - "gerund": "assassinating", - "past": "assassinated", - "past_participle": "assassinated" - }, - { - "infinitive": "confine", - "present": "confines", - "gerund": "confining", - "past": "confined", - "past_participle": "confined" - }, - { - "infinitive": "quaff", - "present": "quaffs", - "gerund": "quaffing", - "past": "quaffed", - "past_participle": "quaffed" - }, - { - "infinitive": "cellar", - "present": "cellars", - "gerund": "cellaring", - "past": "cellared", - "past_participle": "cellared" - }, - { - "infinitive": "lend", - "present": "lends", - "gerund": "lending", - "past": "lent", - "past_participle": "lent" - }, - { - "infinitive": "cater", - "present": "caters", - "gerund": "catering", - "past": "catered", - "past_participle": "catered" - }, - { - "infinitive": "macerate", - "present": "macerates", - "gerund": "macerating", - "past": "macerated", - "past_participle": "macerated" - }, - { - "infinitive": "desert", - "present": "deserts", - "gerund": "deserting", - "past": "deserted", - "past_participle": "deserted" - }, - { - "infinitive": "comanage", - "present": "comanages", - "gerund": "comanaging", - "past": "comanaged", - "past_participle": "comanaged" - }, - { - "infinitive": "bedaub", - "present": "bedaubs", - "gerund": "bedaubing", - "past": "bedaubed", - "past_participle": "bedaubed" - }, - { - "infinitive": "rinse", - "present": "rinses", - "gerund": "rinsing", - "past": "rinsed", - "past_participle": "rinsed" - }, - { - "infinitive": "pussyfoot", - "present": "pussyfoots", - "gerund": "pussyfooting", - "past": "pussyfooted", - "past_participle": "pussyfooted" - }, - { - "infinitive": "whang", - "present": "whangs", - "gerund": "whanging", - "past": "whanged", - "past_participle": "whanged" - }, - { - "infinitive": "wrangle", - "present": "wrangles", - "gerund": "wrangling", - "past": "wrangled", - "past_participle": "wrangled" - }, - { - "infinitive": "query", - "present": "queries", - "gerund": "querying", - "past": "queried", - "past_participle": "queried" - }, - { - "infinitive": "strew", - "present": "strews", - "gerund": "strewing", - "past": "strewed", - "past_participle": "strewn" - }, - { - "infinitive": "liquesce", - "present": "liquesces", - "gerund": "liquescing", - "past": "liquesced", - "past_participle": "liquesced" - }, - { - "infinitive": "welter", - "present": "welters", - "gerund": "weltering", - "past": "weltered", - "past_participle": "weltered" - }, - { - "infinitive": "compost", - "present": "composts", - "gerund": "composting", - "past": "composted", - "past_participle": "composted" - }, - { - "infinitive": "blaze", - "present": "blazes", - "gerund": "blazing", - "past": "blazed", - "past_participle": "blazed" - }, - { - "infinitive": "weather", - "present": "weathers", - "gerund": "weathering", - "past": "weathered", - "past_participle": "weathered" - }, - { - "infinitive": "gravel", - "present": "gravels", - "gerund": "gravelling", - "past": "gravelled", - "past_participle": "gravelled" - }, - { - "infinitive": "brigade", - "present": "brigades", - "gerund": "brigading", - "past": "brigaded", - "past_participle": "brigaded" - }, - { - "infinitive": "electrocute", - "present": "electrocutes", - "gerund": "electrocuting", - "past": "electrocuted", - "past_participle": "electrocuted" - }, - { - "infinitive": "assay", - "present": "assays", - "gerund": "assaying", - "past": "assayed", - "past_participle": "assayed" - }, - { - "infinitive": "birddog", - "present": "birddogs", - "gerund": "birddogging", - "past": "birddogged", - "past_participle": "birddogged" - }, - { - "infinitive": "rime", - "present": "rimes", - "gerund": "riming", - "past": "rimed", - "past_participle": "rimed" - }, - { - "infinitive": "expertize", - "present": "expertizes", - "gerund": "expertizing", - "past": "expertized", - "past_participle": "expertized" - }, - { - "infinitive": "accuse", - "present": "accuses", - "gerund": "accusing", - "past": "accused", - "past_participle": "accused" - }, - { - "infinitive": "reverberate", - "present": "reverberates", - "gerund": "reverberating", - "past": "reverberated", - "past_participle": "reverberated" - }, - { - "infinitive": "thwack", - "present": "thwacks", - "gerund": "thwacking", - "past": "thwacked", - "past_participle": "thwacked" - }, - { - "infinitive": "embay", - "present": "embays", - "gerund": "embaying", - "past": "embayed", - "past_participle": "embayed" - }, - { - "infinitive": "arrange", - "present": "arranges", - "gerund": "arranging", - "past": "arranged", - "past_participle": "arranged" - }, - { - "infinitive": "homogenize", - "present": "homogenizes", - "gerund": "homogenizing", - "past": "homogenized", - "past_participle": "homogenized" - }, - { - "infinitive": "knight", - "present": "knights", - "gerund": "knighting", - "past": "knighted", - "past_participle": "knighted" - }, - { - "infinitive": "shock", - "present": "shocks", - "gerund": "shocking", - "past": "shocked", - "past_participle": "shocked" - }, - { - "infinitive": "mobilize", - "present": "mobilizes", - "gerund": "mobilizing", - "past": "mobilized", - "past_participle": "mobilized" - }, - { - "infinitive": "refer", - "present": "refers", - "gerund": "referring", - "past": "referred", - "past_participle": "referred" - }, - { - "infinitive": "ride", - "present": "rides", - "gerund": "riding", - "past": "rode", - "past_participle": "ridden" - }, - { - "infinitive": "buckram", - "present": "buckrams", - "gerund": "buckraming", - "past": "buckramed", - "past_participle": "buckramed" - }, - { - "infinitive": "crow", - "present": "crows", - "gerund": "crowing", - "past": "crowed", - "past_participle": "crowed" - }, - { - "infinitive": "queer", - "present": "queers", - "gerund": "queering", - "past": "queered", - "past_participle": "queered" - }, - { - "infinitive": "crop", - "present": "crops", - "gerund": "cropping", - "past": "cropped", - "past_participle": "cropped" - }, - { - "infinitive": "undergo", - "present": "undergoes", - "gerund": "undergoing", - "past": "underwent", - "past_participle": "undergone" - }, - { - "infinitive": "prate", - "present": "prates", - "gerund": "prating", - "past": "prated", - "past_participle": "prated" - }, - { - "infinitive": "roughhew", - "present": "roughhews", - "gerund": "roughhewing", - "past": "roughhewn", - "past_participle": "roughhewn" - }, - { - "infinitive": "append", - "present": "appends", - "gerund": "appending", - "past": "appended", - "past_participle": "appended" - }, - { - "infinitive": "decontaminate", - "present": "decontaminates", - "gerund": "decontaminating", - "past": "decontaminated", - "past_participle": "decontaminated" - }, - { - "infinitive": "zest", - "present": "zests", - "gerund": "zesting", - "past": "zested", - "past_participle": "zested" - }, - { - "infinitive": "speckle", - "present": "speckles", - "gerund": "speckling", - "past": "speckled", - "past_participle": "speckled" - }, - { - "infinitive": "tambour", - "present": "tambours", - "gerund": "tambouring", - "past": "tamboured", - "past_participle": "tamboured" - }, - { - "infinitive": "paddle", - "present": "paddles", - "gerund": "paddling", - "past": "paddled", - "past_participle": "paddled" - }, - { - "infinitive": "access", - "present": "accesses", - "gerund": "accessing", - "past": "accessed", - "past_participle": "accessed" - }, - { - "infinitive": "lumber", - "present": "lumbers", - "gerund": "lumbering", - "past": "lumbered", - "past_participle": "lumbered" - }, - { - "infinitive": "exercise", - "present": "exercises", - "gerund": "exercising", - "past": "exercised", - "past_participle": "exercised" - }, - { - "infinitive": "body", - "present": "bodies", - "gerund": "bodying", - "past": "bodied", - "past_participle": "bodied" - }, - { - "infinitive": "exchange", - "present": "exchanges", - "gerund": "exchanging", - "past": "exchanged", - "past_participle": "exchanged" - }, - { - "infinitive": "sprung", - "present": "sprungs", - "gerund": "sprunging", - "past": "sprunged", - "past_participle": "sprunged" - }, - { - "infinitive": "intercept", - "present": "intercepts", - "gerund": "intercepting", - "past": "intercepted", - "past_participle": "intercepted" - }, - { - "infinitive": "sink", - "present": "sinks", - "gerund": "sinking", - "past": "sunk", - "past_participle": "sunken" - }, - { - "infinitive": "dissuade", - "present": "dissuades", - "gerund": "dissuading", - "past": "dissuaded", - "past_participle": "dissuaded" - }, - { - "infinitive": "sing", - "present": "sings", - "gerund": "singing", - "past": "sung", - "past_participle": "sung" - }, - { - "infinitive": "abnegate", - "present": "abnegates", - "gerund": "abnegating", - "past": "abnegated", - "past_participle": "abnegated" - }, - { - "infinitive": "bode", - "present": "bodes", - "gerund": "boding", - "past": "boded", - "past_participle": "boded" - }, - { - "infinitive": "incinerate", - "present": "incinerates", - "gerund": "incinerating", - "past": "incinerated", - "past_participle": "incinerated" - }, - { - "infinitive": "cere", - "present": "ceres", - "gerund": "cering", - "past": "cered", - "past_participle": "cered" - }, - { - "infinitive": "resurrect", - "present": "resurrects", - "gerund": "resurrecting", - "past": "resurrected", - "past_participle": "resurrected" - }, - { - "infinitive": "crystallize", - "present": "crystallizes", - "gerund": "crystallizing", - "past": "crystallized", - "past_participle": "crystallized" - }, - { - "infinitive": "implement", - "present": "implements", - "gerund": "implementing", - "past": "implemented", - "past_participle": "implemented" - }, - { - "infinitive": "honor", - "present": "honors", - "gerund": "honoring", - "past": "honored", - "past_participle": "honored" - }, - { - "infinitive": "abominate", - "present": "abominates", - "gerund": "abominating", - "past": "abominated", - "past_participle": "abominated" - }, - { - "infinitive": "limp", - "present": "limps", - "gerund": "limping", - "past": "limped", - "past_participle": "limped" - }, - { - "infinitive": "uprear", - "present": "uprears", - "gerund": "uprearing", - "past": "upreared", - "past_participle": "upreared" - }, - { - "infinitive": "egress", - "present": "egresses", - "gerund": "egressing", - "past": "egressed", - "past_participle": "egressed" - }, - { - "infinitive": "methought", - "present": "methoughts", - "gerund": "methoughting", - "past": "methoughted", - "past_participle": "methoughted" - }, - { - "infinitive": "limb", - "present": "limbs", - "gerund": "limbing", - "past": "limbed", - "past_participle": "limbed" - }, - { - "infinitive": "scandal", - "present": "scandals", - "gerund": "scandaling", - "past": "scandaled", - "past_participle": "scandaled" - }, - { - "infinitive": "staple", - "present": "staples", - "gerund": "stapling", - "past": "stapled", - "past_participle": "stapled" - }, - { - "infinitive": "lime", - "present": "limes", - "gerund": "liming", - "past": "limed", - "past_participle": "limed" - }, - { - "infinitive": "superordinate", - "present": "superordinates", - "gerund": "superordinating", - "past": "superordinated", - "past_participle": "superordinated" - }, - { - "infinitive": "emblemize", - "present": "emblemizes", - "gerund": "emblemizing", - "past": "emblemized", - "past_participle": "emblemized" - }, - { - "infinitive": "appliqu_e", - "present": "appliqu_es", - "gerund": "appliqu_eing", - "past": "appliqu_eed", - "past_participle": "appliqu_eed" - }, - { - "infinitive": "aviate", - "present": "aviates", - "gerund": "aviating", - "past": "aviated", - "past_participle": "aviated" - }, - { - "infinitive": "overbear", - "present": "overbears", - "gerund": "overbearing", - "past": "overbore", - "past_participle": "overborne" - }, - { - "infinitive": "charcoal", - "present": "charcoals", - "gerund": "charcoaling", - "past": "charcoaled", - "past_participle": "charcoaled" - }, - { - "infinitive": "engender", - "present": "engenders", - "gerund": "engendering", - "past": "engendered", - "past_participle": "engendered" - }, - { - "infinitive": "billet", - "present": "billets", - "gerund": "billeting", - "past": "billeted", - "past_participle": "billeted" - }, - { - "infinitive": "thatch", - "present": "thatchs", - "gerund": "thatching", - "past": "thatched", - "past_participle": "thatched" - }, - { - "infinitive": "trail", - "present": "trails", - "gerund": "trailing", - "past": "trailed", - "past_participle": "trailed" - }, - { - "infinitive": "train", - "present": "trains", - "gerund": "training", - "past": "trained", - "past_participle": "trained" - }, - { - "infinitive": "coruscate", - "present": "coruscates", - "gerund": "coruscating", - "past": "coruscated", - "past_participle": "coruscated" - }, - { - "infinitive": "enslave", - "present": "enslaves", - "gerund": "enslaving", - "past": "enslaved", - "past_participle": "enslaved" - }, - { - "infinitive": "supererogate", - "present": "supererogates", - "gerund": "supererogating", - "past": "supererogated", - "past_participle": "supererogated" - }, - { - "infinitive": "harvest", - "present": "harvests", - "gerund": "harvesting", - "past": "harvested", - "past_participle": "harvested" - }, - { - "infinitive": "renovate", - "present": "renovates", - "gerund": "renovating", - "past": "renovated", - "past_participle": "renovated" - }, - { - "infinitive": "account", - "present": "accounts", - "gerund": "accounting", - "past": "accounted", - "past_participle": "accounted" - }, - { - "infinitive": "tunnel", - "present": "tunnels", - "gerund": "tunnelling", - "past": "tunnelled", - "past_participle": "tunnelled" - }, - { - "infinitive": "sibilate", - "present": "sibilates", - "gerund": "sibilating", - "past": "sibilated", - "past_participle": "sibilated" - }, - { - "infinitive": "praise", - "present": "praises", - "gerund": "praising", - "past": "praised", - "past_participle": "praised" - }, - { - "infinitive": "smear", - "present": "smears", - "gerund": "smearing", - "past": "smeared", - "past_participle": "smeared" - }, - { - "infinitive": "alit", - "present": "", - "gerund": "", - "past": "alit", - "past_participle": "alit" - }, - { - "infinitive": "institute", - "present": "institutes", - "gerund": "instituting", - "past": "instituted", - "past_participle": "instituted" - }, - { - "infinitive": "interlope", - "present": "interlopes", - "gerund": "interloping", - "past": "interloped", - "past_participle": "interloped" - }, - { - "infinitive": "antedate", - "present": "antedates", - "gerund": "antedating", - "past": "antedated", - "past_participle": "antedated" - }, - { - "infinitive": "lamb", - "present": "lambs", - "gerund": "lambing", - "past": "lambed", - "past_participle": "lambed" - }, - { - "infinitive": "rumble", - "present": "rumbles", - "gerund": "rumbling", - "past": "rumbled", - "past_participle": "rumbled" - }, - { - "infinitive": "lame", - "present": "lames", - "gerund": "laming", - "past": "lamed", - "past_participle": "lamed" - }, - { - "infinitive": "inwrap", - "present": "inwraps", - "gerund": "inwrapping", - "past": "inwrapped", - "past_participle": "inwrapped" - }, - { - "infinitive": "thrall", - "present": "thralls", - "gerund": "thralling", - "past": "thralled", - "past_participle": "thralled" - }, - { - "infinitive": "fete", - "present": "fetes", - "gerund": "feting", - "past": "feted", - "past_participle": "feted" - }, - { - "infinitive": "anglicize", - "present": "anglicizes", - "gerund": "anglicizing", - "past": "anglicized", - "past_participle": "anglicized" - }, - { - "infinitive": "forest", - "present": "forests", - "gerund": "foresting", - "past": "forested", - "past_participle": "forested" - }, - { - "infinitive": "reexport", - "present": "reexports", - "gerund": "reexporting", - "past": "reexported", - "past_participle": "reexported" - }, - { - "infinitive": "occlude", - "present": "occludes", - "gerund": "occluding", - "past": "occluded", - "past_participle": "occluded" - }, - { - "infinitive": "stock", - "present": "stocks", - "gerund": "stocking", - "past": "stocked", - "past_participle": "stocked" - }, - { - "infinitive": "frag", - "present": "frags", - "gerund": "fragging", - "past": "fragged", - "past_participle": "fragged" - }, - { - "infinitive": "spin-dry", - "present": "spin-dries", - "gerund": "spin-drying", - "past": "spin-dried", - "past_participle": "spin-dried" - }, - { - "infinitive": "nullify", - "present": "nullifies", - "gerund": "nullifying", - "past": "nullified", - "past_participle": "nullified" - }, - { - "infinitive": "bemire", - "present": "bemires", - "gerund": "bemiring", - "past": "bemired", - "past_participle": "bemired" - }, - { - "infinitive": "bluff", - "present": "bluffs", - "gerund": "bluffing", - "past": "bluffed", - "past_participle": "bluffed" - }, - { - "infinitive": "frap", - "present": "fraps", - "gerund": "frapping", - "past": "frapped", - "past_participle": "frapped" - }, - { - "infinitive": "physic", - "present": "physics", - "gerund": "physicking", - "past": "physicked", - "past_participle": "physicked" - }, - { - "infinitive": "succuss", - "present": "succusses", - "gerund": "succussing", - "past": "succussed", - "past_participle": "succussed" - }, - { - "infinitive": "drape", - "present": "drapes", - "gerund": "draping", - "past": "draped", - "past_participle": "draped" - }, - { - "infinitive": "memorize", - "present": "memorizes", - "gerund": "memorizing", - "past": "memorized", - "past_participle": "memorized" - }, - { - "infinitive": "bound", - "present": "binds", - "gerund": "binding", - "past": "bound", - "past_participle": "bound" - }, - { - "infinitive": "correspond", - "present": "corresponds", - "gerund": "corresponding", - "past": "corresponded", - "past_participle": "corresponded" - }, - { - "infinitive": "testdrive", - "present": "testdrives", - "gerund": "testdriving", - "past": "testdrove", - "past_participle": "testdriven" - }, - { - "infinitive": "stevedore", - "present": "stevedores", - "gerund": "stevedoring", - "past": "stevedored", - "past_participle": "stevedored" - }, - { - "infinitive": "dispraise", - "present": "dispraises", - "gerund": "dispraising", - "past": "dispraised", - "past_participle": "dispraised" - }, - { - "infinitive": "furnish", - "present": "furnishes", - "gerund": "furnishing", - "past": "furnished", - "past_participle": "furnished" - }, - { - "infinitive": "ignite", - "present": "ignites", - "gerund": "igniting", - "past": "ignited", - "past_participle": "ignited" - }, - { - "infinitive": "scroop", - "present": "scroops", - "gerund": "scrooping", - "past": "scrooped", - "past_participle": "scrooped" - }, - { - "infinitive": "disarm", - "present": "disarms", - "gerund": "disarming", - "past": "disarmed", - "past_participle": "disarmed" - }, - { - "infinitive": "meter", - "present": "meters", - "gerund": "metering", - "past": "metered", - "past_participle": "metered" - }, - { - "infinitive": "epigrammatize", - "present": "epigrammatizes", - "gerund": "epigrammatizing", - "past": "epigrammatized", - "past_participle": "epigrammatized" - }, - { - "infinitive": "bunko", - "present": "bunkos", - "gerund": "bunkoing", - "past": "bunkoed", - "past_participle": "bunkoed" - }, - { - "infinitive": "accrete", - "present": "accretes", - "gerund": "accreting", - "past": "accreted", - "past_participle": "accreted" - }, - { - "infinitive": "envisage", - "present": "envisages", - "gerund": "envisaging", - "past": "envisaged", - "past_participle": "envisaged" - }, - { - "infinitive": "bunch", - "present": "bunches", - "gerund": "bunching", - "past": "bunched", - "past_participle": "bunched" - }, - { - "infinitive": "cudgel", - "present": "cudgels", - "gerund": "cudgelling", - "past": "cudgelled", - "past_participle": "cudgelled" - }, - { - "infinitive": "bird's-nest", - "present": "bird's-nests", - "gerund": "bird's-nesting", - "past": "bird's-nested", - "past_participle": "bird's-nested" - }, - { - "infinitive": "labour", - "present": "labours", - "gerund": "labouring", - "past": "laboured", - "past_participle": "laboured" - }, - { - "infinitive": "age", - "present": "ages", - "gerund": "aging", - "past": "aged", - "past_participle": "aged" - }, - { - "infinitive": "privatize", - "present": "privatizes", - "gerund": "privatizing", - "past": "privatized", - "past_participle": "privatized" - }, - { - "infinitive": "sufflate", - "present": "sufflates", - "gerund": "sufflating", - "past": "sufflated", - "past_participle": "sufflated" - }, - { - "infinitive": "solfa", - "present": "solfas", - "gerund": "solfaing", - "past": "solfaed", - "past_participle": "solfaed" - }, - { - "infinitive": "outbid", - "present": "outbids", - "gerund": "outbidding", - "past": "outbid", - "past_participle": "outbidden" - }, - { - "infinitive": "dab", - "present": "dabs", - "gerund": "dabbing", - "past": "dabbed", - "past_participle": "dabbed" - }, - { - "infinitive": "dam", - "present": "dams", - "gerund": "damming", - "past": "dammed", - "past_participle": "dammed" - }, - { - "infinitive": "spell", - "present": "spells", - "gerund": "spelling", - "past": "spelt", - "past_participle": "spelt" - }, - { - "infinitive": "muddle", - "present": "muddles", - "gerund": "muddling", - "past": "muddled", - "past_participle": "muddled" - }, - { - "infinitive": "denigrate", - "present": "denigrates", - "gerund": "denigrating", - "past": "denigrated", - "past_participle": "denigrated" - }, - { - "infinitive": "mention", - "present": "mentions", - "gerund": "mentioning", - "past": "mentioned", - "past_participle": "mentioned" - }, - { - "infinitive": "dap", - "present": "daps", - "gerund": "dapping", - "past": "dapped", - "past_participle": "dapped" - }, - { - "infinitive": "mandate", - "present": "mandates", - "gerund": "mandating", - "past": "mandated", - "past_participle": "mandated" - }, - { - "infinitive": "greaten", - "present": "greatens", - "gerund": "greatening", - "past": "greatened", - "past_participle": "greatened" - }, - { - "infinitive": "outgas", - "present": "outgasses", - "gerund": "outgassing", - "past": "outgassed", - "past_participle": "outgassed" - }, - { - "infinitive": "strive", - "present": "strives", - "gerund": "striving", - "past": "strove", - "past_participle": "striven" - }, - { - "infinitive": "flail", - "present": "flails", - "gerund": "flailing", - "past": "flailed", - "past_participle": "flailed" - }, - { - "infinitive": "fictionalize", - "present": "fictionalizes", - "gerund": "fictionalizing", - "past": "fictionalized", - "past_participle": "fictionalized" - }, - { - "infinitive": "thrill", - "present": "thrills", - "gerund": "thrilling", - "past": "thrilled", - "past_participle": "thrilled" - }, - { - "infinitive": "slacken", - "present": "slackens", - "gerund": "slackening", - "past": "slackened", - "past_participle": "slackened" - }, - { - "infinitive": "preclude", - "present": "precludes", - "gerund": "precluding", - "past": "precluded", - "past_participle": "precluded" - }, - { - "infinitive": "disregard", - "present": "disregards", - "gerund": "disregarding", - "past": "disregarded", - "past_participle": "disregarded" - }, - { - "infinitive": "crosspollinate", - "present": "crosspollinates", - "gerund": "crosspollinating", - "past": "crosspollinated", - "past_participle": "crosspollinated" - }, - { - "infinitive": "skate", - "present": "skates", - "gerund": "skating", - "past": "skated", - "past_participle": "skated" - }, - { - "infinitive": "fare", - "present": "fares", - "gerund": "faring", - "past": "fared", - "past_participle": "fared" - }, - { - "infinitive": "activate", - "present": "activates", - "gerund": "activating", - "past": "activated", - "past_participle": "activated" - }, - { - "infinitive": "thwart", - "present": "thwarts", - "gerund": "thwarting", - "past": "thwarted", - "past_participle": "thwarted" - }, - { - "infinitive": "tallage", - "present": "tallages", - "gerund": "tallaging", - "past": "tallaged", - "past_participle": "tallaged" - }, - { - "infinitive": "calibrate", - "present": "calibrates", - "gerund": "calibrating", - "past": "calibrated", - "past_participle": "calibrated" - }, - { - "infinitive": "wade", - "present": "wades", - "gerund": "wading", - "past": "waded", - "past_participle": "waded" - }, - { - "infinitive": "fondle", - "present": "fondles", - "gerund": "fondling", - "past": "fondled", - "past_participle": "fondled" - }, - { - "infinitive": "defend", - "present": "defends", - "gerund": "defending", - "past": "defended", - "past_participle": "defended" - }, - { - "infinitive": "understudy", - "present": "understudies", - "gerund": "understudying", - "past": "understudied", - "past_participle": "understudied" - }, - { - "infinitive": "highhat", - "present": "highhats", - "gerund": "highhatting", - "past": "highhatted", - "past_participle": "highhatted" - }, - { - "infinitive": "ret", - "present": "rets", - "gerund": "retting", - "past": "retted", - "past_participle": "retted" - }, - { - "infinitive": "repress", - "present": "represses", - "gerund": "repressing", - "past": "repressed", - "past_participle": "repressed" - }, - { - "infinitive": "stub", - "present": "stubs", - "gerund": "stubbing", - "past": "stubbed", - "past_participle": "stubbed" - }, - { - "infinitive": "mate", - "present": "mates", - "gerund": "mating", - "past": "mated", - "past_participle": "mated" - }, - { - "infinitive": "stud", - "present": "studs", - "gerund": "studding", - "past": "studded", - "past_participle": "studded" - }, - { - "infinitive": "lecture", - "present": "lectures", - "gerund": "lecturing", - "past": "lectured", - "past_participle": "lectured" - }, - { - "infinitive": "postpone", - "present": "postpones", - "gerund": "postponing", - "past": "postponed", - "past_participle": "postponed" - }, - { - "infinitive": "stun", - "present": "stuns", - "gerund": "stunning", - "past": "stunned", - "past_participle": "stunned" - }, - { - "infinitive": "red", - "present": "reds", - "gerund": "redding", - "past": "redded", - "past_participle": "redded" - }, - { - "infinitive": "stum", - "present": "stums", - "gerund": "stumming", - "past": "stummed", - "past_participle": "stummed" - }, - { - "infinitive": "frank", - "present": "franks", - "gerund": "franking", - "past": "franked", - "past_participle": "franked" - }, - { - "infinitive": "hanker", - "present": "hankers", - "gerund": "hankering", - "past": "hankered", - "past_participle": "hankered" - }, - { - "infinitive": "clarify", - "present": "clarifies", - "gerund": "clarifying", - "past": "clarified", - "past_participle": "clarified" - }, - { - "infinitive": "upbraid", - "present": "upbraids", - "gerund": "upbraiding", - "past": "upbraided", - "past_participle": "upbraided" - }, - { - "infinitive": "hazard", - "present": "hazards", - "gerund": "hazarding", - "past": "hazarded", - "past_participle": "hazarded" - }, - { - "infinitive": "bleed", - "present": "bleeds", - "gerund": "bleeding", - "past": "bled", - "past_participle": "bled" - }, - { - "infinitive": "indent", - "present": "indents", - "gerund": "indenting", - "past": "indented", - "past_participle": "indented" - }, - { - "infinitive": "peeve", - "present": "peeves", - "gerund": "peeving", - "past": "peeved", - "past_participle": "peeved" - }, - { - "infinitive": "mortar", - "present": "mortars", - "gerund": "mortaring", - "past": "mortared", - "past_participle": "mortared" - }, - { - "infinitive": "yarn", - "present": "yarns", - "gerund": "yarning", - "past": "yarned", - "past_participle": "yarned" - }, - { - "infinitive": "steam", - "present": "steams", - "gerund": "steaming", - "past": "steamed", - "past_participle": "steamed" - }, - { - "infinitive": "farrow", - "present": "farrows", - "gerund": "farrowing", - "past": "farrowed", - "past_participle": "farrowed" - }, - { - "infinitive": "curette", - "present": "curettes", - "gerund": "curetting", - "past": "curetted", - "past_participle": "curetted" - }, - { - "infinitive": "retain", - "present": "retains", - "gerund": "retaining", - "past": "retained", - "past_participle": "retained" - }, - { - "infinitive": "retail", - "present": "retails", - "gerund": "retailing", - "past": "retailed", - "past_participle": "retailed" - }, - { - "infinitive": "facilitate", - "present": "facilitates", - "gerund": "facilitating", - "past": "facilitated", - "past_participle": "facilitated" - }, - { - "infinitive": "predominate", - "present": "predominates", - "gerund": "predominating", - "past": "predominated", - "past_participle": "predominated" - }, - { - "infinitive": "suffix", - "present": "suffixes", - "gerund": "suffixing", - "past": "suffixed", - "past_participle": "suffixed" - }, - { - "infinitive": "overshoot", - "present": "overshoots", - "gerund": "overshooting", - "past": "overshot", - "past_participle": "overshot" - }, - { - "infinitive": "sack", - "present": "sacks", - "gerund": "sacking", - "past": "sacked", - "past_participle": "sacked" - }, - { - "infinitive": "whoop", - "present": "whoops", - "gerund": "whooping", - "past": "whooped", - "past_participle": "whooped" - }, - { - "infinitive": "betroth", - "present": "betroths", - "gerund": "betrothing", - "past": "betrothed", - "past_participle": "betrothed" - }, - { - "infinitive": "hurdle", - "present": "hurdles", - "gerund": "hurdling", - "past": "hurdled", - "past_participle": "hurdled" - }, - { - "infinitive": "instill", - "present": "instils", - "gerund": "instilling", - "past": "instilled", - "past_participle": "instilled" - }, - { - "infinitive": "frazzle", - "present": "frazzles", - "gerund": "frazzling", - "past": "frazzled", - "past_participle": "frazzled" - }, - { - "infinitive": "stencil", - "present": "stencils", - "gerund": "stencilling", - "past": "stencilled", - "past_participle": "stencilled" - }, - { - "infinitive": "tootle", - "present": "tootles", - "gerund": "tootling", - "past": "tootled", - "past_participle": "tootled" - }, - { - "infinitive": "regurgitate", - "present": "regurgitates", - "gerund": "regurgitating", - "past": "regurgitated", - "past_participle": "regurgitated" - }, - { - "infinitive": "jingle", - "present": "jingles", - "gerund": "jingling", - "past": "jingled", - "past_participle": "jingled" - }, - { - "infinitive": "nut", - "present": "nuts", - "gerund": "nutting", - "past": "nutted", - "past_participle": "nutted" - }, - { - "infinitive": "dissever", - "present": "dissevers", - "gerund": "dissevering", - "past": "dissevered", - "past_participle": "dissevered" - }, - { - "infinitive": "flume", - "present": "flumes", - "gerund": "fluming", - "past": "flumed", - "past_participle": "flumed" - }, - { - "infinitive": "gear", - "present": "gears", - "gerund": "gearing", - "past": "geared", - "past_participle": "geared" - }, - { - "infinitive": "eavesdrop", - "present": "eavesdrops", - "gerund": "eavesdropping", - "past": "eavesdropped", - "past_participle": "eavesdropped" - }, - { - "infinitive": "retrench", - "present": "retrenches", - "gerund": "retrenching", - "past": "retrenched", - "past_participle": "retrenched" - }, - { - "infinitive": "acquire", - "present": "acquires", - "gerund": "acquiring", - "past": "acquired", - "past_participle": "acquired" - }, - { - "infinitive": "unmake", - "present": "unmakes", - "gerund": "unmaking", - "past": "unmade", - "past_participle": "unmade" - }, - { - "infinitive": "dry-salt", - "present": "dry-salts", - "gerund": "dry-salting", - "past": "dry-salted", - "past_participle": "dry-salted" - }, - { - "infinitive": "hem", - "present": "hems", - "gerund": "hemming", - "past": "hummed", - "past_participle": "hemmed" - }, - { - "infinitive": "reaffirm", - "present": "reaffirms", - "gerund": "reaffirming", - "past": "reaffirmed", - "past_participle": "reaffirmed" - }, - { - "infinitive": "outcross", - "present": "outcrosses", - "gerund": "outcrossing", - "past": "outcrossed", - "past_participle": "outcrossed" - }, - { - "infinitive": "over-estimate", - "present": "over-estimates", - "gerund": "over-estimating", - "past": "overestimated", - "past_participle": "over-estimated" - }, - { - "infinitive": "systemize", - "present": "systemizes", - "gerund": "systemizing", - "past": "systemized", - "past_participle": "systemized" - }, - { - "infinitive": "prune", - "present": "prunes", - "gerund": "pruning", - "past": "pruned", - "past_participle": "pruned" - }, - { - "infinitive": "shampoo", - "present": "shampoos", - "gerund": "shampooing", - "past": "shampooed", - "past_participle": "shampooed" - }, - { - "infinitive": "ferule", - "present": "ferules", - "gerund": "feruling", - "past": "feruled", - "past_participle": "feruled" - }, - { - "infinitive": "impale", - "present": "impales", - "gerund": "impaling", - "past": "impaled", - "past_participle": "impaled" - }, - { - "infinitive": "gambol", - "present": "gambols", - "gerund": "gambolling", - "past": "gambolled", - "past_participle": "gambolled" - }, - { - "infinitive": "electrotype", - "present": "electrotypes", - "gerund": "electrotyping", - "past": "electrotyped", - "past_participle": "electrotyped" - }, - { - "infinitive": "neutralize", - "present": "neutralizes", - "gerund": "neutralizing", - "past": "neutralized", - "past_participle": "neutralized" - }, - { - "infinitive": "deration", - "present": "derations", - "gerund": "derationing", - "past": "derationed", - "past_participle": "derationed" - }, - { - "infinitive": "curvet", - "present": "curvets", - "gerund": "curvetting", - "past": "curvetted", - "past_participle": "curvetted" - }, - { - "infinitive": "tidy", - "present": "tidies", - "gerund": "tidying", - "past": "tidied", - "past_participle": "tidied" - }, - { - "infinitive": "forspeak", - "present": "forspeaks", - "gerund": "forspeaking", - "past": "forspoke", - "past_participle": "forspoken" - }, - { - "infinitive": "tide", - "present": "tides", - "gerund": "tiding", - "past": "tided", - "past_participle": "tided" - }, - { - "infinitive": "enucleate", - "present": "enucleates", - "gerund": "enucleating", - "past": "enucleated", - "past_participle": "enucleated" - }, - { - "infinitive": "cavern", - "present": "caverns", - "gerund": "caverning", - "past": "caverned", - "past_participle": "caverned" - }, - { - "infinitive": "have", - "present": "has", - "gerund": "having", - "past": "had", - "past_participle": "had" - }, - { - "infinitive": "dictate", - "present": "dictates", - "gerund": "dictating", - "past": "dictated", - "past_participle": "dictated" - }, - { - "infinitive": "waken", - "present": "wakens", - "gerund": "wakening", - "past": "wakened", - "past_participle": "wakened" - }, - { - "infinitive": "euchre", - "present": "euchres", - "gerund": "euchring", - "past": "euchred", - "past_participle": "euchred" - }, - { - "infinitive": "mix", - "present": "mixes", - "gerund": "mixing", - "past": "mixed", - "past_participle": "mixed" - }, - { - "infinitive": "whistlestop", - "present": "whistlestops", - "gerund": "whistlestoping", - "past": "whistlestoped", - "past_participle": "whistlestoped" - }, - { - "infinitive": "neaten", - "present": "neatens", - "gerund": "neatening", - "past": "neatened", - "past_participle": "neatened" - }, - { - "infinitive": "rubberstamp", - "present": "rubberstamps", - "gerund": "rubberstamping", - "past": "rubberstamped", - "past_participle": "rubberstamped" - }, - { - "infinitive": "swot", - "present": "swots", - "gerund": "swotting", - "past": "swotted", - "past_participle": "swotted" - }, - { - "infinitive": "fructify", - "present": "fructifies", - "gerund": "fructifying", - "past": "fructified", - "past_participle": "fructified" - }, - { - "infinitive": "innervate", - "present": "innervates", - "gerund": "innervating", - "past": "innervated", - "past_participle": "innervated" - }, - { - "infinitive": "featherbed", - "present": "featherbeds", - "gerund": "featherbedding", - "past": "featherbedded", - "past_participle": "featherbedded" - }, - { - "infinitive": "procure", - "present": "procures", - "gerund": "procuring", - "past": "procured", - "past_participle": "procured" - }, - { - "infinitive": "rearrange", - "present": "rearranges", - "gerund": "rearranging", - "past": "rearranged", - "past_participle": "rearranged" - }, - { - "infinitive": "propagate", - "present": "propagates", - "gerund": "propagating", - "past": "propagated", - "past_participle": "propagated" - }, - { - "infinitive": "clamber", - "present": "clambers", - "gerund": "clambering", - "past": "clambered", - "past_participle": "clambered" - }, - { - "infinitive": "hoodwink", - "present": "hoodwinks", - "gerund": "hoodwinking", - "past": "hoodwinked", - "past_participle": "hoodwinked" - }, - { - "infinitive": "sally", - "present": "sallies", - "gerund": "sallying", - "past": "sallied", - "past_participle": "sallied" - }, - { - "infinitive": "snuffle", - "present": "snuffles", - "gerund": "snuffling", - "past": "snuffled", - "past_participle": "snuffled" - }, - { - "infinitive": "gather", - "present": "gathers", - "gerund": "gathering", - "past": "gathered", - "past_participle": "gathered" - }, - { - "infinitive": "request", - "present": "requests", - "gerund": "requesting", - "past": "requested", - "past_participle": "requested" - }, - { - "infinitive": "rendezvous", - "present": "rendezvouses", - "gerund": "rendezvousing", - "past": "rendezvoused", - "past_participle": "rendezvoused" - }, - { - "infinitive": "occasion", - "present": "occasions", - "gerund": "occasioning", - "past": "occasioned", - "past_participle": "occasioned" - }, - { - "infinitive": "outlive", - "present": "outlives", - "gerund": "outliving", - "past": "outlived", - "past_participle": "outlived" - }, - { - "infinitive": "squilgee", - "present": "squilgees", - "gerund": "squilgeeing", - "past": "squilgeed", - "past_participle": "squilgeed" - }, - { - "infinitive": "thicken", - "present": "thickens", - "gerund": "thickening", - "past": "thickened", - "past_participle": "thickened" - }, - { - "infinitive": "recess", - "present": "recesses", - "gerund": "recessing", - "past": "recessed", - "past_participle": "recessed" - }, - { - "infinitive": "kite", - "present": "kites", - "gerund": "kiting", - "past": "kited", - "past_participle": "kited" - }, - { - "infinitive": "incapacitate", - "present": "incapacitates", - "gerund": "incapacitating", - "past": "incapacitated", - "past_participle": "incapacitated" - }, - { - "infinitive": "rebuke", - "present": "rebukes", - "gerund": "rebuking", - "past": "rebuked", - "past_participle": "rebuked" - }, - { - "infinitive": "sidetrack", - "present": "sidetracks", - "gerund": "sidetracking", - "past": "sidetracked", - "past_participle": "sidetracked" - }, - { - "infinitive": "floodlight", - "present": "floodlights", - "gerund": "floodlighting", - "past": "floodlit", - "past_participle": "floodlit" - }, - { - "infinitive": "staff", - "present": "staffs", - "gerund": "staffing", - "past": "staffed", - "past_participle": "staffed" - }, - { - "infinitive": "stonk", - "present": "stonks", - "gerund": "stonking", - "past": "stonked", - "past_participle": "stonked" - }, - { - "infinitive": "obsecrate", - "present": "obsecrates", - "gerund": "obsecrating", - "past": "obsecrated", - "past_participle": "obsecrated" - }, - { - "infinitive": "mug", - "present": "mugs", - "gerund": "mugging", - "past": "mugged", - "past_participle": "mugged" - }, - { - "infinitive": "ossify", - "present": "ossifies", - "gerund": "ossifying", - "past": "ossified", - "past_participle": "ossified" - }, - { - "infinitive": "prolong", - "present": "prolongs", - "gerund": "prolonging", - "past": "prolonged", - "past_participle": "prolonged" - }, - { - "infinitive": "resubmit", - "present": "resubmits", - "gerund": "resubmiting", - "past": "resubmited", - "past_participle": "resubmited" - }, - { - "infinitive": "vacillate", - "present": "vacillates", - "gerund": "vacillating", - "past": "vacillated", - "past_participle": "vacillated" - }, - { - "infinitive": "outstand", - "present": "outstands", - "gerund": "outstanding", - "past": "outstood", - "past_participle": "outstood" - }, - { - "infinitive": "outwear", - "present": "outwears", - "gerund": "outwearing", - "past": "outwore", - "past_participle": "outworn" - }, - { - "infinitive": "woosh", - "present": "wooshes", - "gerund": "wooshing", - "past": "wooshed", - "past_participle": "wooshed" - }, - { - "infinitive": "spiflicate", - "present": "spiflicates", - "gerund": "spiflicating", - "past": "spiflicated", - "past_participle": "spiflicated" - }, - { - "infinitive": "starch", - "present": "starches", - "gerund": "starching", - "past": "starched", - "past_participle": "starched" - }, - { - "infinitive": "beat", - "present": "beats", - "gerund": "beating", - "past": "beat", - "past_participle": "beaten" - }, - { - "infinitive": "pave", - "present": "paves", - "gerund": "paving", - "past": "paved", - "past_participle": "paved" - }, - { - "infinitive": "accrue", - "present": "accrues", - "gerund": "accruing", - "past": "accrued", - "past_participle": "accrued" - }, - { - "infinitive": "beam", - "present": "beams", - "gerund": "beaming", - "past": "beamed", - "past_participle": "beamed" - }, - { - "infinitive": "mislay", - "present": "mislays", - "gerund": "mislaying", - "past": "mislaid", - "past_participle": "mislaid" - }, - { - "infinitive": "bead", - "present": "beads", - "gerund": "beading", - "past": "beaded", - "past_participle": "beaded" - }, - { - "infinitive": "unhelm", - "present": "unhelms", - "gerund": "unhelming", - "past": "unhelmed", - "past_participle": "unhelmed" - }, - { - "infinitive": "albumenize", - "present": "albumenizes", - "gerund": "albumenizing", - "past": "albumenized", - "past_participle": "albumenized" - }, - { - "infinitive": "misappropriate", - "present": "misappropriates", - "gerund": "misappropriating", - "past": "misappropriated", - "past_participle": "misappropriated" - }, - { - "infinitive": "benumb", - "present": "benumbs", - "gerund": "benumbing", - "past": "benumbed", - "past_participle": "benumbed" - }, - { - "infinitive": "reluct", - "present": "relucts", - "gerund": "relucting", - "past": "relucted", - "past_participle": "relucted" - }, - { - "infinitive": "irrupt", - "present": "irrupts", - "gerund": "irrupting", - "past": "irrupted", - "past_participle": "irrupted" - }, - { - "infinitive": "spreadeagle", - "present": "spreadeagles", - "gerund": "spreadeagling", - "past": "spreadeagled", - "past_participle": "spreadeagled" - }, - { - "infinitive": "colorcode", - "present": "colorcodes", - "gerund": "colorcoding", - "past": "colorcoded", - "past_participle": "colorcoded" - }, - { - "infinitive": "hypostasize", - "present": "hypostasizes", - "gerund": "hypostasizing", - "past": "hypostasized", - "past_participle": "hypostasized" - }, - { - "infinitive": "defame", - "present": "defames", - "gerund": "defaming", - "past": "defamed", - "past_participle": "defamed" - }, - { - "infinitive": "entomologize", - "present": "entomologizes", - "gerund": "entomologizing", - "past": "entomologized", - "past_participle": "entomologized" - }, - { - "infinitive": "conform", - "present": "conforms", - "gerund": "conforming", - "past": "conformed", - "past_participle": "conformed" - }, - { - "infinitive": "puddle", - "present": "puddles", - "gerund": "puddling", - "past": "puddled", - "past_participle": "puddled" - }, - { - "infinitive": "blackball", - "present": "blackballs", - "gerund": "blackballing", - "past": "blackballed", - "past_participle": "blackballed" - }, - { - "infinitive": "accord", - "present": "accords", - "gerund": "according", - "past": "accorded", - "past_participle": "accorded" - }, - { - "infinitive": "dislodge", - "present": "dislodges", - "gerund": "dislodging", - "past": "dislodged", - "past_participle": "dislodged" - }, - { - "infinitive": "racquet", - "present": "racquets", - "gerund": "racqueting", - "past": "racqueted", - "past_participle": "racqueted" - }, - { - "infinitive": "extradite", - "present": "extradites", - "gerund": "extraditing", - "past": "extradited", - "past_participle": "extradited" - }, - { - "infinitive": "rodomontade", - "present": "rodomontades", - "gerund": "rodomontading", - "past": "rodomontaded", - "past_participle": "rodomontaded" - }, - { - "infinitive": "progress", - "present": "progresses", - "gerund": "progressing", - "past": "progressed", - "past_participle": "progressed" - }, - { - "infinitive": "bramble", - "present": "brambles", - "gerund": "brambling", - "past": "brambled", - "past_participle": "brambled" - }, - { - "infinitive": "admeasure", - "present": "admeasures", - "gerund": "admeasuring", - "past": "admeasured", - "past_participle": "admeasured" - }, - { - "infinitive": "saut_e", - "present": "saut_es", - "gerund": "saut_eing", - "past": "saut_eed", - "past_participle": "saut_eed" - }, - { - "infinitive": "gyve", - "present": "gyves", - "gerund": "gyving", - "past": "gyved", - "past_participle": "gyved" - }, - { - "infinitive": "sorrow", - "present": "sorrows", - "gerund": "sorrowing", - "past": "sorrowed", - "past_participle": "sorrowed" - }, - { - "infinitive": "grumble", - "present": "grumbles", - "gerund": "grumbling", - "past": "grumbled", - "past_participle": "grumbled" - }, - { - "infinitive": "deliver", - "present": "delivers", - "gerund": "delivering", - "past": "delivered", - "past_participle": "delivered" - }, - { - "infinitive": "gimlet", - "present": "gimlets", - "gerund": "gimleting", - "past": "gimleted", - "past_participle": "gimleted" - }, - { - "infinitive": "roughhouse", - "present": "roughhouses", - "gerund": "roughhousing", - "past": "roughhoused", - "past_participle": "roughhoused" - }, - { - "infinitive": "Italianize", - "present": "Italianizes", - "gerund": "Italianizing", - "past": "Italianized", - "past_participle": "Italianized" - }, - { - "infinitive": "anodize", - "present": "anodizes", - "gerund": "anodizing", - "past": "anodized", - "past_participle": "anodized" - }, - { - "infinitive": "trump", - "present": "trumps", - "gerund": "trumping", - "past": "trumped", - "past_participle": "trumped" - }, - { - "infinitive": "joke", - "present": "jokes", - "gerund": "joking", - "past": "joked", - "past_participle": "joked" - }, - { - "infinitive": "alcoholize", - "present": "alcoholizes", - "gerund": "alcoholizing", - "past": "alcoholized", - "past_participle": "alcoholized" - }, - { - "infinitive": "equal", - "present": "equals", - "gerund": "equaling", - "past": "equaled", - "past_participle": "equaled" - }, - { - "infinitive": "pulp", - "present": "pulps", - "gerund": "pulping", - "past": "pulped", - "past_participle": "pulped" - }, - { - "infinitive": "assure", - "present": "assures", - "gerund": "assuring", - "past": "assured", - "past_participle": "assured" - }, - { - "infinitive": "predispose", - "present": "predisposes", - "gerund": "predisposing", - "past": "predisposed", - "past_participle": "predisposed" - }, - { - "infinitive": "re-form", - "present": "re-forms", - "gerund": "re-forming", - "past": "reformed", - "past_participle": "re-formed" - }, - { - "infinitive": "overstaff", - "present": "overstaffs", - "gerund": "overstaffing", - "past": "overstaffed", - "past_participle": "overstaffed" - }, - { - "infinitive": "swallow", - "present": "swallows", - "gerund": "swallowing", - "past": "swallowed", - "past_participle": "swallowed" - }, - { - "infinitive": "comment", - "present": "comments", - "gerund": "commenting", - "past": "commented", - "past_participle": "commented" - }, - { - "infinitive": "fester", - "present": "festers", - "gerund": "festering", - "past": "festered", - "past_participle": "festered" - }, - { - "infinitive": "commend", - "present": "commends", - "gerund": "commending", - "past": "commended", - "past_participle": "commended" - }, - { - "infinitive": "vend", - "present": "vends", - "gerund": "vending", - "past": "vended", - "past_participle": "vended" - }, - { - "infinitive": "devoice", - "present": "devoices", - "gerund": "devoicing", - "past": "devoiced", - "past_participle": "devoiced" - }, - { - "infinitive": "recompense", - "present": "recompenses", - "gerund": "recompensing", - "past": "recompensed", - "past_participle": "recompensed" - }, - { - "infinitive": "harpoon", - "present": "harpoons", - "gerund": "harpooning", - "past": "harpooned", - "past_participle": "harpooned" - }, - { - "infinitive": "electrify", - "present": "electrifies", - "gerund": "electrifying", - "past": "electrified", - "past_participle": "electrified" - }, - { - "infinitive": "actualize", - "present": "actualizes", - "gerund": "actualizing", - "past": "actualized", - "past_participle": "actualized" - }, - { - "infinitive": "muddy", - "present": "muddies", - "gerund": "muddying", - "past": "muddied", - "past_participle": "muddied" - }, - { - "infinitive": "logroll", - "present": "logrolls", - "gerund": "logrolling", - "past": "logrolled", - "past_participle": "logrolled" - }, - { - "infinitive": "gaze", - "present": "gazes", - "gerund": "gazing", - "past": "gazed", - "past_participle": "gazed" - }, - { - "infinitive": "curtain", - "present": "curtains", - "gerund": "curtaining", - "past": "curtained", - "past_participle": "curtained" - }, - { - "infinitive": "curtail", - "present": "curtails", - "gerund": "curtailing", - "past": "curtailed", - "past_participle": "curtailed" - }, - { - "infinitive": "define", - "present": "defines", - "gerund": "defining", - "past": "defined", - "past_participle": "defined" - }, - { - "infinitive": "upheave", - "present": "upheaves", - "gerund": "upheaving", - "past": "upheaved", - "past_participle": "upheaved" - }, - { - "infinitive": "minify", - "present": "minifies", - "gerund": "minifying", - "past": "minified", - "past_participle": "minified" - }, - { - "infinitive": "Photostat", - "present": "Photostats", - "gerund": "Photostatting", - "past": "Photostatted", - "past_participle": "Photostatted" - }, - { - "infinitive": "protect", - "present": "protects", - "gerund": "protecting", - "past": "protected", - "past_participle": "protected" - }, - { - "infinitive": "bulk", - "present": "bulks", - "gerund": "bulking", - "past": "bulked", - "past_participle": "bulked" - }, - { - "infinitive": "tense", - "present": "tenses", - "gerund": "tensing", - "past": "tensed", - "past_participle": "tensed" - }, - { - "infinitive": "bull", - "present": "bulls", - "gerund": "bulling", - "past": "bulled", - "past_participle": "bulled" - }, - { - "infinitive": "exfoliate", - "present": "exfoliates", - "gerund": "exfoliating", - "past": "exfoliated", - "past_participle": "exfoliated" - }, - { - "infinitive": "fellow", - "present": "fellows", - "gerund": "fellowing", - "past": "fellowed", - "past_participle": "fellowed" - }, - { - "infinitive": "volunteer", - "present": "volunteers", - "gerund": "volunteering", - "past": "volunteered", - "past_participle": "volunteered" - }, - { - "infinitive": "fustigate", - "present": "fustigates", - "gerund": "fustigating", - "past": "fustigated", - "past_participle": "fustigated" - }, - { - "infinitive": "enshrinshrine", - "present": "enshrinshrines", - "gerund": "enshrinshrining", - "past": "enshrinshrined", - "past_participle": "enshrinshrined" - }, - { - "infinitive": "value", - "present": "values", - "gerund": "valuing", - "past": "valued", - "past_participle": "valued" - }, - { - "infinitive": "plait", - "present": "plaits", - "gerund": "plaiting", - "past": "plated", - "past_participle": "plaited" - }, - { - "infinitive": "preconceive", - "present": "preconceives", - "gerund": "preconceiving", - "past": "preconceived", - "past_participle": "preconceived" - }, - { - "infinitive": "scatter", - "present": "scatters", - "gerund": "scattering", - "past": "scattered", - "past_participle": "scattered" - }, - { - "infinitive": "magnetize", - "present": "magnetizes", - "gerund": "magnetizing", - "past": "magnetized", - "past_participle": "magnetized" - }, - { - "infinitive": "deek", - "present": "deeks", - "gerund": "deeking", - "past": "deeked", - "past_participle": "deeked" - }, - { - "infinitive": "permeate", - "present": "permeates", - "gerund": "permeating", - "past": "permeated", - "past_participle": "permeated" - }, - { - "infinitive": "vulcanize", - "present": "vulcanizes", - "gerund": "vulcanizing", - "past": "vulcanized", - "past_participle": "vulcanized" - }, - { - "infinitive": "bicker", - "present": "bickers", - "gerund": "bickering", - "past": "bickered", - "past_participle": "bickered" - }, - { - "infinitive": "dissent", - "present": "dissents", - "gerund": "dissenting", - "past": "dissented", - "past_participle": "dissented" - }, - { - "infinitive": "quantize", - "present": "quantizes", - "gerund": "quantizing", - "past": "quantized", - "past_participle": "quantized" - }, - { - "infinitive": "prose", - "present": "proses", - "gerund": "prosing", - "past": "prosed", - "past_participle": "prosed" - }, - { - "infinitive": "partner", - "present": "partners", - "gerund": "partnering", - "past": "partnered", - "past_participle": "partnered" - }, - { - "infinitive": "subirrigate", - "present": "subirrigates", - "gerund": "subirrigating", - "past": "subirrigated", - "past_participle": "subirrigated" - }, - { - "infinitive": "anathematize", - "present": "anathematizes", - "gerund": "anathematizing", - "past": "anathematized", - "past_participle": "anathematized" - }, - { - "infinitive": "portray", - "present": "portrays", - "gerund": "portraying", - "past": "portrayed", - "past_participle": "portrayed" - }, - { - "infinitive": "facet", - "present": "facets", - "gerund": "faceting", - "past": "faceted", - "past_participle": "faceted" - }, - { - "infinitive": "tremble", - "present": "trembles", - "gerund": "trembling", - "past": "trembled", - "past_participle": "trembled" - }, - { - "infinitive": "eulogize", - "present": "eulogizes", - "gerund": "eulogizing", - "past": "eulogized", - "past_participle": "eulogized" - }, - { - "infinitive": "unlade", - "present": "unlades", - "gerund": "unlading", - "past": "unladed", - "past_participle": "unladed" - }, - { - "infinitive": "slobber", - "present": "slobbers", - "gerund": "slobbering", - "past": "slobbered", - "past_participle": "slobbered" - }, - { - "infinitive": "shuttle", - "present": "shuttles", - "gerund": "shuttling", - "past": "shuttled", - "past_participle": "shuttled" - }, - { - "infinitive": "infer", - "present": "infers", - "gerund": "inferring", - "past": "inferred", - "past_participle": "inferred" - }, - { - "infinitive": "capsulize", - "present": "capsulizes", - "gerund": "capsulizing", - "past": "capsulized", - "past_participle": "capsulized" - }, - { - "infinitive": "supercharge", - "present": "supercharges", - "gerund": "supercharging", - "past": "supercharged", - "past_participle": "supercharged" - }, - { - "infinitive": "pockmark", - "present": "pockmarks", - "gerund": "pockmarking", - "past": "pockmarked", - "past_participle": "pockmarked" - }, - { - "infinitive": "misgovern", - "present": "misgoverns", - "gerund": "misgoverning", - "past": "misgoverned", - "past_participle": "misgoverned" - }, - { - "infinitive": "pinfold", - "present": "pinfolds", - "gerund": "pinfolding", - "past": "pinfolded", - "past_participle": "pinfolded" - }, - { - "infinitive": "grandstand", - "present": "grandstands", - "gerund": "grandstanding", - "past": "grandstanded", - "past_participle": "grandstanded" - }, - { - "infinitive": "breech", - "present": "breeches", - "gerund": "breeching", - "past": "breeched", - "past_participle": "breeched" - }, - { - "infinitive": "topsoil", - "present": "topsoils", - "gerund": "topsoiling", - "past": "topsoiled", - "past_participle": "topsoiled" - }, - { - "infinitive": "besmirch", - "present": "besmirches", - "gerund": "besmirching", - "past": "besmirched", - "past_participle": "besmirched" - }, - { - "infinitive": "retard", - "present": "retards", - "gerund": "retarding", - "past": "retarded", - "past_participle": "retarded" - }, - { - "infinitive": "centre", - "present": "centres", - "gerund": "centring", - "past": "centred", - "past_participle": "centred" - }, - { - "infinitive": "backstitch", - "present": "backstitches", - "gerund": "backstitching", - "past": "backstitched", - "past_participle": "backstitched" - }, - { - "infinitive": "underfund", - "present": "underfunds", - "gerund": "underfunding", - "past": "underfunded", - "past_participle": "underfunded" - }, - { - "infinitive": "position", - "present": "positions", - "gerund": "positioning", - "past": "positioned", - "past_participle": "positioned" - }, - { - "infinitive": "publicize", - "present": "publicizes", - "gerund": "publicizing", - "past": "publicized", - "past_participle": "publicized" - }, - { - "infinitive": "muscle", - "present": "muscles", - "gerund": "muscling", - "past": "muscled", - "past_participle": "muscled" - }, - { - "infinitive": "reintroduce", - "present": "reintroduces", - "gerund": "reintroducing", - "past": "reintroduced", - "past_participle": "reintroduced" - }, - { - "infinitive": "fluoridate", - "present": "fluoridates", - "gerund": "fluoridating", - "past": "fluoridated", - "past_participle": "fluoridated" - }, - { - "infinitive": "unarm", - "present": "unarms", - "gerund": "unarming", - "past": "unarmed", - "past_participle": "unarmed" - }, - { - "infinitive": "excise", - "present": "excises", - "gerund": "excising", - "past": "excised", - "past_participle": "excised" - }, - { - "infinitive": "ratify", - "present": "ratifies", - "gerund": "ratifying", - "past": "ratified", - "past_participle": "ratified" - }, - { - "infinitive": "necessitate", - "present": "necessitates", - "gerund": "necessitating", - "past": "necessitated", - "past_participle": "necessitated" - }, - { - "infinitive": "inveigle", - "present": "inveigles", - "gerund": "inveigling", - "past": "inveigled", - "past_participle": "inveigled" - }, - { - "infinitive": "evince", - "present": "evinces", - "gerund": "evincing", - "past": "evinced", - "past_participle": "evinced" - }, - { - "infinitive": "surpass", - "present": "surpasses", - "gerund": "surpassing", - "past": "surpassed", - "past_participle": "surpassed" - }, - { - "infinitive": "localize", - "present": "localizes", - "gerund": "localizing", - "past": "localized", - "past_participle": "localized" - }, - { - "infinitive": "graduate", - "present": "graduates", - "gerund": "graduating", - "past": "graduated", - "past_participle": "graduated" - }, - { - "infinitive": "denaturize", - "present": "denaturizes", - "gerund": "denaturizing", - "past": "denaturized", - "past_participle": "denaturized" - }, - { - "infinitive": "pretermit", - "present": "pretermits", - "gerund": "pretermitting", - "past": "pretermitted", - "past_participle": "pretermitted" - }, - { - "infinitive": "tong", - "present": "tongs", - "gerund": "tonging", - "past": "tonged", - "past_participle": "tonged" - }, - { - "infinitive": "smarm", - "present": "smarms", - "gerund": "smarming", - "past": "smarmed", - "past_participle": "smarmed" - }, - { - "infinitive": "underact", - "present": "underacts", - "gerund": "underacting", - "past": "underacted", - "past_participle": "underacted" - }, - { - "infinitive": "bench", - "present": "benches", - "gerund": "benching", - "past": "benched", - "past_participle": "benched" - }, - { - "infinitive": "add", - "present": "adds", - "gerund": "adding", - "past": "added", - "past_participle": "added" - }, - { - "infinitive": "decapitate", - "present": "decapitates", - "gerund": "decapitating", - "past": "decapitated", - "past_participle": "decapitated" - }, - { - "infinitive": "scrimp", - "present": "scrimps", - "gerund": "scrimping", - "past": "scrimped", - "past_participle": "scrimped" - }, - { - "infinitive": "ravel", - "present": "ravels", - "gerund": "ravelling", - "past": "ravelled", - "past_participle": "ravelled" - }, - { - "infinitive": "ravin", - "present": "ravins", - "gerund": "ravining", - "past": "ravined", - "past_participle": "ravined" - }, - { - "infinitive": "miscalculate", - "present": "miscalculates", - "gerund": "miscalculating", - "past": "miscalculated", - "past_participle": "miscalculated" - }, - { - "infinitive": "knacker", - "present": "knackers", - "gerund": "knackering", - "past": "knackered", - "past_participle": "knackered" - }, - { - "infinitive": "overexert", - "present": "overexerts", - "gerund": "overexerting", - "past": "overexerted", - "past_participle": "overexerted" - }, - { - "infinitive": "windowshop", - "present": "windowshops", - "gerund": "windowshopping", - "past": "windowshopped", - "past_participle": "windowshopped" - }, - { - "infinitive": "insert", - "present": "inserts", - "gerund": "inserting", - "past": "inserted", - "past_participle": "inserted" - }, - { - "infinitive": "like", - "present": "likes", - "gerund": "liking", - "past": "liked", - "past_participle": "liked" - }, - { - "infinitive": "tram", - "present": "trams", - "gerund": "tramming", - "past": "trammed", - "past_participle": "trammed" - }, - { - "infinitive": "contradistinguish", - "present": "contradistinguishes", - "gerund": "contradistinguishing", - "past": "contradistinguished", - "past_participle": "contradistinguished" - }, - { - "infinitive": "heed", - "present": "heeds", - "gerund": "heeding", - "past": "heeded", - "past_participle": "heeded" - }, - { - "infinitive": "arraign", - "present": "arraigns", - "gerund": "arraigning", - "past": "arraigned", - "past_participle": "arraigned" - }, - { - "infinitive": "heel", - "present": "heels", - "gerund": "heeling", - "past": "heeled", - "past_participle": "heeled" - }, - { - "infinitive": "decease", - "present": "deceases", - "gerund": "deceasing", - "past": "deceased", - "past_participle": "deceased" - }, - { - "infinitive": "propel", - "present": "propels", - "gerund": "propelling", - "past": "propelled", - "past_participle": "propelled" - }, - { - "infinitive": "hail", - "present": "hails", - "gerund": "hailing", - "past": "hailed", - "past_participle": "hailed" - }, - { - "infinitive": "corroborate", - "present": "corroborates", - "gerund": "corroborating", - "past": "corroborated", - "past_participle": "corroborated" - }, - { - "infinitive": "solemnize", - "present": "solemnizes", - "gerund": "solemnizing", - "past": "solemnized", - "past_participle": "solemnized" - }, - { - "infinitive": "convey", - "present": "conveys", - "gerund": "conveying", - "past": "conveyed", - "past_participle": "conveyed" - }, - { - "infinitive": "convex", - "present": "convexes", - "gerund": "convexing", - "past": "convexed", - "past_participle": "convexed" - }, - { - "infinitive": "escallop", - "present": "escallops", - "gerund": "escalloping", - "past": "escalloped", - "past_participle": "escalloped" - }, - { - "infinitive": "refill", - "present": "refills", - "gerund": "refilling", - "past": "refilled", - "past_participle": "refilled" - }, - { - "infinitive": "reify", - "present": "reifies", - "gerund": "reifying", - "past": "reified", - "past_participle": "reified" - }, - { - "infinitive": "shrug", - "present": "shrugs", - "gerund": "shrugging", - "past": "shrugged", - "past_participle": "shrugged" - }, - { - "infinitive": "demobilize", - "present": "demobilizes", - "gerund": "demobilizing", - "past": "demobilized", - "past_participle": "demobilized" - }, - { - "infinitive": "slide", - "present": "slides", - "gerund": "sliding", - "past": "slid", - "past_participle": "slidden" - }, - { - "infinitive": "snuggle", - "present": "snuggles", - "gerund": "snuggling", - "past": "snuggled", - "past_participle": "snuggled" - }, - { - "infinitive": "regain", - "present": "regains", - "gerund": "regaining", - "past": "regained", - "past_participle": "regained" - }, - { - "infinitive": "pepper", - "present": "peppers", - "gerund": "peppering", - "past": "peppered", - "past_participle": "peppered" - }, - { - "infinitive": "noise", - "present": "noises", - "gerund": "noising", - "past": "noised", - "past_participle": "noised" - }, - { - "infinitive": "slight", - "present": "slights", - "gerund": "slighting", - "past": "slighted", - "past_participle": "slighted" - }, - { - "infinitive": "aerify", - "present": "aerifies", - "gerund": "aerifying", - "past": "aerified", - "past_participle": "aerified" - }, - { - "infinitive": "host", - "present": "hosts", - "gerund": "hosting", - "past": "hosted", - "past_participle": "hosted" - }, - { - "infinitive": "expire", - "present": "expires", - "gerund": "expiring", - "past": "expired", - "past_participle": "expired" - }, - { - "infinitive": "narrate", - "present": "narrates", - "gerund": "narrating", - "past": "narrated", - "past_participle": "narrated" - }, - { - "infinitive": "panel", - "present": "panels", - "gerund": "panelling", - "past": "panelled", - "past_participle": "panelled" - }, - { - "infinitive": "socket", - "present": "sockets", - "gerund": "socketing", - "past": "socketed", - "past_participle": "socketed" - }, - { - "infinitive": "flake", - "present": "flakes", - "gerund": "flaking", - "past": "flaked", - "past_participle": "flaked" - }, - { - "infinitive": "preen", - "present": "preens", - "gerund": "preening", - "past": "preened", - "past_participle": "preened" - }, - { - "infinitive": "decimate", - "present": "decimates", - "gerund": "decimating", - "past": "decimated", - "past_participle": "decimated" - }, - { - "infinitive": "beseem", - "present": "beseems", - "gerund": "beseeming", - "past": "beseemed", - "past_participle": "beseemed" - }, - { - "infinitive": "evoke", - "present": "evokes", - "gerund": "evoking", - "past": "evoked", - "past_participle": "evoked" - }, - { - "infinitive": "discard", - "present": "discards", - "gerund": "discarding", - "past": "discarded", - "past_participle": "discarded" - }, - { - "infinitive": "reave", - "present": "reaves", - "gerund": "reaving", - "past": "reaved", - "past_participle": "reaved" - }, - { - "infinitive": "miscast", - "present": "miscasts", - "gerund": "miscasting", - "past": "miscast", - "past_participle": "miscast" - }, - { - "infinitive": "yaup", - "present": "yaups", - "gerund": "yauping", - "past": "yauped", - "past_participle": "yauped" - }, - { - "infinitive": "droop", - "present": "droops", - "gerund": "drooping", - "past": "drooped", - "past_participle": "drooped" - }, - { - "infinitive": "forereach", - "present": "forereaches", - "gerund": "forereaching", - "past": "forereached", - "past_participle": "forereached" - }, - { - "infinitive": "guard", - "present": "guards", - "gerund": "guarding", - "past": "guarded", - "past_participle": "guarded" - }, - { - "infinitive": "esteem", - "present": "esteems", - "gerund": "esteeming", - "past": "esteemed", - "past_participle": "esteemed" - }, - { - "infinitive": "side-dress", - "present": "side-dresses", - "gerund": "side-dressing", - "past": "side-dressed", - "past_participle": "side-dressed" - }, - { - "infinitive": "cross-breed", - "present": "cross-breeds", - "gerund": "cross-breeding", - "past": "cross-bred", - "past_participle": "cross-bred" - }, - { - "infinitive": "ridge", - "present": "ridges", - "gerund": "ridging", - "past": "ridged", - "past_participle": "ridged" - }, - { - "infinitive": "buckle", - "present": "buckles", - "gerund": "buckling", - "past": "buckled", - "past_participle": "buckled" - }, - { - "infinitive": "outline", - "present": "outlines", - "gerund": "outlining", - "past": "outlined", - "past_participle": "outlined" - }, - { - "infinitive": "condense", - "present": "condenses", - "gerund": "condensing", - "past": "condensed", - "past_participle": "condensed" - }, - { - "infinitive": "theologize", - "present": "theologizes", - "gerund": "theologizing", - "past": "theologized", - "past_participle": "theologized" - }, - { - "infinitive": "ablate", - "present": "ablates", - "gerund": "ablating", - "past": "ablated", - "past_participle": "ablated" - }, - { - "infinitive": "introvert", - "present": "introverts", - "gerund": "introverting", - "past": "introverted", - "past_participle": "introverted" - }, - { - "infinitive": "maze", - "present": "", - "gerund": "mazing", - "past": "mazed", - "past_participle": "mazed" - }, - { - "infinitive": "offprint", - "present": "offprints", - "gerund": "offprinting", - "past": "offprinted", - "past_participle": "offprinted" - }, - { - "infinitive": "buy", - "present": "buys", - "gerund": "buying", - "past": "bought", - "past_participle": "bought" - }, - { - "infinitive": "ploat", - "present": "ploats", - "gerund": "ploating", - "past": "ploated", - "past_participle": "ploated" - }, - { - "infinitive": "bur", - "present": "burs", - "gerund": "burring", - "past": "burred", - "past_participle": "burred" - }, - { - "infinitive": "bus", - "present": "busses", - "gerund": "bussing", - "past": "bussed", - "past_participle": "bussed" - }, - { - "infinitive": "brand", - "present": "brands", - "gerund": "branding", - "past": "branded", - "past_participle": "branded" - }, - { - "infinitive": "disambiguate", - "present": "disambiguates", - "gerund": "disambiguating", - "past": "disambiguated", - "past_participle": "disambiguated" - }, - { - "infinitive": "dandle", - "present": "dandles", - "gerund": "dandling", - "past": "dandled", - "past_participle": "dandled" - }, - { - "infinitive": "plague", - "present": "plagues", - "gerund": "plaguing", - "past": "plagued", - "past_participle": "plagued" - }, - { - "infinitive": "bum", - "present": "bums", - "gerund": "bumming", - "past": "bummed", - "past_participle": "bummed" - }, - { - "infinitive": "tiller", - "present": "tillers", - "gerund": "tillering", - "past": "tillered", - "past_participle": "tillered" - }, - { - "infinitive": "bug", - "present": "bugs", - "gerund": "bugging", - "past": "bugged", - "past_participle": "bugged" - }, - { - "infinitive": "bud", - "present": "buds", - "gerund": "budding", - "past": "budded", - "past_participle": "budded" - }, - { - "infinitive": "embargo", - "present": "embargoes", - "gerund": "embargoing", - "past": "embargoed", - "past_participle": "embargoed" - }, - { - "infinitive": "intitule", - "present": "intitules", - "gerund": "intituling", - "past": "intituled", - "past_participle": "intituled" - }, - { - "infinitive": "wise", - "present": "", - "gerund": "wising", - "past": "wised", - "past_participle": "wised" - }, - { - "infinitive": "glory", - "present": "glories", - "gerund": "glorying", - "past": "gloried", - "past_participle": "gloried" - }, - { - "infinitive": "flit", - "present": "flits", - "gerund": "flitting", - "past": "flitted", - "past_participle": "flitted" - }, - { - "infinitive": "unload", - "present": "unloads", - "gerund": "unloading", - "past": "unloaded", - "past_participle": "unloaded" - }, - { - "infinitive": "spacewalk", - "present": "spacewalks", - "gerund": "spacewalking", - "past": "spacewalked", - "past_participle": "spacewalked" - }, - { - "infinitive": "flip", - "present": "flips", - "gerund": "flipping", - "past": "flipped", - "past_participle": "flipped" - }, - { - "infinitive": "skylark", - "present": "skylarks", - "gerund": "skylarking", - "past": "skylarked", - "past_participle": "skylarked" - }, - { - "infinitive": "wisp", - "present": "wisps", - "gerund": "wisping", - "past": "wisped", - "past_participle": "wisped" - }, - { - "infinitive": "wist", - "present": "wists", - "gerund": "wisting", - "past": "wisted", - "past_participle": "wisted" - }, - { - "infinitive": "cosher", - "present": "coshers", - "gerund": "coshering", - "past": "coshered", - "past_participle": "coshered" - }, - { - "infinitive": "confect", - "present": "confects", - "gerund": "confecting", - "past": "confected", - "past_participle": "confected" - }, - { - "infinitive": "troat", - "present": "troats", - "gerund": "troating", - "past": "troated", - "past_participle": "troated" - }, - { - "infinitive": "pin", - "present": "pins", - "gerund": "pinning", - "past": "pinned", - "past_participle": "pinned" - }, - { - "infinitive": "garter", - "present": "garters", - "gerund": "gartering", - "past": "gartered", - "past_participle": "gartered" - }, - { - "infinitive": "pig", - "present": "pigs", - "gerund": "pigging", - "past": "pigged", - "past_participle": "pigged" - }, - { - "infinitive": "hansel", - "present": "hansels", - "gerund": "hanseling", - "past": "hanseled", - "past_participle": "hanseled" - }, - { - "infinitive": "pip", - "present": "pips", - "gerund": "pipping", - "past": "pipped", - "past_participle": "pipped" - }, - { - "infinitive": "pit", - "present": "pits", - "gerund": "pitting", - "past": "pitted", - "past_participle": "pitted" - }, - { - "infinitive": "presignify", - "present": "presignifies", - "gerund": "presignifying", - "past": "presignified", - "past_participle": "presignified" - }, - { - "infinitive": "individuate", - "present": "individuates", - "gerund": "individuating", - "past": "individuated", - "past_participle": "individuated" - }, - { - "infinitive": "detain", - "present": "detains", - "gerund": "detaining", - "past": "detained", - "past_participle": "detained" - }, - { - "infinitive": "babbitt", - "present": "babbitts", - "gerund": "babbitting", - "past": "babbitted", - "past_participle": "babbitted" - }, - { - "infinitive": "oar", - "present": "oars", - "gerund": "oaring", - "past": "oared", - "past_participle": "oared" - }, - { - "infinitive": "counterweigh", - "present": "counterweighs", - "gerund": "counterweighing", - "past": "counterweighed", - "past_participle": "counterweighed" - }, - { - "infinitive": "redden", - "present": "reddens", - "gerund": "reddening", - "past": "reddened", - "past_participle": "reddened" - }, - { - "infinitive": "flange", - "present": "flanges", - "gerund": "flanging", - "past": "flanged", - "past_participle": "flanged" - }, - { - "infinitive": "bundle", - "present": "bundles", - "gerund": "bundling", - "past": "bundled", - "past_participle": "bundled" - }, - { - "infinitive": "wallow", - "present": "wallows", - "gerund": "wallowing", - "past": "wallowed", - "past_participle": "wallowed" - }, - { - "infinitive": "shrank", - "present": "shranks", - "gerund": "shranking", - "past": "shranked", - "past_participle": "shranked" - }, - { - "infinitive": "intussuscept", - "present": "intussuscepts", - "gerund": "intussuscepting", - "past": "intussuscepted", - "past_participle": "intussuscepted" - }, - { - "infinitive": "wallop", - "present": "wallops", - "gerund": "walloping", - "past": "walloped", - "past_participle": "walloped" - }, - { - "infinitive": "flue-cure", - "present": "flue-cures", - "gerund": "flue-curing", - "past": "flue-cured", - "past_participle": "flue-cured" - }, - { - "infinitive": "ramble", - "present": "rambles", - "gerund": "rambling", - "past": "rambled", - "past_participle": "rambled" - }, - { - "infinitive": "yelp", - "present": "yelps", - "gerund": "yelping", - "past": "yelped", - "past_participle": "yelped" - }, - { - "infinitive": "bulwark", - "present": "bulwarks", - "gerund": "bulwarking", - "past": "bulwarked", - "past_participle": "bulwarked" - }, - { - "infinitive": "mispled", - "present": "mispleds", - "gerund": "mispleding", - "past": "mispled", - "past_participle": "mispled" - }, - { - "infinitive": "jab", - "present": "jabs", - "gerund": "jabbing", - "past": "jabbed", - "past_participle": "jabbed" - }, - { - "infinitive": "intreat", - "present": "intreats", - "gerund": "intreating", - "past": "intreated", - "past_participle": "intreated" - }, - { - "infinitive": "yell", - "present": "yells", - "gerund": "yelling", - "past": "yelled", - "past_participle": "yelled" - }, - { - "infinitive": "parole", - "present": "paroles", - "gerund": "paroling", - "past": "paroled", - "past_participle": "paroled" - }, - { - "infinitive": "ejaculate", - "present": "ejaculates", - "gerund": "ejaculating", - "past": "ejaculated", - "past_participle": "ejaculated" - }, - { - "infinitive": "hitch", - "present": "hitches", - "gerund": "hitching", - "past": "hitched", - "past_participle": "hitched" - }, - { - "infinitive": "sleet", - "present": "sleets", - "gerund": "sleeting", - "past": "sleeted", - "past_participle": "sleeted" - }, - { - "infinitive": "sleep", - "present": "sleeps", - "gerund": "sleeping", - "past": "slept", - "past_participle": "slept" - }, - { - "infinitive": "signalize", - "present": "signalizes", - "gerund": "signalizing", - "past": "signalized", - "past_participle": "signalized" - }, - { - "infinitive": "hate", - "present": "hates", - "gerund": "hating", - "past": "hated", - "past_participle": "hated" - }, - { - "infinitive": "muzzle", - "present": "muzzles", - "gerund": "muzzling", - "past": "muzzled", - "past_participle": "muzzled" - }, - { - "infinitive": "Hoover", - "present": "Hoovers", - "gerund": "Hoovering", - "past": "Hoovered", - "past_participle": "Hoovered" - }, - { - "infinitive": "violate", - "present": "violates", - "gerund": "violating", - "past": "violated", - "past_participle": "violated" - }, - { - "infinitive": "caddy", - "present": "caddies", - "gerund": "caddying", - "past": "caddied", - "past_participle": "caddied" - }, - { - "infinitive": "snipe", - "present": "snipes", - "gerund": "sniping", - "past": "sniped", - "past_participle": "sniped" - }, - { - "infinitive": "tweet", - "present": "tweets", - "gerund": "tweeting", - "past": "tweeted", - "past_participle": "tweeted" - }, - { - "infinitive": "whipsaw", - "present": "whipsaws", - "gerund": "whipsawing", - "past": "whipsawed", - "past_participle": "whipsawed" - }, - { - "infinitive": "rankle", - "present": "rankles", - "gerund": "rankling", - "past": "rankled", - "past_participle": "rankled" - }, - { - "infinitive": "doublecheck", - "present": "doublechecks", - "gerund": "doublechecking", - "past": "doublechecked", - "past_participle": "doublechecked" - }, - { - "infinitive": "pride", - "present": "prides", - "gerund": "priding", - "past": "prided", - "past_participle": "prided" - }, - { - "infinitive": "shellac", - "present": "shellacs", - "gerund": "shellacking", - "past": "shellacked", - "past_participle": "shellacked" - }, - { - "infinitive": "merchant", - "present": "merchants", - "gerund": "merchanting", - "past": "merchanted", - "past_participle": "merchanted" - }, - { - "infinitive": "derogate", - "present": "derogates", - "gerund": "derogating", - "past": "derogated", - "past_participle": "derogated" - }, - { - "infinitive": "conjecture", - "present": "conjectures", - "gerund": "conjecturing", - "past": "conjectured", - "past_participle": "conjectured" - }, - { - "infinitive": "risk", - "present": "risks", - "gerund": "risking", - "past": "risked", - "past_participle": "risked" - }, - { - "infinitive": "dispense", - "present": "dispenses", - "gerund": "dispensing", - "past": "dispensed", - "past_participle": "dispensed" - }, - { - "infinitive": "rise", - "present": "rises", - "gerund": "rising", - "past": "rose", - "past_participle": "risen" - }, - { - "infinitive": "lurk", - "present": "lurks", - "gerund": "lurking", - "past": "lurked", - "past_participle": "lurked" - }, - { - "infinitive": "abreact", - "present": "abreacts", - "gerund": "abreacting", - "past": "abreacted", - "past_participle": "abreacted" - }, - { - "infinitive": "adumbrate", - "present": "adumbrates", - "gerund": "adumbrating", - "past": "adumbrated", - "past_participle": "adumbrated" - }, - { - "infinitive": "disfranchise", - "present": "disfranchises", - "gerund": "disfranchising", - "past": "disfranchised", - "past_participle": "disfranchised" - }, - { - "infinitive": "jack", - "present": "jacks", - "gerund": "jacking", - "past": "jacked", - "past_participle": "jacked" - }, - { - "infinitive": "evert", - "present": "everts", - "gerund": "everting", - "past": "everted", - "past_participle": "everted" - }, - { - "infinitive": "encounter", - "present": "encounters", - "gerund": "encountering", - "past": "encountered", - "past_participle": "encountered" - }, - { - "infinitive": "school", - "present": "schools", - "gerund": "schooling", - "past": "schooled", - "past_participle": "schooled" - }, - { - "infinitive": "parrot", - "present": "parrots", - "gerund": "parroting", - "past": "parroted", - "past_participle": "parroted" - }, - { - "infinitive": "conceive", - "present": "conceives", - "gerund": "conceiving", - "past": "conceived", - "past_participle": "conceived" - }, - { - "infinitive": "enjoy", - "present": "enjoys", - "gerund": "enjoying", - "past": "enjoyed", - "past_participle": "enjoyed" - }, - { - "infinitive": "fricassee", - "present": "fricassees", - "gerund": "fricasseeing", - "past": "fricasseed", - "past_participle": "fricasseed" - }, - { - "infinitive": "overdo", - "present": "overdoes", - "gerund": "overdoing", - "past": "overdid", - "past_participle": "overdone" - }, - { - "infinitive": "bicycle", - "present": "bicycles", - "gerund": "bicycling", - "past": "bicycled", - "past_participle": "bicycled" - }, - { - "infinitive": "intercut", - "present": "intercuts", - "gerund": "intercutting", - "past": "intercut", - "past_participle": "intercut" - }, - { - "infinitive": "direct", - "present": "directs", - "gerund": "directing", - "past": "directed", - "past_participle": "directed" - }, - { - "infinitive": "snafu", - "present": "snafues", - "gerund": "snafuing", - "past": "snafued", - "past_participle": "snafued" - }, - { - "infinitive": "louden", - "present": "loudens", - "gerund": "loudening", - "past": "loudened", - "past_participle": "loudened" - }, - { - "infinitive": "nail", - "present": "nails", - "gerund": "nailing", - "past": "nailed", - "past_participle": "nailed" - }, - { - "infinitive": "scrutinize", - "present": "scrutinizes", - "gerund": "scrutinizing", - "past": "scrutinized", - "past_participle": "scrutinized" - }, - { - "infinitive": "persuade", - "present": "persuades", - "gerund": "persuading", - "past": "persuaded", - "past_participle": "persuaded" - }, - { - "infinitive": "channelize", - "present": "channelizes", - "gerund": "channelizing", - "past": "channelized", - "past_participle": "channelized" - }, - { - "infinitive": "enounce", - "present": "enounces", - "gerund": "enouncing", - "past": "enounced", - "past_participle": "enounced" - }, - { - "infinitive": "blue", - "present": "blues", - "gerund": "bluing", - "past": "blued", - "past_participle": "blued" - }, - { - "infinitive": "hide", - "present": "hides", - "gerund": "hiding", - "past": "hid", - "past_participle": "hidden" - }, - { - "infinitive": "conduce", - "present": "conduces", - "gerund": "conducing", - "past": "conduced", - "past_participle": "conduced" - }, - { - "infinitive": "blub", - "present": "blubs", - "gerund": "blubbing", - "past": "blubbed", - "past_participle": "blubbed" - }, - { - "infinitive": "worsen", - "present": "worsens", - "gerund": "worsening", - "past": "worsened", - "past_participle": "worsened" - }, - { - "infinitive": "introspect", - "present": "introspects", - "gerund": "introspecting", - "past": "introspected", - "past_participle": "introspected" - }, - { - "infinitive": "poison", - "present": "poisons", - "gerund": "poisoning", - "past": "poisoned", - "past_participle": "poisoned" - }, - { - "infinitive": "insinuate", - "present": "insinuates", - "gerund": "insinuating", - "past": "insinuated", - "past_participle": "insinuated" - }, - { - "infinitive": "indorse", - "present": "indorses", - "gerund": "indorsing", - "past": "indorsed", - "past_participle": "indorsed" - }, - { - "infinitive": "jaundice", - "present": "jaundices", - "gerund": "jaundicing", - "past": "jaundiced", - "past_participle": "jaundiced" - }, - { - "infinitive": "tetanize", - "present": "tetanizes", - "gerund": "tetanizing", - "past": "tetanized", - "past_participle": "tetanized" - }, - { - "infinitive": "foreknow", - "present": "foreknows", - "gerund": "foreknowing", - "past": "foreknew", - "past_participle": "foreknown" - }, - { - "infinitive": "dehydrogenize", - "present": "dehydrogenizes", - "gerund": "dehydrogenizing", - "past": "dehydrogenized", - "past_participle": "dehydrogenized" - }, - { - "infinitive": "jampack", - "present": "jampacks", - "gerund": "jampacking", - "past": "jampacked", - "past_participle": "jampacked" - }, - { - "infinitive": "metamorphose", - "present": "metamorphoses", - "gerund": "metamorphosing", - "past": "metamorphosed", - "past_participle": "metamorphosed" - }, - { - "infinitive": "floreo", - "present": "floreat", - "gerund": "", - "past": "floruit", - "past_participle": "" - }, - { - "infinitive": "acidify", - "present": "acidifies", - "gerund": "acidifying", - "past": "acidified", - "past_participle": "acidified" - }, - { - "infinitive": "punch", - "present": "punches", - "gerund": "punching", - "past": "punched", - "past_participle": "punched" - }, - { - "infinitive": "superannuate", - "present": "superannuates", - "gerund": "superannuating", - "past": "superannuated", - "past_participle": "superannuated" - }, - { - "infinitive": "verbify", - "present": "verbifies", - "gerund": "verbifying", - "past": "verbified", - "past_participle": "verbified" - }, - { - "infinitive": "ravish", - "present": "ravishes", - "gerund": "ravishing", - "past": "ravished", - "past_participle": "ravished" - }, - { - "infinitive": "auction", - "present": "auctions", - "gerund": "auctioning", - "past": "auctioned", - "past_participle": "auctioned" - }, - { - "infinitive": "deoxidize", - "present": "deoxidizes", - "gerund": "deoxidizing", - "past": "deoxidized", - "past_participle": "deoxidized" - }, - { - "infinitive": "ridicule", - "present": "ridicules", - "gerund": "ridiculing", - "past": "ridiculed", - "past_participle": "ridiculed" - }, - { - "infinitive": "culminate", - "present": "culminates", - "gerund": "culminating", - "past": "culminated", - "past_participle": "culminated" - }, - { - "infinitive": "outpace", - "present": "outpaces", - "gerund": "outpacing", - "past": "outpaced", - "past_participle": "outpaced" - }, - { - "infinitive": "precis", - "present": "precises", - "gerund": "precising", - "past": "precised", - "past_participle": "precised" - }, - { - "infinitive": "lignify", - "present": "lignifies", - "gerund": "lignifying", - "past": "lignified", - "past_participle": "lignified" - }, - { - "infinitive": "leaven", - "present": "leavens", - "gerund": "leavening", - "past": "leavened", - "past_participle": "leavened" - }, - { - "infinitive": "intersperse", - "present": "intersperses", - "gerund": "interspersing", - "past": "interspersed", - "past_participle": "interspersed" - }, - { - "infinitive": "stray", - "present": "strays", - "gerund": "straying", - "past": "strayed", - "past_participle": "strayed" - }, - { - "infinitive": "straw", - "present": "straws", - "gerund": "strawing", - "past": "strawed", - "past_participle": "strawed" - }, - { - "infinitive": "stink", - "present": "stinks", - "gerund": "stinking", - "past": "stunk", - "past_participle": "" - }, - { - "infinitive": "strap", - "present": "straps", - "gerund": "strapping", - "past": "strapped", - "past_participle": "strapped" - }, - { - "infinitive": "descale", - "present": "descales", - "gerund": "descaling", - "past": "descaled", - "past_participle": "descaled" - }, - { - "infinitive": "would", - "present": "woulds", - "gerund": "woulding", - "past": "woulded", - "past_participle": "woulded" - }, - { - "infinitive": "pigeonhole", - "present": "pigeonholes", - "gerund": "pigeonholing", - "past": "pigeonholed", - "past_participle": "pigeonholed" - }, - { - "infinitive": "interlace", - "present": "interlaces", - "gerund": "interlacing", - "past": "interlaced", - "past_participle": "interlaced" - }, - { - "infinitive": "racketeer", - "present": "racketeers", - "gerund": "racketeering", - "past": "racketeered", - "past_participle": "racketeered" - }, - { - "infinitive": "underprop", - "present": "underprops", - "gerund": "underpropping", - "past": "underpropped", - "past_participle": "underpropped" - }, - { - "infinitive": "swinge", - "present": "swinges", - "gerund": "swingeing", - "past": "swinged", - "past_participle": "swinged" - }, - { - "infinitive": "spike", - "present": "spikes", - "gerund": "spiking", - "past": "spiked", - "past_participle": "spiked" - }, - { - "infinitive": "overlive", - "present": "overlives", - "gerund": "overliving", - "past": "overlived", - "past_participle": "overlived" - }, - { - "infinitive": "prevue", - "present": "prevues", - "gerund": "prevuing", - "past": "prevued", - "past_participle": "prevued" - }, - { - "infinitive": "breathe", - "present": "breathes", - "gerund": "breathing", - "past": "breathed", - "past_participle": "breathed" - }, - { - "infinitive": "blather", - "present": "blathers", - "gerund": "blathering", - "past": "blathered", - "past_participle": "blathered" - }, - { - "infinitive": "saber", - "present": "sabers", - "gerund": "sabering", - "past": "sabered", - "past_participle": "sabered" - }, - { - "infinitive": "interpenetrate", - "present": "interpenetrates", - "gerund": "interpenetrating", - "past": "interpenetrated", - "past_participle": "interpenetrated" - }, - { - "infinitive": "muse", - "present": "muses", - "gerund": "musing", - "past": "mused", - "past_participle": "mused" - }, - { - "infinitive": "typify", - "present": "typifies", - "gerund": "typifying", - "past": "typified", - "past_participle": "typified" - }, - { - "infinitive": "phone", - "present": "phones", - "gerund": "phoning", - "past": "phoned", - "past_participle": "phoned" - }, - { - "infinitive": "kipper", - "present": "kippers", - "gerund": "kippering", - "past": "kippered", - "past_participle": "kippered" - }, - { - "infinitive": "masticate", - "present": "masticates", - "gerund": "masticating", - "past": "masticated", - "past_participle": "masticated" - }, - { - "infinitive": "adjourn", - "present": "adjourns", - "gerund": "adjourning", - "past": "adjourned", - "past_participle": "adjourned" - }, - { - "infinitive": "moil", - "present": "moils", - "gerund": "moiling", - "past": "moiled", - "past_participle": "moiled" - }, - { - "infinitive": "pouch", - "present": "pouches", - "gerund": "pouching", - "past": "pouched", - "past_participle": "pouched" - }, - { - "infinitive": "shoot", - "present": "shoots", - "gerund": "shooting", - "past": "shot", - "past_participle": "shot" - }, - { - "infinitive": "daff", - "present": "daffs", - "gerund": "daffing", - "past": "daffed", - "past_participle": "daffed" - }, - { - "infinitive": "hutch", - "present": "hutches", - "gerund": "hutching", - "past": "hutched", - "past_participle": "hutched" - }, - { - "infinitive": "join", - "present": "joins", - "gerund": "joining", - "past": "joined", - "past_participle": "joined" - }, - { - "infinitive": "micturate", - "present": "micturates", - "gerund": "micturating", - "past": "micturated", - "past_participle": "micturated" - }, - { - "infinitive": "outgain", - "present": "outgains", - "gerund": "outgaining", - "past": "outgained", - "past_participle": "outgained" - }, - { - "infinitive": "declassify", - "present": "declassifies", - "gerund": "declassifying", - "past": "declassified", - "past_participle": "declassified" - }, - { - "infinitive": "tissue", - "present": "tissues", - "gerund": "tissuing", - "past": "tissued", - "past_participle": "tissued" - }, - { - "infinitive": "install", - "present": "instals", - "gerund": "installing", - "past": "installed", - "past_participle": "installed" - }, - { - "infinitive": "salvage", - "present": "salvages", - "gerund": "salvaging", - "past": "salvaged", - "past_participle": "salvaged" - }, - { - "infinitive": "aggrandize", - "present": "aggrandizes", - "gerund": "aggrandizing", - "past": "aggrandized", - "past_participle": "aggrandized" - }, - { - "infinitive": "quarrel", - "present": "quarrels", - "gerund": "quarrelling", - "past": "quarrelled", - "past_participle": "quarrelled" - }, - { - "infinitive": "defile", - "present": "defiles", - "gerund": "defiling", - "past": "defiled", - "past_participle": "defiled" - }, - { - "infinitive": "loosen", - "present": "loosens", - "gerund": "loosening", - "past": "loosened", - "past_participle": "loosened" - }, - { - "infinitive": "jumble", - "present": "jumbles", - "gerund": "jumbling", - "past": "jumbled", - "past_participle": "jumbled" - }, - { - "infinitive": "attract", - "present": "attracts", - "gerund": "attracting", - "past": "attracted", - "past_participle": "attracted" - }, - { - "infinitive": "calve", - "present": "", - "gerund": "calving", - "past": "calved", - "past_participle": "calved" - }, - { - "infinitive": "guarantee", - "present": "guarantees", - "gerund": "guaranteeing", - "past": "guaranteed", - "past_participle": "guaranteed" - }, - { - "infinitive": "collude", - "present": "colludes", - "gerund": "colluding", - "past": "colluded", - "past_participle": "colluded" - }, - { - "infinitive": "end", - "present": "ends", - "gerund": "ending", - "past": "ended", - "past_participle": "ended" - }, - { - "infinitive": "bung", - "present": "bungs", - "gerund": "bunging", - "past": "bunged", - "past_participle": "bunged" - }, - { - "infinitive": "stride", - "present": "strides", - "gerund": "striding", - "past": "strode", - "past_participle": "strode" - }, - { - "infinitive": "bunk", - "present": "bunks", - "gerund": "bunking", - "past": "bunked", - "past_participle": "bunked" - }, - { - "infinitive": "slalom", - "present": "slaloms", - "gerund": "slaloming", - "past": "slalomed", - "past_participle": "slalomed" - }, - { - "infinitive": "shred", - "present": "shreds", - "gerund": "shredding", - "past": "shredded", - "past_participle": "shredded" - }, - { - "infinitive": "enquire", - "present": "enquires", - "gerund": "enquiring", - "past": "enquired", - "past_participle": "enquired" - }, - { - "infinitive": "bunt", - "present": "bunts", - "gerund": "bunting", - "past": "bunted", - "past_participle": "bunted" - }, - { - "infinitive": "gate", - "present": "gates", - "gerund": "gating", - "past": "gated", - "past_participle": "gated" - }, - { - "infinitive": "bludge", - "present": "bludges", - "gerund": "bludging", - "past": "bludged", - "past_participle": "bludged" - }, - { - "infinitive": "raffle", - "present": "raffles", - "gerund": "raffling", - "past": "raffled", - "past_participle": "raffled" - }, - { - "infinitive": "moisten", - "present": "moistens", - "gerund": "moistening", - "past": "moistened", - "past_participle": "moistened" - }, - { - "infinitive": "unhorse", - "present": "unhorses", - "gerund": "unhorsing", - "past": "unhorsed", - "past_participle": "unhorsed" - }, - { - "infinitive": "befog", - "present": "befogs", - "gerund": "befogging", - "past": "befogged", - "past_participle": "befogged" - }, - { - "infinitive": "mispronounce", - "present": "mispronounces", - "gerund": "mispronouncing", - "past": "mispronounced", - "past_participle": "mispronounced" - }, - { - "infinitive": "undercapitalize", - "present": "undercapitalizes", - "gerund": "undercapitalizing", - "past": "undercapitalized", - "past_participle": "undercapitalized" - }, - { - "infinitive": "mess", - "present": "messes", - "gerund": "messing", - "past": "messed", - "past_participle": "messed" - }, - { - "infinitive": "famish", - "present": "famishes", - "gerund": "famishing", - "past": "famished", - "past_participle": "famished" - }, - { - "infinitive": "lump", - "present": "lumps", - "gerund": "lumping", - "past": "lumped", - "past_participle": "lumped" - }, - { - "infinitive": "whittle", - "present": "whittles", - "gerund": "whittling", - "past": "whittled", - "past_participle": "whittled" - }, - { - "infinitive": "mesh", - "present": "meshs", - "gerund": "meshing", - "past": "meshed", - "past_participle": "meshed" - }, - { - "infinitive": "parallel", - "present": "parallels", - "gerund": "parallelling", - "past": "parallelled", - "past_participle": "parallelled" - }, - { - "infinitive": "derequisition", - "present": "derequisitions", - "gerund": "derequisitioning", - "past": "derequisitioned", - "past_participle": "derequisitioned" - }, - { - "infinitive": "hedgehop", - "present": "hedgehops", - "gerund": "hedgehopping", - "past": "hedgehopped", - "past_participle": "hedgehopped" - }, - { - "infinitive": "spout", - "present": "spouts", - "gerund": "spouting", - "past": "spouted", - "past_participle": "spouted" - }, - { - "infinitive": "arbitrate", - "present": "arbitrates", - "gerund": "arbitrating", - "past": "arbitrated", - "past_participle": "arbitrated" - }, - { - "infinitive": "patent", - "present": "patents", - "gerund": "patenting", - "past": "patented", - "past_participle": "patented" - }, - { - "infinitive": "scout", - "present": "scouts", - "gerund": "scouting", - "past": "scouted", - "past_participle": "scouted" - }, - { - "infinitive": "environ", - "present": "environs", - "gerund": "environing", - "past": "environed", - "past_participle": "environed" - }, - { - "infinitive": "deepsix", - "present": "deepsixes", - "gerund": "deepsixing", - "past": "deepsixed", - "past_participle": "deepsixed" - }, - { - "infinitive": "enter", - "present": "enters", - "gerund": "entering", - "past": "entered", - "past_participle": "entered" - }, - { - "infinitive": "broider", - "present": "broiders", - "gerund": "broidering", - "past": "broidered", - "past_participle": "broidered" - }, - { - "infinitive": "unsteady", - "present": "unsteadies", - "gerund": "unsteadying", - "past": "unsteadied", - "past_participle": "unsteadied" - }, - { - "infinitive": "fetter", - "present": "fetters", - "gerund": "fettering", - "past": "fettered", - "past_participle": "fettered" - }, - { - "infinitive": "deform", - "present": "deforms", - "gerund": "deforming", - "past": "deformed", - "past_participle": "deformed" - }, - { - "infinitive": "sprout", - "present": "sprouts", - "gerund": "sprouting", - "past": "sprouted", - "past_participle": "sprouted" - }, - { - "infinitive": "bleach", - "present": "bleaches", - "gerund": "bleaching", - "past": "bleached", - "past_participle": "bleached" - }, - { - "infinitive": "reorient", - "present": "reorients", - "gerund": "reorienting", - "past": "reoriented", - "past_participle": "reoriented" - }, - { - "infinitive": "outshine", - "present": "outshines", - "gerund": "outshining", - "past": "outshone", - "past_participle": "outshone" - }, - { - "infinitive": "up-anchor", - "present": "up-anchors", - "gerund": "up-anchoring", - "past": "up-anchored", - "past_participle": "up-anchored" - }, - { - "infinitive": "strangle", - "present": "strangles", - "gerund": "strangling", - "past": "strangled", - "past_participle": "strangled" - }, - { - "infinitive": "digest", - "present": "digests", - "gerund": "digesting", - "past": "digested", - "past_participle": "digested" - }, - { - "infinitive": "overstep", - "present": "oversteps", - "gerund": "overstepping", - "past": "overstepped", - "past_participle": "overstepped" - }, - { - "infinitive": "insphere", - "present": "inspheres", - "gerund": "insphering", - "past": "insphered", - "past_participle": "insphered" - }, - { - "infinitive": "thrust", - "present": "thrusts", - "gerund": "thrusting", - "past": "thrust", - "past_participle": "thrust" - }, - { - "infinitive": "comprehend", - "present": "comprehends", - "gerund": "comprehending", - "past": "comprehended", - "past_participle": "comprehended" - }, - { - "infinitive": "imp", - "present": "imps", - "gerund": "imping", - "past": "imped", - "past_participle": "imped" - }, - { - "infinitive": "strand", - "present": "strands", - "gerund": "stranding", - "past": "stranded", - "past_participle": "stranded" - }, - { - "infinitive": "fade", - "present": "fades", - "gerund": "fading", - "past": "faded", - "past_participle": "faded" - }, - { - "infinitive": "mistreat", - "present": "mistreats", - "gerund": "mistreating", - "past": "mistreated", - "past_participle": "mistreated" - }, - { - "infinitive": "croquet", - "present": "croquets", - "gerund": "croqueting", - "past": "croqueted", - "past_participle": "croqueted" - }, - { - "infinitive": "riff", - "present": "riffs", - "gerund": "riffing", - "past": "riffed", - "past_participle": "riffed" - }, - { - "infinitive": "helve", - "present": "helves", - "gerund": "helving", - "past": "helved", - "past_participle": "helved" - }, - { - "infinitive": "vandalize", - "present": "vandalizes", - "gerund": "vandalizing", - "past": "vandalized", - "past_participle": "vandalized" - }, - { - "infinitive": "vouchsafe", - "present": "vouchsafes", - "gerund": "vouchsafing", - "past": "vouchsafed", - "past_participle": "vouchsafed" - }, - { - "infinitive": "uptilt", - "present": "uptilts", - "gerund": "uptilting", - "past": "uptilted", - "past_participle": "uptilted" - }, - { - "infinitive": "plaster", - "present": "plasters", - "gerund": "plastering", - "past": "plastered", - "past_participle": "plastered" - }, - { - "infinitive": "roost", - "present": "roosts", - "gerund": "roosting", - "past": "roosted", - "past_participle": "roosted" - }, - { - "infinitive": "depopulate", - "present": "depopulates", - "gerund": "depopulating", - "past": "depopulated", - "past_participle": "depopulated" - }, - { - "infinitive": "manicure", - "present": "manicures", - "gerund": "manicuring", - "past": "manicured", - "past_participle": "manicured" - }, - { - "infinitive": "roose", - "present": "rooses", - "gerund": "roosing", - "past": "roosed", - "past_participle": "roosed" - }, - { - "infinitive": "reelect", - "present": "reelects", - "gerund": "reelecting", - "past": "reelected", - "past_participle": "reelected" - }, - { - "infinitive": "gloom", - "present": "glooms", - "gerund": "glooming", - "past": "gloomed", - "past_participle": "gloomed" - }, - { - "infinitive": "chuck", - "present": "chucks", - "gerund": "chucking", - "past": "chucked", - "past_participle": "chucked" - }, - { - "infinitive": "explode", - "present": "explodes", - "gerund": "exploding", - "past": "exploded", - "past_participle": "exploded" - }, - { - "infinitive": "deplume", - "present": "deplumes", - "gerund": "depluming", - "past": "deplumed", - "past_participle": "deplumed" - }, - { - "infinitive": "affiliate", - "present": "affiliates", - "gerund": "affiliating", - "past": "affiliated", - "past_participle": "affiliated" - }, - { - "infinitive": "dethrone", - "present": "dethrones", - "gerund": "dethroning", - "past": "dethroned", - "past_participle": "dethroned" - }, - { - "infinitive": "consolidate", - "present": "consolidates", - "gerund": "consolidating", - "past": "consolidated", - "past_participle": "consolidated" - }, - { - "infinitive": "disorientate", - "present": "disorients", - "gerund": "disorienting", - "past": "disoriented", - "past_participle": "disoriented" - }, - { - "infinitive": "reface", - "present": "refaces", - "gerund": "refacing", - "past": "refaced", - "past_participle": "refaced" - }, - { - "infinitive": "disentwine", - "present": "disentwines", - "gerund": "disentwining", - "past": "disentwined", - "past_participle": "disentwined" - }, - { - "infinitive": "unscrew", - "present": "unscrews", - "gerund": "unscrewing", - "past": "unscrewed", - "past_participle": "unscrewed" - }, - { - "infinitive": "waffle", - "present": "waffles", - "gerund": "waffling", - "past": "waffled", - "past_participle": "waffled" - }, - { - "infinitive": "truant", - "present": "truants", - "gerund": "truanting", - "past": "truanted", - "past_participle": "truanted" - }, - { - "infinitive": "clothe", - "present": "clothes", - "gerund": "clothing", - "past": "clothed", - "past_participle": "clothed" - }, - { - "infinitive": "pounce", - "present": "pounces", - "gerund": "pouncing", - "past": "pounced", - "past_participle": "pounced" - }, - { - "infinitive": "depress", - "present": "depresses", - "gerund": "depressing", - "past": "depressed", - "past_participle": "depressed" - }, - { - "infinitive": "lair", - "present": "lairs", - "gerund": "lairing", - "past": "laired", - "past_participle": "laired" - }, - { - "infinitive": "recce", - "present": "recces", - "gerund": "recceing", - "past": "recced", - "past_participle": "recced" - }, - { - "infinitive": "gob", - "present": "gobs", - "gerund": "gobbing", - "past": "gobbed", - "past_participle": "gobbed" - }, - { - "infinitive": "underbid", - "present": "underbids", - "gerund": "underbidding", - "past": "underbid", - "past_participle": "underbidden" - }, - { - "infinitive": "intonate", - "present": "intonates", - "gerund": "intonating", - "past": "intonated", - "past_participle": "intonated" - }, - { - "infinitive": "laik", - "present": "laiks", - "gerund": "laiking", - "past": "laiked", - "past_participle": "laiked" - }, - { - "infinitive": "prorogue", - "present": "prorogues", - "gerund": "proroguing", - "past": "prorogued", - "past_participle": "prorogued" - }, - { - "infinitive": "provide", - "present": "provides", - "gerund": "providing", - "past": "provided", - "past_participle": "provided" - }, - { - "infinitive": "associate", - "present": "associates", - "gerund": "associating", - "past": "associated", - "past_participle": "associated" - }, - { - "infinitive": "rail", - "present": "rails", - "gerund": "railing", - "past": "railed", - "past_participle": "railed" - }, - { - "infinitive": "free", - "present": "frees", - "gerund": "freeing", - "past": "freed", - "past_participle": "freed" - }, - { - "infinitive": "polarize", - "present": "polarizes", - "gerund": "polarizing", - "past": "polarized", - "past_participle": "polarized" - }, - { - "infinitive": "streamline", - "present": "streamlines", - "gerund": "streamlining", - "past": "streamlined", - "past_participle": "streamlined" - }, - { - "infinitive": "constellate", - "present": "constellates", - "gerund": "constellating", - "past": "constellated", - "past_participle": "constellated" - }, - { - "infinitive": "pistolwhip", - "present": "pistolwhips", - "gerund": "pistolwhipping", - "past": "pistolwhipped", - "past_participle": "pistolwhipped" - }, - { - "infinitive": "fret", - "present": "frets", - "gerund": "fretting", - "past": "fretted", - "past_participle": "frets" - }, - { - "infinitive": "sluff", - "present": "sluffs", - "gerund": "sluffing", - "past": "sluffed", - "past_participle": "sluffed" - }, - { - "infinitive": "filter", - "present": "filters", - "gerund": "filtering", - "past": "filtered", - "past_participle": "filtered" - }, - { - "infinitive": "aspire", - "present": "aspires", - "gerund": "aspiring", - "past": "aspired", - "past_participle": "aspired" - }, - { - "infinitive": "recite", - "present": "recites", - "gerund": "reciting", - "past": "recited", - "past_participle": "recited" - }, - { - "infinitive": "mountebank", - "present": "mountebanks", - "gerund": "mountebanking", - "past": "mountebanked", - "past_participle": "mountebanked" - }, - { - "infinitive": "re-count", - "present": "re-counts", - "gerund": "re-counting", - "past": "recounted", - "past_participle": "re-counted" - }, - { - "infinitive": "sporulate", - "present": "sporulates", - "gerund": "sporulating", - "past": "sporulated", - "past_participle": "sporulated" - }, - { - "infinitive": "rank", - "present": "ranks", - "gerund": "ranking", - "past": "ranked", - "past_participle": "ranked" - }, - { - "infinitive": "bushwhack", - "present": "bushwhacks", - "gerund": "bushwhacking", - "past": "bushwhacked", - "past_participle": "bushwhacked" - }, - { - "infinitive": "bombard", - "present": "bombards", - "gerund": "bombarding", - "past": "bombarded", - "past_participle": "bombarded" - }, - { - "infinitive": "phantasy", - "present": "phantasies", - "gerund": "phantasying", - "past": "phantasied", - "past_participle": "phantasied" - }, - { - "infinitive": "vaticinate", - "present": "vaticinates", - "gerund": "vaticinating", - "past": "vaticinated", - "past_participle": "vaticinated" - }, - { - "infinitive": "sober", - "present": "sobers", - "gerund": "sobering", - "past": "sobered", - "past_participle": "sobered" - }, - { - "infinitive": "categorize", - "present": "categorizes", - "gerund": "categorizing", - "past": "categorized", - "past_participle": "categorized" - }, - { - "infinitive": "nip", - "present": "nips", - "gerund": "nipping", - "past": "nipped", - "past_participle": "nippped" - }, - { - "infinitive": "top", - "present": "tops", - "gerund": "topping", - "past": "topped", - "past_participle": "topped" - }, - { - "infinitive": "tow", - "present": "tows", - "gerund": "towing", - "past": "towed", - "past_participle": "towed" - }, - { - "infinitive": "tot", - "present": "tots", - "gerund": "totting", - "past": "totted", - "past_participle": "totted" - }, - { - "infinitive": "overact", - "present": "overacts", - "gerund": "overacting", - "past": "overacted", - "past_participle": "overacted" - }, - { - "infinitive": "straighten", - "present": "straightens", - "gerund": "straightening", - "past": "straightened", - "past_participle": "straightened" - }, - { - "infinitive": "bethink", - "present": "bethinks", - "gerund": "bethinking", - "past": "bethought", - "past_participle": "bethought" - }, - { - "infinitive": "tog", - "present": "togs", - "gerund": "togging", - "past": "togged", - "past_participle": "togged" - }, - { - "infinitive": "toe", - "present": "toes", - "gerund": "toeing", - "past": "toed", - "past_participle": "toed" - }, - { - "infinitive": "murder", - "present": "murders", - "gerund": "murdering", - "past": "murdered", - "past_participle": "murdered" - }, - { - "infinitive": "overdraw", - "present": "overdraws", - "gerund": "overdrawing", - "past": "overdrew", - "past_participle": "overdrawn" - }, - { - "infinitive": "tool", - "present": "tools", - "gerund": "tooling", - "past": "tooled", - "past_participle": "tooled" - }, - { - "infinitive": "serve", - "present": "serves", - "gerund": "serving", - "past": "served", - "past_participle": "served" - }, - { - "infinitive": "punctuate", - "present": "punctuates", - "gerund": "punctuating", - "past": "punctuated", - "past_participle": "punctuated" - }, - { - "infinitive": "embellish", - "present": "embellishes", - "gerund": "embellishing", - "past": "embellished", - "past_participle": "embellished" - }, - { - "infinitive": "flimflam", - "present": "flimflams", - "gerund": "flimflamming", - "past": "flimflammed", - "past_participle": "flimflammed" - }, - { - "infinitive": "wrapped", - "present": "wrappeds", - "gerund": "wrappeding", - "past": "wrappeded", - "past_participle": "wrappeded" - }, - { - "infinitive": "toot", - "present": "toots", - "gerund": "tooting", - "past": "tooted", - "past_participle": "tooted" - }, - { - "infinitive": "incur", - "present": "incurs", - "gerund": "incurring", - "past": "incurred", - "past_participle": "incurred" - }, - { - "infinitive": "drool", - "present": "drools", - "gerund": "drooling", - "past": "drooled", - "past_participle": "drooled" - }, - { - "infinitive": "gelatinize", - "present": "gelatinizes", - "gerund": "gelatinizing", - "past": "gelatinized", - "past_participle": "gelatinized" - }, - { - "infinitive": "pluralize", - "present": "pluralizes", - "gerund": "pluralizing", - "past": "pluralized", - "past_participle": "pluralized" - }, - { - "infinitive": "rampage", - "present": "rampages", - "gerund": "rampaging", - "past": "rampaged", - "past_participle": "rampaged" - }, - { - "infinitive": "nominate", - "present": "nominates", - "gerund": "nominating", - "past": "nominated", - "past_participle": "nominated" - }, - { - "infinitive": "flame", - "present": "flames", - "gerund": "flaming", - "past": "flamed", - "past_participle": "flamed" - }, - { - "infinitive": "expostulate", - "present": "expostulates", - "gerund": "expostulating", - "past": "expostulated", - "past_participle": "expostulated" - }, - { - "infinitive": "beard", - "present": "beards", - "gerund": "bearding", - "past": "bearded", - "past_participle": "bearded" - }, - { - "infinitive": "bridge", - "present": "bridges", - "gerund": "bridging", - "past": "bridged", - "past_participle": "bridged" - }, - { - "infinitive": "fashion", - "present": "fashions", - "gerund": "fashioning", - "past": "fashioned", - "past_participle": "fashioned" - }, - { - "infinitive": "barbarize", - "present": "barbarizes", - "gerund": "barbarizing", - "past": "barbarized", - "past_participle": "barbarized" - }, - { - "infinitive": "ram", - "present": "rams", - "gerund": "ramming", - "past": "rammed", - "past_participle": "rammed" - }, - { - "infinitive": "taint", - "present": "taints", - "gerund": "tainting", - "past": "tainted", - "past_participle": "tainted" - }, - { - "infinitive": "shillyshally", - "present": "shillyshallies", - "gerund": "shillyshallying", - "past": "shillyshallied", - "past_participle": "shillyshallied" - }, - { - "infinitive": "rat", - "present": "rats", - "gerund": "ratting", - "past": "ratted", - "past_participle": "ratted" - }, - { - "infinitive": "rap", - "present": "raps", - "gerund": "rapping", - "past": "rapped", - "past_participle": "rapped" - }, - { - "infinitive": "protract", - "present": "protracts", - "gerund": "protracting", - "past": "protracted", - "past_participle": "protracted" - }, - { - "infinitive": "gabble", - "present": "gabbles", - "gerund": "gabbling", - "past": "gabbled", - "past_participle": "gabbled" - }, - { - "infinitive": "spade", - "present": "spades", - "gerund": "spading", - "past": "spaded", - "past_participle": "spaded" - }, - { - "infinitive": "configure", - "present": "configures", - "gerund": "configuring", - "past": "configured", - "past_participle": "configured" - }, - { - "infinitive": "relapse", - "present": "relapses", - "gerund": "relapsing", - "past": "relapsed", - "past_participle": "relapsed" - }, - { - "infinitive": "snow", - "present": "snows", - "gerund": "snowing", - "past": "snowed", - "past_participle": "snowed" - }, - { - "infinitive": "hatch", - "present": "hatches", - "gerund": "hatching", - "past": "hatched", - "past_participle": "hatched" - }, - { - "infinitive": "cleft", - "present": "clefts", - "gerund": "clefting", - "past": "clefted", - "past_participle": "clefted" - }, - { - "infinitive": "snog", - "present": "snogs", - "gerund": "snogging", - "past": "snogged", - "past_participle": "snogged" - }, - { - "infinitive": "hotdog", - "present": "hotdogs", - "gerund": "hotdoging", - "past": "hotdoged", - "past_participle": "hotdoged" - }, - { - "infinitive": "predigest", - "present": "predigests", - "gerund": "predigesting", - "past": "predigested", - "past_participle": "predigested" - }, - { - "infinitive": "intellectualize", - "present": "intellectualizes", - "gerund": "intellectualizing", - "past": "intellectualized", - "past_participle": "intellectualized" - }, - { - "infinitive": "bename", - "present": "benames", - "gerund": "benaming", - "past": "benempt", - "past_participle": "benempt" - }, - { - "infinitive": "audition", - "present": "auditions", - "gerund": "auditioning", - "past": "auditioned", - "past_participle": "auditioned" - }, - { - "infinitive": "coif", - "present": "coifs", - "gerund": "coiffing", - "past": "coiffed", - "past_participle": "coiffed" - }, - { - "infinitive": "coil", - "present": "coils", - "gerund": "coiling", - "past": "coiled", - "past_participle": "coiled" - }, - { - "infinitive": "coin", - "present": "coins", - "gerund": "coining", - "past": "coined", - "past_participle": "coined" - }, - { - "infinitive": "glow", - "present": "glows", - "gerund": "glowing", - "past": "glowed", - "past_participle": "glowed" - }, - { - "infinitive": "whinge", - "present": "whinges", - "gerund": "whinging", - "past": "whinged", - "past_participle": "whinged" - }, - { - "infinitive": "extravagate", - "present": "extravagates", - "gerund": "extravagating", - "past": "extravagated", - "past_participle": "extravagated" - }, - { - "infinitive": "interject", - "present": "interjects", - "gerund": "interjecting", - "past": "interjected", - "past_participle": "interjected" - }, - { - "infinitive": "partition", - "present": "partitions", - "gerund": "partitioning", - "past": "partitioned", - "past_participle": "partitioned" - }, - { - "infinitive": "flow", - "present": "flows", - "gerund": "flowing", - "past": "flowed", - "past_participle": "flowed" - }, - { - "infinitive": "sulphurate", - "present": "sulphurates", - "gerund": "sulphurating", - "past": "sulphurated", - "past_participle": "sulphurated" - }, - { - "infinitive": "caterwaul", - "present": "caterwauls", - "gerund": "caterwauling", - "past": "caterwauled", - "past_participle": "caterwauled" - }, - { - "infinitive": "perorate", - "present": "perorates", - "gerund": "perorating", - "past": "perorated", - "past_participle": "perorated" - }, - { - "infinitive": "transpire", - "present": "transpires", - "gerund": "transpiring", - "past": "transpired", - "past_participle": "transpired" - }, - { - "infinitive": "outjockey", - "present": "outjockeys", - "gerund": "outjockeying", - "past": "outjockeyed", - "past_participle": "outjockeyed" - }, - { - "infinitive": "joy-ride", - "present": "joy-rides", - "gerund": "joy-riding", - "past": "joy-rided", - "past_participle": "joy-rided" - }, - { - "infinitive": "flog", - "present": "flogs", - "gerund": "flogging", - "past": "flogged", - "past_participle": "flogged" - }, - { - "infinitive": "yank", - "present": "yanks", - "gerund": "yanking", - "past": "yanked", - "past_participle": "yanked" - }, - { - "infinitive": "bait", - "present": "baits", - "gerund": "baiting", - "past": "baited", - "past_participle": "baited" - }, - { - "infinitive": "inspire", - "present": "inspires", - "gerund": "inspiring", - "past": "inspired", - "past_participle": "inspired" - }, - { - "infinitive": "endear", - "present": "endears", - "gerund": "endearing", - "past": "endeared", - "past_participle": "endeared" - }, - { - "infinitive": "alight", - "present": "alights", - "gerund": "alighting", - "past": "alighted", - "past_participle": "alighted" - }, - { - "infinitive": "reorganize", - "present": "reorganizes", - "gerund": "reorganizing", - "past": "reorganized", - "past_participle": "reorganized" - }, - { - "infinitive": "queen", - "present": "queens", - "gerund": "queening", - "past": "queened", - "past_participle": "queened" - }, - { - "infinitive": "skitter", - "present": "skitters", - "gerund": "skittering", - "past": "skittered", - "past_participle": "skittered" - }, - { - "infinitive": "dupe", - "present": "dupes", - "gerund": "duping", - "past": "duped", - "past_participle": "duped" - }, - { - "infinitive": "geometrize", - "present": "geometrizes", - "gerund": "geometrizing", - "past": "geometrized", - "past_participle": "geometrized" - }, - { - "infinitive": "reissue", - "present": "reissues", - "gerund": "reissuing", - "past": "reissued", - "past_participle": "reissued" - }, - { - "infinitive": "radio", - "present": "radios", - "gerund": "radioing", - "past": "radioed", - "past_participle": "radioed" - }, - { - "infinitive": "drabble", - "present": "drabbles", - "gerund": "drabbling", - "past": "drabbled", - "past_participle": "drabbled" - }, - { - "infinitive": "chiack", - "present": "chiacks", - "gerund": "chiacking", - "past": "chiacked", - "past_participle": "chiacked" - }, - { - "infinitive": "earth", - "present": "earths", - "gerund": "earthing", - "past": "earthed", - "past_participle": "earthed" - }, - { - "infinitive": "peddle", - "present": "peddles", - "gerund": "peddling", - "past": "peddled", - "past_participle": "peddled" - }, - { - "infinitive": "bail", - "present": "bails", - "gerund": "bailing", - "past": "bailed", - "past_participle": "bailed" - }, - { - "infinitive": "spite", - "present": "spites", - "gerund": "spiting", - "past": "spited", - "past_participle": "spited" - }, - { - "infinitive": "dateline", - "present": "datelines", - "gerund": "datelining", - "past": "datelined", - "past_participle": "datelined" - }, - { - "infinitive": "abjure", - "present": "abjures", - "gerund": "abjuring", - "past": "abjured", - "past_participle": "abjured" - }, - { - "infinitive": "overeat", - "present": "overeats", - "gerund": "overeating", - "past": "overate", - "past_participle": "overeaten" - }, - { - "infinitive": "poussette", - "present": "poussettes", - "gerund": "poussetting", - "past": "poussetted", - "past_participle": "poussetted" - }, - { - "infinitive": "disgust", - "present": "disgusts", - "gerund": "disgusting", - "past": "disgusted", - "past_participle": "disgusted" - }, - { - "infinitive": "secondguess", - "present": "secondguesses", - "gerund": "secondguessing", - "past": "secondguessed", - "past_participle": "secondguessed" - }, - { - "infinitive": "lodge", - "present": "lodges", - "gerund": "lodging", - "past": "lodged", - "past_participle": "lodged" - }, - { - "infinitive": "announce", - "present": "announces", - "gerund": "announcing", - "past": "announced", - "past_participle": "announced" - }, - { - "infinitive": "capriole", - "present": "caprioles", - "gerund": "caprioling", - "past": "caprioled", - "past_participle": "caprioled" - }, - { - "infinitive": "waltz", - "present": "waltzes", - "gerund": "waltzing", - "past": "waltzed", - "past_participle": "waltzed" - }, - { - "infinitive": "watch", - "present": "watches", - "gerund": "watching", - "past": "watched", - "past_participle": "watched" - }, - { - "infinitive": "baffle", - "present": "baffles", - "gerund": "baffling", - "past": "baffled", - "past_participle": "baffled" - }, - { - "infinitive": "oversell", - "present": "oversells", - "gerund": "overselling", - "past": "oversold", - "past_participle": "oversold" - }, - { - "infinitive": "despite", - "present": "despites", - "gerund": "despiting", - "past": "despited", - "past_participle": "despited" - }, - { - "infinitive": "report", - "present": "reports", - "gerund": "reporting", - "past": "reported", - "past_participle": "reported" - }, - { - "infinitive": "reconstruct", - "present": "reconstructs", - "gerund": "reconstructing", - "past": "reconstructed", - "past_participle": "reconstructed" - }, - { - "infinitive": "incept", - "present": "incepts", - "gerund": "incepting", - "past": "incepted", - "past_participle": "incepted" - }, - { - "infinitive": "unlatch", - "present": "unlatches", - "gerund": "unlatching", - "past": "unlatched", - "past_participle": "unlatched" - }, - { - "infinitive": "hospitalize", - "present": "hospitalizes", - "gerund": "hospitalizing", - "past": "hospitalized", - "past_participle": "hospitalized" - }, - { - "infinitive": "peroxide", - "present": "peroxides", - "gerund": "peroxiding", - "past": "peroxided", - "past_participle": "peroxided" - }, - { - "infinitive": "erupt", - "present": "erupts", - "gerund": "erupting", - "past": "erupted", - "past_participle": "erupted" - }, - { - "infinitive": "disembroil", - "present": "disembroils", - "gerund": "disembroiling", - "past": "disembroiled", - "past_participle": "disembroiled" - }, - { - "infinitive": "ritualize", - "present": "ritualizes", - "gerund": "ritualizing", - "past": "ritualized", - "past_participle": "ritualized" - }, - { - "infinitive": "penance", - "present": "penances", - "gerund": "penancing", - "past": "penanced", - "past_participle": "penanced" - }, - { - "infinitive": "pummel", - "present": "pummels", - "gerund": "pummelling", - "past": "pummelled", - "past_participle": "pummelled" - }, - { - "infinitive": "habit", - "present": "habits", - "gerund": "habiting", - "past": "habited", - "past_participle": "habited" - }, - { - "infinitive": "wrest", - "present": "wrests", - "gerund": "wresting", - "past": "wrested", - "past_participle": "wrested" - }, - { - "infinitive": "liquor", - "present": "liquors", - "gerund": "liquoring", - "past": "liquored", - "past_participle": "liquored" - }, - { - "infinitive": "preordain", - "present": "preordains", - "gerund": "preordaining", - "past": "preordained", - "past_participle": "preordained" - }, - { - "infinitive": "resist", - "present": "resists", - "gerund": "resisting", - "past": "resisted", - "past_participle": "resisted" - }, - { - "infinitive": "pize", - "present": "pizes", - "gerund": "pizing", - "past": "pized", - "past_participle": "pized" - }, - { - "infinitive": "corrupt", - "present": "corrupts", - "gerund": "corrupting", - "past": "corrupted", - "past_participle": "corrupted" - }, - { - "infinitive": "percuss", - "present": "percusses", - "gerund": "percussing", - "past": "percussed", - "past_participle": "percussed" - }, - { - "infinitive": "suberize", - "present": "suberizes", - "gerund": "suberizing", - "past": "suberized", - "past_participle": "suberized" - }, - { - "infinitive": "sovietize", - "present": "sovietizes", - "gerund": "sovietizing", - "past": "sovietized", - "past_participle": "sovietized" - }, - { - "infinitive": "accede", - "present": "accedes", - "gerund": "acceding", - "past": "acceded", - "past_participle": "acceded" - }, - { - "infinitive": "hallow", - "present": "hallows", - "gerund": "hallowing", - "past": "hallowed", - "past_participle": "hallowed" - }, - { - "infinitive": "mud", - "present": "muds", - "gerund": "mudding", - "past": "mudded", - "past_participle": "mudded" - }, - { - "infinitive": "catalogue", - "present": "catalogues", - "gerund": "cataloguing", - "past": "catalogued", - "past_participle": "catalogued" - }, - { - "infinitive": "bestride", - "present": "bestrides", - "gerund": "bestriding", - "past": "bestrode", - "past_participle": "bestrode" - }, - { - "infinitive": "finger", - "present": "fingers", - "gerund": "fingering", - "past": "fingered", - "past_participle": "fingered" - }, - { - "infinitive": "mumm", - "present": "mums", - "gerund": "mumming", - "past": "mummed", - "past_participle": "mummed" - }, - { - "infinitive": "approach", - "present": "approaches", - "gerund": "approaching", - "past": "approached", - "past_participle": "approached" - }, - { - "infinitive": "drowse", - "present": "drowses", - "gerund": "drowsing", - "past": "drowsed", - "past_participle": "drowsed" - }, - { - "infinitive": "liaise", - "present": "liaises", - "gerund": "liaising", - "past": "liaised", - "past_participle": "liaised" - }, - { - "infinitive": "opsonize", - "present": "opsonizes", - "gerund": "opsonizing", - "past": "opsonized", - "past_participle": "opsonized" - }, - { - "infinitive": "wean", - "present": "weans", - "gerund": "weaning", - "past": "weaned", - "past_participle": "weaned" - }, - { - "infinitive": "contort", - "present": "contorts", - "gerund": "contorting", - "past": "contorted", - "past_participle": "contorted" - }, - { - "infinitive": "boss", - "present": "bosses", - "gerund": "bossing", - "past": "bossed", - "past_participle": "bossed" - }, - { - "infinitive": "tarry", - "present": "tarries", - "gerund": "tarrying", - "past": "tarried", - "past_participle": "tarried" - }, - { - "infinitive": "devour", - "present": "devours", - "gerund": "devouring", - "past": "devoured", - "past_participle": "devoured" - }, - { - "infinitive": "wear", - "present": "wears", - "gerund": "wearing", - "past": "wore", - "past_participle": "worn" - }, - { - "infinitive": "incross", - "present": "incrosses", - "gerund": "incrossing", - "past": "incrossed", - "past_participle": "incrossed" - }, - { - "infinitive": "improve", - "present": "improves", - "gerund": "improving", - "past": "improved", - "past_participle": "improved" - }, - { - "infinitive": "circumvallate", - "present": "circumvallates", - "gerund": "circumvallating", - "past": "circumvallated", - "past_participle": "circumvallated" - }, - { - "infinitive": "free-wheel", - "present": "free-wheels", - "gerund": "freewheeling", - "past": "freewheeled", - "past_participle": "free-wheeled" - }, - { - "infinitive": "fault", - "present": "faults", - "gerund": "faulting", - "past": "faulted", - "past_participle": "faulted" - }, - { - "infinitive": "reconnoitre", - "present": "reconnoitres", - "gerund": "reconnoitring", - "past": "reconnoitred", - "past_participle": "reconnoitred" - }, - { - "infinitive": "jelly", - "present": "jellies", - "gerund": "jellying", - "past": "jellied", - "past_participle": "jellied" - }, - { - "infinitive": "disengage", - "present": "disengages", - "gerund": "disengaging", - "past": "disengaged", - "past_participle": "disengaged" - }, - { - "infinitive": "tattle", - "present": "tattles", - "gerund": "tattling", - "past": "tattled", - "past_participle": "tattled" - }, - { - "infinitive": "expense", - "present": "expenses", - "gerund": "expensing", - "past": "expensed", - "past_participle": "expensed" - }, - { - "infinitive": "stipple", - "present": "stipples", - "gerund": "stippling", - "past": "stippled", - "past_participle": "stippled" - }, - { - "infinitive": "confide", - "present": "confides", - "gerund": "confiding", - "past": "confided", - "past_participle": "confided" - }, - { - "infinitive": "inactivate", - "present": "inactivates", - "gerund": "inactivating", - "past": "inactivated", - "past_participle": "inactivated" - }, - { - "infinitive": "trust", - "present": "trusts", - "gerund": "trusting", - "past": "trusted", - "past_participle": "trusted" - }, - { - "infinitive": "truss", - "present": "trusses", - "gerund": "trussing", - "past": "trussed", - "past_participle": "trussed" - }, - { - "infinitive": "beef", - "present": "beefs", - "gerund": "beefing", - "past": "beefed", - "past_participle": "beefed" - }, - { - "infinitive": "tyrannize", - "present": "tyrannizes", - "gerund": "tyrannizing", - "past": "tyrannized", - "past_participle": "tyrannized" - }, - { - "infinitive": "unsphere", - "present": "unspheres", - "gerund": "unsphering", - "past": "unsphered", - "past_participle": "unsphered" - }, - { - "infinitive": "beep", - "present": "beeps", - "gerund": "beeping", - "past": "beeped", - "past_participle": "beeped" - }, - { - "infinitive": "brutify", - "present": "brutifies", - "gerund": "brutifying", - "past": "brutified", - "past_participle": "brutified" - }, - { - "infinitive": "loft", - "present": "lofts", - "gerund": "lofting", - "past": "lofted", - "past_participle": "lofted" - }, - { - "infinitive": "steamroller", - "present": "steamrollers", - "gerund": "steamrollering", - "past": "steamrollered", - "past_participle": "steamrollered" - }, - { - "infinitive": "ambulate", - "present": "ambulates", - "gerund": "ambulating", - "past": "ambulated", - "past_participle": "ambulated" - }, - { - "infinitive": "craft", - "present": "crafts", - "gerund": "crafting", - "past": "crafted", - "past_participle": "crafted" - }, - { - "infinitive": "chase", - "present": "chases", - "gerund": "chasing", - "past": "chased", - "past_participle": "chased" - }, - { - "infinitive": "catch", - "present": "catches", - "gerund": "catching", - "past": "caught", - "past_participle": "caught" - }, - { - "infinitive": "proselytize", - "present": "proselytizes", - "gerund": "proselytizing", - "past": "proselytized", - "past_participle": "proselytized" - }, - { - "infinitive": "sallow", - "present": "sallows", - "gerund": "sallowing", - "past": "sallowed", - "past_participle": "sallowed" - }, - { - "infinitive": "rattoon", - "present": "", - "gerund": "rattooning", - "past": "rattooned", - "past_participle": "rattooned" - }, - { - "infinitive": "schlep", - "present": "schleps", - "gerund": "schlepping", - "past": "schlepped", - "past_participle": "schlepped" - }, - { - "infinitive": "lessen", - "present": "lessens", - "gerund": "lessening", - "past": "lessened", - "past_participle": "lessened" - }, - { - "infinitive": "fallow", - "present": "fallows", - "gerund": "fallowing", - "past": "fallowed", - "past_participle": "fallowed" - }, - { - "infinitive": "zindabad", - "present": "zindabads", - "gerund": "zindabading", - "past": "zindabaded", - "past_participle": "zindabaded" - }, - { - "infinitive": "subjugate", - "present": "subjugates", - "gerund": "subjugating", - "past": "subjugated", - "past_participle": "subjugated" - }, - { - "infinitive": "precede", - "present": "precedes", - "gerund": "preceding", - "past": "preceded", - "past_participle": "preceded" - }, - { - "infinitive": "pyramid", - "present": "pyramids", - "gerund": "pyramiding", - "past": "pyramided", - "past_participle": "pyramided" - }, - { - "infinitive": "untuck", - "present": "untucks", - "gerund": "untucking", - "past": "untucked", - "past_participle": "untucked" - }, - { - "infinitive": "chyack", - "present": "chyacks", - "gerund": "chyacking", - "past": "chyacked", - "past_participle": "chyacked" - }, - { - "infinitive": "descant", - "present": "descants", - "gerund": "descanting", - "past": "descanted", - "past_participle": "descanted" - }, - { - "infinitive": "comminute", - "present": "comminutes", - "gerund": "comminuting", - "past": "comminuted", - "past_participle": "comminuted" - }, - { - "infinitive": "tease", - "present": "teases", - "gerund": "teasing", - "past": "teased", - "past_participle": "teased" - }, - { - "infinitive": "rough-house", - "present": "rough-houses", - "gerund": "rough-housing", - "past": "roughhoused", - "past_participle": "rough-housed" - }, - { - "infinitive": "surcharge", - "present": "surcharges", - "gerund": "surcharging", - "past": "surcharged", - "past_participle": "surcharged" - }, - { - "infinitive": "suggest", - "present": "suggests", - "gerund": "suggesting", - "past": "suggested", - "past_participle": "suggested" - }, - { - "infinitive": "outface", - "present": "outfaces", - "gerund": "outfacing", - "past": "outfaced", - "past_participle": "outfaced" - }, - { - "infinitive": "inventory", - "present": "inventories", - "gerund": "inventorying", - "past": "inventoried", - "past_participle": "inventoried" - }, - { - "infinitive": "esquire", - "present": "esquires", - "gerund": "esquiring", - "past": "esquired", - "past_participle": "esquired" - }, - { - "infinitive": "rontgenize", - "present": "rontgenizes", - "gerund": "rontgenizing", - "past": "rontgenized", - "past_participle": "rontgenized" - }, - { - "infinitive": "welsh", - "present": "welshes", - "gerund": "welshing", - "past": "welshed", - "past_participle": "welshed" - }, - { - "infinitive": "deflect", - "present": "deflects", - "gerund": "deflecting", - "past": "deflected", - "past_participle": "deflected" - }, - { - "infinitive": "cycle", - "present": "cycles", - "gerund": "cycling", - "past": "cycled", - "past_participle": "cycled" - }, - { - "infinitive": "dado", - "present": "dados", - "gerund": "dadoing", - "past": "dadoed", - "past_participle": "dadoed" - }, - { - "infinitive": "specialize", - "present": "specializes", - "gerund": "specializing", - "past": "specialized", - "past_participle": "specialized" - }, - { - "infinitive": "ruralize", - "present": "ruralizes", - "gerund": "ruralizing", - "past": "ruralized", - "past_participle": "ruralized" - }, - { - "infinitive": "doff", - "present": "doffs", - "gerund": "doffing", - "past": "doffed", - "past_participle": "doffed" - }, - { - "infinitive": "mother", - "present": "mothers", - "gerund": "mothering", - "past": "mothered", - "past_participle": "mothered" - }, - { - "infinitive": "dissimulate", - "present": "dissimulates", - "gerund": "dissimulating", - "past": "dissimulated", - "past_participle": "dissimulated" - }, - { - "infinitive": "jook", - "present": "jooks", - "gerund": "jooking", - "past": "jooked", - "past_participle": "jooked" - }, - { - "infinitive": "bugger", - "present": "buggers", - "gerund": "buggering", - "past": "buggered", - "past_participle": "buggered" - }, - { - "infinitive": "appease", - "present": "appeases", - "gerund": "appeasing", - "past": "appeased", - "past_participle": "appeased" - }, - { - "infinitive": "goffer", - "present": "goffers", - "gerund": "goffering", - "past": "goffered", - "past_participle": "goffered" - }, - { - "infinitive": "bruise", - "present": "bruises", - "gerund": "bruising", - "past": "bruised", - "past_participle": "bruised" - }, - { - "infinitive": "exuberate", - "present": "exuberates", - "gerund": "exuberating", - "past": "exuberated", - "past_participle": "exuberated" - }, - { - "infinitive": "ingeminate", - "present": "ingeminates", - "gerund": "ingeminating", - "past": "ingeminated", - "past_participle": "ingeminated" - }, - { - "infinitive": "modulate", - "present": "modulates", - "gerund": "modulating", - "past": "modulated", - "past_participle": "modulated" - }, - { - "infinitive": "enlighten", - "present": "enlightens", - "gerund": "enlightening", - "past": "enlightened", - "past_participle": "enlightened" - }, - { - "infinitive": "fathom", - "present": "fathoms", - "gerund": "fathoming", - "past": "fathomed", - "past_participle": "fathomed" - }, - { - "infinitive": "scruple", - "present": "scruples", - "gerund": "scrupling", - "past": "scrupled", - "past_participle": "scrupled" - }, - { - "infinitive": "evaginate", - "present": "evaginates", - "gerund": "evaginating", - "past": "evaginated", - "past_participle": "evaginated" - }, - { - "infinitive": "misprint", - "present": "misprints", - "gerund": "misprinting", - "past": "misprinted", - "past_participle": "misprinted" - }, - { - "infinitive": "overcapitalize", - "present": "overcapitalizes", - "gerund": "overcapitalizing", - "past": "overcapitalized", - "past_participle": "overcapitalized" - }, - { - "infinitive": "bandy", - "present": "bandies", - "gerund": "bandying", - "past": "bandied", - "past_participle": "bandied" - }, - { - "infinitive": "barrel-roll", - "present": "barrel-rolls", - "gerund": "barrel-rolling", - "past": "barrel-rolled", - "past_participle": "barrel-rolled" - }, - { - "infinitive": "belabour", - "present": "belabours", - "gerund": "belabouring", - "past": "belaboured", - "past_participle": "belaboured" - }, - { - "infinitive": "regelate", - "present": "regelates", - "gerund": "regelating", - "past": "regelated", - "past_participle": "regelated" - }, - { - "infinitive": "swingle", - "present": "swingles", - "gerund": "swingling", - "past": "swingled", - "past_participle": "swingled" - }, - { - "infinitive": "terrorize", - "present": "terrorizes", - "gerund": "terrorizing", - "past": "terrorized", - "past_participle": "terrorized" - }, - { - "infinitive": "upturn", - "present": "upturns", - "gerund": "upturning", - "past": "upturned", - "past_participle": "upturned" - }, - { - "infinitive": "dismount", - "present": "dismounts", - "gerund": "dismounting", - "past": "dismounted", - "past_participle": "dismounted" - }, - { - "infinitive": "pur_ee", - "present": "pur_ees", - "gerund": "pur_eeing", - "past": "pur_eed", - "past_participle": "pur_eed" - }, - { - "infinitive": "Nazify", - "present": "Nazifies", - "gerund": "Nazifying", - "past": "Nazified", - "past_participle": "Nazified" - }, - { - "infinitive": "reapportion", - "present": "reapportions", - "gerund": "reapportioning", - "past": "reapportioned", - "past_participle": "reapportioned" - }, - { - "infinitive": "judge", - "present": "judges", - "gerund": "judging", - "past": "judged", - "past_participle": "judged" - }, - { - "infinitive": "befit", - "present": "befits", - "gerund": "befitting", - "past": "befitted", - "past_participle": "befitted" - }, - { - "infinitive": "pectize", - "present": "pectizes", - "gerund": "pectizing", - "past": "pectized", - "past_participle": "pectized" - }, - { - "infinitive": "ditto", - "present": "dittos", - "gerund": "dittoing", - "past": "dittoed", - "past_participle": "dittoed" - }, - { - "infinitive": "gift", - "present": "gifts", - "gerund": "gifting", - "past": "gifted", - "past_participle": "gifted" - }, - { - "infinitive": "contradict", - "present": "contradicts", - "gerund": "contradicting", - "past": "contradicted", - "past_participle": "contradicted" - }, - { - "infinitive": "force-land", - "present": "force-lands", - "gerund": "force-landing", - "past": "force-landed", - "past_participle": "force-landed" - }, - { - "infinitive": "zoom", - "present": "zooms", - "gerund": "zooming", - "past": "zoomed", - "past_participle": "zoomed" - }, - { - "infinitive": "platinize", - "present": "platinizes", - "gerund": "platinizing", - "past": "platinized", - "past_participle": "platinized" - }, - { - "infinitive": "officer", - "present": "officers", - "gerund": "officering", - "past": "officered", - "past_participle": "officered" - }, - { - "infinitive": "eyelet", - "present": "eyelets", - "gerund": "eyeleting", - "past": "eyeleted", - "past_participle": "eyeleted" - }, - { - "infinitive": "forerun", - "present": "foreruns", - "gerund": "forerunning", - "past": "foreran", - "past_participle": "forerun" - }, - { - "infinitive": "anastomose", - "present": "anastomoses", - "gerund": "anastomosing", - "past": "anastomosed", - "past_participle": "anastomosed" - }, - { - "infinitive": "hunt", - "present": "hunts", - "gerund": "hunting", - "past": "hunted", - "past_participle": "hunted" - }, - { - "infinitive": "envision", - "present": "envisions", - "gerund": "envisioning", - "past": "envisioned", - "past_participle": "envisioned" - }, - { - "infinitive": "stereotype", - "present": "stereotypes", - "gerund": "stereotyping", - "past": "stereotyped", - "past_participle": "stereotyped" - }, - { - "infinitive": "excerpt", - "present": "excerpts", - "gerund": "excerpting", - "past": "excerpted", - "past_participle": "excerpted" - }, - { - "infinitive": "sponge", - "present": "sponges", - "gerund": "sponging", - "past": "sponged", - "past_participle": "sponged" - }, - { - "infinitive": "accost", - "present": "accosts", - "gerund": "accosting", - "past": "accosted", - "past_participle": "accosted" - }, - { - "infinitive": "scrabble", - "present": "scrabbles", - "gerund": "scrabbling", - "past": "scrabbled", - "past_participle": "scrabbled" - }, - { - "infinitive": "displeasure", - "present": "displeasures", - "gerund": "displeasuring", - "past": "displeasured", - "past_participle": "displeasured" - }, - { - "infinitive": "escape", - "present": "escapes", - "gerund": "scaping", - "past": "scaped", - "past_participle": "scaped" - }, - { - "infinitive": "advertize", - "present": "advertizes", - "gerund": "advertizing", - "past": "advertized", - "past_participle": "advertized" - }, - { - "infinitive": "manducate", - "present": "manducates", - "gerund": "manducating", - "past": "manducated", - "past_participle": "manducated" - }, - { - "infinitive": "totter", - "present": "totters", - "gerund": "tottering", - "past": "tottered", - "past_participle": "tottered" - }, - { - "infinitive": "cooper", - "present": "coopers", - "gerund": "coopering", - "past": "coopered", - "past_participle": "coopered" - }, - { - "infinitive": "clash", - "present": "clashes", - "gerund": "clashing", - "past": "clashed", - "past_participle": "clashed" - }, - { - "infinitive": "establish", - "present": "establishes", - "gerund": "establishing", - "past": "established", - "past_participle": "established" - }, - { - "infinitive": "aluminize", - "present": "aluminizes", - "gerund": "aluminizing", - "past": "aluminized", - "past_participle": "aluminized" - }, - { - "infinitive": "reinvest", - "present": "reinvests", - "gerund": "reinvesting", - "past": "reinvested", - "past_participle": "reinvested" - }, - { - "infinitive": "ice", - "present": "ices", - "gerund": "icing", - "past": "iced", - "past_participle": "iced" - }, - { - "infinitive": "backspace", - "present": "backspaces", - "gerund": "backspacing", - "past": "backspaced", - "past_participle": "backspaced" - }, - { - "infinitive": "allocate", - "present": "allocates", - "gerund": "allocating", - "past": "allocated", - "past_participle": "allocated" - }, - { - "infinitive": "convict", - "present": "convicts", - "gerund": "convicting", - "past": "convicted", - "past_participle": "convicted" - }, - { - "infinitive": "faff", - "present": "faffs", - "gerund": "faffing", - "past": "faffed", - "past_participle": "faffed" - }, - { - "infinitive": "cord", - "present": "cords", - "gerund": "cording", - "past": "corded", - "past_participle": "corded" - }, - { - "infinitive": "core", - "present": "cores", - "gerund": "coring", - "past": "cored", - "past_participle": "cored" - }, - { - "infinitive": "damask", - "present": "damasks", - "gerund": "damasking", - "past": "damasked", - "past_participle": "damasked" - }, - { - "infinitive": "brawl", - "present": "brawls", - "gerund": "brawling", - "past": "brawled", - "past_participle": "brawled" - }, - { - "infinitive": "corn", - "present": "corns", - "gerund": "corning", - "past": "corned", - "past_participle": "corned" - }, - { - "infinitive": "bromate", - "present": "bromates", - "gerund": "bromating", - "past": "bromated", - "past_participle": "bromated" - }, - { - "infinitive": "enunciate", - "present": "enunciates", - "gerund": "enunciating", - "past": "enunciated", - "past_participle": "enunciated" - }, - { - "infinitive": "cork", - "present": "corks", - "gerund": "corking", - "past": "corked", - "past_participle": "corked" - }, - { - "infinitive": "discount", - "present": "discounts", - "gerund": "discounting", - "past": "discounted", - "past_participle": "discounted" - }, - { - "infinitive": "stooge", - "present": "stooges", - "gerund": "stooging", - "past": "stooged", - "past_participle": "stooged" - }, - { - "infinitive": "shuck", - "present": "shucks", - "gerund": "shucking", - "past": "shucked", - "past_participle": "shucked" - }, - { - "infinitive": "garnishee", - "present": "garnishees", - "gerund": "garnisheeing", - "past": "garnisheed", - "past_participle": "garnisheed" - }, - { - "infinitive": "chapter", - "present": "chapters", - "gerund": "chaptering", - "past": "chaptered", - "past_participle": "chaptered" - }, - { - "infinitive": "choke", - "present": "chokes", - "gerund": "choking", - "past": "choked", - "past_participle": "choked" - }, - { - "infinitive": "enshroud", - "present": "enshrouds", - "gerund": "enshrouding", - "past": "enshrouded", - "past_participle": "enshrouded" - }, - { - "infinitive": "caulk", - "present": "caulks", - "gerund": "caulking", - "past": "caulked", - "past_participle": "caulked" - }, - { - "infinitive": "hyperbolize", - "present": "hyperbolizes", - "gerund": "hyperbolizing", - "past": "hyperbolized", - "past_participle": "hyperbolized" - }, - { - "infinitive": "insure", - "present": "insures", - "gerund": "insuring", - "past": "insured", - "past_participle": "insured" - }, - { - "infinitive": "inveigh", - "present": "inveighs", - "gerund": "inveighing", - "past": "inveighed", - "past_participle": "inveighed" - }, - { - "infinitive": "twitch", - "present": "twitches", - "gerund": "twitching", - "past": "twitched", - "past_participle": "twitched" - }, - { - "infinitive": "curry", - "present": "curries", - "gerund": "currying", - "past": "curried", - "past_participle": "curried" - }, - { - "infinitive": "blabber", - "present": "blabbers", - "gerund": "blabbering", - "past": "blabbered", - "past_participle": "blabbered" - }, - { - "infinitive": "decimalize", - "present": "decimalizes", - "gerund": "decimalizing", - "past": "decimalized", - "past_participle": "decimalized" - }, - { - "infinitive": "bate", - "present": "bates", - "gerund": "bating", - "past": "bated", - "past_participle": "bated" - }, - { - "infinitive": "disaffiliate", - "present": "disaffiliates", - "gerund": "disaffiliating", - "past": "disaffiliated", - "past_participle": "disaffiliated" - }, - { - "infinitive": "pronate", - "present": "pronates", - "gerund": "pronating", - "past": "pronated", - "past_participle": "pronated" - }, - { - "infinitive": "puzzle", - "present": "puzzles", - "gerund": "puzzling", - "past": "puzzled", - "past_participle": "puzzled" - }, - { - "infinitive": "bath", - "present": "baths", - "gerund": "", - "past": "bathed", - "past_participle": "bathed" - }, - { - "infinitive": "accommodate", - "present": "accommodates", - "gerund": "accommodating", - "past": "accommodated", - "past_participle": "accommodated" - }, - { - "infinitive": "emigrate", - "present": "emigrates", - "gerund": "emigrating", - "past": "emigrated", - "past_participle": "emigrated" - }, - { - "infinitive": "rely", - "present": "relies", - "gerund": "relying", - "past": "relied", - "past_participle": "relied" - }, - { - "infinitive": "deflagrate", - "present": "deflagrates", - "gerund": "deflagrating", - "past": "deflagrated", - "past_participle": "deflagrated" - }, - { - "infinitive": "disinterest", - "present": "disinterests", - "gerund": "disinteresting", - "past": "disinterested", - "past_participle": "disinterested" - }, - { - "infinitive": "scamper", - "present": "scampers", - "gerund": "scampering", - "past": "scampered", - "past_participle": "scampered" - }, - { - "infinitive": "transform", - "present": "transforms", - "gerund": "transforming", - "past": "transformed", - "past_participle": "transformed" - }, - { - "infinitive": "gig", - "present": "gigs", - "gerund": "gigging", - "past": "gigged", - "past_participle": "gigged" - }, - { - "infinitive": "gie", - "present": "gies", - "gerund": "gying", - "past": "gied", - "past_participle": "gied" - }, - { - "infinitive": "pamphleteer", - "present": "pamphleteers", - "gerund": "pamphleteering", - "past": "pamphleteered", - "past_participle": "pamphleteered" - }, - { - "infinitive": "gib", - "present": "gibs", - "gerund": "gibbing", - "past": "gibbed", - "past_participle": "gibbed" - }, - { - "infinitive": "gin", - "present": "gins", - "gerund": "ginning", - "past": "ginned", - "past_participle": "ginned" - }, - { - "infinitive": "head", - "present": "heads", - "gerund": "heading", - "past": "headed", - "past_participle": "headed" - }, - { - "infinitive": "heal", - "present": "heals", - "gerund": "healing", - "past": "healed", - "past_participle": "healed" - }, - { - "infinitive": "deny", - "present": "denies", - "gerund": "denying", - "past": "denied", - "past_participle": "denied" - }, - { - "infinitive": "wireless", - "present": "wirelesses", - "gerund": "wirelessing", - "past": "wirelessed", - "past_participle": "wirelessed" - }, - { - "infinitive": "heat", - "present": "heats", - "gerund": "heating", - "past": "het", - "past_participle": "het" - }, - { - "infinitive": "hear", - "present": "hears", - "gerund": "hearing", - "past": "heard", - "past_participle": "heard" - }, - { - "infinitive": "outfox", - "present": "outfoxes", - "gerund": "outfoxing", - "past": "outfoxed", - "past_participle": "outfoxed" - }, - { - "infinitive": "heap", - "present": "heaps", - "gerund": "heaping", - "past": "heaped", - "past_participle": "heaped" - }, - { - "infinitive": "choreograph", - "present": "choreographs", - "gerund": "choreographing", - "past": "choreographed", - "past_participle": "choreographed" - }, - { - "infinitive": "humiliate", - "present": "humiliates", - "gerund": "humiliating", - "past": "humiliated", - "past_participle": "humiliated" - }, - { - "infinitive": "counsel", - "present": "counsels", - "gerund": "counselling", - "past": "counselled", - "past_participle": "counselled" - }, - { - "infinitive": "flavour", - "present": "flavours", - "gerund": "flavouring", - "past": "flavoured", - "past_participle": "flavoured" - }, - { - "infinitive": "muster", - "present": "musters", - "gerund": "mustering", - "past": "mustered", - "past_participle": "mustered" - }, - { - "infinitive": "unpin", - "present": "unpins", - "gerund": "unpinning", - "past": "unpinned", - "past_participle": "unpinned" - }, - { - "infinitive": "bargain", - "present": "bargains", - "gerund": "bargaining", - "past": "bargained", - "past_participle": "bargained" - }, - { - "infinitive": "incumber", - "present": "incumbers", - "gerund": "incumbering", - "past": "incumbered", - "past_participle": "incumbered" - }, - { - "infinitive": "adore", - "present": "adores", - "gerund": "adoring", - "past": "adored", - "past_participle": "adored" - }, - { - "infinitive": "decorate", - "present": "decorates", - "gerund": "decorating", - "past": "decorated", - "past_participle": "decorated" - }, - { - "infinitive": "sling", - "present": "slings", - "gerund": "slinging", - "past": "slung", - "past_participle": "slung" - }, - { - "infinitive": "usher", - "present": "ushers", - "gerund": "ushering", - "past": "ushered", - "past_participle": "ushered" - }, - { - "infinitive": "bide", - "present": "bides", - "gerund": "biding", - "past": "bided", - "past_participle": "bided" - }, - { - "infinitive": "latch", - "present": "latches", - "gerund": "latching", - "past": "latched", - "past_participle": "latched" - }, - { - "infinitive": "adorn", - "present": "adorns", - "gerund": "adorning", - "past": "adorned", - "past_participle": "adorned" - }, - { - "infinitive": "trim", - "present": "trims", - "gerund": "trimming", - "past": "trimmed", - "past_participle": "trimmed" - }, - { - "infinitive": "forearm", - "present": "forearms", - "gerund": "forearming", - "past": "forearmed", - "past_participle": "forearmed" - }, - { - "infinitive": "trig", - "present": "trigs", - "gerund": "trigging", - "past": "trigged", - "past_participle": "trigged" - }, - { - "infinitive": "decrypt", - "present": "decrypts", - "gerund": "decrypting", - "past": "decrypted", - "past_participle": "decrypted" - }, - { - "infinitive": "depone", - "present": "depones", - "gerund": "deponing", - "past": "deponed", - "past_participle": "deponed" - }, - { - "infinitive": "effervesce", - "present": "effervesces", - "gerund": "effervescing", - "past": "effervesced", - "past_participle": "effervesced" - }, - { - "infinitive": "check", - "present": "checks", - "gerund": "checking", - "past": "checked", - "past_participle": "checked" - }, - { - "infinitive": "approbate", - "present": "approbates", - "gerund": "approbating", - "past": "approbated", - "past_participle": "approbated" - }, - { - "infinitive": "salify", - "present": "salifies", - "gerund": "salifying", - "past": "salified", - "past_participle": "salified" - }, - { - "infinitive": "inspissate", - "present": "inspissates", - "gerund": "inspissating", - "past": "inspissated", - "past_participle": "inspissated" - }, - { - "infinitive": "tip", - "present": "tips", - "gerund": "tipping", - "past": "tipped", - "past_participle": "tipped" - }, - { - "infinitive": "foozle", - "present": "foozles", - "gerund": "foozling", - "past": "foozled", - "past_participle": "foozled" - }, - { - "infinitive": "piffle", - "present": "piffles", - "gerund": "piffling", - "past": "piffled", - "past_participle": "piffled" - }, - { - "infinitive": "sulphurize", - "present": "sulphurizes", - "gerund": "sulphurizing", - "past": "sulphurized", - "past_participle": "sulphurized" - }, - { - "infinitive": "overbid", - "present": "overbids", - "gerund": "overbidding", - "past": "overbid", - "past_participle": "overbidden" - }, - { - "infinitive": "tin", - "present": "tins", - "gerund": "tinning", - "past": "tinned", - "past_participle": "tinned" - }, - { - "infinitive": "disarticulate", - "present": "disarticulates", - "gerund": "disarticulating", - "past": "disarticulated", - "past_participle": "disarticulated" - }, - { - "infinitive": "whet", - "present": "whets", - "gerund": "whetting", - "past": "whetted", - "past_participle": "whetted" - }, - { - "infinitive": "signpost", - "present": "signposts", - "gerund": "signposting", - "past": "signposted", - "past_participle": "signposted" - }, - { - "infinitive": "formalize", - "present": "formalizes", - "gerund": "formalizing", - "past": "formalized", - "past_participle": "formalized" - }, - { - "infinitive": "tie", - "present": "ties", - "gerund": "tying", - "past": "tied", - "past_participle": "tied" - }, - { - "infinitive": "implant", - "present": "implants", - "gerund": "implanting", - "past": "implanted", - "past_participle": "implanted" - }, - { - "infinitive": "picture", - "present": "pictures", - "gerund": "picturing", - "past": "pictured", - "past_participle": "pictured" - }, - { - "infinitive": "reconsider", - "present": "reconsiders", - "gerund": "reconsidering", - "past": "reconsidered", - "past_participle": "reconsidered" - }, - { - "infinitive": "congratulate", - "present": "congratulates", - "gerund": "congratulating", - "past": "congratulated", - "past_participle": "congratulated" - }, - { - "infinitive": "liquidate", - "present": "liquidates", - "gerund": "liquidating", - "past": "liquidated", - "past_participle": "liquidated" - }, - { - "infinitive": "benefice", - "present": "benefices", - "gerund": "beneficing", - "past": "beneficed", - "past_participle": "beneficed" - }, - { - "infinitive": "discharge", - "present": "discharges", - "gerund": "discharging", - "past": "discharged", - "past_participle": "discharged" - }, - { - "infinitive": "ululate", - "present": "ululates", - "gerund": "ululating", - "past": "ululated", - "past_participle": "ululated" - }, - { - "infinitive": "yacht", - "present": "yachts", - "gerund": "yachting", - "past": "yachted", - "past_participle": "yachted" - }, - { - "infinitive": "withhold", - "present": "withholds", - "gerund": "withholding", - "past": "withheld", - "past_participle": "withheld" - }, - { - "infinitive": "fasten", - "present": "fastens", - "gerund": "fastening", - "past": "fastened", - "past_participle": "fastened" - }, - { - "infinitive": "coach", - "present": "coachs", - "gerund": "coaching", - "past": "coached", - "past_participle": "coached" - }, - { - "infinitive": "dispirit", - "present": "dispirits", - "gerund": "dispiriting", - "past": "dispirited", - "past_participle": "dispirited" - }, - { - "infinitive": "rob", - "present": "robs", - "gerund": "robbing", - "past": "robbed", - "past_participle": "robbed" - }, - { - "infinitive": "focus", - "present": "focuses", - "gerund": "focussing", - "past": "focussed", - "past_participle": "focussed" - }, - { - "infinitive": "obviate", - "present": "obviates", - "gerund": "obviating", - "past": "obviated", - "past_participle": "obviated" - }, - { - "infinitive": "snip", - "present": "snips", - "gerund": "snipping", - "past": "snipped", - "past_participle": "snipped" - }, - { - "infinitive": "coldweld", - "present": "coldwelds", - "gerund": "coldwelding", - "past": "coldwelded", - "past_participle": "coldwelded" - }, - { - "infinitive": "rot", - "present": "rots", - "gerund": "rotting", - "past": "rotted", - "past_participle": "rotted" - }, - { - "infinitive": "empathize", - "present": "empathizes", - "gerund": "empathizing", - "past": "empathized", - "past_participle": "empathized" - }, - { - "infinitive": "catenate", - "present": "catenates", - "gerund": "catenating", - "past": "catenated", - "past_participle": "catenated" - }, - { - "infinitive": "passage", - "present": "passages", - "gerund": "passaging", - "past": "passaged", - "past_participle": "passaged" - }, - { - "infinitive": "charge", - "present": "charges", - "gerund": "charging", - "past": "charged", - "past_participle": "charged" - }, - { - "infinitive": "quash", - "present": "quashes", - "gerund": "quashing", - "past": "quashed", - "past_participle": "quashed" - }, - { - "infinitive": "wimble", - "present": "wimbles", - "gerund": "wimbling", - "past": "wimbled", - "past_participle": "wimbled" - }, - { - "infinitive": "assoil", - "present": "assoils", - "gerund": "assoiling", - "past": "assoiled", - "past_participle": "assoiled" - }, - { - "infinitive": "coop", - "present": "coops", - "gerund": "cooping", - "past": "cooped", - "past_participle": "cooped" - }, - { - "infinitive": "advantage", - "present": "advantages", - "gerund": "advantaging", - "past": "advantaged", - "past_participle": "advantaged" - }, - { - "infinitive": "cantilever", - "present": "cantilevers", - "gerund": "cantilevering", - "past": "cantilevered", - "past_participle": "cantilevered" - }, - { - "infinitive": "underpay", - "present": "underpays", - "gerund": "underpaying", - "past": "underpaid", - "past_participle": "underpaid" - }, - { - "infinitive": "airlift", - "present": "airlifts", - "gerund": "airlifting", - "past": "airlifted", - "past_participle": "airlifted" - }, - { - "infinitive": "gravitate", - "present": "gravitates", - "gerund": "gravitating", - "past": "gravitated", - "past_participle": "gravitated" - }, - { - "infinitive": "convoke", - "present": "convokes", - "gerund": "convoking", - "past": "convoked", - "past_participle": "convoked" - }, - { - "infinitive": "masturbate", - "present": "masturbates", - "gerund": "masturbating", - "past": "masturbated", - "past_participle": "masturbated" - }, - { - "infinitive": "waylay", - "present": "waylays", - "gerund": "waylaying", - "past": "waylaid", - "past_participle": "waylaid" - }, - { - "infinitive": "cook", - "present": "cooks", - "gerund": "cooking", - "past": "cooked", - "past_participle": "cooked" - }, - { - "infinitive": "attitudinize", - "present": "attitudinizes", - "gerund": "attitudinizing", - "past": "attitudinized", - "past_participle": "attitudinized" - }, - { - "infinitive": "cool", - "present": "cools", - "gerund": "cooling", - "past": "cooled", - "past_participle": "cooled" - }, - { - "infinitive": "doublepark", - "present": "doubleparks", - "gerund": "doubleparking", - "past": "doubleparked", - "past_participle": "doubleparked" - }, - { - "infinitive": "level", - "present": "levels", - "gerund": "levelling", - "past": "levelled", - "past_participle": "levelled" - }, - { - "infinitive": "enthuse", - "present": "enthuses", - "gerund": "enthusing", - "past": "enthused", - "past_participle": "enthused" - }, - { - "infinitive": "encroach", - "present": "encroaches", - "gerund": "encroaching", - "past": "encroached", - "past_participle": "encroached" - }, - { - "infinitive": "lever", - "present": "levers", - "gerund": "levering", - "past": "levered", - "past_participle": "levered" - }, - { - "infinitive": "waggon", - "present": "", - "gerund": "waggoning", - "past": "waggoned", - "past_participle": "waggoned" - }, - { - "infinitive": "intercommunicate", - "present": "intercommunicates", - "gerund": "intercommunicating", - "past": "intercommunicated", - "past_participle": "intercommunicated" - }, - { - "infinitive": "trend", - "present": "trends", - "gerund": "trending", - "past": "trended", - "past_participle": "trended" - }, - { - "infinitive": "pore", - "present": "pores", - "gerund": "poring", - "past": "pored", - "past_participle": "pored" - }, - { - "infinitive": "obsolete", - "present": "obsoletes", - "gerund": "obsoleting", - "past": "obsoleted", - "past_participle": "obsoleted" - }, - { - "infinitive": "weatherproof", - "present": "weatherproofs", - "gerund": "weatherproofing", - "past": "weatherproofed", - "past_participle": "weatherproofed" - }, - { - "infinitive": "utter", - "present": "utters", - "gerund": "uttering", - "past": "uttered", - "past_participle": "uttered" - }, - { - "infinitive": "bake", - "present": "bakes", - "gerund": "baking", - "past": "baked", - "past_participle": "baked" - }, - { - "infinitive": "port", - "present": "ports", - "gerund": "porting", - "past": "ported", - "past_participle": "ported" - }, - { - "infinitive": "substitute", - "present": "substitutes", - "gerund": "substituting", - "past": "substituted", - "past_participle": "substituted" - }, - { - "infinitive": "hymn", - "present": "hymns", - "gerund": "hymning", - "past": "hymned", - "past_participle": "hymned" - }, - { - "infinitive": "distaste", - "present": "distastes", - "gerund": "distasting", - "past": "distasted", - "past_participle": "distasted" - }, - { - "infinitive": "spire", - "present": "spires", - "gerund": "spiring", - "past": "spired", - "past_participle": "spired" - }, - { - "infinitive": "hypothecate", - "present": "hypothecates", - "gerund": "hypothecating", - "past": "hypothecated", - "past_participle": "hypothecated" - }, - { - "infinitive": "tarmac", - "present": "tarmacs", - "gerund": "tarmacking", - "past": "tarmacked", - "past_participle": "tarmacked" - }, - { - "infinitive": "reply", - "present": "replies", - "gerund": "replying", - "past": "replied", - "past_participle": "replied" - }, - { - "infinitive": "Normanize", - "present": "Normanizes", - "gerund": "Normanizing", - "past": "Normanized", - "past_participle": "Normanized" - }, - { - "infinitive": "corbel", - "present": "corbels", - "gerund": "corbelling", - "past": "corbelled", - "past_participle": "corbelled" - }, - { - "infinitive": "water", - "present": "waters", - "gerund": "watering", - "past": "watered", - "past_participle": "watered" - }, - { - "infinitive": "fluke", - "present": "flukes", - "gerund": "fluking", - "past": "fluked", - "past_participle": "fluked" - }, - { - "infinitive": "chass_e", - "present": "chass_es", - "gerund": "chass_eing", - "past": "chass_ed", - "past_participle": "chass_ed" - }, - { - "infinitive": "witch", - "present": "witches", - "gerund": "witching", - "past": "witched", - "past_participle": "witched" - }, - { - "infinitive": "tittletattle", - "present": "tittletattles", - "gerund": "tittletattling", - "past": "tittletattled", - "past_participle": "tittletattled" - }, - { - "infinitive": "blarney", - "present": "blarneys", - "gerund": "blarneying", - "past": "blarneyed", - "past_participle": "blarneyed" - }, - { - "infinitive": "rubberize", - "present": "rubberizes", - "gerund": "rubberizing", - "past": "rubberized", - "past_participle": "rubberized" - }, - { - "infinitive": "sleepwalk", - "present": "sleepwalks", - "gerund": "sleepwalking", - "past": "sleepwalked", - "past_participle": "sleepwalked" - }, - { - "infinitive": "boast", - "present": "boasts", - "gerund": "boasting", - "past": "boasted", - "past_participle": "boasted" - }, - { - "infinitive": "rethink", - "present": "rethinks", - "gerund": "rethinking", - "past": "rethought", - "past_participle": "rethought" - }, - { - "infinitive": "catnap", - "present": "catnaps", - "gerund": "catnapping", - "past": "catnapped", - "past_participle": "catnapped" - }, - { - "infinitive": "blotch", - "present": "blotches", - "gerund": "blotching", - "past": "blotched", - "past_participle": "blotched" - }, - { - "infinitive": "reincarnate", - "present": "reincarnates", - "gerund": "reincarnating", - "past": "reincarnated", - "past_participle": "reincarnated" - }, - { - "infinitive": "outride", - "present": "outrides", - "gerund": "outriding", - "past": "outrode", - "past_participle": "outridden" - }, - { - "infinitive": "emerge", - "present": "emerges", - "gerund": "emerging", - "past": "emerged", - "past_participle": "emerged" - }, - { - "infinitive": "firecure", - "present": "firecures", - "gerund": "firecuring", - "past": "firecured", - "past_participle": "firecured" - }, - { - "infinitive": "humour", - "present": "humours", - "gerund": "humouring", - "past": "humoured", - "past_participle": "humoured" - }, - { - "infinitive": "hemagglutinate", - "present": "hemagglutinates", - "gerund": "hemagglutinating", - "past": "hemagglutinated", - "past_participle": "hemagglutinated" - }, - { - "infinitive": "tweak", - "present": "tweaks", - "gerund": "tweaking", - "past": "tweaked", - "past_participle": "tweaked" - }, - { - "infinitive": "shark", - "present": "sharks", - "gerund": "sharking", - "past": "sharked", - "past_participle": "sharked" - }, - { - "infinitive": "palatalize", - "present": "palatalizes", - "gerund": "palatalizing", - "past": "palatalized", - "past_participle": "palatalized" - }, - { - "infinitive": "peer", - "present": "peers", - "gerund": "peering", - "past": "peered", - "past_participle": "peered" - }, - { - "infinitive": "bituminize", - "present": "bituminizes", - "gerund": "bituminizing", - "past": "bituminized", - "past_participle": "bituminized" - }, - { - "infinitive": "thrum", - "present": "thrums", - "gerund": "thrumming", - "past": "thrummed", - "past_participle": "thrummed" - }, - { - "infinitive": "touchdown", - "present": "touchdowns", - "gerund": "touchdowning", - "past": "touchdowned", - "past_participle": "touchdowned" - }, - { - "infinitive": "prompt", - "present": "prompts", - "gerund": "prompting", - "past": "prompted", - "past_participle": "prompted" - }, - { - "infinitive": "post", - "present": "posts", - "gerund": "posting", - "past": "posted", - "past_participle": "posted" - }, - { - "infinitive": "sledgehammer", - "present": "sledgehammers", - "gerund": "sledgehammering", - "past": "sledgehammered", - "past_participle": "sledgehammered" - }, - { - "infinitive": "concoct", - "present": "concocts", - "gerund": "concocting", - "past": "concocted", - "past_participle": "concocted" - }, - { - "infinitive": "scan", - "present": "scans", - "gerund": "scanning", - "past": "scanned", - "past_participle": "scanned" - }, - { - "infinitive": "ravage", - "present": "ravages", - "gerund": "ravaging", - "past": "ravaged", - "past_participle": "ravaged" - }, - { - "infinitive": "unsheathe", - "present": "unsheathes", - "gerund": "unsheathing", - "past": "unsheathed", - "past_participle": "unsheathed" - }, - { - "infinitive": "prey", - "present": "preys", - "gerund": "preying", - "past": "preyed", - "past_participle": "preyed" - }, - { - "infinitive": "dowse", - "present": "dowses", - "gerund": "dowsing", - "past": "dowsed", - "past_participle": "dowsed" - }, - { - "infinitive": "hogtie", - "present": "hogties", - "gerund": "hogtying", - "past": "hogtied", - "past_participle": "hogtied" - }, - { - "infinitive": "dismay", - "present": "dismays", - "gerund": "dismaying", - "past": "dismayed", - "past_participle": "dismayed" - }, - { - "infinitive": "riot", - "present": "riots", - "gerund": "rioting", - "past": "rioted", - "past_participle": "rioted" - }, - { - "infinitive": "muffle", - "present": "muffles", - "gerund": "muffling", - "past": "muffled", - "past_participle": "muffled" - }, - { - "infinitive": "cashier", - "present": "cashiers", - "gerund": "cashiering", - "past": "cashiered", - "past_participle": "cashiered" - }, - { - "infinitive": "fuel", - "present": "fuels", - "gerund": "fuelling", - "past": "fuelled", - "past_participle": "fuelled" - }, - { - "infinitive": "drown", - "present": "drowns", - "gerund": "drowning", - "past": "drowned", - "past_participle": "drowned" - }, - { - "infinitive": "dismast", - "present": "dismasts", - "gerund": "dismasting", - "past": "dismasted", - "past_participle": "dismasted" - }, - { - "infinitive": "scag", - "present": "scags", - "gerund": "scagging", - "past": "scagged", - "past_participle": "scagged" - }, - { - "infinitive": "befuddle", - "present": "befuddles", - "gerund": "befuddling", - "past": "befuddled", - "past_participle": "befuddled" - }, - { - "infinitive": "reflux", - "present": "refluxes", - "gerund": "refluxing", - "past": "refluxed", - "past_participle": "refluxed" - }, - { - "infinitive": "ferry", - "present": "ferries", - "gerund": "ferrying", - "past": "ferried", - "past_participle": "ferried" - }, - { - "infinitive": "pickle", - "present": "pickles", - "gerund": "pickling", - "past": "pickled", - "past_participle": "pickled" - }, - { - "infinitive": "streak", - "present": "streaks", - "gerund": "streaking", - "past": "streaked", - "past_participle": "streaked" - }, - { - "infinitive": "overpass", - "present": "overpasses", - "gerund": "overpassing", - "past": "overpassed", - "past_participle": "overpassed" - }, - { - "infinitive": "elasticize", - "present": "elasticizes", - "gerund": "elasticizing", - "past": "elasticized", - "past_participle": "elasticized" - }, - { - "infinitive": "tittivate", - "present": "tittivates", - "gerund": "tittivating", - "past": "tittivated", - "past_participle": "tittivated" - }, - { - "infinitive": "figure", - "present": "figures", - "gerund": "figuring", - "past": "figured", - "past_participle": "figured" - }, - { - "infinitive": "scrimshaw", - "present": "scrimshaws", - "gerund": "scrimshawing", - "past": "scrimshawed", - "past_participle": "scrimshawed" - }, - { - "infinitive": "outvie", - "present": "outvies", - "gerund": "outvying", - "past": "outvied", - "past_participle": "outvied" - }, - { - "infinitive": "stroke", - "present": "strokes", - "gerund": "stroking", - "past": "stroked", - "past_participle": "stroked" - }, - { - "infinitive": "surround", - "present": "surrounds", - "gerund": "surrounding", - "past": "surrounded", - "past_participle": "surrounded" - }, - { - "infinitive": "provoke", - "present": "provokes", - "gerund": "provoking", - "past": "provoked", - "past_participle": "provoked" - }, - { - "infinitive": "filtrate", - "present": "filtrates", - "gerund": "filtrating", - "past": "filtrated", - "past_participle": "filtrated" - }, - { - "infinitive": "decolonize", - "present": "decolonizes", - "gerund": "decolonizing", - "past": "decolonized", - "past_participle": "decolonized" - }, - { - "infinitive": "stenograph", - "present": "stenographs", - "gerund": "stenographing", - "past": "stenographed", - "past_participle": "stenographed" - }, - { - "infinitive": "spud", - "present": "spuds", - "gerund": "spudding", - "past": "spudded", - "past_participle": "spudded" - }, - { - "infinitive": "hookup", - "present": "hookups", - "gerund": "hookuping", - "past": "hookuped", - "past_participle": "hookuped" - }, - { - "infinitive": "levy", - "present": "levies", - "gerund": "levying", - "past": "levied", - "past_participle": "levied" - }, - { - "infinitive": "spue", - "present": "spues", - "gerund": "spuing", - "past": "spued", - "past_participle": "spued" - }, - { - "infinitive": "clonk", - "present": "clonks", - "gerund": "clonking", - "past": "clonked", - "past_participle": "clonked" - }, - { - "infinitive": "scoff", - "present": "scoffs", - "gerund": "scoffing", - "past": "scoffed", - "past_participle": "scoffed" - }, - { - "infinitive": "flyspeck", - "present": "flyspecks", - "gerund": "flyspecking", - "past": "flyspecked", - "past_participle": "flyspecked" - }, - { - "infinitive": "repeat", - "present": "repeats", - "gerund": "repeating", - "past": "repeated", - "past_participle": "repeated" - }, - { - "infinitive": "reposition", - "present": "repositions", - "gerund": "repositioning", - "past": "repositioned", - "past_participle": "repositioned" - }, - { - "infinitive": "joint", - "present": "joints", - "gerund": "jointing", - "past": "jointed", - "past_participle": "jointed" - }, - { - "infinitive": "amuse", - "present": "amuses", - "gerund": "amusing", - "past": "amused", - "past_participle": "amused" - }, - { - "infinitive": "befool", - "present": "befools", - "gerund": "befooling", - "past": "befooled", - "past_participle": "befooled" - }, - { - "infinitive": "unfreeze", - "present": "unfreezes", - "gerund": "unfreezing", - "past": "unfroze", - "past_participle": "unfrozen" - }, - { - "infinitive": "refund", - "present": "refunds", - "gerund": "refunding", - "past": "refunded", - "past_participle": "refunded" - }, - { - "infinitive": "treble", - "present": "trebles", - "gerund": "trebling", - "past": "trebled", - "past_participle": "trebled" - }, - { - "infinitive": "sonnet", - "present": "sonnets", - "gerund": "sonneting", - "past": "sonneted", - "past_participle": "sonneted" - }, - { - "infinitive": "defalcate", - "present": "defalcates", - "gerund": "defalcating", - "past": "defalcated", - "past_participle": "defalcated" - }, - { - "infinitive": "stylize", - "present": "stylizes", - "gerund": "stylizing", - "past": "stylized", - "past_participle": "stylized" - }, - { - "infinitive": "worship", - "present": "worships", - "gerund": "worshipping", - "past": "worshipped", - "past_participle": "worshipped" - }, - { - "infinitive": "swank", - "present": "swanks", - "gerund": "swanking", - "past": "swanked", - "past_participle": "swanked" - }, - { - "infinitive": "embosom", - "present": "embosoms", - "gerund": "embosoming", - "past": "embosomed", - "past_participle": "embosomed" - }, - { - "infinitive": "decontrol", - "present": "decontrols", - "gerund": "decontrolling", - "past": "decontrolled", - "past_participle": "decontrolled" - }, - { - "infinitive": "pervade", - "present": "pervades", - "gerund": "pervading", - "past": "pervaded", - "past_participle": "pervaded" - }, - { - "infinitive": "loophole", - "present": "loopholes", - "gerund": "loopholing", - "past": "loopholed", - "past_participle": "loopholed" - }, - { - "infinitive": "trapan", - "present": "trapans", - "gerund": "trapaning", - "past": "trapaned", - "past_participle": "trapaned" - }, - { - "infinitive": "cajole", - "present": "cajoles", - "gerund": "cajoling", - "past": "cajoled", - "past_participle": "cajoled" - }, - { - "infinitive": "subduct", - "present": "subducts", - "gerund": "subducting", - "past": "subducted", - "past_participle": "subducted" - }, - { - "infinitive": "deaminize", - "present": "deaminizes", - "gerund": "deaminizing", - "past": "deaminized", - "past_participle": "deaminized" - }, - { - "infinitive": "conquer", - "present": "conquers", - "gerund": "conquering", - "past": "conquered", - "past_participle": "conquered" - }, - { - "infinitive": "josh", - "present": "joshes", - "gerund": "joshing", - "past": "joshed", - "past_participle": "joshed" - }, - { - "infinitive": "occult", - "present": "occults", - "gerund": "occulting", - "past": "occulted", - "past_participle": "occulted" - }, - { - "infinitive": "wagon", - "present": "wagons", - "gerund": "wagoning", - "past": "wagoned", - "past_participle": "wagoned" - }, - { - "infinitive": "execute", - "present": "executes", - "gerund": "executing", - "past": "executed", - "past_participle": "executed" - }, - { - "infinitive": "name", - "present": "names", - "gerund": "naming", - "past": "named", - "past_participle": "named" - }, - { - "infinitive": "stabilize", - "present": "stabilizes", - "gerund": "stabilizing", - "past": "stabilized", - "past_participle": "stabilized" - }, - { - "infinitive": "clutch", - "present": "clutches", - "gerund": "clutching", - "past": "clutched", - "past_participle": "clutched" - }, - { - "infinitive": "synchronize", - "present": "synchronizes", - "gerund": "synchronizing", - "past": "synchronized", - "past_participle": "synchronized" - }, - { - "infinitive": "annualize", - "present": "annualizes", - "gerund": "annualizing", - "past": "annualized", - "past_participle": "annualized" - }, - { - "infinitive": "gape", - "present": "gapes", - "gerund": "gaping", - "past": "gaped", - "past_participle": "gaped" - }, - { - "infinitive": "torch", - "present": "torches", - "gerund": "torching", - "past": "torched", - "past_participle": "torched" - }, - { - "infinitive": "sprinkle", - "present": "sprinkles", - "gerund": "sprinkling", - "past": "sprinkled", - "past_participle": "sprinkled" - }, - { - "infinitive": "photoset", - "present": "photosets", - "gerund": "photosetting", - "past": "photoset", - "past_participle": "photoset" - }, - { - "infinitive": "superstruct", - "present": "superstructs", - "gerund": "superstructing", - "past": "superstructed", - "past_participle": "superstructed" - }, - { - "infinitive": "tinplate", - "present": "tinplates", - "gerund": "tinplating", - "past": "tinplated", - "past_participle": "tinplated" - }, - { - "infinitive": "counterchange", - "present": "counterchanges", - "gerund": "counterchanging", - "past": "counterchanged", - "past_participle": "counterchanged" - }, - { - "infinitive": "concur", - "present": "concurs", - "gerund": "concurring", - "past": "concurred", - "past_participle": "concurred" - }, - { - "infinitive": "envenom", - "present": "envenoms", - "gerund": "envenoming", - "past": "envenomed", - "past_participle": "envenomed" - }, - { - "infinitive": "profit", - "present": "profits", - "gerund": "profiting", - "past": "profited", - "past_participle": "profited" - }, - { - "infinitive": "condole", - "present": "condoles", - "gerund": "condoling", - "past": "condoled", - "past_participle": "condoled" - }, - { - "infinitive": "extrapolate", - "present": "extrapolates", - "gerund": "extrapolating", - "past": "extrapolated", - "past_participle": "extrapolated" - }, - { - "infinitive": "collate", - "present": "collates", - "gerund": "collating", - "past": "collated", - "past_participle": "collated" - }, - { - "infinitive": "maneuver", - "present": "maneuvers", - "gerund": "maneuvering", - "past": "maneuvered", - "past_participle": "maneuvered" - }, - { - "infinitive": "kalsomine", - "present": "kalsomines", - "gerund": "kalsomining", - "past": "kalsomined", - "past_participle": "kalsomined" - }, - { - "infinitive": "hulk", - "present": "hulks", - "gerund": "hulking", - "past": "hulked", - "past_participle": "hulked" - }, - { - "infinitive": "hobble", - "present": "hobbles", - "gerund": "hobbling", - "past": "hobbled", - "past_participle": "hobbled" - }, - { - "infinitive": "shillyshally", - "present": "shilly-shallies", - "gerund": "shilly-shallying", - "past": "shillyshallied", - "past_participle": "shilly-shallied" - }, - { - "infinitive": "reemphasize", - "present": "reemphasizes", - "gerund": "reemphasizing", - "past": "reemphasized", - "past_participle": "reemphasized" - }, - { - "infinitive": "delude", - "present": "deludes", - "gerund": "deluding", - "past": "deluded", - "past_participle": "deluded" - }, - { - "infinitive": "flare", - "present": "flares", - "gerund": "flaring", - "past": "flared", - "past_participle": "flared" - }, - { - "infinitive": "impose", - "present": "imposes", - "gerund": "imposing", - "past": "imposed", - "past_participle": "imposed" - }, - { - "infinitive": "motion", - "present": "motions", - "gerund": "motioning", - "past": "motioned", - "past_participle": "motioned" - }, - { - "infinitive": "turn", - "present": "turns", - "gerund": "turning", - "past": "turned", - "past_participle": "turned" - }, - { - "infinitive": "place", - "present": "places", - "gerund": "placing", - "past": "placed", - "past_participle": "placed" - }, - { - "infinitive": "brutalize", - "present": "brutalizes", - "gerund": "brutalizing", - "past": "brutalized", - "past_participle": "brutalized" - }, - { - "infinitive": "turf", - "present": "turfs", - "gerund": "turfing", - "past": "turfed", - "past_participle": "turfed" - }, - { - "infinitive": "impost", - "present": "imposts", - "gerund": "imposting", - "past": "imposted", - "past_participle": "imposted" - }, - { - "infinitive": "swink", - "present": "swinks", - "gerund": "swinking", - "past": "swinked", - "past_participle": "swinked" - }, - { - "infinitive": "excommunicate", - "present": "excommunicates", - "gerund": "excommunicating", - "past": "excommunicated", - "past_participle": "excommunicated" - }, - { - "infinitive": "feign", - "present": "feigns", - "gerund": "feigning", - "past": "feigned", - "past_participle": "feigned" - }, - { - "infinitive": "suspend", - "present": "suspends", - "gerund": "suspending", - "past": "suspended", - "past_participle": "suspended" - }, - { - "infinitive": "refloat", - "present": "refloats", - "gerund": "refloating", - "past": "refloated", - "past_participle": "refloated" - }, - { - "infinitive": "escarp", - "present": "escarps", - "gerund": "escarping", - "past": "escarped", - "past_participle": "escarped" - }, - { - "infinitive": "scollop", - "present": "scollops", - "gerund": "scolloping", - "past": "scolloped", - "past_participle": "scolloped" - }, - { - "infinitive": "array", - "present": "arrays", - "gerund": "arraying", - "past": "arrayed", - "past_participle": "arrayed" - }, - { - "infinitive": "intone", - "present": "intones", - "gerund": "intoning", - "past": "intoned", - "past_participle": "intoned" - }, - { - "infinitive": "engineer", - "present": "engineers", - "gerund": "engineering", - "past": "engineered", - "past_participle": "engineered" - }, - { - "infinitive": "unpeople", - "present": "unpeoples", - "gerund": "unpeopling", - "past": "unpeopled", - "past_participle": "unpeopled" - }, - { - "infinitive": "district", - "present": "districts", - "gerund": "districting", - "past": "districted", - "past_participle": "districted" - }, - { - "infinitive": "carbonate", - "present": "carbonates", - "gerund": "carbonating", - "past": "carbonated", - "past_participle": "carbonated" - }, - { - "infinitive": "plank", - "present": "planks", - "gerund": "planking", - "past": "planked", - "past_participle": "planked" - }, - { - "infinitive": "assort", - "present": "assorts", - "gerund": "assorting", - "past": "assorted", - "past_participle": "assorted" - }, - { - "infinitive": "persecute", - "present": "persecutes", - "gerund": "persecuting", - "past": "persecuted", - "past_participle": "persecuted" - }, - { - "infinitive": "crosscheck", - "present": "crosschecks", - "gerund": "crosschecking", - "past": "crosschecked", - "past_participle": "crosschecked" - }, - { - "infinitive": "unfrock", - "present": "unfrocks", - "gerund": "unfrocking", - "past": "unfrocked", - "past_participle": "unfrocked" - }, - { - "infinitive": "holden", - "present": "holdens", - "gerund": "holdening", - "past": "holdened", - "past_participle": "holdened" - }, - { - "infinitive": "neologize", - "present": "neologizes", - "gerund": "neologizing", - "past": "neologized", - "past_participle": "neologized" - }, - { - "infinitive": "cope", - "present": "copes", - "gerund": "coping", - "past": "coped", - "past_participle": "coped" - }, - { - "infinitive": "hum", - "present": "hums", - "gerund": "humming", - "past": "hummed", - "past_participle": "hummed" - }, - { - "infinitive": "indoctrinate", - "present": "indoctrinates", - "gerund": "indoctrinating", - "past": "indoctrinated", - "past_participle": "indoctrinated" - }, - { - "infinitive": "wax", - "present": "waxes", - "gerund": "waxing", - "past": "waxed", - "past_participle": "waxed" - }, - { - "infinitive": "grunt", - "present": "grunts", - "gerund": "grunting", - "past": "grunted", - "past_participle": "grunted" - }, - { - "infinitive": "specify", - "present": "specifies", - "gerund": "specifying", - "past": "specified", - "past_participle": "specified" - }, - { - "infinitive": "bewitch", - "present": "bewitches", - "gerund": "bewitching", - "past": "bewitched", - "past_participle": "bewitched" - }, - { - "infinitive": "defrock", - "present": "defrocks", - "gerund": "defrocking", - "past": "defrocked", - "past_participle": "defrocked" - }, - { - "infinitive": "require", - "present": "requires", - "gerund": "requiring", - "past": "required", - "past_participle": "required" - }, - { - "infinitive": "sere", - "present": "seres", - "gerund": "sering", - "past": "sered", - "past_participle": "sered" - }, - { - "infinitive": "ooze", - "present": "oozes", - "gerund": "oozing", - "past": "oozed", - "past_participle": "oozed" - }, - { - "infinitive": "posit", - "present": "posits", - "gerund": "positing", - "past": "posited", - "past_participle": "posited" - }, - { - "infinitive": "collimate", - "present": "collimates", - "gerund": "collimating", - "past": "collimated", - "past_participle": "collimated" - }, - { - "infinitive": "poetize", - "present": "poetizes", - "gerund": "poetizing", - "past": "poetized", - "past_participle": "poetized" - }, - { - "infinitive": "depilate", - "present": "depilates", - "gerund": "depilating", - "past": "depilated", - "past_participle": "depilated" - }, - { - "infinitive": "rend", - "present": "rends", - "gerund": "rending", - "past": "rent", - "past_participle": "rent" - }, - { - "infinitive": "froth", - "present": "froths", - "gerund": "frothing", - "past": "frothed", - "past_participle": "frothed" - }, - { - "infinitive": "liquidize", - "present": "liquidizes", - "gerund": "liquidizing", - "past": "liquidized", - "past_participle": "liquidized" - }, - { - "infinitive": "stoush", - "present": "stoushes", - "gerund": "stoushing", - "past": "stoushed", - "past_participle": "stoushed" - }, - { - "infinitive": "rent", - "present": "rents", - "gerund": "renting", - "past": "rented", - "past_participle": "rented" - }, - { - "infinitive": "pry", - "present": "pries", - "gerund": "prying", - "past": "pried", - "past_participle": "pried" - }, - { - "infinitive": "silhouette", - "present": "silhouettes", - "gerund": "silhouetting", - "past": "silhouetted", - "past_participle": "silhouetted" - }, - { - "infinitive": "acclimatize", - "present": "acclimatises", - "gerund": "acclimatizing", - "past": "acclimatized", - "past_participle": "acclimatized" - }, - { - "infinitive": "fracture", - "present": "fractures", - "gerund": "fracturing", - "past": "fractured", - "past_participle": "fractured" - }, - { - "infinitive": "paraphrase", - "present": "paraphrases", - "gerund": "paraphrasing", - "past": "paraphrased", - "past_participle": "paraphrased" - }, - { - "infinitive": "blunt", - "present": "blunts", - "gerund": "blunting", - "past": "blunted", - "past_participle": "blunted" - }, - { - "infinitive": "surf", - "present": "surfs", - "gerund": "surfing", - "past": "surfed", - "past_participle": "surfed" - }, - { - "infinitive": "urge", - "present": "urges", - "gerund": "urging", - "past": "urged", - "past_participle": "urged" - }, - { - "infinitive": "biff", - "present": "biffs", - "gerund": "biffing", - "past": "biffed", - "past_participle": "biffed" - }, - { - "infinitive": "embitter", - "present": "embitters", - "gerund": "embittering", - "past": "embittered", - "past_participle": "embittered" - }, - { - "infinitive": "fritt", - "present": "fritts", - "gerund": "fritting", - "past": "fritted", - "past_participle": "fritted" - }, - { - "infinitive": "remunerate", - "present": "remunerates", - "gerund": "remunerating", - "past": "remunerated", - "past_participle": "remunerated" - }, - { - "infinitive": "rematch", - "present": "rematches", - "gerund": "rematching", - "past": "rematched", - "past_participle": "rematched" - }, - { - "infinitive": "frig", - "present": "frigs", - "gerund": "frigging", - "past": "frigged", - "past_participle": "frigged" - }, - { - "infinitive": "fluoridize", - "present": "fluoridizes", - "gerund": "fluoridizing", - "past": "fluoridized", - "past_participle": "fluoridized" - }, - { - "infinitive": "saunter", - "present": "saunters", - "gerund": "sauntering", - "past": "sauntered", - "past_participle": "sauntered" - }, - { - "infinitive": "annul", - "present": "annuls", - "gerund": "annulling", - "past": "annulled", - "past_participle": "annulled" - }, - { - "infinitive": "misfire", - "present": "misfires", - "gerund": "misfiring", - "past": "misfired", - "past_participle": "misfired" - }, - { - "infinitive": "adopt", - "present": "adopts", - "gerund": "adopting", - "past": "adopted", - "past_participle": "adopted" - }, - { - "infinitive": "calcify", - "present": "calcifies", - "gerund": "calcifying", - "past": "calcified", - "past_participle": "calcified" - }, - { - "infinitive": "incardinate", - "present": "incardinates", - "gerund": "incardinating", - "past": "incardinated", - "past_participle": "incardinated" - }, - { - "infinitive": "readjust", - "present": "readjusts", - "gerund": "readjusting", - "past": "readjusted", - "past_participle": "readjusted" - }, - { - "infinitive": "slope", - "present": "slopes", - "gerund": "sloping", - "past": "sloped", - "past_participle": "sloped" - }, - { - "infinitive": "perch", - "present": "perches", - "gerund": "perching", - "past": "perched", - "past_participle": "perched" - }, - { - "infinitive": "forage", - "present": "forages", - "gerund": "foraging", - "past": "foraged", - "past_participle": "foraged" - }, - { - "infinitive": "cheat", - "present": "cheats", - "gerund": "cheating", - "past": "cheated", - "past_participle": "cheated" - }, - { - "infinitive": "reinvigorate", - "present": "reinvigorates", - "gerund": "reinvigorating", - "past": "reinvigorated", - "past_participle": "reinvigorated" - }, - { - "infinitive": "trog", - "present": "trogs", - "gerund": "trogging", - "past": "trogged", - "past_participle": "trogged" - }, - { - "infinitive": "trespass", - "present": "trespasses", - "gerund": "trespassing", - "past": "trespassed", - "past_participle": "trespassed" - }, - { - "infinitive": "hack", - "present": "hacks", - "gerund": "hacking", - "past": "hacked", - "past_participle": "hacked" - }, - { - "infinitive": "pustulate", - "present": "pustulates", - "gerund": "pustulating", - "past": "pustulated", - "past_participle": "pustulated" - }, - { - "infinitive": "broach", - "present": "broaches", - "gerund": "broaching", - "past": "broached", - "past_participle": "broached" - }, - { - "infinitive": "mister", - "present": "misters", - "gerund": "mistering", - "past": "mistered", - "past_participle": "mistered" - }, - { - "infinitive": "trot", - "present": "trots", - "gerund": "trotting", - "past": "trotted", - "past_participle": "trotted" - }, - { - "infinitive": "transistorize", - "present": "transistorizes", - "gerund": "transistorizing", - "past": "transistorized", - "past_participle": "transistorized" - }, - { - "infinitive": "gulf", - "present": "gulfs", - "gerund": "gulfing", - "past": "gulfed", - "past_participle": "gulfed" - }, - { - "infinitive": "gull", - "present": "gulls", - "gerund": "gulling", - "past": "gulled", - "past_participle": "gulled" - }, - { - "infinitive": "ventriloquize", - "present": "ventriloquizes", - "gerund": "ventriloquizing", - "past": "ventriloquized", - "past_participle": "ventriloquized" - }, - { - "infinitive": "shimmer", - "present": "shimmers", - "gerund": "shimmering", - "past": "shimmered", - "past_participle": "shimmered" - }, - { - "infinitive": "gulp", - "present": "gulps", - "gerund": "gulping", - "past": "gulped", - "past_participle": "gulped" - }, - { - "infinitive": "woof", - "present": "woofs", - "gerund": "woofing", - "past": "woofed", - "past_participle": "woofed" - }, - { - "infinitive": "wood", - "present": "woods", - "gerund": "wooding", - "past": "wooded", - "past_participle": "wooded" - }, - { - "infinitive": "partake", - "present": "partakes", - "gerund": "partaking", - "past": "partook", - "past_participle": "partaken" - }, - { - "infinitive": "deign", - "present": "deigns", - "gerund": "deigning", - "past": "deigned", - "past_participle": "deigned" - }, - { - "infinitive": "crimp", - "present": "crimps", - "gerund": "crimping", - "past": "crimped", - "past_participle": "crimped" - }, - { - "infinitive": "involute", - "present": "involutes", - "gerund": "involuting", - "past": "involuted", - "past_participle": "involuted" - }, - { - "infinitive": "reset", - "present": "resets", - "gerund": "resetting", - "past": "reset", - "past_participle": "reset" - }, - { - "infinitive": "lighten", - "present": "lightens", - "gerund": "lightening", - "past": "lightened", - "past_participle": "lightened" - }, - { - "infinitive": "jazz", - "present": "jazzes", - "gerund": "jazzing", - "past": "jazzed", - "past_participle": "jazzed" - }, - { - "infinitive": "festoon", - "present": "festoons", - "gerund": "festooning", - "past": "festooned", - "past_participle": "festooned" - }, - { - "infinitive": "tailor", - "present": "tailors", - "gerund": "tailoring", - "past": "tailored", - "past_participle": "tailored" - }, - { - "infinitive": "dye", - "present": "dyes", - "gerund": "dyeing", - "past": "dyed", - "past_participle": "dyed" - }, - { - "infinitive": "hedge", - "present": "hedges", - "gerund": "hedging", - "past": "hedged", - "past_participle": "hedged" - }, - { - "infinitive": "closure", - "present": "closures", - "gerund": "closuring", - "past": "closured", - "past_participle": "closured" - }, - { - "infinitive": "reveal", - "present": "reveals", - "gerund": "revealing", - "past": "revealed", - "past_participle": "revealed" - }, - { - "infinitive": "pinnacle", - "present": "pinnacles", - "gerund": "pinnacling", - "past": "pinnacled", - "past_participle": "pinnacled" - }, - { - "infinitive": "outperform", - "present": "outperforms", - "gerund": "outperforming", - "past": "outperformed", - "past_participle": "outperformed" - }, - { - "infinitive": "obliterate", - "present": "obliterates", - "gerund": "obliterating", - "past": "obliterated", - "past_participle": "obliterated" - }, - { - "infinitive": "underplay", - "present": "underplays", - "gerund": "underplaying", - "past": "underplayed", - "past_participle": "underplayed" - }, - { - "infinitive": "dawdle", - "present": "dawdles", - "gerund": "dawdling", - "past": "dawdled", - "past_participle": "dawdled" - }, - { - "infinitive": "convolve", - "present": "convolves", - "gerund": "convolving", - "past": "convolved", - "past_participle": "convolved" - }, - { - "infinitive": "picnic", - "present": "", - "gerund": "picnicking", - "past": "picnicked", - "past_participle": "picnicked" - }, - { - "infinitive": "emote", - "present": "emotes", - "gerund": "emoting", - "past": "emoted", - "past_participle": "emoted" - }, - { - "infinitive": "prowl", - "present": "prowls", - "gerund": "prowling", - "past": "prowled", - "past_participle": "prowled" - }, - { - "infinitive": "westernize", - "present": "westernizes", - "gerund": "westernizing", - "past": "westernized", - "past_participle": "westernized" - }, - { - "infinitive": "sile", - "present": "siles", - "gerund": "siling", - "past": "siled", - "past_participle": "siled" - }, - { - "infinitive": "scabble", - "present": "scabbles", - "gerund": "scabbling", - "past": "scabbled", - "past_participle": "scabbled" - }, - { - "infinitive": "detect", - "present": "detects", - "gerund": "detecting", - "past": "detected", - "past_participle": "detected" - }, - { - "infinitive": "emplace", - "present": "emplaces", - "gerund": "emplacing", - "past": "emplaced", - "past_participle": "emplaced" - }, - { - "infinitive": "mortgage", - "present": "mortgages", - "gerund": "mortgaging", - "past": "mortgaged", - "past_participle": "mortgaged" - }, - { - "infinitive": "review", - "present": "reviews", - "gerund": "reviewing", - "past": "reviewed", - "past_participle": "reviewed" - }, - { - "infinitive": "hiss", - "present": "hisses", - "gerund": "hissing", - "past": "hissed", - "past_participle": "hissed" - }, - { - "infinitive": "caucus", - "present": "caucuses", - "gerund": "caucusing", - "past": "caucused", - "past_participle": "caucused" - }, - { - "infinitive": "replevy", - "present": "replevies", - "gerund": "replevying", - "past": "replevied", - "past_participle": "replevied" - }, - { - "infinitive": "overcharge", - "present": "overcharges", - "gerund": "overcharging", - "past": "overcharged", - "past_participle": "overcharged" - }, - { - "infinitive": "comb", - "present": "combs", - "gerund": "combing", - "past": "combed", - "past_participle": "combed" - }, - { - "infinitive": "come", - "present": "comes", - "gerund": "coming", - "past": "came", - "past_participle": "come" - }, - { - "infinitive": "forfend", - "present": "forfends", - "gerund": "forfending", - "past": "forfended", - "past_participle": "forfended" - }, - { - "infinitive": "bemoan", - "present": "bemoans", - "gerund": "bemoaning", - "past": "bemoaned", - "past_participle": "bemoaned" - }, - { - "infinitive": "quiet", - "present": "quiets", - "gerund": "quieting", - "past": "quieted", - "past_participle": "quieted" - }, - { - "infinitive": "contract", - "present": "contracts", - "gerund": "contracting", - "past": "contracted", - "past_participle": "contracted" - }, - { - "infinitive": "re-afforest", - "present": "re-afforests", - "gerund": "re-afforesting", - "past": "re-afforested", - "past_participle": "re-afforested" - }, - { - "infinitive": "berry", - "present": "berries", - "gerund": "berrying", - "past": "berried", - "past_participle": "berried" - }, - { - "infinitive": "cabal", - "present": "cabals", - "gerund": "caballing", - "past": "caballed", - "past_participle": "caballed" - }, - { - "infinitive": "pot", - "present": "pots", - "gerund": "potting", - "past": "potted", - "past_participle": "potted" - }, - { - "infinitive": "insist", - "present": "insists", - "gerund": "insisting", - "past": "insisted", - "past_participle": "insisted" - }, - { - "infinitive": "pole", - "present": "poles", - "gerund": "poling", - "past": "poled", - "past_participle": "poled" - }, - { - "infinitive": "pod", - "present": "pods", - "gerund": "podding", - "past": "podded", - "past_participle": "podded" - }, - { - "infinitive": "poll", - "present": "polls", - "gerund": "polling", - "past": "polled", - "past_participle": "polled" - }, - { - "infinitive": "blowdry", - "present": "blowdries", - "gerund": "blowdrying", - "past": "blowdried", - "past_participle": "blowdried" - }, - { - "infinitive": "sypher", - "present": "syphers", - "gerund": "syphering", - "past": "syphered", - "past_participle": "syphered" - }, - { - "infinitive": "shroff", - "present": "shroffs", - "gerund": "shroffing", - "past": "shroffed", - "past_participle": "shroffed" - }, - { - "infinitive": "anthologize", - "present": "anthologizes", - "gerund": "anthologizing", - "past": "anthologized", - "past_participle": "anthologized" - }, - { - "infinitive": "umpire", - "present": "umpires", - "gerund": "umpiring", - "past": "umpired", - "past_participle": "umpired" - }, - { - "infinitive": "disembogue", - "present": "disembogues", - "gerund": "disemboguing", - "past": "disembogued", - "past_participle": "disembogued" - }, - { - "infinitive": "reimburse", - "present": "reimburses", - "gerund": "reimbursing", - "past": "reimbursed", - "past_participle": "reimbursed" - }, - { - "infinitive": "catholicize", - "present": "catholicizes", - "gerund": "catholicizing", - "past": "catholicized", - "past_participle": "catholicized" - }, - { - "infinitive": "borate", - "present": "borates", - "gerund": "borating", - "past": "borated", - "past_participle": "borated" - }, - { - "infinitive": "padlock", - "present": "padlocks", - "gerund": "padlocking", - "past": "padlocked", - "past_participle": "padlocked" - }, - { - "infinitive": "silk", - "present": "silks", - "gerund": "silking", - "past": "silked", - "past_participle": "silked" - }, - { - "infinitive": "minister", - "present": "ministers", - "gerund": "ministering", - "past": "ministered", - "past_participle": "ministered" - }, - { - "infinitive": "dribble", - "present": "dribbles", - "gerund": "dribbling", - "past": "dribbled", - "past_participle": "dribbled" - }, - { - "infinitive": "pilot", - "present": "pilots", - "gerund": "piloting", - "past": "piloted", - "past_participle": "piloted" - }, - { - "infinitive": "case", - "present": "cases", - "gerund": "casing", - "past": "cased", - "past_participle": "cased" - }, - { - "infinitive": "shaft", - "present": "shafts", - "gerund": "shafting", - "past": "shafted", - "past_participle": "shafted" - }, - { - "infinitive": "hightail", - "present": "hightails", - "gerund": "hightailing", - "past": "hightailed", - "past_participle": "hightailed" - }, - { - "infinitive": "amend", - "present": "amends", - "gerund": "amending", - "past": "amended", - "past_participle": "amended" - }, - { - "infinitive": "mount", - "present": "mounts", - "gerund": "mounting", - "past": "mounted", - "past_participle": "mounted" - }, - { - "infinitive": "cash", - "present": "cashes", - "gerund": "cashing", - "past": "cashed", - "past_participle": "cashed" - }, - { - "infinitive": "cast", - "present": "casts", - "gerund": "casting", - "past": "cast", - "past_participle": "cast" - }, - { - "infinitive": "Roneo", - "present": "Roneos", - "gerund": "Roneoing", - "past": "Roneoed", - "past_participle": "Roneoed" - }, - { - "infinitive": "embank", - "present": "embanks", - "gerund": "embanking", - "past": "embanked", - "past_participle": "embanked" - }, - { - "infinitive": "shingle", - "present": "shingles", - "gerund": "shingling", - "past": "shingled", - "past_participle": "shingled" - }, - { - "infinitive": "mound", - "present": "mounds", - "gerund": "mounding", - "past": "mounded", - "past_participle": "mounded" - }, - { - "infinitive": "vest", - "present": "vests", - "gerund": "vesting", - "past": "vested", - "past_participle": "vested" - }, - { - "infinitive": "bemean", - "present": "bemeans", - "gerund": "bemeaning", - "past": "bemeaned", - "past_participle": "bemeaned" - }, - { - "infinitive": "contrive", - "present": "contrives", - "gerund": "contriving", - "past": "contrived", - "past_participle": "contrived" - }, - { - "infinitive": "telephone", - "present": "telephones", - "gerund": "telephoning", - "past": "telephoned", - "past_participle": "telephoned" - }, - { - "infinitive": "parse", - "present": "parses", - "gerund": "parsing", - "past": "parsed", - "past_participle": "parsed" - }, - { - "infinitive": "big-note", - "present": "big-notes", - "gerund": "big-noting", - "past": "big-noted", - "past_participle": "big-noted" - }, - { - "infinitive": "clutter", - "present": "clutters", - "gerund": "cluttering", - "past": "cluttered", - "past_participle": "cluttered" - }, - { - "infinitive": "saponify", - "present": "saponifies", - "gerund": "saponifying", - "past": "saponified", - "past_participle": "saponified" - }, - { - "infinitive": "reshape", - "present": "reshapes", - "gerund": "reshaping", - "past": "reshaped", - "past_participle": "reshaped" - }, - { - "infinitive": "bowl", - "present": "bowls", - "gerund": "bowling", - "past": "bowled", - "past_participle": "bowled" - }, - { - "infinitive": "furl", - "present": "furls", - "gerund": "furling", - "past": "furled", - "past_participle": "furled" - }, - { - "infinitive": "sucker", - "present": "suckers", - "gerund": "suckering", - "past": "suckered", - "past_participle": "suckered" - }, - { - "infinitive": "spatter", - "present": "spatters", - "gerund": "spattering", - "past": "spattered", - "past_participle": "spattered" - }, - { - "infinitive": "ween", - "present": "weens", - "gerund": "weening", - "past": "weened", - "past_participle": "weened" - }, - { - "infinitive": "applaud", - "present": "applauds", - "gerund": "applauding", - "past": "applauded", - "past_participle": "applauded" - }, - { - "infinitive": "nest", - "present": "nests", - "gerund": "nesting", - "past": "nested", - "past_participle": "nested" - }, - { - "infinitive": "weed", - "present": "weeds", - "gerund": "weeding", - "past": "weeded", - "past_participle": "weeded" - }, - { - "infinitive": "drivel", - "present": "drivels", - "gerund": "drivelling", - "past": "drivelled", - "past_participle": "drivelled" - }, - { - "infinitive": "lute", - "present": "lutes", - "gerund": "luting", - "past": "luted", - "past_participle": "luted" - }, - { - "infinitive": "stallfeed", - "present": "stallfeeds", - "gerund": "stallfeeding", - "past": "stallfed", - "past_participle": "stallfed" - }, - { - "infinitive": "ragout", - "present": "ragouts", - "gerund": "ragouting", - "past": "ragouted", - "past_participle": "ragouted" - }, - { - "infinitive": "weep", - "present": "weeps", - "gerund": "weeping", - "past": "wept", - "past_participle": "wept" - }, - { - "infinitive": "minimize", - "present": "minimizes", - "gerund": "minimizing", - "past": "minimized", - "past_participle": "minimized" - }, - { - "infinitive": "ranch", - "present": "ranches", - "gerund": "ranching", - "past": "ranched", - "past_participle": "ranched" - }, - { - "infinitive": "communalize", - "present": "communalizes", - "gerund": "communalizing", - "past": "communalized", - "past_participle": "communalized" - }, - { - "infinitive": "co-edit", - "present": "co-edits", - "gerund": "co-editing", - "past": "co-edited", - "past_participle": "co-edited" - }, - { - "infinitive": "inbreathe", - "present": "inbreathes", - "gerund": "inbreathing", - "past": "inbreathed", - "past_participle": "inbreathed" - }, - { - "infinitive": "illume", - "present": "illumes", - "gerund": "illuming", - "past": "illumed", - "past_participle": "illumed" - }, - { - "infinitive": "model", - "present": "models", - "gerund": "modelling", - "past": "modelled", - "past_participle": "modelled" - }, - { - "infinitive": "retroject", - "present": "retrojects", - "gerund": "retrojecting", - "past": "retrojected", - "past_participle": "retrojected" - }, - { - "infinitive": "justify", - "present": "justifies", - "gerund": "justifying", - "past": "justified", - "past_participle": "justified" - }, - { - "infinitive": "clog", - "present": "clogs", - "gerund": "clogging", - "past": "clogged", - "past_participle": "clogged" - }, - { - "infinitive": "kilt", - "present": "kilts", - "gerund": "kilting", - "past": "kilted", - "past_participle": "kilted" - }, - { - "infinitive": "clot", - "present": "clots", - "gerund": "clotting", - "past": "clotted", - "past_participle": "clotted" - }, - { - "infinitive": "lavish", - "present": "lavishes", - "gerund": "lavishing", - "past": "lavished", - "past_participle": "lavished" - }, - { - "infinitive": "clop", - "present": "clops", - "gerund": "clopping", - "past": "clopped", - "past_participle": "clopped" - }, - { - "infinitive": "kiln", - "present": "kilns", - "gerund": "kilning", - "past": "kilned", - "past_participle": "kilned" - }, - { - "infinitive": "polish", - "present": "polishes", - "gerund": "polishing", - "past": "polished", - "past_participle": "polished" - }, - { - "infinitive": "velarize", - "present": "velarizes", - "gerund": "velarizing", - "past": "velarized", - "past_participle": "velarized" - }, - { - "infinitive": "cloy", - "present": "cloys", - "gerund": "cloying", - "past": "cloyed", - "past_participle": "cloyed" - }, - { - "infinitive": "rackrent", - "present": "rackrents", - "gerund": "rackrenting", - "past": "rackrented", - "past_participle": "rackrented" - }, - { - "infinitive": "blow", - "present": "blows", - "gerund": "blowing", - "past": "blew", - "past_participle": "blown" - }, - { - "infinitive": "blot", - "present": "blots", - "gerund": "blotting", - "past": "blotted", - "past_participle": "blotted" - }, - { - "infinitive": "cofound", - "present": "cofounds", - "gerund": "cofounding", - "past": "cofounded", - "past_participle": "cofounded" - }, - { - "infinitive": "hint", - "present": "hints", - "gerund": "hinting", - "past": "hinted", - "past_participle": "hinted" - }, - { - "infinitive": "except", - "present": "excepts", - "gerund": "excepting", - "past": "excepted", - "past_participle": "excepted" - }, - { - "infinitive": "enfilade", - "present": "enfilades", - "gerund": "enfilading", - "past": "enfiladed", - "past_participle": "enfiladed" - }, - { - "infinitive": "blob", - "present": "blobs", - "gerund": "blobbing", - "past": "blobbed", - "past_participle": "blobbed" - }, - { - "infinitive": "backbite", - "present": "backbites", - "gerund": "backbiting", - "past": "backbit", - "past_participle": "backbitten" - }, - { - "infinitive": "disrupt", - "present": "disrupts", - "gerund": "disrupting", - "past": "disrupted", - "past_participle": "disrupted" - }, - { - "infinitive": "impound", - "present": "impounds", - "gerund": "impounding", - "past": "impounded", - "past_participle": "impounded" - }, - { - "infinitive": "devest", - "present": "devests", - "gerund": "devesting", - "past": "devested", - "past_participle": "devested" - }, - { - "infinitive": "snore", - "present": "snores", - "gerund": "snoring", - "past": "snored", - "past_participle": "snored" - }, - { - "infinitive": "shrink", - "present": "shrinks", - "gerund": "shrinking", - "past": "shrunk", - "past_participle": "shrunken" - }, - { - "infinitive": "snort", - "present": "snorts", - "gerund": "snorting", - "past": "snorted", - "past_participle": "snorted" - }, - { - "infinitive": "deduct", - "present": "deducts", - "gerund": "deducting", - "past": "deducted", - "past_participle": "deducted" - }, - { - "infinitive": "subsidize", - "present": "subsidizes", - "gerund": "subsidizing", - "past": "subsidized", - "past_participle": "subsidized" - }, - { - "infinitive": "interlock", - "present": "interlocks", - "gerund": "interlocking", - "past": "interlocked", - "past_participle": "interlocked" - }, - { - "infinitive": "deduce", - "present": "deduces", - "gerund": "deducing", - "past": "deduced", - "past_participle": "deduced" - }, - { - "infinitive": "respect", - "present": "respects", - "gerund": "respecting", - "past": "respected", - "past_participle": "respected" - }, - { - "infinitive": "slice", - "present": "slices", - "gerund": "slicing", - "past": "sliced", - "past_participle": "sliced" - }, - { - "infinitive": "overstay", - "present": "overstays", - "gerund": "overstaying", - "past": "overstayed", - "past_participle": "overstayed" - }, - { - "infinitive": "renounce", - "present": "renounces", - "gerund": "renouncing", - "past": "renounced", - "past_participle": "renounced" - }, - { - "infinitive": "divvy", - "present": "divvies", - "gerund": "divvying", - "past": "divvied", - "past_participle": "divvied" - }, - { - "infinitive": "slick", - "present": "slicks", - "gerund": "slicking", - "past": "slicked", - "past_participle": "slicked" - }, - { - "infinitive": "jiggle", - "present": "jiggles", - "gerund": "jiggling", - "past": "jiggled", - "past_participle": "jiggled" - }, - { - "infinitive": "moon", - "present": "moons", - "gerund": "mooning", - "past": "mooned", - "past_participle": "mooned" - }, - { - "infinitive": "moor", - "present": "moors", - "gerund": "mooring", - "past": "moored", - "past_participle": "moored" - }, - { - "infinitive": "moot", - "present": "moots", - "gerund": "mooting", - "past": "mooted", - "past_participle": "mooted" - }, - { - "infinitive": "stope", - "present": "stopes", - "gerund": "stoping", - "past": "stoped", - "past_participle": "stoped" - }, - { - "infinitive": "substantialize", - "present": "substantializes", - "gerund": "substantializing", - "past": "substantialized", - "past_participle": "substantialized" - }, - { - "infinitive": "herringbone", - "present": "herringbones", - "gerund": "herringboning", - "past": "herringboned", - "past_participle": "herringboned" - }, - { - "infinitive": "inspect", - "present": "inspects", - "gerund": "inspecting", - "past": "inspected", - "past_participle": "inspected" - }, - { - "infinitive": "communicate", - "present": "communicates", - "gerund": "communicating", - "past": "communicated", - "past_participle": "communicated" - }, - { - "infinitive": "slaughter", - "present": "slaughters", - "gerund": "slaughtering", - "past": "slaughtered", - "past_participle": "slaughtered" - }, - { - "infinitive": "update", - "present": "updates", - "gerund": "updating", - "past": "updated", - "past_participle": "updated" - }, - { - "infinitive": "fantasize", - "present": "fantasizes", - "gerund": "fantasizing", - "past": "fantasized", - "past_participle": "fantasized" - }, - { - "infinitive": "immigrate", - "present": "immigrates", - "gerund": "immigrating", - "past": "immigrated", - "past_participle": "immigrated" - }, - { - "infinitive": "prattle", - "present": "prattles", - "gerund": "prattling", - "past": "prattled", - "past_participle": "prattled" - }, - { - "infinitive": "concuss", - "present": "concusses", - "gerund": "concussing", - "past": "concussed", - "past_participle": "concussed" - }, - { - "infinitive": "tread", - "present": "treads", - "gerund": "treading", - "past": "trod", - "past_participle": "trodden" - }, - { - "infinitive": "chivy", - "present": "chivvies", - "gerund": "chivying", - "past": "chivvied", - "past_participle": "chivvied" - }, - { - "infinitive": "jeer", - "present": "jeers", - "gerund": "jeering", - "past": "jeered", - "past_participle": "jeered" - }, - { - "infinitive": "shrimp", - "present": "shrimps", - "gerund": "shrimping", - "past": "shrimped", - "past_participle": "shrimped" - }, - { - "infinitive": "stand", - "present": "stands", - "gerund": "standing", - "past": "stood", - "past_participle": "stood" - }, - { - "infinitive": "equalize", - "present": "equalizes", - "gerund": "equalizing", - "past": "equalized", - "past_participle": "equalized" - }, - { - "infinitive": "doze", - "present": "dozes", - "gerund": "dozing", - "past": "dozed", - "past_participle": "dozed" - }, - { - "infinitive": "broddle", - "present": "broddles", - "gerund": "broddling", - "past": "broddled", - "past_participle": "broddled" - }, - { - "infinitive": "accredit", - "present": "accredits", - "gerund": "accrediting", - "past": "accredited", - "past_participle": "accredited" - }, - { - "infinitive": "undervalue", - "present": "undervalues", - "gerund": "undervaluing", - "past": "undervalued", - "past_participle": "undervalued" - }, - { - "infinitive": "garner", - "present": "garners", - "gerund": "garnering", - "past": "garnered", - "past_participle": "garnered" - }, - { - "infinitive": "forewarn", - "present": "forewarns", - "gerund": "forewarning", - "past": "forewarned", - "past_participle": "forewarned" - }, - { - "infinitive": "determine", - "present": "determines", - "gerund": "determining", - "past": "determined", - "past_participle": "determined" - }, - { - "infinitive": "syringe", - "present": "", - "gerund": "syringing", - "past": "syringed", - "past_participle": "syringed" - }, - { - "infinitive": "abrogate", - "present": "abrogates", - "gerund": "abrogating", - "past": "abrogated", - "past_participle": "abrogated" - }, - { - "infinitive": "weight", - "present": "weights", - "gerund": "weighting", - "past": "weighted", - "past_participle": "weighted" - }, - { - "infinitive": "backwater", - "present": "backwaters", - "gerund": "backwatering", - "past": "backwatered", - "past_participle": "backwatered" - }, - { - "infinitive": "scry", - "present": "scries", - "gerund": "scrying", - "past": "scried", - "past_participle": "scried" - }, - { - "infinitive": "ponce", - "present": "ponces", - "gerund": "poncing", - "past": "ponced", - "past_participle": "ponced" - }, - { - "infinitive": "deterge", - "present": "deterges", - "gerund": "deterging", - "past": "deterged", - "past_participle": "deterged" - }, - { - "infinitive": "expatriate", - "present": "expatriates", - "gerund": "expatriating", - "past": "expatriated", - "past_participle": "expatriated" - }, - { - "infinitive": "condone", - "present": "condones", - "gerund": "condoning", - "past": "condoned", - "past_participle": "condoned" - }, - { - "infinitive": "fishes", - "present": "fishes", - "gerund": "fishing", - "past": "fishesed", - "past_participle": "fishesed" - }, - { - "infinitive": "carouse", - "present": "carouses", - "gerund": "carousing", - "past": "caroused", - "past_participle": "caroused" - }, - { - "infinitive": "gibe", - "present": "gibes", - "gerund": "gibing", - "past": "gibed", - "past_participle": "gibed" - }, - { - "infinitive": "jug", - "present": "jugs", - "gerund": "jugging", - "past": "jugged", - "past_participle": "jugged" - }, - { - "infinitive": "winnow", - "present": "winnows", - "gerund": "winnowing", - "past": "winnowed", - "past_participle": "winnowed" - }, - { - "infinitive": "roust", - "present": "rousts", - "gerund": "rousting", - "past": "rousted", - "past_participle": "rousted" - }, - { - "infinitive": "regard", - "present": "regards", - "gerund": "regarding", - "past": "regarded", - "past_participle": "regarded" - }, - { - "infinitive": "betoken", - "present": "betokens", - "gerund": "betokening", - "past": "betokened", - "past_participle": "betokened" - }, - { - "infinitive": "notate", - "present": "notates", - "gerund": "notating", - "past": "notated", - "past_participle": "notated" - }, - { - "infinitive": "jut", - "present": "juts", - "gerund": "jutting", - "past": "jutted", - "past_participle": "jutted" - }, - { - "infinitive": "promote", - "present": "promotes", - "gerund": "promoting", - "past": "promoted", - "past_participle": "promoted" - }, - { - "infinitive": "emancipate", - "present": "emancipates", - "gerund": "emancipating", - "past": "emancipated", - "past_participle": "emancipated" - }, - { - "infinitive": "scrouge", - "present": "scrouges", - "gerund": "scrouging", - "past": "scrouged", - "past_participle": "scrouged" - }, - { - "infinitive": "demilitarize", - "present": "demilitarizes", - "gerund": "demilitarizing", - "past": "demilitarized", - "past_participle": "demilitarized" - }, - { - "infinitive": "fabricate", - "present": "fabricates", - "gerund": "fabricating", - "past": "fabricated", - "past_participle": "fabricated" - }, - { - "infinitive": "wholesale", - "present": "wholesales", - "gerund": "wholesaling", - "past": "wholesaled", - "past_participle": "wholesaled" - }, - { - "infinitive": "excruciate", - "present": "excruciates", - "gerund": "excruciating", - "past": "excruciated", - "past_participle": "excruciated" - }, - { - "infinitive": "incise", - "present": "incises", - "gerund": "incising", - "past": "incised", - "past_participle": "incised" - }, - { - "infinitive": "nigrify", - "present": "nigrifies", - "gerund": "nigrifying", - "past": "nigrified", - "past_participle": "nigrified" - }, - { - "infinitive": "grasp", - "present": "grasps", - "gerund": "grasping", - "past": "grasped", - "past_participle": "grasped" - }, - { - "infinitive": "grass", - "present": "grasses", - "gerund": "grassing", - "past": "grassed", - "past_participle": "grassed" - }, - { - "infinitive": "politick", - "present": "politicks", - "gerund": "politicking", - "past": "politicked", - "past_participle": "politicked" - }, - { - "infinitive": "tranquillize", - "present": "tranquillizes", - "gerund": "tranquillizing", - "past": "tranquillized", - "past_participle": "tranquillized" - }, - { - "infinitive": "taste", - "present": "tastes", - "gerund": "tasting", - "past": "tasted", - "past_participle": "tasted" - }, - { - "infinitive": "frighten", - "present": "frightens", - "gerund": "frightening", - "past": "frightened", - "past_participle": "frightened" - }, - { - "infinitive": "thrombose", - "present": "thromboses", - "gerund": "thrombosing", - "past": "thrombosed", - "past_participle": "thrombosed" - }, - { - "infinitive": "fossick", - "present": "fossicks", - "gerund": "fossicking", - "past": "fossicked", - "past_participle": "fossicked" - }, - { - "infinitive": "trundle", - "present": "trundles", - "gerund": "trundling", - "past": "trundled", - "past_participle": "trundled" - }, - { - "infinitive": "encompass", - "present": "encompasses", - "gerund": "encompassing", - "past": "encompassed", - "past_participle": "encompassed" - }, - { - "infinitive": "deraign", - "present": "deraigns", - "gerund": "deraigning", - "past": "deraigned", - "past_participle": "deraigned" - }, - { - "infinitive": "wanton", - "present": "wantons", - "gerund": "wantoning", - "past": "wantoned", - "past_participle": "wantoned" - }, - { - "infinitive": "deserve", - "present": "deserves", - "gerund": "deserving", - "past": "deserved", - "past_participle": "deserved" - }, - { - "infinitive": "compel", - "present": "compels", - "gerund": "compelling", - "past": "compelled", - "past_participle": "compelled" - }, - { - "infinitive": "rubber", - "present": "rubbers", - "gerund": "rubbering", - "past": "rubbered", - "past_participle": "rubbered" - }, - { - "infinitive": "trash", - "present": "trashes", - "gerund": "trashing", - "past": "trashed", - "past_participle": "trashed" - }, - { - "infinitive": "sully", - "present": "sullies", - "gerund": "sullying", - "past": "sullied", - "past_participle": "sullied" - }, - { - "infinitive": "proliferate", - "present": "proliferates", - "gerund": "proliferating", - "past": "proliferated", - "past_participle": "proliferated" - }, - { - "infinitive": "unbend", - "present": "unbends", - "gerund": "unbending", - "past": "unbent", - "past_participle": "unbent" - }, - { - "infinitive": "separate", - "present": "separates", - "gerund": "separating", - "past": "separated", - "past_participle": "separated" - }, - { - "infinitive": "symbol", - "present": "symbols", - "gerund": "symbolling", - "past": "symbolled", - "past_participle": "symbolled" - }, - { - "infinitive": "cove", - "present": "coves", - "gerund": "coving", - "past": "coved", - "past_participle": "coved" - }, - { - "infinitive": "flocculate", - "present": "flocculates", - "gerund": "flocculating", - "past": "flocculated", - "past_participle": "flocculated" - }, - { - "infinitive": "despoil", - "present": "despoils", - "gerund": "despoiling", - "past": "despoiled", - "past_participle": "despoiled" - }, - { - "infinitive": "dishonour", - "present": "dishonours", - "gerund": "dishonouring", - "past": "dishonoured", - "past_participle": "dishonoured" - }, - { - "infinitive": "ferrule", - "present": "ferrules", - "gerund": "ferruling", - "past": "ferruled", - "past_participle": "ferruled" - }, - { - "infinitive": "feudalize", - "present": "feudalizes", - "gerund": "feudalizing", - "past": "feudalized", - "past_participle": "feudalized" - }, - { - "infinitive": "spouse", - "present": "spouses", - "gerund": "spousing", - "past": "spoused", - "past_participle": "spoused" - }, - { - "infinitive": "verjuice", - "present": "verjuices", - "gerund": "verjuicing", - "past": "verjuiced", - "past_participle": "verjuiced" - }, - { - "infinitive": "crossbred", - "present": "", - "gerund": "", - "past": "crossbred", - "past_participle": "crossbred" - }, - { - "infinitive": "luxate", - "present": "luxates", - "gerund": "luxating", - "past": "luxated", - "past_participle": "luxated" - }, - { - "infinitive": "overblow", - "present": "overblows", - "gerund": "overblowing", - "past": "overblew", - "past_participle": "overblown" - }, - { - "infinitive": "invest", - "present": "invests", - "gerund": "investing", - "past": "invested", - "past_participle": "invested" - }, - { - "infinitive": "curve", - "present": "curves", - "gerund": "curving", - "past": "curved", - "past_participle": "curved" - }, - { - "infinitive": "lyse", - "present": "lyses", - "gerund": "lysing", - "past": "lysed", - "past_participle": "lysed" - }, - { - "infinitive": "wamble", - "present": "wambles", - "gerund": "wambling", - "past": "wambled", - "past_participle": "wambled" - }, - { - "infinitive": "philosophize", - "present": "philosophizes", - "gerund": "philosophizing", - "past": "philosophized", - "past_participle": "philosophized" - }, - { - "infinitive": "derrick", - "present": "derricks", - "gerund": "derricking", - "past": "derricked", - "past_participle": "derricked" - }, - { - "infinitive": "fizzle", - "present": "fizzles", - "gerund": "fizzling", - "past": "fizzled", - "past_participle": "fizzled" - }, - { - "infinitive": "enswathe", - "present": "enswathes", - "gerund": "enswathing", - "past": "enswathed", - "past_participle": "enswathed" - }, - { - "infinitive": "lallygag", - "present": "lallygags", - "gerund": "lallygagging", - "past": "lallygagged", - "past_participle": "lallygagged" - }, - { - "infinitive": "adlib", - "present": "adlibs", - "gerund": "adlibbing", - "past": "adlibbed", - "past_participle": "adlibbed" - }, - { - "infinitive": "disc", - "present": "discs", - "gerund": "discing", - "past": "disced", - "past_participle": "disced" - }, - { - "infinitive": "antagonize", - "present": "antagonizes", - "gerund": "antagonizing", - "past": "antagonized", - "past_participle": "antagonized" - }, - { - "infinitive": "dish", - "present": "dishes", - "gerund": "dishing", - "past": "dished", - "past_participle": "dished" - }, - { - "infinitive": "follow", - "present": "follows", - "gerund": "following", - "past": "followed", - "past_participle": "followed" - }, - { - "infinitive": "glimpse", - "present": "glimpses", - "gerund": "glimpsing", - "past": "glimpsed", - "past_participle": "glimpsed" - }, - { - "infinitive": "depressurize", - "present": "depressurizes", - "gerund": "depressurizing", - "past": "depressurized", - "past_participle": "depressurized" - }, - { - "infinitive": "homage", - "present": "homages", - "gerund": "homaging", - "past": "homaged", - "past_participle": "homaged" - }, - { - "infinitive": "assuage", - "present": "assuages", - "gerund": "assuaging", - "past": "assuaged", - "past_participle": "assuaged" - }, - { - "infinitive": "begird", - "present": "begirds", - "gerund": "begirding", - "past": "begirt", - "past_participle": "begirt" - }, - { - "infinitive": "precast", - "present": "precasts", - "gerund": "precasting", - "past": "precast", - "past_participle": "precast" - }, - { - "infinitive": "defuze", - "present": "defuzes", - "gerund": "defuzing", - "past": "defuzed", - "past_participle": "defuzed" - }, - { - "infinitive": "backslide", - "present": "backslides", - "gerund": "backsliding", - "past": "backslidden", - "past_participle": "backslidden" - }, - { - "infinitive": "fay", - "present": "fays", - "gerund": "faying", - "past": "fayed", - "past_participle": "fayed" - }, - { - "infinitive": "disjoin", - "present": "disjoins", - "gerund": "disjoining", - "past": "disjoined", - "past_participle": "disjoined" - }, - { - "infinitive": "induce", - "present": "induces", - "gerund": "inducing", - "past": "induced", - "past_participle": "induced" - }, - { - "infinitive": "fan", - "present": "fans", - "gerund": "fanning", - "past": "fanned", - "past_participle": "fanned" - }, - { - "infinitive": "ticket", - "present": "tickets", - "gerund": "ticketing", - "past": "ticketed", - "past_participle": "ticketed" - }, - { - "infinitive": "gainsay", - "present": "gainsays", - "gerund": "gainsaying", - "past": "gainsaid", - "past_participle": "gainsaid" - }, - { - "infinitive": "steeve", - "present": "steeves", - "gerund": "steeving", - "past": "steeved", - "past_participle": "steeved" - }, - { - "infinitive": "induct", - "present": "inducts", - "gerund": "inducting", - "past": "inducted", - "past_participle": "inducted" - }, - { - "infinitive": "lisp", - "present": "lisps", - "gerund": "lisping", - "past": "lisped", - "past_participle": "lisped" - }, - { - "infinitive": "list", - "present": "lists", - "gerund": "listing", - "past": "listed", - "past_participle": "listed" - }, - { - "infinitive": "goster", - "present": "gosters", - "gerund": "gostering", - "past": "gostered", - "past_participle": "gostered" - }, - { - "infinitive": "intimidate", - "present": "intimidates", - "gerund": "intimidating", - "past": "intimidated", - "past_participle": "intimidated" - }, - { - "infinitive": "programme", - "present": "programs", - "gerund": "programming", - "past": "programmed", - "past_participle": "programmed" - }, - { - "infinitive": "flick", - "present": "flicks", - "gerund": "flicking", - "past": "flicked", - "past_participle": "flicked" - }, - { - "infinitive": "ted", - "present": "teds", - "gerund": "tedding", - "past": "tedded", - "past_participle": "tedded" - }, - { - "infinitive": "tee", - "present": "tees", - "gerund": "teeing", - "past": "teed", - "past_participle": "teed" - }, - { - "infinitive": "ripen", - "present": "ripens", - "gerund": "ripening", - "past": "ripened", - "past_participle": "ripened" - }, - { - "infinitive": "rate", - "present": "rates", - "gerund": "rating", - "past": "rated", - "past_participle": "rated" - }, - { - "infinitive": "design", - "present": "designs", - "gerund": "designing", - "past": "designed", - "past_participle": "designed" - }, - { - "infinitive": "canalize", - "present": "canalizes", - "gerund": "canalizing", - "past": "canalized", - "past_participle": "canalized" - }, - { - "infinitive": "overachieve", - "present": "overachieves", - "gerund": "overachieving", - "past": "overachieved", - "past_participle": "overachieved" - }, - { - "infinitive": "paralyze", - "present": "paralyzes", - "gerund": "paralyzing", - "past": "paralyzed", - "past_participle": "paralyzed" - }, - { - "infinitive": "countermove", - "present": "countermoves", - "gerund": "countermoving", - "past": "countermoved", - "past_participle": "countermoved" - }, - { - "infinitive": "sue", - "present": "sues", - "gerund": "suing", - "past": "sued", - "past_participle": "sued" - }, - { - "infinitive": "prepossess", - "present": "prepossesses", - "gerund": "prepossessing", - "past": "prepossessed", - "past_participle": "prepossessed" - }, - { - "infinitive": "sub", - "present": "subs", - "gerund": "subbing", - "past": "subbed", - "past_participle": "subbed" - }, - { - "infinitive": "whap", - "present": "whaps", - "gerund": "whaping", - "past": "whaped", - "past_participle": "whaped" - }, - { - "infinitive": "skive", - "present": "skives", - "gerund": "skiving", - "past": "skived", - "past_participle": "skived" - }, - { - "infinitive": "sun", - "present": "suns", - "gerund": "sunning", - "past": "sunned", - "past_participle": "sunned" - }, - { - "infinitive": "sum", - "present": "sums", - "gerund": "summing", - "past": "summed", - "past_participle": "summed" - }, - { - "infinitive": "whimper", - "present": "whimpers", - "gerund": "whimpering", - "past": "whimpered", - "past_participle": "whimpered" - }, - { - "infinitive": "crust", - "present": "crusts", - "gerund": "crusting", - "past": "crusted", - "past_participle": "crusted" - }, - { - "infinitive": "brief", - "present": "briefs", - "gerund": "briefing", - "past": "briefed", - "past_participle": "briefed" - }, - { - "infinitive": "overload", - "present": "overloads", - "gerund": "overloading", - "past": "overloaded", - "past_participle": "overloaded" - }, - { - "infinitive": "boodle", - "present": "boodles", - "gerund": "boodling", - "past": "boodled", - "past_participle": "boodled" - }, - { - "infinitive": "crush", - "present": "crushes", - "gerund": "crushing", - "past": "crushed", - "past_participle": "crushed" - }, - { - "infinitive": "desegregate", - "present": "desegregates", - "gerund": "desegregating", - "past": "desegregated", - "past_participle": "desegregated" - }, - { - "infinitive": "intersect", - "present": "intersects", - "gerund": "intersecting", - "past": "intersected", - "past_participle": "intersected" - }, - { - "infinitive": "sup", - "present": "sups", - "gerund": "supping", - "past": "supped", - "past_participle": "supped" - }, - { - "infinitive": "entwintwine", - "present": "entwintwines", - "gerund": "entwintwining", - "past": "entwintwined", - "past_participle": "entwintwined" - }, - { - "infinitive": "poohpooh", - "present": "poohpoohs", - "gerund": "poohpoohing", - "past": "poohpoohed", - "past_participle": "poohpoohed" - }, - { - "infinitive": "experimentalize", - "present": "experimentalizes", - "gerund": "experimentalizing", - "past": "experimentalized", - "past_participle": "experimentalized" - }, - { - "infinitive": "lacquer", - "present": "lacquers", - "gerund": "lacquering", - "past": "lacquered", - "past_participle": "lacquered" - }, - { - "infinitive": "espalier", - "present": "espaliers", - "gerund": "espaliering", - "past": "espaliered", - "past_participle": "espaliered" - }, - { - "infinitive": "eventuate", - "present": "eventuates", - "gerund": "eventuating", - "past": "eventuated", - "past_participle": "eventuated" - }, - { - "infinitive": "alchemize", - "present": "alchemizes", - "gerund": "alchemizing", - "past": "alchemized", - "past_participle": "alchemized" - }, - { - "infinitive": "transfigure", - "present": "transfigures", - "gerund": "transfiguring", - "past": "transfigured", - "past_participle": "transfigured" - }, - { - "infinitive": "ventilate", - "present": "ventilates", - "gerund": "ventilating", - "past": "ventilated", - "past_participle": "ventilated" - }, - { - "infinitive": "misinterpret", - "present": "misinterprets", - "gerund": "misinterpreting", - "past": "misinterpreted", - "past_participle": "misinterpreted" - }, - { - "infinitive": "out-herod", - "present": "out-herods", - "gerund": "out-heroding", - "past": "out-heroded", - "past_participle": "out-heroded" - }, - { - "infinitive": "aphorize", - "present": "aphorizes", - "gerund": "aphorizing", - "past": "aphorized", - "past_participle": "aphorized" - }, - { - "infinitive": "qualify", - "present": "qualifies", - "gerund": "qualifying", - "past": "qualified", - "past_participle": "qualified" - }, - { - "infinitive": "sophisticate", - "present": "sophisticates", - "gerund": "sophisticating", - "past": "sophisticated", - "past_participle": "sophisticated" - }, - { - "infinitive": "infringe", - "present": "infringes", - "gerund": "infringing", - "past": "infringed", - "past_participle": "infringed" - }, - { - "infinitive": "supplicate", - "present": "supplicates", - "gerund": "supplicating", - "past": "supplicated", - "past_participle": "supplicated" - }, - { - "infinitive": "suckle", - "present": "suckles", - "gerund": "suckling", - "past": "suckled", - "past_participle": "suckled" - }, - { - "infinitive": "demit", - "present": "demits", - "gerund": "demitting", - "past": "demitted", - "past_participle": "demitted" - }, - { - "infinitive": "plonk", - "present": "plonks", - "gerund": "plonking", - "past": "plonked", - "past_participle": "plonked" - }, - { - "infinitive": "cooey", - "present": "cooeys", - "gerund": "cooeying", - "past": "cooeyed", - "past_participle": "cooeyed" - }, - { - "infinitive": "proceed", - "present": "proceeds", - "gerund": "proceeding", - "past": "proceeded", - "past_participle": "proceeded" - }, - { - "infinitive": "disenable", - "present": "disenables", - "gerund": "disenabling", - "past": "disenabled", - "past_participle": "disenabled" - }, - { - "infinitive": "faint", - "present": "faints", - "gerund": "fainting", - "past": "fainted", - "past_participle": "fainted" - }, - { - "infinitive": "wield", - "present": "wields", - "gerund": "wielding", - "past": "wielded", - "past_participle": "wielded" - }, - { - "infinitive": "somnambulate", - "present": "somnambulates", - "gerund": "somnambulating", - "past": "somnambulated", - "past_participle": "somnambulated" - }, - { - "infinitive": "irritate", - "present": "irritates", - "gerund": "irritating", - "past": "irritated", - "past_participle": "irritated" - }, - { - "infinitive": "inlay", - "present": "inlays", - "gerund": "inlaying", - "past": "inlaid", - "past_participle": "inlaid" - }, - { - "infinitive": "garnish", - "present": "garnishes", - "gerund": "garnishing", - "past": "garnished", - "past_participle": "garnished" - }, - { - "infinitive": "hurrah", - "present": "hurrahs", - "gerund": "hurrahing", - "past": "hurrahed", - "past_participle": "hurrahed" - }, - { - "infinitive": "waxen", - "present": "waxens", - "gerund": "waxening", - "past": "waxened", - "past_participle": "waxened" - }, - { - "infinitive": "mercerize", - "present": "mercerizes", - "gerund": "mercerizing", - "past": "mercerized", - "past_participle": "mercerized" - }, - { - "infinitive": "flaw", - "present": "flaws", - "gerund": "flawing", - "past": "flawed", - "past_participle": "flawed" - }, - { - "infinitive": "flap", - "present": "flaps", - "gerund": "flapping", - "past": "flapped", - "past_participle": "flapped" - }, - { - "infinitive": "mire", - "present": "mires", - "gerund": "miring", - "past": "mired", - "past_participle": "mired" - }, - { - "infinitive": "unkennel", - "present": "unkennels", - "gerund": "unkenneling", - "past": "unkenneled", - "past_participle": "unkenneled" - }, - { - "infinitive": "fley", - "present": "fleys", - "gerund": "fleying", - "past": "fleyed", - "past_participle": "fleyed" - }, - { - "infinitive": "re-sort", - "present": "re-sorts", - "gerund": "re-sorting", - "past": "resorted", - "past_participle": "re-sorted" - }, - { - "infinitive": "flag", - "present": "flags", - "gerund": "flagging", - "past": "flagged", - "past_participle": "flagged" - }, - { - "infinitive": "dialyze", - "present": "dialyzes", - "gerund": "dialyzing", - "past": "dialyzed", - "past_participle": "dialyzed" - }, - { - "infinitive": "stick", - "present": "sticks", - "gerund": "sticking", - "past": "stuck", - "past_participle": "stuck" - }, - { - "infinitive": "amputate", - "present": "amputates", - "gerund": "amputating", - "past": "amputated", - "past_participle": "amputated" - }, - { - "infinitive": "flam", - "present": "flams", - "gerund": "flamming", - "past": "flammed", - "past_participle": "flammed" - }, - { - "infinitive": "mellow", - "present": "mellows", - "gerund": "mellowing", - "past": "mellowed", - "past_participle": "mellowed" - }, - { - "infinitive": "glad", - "present": "glads", - "gerund": "glading", - "past": "gladed", - "past_participle": "gladed" - }, - { - "infinitive": "domineer", - "present": "domineers", - "gerund": "domineering", - "past": "domineered", - "past_participle": "domineered" - }, - { - "infinitive": "berth", - "present": "berths", - "gerund": "berthing", - "past": "berthed", - "past_participle": "berthed" - }, - { - "infinitive": "squish", - "present": "squishes", - "gerund": "squishing", - "past": "squished", - "past_participle": "squished" - }, - { - "infinitive": "conspire", - "present": "conspires", - "gerund": "conspiring", - "past": "conspired", - "past_participle": "conspired" - }, - { - "infinitive": "coerce", - "present": "coerces", - "gerund": "coercing", - "past": "coerced", - "past_participle": "coerced" - }, - { - "infinitive": "arise", - "present": "arises", - "gerund": "arising", - "past": "arose", - "past_participle": "arisen" - }, - { - "infinitive": "cultivate", - "present": "cultivates", - "gerund": "cultivating", - "past": "cultivated", - "past_participle": "cultivated" - }, - { - "infinitive": "allege", - "present": "alleges", - "gerund": "alleging", - "past": "alleged", - "past_participle": "alleged" - }, - { - "infinitive": "court", - "present": "courts", - "gerund": "courting", - "past": "courted", - "past_participle": "courted" - }, - { - "infinitive": "irrigate", - "present": "irrigates", - "gerund": "irrigating", - "past": "irrigated", - "past_participle": "irrigated" - }, - { - "infinitive": "goad", - "present": "goads", - "gerund": "goading", - "past": "goaded", - "past_participle": "goaded" - }, - { - "infinitive": "overbalance", - "present": "overbalances", - "gerund": "overbalancing", - "past": "overbalanced", - "past_participle": "overbalanced" - }, - { - "infinitive": "mould", - "present": "moulds", - "gerund": "moulding", - "past": "moulded", - "past_participle": "moulded" - }, - { - "infinitive": "sandwich", - "present": "sandwiches", - "gerund": "sandwiching", - "past": "sandwiched", - "past_participle": "sandwiched" - }, - { - "infinitive": "okay", - "present": "okays", - "gerund": "okaying", - "past": "okayed", - "past_participle": "okayed" - }, - { - "infinitive": "abdicate", - "present": "abdicates", - "gerund": "abdicating", - "past": "abdicated", - "past_participle": "abdicated" - }, - { - "infinitive": "acerbate", - "present": "acerbates", - "gerund": "acerbating", - "past": "acerbated", - "past_participle": "acerbated" - }, - { - "infinitive": "emulate", - "present": "emulates", - "gerund": "emulating", - "past": "emulated", - "past_participle": "emulated" - }, - { - "infinitive": "embalm", - "present": "embalms", - "gerund": "embalming", - "past": "embalmed", - "past_participle": "embalmed" - }, - { - "infinitive": "preoccupy", - "present": "preoccupies", - "gerund": "preoccupying", - "past": "preoccupied", - "past_participle": "preoccupied" - }, - { - "infinitive": "acierate", - "present": "acierates", - "gerund": "acierating", - "past": "acierated", - "past_participle": "acierated" - }, - { - "infinitive": "disable", - "present": "disables", - "gerund": "disabling", - "past": "disabled", - "past_participle": "disabled" - }, - { - "infinitive": "adventure", - "present": "adventures", - "gerund": "adventuring", - "past": "adventured", - "past_participle": "adventured" - }, - { - "infinitive": "number", - "present": "numbs", - "gerund": "numbing", - "past": "numbed", - "past_participle": "numbed" - }, - { - "infinitive": "capitalize", - "present": "capitalizes", - "gerund": "capitalizing", - "past": "capitalized", - "past_participle": "capitalized" - }, - { - "infinitive": "castle", - "present": "castles", - "gerund": "castling", - "past": "castled", - "past_participle": "castled" - }, - { - "infinitive": "pronominalize", - "present": "pronominalizes", - "gerund": "pronominalizing", - "past": "pronominalized", - "past_participle": "pronominalized" - }, - { - "infinitive": "palpitate", - "present": "palpitates", - "gerund": "palpitating", - "past": "palpitated", - "past_participle": "palpitated" - }, - { - "infinitive": "rationalize", - "present": "rationalizes", - "gerund": "rationalizing", - "past": "rationalized", - "past_participle": "rationalized" - }, - { - "infinitive": "postfix", - "present": "postfixes", - "gerund": "postfixing", - "past": "postfixed", - "past_participle": "postfixed" - }, - { - "infinitive": "Gnosticize", - "present": "Gnosticizes", - "gerund": "Gnosticizing", - "past": "Gnosticized", - "past_participle": "Gnosticized" - }, - { - "infinitive": "stash", - "present": "stashes", - "gerund": "stashing", - "past": "stashed", - "past_participle": "stashed" - }, - { - "infinitive": "ricochet", - "present": "ricochets", - "gerund": "ricochetting", - "past": "ricochetted", - "past_participle": "ricochetted" - }, - { - "infinitive": "recrudesce", - "present": "recrudesces", - "gerund": "recrudescing", - "past": "recrudesced", - "past_participle": "recrudesced" - }, - { - "infinitive": "shore", - "present": "shores", - "gerund": "shoring", - "past": "shored", - "past_participle": "shored" - }, - { - "infinitive": "shade", - "present": "shades", - "gerund": "shading", - "past": "shaded", - "past_participle": "shaded" - }, - { - "infinitive": "retaliate", - "present": "retaliates", - "gerund": "retaliating", - "past": "retaliated", - "past_participle": "retaliated" - }, - { - "infinitive": "dissatisfy", - "present": "dissatisfies", - "gerund": "dissatisfying", - "past": "dissatisfied", - "past_participle": "dissatisfied" - }, - { - "infinitive": "abseil", - "present": "abseils", - "gerund": "abseiling", - "past": "abseiled", - "past_participle": "abseiled" - }, - { - "infinitive": "mission", - "present": "missions", - "gerund": "missioning", - "past": "missioned", - "past_participle": "missioned" - }, - { - "infinitive": "flaunt", - "present": "flaunts", - "gerund": "flaunting", - "past": "flaunted", - "past_participle": "flaunted" - }, - { - "infinitive": "reconnect", - "present": "reconnects", - "gerund": "reconnecting", - "past": "reconnected", - "past_participle": "reconnected" - }, - { - "infinitive": "flounce", - "present": "flounces", - "gerund": "flouncing", - "past": "flounced", - "past_participle": "flounced" - }, - { - "infinitive": "style", - "present": "styles", - "gerund": "styling", - "past": "styled", - "past_participle": "styled" - }, - { - "infinitive": "jollify", - "present": "jollifies", - "gerund": "jollifying", - "past": "jollified", - "past_participle": "jollified" - }, - { - "infinitive": "resorb", - "present": "resorbs", - "gerund": "resorbing", - "past": "resorbed", - "past_participle": "resorbed" - }, - { - "infinitive": "pray", - "present": "prays", - "gerund": "praying", - "past": "prayed", - "past_participle": "prayed" - }, - { - "infinitive": "wilder", - "present": "wilders", - "gerund": "wildering", - "past": "wildered", - "past_participle": "wildered" - }, - { - "infinitive": "garrotte", - "present": "garrottes", - "gerund": "garrotting", - "past": "garrotted", - "past_participle": "garrotted" - }, - { - "infinitive": "constitutionalize", - "present": "constitutionalizes", - "gerund": "constitutionalizing", - "past": "constitutionalized", - "past_participle": "constitutionalized" - }, - { - "infinitive": "alter", - "present": "alters", - "gerund": "altering", - "past": "altered", - "past_participle": "altered" - }, - { - "infinitive": "return", - "present": "returns", - "gerund": "returning", - "past": "returned", - "past_participle": "returned" - }, - { - "infinitive": "belittle", - "present": "belittles", - "gerund": "belittling", - "past": "belittled", - "past_participle": "belittled" - }, - { - "infinitive": "accumulate", - "present": "accumulates", - "gerund": "accumulating", - "past": "accumulated", - "past_participle": "accumulated" - }, - { - "infinitive": "slipper", - "present": "slippers", - "gerund": "slippering", - "past": "slippered", - "past_participle": "slippered" - }, - { - "infinitive": "refresh", - "present": "refreshes", - "gerund": "refreshing", - "past": "refreshed", - "past_participle": "refreshed" - }, - { - "infinitive": "modge", - "present": "modges", - "gerund": "modging", - "past": "modged", - "past_participle": "modged" - }, - { - "infinitive": "malfunction", - "present": "malfunctions", - "gerund": "malfunctioning", - "past": "malfunctioned", - "past_participle": "malfunctioned" - }, - { - "infinitive": "shoal", - "present": "shoals", - "gerund": "shoaling", - "past": "shoaled", - "past_participle": "shoaled" - }, - { - "infinitive": "formulate", - "present": "formulates", - "gerund": "formulating", - "past": "formulated", - "past_participle": "formulated" - }, - { - "infinitive": "repartition", - "present": "repartitions", - "gerund": "repartitioning", - "past": "repartitioned", - "past_participle": "repartitioned" - }, - { - "infinitive": "recapitulate", - "present": "recapitulates", - "gerund": "recapitulating", - "past": "recapitulated", - "past_participle": "recapitulated" - }, - { - "infinitive": "expect", - "present": "expects", - "gerund": "expecting", - "past": "expected", - "past_participle": "expected" - }, - { - "infinitive": "inflict", - "present": "inflicts", - "gerund": "inflicting", - "past": "inflicted", - "past_participle": "inflicted" - }, - { - "infinitive": "chunder", - "present": "chunders", - "gerund": "chundering", - "past": "chundered", - "past_participle": "chundered" - }, - { - "infinitive": "focalize", - "present": "focalizes", - "gerund": "focalizing", - "past": "focalized", - "past_participle": "focalized" - }, - { - "infinitive": "rebound", - "present": "rebounds", - "gerund": "rebounding", - "past": "rebounded", - "past_participle": "rebounded" - }, - { - "infinitive": "disquiet", - "present": "disquiets", - "gerund": "disquieting", - "past": "disquieted", - "past_participle": "disquieted" - }, - { - "infinitive": "hilt", - "present": "hilts", - "gerund": "hilting", - "past": "hilted", - "past_participle": "hilted" - }, - { - "infinitive": "loll", - "present": "lolls", - "gerund": "lolling", - "past": "lolled", - "past_participle": "lolled" - }, - { - "infinitive": "chaffer", - "present": "chaffers", - "gerund": "chaffering", - "past": "chaffered", - "past_participle": "chaffered" - }, - { - "infinitive": "hill", - "present": "hills", - "gerund": "hilling", - "past": "hilled", - "past_participle": "hilled" - }, - { - "infinitive": "breathalyze", - "present": "breathalyzes", - "gerund": "breathalyzing", - "past": "breathalyzed", - "past_participle": "breathalyzed" - }, - { - "infinitive": "silicify", - "present": "silicifies", - "gerund": "silicifying", - "past": "silicified", - "past_participle": "silicified" - }, - { - "infinitive": "gut", - "present": "guts", - "gerund": "gutting", - "past": "gutted", - "past_participle": "gutted" - }, - { - "infinitive": "forgive", - "present": "forgives", - "gerund": "forgiving", - "past": "forgave", - "past_participle": "forgiven" - }, - { - "infinitive": "powwow", - "present": "powwows", - "gerund": "powwowing", - "past": "powwowed", - "past_participle": "powwowed" - }, - { - "infinitive": "disinfect", - "present": "disinfects", - "gerund": "disinfecting", - "past": "disinfected", - "past_participle": "disinfected" - }, - { - "infinitive": "teach", - "present": "teaches", - "gerund": "teaching", - "past": "taught", - "past_participle": "taught" - }, - { - "infinitive": "interiorize", - "present": "interiorizes", - "gerund": "interiorizing", - "past": "interiorized", - "past_participle": "interiorized" - }, - { - "infinitive": "blister", - "present": "blisters", - "gerund": "blistering", - "past": "blistered", - "past_participle": "blistered" - }, - { - "infinitive": "thread", - "present": "threads", - "gerund": "threading", - "past": "threaded", - "past_participle": "threaded" - }, - { - "infinitive": "stampede", - "present": "stampedes", - "gerund": "stampeding", - "past": "stampeded", - "past_participle": "stampeded" - }, - { - "infinitive": "misreport", - "present": "misreports", - "gerund": "misreporting", - "past": "misreported", - "past_participle": "misreported" - }, - { - "infinitive": "threep", - "present": "threeps", - "gerund": "threeping", - "past": "threeped", - "past_participle": "threeped" - }, - { - "infinitive": "prejudice", - "present": "prejudices", - "gerund": "prejudicing", - "past": "prejudiced", - "past_participle": "prejudiced" - }, - { - "infinitive": "circuit", - "present": "circuits", - "gerund": "circuiting", - "past": "circuited", - "past_participle": "circuited" - }, - { - "infinitive": "debouch", - "present": "debouches", - "gerund": "debouching", - "past": "debouched", - "past_participle": "debouched" - }, - { - "infinitive": "bushel", - "present": "bushels", - "gerund": "bushelling", - "past": "bushelled", - "past_participle": "bushelled" - }, - { - "infinitive": "dine", - "present": "dines", - "gerund": "dining", - "past": "dined", - "past_participle": "dined" - }, - { - "infinitive": "feel", - "present": "feels", - "gerund": "feeling", - "past": "felt", - "past_participle": "felt" - }, - { - "infinitive": "relate", - "present": "relates", - "gerund": "relating", - "past": "related", - "past_participle": "related" - }, - { - "infinitive": "fancy", - "present": "fancies", - "gerund": "fancying", - "past": "fancied", - "past_participle": "fancied" - }, - { - "infinitive": "dint", - "present": "dints", - "gerund": "dinting", - "past": "dinted", - "past_participle": "dinted" - }, - { - "infinitive": "notify", - "present": "notifies", - "gerund": "notifying", - "past": "notified", - "past_participle": "notified" - }, - { - "infinitive": "wench", - "present": "wenches", - "gerund": "wenching", - "past": "wenched", - "past_participle": "wenched" - }, - { - "infinitive": "blank", - "present": "blanks", - "gerund": "blanking", - "past": "blanked", - "past_participle": "blanked" - }, - { - "infinitive": "moan", - "present": "moans", - "gerund": "moaning", - "past": "moaned", - "past_participle": "moaned" - }, - { - "infinitive": "story", - "present": "stories", - "gerund": "storying", - "past": "storied", - "past_participle": "storied" - }, - { - "infinitive": "script", - "present": "scripts", - "gerund": "scripting", - "past": "scripted", - "past_participle": "scripted" - }, - { - "infinitive": "interact", - "present": "interacts", - "gerund": "interacting", - "past": "interacted", - "past_participle": "interacted" - }, - { - "infinitive": "grime", - "present": "grimes", - "gerund": "griming", - "past": "grimed", - "past_participle": "grimed" - }, - { - "infinitive": "collar", - "present": "collars", - "gerund": "collaring", - "past": "collared", - "past_participle": "collared" - }, - { - "infinitive": "swarm", - "present": "swarms", - "gerund": "swarming", - "past": "swarmed", - "past_participle": "swarmed" - }, - { - "infinitive": "storm", - "present": "storms", - "gerund": "storming", - "past": "stormed", - "past_participle": "stormed" - }, - { - "infinitive": "swarth", - "present": "swarths", - "gerund": "swarthing", - "past": "swarthed", - "past_participle": "swarthed" - }, - { - "infinitive": "moat", - "present": "moats", - "gerund": "moating", - "past": "moated", - "past_participle": "moated" - }, - { - "infinitive": "syrup", - "present": "syrups", - "gerund": "syruping", - "past": "syruped", - "past_participle": "syruped" - }, - { - "infinitive": "embus", - "present": "embuses", - "gerund": "embusing", - "past": "embused", - "past_participle": "embused" - }, - { - "infinitive": "store", - "present": "stores", - "gerund": "storing", - "past": "stored", - "past_participle": "stored" - }, - { - "infinitive": "redistribute", - "present": "redistributes", - "gerund": "redistributing", - "past": "redistributed", - "past_participle": "redistributed" - }, - { - "infinitive": "fidget", - "present": "fidgets", - "gerund": "fidgeting", - "past": "fidgeted", - "past_participle": "fidgeted" - }, - { - "infinitive": "rifle", - "present": "rifles", - "gerund": "rifling", - "past": "rifled", - "past_participle": "rifled" - }, - { - "infinitive": "officiate", - "present": "officiates", - "gerund": "officiating", - "past": "officiated", - "past_participle": "officiated" - }, - { - "infinitive": "throttle", - "present": "throttles", - "gerund": "throttling", - "past": "throttled", - "past_participle": "throttled" - }, - { - "infinitive": "denazify", - "present": "denazifies", - "gerund": "denazifying", - "past": "denazified", - "past_participle": "denazified" - }, - { - "infinitive": "double", - "present": "doubles", - "gerund": "doubling", - "past": "doubled", - "past_participle": "doubled" - }, - { - "infinitive": "countercharge", - "present": "countercharges", - "gerund": "countercharging", - "past": "countercharged", - "past_participle": "countercharged" - }, - { - "infinitive": "medicate", - "present": "medicates", - "gerund": "medicating", - "past": "medicated", - "past_participle": "medicated" - }, - { - "infinitive": "stall", - "present": "stalls", - "gerund": "stalling", - "past": "stalled", - "past_participle": "stalled" - }, - { - "infinitive": "cuff", - "present": "cuffs", - "gerund": "cuffing", - "past": "cuffed", - "past_participle": "cuffed" - }, - { - "infinitive": "parenthesize", - "present": "parenthesizes", - "gerund": "parenthesizing", - "past": "parenthesized", - "past_participle": "parenthesized" - }, - { - "infinitive": "stale", - "present": "stales", - "gerund": "staling", - "past": "staled", - "past_participle": "staled" - }, - { - "infinitive": "amass", - "present": "amasses", - "gerund": "amassing", - "past": "amassed", - "past_participle": "amassed" - }, - { - "infinitive": "sectionalize", - "present": "sectionalizes", - "gerund": "sectionalizing", - "past": "sectionalized", - "past_participle": "sectionalized" - }, - { - "infinitive": "exert", - "present": "exerts", - "gerund": "exerting", - "past": "exerted", - "past_participle": "exerted" - }, - { - "infinitive": "strengthen", - "present": "strengthens", - "gerund": "strengthening", - "past": "strengthened", - "past_participle": "strengthened" - }, - { - "infinitive": "redintegrate", - "present": "redintegrates", - "gerund": "redintegrating", - "past": "redintegrated", - "past_participle": "redintegrated" - }, - { - "infinitive": "ingulf", - "present": "ingulfs", - "gerund": "ingulfing", - "past": "ingulfed", - "past_participle": "ingulfed" - }, - { - "infinitive": "gall", - "present": "galls", - "gerund": "galling", - "past": "galled", - "past_participle": "galled" - }, - { - "infinitive": "remodel", - "present": "remodels", - "gerund": "remodeling", - "past": "remodeled", - "past_participle": "remodeled" - }, - { - "infinitive": "toughen", - "present": "toughens", - "gerund": "toughening", - "past": "toughened", - "past_participle": "toughened" - }, - { - "infinitive": "humanize", - "present": "humanizes", - "gerund": "humanizing", - "past": "humanized", - "past_participle": "humanized" - }, - { - "infinitive": "over-heat", - "present": "over-heats", - "gerund": "over-heating", - "past": "overheated", - "past_participle": "over-heated" - }, - { - "infinitive": "recentralize", - "present": "recentralizes", - "gerund": "recentralizing", - "past": "recentralized", - "past_participle": "recentralized" - }, - { - "infinitive": "eff", - "present": "effs", - "gerund": "effing", - "past": "effed", - "past_participle": "effed" - }, - { - "infinitive": "buffer", - "present": "buffs", - "gerund": "buffing", - "past": "buffed", - "past_participle": "buffed" - }, - { - "infinitive": "gill", - "present": "gills", - "gerund": "gilling", - "past": "gilled", - "past_participle": "gilled" - }, - { - "infinitive": "populate", - "present": "populates", - "gerund": "populating", - "past": "populated", - "past_participle": "populated" - }, - { - "infinitive": "nonsuit", - "present": "nonsuits", - "gerund": "nonsuiting", - "past": "nonsuited", - "past_participle": "nonsuited" - }, - { - "infinitive": "customize", - "present": "customizes", - "gerund": "customizing", - "past": "customized", - "past_participle": "customized" - }, - { - "infinitive": "pillage", - "present": "pillages", - "gerund": "pillaging", - "past": "pillaged", - "past_participle": "pillaged" - }, - { - "infinitive": "inconvenience", - "present": "inconveniences", - "gerund": "inconveniencing", - "past": "inconvenienced", - "past_participle": "inconvenienced" - }, - { - "infinitive": "reach", - "present": "reaches", - "gerund": "reaching", - "past": "reached", - "past_participle": "reached" - }, - { - "infinitive": "circumfuse", - "present": "circumfuses", - "gerund": "circumfusing", - "past": "circumfused", - "past_participle": "circumfused" - }, - { - "infinitive": "palpate", - "present": "palpates", - "gerund": "palpating", - "past": "palpated", - "past_participle": "palpated" - }, - { - "infinitive": "psychoanalyze", - "present": "psychoanalyzes", - "gerund": "psychoanalyzing", - "past": "psychoanalyzed", - "past_participle": "psychoanalyzed" - }, - { - "infinitive": "disbar", - "present": "disbars", - "gerund": "disbarring", - "past": "disbarred", - "past_participle": "disbarred" - }, - { - "infinitive": "preexist", - "present": "preexists", - "gerund": "preexisting", - "past": "preexisted", - "past_participle": "preexisted" - }, - { - "infinitive": "destruct", - "present": "destructs", - "gerund": "destructing", - "past": "destructed", - "past_participle": "destructed" - }, - { - "infinitive": "devalue", - "present": "devalues", - "gerund": "devaluing", - "past": "devalued", - "past_participle": "devalued" - }, - { - "infinitive": "notch", - "present": "notches", - "gerund": "notching", - "past": "notched", - "past_participle": "notched" - }, - { - "infinitive": "liberate", - "present": "liberates", - "gerund": "liberating", - "past": "liberated", - "past_participle": "liberated" - }, - { - "infinitive": "scaffold", - "present": "scaffolds", - "gerund": "scaffolding", - "past": "scaffolded", - "past_participle": "scaffolded" - }, - { - "infinitive": "niggle", - "present": "niggles", - "gerund": "niggling", - "past": "niggled", - "past_participle": "niggled" - }, - { - "infinitive": "unclose", - "present": "uncloses", - "gerund": "unclosing", - "past": "unclosed", - "past_participle": "unclosed" - }, - { - "infinitive": "barter", - "present": "barters", - "gerund": "bartering", - "past": "bartered", - "past_participle": "bartered" - }, - { - "infinitive": "divulgate", - "present": "divulgates", - "gerund": "divulgating", - "past": "divulgated", - "past_participle": "divulgated" - }, - { - "infinitive": "cinchonize", - "present": "cinchonizes", - "gerund": "cinchonizing", - "past": "cinchonized", - "past_participle": "cinchonized" - }, - { - "infinitive": "uniform", - "present": "uniforms", - "gerund": "uniforming", - "past": "uniformed", - "past_participle": "uniformed" - }, - { - "infinitive": "whiffle", - "present": "whiffles", - "gerund": "whiffling", - "past": "whiffled", - "past_participle": "whiffled" - }, - { - "infinitive": "aggravate", - "present": "aggravates", - "gerund": "aggravating", - "past": "aggravated", - "past_participle": "aggravated" - }, - { - "infinitive": "predecease", - "present": "predeceases", - "gerund": "predeceasing", - "past": "predeceased", - "past_participle": "predeceased" - }, - { - "infinitive": "mosey", - "present": "moseys", - "gerund": "moseying", - "past": "moseyed", - "past_participle": "moseyed" - }, - { - "infinitive": "frivol", - "present": "frivols", - "gerund": "frivolling", - "past": "frivolled", - "past_participle": "frivolled" - }, - { - "infinitive": "betray", - "present": "betrays", - "gerund": "betraying", - "past": "betrayed", - "past_participle": "betrayed" - }, - { - "infinitive": "shepherd", - "present": "shepherds", - "gerund": "shepherding", - "past": "shepherded", - "past_participle": "shepherded" - }, - { - "infinitive": "hit", - "present": "hits", - "gerund": "hitting", - "past": "hit", - "past_participle": "hit" - }, - { - "infinitive": "invoke", - "present": "invokes", - "gerund": "invoking", - "past": "invoked", - "past_participle": "invoked" - }, - { - "infinitive": "babble", - "present": "babbles", - "gerund": "babbling", - "past": "babbled", - "past_participle": "babbled" - }, - { - "infinitive": "abscise", - "present": "abscises", - "gerund": "abscising", - "past": "abscised", - "past_participle": "abscised" - }, - { - "infinitive": "affright", - "present": "affrights", - "gerund": "affrighting", - "past": "affrighted", - "past_participle": "affrighted" - }, - { - "infinitive": "whistle", - "present": "whistles", - "gerund": "whistling", - "past": "whistled", - "past_participle": "whistled" - }, - { - "infinitive": "cote", - "present": "cotes", - "gerund": "coting", - "past": "coted", - "past_participle": "coted" - }, - { - "infinitive": "hie", - "present": "hies", - "gerund": "hying", - "past": "hied", - "past_participle": "hied" - }, - { - "infinitive": "capacitate", - "present": "capacitates", - "gerund": "capacitating", - "past": "capacitated", - "past_participle": "capacitated" - }, - { - "infinitive": "unbelt", - "present": "unbelts", - "gerund": "unbelting", - "past": "unbelted", - "past_participle": "unbelted" - }, - { - "infinitive": "deaden", - "present": "deadens", - "gerund": "deadening", - "past": "deadened", - "past_participle": "deadened" - }, - { - "infinitive": "reprint", - "present": "reprints", - "gerund": "reprinting", - "past": "reprinted", - "past_participle": "reprinted" - }, - { - "infinitive": "banquet", - "present": "banquets", - "gerund": "banqueting", - "past": "banqueted", - "past_participle": "banqueted" - }, - { - "infinitive": "investigate", - "present": "investigates", - "gerund": "investigating", - "past": "investigated", - "past_participle": "investigated" - }, - { - "infinitive": "push-start", - "present": "push-starts", - "gerund": "push-starting", - "past": "push-started", - "past_participle": "push-started" - }, - { - "infinitive": "cringe", - "present": "cringes", - "gerund": "cringing", - "past": "cringed", - "past_participle": "cringed" - }, - { - "infinitive": "tourney", - "present": "tourneys", - "gerund": "tourneying", - "past": "tourneyed", - "past_participle": "tourneyed" - }, - { - "infinitive": "signify", - "present": "signifies", - "gerund": "signifying", - "past": "signified", - "past_participle": "signified" - }, - { - "infinitive": "dump", - "present": "dumps", - "gerund": "dumping", - "past": "dumped", - "past_participle": "dumped" - }, - { - "infinitive": "upsurge", - "present": "upsurges", - "gerund": "upsurging", - "past": "upsurged", - "past_participle": "upsurged" - }, - { - "infinitive": "resinate", - "present": "resinates", - "gerund": "resinating", - "past": "resinated", - "past_participle": "resinated" - }, - { - "infinitive": "arc", - "present": "arcs", - "gerund": "arcking", - "past": "arcked", - "past_participle": "arcked" - }, - { - "infinitive": "bare", - "present": "bares", - "gerund": "baring", - "past": "bared", - "past_participle": "bared" - }, - { - "infinitive": "barde", - "present": "bards", - "gerund": "barding", - "past": "barded", - "past_participle": "barded" - }, - { - "infinitive": "bark", - "present": "barks", - "gerund": "barking", - "past": "barked", - "past_participle": "barked" - }, - { - "infinitive": "arm", - "present": "arms", - "gerund": "arming", - "past": "armed", - "past_participle": "armed" - }, - { - "infinitive": "visualize", - "present": "visualizes", - "gerund": "visualizing", - "past": "visualized", - "past_participle": "visualized" - }, - { - "infinitive": "blurt", - "present": "blurts", - "gerund": "blurting", - "past": "blurted", - "past_participle": "blurted" - }, - { - "infinitive": "half-volley", - "present": "half-volleys", - "gerund": "half-volleying", - "past": "half-volleyed", - "past_participle": "half-volleyed" - }, - { - "infinitive": "misjudge", - "present": "misjudges", - "gerund": "misjudging", - "past": "misjudged", - "past_participle": "misjudged" - }, - { - "infinitive": "enwrap", - "present": "enwraps", - "gerund": "enwrapping", - "past": "enwrapped", - "past_participle": "enwrapped" - }, - { - "infinitive": "cyclostyle", - "present": "cyclostyles", - "gerund": "cyclostyling", - "past": "cyclostyled", - "past_participle": "cyclostyled" - }, - { - "infinitive": "solo", - "present": "solos", - "gerund": "soloing", - "past": "soloed", - "past_participle": "soloed" - }, - { - "infinitive": "derestrict", - "present": "derestricts", - "gerund": "derestricting", - "past": "derestricted", - "past_participle": "derestricted" - }, - { - "infinitive": "serialize", - "present": "serializes", - "gerund": "serializing", - "past": "serialized", - "past_participle": "serialized" - }, - { - "infinitive": "imbibe", - "present": "imbibes", - "gerund": "imbibing", - "past": "imbibed", - "past_participle": "imbibed" - }, - { - "infinitive": "sole", - "present": "soles", - "gerund": "soling", - "past": "soled", - "past_participle": "soled" - }, - { - "infinitive": "pinchhit", - "present": "pinchhits", - "gerund": "pinchhitting", - "past": "pinchhit", - "past_participle": "pinchhit" - }, - { - "infinitive": "outfit", - "present": "outfits", - "gerund": "outfitting", - "past": "outfitted", - "past_participle": "outfitted" - }, - { - "infinitive": "york", - "present": "yorks", - "gerund": "yorking", - "past": "yorked", - "past_participle": "yorked" - }, - { - "infinitive": "succeed", - "present": "succeeds", - "gerund": "succeeding", - "past": "succeeded", - "past_participle": "succeeded" - }, - { - "infinitive": "franchise", - "present": "franchises", - "gerund": "franchising", - "past": "franchised", - "past_participle": "franchised" - }, - { - "infinitive": "prelude", - "present": "preludes", - "gerund": "preluding", - "past": "preluded", - "past_participle": "preluded" - }, - { - "infinitive": "bronze", - "present": "bronzes", - "gerund": "bronzing", - "past": "bronzed", - "past_participle": "bronzed" - }, - { - "infinitive": "license", - "present": "licenses", - "gerund": "licensing", - "past": "licensed", - "past_participle": "licensed" - }, - { - "infinitive": "oversee", - "present": "oversees", - "gerund": "overseeing", - "past": "oversaw", - "past_participle": "overseen" - }, - { - "infinitive": "interrogate", - "present": "interrogates", - "gerund": "interrogating", - "past": "interrogated", - "past_participle": "interrogated" - }, - { - "infinitive": "entertain", - "present": "entertains", - "gerund": "entertaining", - "past": "entertained", - "past_participle": "entertained" - }, - { - "infinitive": "depredate", - "present": "depredates", - "gerund": "depredating", - "past": "depredated", - "past_participle": "depredated" - }, - { - "infinitive": "attorn", - "present": "attorns", - "gerund": "attorning", - "past": "attorned", - "past_participle": "attorned" - }, - { - "infinitive": "sheathe", - "present": "sheathes", - "gerund": "sheathing", - "past": "sheathed", - "past_participle": "sheathed" - }, - { - "infinitive": "reside", - "present": "resides", - "gerund": "residing", - "past": "resided", - "past_participle": "resided" - }, - { - "infinitive": "distress", - "present": "distresses", - "gerund": "distressing", - "past": "distressed", - "past_participle": "distressed" - }, - { - "infinitive": "chaperone", - "present": "chaperons", - "gerund": "chaperoning", - "past": "chaperoned", - "past_participle": "chaperoned" - }, - { - "infinitive": "whelp", - "present": "whelps", - "gerund": "whelping", - "past": "whelped", - "past_participle": "whelped" - }, - { - "infinitive": "sweep", - "present": "sweeps", - "gerund": "sweeping", - "past": "swept", - "past_participle": "swept" - }, - { - "infinitive": "harbour", - "present": "harbours", - "gerund": "harbouring", - "past": "harboured", - "past_participle": "harboured" - }, - { - "infinitive": "whelm", - "present": "whelms", - "gerund": "whelming", - "past": "whelmed", - "past_participle": "whelmed" - }, - { - "infinitive": "rave", - "present": "raves", - "gerund": "raving", - "past": "raved", - "past_participle": "raved" - }, - { - "infinitive": "bolster", - "present": "bolsters", - "gerund": "bolstering", - "past": "bolstered", - "past_participle": "bolstered" - }, - { - "infinitive": "decline", - "present": "declines", - "gerund": "declining", - "past": "declined", - "past_participle": "declined" - }, - { - "infinitive": "sieve", - "present": "sieves", - "gerund": "sieving", - "past": "sieved", - "past_participle": "sieved" - }, - { - "infinitive": "dun", - "present": "duns", - "gerund": "dunning", - "past": "dunned", - "past_participle": "dunned" - }, - { - "infinitive": "dibble", - "present": "dibbles", - "gerund": "dibbling", - "past": "dibbled", - "past_participle": "dibbled" - }, - { - "infinitive": "overlook", - "present": "overlooks", - "gerund": "overlooking", - "past": "overlooked", - "past_participle": "overlooked" - }, - { - "infinitive": "whop", - "present": "whops", - "gerund": "whopping", - "past": "whopped", - "past_participle": "whopped" - }, - { - "infinitive": "stravaig", - "present": "stravaigs", - "gerund": "stravaiging", - "past": "stravaiged", - "past_participle": "stravaiged" - }, - { - "infinitive": "dup", - "present": "dups", - "gerund": "dupping", - "past": "dupped", - "past_participle": "dupped" - }, - { - "infinitive": "brick", - "present": "bricks", - "gerund": "bricking", - "past": "bricked", - "past_participle": "bricked" - }, - { - "infinitive": "pi", - "present": "pies", - "gerund": "piing", - "past": "pied", - "past_participle": "pied" - }, - { - "infinitive": "exculpate", - "present": "exculpates", - "gerund": "exculpating", - "past": "exculpated", - "past_participle": "exculpated" - }, - { - "infinitive": "referee", - "present": "referees", - "gerund": "refereeing", - "past": "refereed", - "past_participle": "refereed" - }, - { - "infinitive": "flight", - "present": "flights", - "gerund": "flighting", - "past": "flighted", - "past_participle": "flighted" - }, - { - "infinitive": "keratinize", - "present": "keratinizes", - "gerund": "keratinizing", - "past": "keratinized", - "past_participle": "keratinized" - }, - { - "infinitive": "dropout", - "present": "dropouts", - "gerund": "dropouting", - "past": "dropouted", - "past_participle": "dropouted" - }, - { - "infinitive": "heel-and-toe", - "present": "heel-and-toes", - "gerund": "heel-and-toeing", - "past": "heel-and-toed", - "past_participle": "heel-and-toed" - }, - { - "infinitive": "cinch", - "present": "cinches", - "gerund": "cinching", - "past": "cinched", - "past_participle": "cinched" - }, - { - "infinitive": "demand", - "present": "demands", - "gerund": "demanding", - "past": "demanded", - "past_participle": "demanded" - }, - { - "infinitive": "heighten", - "present": "heightens", - "gerund": "heightening", - "past": "heightened", - "past_participle": "heightened" - }, - { - "infinitive": "Australianize", - "present": "Australianizes", - "gerund": "Australianizing", - "past": "Australianized", - "past_participle": "Australianized" - }, - { - "infinitive": "shove", - "present": "shoves", - "gerund": "shoving", - "past": "shoved", - "past_participle": "shoved" - }, - { - "infinitive": "batch", - "present": "batches", - "gerund": "batching", - "past": "batched", - "past_participle": "batched" - }, - { - "infinitive": "bodge", - "present": "bodges", - "gerund": "bodging", - "past": "bodged", - "past_participle": "bodged" - }, - { - "infinitive": "corrode", - "present": "corrodes", - "gerund": "corroding", - "past": "corroded", - "past_participle": "corroded" - }, - { - "infinitive": "barricade", - "present": "barricades", - "gerund": "barricading", - "past": "barricaded", - "past_participle": "barricaded" - }, - { - "infinitive": "bedizen", - "present": "bedizens", - "gerund": "bedizening", - "past": "bedizened", - "past_participle": "bedizened" - }, - { - "infinitive": "putrefy", - "present": "putrefies", - "gerund": "putrefying", - "past": "putrefied", - "past_participle": "putrefied" - }, - { - "infinitive": "mordant", - "present": "mordants", - "gerund": "mordanting", - "past": "mordanted", - "past_participle": "mordanted" - }, - { - "infinitive": "demob", - "present": "demobs", - "gerund": "demobbing", - "past": "demobbed", - "past_participle": "demobbed" - }, - { - "infinitive": "waul", - "present": "wauls", - "gerund": "wauling", - "past": "wauled", - "past_participle": "wauled" - }, - { - "infinitive": "rip", - "present": "rips", - "gerund": "ripping", - "past": "ripped", - "past_participle": "ripped" - }, - { - "infinitive": "rim", - "present": "rims", - "gerund": "rimming", - "past": "rimmed", - "past_participle": "rimmed" - }, - { - "infinitive": "impersonate", - "present": "impersonates", - "gerund": "impersonating", - "past": "impersonated", - "past_participle": "impersonated" - }, - { - "infinitive": "quail", - "present": "quails", - "gerund": "quailing", - "past": "quailed", - "past_participle": "quailed" - }, - { - "infinitive": "rid", - "present": "rids", - "gerund": "ridding", - "past": "ridded", - "past_participle": "ridded" - }, - { - "infinitive": "anguish", - "present": "anguishes", - "gerund": "anguishing", - "past": "anguished", - "past_participle": "anguished" - }, - { - "infinitive": "chauffeur", - "present": "chauffeurs", - "gerund": "chauffeuring", - "past": "chauffeured", - "past_participle": "chauffeured" - }, - { - "infinitive": "shirr", - "present": "shirrs", - "gerund": "shirring", - "past": "shirred", - "past_participle": "shirred" - }, - { - "infinitive": "unvoice", - "present": "unvoices", - "gerund": "unvoicing", - "past": "unvoiced", - "past_participle": "unvoiced" - }, - { - "infinitive": "shire", - "present": "shires", - "gerund": "shiring", - "past": "shired", - "past_participle": "shired" - }, - { - "infinitive": "stickle", - "present": "stickles", - "gerund": "stickling", - "past": "stickled", - "past_participle": "stickled" - }, - { - "infinitive": "advise", - "present": "advises", - "gerund": "advising", - "past": "advised", - "past_participle": "advised" - }, - { - "infinitive": "sliver", - "present": "slivers", - "gerund": "slivering", - "past": "slivered", - "past_participle": "slivered" - }, - { - "infinitive": "overcrop", - "present": "overcrops", - "gerund": "overcropping", - "past": "overcropped", - "past_participle": "overcropped" - }, - { - "infinitive": "chequer", - "present": "chequers", - "gerund": "chequering", - "past": "chequered", - "past_participle": "chequered" - }, - { - "infinitive": "nitrogenize", - "present": "nitrogenizes", - "gerund": "nitrogenizing", - "past": "nitrogenized", - "past_participle": "nitrogenized" - }, - { - "infinitive": "negotiate", - "present": "negotiates", - "gerund": "negotiating", - "past": "negotiated", - "past_participle": "negotiated" - }, - { - "infinitive": "cement", - "present": "cements", - "gerund": "cementing", - "past": "cemented", - "past_participle": "cemented" - }, - { - "infinitive": "impede", - "present": "impedes", - "gerund": "impeding", - "past": "impeded", - "past_participle": "impeded" - }, - { - "infinitive": "birch", - "present": "birches", - "gerund": "birching", - "past": "birched", - "past_participle": "birched" - }, - { - "infinitive": "brocade", - "present": "brocades", - "gerund": "brocading", - "past": "brocaded", - "past_participle": "brocaded" - }, - { - "infinitive": "lower", - "present": "lowers", - "gerund": "lowering", - "past": "lowered", - "past_participle": "lowered" - }, - { - "infinitive": "earmark", - "present": "earmarks", - "gerund": "earmarking", - "past": "earmarked", - "past_participle": "earmarked" - }, - { - "infinitive": "cheek", - "present": "cheeks", - "gerund": "cheeking", - "past": "cheeked", - "past_participle": "cheeked" - }, - { - "infinitive": "cheep", - "present": "cheeps", - "gerund": "cheeping", - "past": "cheeped", - "past_participle": "cheeped" - }, - { - "infinitive": "cheer", - "present": "cheers", - "gerund": "cheering", - "past": "cheered", - "past_participle": "cheered" - }, - { - "infinitive": "edge", - "present": "edges", - "gerund": "edging", - "past": "edged", - "past_participle": "edged" - }, - { - "infinitive": "reflect", - "present": "reflects", - "gerund": "reflecting", - "past": "reflected", - "past_participle": "reflected" - }, - { - "infinitive": "riffle", - "present": "riffles", - "gerund": "riffling", - "past": "riffled", - "past_participle": "riffled" - }, - { - "infinitive": "cohobate", - "present": "cohobates", - "gerund": "cohobating", - "past": "cohobated", - "past_participle": "cohobated" - }, - { - "infinitive": "frizz", - "present": "frizzes", - "gerund": "frizzing", - "past": "frizzed", - "past_participle": "frizzed" - }, - { - "infinitive": "squaredance", - "present": "squaredances", - "gerund": "squaredancing", - "past": "squaredanced", - "past_participle": "squaredanced" - }, - { - "infinitive": "immingle", - "present": "immingles", - "gerund": "immingling", - "past": "immingled", - "past_participle": "immingled" - }, - { - "infinitive": "endeavour", - "present": "endeavours", - "gerund": "endeavouring", - "past": "endeavoured", - "past_participle": "endeavoured" - }, - { - "infinitive": "knot", - "present": "knots", - "gerund": "knotting", - "past": "knotted", - "past_participle": "knotted" - }, - { - "infinitive": "prorate", - "present": "prorates", - "gerund": "prorating", - "past": "prorated", - "past_participle": "prorated" - }, - { - "infinitive": "foreshorten", - "present": "foreshortens", - "gerund": "foreshortening", - "past": "foreshortened", - "past_participle": "foreshortened" - }, - { - "infinitive": "predetermine", - "present": "predetermines", - "gerund": "predetermining", - "past": "predetermined", - "past_participle": "predetermined" - }, - { - "infinitive": "dryclean", - "present": "drycleans", - "gerund": "drycleaning", - "past": "drycleaned", - "past_participle": "drycleaned" - }, - { - "infinitive": "reinstate", - "present": "reinstates", - "gerund": "reinstating", - "past": "reinstated", - "past_participle": "reinstated" - }, - { - "infinitive": "vindicate", - "present": "vindicates", - "gerund": "vindicating", - "past": "vindicated", - "past_participle": "vindicated" - }, - { - "infinitive": "advocate", - "present": "advocates", - "gerund": "advocating", - "past": "advocated", - "past_participle": "advocated" - }, - { - "infinitive": "conscript", - "present": "conscripts", - "gerund": "conscripting", - "past": "conscripted", - "past_participle": "conscripted" - }, - { - "infinitive": "awaken", - "present": "awakens", - "gerund": "awakening", - "past": "awakened", - "past_participle": "awakened" - }, - { - "infinitive": "rotate", - "present": "rotates", - "gerund": "rotating", - "past": "rotated", - "past_participle": "rotated" - }, - { - "infinitive": "confront", - "present": "confronts", - "gerund": "confronting", - "past": "confronted", - "past_participle": "confronted" - }, - { - "infinitive": "ignore", - "present": "ignores", - "gerund": "ignoring", - "past": "ignored", - "past_participle": "ignored" - }, - { - "infinitive": "moralize", - "present": "moralizes", - "gerund": "moralizing", - "past": "moralized", - "past_participle": "moralized" - }, - { - "infinitive": "distrust", - "present": "distrusts", - "gerund": "distrusting", - "past": "distrusted", - "past_participle": "distrusted" - }, - { - "infinitive": "entice", - "present": "entices", - "gerund": "enticing", - "past": "enticed", - "past_participle": "enticed" - }, - { - "infinitive": "cohabit", - "present": "cohabits", - "gerund": "cohabiting", - "past": "cohabited", - "past_participle": "cohabited" - }, - { - "infinitive": "transmute", - "present": "transmutes", - "gerund": "transmuting", - "past": "transmuted", - "past_participle": "transmuted" - }, - { - "infinitive": "hallmark", - "present": "hallmarks", - "gerund": "hallmarking", - "past": "hallmarked", - "past_participle": "hallmarked" - }, - { - "infinitive": "embroil", - "present": "embroils", - "gerund": "embroiling", - "past": "embroiled", - "past_participle": "embroiled" - }, - { - "infinitive": "emanate", - "present": "emanates", - "gerund": "emanating", - "past": "emanated", - "past_participle": "emanated" - }, - { - "infinitive": "incriminate", - "present": "incriminates", - "gerund": "incriminating", - "past": "incriminated", - "past_participle": "incriminated" - }, - { - "infinitive": "litter", - "present": "litters", - "gerund": "littering", - "past": "littered", - "past_participle": "littered" - }, - { - "infinitive": "uppercut", - "present": "uppercuts", - "gerund": "uppercutting", - "past": "uppercut", - "past_participle": "uppercut" - }, - { - "infinitive": "clown", - "present": "clowns", - "gerund": "clowning", - "past": "clowned", - "past_participle": "clowned" - }, - { - "infinitive": "vacate", - "present": "vacates", - "gerund": "vacating", - "past": "vacated", - "past_participle": "vacated" - }, - { - "infinitive": "rattoon", - "present": "rattoons", - "gerund": "ratooning", - "past": "ratooned", - "past_participle": "ratooned" - }, - { - "infinitive": "modernize", - "present": "modernizes", - "gerund": "modernizing", - "past": "modernized", - "past_participle": "modernized" - }, - { - "infinitive": "retry", - "present": "retries", - "gerund": "retrying", - "past": "retried", - "past_participle": "retried" - }, - { - "infinitive": "debrief", - "present": "debriefs", - "gerund": "debriefing", - "past": "debriefed", - "past_participle": "debriefed" - }, - { - "infinitive": "prop", - "present": "props", - "gerund": "propping", - "past": "propped", - "past_participle": "propped" - }, - { - "infinitive": "inoculate", - "present": "inoculates", - "gerund": "inoculating", - "past": "inoculated", - "past_participle": "inoculated" - }, - { - "infinitive": "prog", - "present": "progs", - "gerund": "progging", - "past": "progged", - "past_participle": "progged" - }, - { - "infinitive": "prod", - "present": "prods", - "gerund": "prodding", - "past": "prodded", - "past_participle": "prodded" - }, - { - "infinitive": "shend", - "present": "shends", - "gerund": "shending", - "past": "shent", - "past_participle": "shent" - }, - { - "infinitive": "roughcast", - "present": "roughcasts", - "gerund": "roughcasting", - "past": "roughcast", - "past_participle": "roughcast" - }, - { - "infinitive": "Sanforize", - "present": "Sanforizes", - "gerund": "Sanforizing", - "past": "Sanforized", - "past_participle": "Sanforized" - }, - { - "infinitive": "tinker", - "present": "tinkers", - "gerund": "tinkering", - "past": "tinkered", - "past_participle": "tinkered" - }, - { - "infinitive": "metallize", - "present": "metallizes", - "gerund": "metallizing", - "past": "metallized", - "past_participle": "metallized" - }, - { - "infinitive": "caseate", - "present": "caseates", - "gerund": "caseating", - "past": "caseated", - "past_participle": "caseated" - }, - { - "infinitive": "anagrammatize", - "present": "anagrammatizes", - "gerund": "anagrammatizing", - "past": "anagrammatized", - "past_participle": "anagrammatized" - }, - { - "infinitive": "row", - "present": "rows", - "gerund": "rowing", - "past": "rowed", - "past_participle": "rowed" - }, - { - "infinitive": "prove", - "present": "proves", - "gerund": "proving", - "past": "proved", - "past_participle": "proven" - }, - { - "infinitive": "vesture", - "present": "vestures", - "gerund": "vesturing", - "past": "vestured", - "past_participle": "vestured" - }, - { - "infinitive": "range", - "present": "ranges", - "gerund": "ranging", - "past": "ranged", - "past_participle": "ranged" - }, - { - "infinitive": "apperceive", - "present": "apperceives", - "gerund": "apperceiving", - "past": "apperceived", - "past_participle": "apperceived" - }, - { - "infinitive": "wanna", - "present": "wannas", - "gerund": "wannaing", - "past": "wannaed", - "past_participle": "wannaed" - }, - { - "infinitive": "degrease", - "present": "degreases", - "gerund": "degreasing", - "past": "degreased", - "past_participle": "degreased" - }, - { - "infinitive": "underrate", - "present": "underrates", - "gerund": "underrating", - "past": "underrated", - "past_participle": "underrated" - }, - { - "infinitive": "curtsy", - "present": "curtsies", - "gerund": "curtsying", - "past": "curtsied", - "past_participle": "curtsied" - }, - { - "infinitive": "numerate", - "present": "numerates", - "gerund": "numerating", - "past": "numerated", - "past_participle": "numerated" - }, - { - "infinitive": "canal", - "present": "canals", - "gerund": "canalling", - "past": "canalled", - "past_participle": "canalled" - }, - { - "infinitive": "gouge", - "present": "gouges", - "gerund": "gouging", - "past": "gouged", - "past_participle": "gouged" - }, - { - "infinitive": "scrunch", - "present": "scrunches", - "gerund": "scrunching", - "past": "scrunched", - "past_participle": "scrunched" - }, - { - "infinitive": "acquiesce", - "present": "acquiesces", - "gerund": "acquiescing", - "past": "acquiesced", - "past_participle": "acquiesced" - }, - { - "infinitive": "question", - "present": "questions", - "gerund": "questioning", - "past": "questioned", - "past_participle": "questioned" - }, - { - "infinitive": "deepfreeze", - "present": "deepfreezes", - "gerund": "deepfreezing", - "past": "deepfrozen", - "past_participle": "deepfrozen" - }, - { - "infinitive": "fast", - "present": "fasts", - "gerund": "fasting", - "past": "fasted", - "past_participle": "fasted" - }, - { - "infinitive": "fash", - "present": "fashes", - "gerund": "fashing", - "past": "fashed", - "past_participle": "fashed" - }, - { - "infinitive": "etch", - "present": "etches", - "gerund": "etching", - "past": "etched", - "past_participle": "etched" - }, - { - "infinitive": "sloganeer", - "present": "sloganeers", - "gerund": "sloganeering", - "past": "sloganeered", - "past_participle": "sloganeered" - }, - { - "infinitive": "counterpoise", - "present": "counterpoises", - "gerund": "counterpoising", - "past": "counterpoised", - "past_participle": "counterpoised" - }, - { - "infinitive": "plunge", - "present": "plunges", - "gerund": "plunging", - "past": "plunged", - "past_participle": "plunged" - }, - { - "infinitive": "crank", - "present": "cranks", - "gerund": "cranking", - "past": "cranked", - "past_participle": "cranked" - }, - { - "infinitive": "usurp", - "present": "usurps", - "gerund": "usurping", - "past": "usurped", - "past_participle": "usurped" - }, - { - "infinitive": "upright", - "present": "uprights", - "gerund": "uprighting", - "past": "uprighted", - "past_participle": "uprighted" - }, - { - "infinitive": "crane", - "present": "cranes", - "gerund": "craning", - "past": "craned", - "past_participle": "craned" - }, - { - "infinitive": "supercool", - "present": "supercools", - "gerund": "supercooling", - "past": "supercooled", - "past_participle": "supercooled" - }, - { - "infinitive": "showcase", - "present": "showcases", - "gerund": "showcasing", - "past": "showcased", - "past_participle": "showcased" - }, - { - "infinitive": "mystify", - "present": "mystifies", - "gerund": "mystifying", - "past": "mystified", - "past_participle": "mystified" - }, - { - "infinitive": "hush", - "present": "hushes", - "gerund": "hushing", - "past": "hushed", - "past_participle": "hushed" - }, - { - "infinitive": "consist", - "present": "consists", - "gerund": "consisting", - "past": "consisted", - "past_participle": "consisted" - }, - { - "infinitive": "seize", - "present": "seizes", - "gerund": "seizing", - "past": "seized", - "past_participle": "seized" - }, - { - "infinitive": "elide", - "present": "elides", - "gerund": "eliding", - "past": "elided", - "past_participle": "elided" - }, - { - "infinitive": "redress", - "present": "redresses", - "gerund": "redressing", - "past": "redressed", - "past_participle": "redressed" - }, - { - "infinitive": "highlight", - "present": "highlights", - "gerund": "highlighting", - "past": "highlighted", - "past_participle": "highlighted" - }, - { - "infinitive": "estivate", - "present": "estivates", - "gerund": "estivating", - "past": "estivated", - "past_participle": "estivated" - }, - { - "infinitive": "desorb", - "present": "desorbs", - "gerund": "desorbing", - "past": "desorbed", - "past_participle": "desorbed" - }, - { - "infinitive": "steepen", - "present": "steepens", - "gerund": "steepening", - "past": "steepened", - "past_participle": "steepened" - }, - { - "infinitive": "freak", - "present": "freaks", - "gerund": "freaking", - "past": "freaked", - "past_participle": "freaked" - }, - { - "infinitive": "sublet", - "present": "sublets", - "gerund": "subletting", - "past": "sublet", - "past_participle": "sublet" - }, - { - "infinitive": "photomap", - "present": "photomaps", - "gerund": "photomapping", - "past": "photomapped", - "past_participle": "photomapped" - }, - { - "infinitive": "rally", - "present": "rallies", - "gerund": "rallying", - "past": "rallied", - "past_participle": "rallied" - }, - { - "infinitive": "faceoff", - "present": "facesoff", - "gerund": "facingoff", - "past": "facedoff", - "past_participle": "facedoff" - }, - { - "infinitive": "peach", - "present": "peaches", - "gerund": "peaching", - "past": "peached", - "past_participle": "peached" - }, - { - "infinitive": "peace", - "present": "peaces", - "gerund": "peacing", - "past": "peaced", - "past_participle": "peaced" - }, - { - "infinitive": "intwine", - "present": "intwines", - "gerund": "intwining", - "past": "intwined", - "past_participle": "intwined" - }, - { - "infinitive": "nick", - "present": "nicks", - "gerund": "nicking", - "past": "nicked", - "past_participle": "nicked" - }, - { - "infinitive": "disenchant", - "present": "disenchants", - "gerund": "disenchanting", - "past": "disenchanted", - "past_participle": "disenchanted" - }, - { - "infinitive": "caparison", - "present": "caparisons", - "gerund": "caparisoning", - "past": "caparisoned", - "past_participle": "caparisoned" - }, - { - "infinitive": "ferment", - "present": "ferments", - "gerund": "fermenting", - "past": "fermented", - "past_participle": "fermented" - }, - { - "infinitive": "buddle", - "present": "buddles", - "gerund": "buddling", - "past": "buddled", - "past_participle": "buddled" - }, - { - "infinitive": "mock", - "present": "mocks", - "gerund": "mocking", - "past": "mocked", - "past_participle": "mocked" - }, - { - "infinitive": "teasel", - "present": "teasels", - "gerund": "teaselling", - "past": "teaselled", - "past_participle": "teaselled" - }, - { - "infinitive": "chirm", - "present": "chirms", - "gerund": "chirming", - "past": "chirmed", - "past_participle": "chirmed" - }, - { - "infinitive": "inflame", - "present": "inflames", - "gerund": "inflaming", - "past": "inflamed", - "past_participle": "inflamed" - }, - { - "infinitive": "chirre", - "present": "chirrs", - "gerund": "chirring", - "past": "chirred", - "past_participle": "chirred" - }, - { - "infinitive": "puncture", - "present": "punctures", - "gerund": "puncturing", - "past": "punctured", - "past_participle": "punctured" - }, - { - "infinitive": "assibilate", - "present": "assibilates", - "gerund": "assibilating", - "past": "assibilated", - "past_participle": "assibilated" - }, - { - "infinitive": "wrinkle", - "present": "wrinkles", - "gerund": "wrinkling", - "past": "wrinkled", - "past_participle": "wrinkled" - }, - { - "infinitive": "sightsee", - "present": "sightsees", - "gerund": "sightseeing", - "past": "sightsaw", - "past_participle": "sightseen" - }, - { - "infinitive": "relaunch", - "present": "relaunches", - "gerund": "relaunching", - "past": "relaunched", - "past_participle": "relaunched" - }, - { - "infinitive": "agist", - "present": "agists", - "gerund": "agisting", - "past": "agisted", - "past_participle": "agisted" - }, - { - "infinitive": "skydive", - "present": "skydives", - "gerund": "skydiving", - "past": "skydived", - "past_participle": "skydived" - }, - { - "infinitive": "transilluminate", - "present": "transilluminates", - "gerund": "transilluminating", - "past": "transilluminated", - "past_participle": "transilluminated" - }, - { - "infinitive": "liquefy", - "present": "liquefies", - "gerund": "liquefying", - "past": "liquefied", - "past_participle": "liquefied" - }, - { - "infinitive": "remit", - "present": "remits", - "gerund": "remitting", - "past": "remitted", - "past_participle": "remitted" - }, - { - "infinitive": "rehear", - "present": "rehears", - "gerund": "rehearing", - "past": "reheard", - "past_participle": "reheard" - }, - { - "infinitive": "buffalo", - "present": "buffalos", - "gerund": "buffaloing", - "past": "buffaloed", - "past_participle": "buffaloed" - }, - { - "infinitive": "peculate", - "present": "peculates", - "gerund": "peculating", - "past": "peculated", - "past_participle": "peculated" - }, - { - "infinitive": "pervert", - "present": "perverts", - "gerund": "perverting", - "past": "perverted", - "past_participle": "perverted" - }, - { - "infinitive": "overwind", - "present": "overwinds", - "gerund": "overwinding", - "past": "overwound", - "past_participle": "overwound" - }, - { - "infinitive": "dispel", - "present": "dispels", - "gerund": "dispelling", - "past": "dispelled", - "past_participle": "dispelled" - }, - { - "infinitive": "gang", - "present": "gangs", - "gerund": "ganging", - "past": "ganged", - "past_participle": "ganged" - }, - { - "infinitive": "uphold", - "present": "upholds", - "gerund": "upholding", - "past": "upheld", - "past_participle": "upheld" - }, - { - "infinitive": "exterminate", - "present": "exterminates", - "gerund": "exterminating", - "past": "exterminated", - "past_participle": "exterminated" - }, - { - "infinitive": "cradle", - "present": "cradles", - "gerund": "cradling", - "past": "cradled", - "past_participle": "cradled" - }, - { - "infinitive": "repackage", - "present": "repackages", - "gerund": "repackaging", - "past": "repackaged", - "past_participle": "repackaged" - }, - { - "infinitive": "ironize", - "present": "ironizes", - "gerund": "ironizing", - "past": "ironized", - "past_participle": "ironized" - }, - { - "infinitive": "breach", - "present": "breaches", - "gerund": "breaching", - "past": "breached", - "past_participle": "breached" - }, - { - "infinitive": "include", - "present": "includes", - "gerund": "including", - "past": "included", - "past_participle": "included" - }, - { - "infinitive": "rag", - "present": "rags", - "gerund": "ragging", - "past": "ragged", - "past_participle": "ragged" - }, - { - "infinitive": "ladle", - "present": "ladles", - "gerund": "ladling", - "past": "ladled", - "past_participle": "ladled" - }, - { - "infinitive": "ghostwrite", - "present": "ghostwrites", - "gerund": "ghostwriting", - "past": "ghostwrote", - "past_participle": "ghostwritten" - }, - { - "infinitive": "sandcast", - "present": "sandcasts", - "gerund": "sandcasting", - "past": "sandcast", - "past_participle": "sandcast" - }, - { - "infinitive": "elutriate", - "present": "elutriates", - "gerund": "elutriating", - "past": "elutriated", - "past_participle": "elutriated" - }, - { - "infinitive": "spoor", - "present": "spoors", - "gerund": "spooring", - "past": "spoored", - "past_participle": "spoored" - }, - { - "infinitive": "spool", - "present": "spools", - "gerund": "spooling", - "past": "spooled", - "past_participle": "spooled" - }, - { - "infinitive": "spoon", - "present": "spoons", - "gerund": "spooning", - "past": "spooned", - "past_participle": "spooned" - }, - { - "infinitive": "foretell", - "present": "foretells", - "gerund": "foretelling", - "past": "foretold", - "past_participle": "foretold" - }, - { - "infinitive": "photocompose", - "present": "photocomposes", - "gerund": "photocomposing", - "past": "photocomposed", - "past_participle": "photocomposed" - }, - { - "infinitive": "spook", - "present": "spooks", - "gerund": "spooking", - "past": "spooked", - "past_participle": "spooked" - }, - { - "infinitive": "spoof", - "present": "spoofs", - "gerund": "spoofing", - "past": "spoofed", - "past_participle": "spoofed" - }, - { - "infinitive": "coverup", - "present": "coversup", - "gerund": "coveringup", - "past": "coveredup", - "past_participle": "coveredup" - }, - { - "infinitive": "posture", - "present": "postures", - "gerund": "posturing", - "past": "postured", - "past_participle": "postured" - }, - { - "infinitive": "bedeck", - "present": "bedecks", - "gerund": "bedecking", - "past": "bedecked", - "past_participle": "bedecked" - }, - { - "infinitive": "diazotize", - "present": "diazotizes", - "gerund": "diazotizing", - "past": "diazotized", - "past_participle": "diazotized" - }, - { - "infinitive": "extenuate", - "present": "extenuates", - "gerund": "extenuating", - "past": "extenuated", - "past_participle": "extenuated" - }, - { - "infinitive": "sleave", - "present": "sleaves", - "gerund": "sleaving", - "past": "sleaved", - "past_participle": "sleaved" - }, - { - "infinitive": "kittle", - "present": "kittles", - "gerund": "kittling", - "past": "kittled", - "past_participle": "kittled" - }, - { - "infinitive": "outdo", - "present": "outdoes", - "gerund": "outdoing", - "past": "outdid", - "past_participle": "outdone" - }, - { - "infinitive": "unchain", - "present": "unchains", - "gerund": "unchaining", - "past": "unchained", - "past_participle": "unchained" - }, - { - "infinitive": "misplay", - "present": "misplays", - "gerund": "misplaying", - "past": "misplayed", - "past_participle": "misplayed" - }, - { - "infinitive": "miscall", - "present": "miscalls", - "gerund": "miscalling", - "past": "miscalled", - "past_participle": "miscalled" - }, - { - "infinitive": "hinder", - "present": "hinders", - "gerund": "hindering", - "past": "hindered", - "past_participle": "hindered" - }, - { - "infinitive": "smirch", - "present": "smirches", - "gerund": "smirching", - "past": "smirched", - "past_participle": "smirched" - }, - { - "infinitive": "vittle", - "present": "vittles", - "gerund": "vittling", - "past": "vittled", - "past_participle": "vittled" - }, - { - "infinitive": "reinsure", - "present": "reinsures", - "gerund": "reinsuring", - "past": "reinsured", - "past_participle": "reinsured" - }, - { - "infinitive": "pleat", - "present": "pleats", - "gerund": "pleating", - "past": "pleated", - "past_participle": "pleated" - }, - { - "infinitive": "chastise", - "present": "chastises", - "gerund": "chastising", - "past": "chastised", - "past_participle": "chastised" - }, - { - "infinitive": "trawl", - "present": "trawls", - "gerund": "trawling", - "past": "trawled", - "past_participle": "trawled" - }, - { - "infinitive": "procession", - "present": "processions", - "gerund": "processioning", - "past": "processioned", - "past_participle": "processioned" - }, - { - "infinitive": "fold", - "present": "folds", - "gerund": "folding", - "past": "folded", - "past_participle": "folded" - }, - { - "infinitive": "marinade", - "present": "marinades", - "gerund": "marinading", - "past": "marinaded", - "past_participle": "marinaded" - }, - { - "infinitive": "interosculate", - "present": "interosculates", - "gerund": "interosculating", - "past": "interosculated", - "past_participle": "interosculated" - }, - { - "infinitive": "concelebrate", - "present": "concelebrates", - "gerund": "concelebrating", - "past": "concelebrated", - "past_participle": "concelebrated" - }, - { - "infinitive": "folk", - "present": "folks", - "gerund": "folking", - "past": "folked", - "past_participle": "folked" - }, - { - "infinitive": "outsmart", - "present": "outsmarts", - "gerund": "outsmarting", - "past": "outsmarted", - "past_participle": "outsmarted" - }, - { - "infinitive": "spelunk", - "present": "spelunks", - "gerund": "spelunking", - "past": "spelunked", - "past_participle": "spelunked" - }, - { - "infinitive": "insoul", - "present": "insouls", - "gerund": "insouling", - "past": "insouled", - "past_participle": "insouled" - }, - { - "infinitive": "attire", - "present": "attires", - "gerund": "attiring", - "past": "attired", - "past_participle": "attired" - }, - { - "infinitive": "relocate", - "present": "relocates", - "gerund": "relocating", - "past": "relocated", - "past_participle": "relocated" - }, - { - "infinitive": "kangaroo", - "present": "kangaroos", - "gerund": "kangarooing", - "past": "kangarooed", - "past_participle": "kangarooed" - }, - { - "infinitive": "sough", - "present": "soughs", - "gerund": "soughing", - "past": "soughed", - "past_participle": "soughed" - }, - { - "infinitive": "swoosh", - "present": "swooshes", - "gerund": "swooshing", - "past": "swooshed", - "past_participle": "swooshed" - }, - { - "infinitive": "explore", - "present": "explores", - "gerund": "exploring", - "past": "explored", - "past_participle": "explored" - }, - { - "infinitive": "gloat", - "present": "gloats", - "gerund": "gloating", - "past": "gloated", - "past_participle": "gloated" - }, - { - "infinitive": "thumbindex", - "present": "thumbindexes", - "gerund": "thumbindexing", - "past": "thumbindexed", - "past_participle": "thumbindexed" - }, - { - "infinitive": "scunner", - "present": "scunners", - "gerund": "scunnering", - "past": "scunnered", - "past_participle": "scunnered" - }, - { - "infinitive": "trivialize", - "present": "trivializes", - "gerund": "trivializing", - "past": "trivialized", - "past_participle": "trivialized" - }, - { - "infinitive": "opiate", - "present": "opiates", - "gerund": "opiating", - "past": "opiated", - "past_participle": "opiated" - }, - { - "infinitive": "subedit", - "present": "subedits", - "gerund": "subediting", - "past": "subedited", - "past_participle": "subedited" - }, - { - "infinitive": "largen", - "present": "largens", - "gerund": "largening", - "past": "largened", - "past_participle": "largened" - }, - { - "infinitive": "requite", - "present": "requites", - "gerund": "requiting", - "past": "requited", - "past_participle": "requited" - }, - { - "infinitive": "ruin", - "present": "ruins", - "gerund": "ruining", - "past": "ruined", - "past_participle": "ruined" - }, - { - "infinitive": "shovel", - "present": "shovels", - "gerund": "shovelling", - "past": "shovelled", - "past_participle": "shovelled" - }, - { - "infinitive": "blether", - "present": "blethers", - "gerund": "blethering", - "past": "blethered", - "past_participle": "blethered" - }, - { - "infinitive": "spy", - "present": "spies", - "gerund": "spying", - "past": "spied", - "past_participle": "spied" - }, - { - "infinitive": "forbid", - "present": "forbids", - "gerund": "forbidding", - "past": "forbade", - "past_participle": "forbidden" - }, - { - "infinitive": "dichotomize", - "present": "dichotomizes", - "gerund": "dichotomizing", - "past": "dichotomized", - "past_participle": "dichotomized" - }, - { - "infinitive": "sandbag", - "present": "sandbags", - "gerund": "sandbagging", - "past": "sandbagged", - "past_participle": "sandbagged" - }, - { - "infinitive": "motor", - "present": "motors", - "gerund": "motoring", - "past": "motored", - "past_participle": "motored" - }, - { - "infinitive": "duck", - "present": "ducks", - "gerund": "ducking", - "past": "ducked", - "past_participle": "ducked" - }, - { - "infinitive": "apply", - "present": "applies", - "gerund": "applying", - "past": "applied", - "past_participle": "applied" - }, - { - "infinitive": "depute", - "present": "deputes", - "gerund": "deputing", - "past": "deputed", - "past_participle": "deputed" - }, - { - "infinitive": "redo", - "present": "redoes", - "gerund": "redoing", - "past": "redid", - "past_participle": "redone" - }, - { - "infinitive": "ape", - "present": "apes", - "gerund": "aping", - "past": "aped", - "past_participle": "aped" - }, - { - "infinitive": "fed", - "present": "", - "gerund": "", - "past": "fed", - "past_participle": "fed" - }, - { - "infinitive": "feed", - "present": "fees", - "gerund": "feeing", - "past": "feed", - "past_participle": "feed" - }, - { - "infinitive": "stream", - "present": "streams", - "gerund": "streaming", - "past": "streamed", - "past_participle": "streamed" - }, - { - "infinitive": "birdlime", - "present": "birdlimes", - "gerund": "birdliming", - "past": "birdlimed", - "past_participle": "birdlimed" - }, - { - "infinitive": "doodle", - "present": "doodles", - "gerund": "doodling", - "past": "doodled", - "past_participle": "doodled" - }, - { - "infinitive": "obelize", - "present": "obelizes", - "gerund": "obelizing", - "past": "obelized", - "past_participle": "obelized" - }, - { - "infinitive": "frog", - "present": "frogs", - "gerund": "frogging", - "past": "frogged", - "past_participle": "frogged" - }, - { - "infinitive": "procrastinate", - "present": "procrastinates", - "gerund": "procrastinating", - "past": "procrastinated", - "past_participle": "procrastinated" - }, - { - "infinitive": "overman", - "present": "overmans", - "gerund": "overmanning", - "past": "overmanned", - "past_participle": "overmanned" - }, - { - "infinitive": "dishevel", - "present": "dishevels", - "gerund": "dishevelling", - "past": "dishevelled", - "past_participle": "dishevelled" - }, - { - "infinitive": "slue", - "present": "slues", - "gerund": "sluing", - "past": "slued", - "past_participle": "slued" - }, - { - "infinitive": "sanitize", - "present": "sanitizes", - "gerund": "sanitizing", - "past": "sanitized", - "past_participle": "sanitized" - }, - { - "infinitive": "sort", - "present": "sorts", - "gerund": "sorting", - "past": "sorted", - "past_participle": "sorted" - }, - { - "infinitive": "pitterpatter", - "present": "pitterpatters", - "gerund": "pitterpattering", - "past": "pitterpattered", - "past_participle": "pitterpattered" - }, - { - "infinitive": "detail", - "present": "details", - "gerund": "detailing", - "past": "detailed", - "past_participle": "detailed" - }, - { - "infinitive": "impress", - "present": "impresses", - "gerund": "impressing", - "past": "impressed", - "past_participle": "impressed" - }, - { - "infinitive": "underdrain", - "present": "underdrains", - "gerund": "underdraining", - "past": "underdrained", - "past_participle": "underdrained" - }, - { - "infinitive": "cooperate", - "present": "cooperates", - "gerund": "cooperating", - "past": "cooperated", - "past_participle": "cooperated" - }, - { - "infinitive": "tallyho", - "present": "tallyhos", - "gerund": "tallyhoing", - "past": "tallyhoed", - "past_participle": "tallyhoed" - }, - { - "infinitive": "rabbit", - "present": "rabbits", - "gerund": "rabbiting", - "past": "rabbited", - "past_participle": "rabbited" - }, - { - "infinitive": "recount", - "present": "recounts", - "gerund": "recounting", - "past": "recounted", - "past_participle": "recounted" - }, - { - "infinitive": "sorn", - "present": "sorns", - "gerund": "sorning", - "past": "sorned", - "past_participle": "sorned" - }, - { - "infinitive": "hand-knit", - "present": "hand-knits", - "gerund": "hand-knitting", - "past": "hand-knitted", - "past_participle": "hand-knitted" - }, - { - "infinitive": "annoy", - "present": "annoys", - "gerund": "annoying", - "past": "annoyed", - "past_participle": "annoyed" - }, - { - "infinitive": "fraternize", - "present": "fraternizes", - "gerund": "fraternizing", - "past": "fraternized", - "past_participle": "fraternized" - }, - { - "infinitive": "augment", - "present": "augments", - "gerund": "augmenting", - "past": "augmented", - "past_participle": "augmented" - }, - { - "infinitive": "saddle", - "present": "saddles", - "gerund": "saddling", - "past": "saddled", - "past_participle": "saddled" - }, - { - "infinitive": "octuple", - "present": "octuples", - "gerund": "octupling", - "past": "octupled", - "past_participle": "octupled" - }, - { - "infinitive": "regale", - "present": "regales", - "gerund": "regaling", - "past": "regaled", - "past_participle": "regaled" - }, - { - "infinitive": "dissolve", - "present": "dissolves", - "gerund": "dissolving", - "past": "dissolved", - "past_participle": "dissolved" - }, - { - "infinitive": "proof", - "present": "proofs", - "gerund": "proofing", - "past": "proofed", - "past_participle": "proofed" - }, - { - "infinitive": "tat", - "present": "tats", - "gerund": "tatting", - "past": "tatted", - "past_participle": "tatted" - }, - { - "infinitive": "taws", - "present": "taws", - "gerund": "tawing", - "past": "tawed", - "past_participle": "tawed" - }, - { - "infinitive": "patrol", - "present": "patrols", - "gerund": "patrolling", - "past": "patrolled", - "past_participle": "patrolled" - }, - { - "infinitive": "tar", - "present": "tars", - "gerund": "tarring", - "past": "tarred", - "past_participle": "tarred" - }, - { - "infinitive": "tax", - "present": "taxes", - "gerund": "taxing", - "past": "taxed", - "past_participle": "taxed" - }, - { - "infinitive": "crick", - "present": "cricks", - "gerund": "cricking", - "past": "cricked", - "past_participle": "cricked" - }, - { - "infinitive": "tag", - "present": "tags", - "gerund": "tagging", - "past": "tagged", - "past_participle": "tagged" - }, - { - "infinitive": "condescend", - "present": "condescends", - "gerund": "condescending", - "past": "condescended", - "past_participle": "condescended" - }, - { - "infinitive": "wizen", - "present": "wizens", - "gerund": "wizening", - "past": "wizened", - "past_participle": "wizened" - }, - { - "infinitive": "tan", - "present": "tans", - "gerund": "tanning", - "past": "tanned", - "past_participle": "tanned" - }, - { - "infinitive": "rape", - "present": "rapes", - "gerund": "raping", - "past": "raped", - "past_participle": "raped" - }, - { - "infinitive": "counterfeit", - "present": "counterfeits", - "gerund": "counterfeiting", - "past": "counterfeited", - "past_participle": "counterfeited" - }, - { - "infinitive": "sip", - "present": "sips", - "gerund": "sipping", - "past": "sipped", - "past_participle": "sipped" - }, - { - "infinitive": "jape", - "present": "japes", - "gerund": "japing", - "past": "japed", - "past_participle": "japed" - }, - { - "infinitive": "sit", - "present": "sits", - "gerund": "sitting", - "past": "sat", - "past_participle": "sat" - }, - { - "infinitive": "tamper", - "present": "tampers", - "gerund": "tampering", - "past": "tampered", - "past_participle": "tampered" - }, - { - "infinitive": "outclass", - "present": "outclasses", - "gerund": "outclassing", - "past": "outclassed", - "past_participle": "outclassed" - }, - { - "infinitive": "patronize", - "present": "patronizes", - "gerund": "patronizing", - "past": "patronized", - "past_participle": "patronized" - }, - { - "infinitive": "sic", - "present": "sics", - "gerund": "sicking", - "past": "sicked", - "past_participle": "sicked" - }, - { - "infinitive": "crutch", - "present": "crutches", - "gerund": "crutching", - "past": "crutched", - "past_participle": "crutched" - }, - { - "infinitive": "resurge", - "present": "resurges", - "gerund": "resurging", - "past": "resurged", - "past_participle": "resurged" - }, - { - "infinitive": "panic", - "present": "panics", - "gerund": "panicking", - "past": "panicked", - "past_participle": "panicked" - }, - { - "infinitive": "sin", - "present": "sins", - "gerund": "sinning", - "past": "sinned", - "past_participle": "sinned" - }, - { - "infinitive": "exemplify", - "present": "exemplifies", - "gerund": "exemplifying", - "past": "exemplified", - "past_participle": "exemplified" - }, - { - "infinitive": "underfeed", - "present": "underfeeds", - "gerund": "underfeeding", - "past": "underfed", - "past_participle": "underfed" - }, - { - "infinitive": "attend", - "present": "attends", - "gerund": "attending", - "past": "attended", - "past_participle": "attended" - }, - { - "infinitive": "perjure", - "present": "perjures", - "gerund": "perjuring", - "past": "perjured", - "past_participle": "perjured" - }, - { - "infinitive": "discomfort", - "present": "discomforts", - "gerund": "discomforting", - "past": "discomforted", - "past_participle": "discomforted" - }, - { - "infinitive": "abuse", - "present": "abuses", - "gerund": "abusing", - "past": "abused", - "past_participle": "abused" - }, - { - "infinitive": "crossquestion", - "present": "crossquestions", - "gerund": "crossquestioning", - "past": "crossquestioned", - "past_participle": "crossquestioned" - }, - { - "infinitive": "crossfertilize", - "present": "crossfertilizes", - "gerund": "crossfertilizing", - "past": "crossfertilized", - "past_participle": "crossfertilized" - }, - { - "infinitive": "light", - "present": "lights", - "gerund": "lighting", - "past": "lighted", - "past_participle": "lighted" - }, - { - "infinitive": "budge", - "present": "budges", - "gerund": "budging", - "past": "budged", - "past_participle": "budged" - }, - { - "infinitive": "melodize", - "present": "melodizes", - "gerund": "melodizing", - "past": "melodized", - "past_participle": "melodized" - }, - { - "infinitive": "acetify", - "present": "acetifies", - "gerund": "acetifying", - "past": "acetified", - "past_participle": "acetified" - }, - { - "infinitive": "re-serve", - "present": "re-serves", - "gerund": "re-serving", - "past": "reserved", - "past_participle": "re-served" - }, - { - "infinitive": "retrogress", - "present": "retrogresses", - "gerund": "retrogressing", - "past": "retrogressed", - "past_participle": "retrogressed" - }, - { - "infinitive": "windrow", - "present": "windrows", - "gerund": "windrowing", - "past": "windrowed", - "past_participle": "windrowed" - }, - { - "infinitive": "beguile", - "present": "beguiles", - "gerund": "beguiling", - "past": "beguiled", - "past_participle": "beguiled" - }, - { - "infinitive": "wawa", - "present": "wawas", - "gerund": "wawaing", - "past": "wawaed", - "past_participle": "wawaed" - }, - { - "infinitive": "quake", - "present": "quakes", - "gerund": "quaking", - "past": "quaked", - "past_participle": "quaked" - }, - { - "infinitive": "double-time", - "present": "double-times", - "gerund": "double-timing", - "past": "double-timed", - "past_participle": "double-timed" - }, - { - "infinitive": "wawl", - "present": "wawls", - "gerund": "wawling", - "past": "wawled", - "past_participle": "wawled" - }, - { - "infinitive": "badger", - "present": "badgers", - "gerund": "badgering", - "past": "badgered", - "past_participle": "badgered" - }, - { - "infinitive": "write", - "present": "writes", - "gerund": "writing", - "past": "wrote", - "past_participle": "written" - }, - { - "infinitive": "complicate", - "present": "complicates", - "gerund": "complicating", - "past": "complicated", - "past_participle": "complicated" - }, - { - "infinitive": "inlet", - "present": "inlets", - "gerund": "inletting", - "past": "inlet", - "past_participle": "inlet" - }, - { - "infinitive": "reeve", - "present": "reeves", - "gerund": "reeving", - "past": "reeved", - "past_participle": "reeved" - }, - { - "infinitive": "letch", - "present": "letches", - "gerund": "letching", - "past": "letched", - "past_participle": "letched" - }, - { - "infinitive": "stridulate", - "present": "stridulates", - "gerund": "stridulating", - "past": "stridulated", - "past_participle": "stridulated" - }, - { - "infinitive": "flank", - "present": "flanks", - "gerund": "flanking", - "past": "flanked", - "past_participle": "flanked" - }, - { - "infinitive": "restrain", - "present": "restrains", - "gerund": "restraining", - "past": "restrained", - "past_participle": "restrained" - }, - { - "infinitive": "choose", - "present": "chooses", - "gerund": "choosing", - "past": "chose", - "past_participle": "chosen" - }, - { - "infinitive": "underpin", - "present": "underpins", - "gerund": "underpinning", - "past": "underpinned", - "past_participle": "underpinned" - }, - { - "infinitive": "holiday", - "present": "holidays", - "gerund": "holidaying", - "past": "holidayed", - "past_participle": "holidayed" - }, - { - "infinitive": "flex", - "present": "flexs", - "gerund": "flexing", - "past": "flexed", - "past_participle": "flexed" - }, - { - "infinitive": "crash", - "present": "crashes", - "gerund": "crashing", - "past": "crashed", - "past_participle": "crashed" - }, - { - "infinitive": "reenter", - "present": "reenters", - "gerund": "reentering", - "past": "reentered", - "past_participle": "reentered" - }, - { - "infinitive": "flour", - "present": "flours", - "gerund": "flouring", - "past": "floured", - "past_participle": "floured" - }, - { - "infinitive": "practice", - "present": "practices", - "gerund": "practicing", - "past": "practiced", - "past_participle": "practiced" - }, - { - "infinitive": "flout", - "present": "flouts", - "gerund": "flouting", - "past": "flouted", - "past_participle": "flouted" - }, - { - "infinitive": "precess", - "present": "precesses", - "gerund": "precessing", - "past": "precessed", - "past_participle": "precessed" - }, - { - "infinitive": "fingerprint", - "present": "fingerprints", - "gerund": "fingerprinting", - "past": "fingerprinted", - "past_participle": "fingerprinted" - }, - { - "infinitive": "liquify", - "present": "liquifies", - "gerund": "liquifying", - "past": "liquified", - "past_participle": "liquified" - }, - { - "infinitive": "flee", - "present": "flees", - "gerund": "fleeing", - "past": "fled", - "past_participle": "fled" - }, - { - "infinitive": "parasitize", - "present": "parasitizes", - "gerund": "parasitizing", - "past": "parasitized", - "past_participle": "parasitized" - }, - { - "infinitive": "impower", - "present": "impowers", - "gerund": "impowering", - "past": "impowered", - "past_participle": "impowered" - }, - { - "infinitive": "edit", - "present": "edits", - "gerund": "editing", - "past": "edited", - "past_participle": "edited" - }, - { - "infinitive": "feast", - "present": "feasts", - "gerund": "feasting", - "past": "feasted", - "past_participle": "feasted" - }, - { - "infinitive": "fuzz", - "present": "fuzzes", - "gerund": "fuzzing", - "past": "fuzzed", - "past_participle": "fuzzed" - }, - { - "infinitive": "fiddle", - "present": "fiddles", - "gerund": "fiddling", - "past": "fiddled", - "past_participle": "fiddled" - }, - { - "infinitive": "trap", - "present": "traps", - "gerund": "trapping", - "past": "trapped", - "past_participle": "trapped" - }, - { - "infinitive": "cocoon", - "present": "cocoons", - "gerund": "cocooning", - "past": "cocooned", - "past_participle": "cocooned" - }, - { - "infinitive": "stithy", - "present": "stithies", - "gerund": "stithying", - "past": "stithied", - "past_participle": "stithied" - }, - { - "infinitive": "bogie", - "present": "bogies", - "gerund": "bogying", - "past": "bogied", - "past_participle": "bogied" - }, - { - "infinitive": "sojourn", - "present": "sojourns", - "gerund": "sojourning", - "past": "sojourned", - "past_participle": "sojourned" - }, - { - "infinitive": "interfuse", - "present": "interfuses", - "gerund": "interfusing", - "past": "interfused", - "past_participle": "interfused" - }, - { - "infinitive": "tabulate", - "present": "tabulates", - "gerund": "tabulating", - "past": "tabulated", - "past_participle": "tabulated" - }, - { - "infinitive": "out", - "present": "outs", - "gerund": "outing", - "past": "outed", - "past_participle": "outed" - }, - { - "infinitive": "Afrikanerize", - "present": "Afrikanerizes", - "gerund": "Afrikanerizing", - "past": "Afrikanerized", - "past_participle": "Afrikanerized" - }, - { - "infinitive": "effloresce", - "present": "effloresces", - "gerund": "efflorescing", - "past": "effloresced", - "past_participle": "effloresced" - }, - { - "infinitive": "notarize", - "present": "notarizes", - "gerund": "notarizing", - "past": "notarized", - "past_participle": "notarized" - }, - { - "infinitive": "disarray", - "present": "disarrays", - "gerund": "disarraying", - "past": "disarrayed", - "past_participle": "disarrayed" - }, - { - "infinitive": "superintend", - "present": "superintends", - "gerund": "superintending", - "past": "superintended", - "past_participle": "superintended" - }, - { - "infinitive": "clatter", - "present": "clatters", - "gerund": "clattering", - "past": "clattered", - "past_participle": "clattered" - }, - { - "infinitive": "impart", - "present": "imparts", - "gerund": "imparting", - "past": "imparted", - "past_participle": "imparted" - }, - { - "infinitive": "sacrifice", - "present": "sacrifices", - "gerund": "sacrificing", - "past": "sacrificed", - "past_participle": "sacrificed" - }, - { - "infinitive": "disclose", - "present": "discloses", - "gerund": "disclosing", - "past": "disclosed", - "past_participle": "disclosed" - }, - { - "infinitive": "softpedal", - "present": "softpedals", - "gerund": "softpedalling", - "past": "softpedalled", - "past_participle": "softpedalled" - }, - { - "infinitive": "enfranchise", - "present": "enfranchises", - "gerund": "enfranchising", - "past": "enfranchised", - "past_participle": "enfranchised" - }, - { - "infinitive": "implode", - "present": "implodes", - "gerund": "imploding", - "past": "imploded", - "past_participle": "imploded" - }, - { - "infinitive": "planish", - "present": "planishes", - "gerund": "planishing", - "past": "planished", - "past_participle": "planished" - }, - { - "infinitive": "rejoice", - "present": "rejoices", - "gerund": "rejoicing", - "past": "rejoiced", - "past_participle": "rejoiced" - }, - { - "infinitive": "tenant", - "present": "tenants", - "gerund": "tenanting", - "past": "tenanted", - "past_participle": "tenanted" - }, - { - "infinitive": "overtake", - "present": "overtakes", - "gerund": "overtaking", - "past": "overtook", - "past_participle": "overtaken" - }, - { - "infinitive": "substantiate", - "present": "substantiates", - "gerund": "substantiating", - "past": "substantiated", - "past_participle": "substantiated" - }, - { - "infinitive": "outman", - "present": "outmans", - "gerund": "outmanning", - "past": "outmanned", - "past_participle": "outmanned" - }, - { - "infinitive": "uproot", - "present": "uproots", - "gerund": "uprooting", - "past": "uprooted", - "past_participle": "uprooted" - }, - { - "infinitive": "boondoggle", - "present": "boondoggles", - "gerund": "boondoggling", - "past": "boondoggled", - "past_participle": "boondoggled" - }, - { - "infinitive": "rubberneck", - "present": "rubbernecks", - "gerund": "rubbernecking", - "past": "rubbernecked", - "past_participle": "rubbernecked" - }, - { - "infinitive": "echo", - "present": "echoes", - "gerund": "echoing", - "past": "echoed", - "past_participle": "echoed" - }, - { - "infinitive": "collogue", - "present": "collogues", - "gerund": "colloguing", - "past": "collogued", - "past_participle": "collogued" - }, - { - "infinitive": "overproduce", - "present": "overproduces", - "gerund": "overproducing", - "past": "overproduced", - "past_participle": "overproduced" - }, - { - "infinitive": "glisten", - "present": "glistens", - "gerund": "glistening", - "past": "glistened", - "past_participle": "glistened" - }, - { - "infinitive": "overtrump", - "present": "overtrumps", - "gerund": "overtrumping", - "past": "overtrumped", - "past_participle": "overtrumped" - }, - { - "infinitive": "liquate", - "present": "liquates", - "gerund": "liquating", - "past": "liquated", - "past_participle": "liquated" - }, - { - "infinitive": "accent", - "present": "accents", - "gerund": "accenting", - "past": "accented", - "past_participle": "accented" - }, - { - "infinitive": "glister", - "present": "glisters", - "gerund": "glistering", - "past": "glistered", - "past_participle": "glistered" - }, - { - "infinitive": "boil", - "present": "boils", - "gerund": "boiling", - "past": "boiled", - "past_participle": "boiled" - }, - { - "infinitive": "shell", - "present": "shells", - "gerund": "shelling", - "past": "shelled", - "past_participle": "shelled" - }, - { - "infinitive": "shallow", - "present": "shallows", - "gerund": "shallowing", - "past": "shallowed", - "past_participle": "shallowed" - }, - { - "infinitive": "simulate", - "present": "simulates", - "gerund": "simulating", - "past": "simulated", - "past_participle": "simulated" - }, - { - "infinitive": "diminish", - "present": "diminishes", - "gerund": "diminishing", - "past": "diminished", - "past_participle": "diminished" - }, - { - "infinitive": "commence", - "present": "commences", - "gerund": "commencing", - "past": "commenced", - "past_participle": "commenced" - }, - { - "infinitive": "vilipend", - "present": "vilipends", - "gerund": "vilipending", - "past": "vilipended", - "past_participle": "vilipended" - }, - { - "infinitive": "elope", - "present": "elopes", - "gerund": "eloping", - "past": "eloped", - "past_participle": "eloped" - }, - { - "infinitive": "ko", - "present": "ko's", - "gerund": "ko'ing", - "past": "ko'ed", - "past_participle": "ko'ed" - }, - { - "infinitive": "featherstitch", - "present": "featherstitches", - "gerund": "featherstitching", - "past": "featherstitched", - "past_participle": "featherstitched" - }, - { - "infinitive": "brazen", - "present": "brazens", - "gerund": "brazening", - "past": "brazened", - "past_participle": "brazened" - }, - { - "infinitive": "elongate", - "present": "elongates", - "gerund": "elongating", - "past": "elongated", - "past_participle": "elongated" - }, - { - "infinitive": "sculpture", - "present": "sculptures", - "gerund": "sculpturing", - "past": "sculptured", - "past_participle": "sculptured" - }, - { - "infinitive": "encore", - "present": "encores", - "gerund": "encoring", - "past": "encored", - "past_participle": "encored" - }, - { - "infinitive": "reposit", - "present": "reposits", - "gerund": "repositing", - "past": "reposited", - "past_participle": "reposited" - }, - { - "infinitive": "crucify", - "present": "crucifies", - "gerund": "crucifying", - "past": "crucified", - "past_participle": "crucified" - }, - { - "infinitive": "clip", - "present": "clips", - "gerund": "clipping", - "past": "clipped", - "past_participle": "clipped" - }, - { - "infinitive": "fowl", - "present": "fowls", - "gerund": "fowling", - "past": "fowled", - "past_participle": "fowled" - }, - { - "infinitive": "splatter", - "present": "splatters", - "gerund": "splattering", - "past": "splattered", - "past_participle": "splattered" - }, - { - "infinitive": "blip", - "present": "blips", - "gerund": "blipping", - "past": "blipped", - "past_participle": "blipped" - }, - { - "infinitive": "unknit", - "present": "unknits", - "gerund": "unknitting", - "past": "unknitted", - "past_participle": "unknitted" - }, - { - "infinitive": "outstrip", - "present": "outstrips", - "gerund": "outstripping", - "past": "outstripped", - "past_participle": "outstripped" - }, - { - "infinitive": "disjoint", - "present": "disjoints", - "gerund": "disjointing", - "past": "disjointed", - "past_participle": "disjointed" - }, - { - "infinitive": "luminesce", - "present": "luminesces", - "gerund": "luminescing", - "past": "luminesced", - "past_participle": "luminesced" - }, - { - "infinitive": "angle", - "present": "angles", - "gerund": "angling", - "past": "angled", - "past_participle": "angled" - }, - { - "infinitive": "inform", - "present": "informs", - "gerund": "informing", - "past": "informed", - "past_participle": "informed" - }, - { - "infinitive": "rout", - "present": "routs", - "gerund": "routing", - "past": "routed", - "past_participle": "routed" - }, - { - "infinitive": "invigilate", - "present": "invigilates", - "gerund": "invigilating", - "past": "invigilated", - "past_participle": "invigilated" - }, - { - "infinitive": "roup", - "present": "roups", - "gerund": "rouping", - "past": "rouped", - "past_participle": "rouped" - }, - { - "infinitive": "lope", - "present": "lopes", - "gerund": "loping", - "past": "loped", - "past_participle": "loped" - }, - { - "infinitive": "deprave", - "present": "depraves", - "gerund": "depraving", - "past": "depraved", - "past_participle": "depraved" - }, - { - "infinitive": "divert", - "present": "diverts", - "gerund": "diverting", - "past": "diverted", - "past_participle": "diverted" - }, - { - "infinitive": "outpour", - "present": "outpours", - "gerund": "outpouring", - "past": "outpoured", - "past_participle": "outpoured" - }, - { - "infinitive": "combat", - "present": "combats", - "gerund": "combating", - "past": "combated", - "past_participle": "combated" - }, - { - "infinitive": "quitclaim", - "present": "quitclaims", - "gerund": "quitclaiming", - "past": "quitclaimed", - "past_participle": "quitclaimed" - }, - { - "infinitive": "invocate", - "present": "invocates", - "gerund": "invocating", - "past": "invocated", - "past_participle": "invocated" - }, - { - "infinitive": "filch", - "present": "filches", - "gerund": "filching", - "past": "filched", - "past_participle": "filched" - }, - { - "infinitive": "writhen", - "present": "writhens", - "gerund": "writhening", - "past": "writhened", - "past_participle": "writhened" - }, - { - "infinitive": "delve", - "present": "delves", - "gerund": "delving", - "past": "delved", - "past_participle": "delved" - }, - { - "infinitive": "class", - "present": "classes", - "gerund": "classing", - "past": "classed", - "past_participle": "classed" - }, - { - "infinitive": "clasp", - "present": "clasps", - "gerund": "clasping", - "past": "clasped", - "past_participle": "clasped" - }, - { - "infinitive": "tinct", - "present": "tincts", - "gerund": "tincting", - "past": "tincted", - "past_participle": "tincted" - }, - { - "infinitive": "discourage", - "present": "discourages", - "gerund": "discouraging", - "past": "discouraged", - "past_participle": "discouraged" - }, - { - "infinitive": "refract", - "present": "refracts", - "gerund": "refracting", - "past": "refracted", - "past_participle": "refracted" - }, - { - "infinitive": "dent", - "present": "dents", - "gerund": "denting", - "past": "dented", - "past_participle": "dented" - }, - { - "infinitive": "pipe", - "present": "pipes", - "gerund": "piping", - "past": "piped", - "past_participle": "piped" - }, - { - "infinitive": "quickfreeze", - "present": "quickfreezes", - "gerund": "quickfreezing", - "past": "quickfroze", - "past_participle": "quickfrozen" - }, - { - "infinitive": "intercross", - "present": "intercrosses", - "gerund": "intercrossing", - "past": "intercrossed", - "past_participle": "intercrossed" - }, - { - "infinitive": "stove", - "present": "stoves", - "gerund": "stoving", - "past": "stoved", - "past_participle": "stoved" - }, - { - "infinitive": "swizzle", - "present": "swizzles", - "gerund": "swizzling", - "past": "swizzled", - "past_participle": "swizzled" - }, - { - "infinitive": "betake", - "present": "betakes", - "gerund": "betaking", - "past": "betook", - "past_participle": "betaken" - }, - { - "infinitive": "complot", - "present": "complots", - "gerund": "complotting", - "past": "complotted", - "past_participle": "complotted" - }, - { - "infinitive": "fear", - "present": "fears", - "gerund": "fearing", - "past": "feared", - "past_participle": "feared" - }, - { - "infinitive": "debate", - "present": "debates", - "gerund": "debating", - "past": "debated", - "past_participle": "debated" - }, - { - "infinitive": "vesicate", - "present": "vesicates", - "gerund": "vesicating", - "past": "vesicated", - "past_participle": "vesicated" - }, - { - "infinitive": "succour", - "present": "succours", - "gerund": "succouring", - "past": "succoured", - "past_participle": "succoured" - }, - { - "infinitive": "manacle", - "present": "manacles", - "gerund": "manacling", - "past": "manacled", - "past_participle": "manacled" - }, - { - "infinitive": "filiate", - "present": "filiates", - "gerund": "filiating", - "past": "filiated", - "past_participle": "filiated" - }, - { - "infinitive": "reminisce", - "present": "reminisces", - "gerund": "reminiscing", - "past": "reminisced", - "past_participle": "reminisced" - }, - { - "infinitive": "freeload", - "present": "freeloads", - "gerund": "freeloading", - "past": "freeloaded", - "past_participle": "freeloaded" - }, - { - "infinitive": "re-echo", - "present": "re-echoes", - "gerund": "re-echoing", - "past": "re-echoed", - "past_participle": "re-echoed" - }, - { - "infinitive": "herald", - "present": "heralds", - "gerund": "heralding", - "past": "heralded", - "past_participle": "heralded" - }, - { - "infinitive": "inhabit", - "present": "inhabits", - "gerund": "inhabiting", - "past": "inhabited", - "past_participle": "inhabited" - }, - { - "infinitive": "outsell", - "present": "outsells", - "gerund": "outselling", - "past": "outsold", - "past_participle": "outsold" - }, - { - "infinitive": "prosecute", - "present": "prosecutes", - "gerund": "prosecuting", - "past": "prosecuted", - "past_participle": "prosecuted" - }, - { - "infinitive": "winterize", - "present": "winterizes", - "gerund": "winterizing", - "past": "winterized", - "past_participle": "winterized" - }, - { - "infinitive": "cube", - "present": "cubes", - "gerund": "cubing", - "past": "cubed", - "past_participle": "cubed" - }, - { - "infinitive": "topple", - "present": "topples", - "gerund": "toppling", - "past": "toppled", - "past_participle": "toppled" - }, - { - "infinitive": "skimp", - "present": "skimps", - "gerund": "skimping", - "past": "skimped", - "past_participle": "skimped" - }, - { - "infinitive": "dope", - "present": "dopes", - "gerund": "doping", - "past": "doped", - "past_participle": "doped" - }, - { - "infinitive": "massacre", - "present": "massacres", - "gerund": "massacring", - "past": "massacred", - "past_participle": "massacred" - }, - { - "infinitive": "blare", - "present": "blares", - "gerund": "blaring", - "past": "blared", - "past_participle": "blared" - }, - { - "infinitive": "penetrate", - "present": "penetrates", - "gerund": "penetrating", - "past": "penetrated", - "past_participle": "penetrated" - }, - { - "infinitive": "isochronize", - "present": "isochronizes", - "gerund": "isochronizing", - "past": "isochronized", - "past_participle": "isochronized" - }, - { - "infinitive": "swindle", - "present": "swindles", - "gerund": "swindling", - "past": "swindled", - "past_participle": "swindled" - }, - { - "infinitive": "anatomize", - "present": "anatomizes", - "gerund": "anatomizing", - "past": "anatomized", - "past_participle": "anatomized" - }, - { - "infinitive": "cotter", - "present": "cotters", - "gerund": "cottering", - "past": "cottered", - "past_participle": "cottered" - }, - { - "infinitive": "bisect", - "present": "bisects", - "gerund": "bisecting", - "past": "bisected", - "past_participle": "bisected" - }, - { - "infinitive": "postil", - "present": "postils", - "gerund": "postiling", - "past": "postiled", - "past_participle": "postiled" - }, - { - "infinitive": "compliment", - "present": "compliments", - "gerund": "complimenting", - "past": "complimented", - "past_participle": "complimented" - }, - { - "infinitive": "ascertain", - "present": "ascertains", - "gerund": "ascertaining", - "past": "ascertained", - "past_participle": "ascertained" - }, - { - "infinitive": "editorialize", - "present": "editorializes", - "gerund": "editorializing", - "past": "editorialized", - "past_participle": "editorialized" - }, - { - "infinitive": "view", - "present": "views", - "gerund": "viewing", - "past": "viewed", - "past_participle": "viewed" - }, - { - "infinitive": "premiss", - "present": "premisses", - "gerund": "premissing", - "past": "premissed", - "past_participle": "premissed" - }, - { - "infinitive": "ebb", - "present": "ebbs", - "gerund": "ebbing", - "past": "ebbed", - "past_participle": "ebbed" - }, - { - "infinitive": "expel", - "present": "expels", - "gerund": "expelling", - "past": "expelled", - "past_participle": "expelled" - }, - { - "infinitive": "grieve", - "present": "grieves", - "gerund": "grieving", - "past": "grieved", - "past_participle": "grieved" - }, - { - "infinitive": "gerrymander", - "present": "gerrymanders", - "gerund": "gerrymandering", - "past": "gerrymandered", - "past_participle": "gerrymandered" - }, - { - "infinitive": "crossruff", - "present": "crossruffs", - "gerund": "crossruffing", - "past": "crossruffed", - "past_participle": "crossruffed" - }, - { - "infinitive": "lapidate", - "present": "lapidates", - "gerund": "lapidating", - "past": "lapidated", - "past_participle": "lapidated" - }, - { - "infinitive": "still", - "present": "stills", - "gerund": "stilling", - "past": "stilled", - "past_participle": "stilled" - }, - { - "infinitive": "closet", - "present": "closets", - "gerund": "closeting", - "past": "closeted", - "past_participle": "closeted" - }, - { - "infinitive": "enamour", - "present": "enamours", - "gerund": "enamouring", - "past": "enamoured", - "past_participle": "enamoured" - }, - { - "infinitive": "diverge", - "present": "diverges", - "gerund": "diverging", - "past": "diverged", - "past_participle": "diverged" - }, - { - "infinitive": "torpedo", - "present": "torpedos", - "gerund": "torpedoing", - "past": "torpedoed", - "past_participle": "torpedoed" - }, - { - "infinitive": "whipstitch", - "present": "whipstitches", - "gerund": "whipstitching", - "past": "whipstitched", - "past_participle": "whipstitched" - }, - { - "infinitive": "flitch", - "present": "flitches", - "gerund": "flitching", - "past": "flitched", - "past_participle": "flitched" - }, - { - "infinitive": "avow", - "present": "avows", - "gerund": "avowing", - "past": "avowed", - "past_participle": "avowed" - }, - { - "infinitive": "jot", - "present": "jots", - "gerund": "jotting", - "past": "jotted", - "past_participle": "jotted" - }, - { - "infinitive": "overdevelop", - "present": "overdevelops", - "gerund": "overdeveloping", - "past": "overdeveloped", - "past_participle": "overdeveloped" - }, - { - "infinitive": "joy", - "present": "joys", - "gerund": "joying", - "past": "joyed", - "past_participle": "joyed" - }, - { - "infinitive": "crossexamine", - "present": "crossexamines", - "gerund": "crossexamining", - "past": "crossexamined", - "past_participle": "crossexamined" - }, - { - "infinitive": "uprouse", - "present": "uprouses", - "gerund": "uprousing", - "past": "uproused", - "past_participle": "uproused" - }, - { - "infinitive": "job", - "present": "jobs", - "gerund": "jobbing", - "past": "jobbed", - "past_participle": "jobbed" - }, - { - "infinitive": "joggle", - "present": "joggles", - "gerund": "joggling", - "past": "joggled", - "past_participle": "joggled" - }, - { - "infinitive": "depolymerize", - "present": "depolymerizes", - "gerund": "depolymerizing", - "past": "depolymerized", - "past_participle": "depolymerized" - }, - { - "infinitive": "spoil", - "present": "spoils", - "gerund": "spoiling", - "past": "spoilt", - "past_participle": "spoilt" - }, - { - "infinitive": "jog", - "present": "jogs", - "gerund": "jogging", - "past": "jogged", - "past_participle": "jogged" - }, - { - "infinitive": "stucco", - "present": "stuccos", - "gerund": "stuccoing", - "past": "stuccoed", - "past_participle": "stuccoed" - }, - { - "infinitive": "outshoot", - "present": "outshoots", - "gerund": "outshooting", - "past": "outshot", - "past_participle": "outshot" - }, - { - "infinitive": "disestablish", - "present": "disestablishes", - "gerund": "disestablishing", - "past": "disestablished", - "past_participle": "disestablished" - }, - { - "infinitive": "demulsify", - "present": "demulsifies", - "gerund": "demulsifying", - "past": "demulsified", - "past_participle": "demulsified" - }, - { - "infinitive": "grain", - "present": "grains", - "gerund": "graining", - "past": "grained", - "past_participle": "grained" - }, - { - "infinitive": "sideslip", - "present": "sideslips", - "gerund": "side-slipping", - "past": "sideslipped", - "past_participle": "side-slipped" - }, - { - "infinitive": "retrograde", - "present": "retrogrades", - "gerund": "retrograding", - "past": "retrograded", - "past_participle": "retrograded" - }, - { - "infinitive": "tousle", - "present": "tousles", - "gerund": "tousling", - "past": "tousled", - "past_participle": "tousled" - }, - { - "infinitive": "canopy", - "present": "canopies", - "gerund": "canopying", - "past": "canopied", - "past_participle": "canopied" - }, - { - "infinitive": "wale", - "present": "wales", - "gerund": "waling", - "past": "waled", - "past_participle": "waled" - }, - { - "infinitive": "dement", - "present": "dements", - "gerund": "dementing", - "past": "demented", - "past_participle": "demented" - }, - { - "infinitive": "munition", - "present": "munitions", - "gerund": "munitioning", - "past": "munitioned", - "past_participle": "munitioned" - }, - { - "infinitive": "wall", - "present": "walls", - "gerund": "walling", - "past": "walled", - "past_participle": "walled" - }, - { - "infinitive": "immunize", - "present": "immunizes", - "gerund": "immunizing", - "past": "immunized", - "past_participle": "immunized" - }, - { - "infinitive": "walk", - "present": "walks", - "gerund": "walking", - "past": "walked", - "past_participle": "walked" - }, - { - "infinitive": "subscribe", - "present": "subscribes", - "gerund": "subscribing", - "past": "subscribed", - "past_participle": "subscribed" - }, - { - "infinitive": "coddle", - "present": "coddles", - "gerund": "coddling", - "past": "coddled", - "past_participle": "coddled" - }, - { - "infinitive": "predestinate", - "present": "predestinates", - "gerund": "predestinating", - "past": "predestinated", - "past_participle": "predestinated" - }, - { - "infinitive": "autolyze", - "present": "autolyzes", - "gerund": "autolyzing", - "past": "autolyzed", - "past_participle": "autolyzed" - }, - { - "infinitive": "trademark", - "present": "trademarks", - "gerund": "trademarking", - "past": "trademarked", - "past_participle": "trademarked" - }, - { - "infinitive": "enchain", - "present": "enchains", - "gerund": "enchaining", - "past": "enchained", - "past_participle": "enchained" - }, - { - "infinitive": "tutor", - "present": "tutors", - "gerund": "tutoring", - "past": "tutored", - "past_participle": "tutored" - }, - { - "infinitive": "catechize", - "present": "catechizes", - "gerund": "catechizing", - "past": "catechized", - "past_participle": "catechized" - }, - { - "infinitive": "mike", - "present": "mikes", - "gerund": "miking", - "past": "miked", - "past_participle": "miked" - }, - { - "infinitive": "nickel", - "present": "nickels", - "gerund": "nickelling", - "past": "nickelled", - "past_participle": "nickelled" - }, - { - "infinitive": "tap", - "present": "taps", - "gerund": "tapping", - "past": "tapped", - "past_participle": "tapped" - }, - { - "infinitive": "twinge", - "present": "twinges", - "gerund": "twinging", - "past": "twinged", - "past_participle": "twinged" - }, - { - "infinitive": "overture", - "present": "overtures", - "gerund": "overturing", - "past": "overtured", - "past_participle": "overtured" - }, - { - "infinitive": "nicker", - "present": "nickers", - "gerund": "nickering", - "past": "nickered", - "past_participle": "nickered" - }, - { - "infinitive": "overturn", - "present": "overturns", - "gerund": "overturning", - "past": "overturned", - "past_participle": "overturned" - }, - { - "infinitive": "present", - "present": "presents", - "gerund": "presenting", - "past": "presented", - "past_participle": "presented" - }, - { - "infinitive": "twist", - "present": "twists", - "gerund": "twisting", - "past": "twisted", - "past_participle": "twisted" - }, - { - "infinitive": "corset", - "present": "corsets", - "gerund": "corseting", - "past": "corseted", - "past_participle": "corseted" - }, - { - "infinitive": "sanctify", - "present": "sanctifies", - "gerund": "sanctifying", - "past": "sanctified", - "past_participle": "sanctified" - }, - { - "infinitive": "wilt", - "present": "wilts", - "gerund": "wilting", - "past": "wilted", - "past_participle": "wilted" - }, - { - "infinitive": "aline", - "present": "alines", - "gerund": "alining", - "past": "alined", - "past_participle": "alined" - }, - { - "infinitive": "will", - "present": "wills", - "gerund": "willing", - "past": "willed", - "past_participle": "willed" - }, - { - "infinitive": "ensconce", - "present": "ensconces", - "gerund": "ensconcing", - "past": "ensconced", - "past_participle": "ensconced" - }, - { - "infinitive": "wile", - "present": "wiles", - "gerund": "wiling", - "past": "wiled", - "past_participle": "wiled" - }, - { - "infinitive": "rename", - "present": "renames", - "gerund": "renaming", - "past": "renamed", - "past_participle": "renamed" - }, - { - "infinitive": "hobbyhorse", - "present": "hobbyhorses", - "gerund": "hobbyhorsing", - "past": "hobbyhorsed", - "past_participle": "hobbyhorsed" - }, - { - "infinitive": "layer", - "present": "layers", - "gerund": "layering", - "past": "layered", - "past_participle": "layered" - }, - { - "infinitive": "apprehend", - "present": "apprehends", - "gerund": "apprehending", - "past": "apprehended", - "past_participle": "apprehended" - }, - { - "infinitive": "restructure", - "present": "restructures", - "gerund": "restructuring", - "past": "restructured", - "past_participle": "restructured" - }, - { - "infinitive": "disapprove", - "present": "disapproves", - "gerund": "disapproving", - "past": "disapproved", - "past_participle": "disapproved" - }, - { - "infinitive": "thud", - "present": "thuds", - "gerund": "thudding", - "past": "thudded", - "past_participle": "thudded" - }, - { - "infinitive": "deepfry", - "present": "deepfries", - "gerund": "deepfrying", - "past": "deepfried", - "past_participle": "deepfried" - }, - { - "infinitive": "whore", - "present": "whores", - "gerund": "whoring", - "past": "whored", - "past_participle": "whored" - }, - { - "infinitive": "hocus", - "present": "hocuses", - "gerund": "hocusing", - "past": "hocused", - "past_participle": "hocused" - }, - { - "infinitive": "vintage", - "present": "vintages", - "gerund": "vintaging", - "past": "vintaged", - "past_participle": "vintaged" - }, - { - "infinitive": "subcontract", - "present": "subcontracts", - "gerund": "subcontracting", - "past": "subcontracted", - "past_participle": "subcontracted" - }, - { - "infinitive": "cross", - "present": "crosses", - "gerund": "crossing", - "past": "crossed", - "past_participle": "crossed" - }, - { - "infinitive": "unite", - "present": "unites", - "gerund": "uniting", - "past": "united", - "past_participle": "united" - }, - { - "infinitive": "clinker", - "present": "clinkers", - "gerund": "clinkering", - "past": "clinkered", - "past_participle": "clinkered" - }, - { - "infinitive": "scamp", - "present": "scamps", - "gerund": "scamping", - "past": "scamped", - "past_participle": "scamped" - }, - { - "infinitive": "maculate", - "present": "maculates", - "gerund": "maculating", - "past": "maculated", - "past_participle": "maculated" - }, - { - "infinitive": "slave", - "present": "slaves", - "gerund": "slaving", - "past": "slaved", - "past_participle": "slaved" - }, - { - "infinitive": "recline", - "present": "reclines", - "gerund": "reclining", - "past": "reclined", - "past_participle": "reclined" - }, - { - "infinitive": "disagree", - "present": "disagrees", - "gerund": "disagreeing", - "past": "disagreed", - "past_participle": "disagreed" - }, - { - "infinitive": "pestle", - "present": "pestles", - "gerund": "pestling", - "past": "pestled", - "past_participle": "pestled" - }, - { - "infinitive": "pedal", - "present": "pedals", - "gerund": "pedaling", - "past": "pedaled", - "past_participle": "pedaled" - }, - { - "infinitive": "whale", - "present": "whales", - "gerund": "whaling", - "past": "whaled", - "past_participle": "whaled" - }, - { - "infinitive": "lobby", - "present": "lobbies", - "gerund": "lobbying", - "past": "lobbied", - "past_participle": "lobbied" - }, - { - "infinitive": "gutter", - "present": "gutters", - "gerund": "guttering", - "past": "guttered", - "past_participle": "guttered" - }, - { - "infinitive": "splint", - "present": "splints", - "gerund": "splinting", - "past": "splinted", - "past_participle": "splinted" - }, - { - "infinitive": "stablish", - "present": "stablishes", - "gerund": "stablishing", - "past": "stablished", - "past_participle": "stablished" - }, - { - "infinitive": "overwork", - "present": "overworks", - "gerund": "overworking", - "past": "overworked", - "past_participle": "overworked" - }, - { - "infinitive": "perpetrate", - "present": "perpetrates", - "gerund": "perpetrating", - "past": "perpetrated", - "past_participle": "perpetrated" - }, - { - "infinitive": "scissor", - "present": "scissors", - "gerund": "scissoring", - "past": "scissored", - "past_participle": "scissored" - }, - { - "infinitive": "demonize", - "present": "demonizes", - "gerund": "demonizing", - "past": "demonized", - "past_participle": "demonized" - }, - { - "infinitive": "hale", - "present": "hales", - "gerund": "haling", - "past": "haled", - "past_participle": "haled" - }, - { - "infinitive": "outgrow", - "present": "outgrows", - "gerund": "outgrowing", - "past": "outgrew", - "past_participle": "outgrown" - }, - { - "infinitive": "eructate", - "present": "eructs", - "gerund": "eructing", - "past": "eructed", - "past_participle": "eructed" - }, - { - "infinitive": "rocket", - "present": "rockets", - "gerund": "rocketing", - "past": "rocketed", - "past_participle": "rocketed" - }, - { - "infinitive": "obtain", - "present": "obtains", - "gerund": "obtaining", - "past": "obtained", - "past_participle": "obtained" - }, - { - "infinitive": "replenish", - "present": "replenishes", - "gerund": "replenishing", - "past": "replenished", - "past_participle": "replenished" - }, - { - "infinitive": "mythicize", - "present": "mythicizes", - "gerund": "mythicizing", - "past": "mythicized", - "past_participle": "mythicized" - }, - { - "infinitive": "distend", - "present": "distends", - "gerund": "distending", - "past": "distended", - "past_participle": "distended" - }, - { - "infinitive": "smite", - "present": "smites", - "gerund": "smiting", - "past": "smited", - "past_participle": "smitten" - }, - { - "infinitive": "console", - "present": "consoles", - "gerund": "consoling", - "past": "consoled", - "past_participle": "consoled" - }, - { - "infinitive": "reprehend", - "present": "reprehends", - "gerund": "reprehending", - "past": "reprehended", - "past_participle": "reprehended" - }, - { - "infinitive": "supply", - "present": "supplies", - "gerund": "supplying", - "past": "supplied", - "past_participle": "supplied" - }, - { - "infinitive": "sky", - "present": "skies", - "gerund": "skying", - "past": "skied", - "past_participle": "skied" - }, - { - "infinitive": "halo", - "present": "halos", - "gerund": "haloing", - "past": "haloed", - "past_participle": "haloed" - }, - { - "infinitive": "jaup", - "present": "jaups", - "gerund": "jauping", - "past": "jauped", - "past_participle": "jauped" - }, - { - "infinitive": "rescind", - "present": "rescinds", - "gerund": "rescinding", - "past": "rescinded", - "past_participle": "rescinded" - }, - { - "infinitive": "ski", - "present": "skis", - "gerund": "skiing", - "past": "skied", - "past_participle": "ski'd" - }, - { - "infinitive": "empoison", - "present": "empoisons", - "gerund": "empoisoning", - "past": "empoisoned", - "past_participle": "empoisoned" - }, - { - "infinitive": "enact", - "present": "enacts", - "gerund": "enacting", - "past": "enacted", - "past_participle": "enacted" - }, - { - "infinitive": "knob", - "present": "knobs", - "gerund": "knobbing", - "past": "knobbed", - "past_participle": "knobbed" - }, - { - "infinitive": "te-hee", - "present": "te-hees", - "gerund": "te-heeing", - "past": "te-heed", - "past_participle": "te-heed" - }, - { - "infinitive": "quartersaw", - "present": "quartersaws", - "gerund": "quartersawing", - "past": "quartersawed", - "past_participle": "quartersawed" - }, - { - "infinitive": "masquerade", - "present": "masquerades", - "gerund": "masquerading", - "past": "masqueraded", - "past_participle": "masqueraded" - }, - { - "infinitive": "straightarm", - "present": "straightarms", - "gerund": "straightarming", - "past": "straightarmed", - "past_participle": "straightarmed" - }, - { - "infinitive": "term", - "present": "terms", - "gerund": "terming", - "past": "termed", - "past_participle": "termed" - }, - { - "infinitive": "cwtch", - "present": "cwtches", - "gerund": "cwtching", - "past": "cwtched", - "past_participle": "cwtched" - }, - { - "infinitive": "overmaster", - "present": "overmasters", - "gerund": "overmastering", - "past": "overmastered", - "past_participle": "overmastered" - }, - { - "infinitive": "know", - "present": "knows", - "gerund": "knowing", - "past": "knew", - "past_participle": "known" - }, - { - "infinitive": "exsanguinate", - "present": "exsanguinates", - "gerund": "exsanguinating", - "past": "exsanguinated", - "past_participle": "exsanguinated" - }, - { - "infinitive": "press", - "present": "presses", - "gerund": "pressing", - "past": "pressed", - "past_participle": "pressed" - }, - { - "infinitive": "redesign", - "present": "redesigns", - "gerund": "redesigning", - "past": "redesigned", - "past_participle": "redesigned" - }, - { - "infinitive": "hollow", - "present": "hollows", - "gerund": "hollowing", - "past": "hollowed", - "past_participle": "hollowed" - }, - { - "infinitive": "mongrelize", - "present": "mongrelizes", - "gerund": "mongrelizing", - "past": "mongrelized", - "past_participle": "mongrelized" - }, - { - "infinitive": "calliper", - "present": "callipers", - "gerund": "callipering", - "past": "callipered", - "past_participle": "callipered" - }, - { - "infinitive": "unthrone", - "present": "unthrones", - "gerund": "unthroning", - "past": "unthroned", - "past_participle": "unthroned" - }, - { - "infinitive": "hitchhike", - "present": "hitchhikes", - "gerund": "hitchhiking", - "past": "hitchhiked", - "past_participle": "hitchhiked" - }, - { - "infinitive": "apostrophize", - "present": "apostrophizes", - "gerund": "apostrophizing", - "past": "apostrophized", - "past_participle": "apostrophized" - }, - { - "infinitive": "exceed", - "present": "exceeds", - "gerund": "exceeding", - "past": "exceeded", - "past_participle": "exceeded" - }, - { - "infinitive": "tumble", - "present": "tumbles", - "gerund": "tumbling", - "past": "tumbled", - "past_participle": "tumbled" - }, - { - "infinitive": "holler", - "present": "hollers", - "gerund": "hollering", - "past": "hollered", - "past_participle": "hollered" - }, - { - "infinitive": "earwig", - "present": "earwigs", - "gerund": "earwigging", - "past": "earwigged", - "past_participle": "earwigged" - }, - { - "infinitive": "leaf", - "present": "leafs", - "gerund": "leafing", - "past": "leafed", - "past_participle": "leafed" - }, - { - "infinitive": "lead", - "present": "leads", - "gerund": "leading", - "past": "led", - "past_participle": "led" - }, - { - "infinitive": "leak", - "present": "leaks", - "gerund": "leaking", - "past": "leaked", - "past_participle": "leaked" - }, - { - "infinitive": "skelp", - "present": "skelps", - "gerund": "skelping", - "past": "skelped", - "past_participle": "skelped" - }, - { - "infinitive": "lean", - "present": "leans", - "gerund": "leaning", - "past": "leant", - "past_participle": "leant" - }, - { - "infinitive": "thank", - "present": "thanks", - "gerund": "thanking", - "past": "thanked", - "past_participle": "thanked" - }, - { - "infinitive": "handfast", - "present": "handfasts", - "gerund": "handfasting", - "past": "handfasted", - "past_participle": "handfasted" - }, - { - "infinitive": "leap", - "present": "leaps", - "gerund": "leaping", - "past": "leapt", - "past_participle": "leapt" - }, - { - "infinitive": "belt", - "present": "belts", - "gerund": "belting", - "past": "belted", - "past_participle": "belted" - }, - { - "infinitive": "locate", - "present": "locates", - "gerund": "locating", - "past": "located", - "past_participle": "located" - }, - { - "infinitive": "obey", - "present": "obeys", - "gerund": "obeying", - "past": "obeyed", - "past_participle": "obeyed" - }, - { - "infinitive": "slur", - "present": "slurs", - "gerund": "slurring", - "past": "slurred", - "past_participle": "slurred" - }, - { - "infinitive": "foredo", - "present": "foredoes", - "gerund": "foredoing", - "past": "foredid", - "past_participle": "foredone" - }, - { - "infinitive": "lowercase", - "present": "", - "gerund": "lower-casing", - "past": "lower-cased", - "past_participle": "lower-cased" - }, - { - "infinitive": "slum", - "present": "slums", - "gerund": "slumming", - "past": "slummed", - "past_participle": "slummed" - }, - { - "infinitive": "paste", - "present": "pastes", - "gerund": "pasting", - "past": "pasted", - "past_participle": "pasted" - }, - { - "infinitive": "slug", - "present": "slugs", - "gerund": "slugging", - "past": "slugged", - "past_participle": "slugged" - }, - { - "infinitive": "reward", - "present": "rewards", - "gerund": "rewarding", - "past": "rewarded", - "past_participle": "rewarded" - }, - { - "infinitive": "throne", - "present": "thrones", - "gerund": "throning", - "past": "throned", - "past_participle": "throned" - }, - { - "infinitive": "pike", - "present": "pikes", - "gerund": "piking", - "past": "piked", - "past_participle": "piked" - }, - { - "infinitive": "throng", - "present": "throngs", - "gerund": "thronging", - "past": "thronged", - "past_participle": "thronged" - }, - { - "infinitive": "incline", - "present": "inclines", - "gerund": "inclining", - "past": "inclined", - "past_participle": "inclined" - }, - { - "infinitive": "linger", - "present": "lingers", - "gerund": "lingering", - "past": "lingered", - "past_participle": "lingered" - }, - { - "infinitive": "surge", - "present": "surges", - "gerund": "surging", - "past": "surged", - "past_participle": "surged" - }, - { - "infinitive": "swear", - "present": "swears", - "gerund": "swearing", - "past": "swore", - "past_participle": "sworn" - }, - { - "infinitive": "sweaway", - "present": "sweaways", - "gerund": "sweawaying", - "past": "sweawayed", - "past_participle": "sweawayed" - }, - { - "infinitive": "prestress", - "present": "prestresses", - "gerund": "prestressing", - "past": "prestressed", - "past_participle": "prestressed" - }, - { - "infinitive": "bugle", - "present": "bugles", - "gerund": "bugling", - "past": "bugled", - "past_participle": "bugled" - }, - { - "infinitive": "own", - "present": "owns", - "gerund": "owning", - "past": "owned", - "past_participle": "owned" - }, - { - "infinitive": "owe", - "present": "owes", - "gerund": "owing", - "past": "owed", - "past_participle": "owed" - }, - { - "infinitive": "cocker", - "present": "cockers", - "gerund": "cockering", - "past": "cockered", - "past_participle": "cockered" - }, - { - "infinitive": "champ", - "present": "champs", - "gerund": "champing", - "past": "champed", - "past_participle": "champed" - }, - { - "infinitive": "brush", - "present": "brushes", - "gerund": "brushing", - "past": "brushed", - "past_participle": "brushed" - }, - { - "infinitive": "outdate", - "present": "outdates", - "gerund": "outdating", - "past": "outdated", - "past_participle": "outdated" - }, - { - "infinitive": "negate", - "present": "negates", - "gerund": "negating", - "past": "negated", - "past_participle": "negated" - }, - { - "infinitive": "gurgle", - "present": "gurgles", - "gerund": "gurgling", - "past": "gurgled", - "past_participle": "gurgled" - }, - { - "infinitive": "stellify", - "present": "stellifies", - "gerund": "stellifying", - "past": "stellified", - "past_participle": "stellified" - }, - { - "infinitive": "limn", - "present": "limns", - "gerund": "limning", - "past": "limned", - "past_participle": "limned" - }, - { - "infinitive": "single-tongue", - "present": "single-tongues", - "gerund": "single-tonguing", - "past": "single-tongued", - "past_participle": "single-tongued" - }, - { - "infinitive": "transfer", - "present": "transfers", - "gerund": "transferring", - "past": "transferred", - "past_participle": "transferred" - }, - { - "infinitive": "spiral", - "present": "spirals", - "gerund": "spiralling", - "past": "spiralled", - "past_participle": "spiralled" - }, - { - "infinitive": "overtime", - "present": "overtimes", - "gerund": "overtiming", - "past": "overtimed", - "past_participle": "overtimed" - }, - { - "infinitive": "unreason", - "present": "unreasons", - "gerund": "unreasoning", - "past": "unreasoned", - "past_participle": "unreasoned" - }, - { - "infinitive": "dynamite", - "present": "dynamites", - "gerund": "dynamiting", - "past": "dynamited", - "past_participle": "dynamited" - }, - { - "infinitive": "vat", - "present": "vats", - "gerund": "vatting", - "past": "vatted", - "past_participle": "vatted" - }, - { - "infinitive": "nourish", - "present": "nourishes", - "gerund": "nourishing", - "past": "nourished", - "past_participle": "nourished" - }, - { - "infinitive": "shank", - "present": "shanks", - "gerund": "shanking", - "past": "shanked", - "past_participle": "shanked" - }, - { - "infinitive": "unwrap", - "present": "unwraps", - "gerund": "unwrapping", - "past": "unwrapped", - "past_participle": "unwrapped" - }, - { - "infinitive": "mutter", - "present": "mutters", - "gerund": "muttering", - "past": "muttered", - "past_participle": "muttered" - }, - { - "infinitive": "assail", - "present": "assails", - "gerund": "assailing", - "past": "assailed", - "past_participle": "assailed" - }, - { - "infinitive": "squeeze", - "present": "squeezes", - "gerund": "squeezing", - "past": "squeezed", - "past_participle": "squeezed" - }, - { - "infinitive": "goose", - "present": "gooses", - "gerund": "goosing", - "past": "goosed", - "past_participle": "goosed" - }, - { - "infinitive": "embolden", - "present": "emboldens", - "gerund": "emboldening", - "past": "emboldened", - "past_participle": "emboldened" - }, - { - "infinitive": "recede", - "present": "recedes", - "gerund": "receding", - "past": "receded", - "past_participle": "receded" - }, - { - "infinitive": "distract", - "present": "distracts", - "gerund": "distracting", - "past": "distracted", - "past_participle": "distracted" - }, - { - "infinitive": "retool", - "present": "retools", - "gerund": "retooling", - "past": "retooled", - "past_participle": "retooled" - }, - { - "infinitive": "record", - "present": "records", - "gerund": "recording", - "past": "recorded", - "past_participle": "recorded" - }, - { - "infinitive": "supplant", - "present": "supplants", - "gerund": "supplanting", - "past": "supplanted", - "past_participle": "supplanted" - }, - { - "infinitive": "cake", - "present": "cakes", - "gerund": "caking", - "past": "caked", - "past_participle": "caked" - }, - { - "infinitive": "demonstrate", - "present": "demonstrates", - "gerund": "demonstrating", - "past": "demonstrated", - "past_participle": "demonstrated" - }, - { - "infinitive": "hornswoggle", - "present": "hornswoggles", - "gerund": "hornswoggling", - "past": "hornswoggled", - "past_participle": "hornswoggled" - }, - { - "infinitive": "bewail", - "present": "bewails", - "gerund": "bewailing", - "past": "bewailed", - "past_participle": "bewailed" - }, - { - "infinitive": "affranchise", - "present": "affranchises", - "gerund": "affranchising", - "past": "affranchised", - "past_participle": "affranchised" - }, - { - "infinitive": "nobble", - "present": "nobbles", - "gerund": "nobbling", - "past": "nobbled", - "past_participle": "nobbled" - }, - { - "infinitive": "maroon", - "present": "maroons", - "gerund": "marooning", - "past": "marooned", - "past_participle": "marooned" - }, - { - "infinitive": "happen", - "present": "happens", - "gerund": "happening", - "past": "happened", - "past_participle": "happened" - }, - { - "infinitive": "immobilize", - "present": "immobilizes", - "gerund": "immobilizing", - "past": "immobilized", - "past_participle": "immobilized" - }, - { - "infinitive": "wimple", - "present": "wimples", - "gerund": "wimpling", - "past": "wimpled", - "past_participle": "wimpled" - }, - { - "infinitive": "glint", - "present": "glints", - "gerund": "glinting", - "past": "glinted", - "past_participle": "glinted" - }, - { - "infinitive": "boot", - "present": "boots", - "gerund": "booting", - "past": "booted", - "past_participle": "booted" - }, - { - "infinitive": "portion", - "present": "portions", - "gerund": "portioning", - "past": "portioned", - "past_participle": "portioned" - }, - { - "infinitive": "tessellate", - "present": "tessellates", - "gerund": "tessellating", - "past": "tessellated", - "past_participle": "tessellated" - }, - { - "infinitive": "book", - "present": "books", - "gerund": "booking", - "past": "booked", - "past_participle": "booked" - }, - { - "infinitive": "boom", - "present": "booms", - "gerund": "booming", - "past": "boomed", - "past_participle": "boomed" - }, - { - "infinitive": "branch", - "present": "branches", - "gerund": "branching", - "past": "branched", - "past_participle": "branched" - }, - { - "infinitive": "disproportion", - "present": "disproportions", - "gerund": "disproportioning", - "past": "disproportioned", - "past_participle": "disproportioned" - }, - { - "infinitive": "repute", - "present": "reputes", - "gerund": "reputing", - "past": "reputed", - "past_participle": "reputed" - }, - { - "infinitive": "boob", - "present": "boobs", - "gerund": "boobing", - "past": "boobed", - "past_participle": "boobed" - }, - { - "infinitive": "pantomime", - "present": "pantomimes", - "gerund": "pantomiming", - "past": "pantomimed", - "past_participle": "pantomimed" - }, - { - "infinitive": "lance", - "present": "lances", - "gerund": "lancing", - "past": "lanced", - "past_participle": "lanced" - }, - { - "infinitive": "junk", - "present": "junks", - "gerund": "junking", - "past": "junked", - "past_participle": "junked" - }, - { - "infinitive": "mulch", - "present": "mulches", - "gerund": "mulching", - "past": "mulched", - "past_participle": "mulched" - }, - { - "infinitive": "auscultate", - "present": "auscultates", - "gerund": "auscultating", - "past": "auscultated", - "past_participle": "auscultated" - }, - { - "infinitive": "frustrate", - "present": "frustrates", - "gerund": "frustrating", - "past": "frustrated", - "past_participle": "frustrated" - }, - { - "infinitive": "mulct", - "present": "mulcts", - "gerund": "mulcting", - "past": "mulcted", - "past_participle": "mulcted" - }, - { - "infinitive": "squeak", - "present": "squeaks", - "gerund": "squeaking", - "past": "squeaked", - "past_participle": "squeaked" - }, - { - "infinitive": "squeal", - "present": "squeals", - "gerund": "squealing", - "past": "squealed", - "past_participle": "squealed" - }, - { - "infinitive": "extort", - "present": "extorts", - "gerund": "extorting", - "past": "extorted", - "past_participle": "extorted" - }, - { - "infinitive": "sass", - "present": "sasses", - "gerund": "sassing", - "past": "sassed", - "past_participle": "sassed" - }, - { - "infinitive": "unbridle", - "present": "unbridles", - "gerund": "unbridling", - "past": "unbridled", - "past_participle": "unbridled" - }, - { - "infinitive": "jewel", - "present": "jewels", - "gerund": "jewelling", - "past": "jewelled", - "past_participle": "jewelled" - }, - { - "infinitive": "understand", - "present": "understands", - "gerund": "understanding", - "past": "understood", - "past_participle": "understood" - }, - { - "infinitive": "sash", - "present": "sashes", - "gerund": "sashing", - "past": "sashed", - "past_participle": "sashed" - }, - { - "infinitive": "inspan", - "present": "inspans", - "gerund": "inspanning", - "past": "inspanned", - "past_participle": "inspanned" - } -] diff --git a/src/parents/verb/conjugate/test/hard_tests.js b/src/parents/verb/conjugate/test/hard_tests.js deleted file mode 100644 index dbd18989d..000000000 --- a/src/parents/verb/conjugate/test/hard_tests.js +++ /dev/null @@ -1,110 +0,0 @@ -require('dirtyjs') -data = require("./data").data //.slice(0, 10) -// o = {} -// tmp = data.forEach(function(t) { -// o[t.infinitive] = "VB" -// }) -// console.log(o) -conjugate = require("../conjugate") - -types = [ - "infinitive", - "present", - "gerund", - "past", -] -missed = [] -errors = [] - -function isequal(o1, o2, tense) { // gerund -> present, gerund -> infinitive - list = [ - "infinitive", - "present", - "gerund", - "past", - ] - // console.log(o2) - found = false - list.forEach(function(t) { - // if (t === 'present') { - if (o1[t] !== o2[t]) { - console.log(" ( " + tense + "-> " + t + ") " + o1[t] + " !== " + o2[t]) - missed.push(t) - found = true - } else { - // console.log("======== ( " + tense + "-> " + t + ") " + o1[t] + " === " + o2[t]) - } - // } - }) - return found === false -} - - -function test_tense(type) { - console.log("======" + type + "======") - var goods = 0, - all = 0; - data.forEach(function(o) { - var o1 = conjugate(o[type]); - all++ - if (isequal(o, o1, type)) { - goods++ - } else { - errors.push(o[type]) - } - }) - errors = errors.map(function(str) { - return str.substr(str.length - 5, str.length) - }) - console.log(goods + " right of " + all) - console.log(((goods / (all)) * 100).toFixed(0) + "%") - // console.log(missed.topk().slice(0, 40)) - console.log(errors.topk().slice(0, 40)) - missed = [] -} -for (var i = 0; i < types.length; i++) { - test_tense(types[i]) -} - - - -// tmp = data.filter(function(s) { -// // return s -// return s.infinitive.match(/[^e]$/) -// // return s.infinitive.match(/e$/) -// }) -// tmp = tmp.map(function(s) { -// var str = s.past //.replace(/ed$/, '') -// return str.substr(str.length - 5, str.length) -// }).topk().slice(0, 70) -// console.log(JSON.stringify(tmp, null, 2)); - -/* -May 23rd -======infinitive====== -6071 right of 8493 -71% -======present====== -6239 right of 8493 -73% -======gerund====== -5478 right of 8493 -65% -======past====== -3376 right of 8493 -40% - -May 23rd 8:00 -======infinitive====== -6071 right of 8493 -71% -======present====== -6239 right of 8493 -73% -======gerund====== -5478 right of 8493 -65% -======past====== -6230 right of 8493 -73% -*/ diff --git a/src/parents/verb/conjugate/to_doer.js b/src/parents/verb/conjugate/to_doer.js index 1d69b4556..12a4f862e 100644 --- a/src/parents/verb/conjugate/to_doer.js +++ b/src/parents/verb/conjugate/to_doer.js @@ -1,65 +1,65 @@ //somone who does this present-tense verb //turn 'walk' into 'walker' var verb_to_doer = (function() { - var main = function(str) { - str = str || '' - var irregulars = { - "tie": "tier", - "dream": "dreamer", - "sail": "sailer", - "run": "runner", - "rub": "rubber", - "begin": "beginner", - "win": "winner", - "claim": "claimant", - "deal": "dealer", - "spin": "spinner" - } - var dont = { - "aid": 1, - "fail": 1, - "appear": 1, - "happen": 1, - "seem": 1, - "try": 1, - "say": 1, - "marry": 1, - "be": 1, - "forbid": 1, - "understand": 1 - } - var transforms = [{ - reg: /e$/i, - repl: 'er' - }, { - reg: /([aeiou])([mlgp])$/i, - repl: '$1$2$2er' - }, { - reg: /([rlf])y$/i, - repl: '$1ier' - }, { - reg: /^(.?.[aeiou])t$/i, - repl: '$1tter' - }] + var main = function(str) { + str = str || '' + var irregulars = { + "tie": "tier", + "dream": "dreamer", + "sail": "sailer", + "run": "runner", + "rub": "rubber", + "begin": "beginner", + "win": "winner", + "claim": "claimant", + "deal": "dealer", + "spin": "spinner" + } + var dont = { + "aid": 1, + "fail": 1, + "appear": 1, + "happen": 1, + "seem": 1, + "try": 1, + "say": 1, + "marry": 1, + "be": 1, + "forbid": 1, + "understand": 1 + } + var transforms = [{ + reg: /e$/i, + repl: 'er' + }, { + reg: /([aeiou])([mlgp])$/i, + repl: '$1$2$2er' + }, { + reg: /([rlf])y$/i, + repl: '$1ier' + }, { + reg: /^(.?.[aeiou])t$/i, + repl: '$1tter' + }] - if (dont[str]) { - return null - } - if (irregulars[str]) { - return irregulars[str] - } - for (var i = 0; i < transforms.length; i++) { - if (str.match(transforms[i].reg)) { - return str.replace(transforms[i].reg, transforms[i].repl) - } - } - return str + "er" - } + if (dont[str]) { + return null + } + if (irregulars[str]) { + return irregulars[str] + } + for (var i = 0; i < transforms.length; i++) { + if (str.match(transforms[i].reg)) { + return str.replace(transforms[i].reg, transforms[i].repl) + } + } + return str + "er" + } - if (typeof module !== "undefined" && module.exports) { - module.exports = main; - } - return main; + if (typeof module !== "undefined" && module.exports) { + module.exports = main; + } + return main; })(); // console.log(verb_to_doer('set')) diff --git a/src/parents/verb/conjugate/verb_irregulars.js b/src/parents/verb/conjugate/verb_irregulars.js index 53723e481..1ed3baaf6 100644 --- a/src/parents/verb/conjugate/verb_irregulars.js +++ b/src/parents/verb/conjugate/verb_irregulars.js @@ -799,52 +799,60 @@ var verb_irregulars = (function() { "past": "fed", "gerund": "feeding", "doer": "feeder" - }, - { + }, { "infinitive": "miss", "present": "miss", "past": "missed", "gerund": "missing", "doer": "misser" - }, - { + }, { "infinitive": "act", "present": "acts", "past": "acted", "gerund": "acting", "doer": "actor" - }, - { present: 'competes', + }, { + present: 'competes', gerund: 'competing', past: 'competed', infinitive: 'compete', - doer: 'competitor' }, + doer: 'competitor' + }, - { present: 'are', + { + present: 'are', gerund: 'are', past: 'were', infinitive: 'being', - doer: '' }, + doer: '' + }, - { infinitive: 'imply', + { + infinitive: 'imply', present: 'implies', past: 'implied', gerund: 'implying', - doer: 'implier' }, + doer: 'implier' + }, - { infinitive: 'ice', + { + infinitive: 'ice', present: 'ices', past: 'iced', gerund: 'icing', - doer: 'icer' }, + doer: 'icer' + }, - { infinitive: 'throw', + { + infinitive: 'throw', present: 'throws', past: 'threw', gerund: 'throwing', - doer: 'thrower' }, + doer: 'thrower' + }, - { present: 'develops', + { + present: 'develops', gerund: 'developing', past: 'develop', infinitive: 'develop', @@ -852,28 +860,29 @@ var verb_irregulars = (function() { future: 'will develop' }, - { present: 'waits', + { + present: 'waits', gerund: 'waiting', past: 'waited', infinitive: 'wait', doer: 'waiter', future: 'will wait' - }, - { present: 'aims', + }, { + present: 'aims', gerund: 'aiming', past: 'aimed', infinitive: 'aim', doer: 'aimer', future: 'will aim' - }, - { present: 'spills', + }, { + present: 'spills', gerund: 'spilling', past: 'spilt', infinitive: 'spill', doer: 'spiller', future: 'will spill' - }, - { present: 'am', + }, { + present: 'am', gerund: 'am', past: 'was', infinitive: 'be', diff --git a/src/parents/verb/conjugate/verb_rules.js b/src/parents/verb/conjugate/verb_rules.js index a73adb58f..c78754ca3 100644 --- a/src/parents/verb/conjugate/verb_rules.js +++ b/src/parents/verb/conjugate/verb_rules.js @@ -585,4 +585,4 @@ var verb_rules = { if (typeof module !== "undefined" && module.exports) { module.exports = verb_rules; -} \ No newline at end of file +} diff --git a/src/parents/adverb/conjugate/test.js b/tests/adverb_test/data.js similarity index 99% rename from src/parents/adverb/conjugate/test.js rename to tests/adverb_test/data.js index ba3478f3c..74e421053 100644 --- a/src/parents/adverb/conjugate/test.js +++ b/tests/adverb_test/data.js @@ -2960,4 +2960,4 @@ exports.data = [ ['coyly', 'coy'], ['shyly', 'shy'], ['wryly', 'wry'], -] \ No newline at end of file +]