In [1]:
from nltk.corpus import wordnet
from nltk import word_tokenize, pos_tag
from nltk.stem import WordNetLemmatizer


SampleTXT='The yellow dog barked at the cat'

def get_wordnet_pos(treebank_tag):
    if treebank_tag.startswith('J'):
        return wordnet.ADJ
    elif treebank_tag.startswith('V'):
        return wordnet.VERB
    elif treebank_tag.startswith('N'):
        return wordnet.NOUN
    elif treebank_tag.startswith('R'):
        return wordnet.ADV
    else:
        return None


def lemmatize_sentence(sentence):
    res = []
    lemmatizer = WordNetLemmatizer()
    
    print word_tokenize(sentence)
    for word, pos in pos_tag(word_tokenize(sentence)):
        print word, pos
        wordnet_pos = get_wordnet_pos(pos) or wordnet.NOUN
        res.append(lemmatizer.lemmatize(word, pos=wordnet_pos))

    return res

In [15]:
import MySQLdb as mysql

In [24]:
#connect into DB
conn = mysql.connect(host='140.116.112.164', user='iim_project', passwd='1qaz2wsx3eDC', db = "iim_project", charset="utf8")
cur = conn.cursor()

cur.execute("SELECT word FROM ES2002a_grammer")
words = cur.fetchall()

cur.execute("SELECT * FROM ES2002a_grammer")
final = cur.fetchall()

cur.close()
conn.close()

In [41]:
final


Out[41]:
[['1', 'Uh_huh', 'nsubj', 1, 1, 'select', 2, 'Uh_huh'],
 ['2', 'select', 'root', 2, 1, 'ROOT', 0, 'select'],
 ['3', 'a', 'det', 3, 1, 'she', 4, 'a'],
 ['4', 'she', 'nsubj', 4, 1, 'produced', 6, 'she'],
 ['5', 'has', 'aux', 5, 1, 'produced', 6, 'have'],
 ['6', 'produced', 'ccomp', 6, 1, 'select', 2, 'produce'],
 ['7', 'a', 'det', 7, 1, 'Uh', 9, 'a'],
 ['8', 'powerpoint', 'amod', 8, 1, 'Uh', 9, 'powerpoint'],
 ['9', 'Uh', 'dobj', 9, 1, 'produced', 6, 'Uh'],
 ['10', 'I', 'nsubj', 10, 1, 'think', 11, 'I'],
 ['11', 'think', 'acl:relcl', 11, 1, 'Uh', 9, 'think'],
 ['12', 'it', 'nsubj', 12, 1, 'actually', 16, 'it'],
 ['13', "'s", 'cop', 13, 1, 'actually', 16, "'s"],
 ['14', 'already', 'advmod', 14, 1, 'actually', 16, 'already'],
 ['15', 'on', 'case', 15, 1, 'actually', 16, 'on'],
 ['16', 'actually', 'ccomp', 16, 1, 'think', 11, 'actually'],
 ['17', 'we', 'nsubj', 1, 2, 'try', 3, 'we'],
 ['18', "'ll", 'aux', 2, 2, 'try', 3, "'ll"],
 ['19', 'try', 'root', 3, 2, 'ROOT', 0, 'try'],
 ['20', 'the', 'det', 4, 2, 'yeah', 8, 'the'],
 ['21', 'main', 'amod', 5, 2, 'yeah', 8, 'main'],
 ['22', 'thing', 'compound', 6, 2, 'yeah', 8, 'thing'],
 ['23', 'work', 'compound', 7, 2, 'yeah', 8, 'work'],
 ['24', 'yeah', 'nsubj', 8, 2, 'applies', 9, 'yeah'],
 ['25', 'applies', 'ccomp', 9, 2, 'try', 3, 'applies'],
 ['26', 'in', 'case', 10, 2, 'right', 15, 'in'],
 ['27', 'the', 'det', 11, 2, 'right', 15, 'the'],
 ['28', 'back', 'advmod', 12, 2, 'but', 13, 'back'],
 ['29', 'but', 'advmod', 13, 2, 'okay', 14, 'but'],
 ['30', 'okay', 'amod', 14, 2, 'right', 15, 'okay'],
 ['31', 'right', 'nmod:in', 15, 2, 'applies', 9, 'right'],
 ['32', 'Now', 'advmod', 1, 3, 'meeting', 10, 'Now'],
 ['33', 'I', 'nsubj', 2, 3, 'meeting', 10, 'I'],
 ['34', 'yes', 'advmod', 3, 3, 'right', 5, 'yes'],
 ['35', 'okay', 'nummod', 4, 3, 'right', 5, 'okay'],
 ['36', 'right', 'nmod:npmod', 5, 3, 'well', 6, 'right'],
 ['37', 'well', 'advmod', 6, 3, 'meeting', 10, 'well'],
 ['38', 'was', 'cop', 7, 3, 'meeting', 10, 'be'],
 ['39', 'the', 'det', 8, 3, 'meeting', 10, 'the'],
 ['40', 'kickoff', 'compound', 9, 3, 'meeting', 10, 'kickoff'],
 ['41', 'meeting', 'csubj', 10, 3, 'is', 17, 'meeting'],
 ['42', 'for', 'case', 11, 3, 'project', 14, 'for'],
 ['43', 'our', 'nmod:poss', 12, 3, 'project', 14, 'our'],
 ['44', 'our', 'nmod:poss', 13, 3, 'project', 14, 'our'],
 ['45', 'project', 'nmod:for', 14, 3, 'meeting', 10, 'project'],
 ['46', 'and', 'cc', 15, 3, 'project', 14, 'and'],
 ['47', 'this', 'nmod:for', 16, 3, 'meeting', 10, 'this'],
 ['48', 'this', 'conj:and', 16, 3, 'project', 14, 'this'],
 ['49', 'is', 'root', 17, 3, 'ROOT', 0, 'be'],
 ['50', 'just', 'advmod', 18, 3, 'what', 19, 'just'],
 ['51', 'what', 'dep', 19, 3, 'gon', 22, 'what'],
 ['52', 'we', 'nsubj', 20, 3, 'gon', 22, 'we'],
 ['53', 'we', 'nsubj', 20, 3, 'doing', 25, 'we'],
 ['54', "'re", 'aux', 21, 3, 'gon', 22, "'re"],
 ['55', 'gon', 'ccomp', 22, 3, 'is', 17, 'gon'],
 ['56', 'na', 'mark', 23, 3, 'doing', 25, 'na'],
 ['57', 'be', 'aux', 24, 3, 'doing', 25, 'be'],
 ['58', 'doing', 'xcomp', 25, 3, 'gon', 22, 'do'],
 ['59', 'in', 'case', 26, 3, 'twenty', 29, 'in'],
 ['60', 'the', 'det', 27, 3, 'twenty', 29, 'the'],
 ['61', 'next', 'amod', 28, 3, 'twenty', 29, 'next'],
 ['62', 'twenty', 'nmod:in', 29, 3, 'doing', 25, 'twenty'],
 ['63', 'five', 'nummod', 30, 3, 'minutes', 31, 'five'],
 ['64', 'minutes', 'dobj', 31, 3, 'doing', 25, 'minute'],
 ['65', 'Um', 'nsubj', 1, 4, 'introduce', 27, 'Um'],
 ['66', 'so', 'advmod', 2, 4, 'personal', 3, 'so'],
 ['67', 'personal', 'amod', 3, 4, 'Um', 1, 'personal'],
 ['68', 'just', 'advmod', 4, 4, 'kind', 6, 'just'],
 ['69', 'to', 'case', 5, 4, 'kind', 6, 'to'],
 ['70', 'kind', 'nmod:to', 6, 4, 'personal', 3, 'kind'],
 ['71', 'of', 'mark', 7, 4, 'make', 8, 'of'],
 ['72', 'make', 'acl', 8, 4, 'kind', 6, 'make'],
 ['73', 'sure', 'xcomp', 9, 4, 'make', 8, 'sure'],
 ['74', 'that', 'mark', 10, 4, 'know', 13, 'that'],
 ['75', 'we', 'nsubj', 11, 4, 'know', 13, 'we'],
 ['76', 'all', 'advmod', 12, 4, 'know', 13, 'all'],
 ['77', 'know', 'ccomp', 13, 4, 'make', 8, 'know'],
 ['78', 'each', 'det', 14, 4, 'I', 16, 'each'],
 ['79', 'other', 'amod', 15, 4, 'I', 16, 'other'],
 ['80', 'I', 'nsubj', 16, 4, 'your', 18, 'I'],
 ['81', "'m", 'cop', 17, 4, 'your', 18, "'m"],
 ['82', 'your', 'ccomp', 18, 4, 'know', 13, 'your'],
 ['83', 'and', 'cc', 19, 4, 'know', 13, 'and'],
 ['84', 'I', 'nsubj', 20, 4, 'manager', 24, 'I'],
 ['85', "'m", 'cop', 21, 4, 'manager', 24, "'m"],
 ['86', 'the', 'det', 22, 4, 'manager', 24, 'the'],
 ['87', 'project', 'compound', 23, 4, 'manager', 24, 'project'],
 ['88', 'manager', 'ccomp', 24, 4, 'make', 8, 'manager'],
 ['89', 'manager', 'conj:and', 24, 4, 'know', 13, 'manager'],
 ['90', 'do', 'aux', 25, 4, 'introduce', 27, 'do'],
 ['91', "n't", 'neg', 26, 4, 'introduce', 27, "n't"],
 ['92', 'introduce', 'root', 27, 4, 'ROOT', 0, 'introduce'],
 ['93', 'yourself', 'dobj', 28, 4, 'introduce', 27, 'yourself'],
 ['94', 'again', 'advmod', 29, 4, 'introduce', 27, 'again'],
 ['95', 'Um', 'compound', 1, 5, 'data', 2, 'Um'],
 ['96', 'data', 'nsubjpass', 2, 5, 'supposed', 6, 'data'],
 ['97', 'data', 'nsubj', 2, 5, 'okay', 11, 'data'],
 ['98', 'and', 'cc', 3, 5, 'data', 2, 'and'],
 ['99', 'I', 'conj:and', 4, 5, 'data', 2, 'I'],
 ['100', 'I', 'nsubjpass', 4, 5, 'supposed', 6, 'I'],
 ['101', 'I', 'nsubj', 4, 5, 'okay', 11, 'I'],
 ['102', "'m", 'auxpass', 5, 5, 'supposed', 6, "'m"],
 ['103', 'supposed', 'root', 6, 5, 'ROOT', 0, 'suppose'],
 ['104', 'to', 'mark', 7, 5, 'okay', 11, 'to'],
 ['105', 'be', 'cop', 8, 5, 'okay', 11, 'be'],
 ['106', 'industrial', 'amod', 9, 5, 'okay', 11, 'industrial'],
 ['107', 'designer', 'compound', 10, 5, 'okay', 11, 'designer'],
 ['108', 'okay', 'xcomp', 11, 5, 'supposed', 6, 'okay'],
 ['109', 'Andrew', 'nsubj', 1, 6, 'marketing', 6, 'Andrew'],
 ['110', 'and', 'cc', 2, 6, 'Andrew', 1, 'and'],
 ['111', 'I', 'conj:and', 3, 6, 'Andrew', 1, 'I'],
 ['112', 'I', 'nsubj', 3, 6, 'marketing', 6, 'I'],
 ['113', "'m", 'cop', 4, 6, 'marketing', 6, "'m"],
 ['114', 'the', 'det', 5, 6, 'marketing', 6, 'the'],
 ['115', 'marketing', 'root', 6, 6, 'ROOT', 0, 'marketing'],
 ['116', 'an', 'det', 7, 6, 'expert', 8, 'an'],
 ['117', 'expert', 'dep', 8, 6, 'marketing', 6, 'expert'],
 ['118', 'I', 'nsubj', 1, 7, 'agent', 4, 'I'],
 ['119', "'m", 'cop', 2, 7, 'agent', 4, "'m"],
 ['120', 'pregnant', 'amod', 3, 7, 'agent', 4, 'pregnant'],
 ['121', 'agent', 'root', 4, 7, 'ROOT', 0, 'agent'],
 ['122', 'great', 'amod', 1, 8, 'okay', 2, 'great'],
 ['123', 'okay', 'nsubj', 2, 8, 'designing', 7, 'okay'],
 ['124', 'I', 'nsubj', 3, 8, 'we', 5, 'I'],
 ['125', 'was', 'cop', 4, 8, 'we', 5, 'be'],
 ['126', 'we', 'acl:relcl', 5, 8, 'okay', 2, 'we'],
 ['127', "'re", 'aux', 6, 8, 'designing', 7, "'re"],
 ['128', 'designing', 'root', 7, 8, 'ROOT', 0, 'design'],
 ['129', 'any', 'det', 8, 8, 'control', 10, 'any'],
 ['130', 'remote', 'amod', 9, 8, 'control', 10, 'remote'],
 ['131', 'control', 'dobj', 10, 8, 'designing', 7, 'control'],
 ['132', 'And', 'cc', 1, 9, 'have', 4, 'And'],
 ['133', 'oh', 'discourse', 2, 9, 'have', 4, 'oh'],
 ['134', 'I', 'nsubj', 3, 9, 'have', 4, 'I'],
 ['135', 'I', 'nsubj', 3, 9, 'record', 6, 'I'],
 ['136', 'have', 'root', 4, 9, 'ROOT', 0, 'have'],
 ['137', 'to', 'mark', 5, 9, 'record', 6, 'to'],
 ['138', 'record', 'xcomp', 6, 9, 'have', 4, 'record'],
 ['139', 'he', 'nsubj', 7, 9, "'s", 8, 'he'],
 ['140', "'s", 'ccomp', 8, 9, 'record', 6, "'s"],
 ['141', 'here', 'advmod', 9, 9, "'s", 8, 'here'],
 ['142', 'actually', 'advmod', 10, 9, "'s", 8, 'actually'],
 ['143', 'so', 'mark', 11, 9, 'do', 13, 'so'],
 ['144', 'this', 'nsubj', 12, 9, 'do', 13, 'this'],
 ['145', 'this', 'nsubj', 12, 9, 'created', 17, 'this'],
 ['146', 'do', 'advcl', 13, 9, "'s", 8, 'do'],
 ['147', 'the', 'det', 14, 9, 'Andrew', 15, 'the'],
 ['148', 'Andrew', 'dobj', 15, 9, 'do', 13, 'Andrew'],
 ['149', 'and', 'cc', 16, 9, 'do', 13, 'and'],
 ['150', 'created', 'advcl', 17, 9, "'s", 8, 'create'],
 ['151', 'created', 'conj:and', 17, 9, 'do', 13, 'create'],
 ['152', 'and', 'cc', 18, 9, 'have', 4, 'and'],
 ['153', 'you', 'nsubj', 19, 9, 'arrived', 21, 'you'],
 ['154', "'ll", 'aux', 20, 9, 'arrived', 21, "'ll"],
 ['155', 'arrived', 'conj:and', 21, 9, 'have', 4, 'arrive'],
 ['156', 'on', 'case', 22, 9, 'time', 23, 'on'],
 ['157', 'time', 'nmod:on', 23, 9, 'arrived', 21, 'time'],
 ['158', 'Um', 'root', 1, 10, 'ROOT', 0, 'Um'],
 ['159', 'yes', 'dobj', 2, 10, 'Um', 1, 'yes'],
 ['160', 'it', 'nsubj', 3, 10, 'design', 6, 'it'],
 ['161', 'is', 'cop', 4, 10, 'design', 6, 'be'],
 ['162', 'a', 'det', 5, 10, 'design', 6, 'a'],
 ['163', 'design', 'dep', 6, 10, 'Um', 1, 'design'],
 ['164', 'a', 'det', 7, 10, 'control', 10, 'a'],
 ['165', 'new', 'amod', 8, 10, 'control', 10, 'new'],
 ['166', 'remote', 'amod', 9, 10, 'control', 10, 'remote'],
 ['167', 'control', 'nsubj', 10, 10, 'is', 15, 'control'],
 ['168', 'as', 'mark', 11, 10, 'see', 14, 'a'],
 ['169', 'you', 'nsubj', 12, 10, 'see', 14, 'you'],
 ['170', 'can', 'aux', 13, 10, 'see', 14, 'can'],
 ['171', 'see', 'acl:relcl', 14, 10, 'control', 10, 'see'],
 ['172', 'is', 'acl:relcl', 15, 10, 'design', 6, 'be'],
 ['173', 'this', 'nsubj', 16, 10, 'trendy', 19, 'this'],
 ['174', 'this', 'nsubj', 16, 10, 'friendly', 22, 'this'],
 ['175', 'be', 'cop', 17, 10, 'trendy', 19, 'be'],
 ['176', 'original', 'amod', 18, 10, 'trendy', 19, 'original'],
 ['177', 'trendy', 'ccomp', 19, 10, 'is', 15, 'trendy'],
 ['178', 'and', 'cc', 20, 10, 'trendy', 19, 'and'],
 ['179', 'user', 'advmod', 21, 10, 'friendly', 22, 'user'],
 ['180', 'friendly', 'ccomp', 22, 10, 'is', 15, 'friendly'],
 ['181', 'friendly', 'conj:and', 22, 10, 'trendy', 19, 'friendly'],
 ['182', 'Um', 'root', 1, 11, 'ROOT', 0, 'Um'],
 ['183', 'so', 'mark', 2, 11, 'kind', 5, 'so'],
 ['184', 'that', 'nsubj', 3, 11, 'kind', 5, 'that'],
 ['185', "'s", 'cop', 4, 11, 'kind', 5, "'s"],
 ['186', 'kind', 'advcl', 5, 11, 'Um', 1, 'kind'],
 ['187', 'of', 'case', 6, 11, 'brief', 9, 'of'],
 ['188', 'our', 'nmod:poss', 7, 11, 'brief', 9, 'our'],
 ['189', 'our', 'nmod:poss', 8, 11, 'brief', 9, 'our'],
 ['190', 'brief', 'nmod:of', 9, 11, 'kind', 5, 'brief'],
 ['191', 'the', 'det', 10, 11, 'wire', 11, 'the'],
 ['192', 'wire', 'dep', 11, 11, 'brief', 9, 'wire'],
 ['193', 'and', 'cc', 12, 11, 'kind', 5, 'and'],
 ['194', 'so', 'mark', 13, 11, 'are', 15, 'so'],
 ['195', 'there', 'expl', 14, 11, 'are', 15, 'there'],
 ['196', 'are', 'advcl', 15, 11, 'Um', 1, 'be'],
 ['197', 'are', 'conj:and', 15, 11, 'kind', 5, 'be'],
 ['198', 'three', 'nummod', 16, 11, 'stages', 18, 'three'],
 ['199', 'different', 'amod', 17, 11, 'stages', 18, 'different'],
 ['200', 'stages', 'nsubj', 18, 11, 'are', 15, 'stage'],
 ['201', 'to', 'case', 19, 11, 'design', 21, 'to'],
 ['202', 'the', 'det', 20, 11, 'design', 21, 'the'],
 ['203', 'design', 'nmod:to', 21, 11, 'stages', 18, 'design'],
 ['204', 'And', 'cc', 1, 12, 'sure', 5, 'And'],
 ['205', 'I', 'nsubj', 2, 12, 'sure', 5, 'I'],
 ['206', "'m", 'cop', 3, 12, 'sure', 5, "'m"],
 ['207', 'not', 'neg', 4, 12, 'sure', 5, 'not'],
 ['208', 'sure', 'root', 5, 12, 'ROOT', 0, 'sure'],
 ['209', 'what', 'dobj', 6, 12, 'get', 19, 'what'],
 ['210', 'what', 'dobj', 7, 12, 'received', 12, 'what'],
 ['211', 'you', 'dep', 8, 12, 'guys', 9, 'you'],
 ['212', 'guys', 'nsubj', 9, 12, 'received', 12, 'guy'],
 ['213', 'have', 'aux', 10, 12, 'received', 12, 'have'],
 ['214', 'already', 'advmod', 11, 12, 'received', 12, 'already'],
 ['215', 'received', 'advcl', 12, 12, 'get', 19, 'receive'],
 ['216', 'in', 'case', 13, 12, 'emails', 15, 'in'],
 ['217', 'your', 'nmod:poss', 14, 12, 'emails', 15, 'your'],
 ['218', 'emails', 'nmod:in', 15, 12, 'received', 12, 'email'],
 ['219', 'emails', 'nsubj', 15, 12, "'d", 17, 'email'],
 ['220', 'what', 'ref', 16, 12, 'emails', 15, 'what'],
 ['221', "'d", 'acl:relcl', 17, 12, 'emails', 15, "'d"],
 ['222', 'you', 'nsubj', 18, 12, 'get', 19, 'you'],
 ['223', 'get', 'ccomp', 19, 12, 'sure', 5, 'get'],
 ['224', 'I', 'dobj', 20, 12, 'get', 19, 'I'],
 ['225', 'just', 'advmod', 21, 12, 'get', 19, 'just'],
 ['226', 'got', 'aux', 1, 13, "'cause", 6, 'get'],
 ['227', "'cause", 'dep', 6, 13, 'know', 9, "'cause"],
 ['228', 'I', 'nsubj', 8, 13, 'know', 9, 'I'],
 ['229', 'know', 'root', 9, 13, 'ROOT', 0, 'know'],
 ['230', 'you', 'dobj', 10, 13, 'know', 9, 'you'],
 ['231', 'had', 'csubj', 1, 14, 'calls', 3, 'have'],
 ['232', 'to', 'nmod', 2, 14, 'had', 1, 'to'],
 ['233', 'calls', 'root', 3, 14, 'ROOT', 0, 'call'],
 ['234', 'okay', 'xcomp', 4, 14, 'calls', 3, 'okay'],
 ['235', 'so', 'mark', 5, 14, 'gon', 8, 'so'],
 ['236', 'we', 'nsubj', 6, 14, 'gon', 8, 'we'],
 ['237', 'we', 'nsubj', 6, 14, 'have', 10, 'we'],
 ['238', "'re", 'aux', 7, 14, 'gon', 8, "'re"],
 ['239', 'gon', 'advcl', 8, 14, 'calls', 3, 'gon'],
 ['240', 'na', 'mark', 9, 14, 'have', 10, 'na'],
 ['241', 'have', 'xcomp', 10, 14, 'gon', 8, 'have'],
 ['242', 'like', 'amod', 11, 14, 'work', 13, 'like'],
 ['243', 'individual', 'amod', 12, 14, 'work', 13, 'individual'],
 ['244', 'work', 'dobj', 13, 14, 'have', 10, 'work'],
 ['245', 'and', 'cc', 14, 14, 'work', 13, 'and'],
 ['246', 'then', 'advmod', 15, 14, 'meeting', 17, 'then'],
 ['247', 'a', 'det', 16, 14, 'meeting', 17, 'a'],
 ['248', 'meeting', 'dobj', 17, 14, 'have', 10, 'meeting'],
 ['249', 'meeting', 'conj:and', 17, 14, 'work', 13, 'meeting'],
 ['250', 'about', 'case', 18, 14, 'it', 19, 'about'],
 ['251', 'it', 'nmod:about', 19, 14, 'meeting', 17, 'it'],
 ['252', 'And', 'cc', 1, 15, 'repeat', 2, 'And'],
 ['253', 'repeat', 'root', 2, 15, 'ROOT', 0, 'repeat'],
 ['254', 'that', 'det', 3, 15, 'process', 4, 'that'],
 ['255', 'process', 'dobj', 4, 15, 'repeat', 2, 'process'],
 ['256', 'three', 'nummod', 5, 15, 'times', 6, 'three'],
 ['257', 'times', 'dep', 6, 15, 'process', 4, 'time'],
 ['258', 'Um', 'root', 1, 16, 'ROOT', 0, 'Um'],
 ['259', 'and', 'cc', 2, 16, 'Um', 1, 'and'],
 ['260', 'at', 'case', 3, 16, 'point', 5, 'at'],
 ['261', 'this', 'det', 4, 16, 'point', 5, 'this'],
 ['262', 'point', 'nmod:at', 5, 16, 'try', 8, 'point'],
 ['263', 'we', 'nsubj', 6, 16, 'try', 8, 'we'],
 ['264', 'get', 'aux', 7, 16, 'try', 8, 'get'],
 ['265', 'try', 'conj:and', 8, 16, 'Um', 1, 'try'],
 ['266', 'the', 'det', 10, 16, 'whiteboard', 11, 'the'],
 ['267', 'whiteboard', 'dobj', 11, 16, 'try', 8, 'whiteboard'],
 ['268', 'over', 'case', 12, 16, 'there', 13, 'over'],
 ['269', 'there', 'nmod:over', 13, 16, 'whiteboard', 11, 'there'],
 ['270', 'I', 'nsubj', 1, 17, 'get', 4, 'I'],
 ['271', 'I', 'nsubj', 1, 17, 'draw', 6, 'I'],
 ['272', 'I', 'nsubj', 1, 17, 'sum', 11, 'I'],
 ['273', 'so', 'advmod', 2, 17, 'get', 4, 'so'],
 ['274', 'you', 'nsubj', 3, 17, 'get', 4, 'you'],
 ['275', 'you', 'nsubj', 3, 17, 'draw', 6, 'you'],
 ['276', 'get', 'dep', 4, 17, 'kids', 27, 'get'],
 ['277', 'to', 'mark', 5, 17, 'draw', 6, 'to'],
 ['278', 'draw', 'xcomp', 6, 17, 'get', 4, 'draw'],
 ['279', 'your', 'nmod:poss', 7, 17, 'animal', 9, 'your'],
 ['280', 'favourite', 'amod', 8, 17, 'animal', 9, 'favourite'],
 ['281', 'animal', 'dobj', 9, 17, 'draw', 6, 'animal'],
 ['282', 'and', 'cc', 10, 17, 'draw', 6, 'and'],
 ['283', 'sum', 'xcomp', 11, 17, 'get', 4, 'sum'],
 ['284', 'sum', 'conj:and', 11, 17, 'draw', 6, 'sum'],
 ['285', 'of', 'case', 16, 17, 'that', 17, 'of'],
 ['286', 'so', 'mark', 18, 17, 'like', 21, 'so'],
 ['287', 'you', 'nsubj', 19, 17, 'like', 21, 'you'],
 ['288', 'you', 'nsubj', 19, 17, 'get', 23, 'you'],
 ['289', "'d", 'aux', 20, 17, 'like', 21, "'d"],
 ['290', 'like', 'advcl', 21, 17, 'sum', 11, 'like'],
 ['291', 'to', 'mark', 22, 17, 'get', 23, 'to'],
 ['292', 'get', 'xcomp', 23, 17, 'like', 21, 'get'],
 ['293', 'more', 'dobj', 24, 17, 'get', 23, 'more'],
 ['294', 'is', 'cop', 25, 17, 'kids', 27, 'be'],
 ['295', 'very', 'advmod', 26, 17, 'kids', 27, 'very'],
 ['296', 'kids', 'root', 27, 17, 'ROOT', 0, 'kid'],
 ['297', 'I.', 'compound', 28, 17, 'alright', 29, 'I.'],
 ['298', 'alright', 'nsubj', 29, 17, 'kids', 27, 'alright'],
 ['299', 'So', 'advmod', 1, 18, 'one', 3, 'So'],
 ['300', 'this', 'det', 2, 18, 'one', 3, 'this'],
 ['301', 'one', 'root', 3, 18, 'ROOT', 0, 'one'],
 ['302', 'here', 'advmod', 4, 18, 'right', 5, 'here'],
 ['303', 'right', 'dep', 5, 18, 'one', 3, 'right'],
 ['304', 'okay', 'dep', 1, 19, 'do', 3, 'okay'],
 ['305', 'I', 'nsubj', 2, 19, 'do', 3, 'I'],
 ['306', 'do', 'root', 3, 19, 'ROOT', 0, 'do'],
 ['307', "n't", 'neg', 4, 19, 'do', 3, "n't"],
 ['308', 'alright', 'dep', 1, 20, 'about', 15, 'alright'],
 ['309', 'my', 'nmod:poss', 2, 20, 'animal', 4, 'my'],
 ['310', 'favourite', 'amod', 3, 20, 'animal', 4, 'favourite'],
 ['311', 'animal', 'dobj', 4, 20, 'alright', 1, 'animal'],
 ['312', 'and', 'cc', 5, 20, 'alright', 1, 'and'],
 ['313', 'like', 'case', 6, 20, 'ah', 7, 'like'],
 ['314', 'ah', 'conj:and', 7, 20, 'alright', 1, 'ah'],
 ['315', 'ah', 'dep', 7, 20, 'about', 15, 'ah'],
 ['316', 'a', 'det', 8, 20, 'characters', 11, 'a'],
 ['317', 'L', 'compound', 9, 20, 'characters', 11, 'L'],
 ['318', 'I', 'compound', 10, 20, 'characters', 11, 'I'],
 ['319', 'characters', 'nsubj', 11, 20, 'about', 15, 'character'],
 ['320', 'are', 'cop', 14, 20, 'about', 15, 'be'],
 ['321', 'about', 'root', 15, 20, 'ROOT', 0, 'about'],
 ['322', 'right', 'nsubj', 1, 21, 'yeah', 2, 'right'],
 ['323', 'yeah', 'root', 2, 21, 'ROOT', 0, 'yeah'],
 ['324', 'alright', 'root', 1, 22, 'ROOT', 0, 'alright'],
 ['325', 'well', 'advmod', 2, 22, 'alright', 1, 'well'],
 ['326', 'basically', 'advmod', 3, 22, 'high', 4, 'basically'],
 ['327', 'high', 'amod', 4, 22, 'priority', 5, 'high'],
 ['328', 'priority', 'dobj', 5, 22, 'alright', 1, 'priority'],
 ['329', 'for', 'case', 6, 22, 'animal', 8, 'for'],
 ['330', 'any', 'det', 7, 22, 'animal', 8, 'any'],
 ['331', 'animal', 'nmod:for', 8, 22, 'alright', 1, 'animal'],
 ['332', 'for', 'mark', 9, 22, 'is', 11, 'for'],
 ['333', 'me', 'nsubj', 10, 22, 'is', 11, 'me'],
 ['334', 'is', 'advcl', 11, 22, 'alright', 1, 'be'],
 ['335', 'that', 'mark', 12, 22, 'willing', 15, 'that'],
 ['336', 'they', 'nsubj', 13, 22, 'willing', 15, 'they'],
 ['337', 'they', 'nsubj', 13, 22, 'take', 17, 'they'],
 ['338', 'be', 'cop', 14, 22, 'willing', 15, 'be'],
 ['339', 'willing', 'ccomp', 15, 22, 'is', 11, 'willing'],
 ['340', 'to', 'mark', 16, 22, 'take', 17, 'to'],
 ['341', 'take', 'xcomp', 17, 22, 'willing', 15, 'take'],
 ['342', 'a', 'det', 18, 22, 'lot', 19, 'a'],
 ['343', 'lot', 'dobj', 19, 22, 'take', 17, 'lot'],
 ['344', 'of', 'case', 20, 22, 'affection', 22, 'of'],
 ['345', 'physical', 'amod', 21, 22, 'affection', 22, 'physical'],
 ['346', 'affection', 'nmod:of', 22, 22, 'lot', 19, 'affection'],
 ['347', 'from', 'case', 23, 22, 'family', 25, 'from'],
 ['348', 'the', 'det', 24, 22, 'family', 25, 'the'],
 ['349', 'family', 'nmod:from', 25, 22, 'take', 17, 'family'],
 ['350', 'And', 'cc', 1, 23, 'yeah', 3, 'And'],
 ['351', 'just', 'advmod', 2, 23, 'yeah', 3, 'just'],
 ['352', 'yeah', 'root', 3, 23, 'ROOT', 0, 'yeah'],
 ['353', 'they', 'nsubj', 4, 23, 'have', 5, 'they'],
 ['354', 'have', 'ccomp', 5, 23, 'yeah', 3, 'have'],
 ['355', 'lots', 'dobj', 6, 23, 'have', 5, 'lot'],
 ['356', 'of', 'case', 7, 23, 'personality', 8, 'of'],
 ['357', 'personality', 'nmod:of', 8, 23, 'lots', 6, 'personality'],
 ['358', 'and', 'cc', 9, 23, 'yeah', 3, 'and'],
 ['359', 'this', 'dep', 10, 23, 'this', 11, 'this'],
 ['360', 'this', 'conj:and', 11, 23, 'yeah', 3, 'this'],
 ['361', 'and', 'cc', 12, 23, 'this', 11, 'and'],
 ['362', 'then', 'advmod', 13, 23, 'health', 16, 'then'],
 ['363', 'robust', 'amod', 14, 23, 'health', 16, 'robust'],
 ['364', 'good', 'amod', 15, 23, 'health', 16, 'good'],
 ['365', 'health', 'conj:and', 16, 23, 'yeah', 3, 'health'],
 ['366', 'health', 'conj:and', 16, 23, 'this', 11, 'health'],
 ['367', 'So', 'dep', 1, 24, 'I', 6, 'So'],
 ['368', 'this', 'nsubj', 2, 24, 'I', 6, 'this'],
 ['369', 'is', 'cop', 3, 24, 'I', 6, 'be'],
 ['370', 'the', 'det', 4, 24, 'I', 6, 'the'],
 ['371', 'bigger', 'amod', 5, 24, 'I', 6, 'big'],
 ['372', 'I', 'root', 6, 24, 'ROOT', 0, 'I'],
 ['373', 'families', 'nsubj', 7, 24, 'be', 8, 'family'],
 ['374', 'be', 'acl:relcl', 8, 24, 'I', 6, 'be'],
 ['375', 'right', 'amod', 1, 25, 'lovely', 2, 'right'],
 ['376', 'lovely', 'discourse', 2, 25, 'yeah', 3, 'lovely'],
 ['377', 'yeah', 'root', 3, 25, 'ROOT', 0, 'yeah'],
 ['378', 'no', 'neg', 1, 26, 'matter', 2, 'no'],
 ['379', 'matter', 'nsubj', 2, 26, 'monkey', 8, 'matter'],
 ['380', 'of', 'case', 3, 26, 'on', 4, 'of'],
 ['381', 'on', 'acl:of', 4, 26, 'matter', 2, 'on'],
 ['382', 'would', 'aux', 5, 26, 'monkey', 8, 'would'],
 ['383', 'be', 'cop', 6, 26, 'monkey', 8, 'be'],
 ['384', 'a', 'det', 7, 26, 'monkey', 8, 'a'],
 ['385', 'monkey', 'root', 8, 26, 'ROOT', 0, 'monkey'],
 ['386', 'I', 'root', 1, 27, 'ROOT', 0, 'I'],
 ['387', 'I', 'dep', 2, 27, 'I', 1, 'I'],
 ['388', 'the', 'dep', 3, 27, 'I', 2, 'the'],
 ['389', 'smoke', 'root', 1, 28, 'ROOT', 0, 'smoke'],
 ['390', 'even', 'advmod', 2, 28, 'na', 11, 'even'],
 ['391', 'for', 'mark', 3, 28, 'na', 11, 'for'],
 ['392', 'a', 'compound', 4, 28, 'one', 7, 'a'],
 ['393', 'and', 'cc', 5, 28, 'a', 4, 'and'],
 ['394', 'then', 'advmod', 6, 28, 'a', 4, 'then'],
 ['395', 'one', 'nsubj', 7, 28, 'na', 11, 'one'],
 ['396', 'for', 'case', 8, 28, 'gon', 10, 'for'],
 ['397', 'the', 'det', 9, 28, 'gon', 10, 'the'],
 ['398', 'gon', 'nmod:for', 10, 28, 'one', 7, 'gon'],
 ['399', 'na', 'advcl', 11, 28, 'smoke', 1, 'na'],
 ['400', 'real', 'advmod', 12, 28, 'no', 13, 'real'],
 ['401', 'no', 'advmod', 13, 28, 'na', 11, 'no'],
 ['402', 'and', 'cc', 14, 28, 'na', 11, 'and'],
 ['403', 'when', 'advcl', 15, 28, 'smoke', 1, 'when'],
 ['404', 'when', 'conj:and', 15, 28, 'na', 11, 'when'],
 ['405', 'the', 'det', 16, 28, 'other', 17, 'the'],
 ['406', 'other', 'dep', 17, 28, 'when', 15, 'other'],
 ['407', 'with', 'case', 18, 28, 'them', 19, 'with'],
 ['408', 'them', 'nmod:with', 19, 28, 'other', 17, 'them'],
 ['409', 'right', 'advmod', 1, 29, 'here', 2, 'right'],
 ['410', 'here', 'advmod', 2, 29, 'take', 5, 'here'],
 ['411', 'you', 'nsubj', 3, 29, 'take', 5, 'you'],
 ['412', 'can', 'aux', 4, 29, 'take', 5, 'can'],
 ['413', 'take', 'root', 5, 29, 'ROOT', 0, 'take'],
 ['414', 'as', 'mark', 6, 29, 'feel', 28, 'a'],
 ['415', 'long', 'advmod', 7, 29, 'today', 25, 'long'],
 ['416', 'over', 'mark', 8, 29, 'today', 25, 'over'],
 ['417', 'this', 'nsubj', 9, 29, 'today', 25, 'this'],
 ['418', 'is', 'cop', 10, 29, 'today', 25, 'be'],
 ['419', 'a', 'det', 11, 29, 'today', 25, 'a'],
 ['420', 'like', 'dep', 12, 29, 'today', 25, 'like'],
 ['421', 'because', 'mark', 13, 29, 'got', 17, 'because'],
 ['422', 'we', 'nsubj', 14, 29, 'got', 17, 'we'],
 ['423', 'have', 'aux', 15, 29, 'got', 17, 'have'],
 ['424', "n't", 'neg', 16, 29, 'got', 17, "n't"],
 ['425', 'got', 'advcl', 17, 29, 'like', 12, 'get'],
 ['426', 'an', 'det', 18, 29, 'lot', 20, 'an'],
 ['427', 'awful', 'amod', 19, 29, 'lot', 20, 'awful'],
 ['428', 'lot', 'dobj', 20, 29, 'got', 17, 'lot'],
 ['429', 'there', 'expl', 21, 29, "'s", 22, 'there'],
 ['430', "'s", 'acl:relcl', 22, 29, 'lot', 20, "'s"],
 ['431', 'of', 'case', 23, 29, 'day', 24, 'of'],
 ['432', 'day', 'nmod:of', 24, 29, "'s", 22, 'day'],
 ['433', 'today', 'csubj', 25, 29, 'feel', 28, 'today'],
 ['434', 'do', 'aux', 26, 29, 'feel', 28, 'do'],
 ['435', "n't", 'neg', 27, 29, 'feel', 28, "n't"],
 ['436', 'feel', 'advcl', 28, 29, 'take', 5, 'feel'],
 ['437', 'like', 'case', 29, 29, 'interaction', 31, 'like'],
 ['438', 'your', 'nmod:poss', 30, 29, 'interaction', 31, 'your'],
 ['439', 'interaction', 'nmod:like', 31, 29, 'feel', 28, 'interaction'],
 ['440', 'anyway', 'advmod', 32, 29, 'feel', 28, 'anyway'],
 ['441', 'actually', 'advmod', 1, 30, 'told', 2, 'actually'],
 ['442', 'told', 'root', 2, 30, 'ROOT', 0, 'told'],
 ['443', 'me', 'nsubj', 3, 30, 'told', 2, 'me'],
 ['444', 'a', 'det', 4, 30, 'lot', 5, 'a'],
 ['445', 'lot', 'nmod:npmod', 5, 30, 'more', 6, 'lot'],
 ['446', 'more', 'advmod', 6, 30, 'eagles', 9, 'more'],
 ['447', 'about', 'case', 7, 30, 'eagles', 9, 'about'],
 ['448', 'the', 'det', 8, 30, 'eagles', 9, 'the'],
 ['449', 'eagles', 'nmod:about', 9, 30, 'told', 2, 'eagle'],
 ['450', 'it', 'nsubj', 10, 30, "'s", 11, 'it'],
 ['451', "'s", 'acl:relcl', 11, 30, 'eagles', 9, "'s"],
 ['452', 'so', 'advmod', 1, 31, 'much', 2, 'so'],
 ['453', 'much', 'csubj', 2, 31, 'gon', 17, 'much'],
 ['454', 'or', 'cc', 3, 31, 'much', 2, 'or'],
 ['455', 'what', 'nsubj', 4, 31, 'have', 5, 'what'],
 ['456', 'what', 'nsubj', 4, 31, 'get', 7, 'what'],
 ['457', 'have', 'conj:or', 5, 31, 'much', 2, 'have'],
 ['458', 'have', 'csubj', 5, 31, 'gon', 17, 'have'],
 ['459', 'to', 'mark', 6, 31, 'get', 7, 'to'],
 ['460', 'get', 'xcomp', 7, 31, 'have', 5, 'get'],
 ['461', 'yeah', 'dobj', 8, 31, 'get', 7, 'yeah'],
 ['462', 'because', 'mark', 9, 31, 'know', 13, 'because'],
 ['463', 'I', 'nsubj', 10, 31, 'know', 13, 'I'],
 ['464', 'do', 'aux', 11, 31, 'know', 13, 'do'],
 ['465', "n't", 'neg', 12, 31, 'know', 13, "n't"],
 ['466', 'know', 'advcl', 13, 31, 'get', 7, 'know'],
 ['467', 'mine', 'dobj', 14, 31, 'know', 13, 'mine'],
 ['468', 'is', 'aux', 15, 31, 'gon', 17, 'be'],
 ['469', "n't", 'neg', 16, 31, 'gon', 17, "n't"],
 ['470', 'gon', 'root', 17, 31, 'ROOT', 0, 'gon'],
 ['471', 'na', 'mark', 18, 31, 'think', 19, 'na'],
 ['472', 'think', 'xcomp', 19, 31, 'gon', 17, 'think'],
 ['473', 'on', 'case', 20, 31, 'spot', 22, 'on'],
 ['474', 'the', 'det', 21, 31, 'spot', 22, 'the'],
 ['475', 'spot', 'nmod:on', 22, 31, 'think', 19, 'spot'],
 ['476', 'oh', 'root', 2, 32, 'ROOT', 0, 'oh'],
 ['477', 'is', 'cop', 1, 33, 'yeah', 5, 'be'],
 ['478', 'that', 'nsubj', 2, 33, 'yeah', 5, 'that'],
 ['479', 'a', 'det', 3, 33, 'whale', 4, 'a'],
 ['480', 'whale', 'nsubj', 4, 33, 'yeah', 5, 'whale'],
 ['481', 'yeah', 'dep', 5, 33, 'animal', 41, 'yeah'],
 ['482', 'yeah', 'amod', 6, 33, 'I.', 7, 'yeah'],
 ['483', 'I.', 'dobj', 7, 33, 'yeah', 5, 'I.'],
 ['484', 'well', 'advmod', 8, 33, 'yeah', 5, 'well'],
 ['485', 'like', 'mark', 9, 33, 'know', 13, 'like'],
 ['486', 'I', 'nsubj', 10, 33, 'know', 13, 'I'],
 ['487', 'do', 'aux', 11, 33, 'know', 13, 'do'],
 ['488', "n't", 'neg', 12, 33, 'know', 13, "n't"],
 ['489', 'know', 'advcl', 13, 33, 'yeah', 5, 'know'],
 ['490', 'it', 'nsubj', 14, 33, "'s", 15, 'it'],
 ['491', "'s", 'ccomp', 15, 33, 'know', 13, "'s"],
 ['492', 'just', 'advmod', 16, 33, 'think', 21, 'just'],
 ['493', 'for', 'mark', 17, 33, 'think', 21, 'for'],
 ['494', 'am', 'advmod', 18, 33, 'I', 19, 'be'],
 ['495', 'I', 'nsubj', 19, 33, 'think', 21, 'I'],
 ['496', 'can', 'aux', 20, 33, 'think', 21, 'can'],
 ['497', 'think', 'advcl', 21, 33, "'s", 15, 'think'],
 ['498', 'of', 'case', 22, 33, 'top', 24, 'of'],
 ['499', 'the', 'det', 23, 33, 'top', 24, 'the'],
 ['500', 'top', 'nmod:of', 24, 33, 'think', 21, 'top'],
 ['501', 'of', 'case', 25, 33, 'figure', 28, 'of'],
 ['502', 'my', 'nmod:poss', 26, 33, 'figure', 28, 'my'],
 ['503', 'head', 'compound', 27, 33, 'figure', 28, 'head'],
 ['504', 'figure', 'nmod:of', 28, 33, 'top', 24, 'figure'],
 ['505', 'is', 'cop', 29, 33, 'this', 31, 'be'],
 ['506', 'in', 'case', 30, 33, 'this', 31, 'in'],
 ['507', 'this', 'acl:relcl', 31, 33, 'figure', 28, 'this'],
 ['508', "'cause", 'advmod', 33, 33, 'yeah', 5, "'cause"],
 ['509', 'I', 'nsubj', 35, 33, 'animal', 41, 'I'],
 ['510', "'m", 'cop', 36, 33, 'animal', 41, "'m"],
 ['511', 'allergic', 'advmod', 37, 33, 'animal', 41, 'allergic'],
 ['512', 'to', 'case', 38, 33, 'animals', 40, 'to'],
 ['513', 'most', 'amod', 39, 33, 'animals', 40, 'most'],
 ['514', 'animals', 'nmod:to', 40, 33, 'allergic', 37, 'animal'],
 ['515', 'animal', 'root', 41, 33, 'ROOT', 0, 'animal'],
 ['516', 'for', 'mark', 42, 33, 'choice', 48, 'for'],
 ['517', 'so', 'mark', 43, 33, 'choice', 48, 'so'],
 ['518', 'fish', 'nsubj', 44, 33, 'choice', 48, 'fish'],
 ['519', 'was', 'cop', 45, 33, 'choice', 48, 'be'],
 ['520', 'a', 'det', 46, 33, 'choice', 48, 'a'],
 ['521', 'natural', 'amod', 47, 33, 'choice', 48, 'natural'],
 ['522', 'choice', 'advcl', 48, 33, 'animal', 41, 'choice'],
 ['523', 'it', 'nsubj', 49, 33, 'becoming', 51, 'it'],
 ['524', 'was', 'aux', 50, 33, 'becoming', 51, 'be'],
 ['525', 'becoming', 'acl:relcl', 51, 33, 'choice', 48, 'become'],
 ['526', 'ill', 'xcomp', 52, 33, 'becoming', 51, 'ill'],
 ['527', 'I', 'nsubj', 1, 34, 'mean', 2, 'I'],
 ['528', 'mean', 'root', 2, 34, 'ROOT', 0, 'mean'],
 ['529', 'so', 'advmod', 3, 34, 'mean', 2, 'so'],
 ['530', 'I', 'dobj', 4, 34, 'mean', 2, 'I'],
 ['531', 'for', 'case', 5, 34, 'mess', 7, 'for'],
 ['532', 'a', 'det', 6, 34, 'mess', 7, 'a'],
 ['533', 'mess', 'nmod:for', 7, 34, 'mean', 2, 'mess'],
 ['534', 'and', 'cc', 1, 35, 'mild', 2, 'and'],
 ['535', 'mild', 'root', 2, 35, 'ROOT', 0, 'mild'],
 ['536', 'an', 'det', 3, 35, 'interesting', 4, 'an'],
 ['537', 'interesting', 'dobj', 4, 35, 'mild', 2, 'interest'],
 ['538', 'okay', 'root', 1, 36, 'ROOT', 0, 'okay'],
 ['539', 'I', 'nsubj', 2, 36, 'interaction', 6, 'I'],
 ['540', 'still', 'advmod', 3, 36, 'interaction', 6, 'still'],
 ['541', 'did', 'aux', 4, 36, 'interaction', 6, 'do'],
 ['542', "n't", 'neg', 5, 36, 'interaction', 6, "n't"],
 ['543', 'interaction', 'dep', 6, 36, 'okay', 1, 'interaction'],
 ['544', 'with', 'nmod', 7, 36, 'interaction', 6, 'with'],
 ['545', 'superb', 'amod', 1, 37, 'sketch', 2, 'superb'],
 ['546', 'sketch', 'nsubj', 2, 37, 'yeah', 6, 'sketch'],
 ['547', 'by', 'case', 3, 37, 'way', 5, 'by'],
 ['548', 'the', 'det', 4, 37, 'way', 5, 'the'],
 ['549', 'way', 'nmod:by', 5, 37, 'sketch', 2, 'way'],
 ['550', 'yeah', 'root', 6, 37, 'ROOT', 0, 'yeah'],
 ['551', 'okay', 'xcomp', 7, 37, 'yeah', 6, 'okay'],
 ['552', 'I', 'nsubj', 8, 37, 'was', 9, 'I'],
 ['553', 'was', 'ccomp', 9, 37, 'okay', 7, 'be'],
 ['554', 'gon', 'root', 1, 38, 'ROOT', 0, 'gon'],
 ['555', 'na', 'mark', 2, 38, 'choose', 3, 'na'],
 ['556', 'choose', 'xcomp', 3, 38, 'gon', 1, 'choose'],
 ['557', 'a', 'det', 4, 38, 'dog', 5, 'a'],
 ['558', 'dog', 'dobj', 5, 38, 'choose', 3, 'dog'],
 ['559', 'as', 'advmod', 6, 38, 'choose', 3, 'a'],
 ['560', 'well', 'mwe', 7, 38, 'as', 6, 'well'],
 ['561', 'But', 'cc', 1, 39, 'animal', 12, 'But'],
 ['562', 'I', 'nsubj', 2, 39, 'animal', 12, 'I'],
 ['563', 'just', 'advmod', 3, 39, 'animal', 12, 'just'],
 ['564', 'a', 'det', 4, 39, 'kind', 6, 'a'],
 ['565', 'different', 'amod', 5, 39, 'kind', 6, 'different'],
 ['566', 'kind', 'nsubj', 6, 39, 'animal', 12, 'kind'],
 ['567', 'of', 'case', 7, 39, 'dogs', 8, 'of'],
 ['568', 'dogs', 'nmod:of', 8, 39, 'kind', 6, 'dog'],
 ['569', 'are', 'cop', 9, 39, 'animal', 12, 'be'],
 ['570', 'my', 'nmod:poss', 10, 39, 'animal', 12, 'my'],
 ['571', 'favourite', 'amod', 11, 39, 'animal', 12, 'favourite'],
 ['572', 'animal', 'root', 12, 39, 'ROOT', 0, 'animal'],
 ['573', 'animal', 'nsubj', 12, 39, 'look', 23, 'animal'],
 ['574', 'is', 'cop', 13, 39, 'dog', 15, 'be'],
 ['575', 'my', 'nmod:poss', 14, 39, 'dog', 15, 'my'],
 ['576', 'dog', 'acl:relcl', 15, 39, 'animal', 12, 'dog'],
 ['577', 'dog', 'nsubj', 15, 39, 'look', 23, 'dog'],
 ['578', 'at', 'case', 16, 39, 'I', 18, 'at'],
 ['579', 'home', 'compound', 17, 39, 'I', 18, 'home'],
 ['580', 'I', 'nmod:at', 18, 39, 'dog', 15, 'I'],
 ['581', 'that', 'ref', 19, 39, 'animal', 12, 'that'],
 ['582', 'that', 'ref', 19, 39, 'dog', 15, 'that'],
 ['583', 'does', 'aux', 20, 39, 'look', 23, 'do'],
 ['584', "n't", 'neg', 21, 39, 'look', 23, "n't"],
 ['585', 'really', 'advmod', 22, 39, 'look', 23, 'really'],
 ['586', 'look', 'acl:relcl', 23, 39, 'dog', 15, 'look'],
 ['587', 'like', 'mark', 24, 39, 'looks', 26, 'like'],
 ['588', 'actually', 'advmod', 25, 39, 'looks', 26, 'actually'],
 ['589', 'looks', 'advcl', 26, 39, 'look', 23, 'look'],
 ['590', 'more', 'advmod', 27, 39, 'looks', 26, 'more'],
 ['591', 'like', 'case', 28, 39, 'pig', 30, 'like'],
 ['592', 'a', 'det', 29, 39, 'pig', 30, 'a'],
 ['593', 'pig', 'nmod:like', 30, 39, 'more', 27, 'pig'],
 ['594', 'actually', 'advmod', 31, 39, 'pig', 30, 'actually'],
 ['595', 'oh', 'nmod:npmod', 32, 39, 'right', 33, 'oh'],
 ['596', 'right', 'advmod', 33, 39, 'pig', 30, 'right'],
 ['597', 'see', 'root', 1, 40, 'ROOT', 0, 'see'],
 ['598', 'a', 'det', 1, 41, 'dog', 2, 'a'],
 ['599', 'dog', 'nsubj', 2, 41, 'yeah', 5, 'dog'],
 ['600', 'in', 'case', 3, 41, 'there', 4, 'in'],
 ['601', 'there', 'nmod:in', 4, 41, 'dog', 2, 'there'],
 ['602', 'yeah', 'root', 5, 41, 'ROOT', 0, 'yeah'],
 ['603', 'yeah', 'dobj', 6, 41, 'yeah', 5, 'yeah'],
 ['604', 'yeah', 'nsubj', 6, 41, 'idea', 11, 'yeah'],
 ['605', 'that', 'ref', 7, 41, 'yeah', 6, 'that'],
 ['606', "'s", 'cop', 8, 41, 'idea', 11, "'s"],
 ['607', 'a', 'det', 9, 41, 'idea', 11, 'a'],
 ['608', 'good', 'amod', 10, 41, 'idea', 11, 'good'],
 ['609', 'idea', 'acl:relcl', 11, 41, 'yeah', 6, 'idea'],
 ['610', 'no', 'neg', 12, 41, 'serious', 13, 'no'],
 ['611', 'serious', 'amod', 13, 41, 'idea', 11, 'serious'],
 ['612', 'too', 'advmod', 14, 41, 'idea', 11, 'too'],
 ['613', 'I', 'dep', 1, 42, 'mixture', 11, 'I'],
 ['614', 'what', 'det', 2, 42, 'kind', 3, 'what'],
 ['615', 'kind', 'dep', 3, 42, 'I', 1, 'kind'],
 ['616', 'of', 'case', 4, 42, "'em", 6, 'of'],
 ['617', "'em", 'nmod:of', 6, 42, 'I', 1, "'em"],
 ['618', 'he', 'nsubj', 8, 42, 'mixture', 11, 'he'],
 ['619', "'s", 'cop', 9, 42, 'mixture', 11, "'s"],
 ['620', 'a', 'det', 10, 42, 'mixture', 11, 'a'],
 ['621', 'mixture', 'root', 11, 42, 'ROOT', 0, 'mixture'],
 ['622', 'of', 'case', 12, 42, 'things', 15, 'of'],
 ['623', 'of', 'case', 13, 42, 'things', 15, 'of'],
 ['624', 'various', 'amod', 14, 42, 'things', 15, 'various'],
 ['625', 'things', 'acl:of', 15, 42, 'mixture', 11, 'thing'],
 ['626', 'Um', 'nsubj', 1, 43, 'like', 5, 'Um'],
 ['627', 'and', 'cc', 2, 43, 'Um', 1, 'and'],
 ['628', 'what', 'det', 3, 43, 'I', 4, 'what'],
 ['629', 'I', 'conj:and', 4, 43, 'Um', 1, 'I'],
 ['630', 'I', 'nsubj', 4, 43, 'like', 5, 'I'],
 ['631', 'like', 'root', 5, 43, 'ROOT', 0, 'like'],
 ['632', 'about', 'case', 6, 43, 'it', 7, 'about'],
 ['633', 'it', 'nmod:about', 7, 43, 'like', 5, 'it'],
 ['634', 'Um', 'root', 1, 44, 'ROOT', 0, 'Um'],
 ['635', 'that', 'mark', 2, 44, 'death', 7, 'that'],
 ['636', "'s", 'cop', 3, 44, 'death', 7, "'s"],
 ['637', 'just', 'advmod', 4, 44, 'death', 7, 'just'],
 ['638', 'as', 'case', 5, 44, 'death', 7, 'a'],
 ['639', 'the', 'det', 6, 44, 'death', 7, 'the'],
 ['640', 'death', 'ccomp', 7, 44, 'Um', 1, 'death'],
 ['641', 'that', 'mark', 8, 44, 'why', 11, 'that'],
 ['642', 'his', 'nmod:poss', 9, 44, 'tail', 10, 'his'],
 ['643', 'tail', 'nsubj', 10, 44, 'why', 11, 'tail'],
 ['644', 'why', 'ccomp', 11, 44, 'death', 7, 'why'],
 ['645', 'And', 'cc', 1, 45, 'friendly', 3, 'And'],
 ['646', 'very', 'advmod', 2, 45, 'friendly', 3, 'very'],
 ['647', 'friendly', 'root', 3, 45, 'ROOT', 0, 'friendly'],
 ['648', 'and', 'cc', 4, 45, 'friendly', 3, 'and'],
 ['649', 'teary', 'conj:and', 5, 45, 'friendly', 3, 'teary'],
 ['650', 'and', 'cc', 6, 45, 'friendly', 3, 'and'],
 ['651', 'always', 'advmod', 7, 45, 'pleased', 8, 'always'],
 ['652', 'pleased', 'conj:and', 8, 45, 'friendly', 3, 'pleased'],
 ['653', 'to', 'mark', 9, 45, 'see', 10, 'to'],
 ['654', 'see', 'xcomp', 10, 45, 'pleased', 8, 'see'],
 ['655', 'you', 'dobj', 11, 45, 'see', 10, 'you'],
 ['656', 'and', 'cc', 12, 45, 'pleased', 8, 'and'],
 ['657', 'of', 'mwe', 15, 45, 'kind', 14, 'of'],
 ['658', 'and', 'cc', 17, 45, 'friendly', 3, 'and'],
 ['659', 'and', 'cc', 18, 45, 'we', 23, 'and'],
 ['660', 'it', 'nsubj', 19, 45, 'we', 23, 'it'],
 ['661', "'s", 'cop', 20, 45, 'we', 23, "'s"],
 ['662', 'quite', 'advmod', 21, 45, 'quite', 22, 'quite'],
 ['663', 'quite', 'advmod', 22, 45, 'we', 23, 'quite'],
 ['664', 'we', 'conj:and', 23, 45, 'friendly', 3, 'we'],
 ['665', 'as', 'advmod', 24, 45, 'know', 28, 'a'],
 ['666', 'well', 'mwe', 25, 45, 'as', 24, 'well'],
 ['667', 'so', 'mark', 26, 45, 'know', 28, 'so'],
 ['668', 'you', 'nsubj', 27, 45, 'know', 28, 'you'],
 ['669', 'know', 'advcl', 28, 45, 'we', 23, 'know'],
 ['670', 'you', 'nsubj', 29, 45, 'take', 33, 'you'],
 ['671', 'can', 'aux', 30, 45, 'take', 33, 'can'],
 ['672', 'does', 'aux', 31, 45, 'take', 33, 'do'],
 ['673', "n't", 'neg', 32, 45, 'take', 33, "n't"],
 ['674', 'take', 'ccomp', 33, 45, 'know', 28, 'take'],
 ['675', 'too', 'advmod', 35, 45, 'much', 36, 'too'],
 ['676', 'much', 'amod', 36, 45, 'space', 37, 'much'],
 ['677', 'space', 'dobj', 37, 45, 'take', 33, 'space'],
 ['678', 'Um', 'root', 1, 46, 'ROOT', 0, 'Um'],
 ['679', 'the', 'det', 2, 46, 'thing', 3, 'the'],
 ['680', 'thing', 'nsubj', 3, 46, 'does', 4, 'thing'],
 ['681', 'does', 'ccomp', 4, 46, 'Um', 1, 'do'],
 ['682', 'a', 'det', 5, 46, 'thing', 7, 'a'],
 ['683', 'funny', 'amod', 6, 46, 'thing', 7, 'funny'],
 ['684', 'thing', 'nsubj', 7, 46, 'reaches', 8, 'thing'],
 ['685', 'reaches', 'ccomp', 8, 46, 'does', 4, 'reach'],
 ['686', 'detail', 'dobj', 9, 46, 'reaches', 8, 'detail'],
 ['687', 'That', 'nsubj', 1, 47, 'yeah', 5, 'That'],
 ['688', "'s", 'cop', 2, 47, 'yeah', 5, "'s"],
 ['689', 'quite', 'advmod', 3, 47, 'amusing', 4, 'quite'],
 ['690', 'amusing', 'amod', 4, 47, 'yeah', 5, 'amuse'],
 ['691', 'yeah', 'root', 5, 47, 'ROOT', 0, 'yeah'],
 ['692', 'where', 'advmod', 6, 47, 'genitalia', 10, 'where'],
 ['693', 'this', 'dep', 7, 47, 'genitalia', 10, 'this'],
 ['694', 'his', 'nmod:poss', 8, 47, 'genitalia', 10, 'his'],
 ['695', 'own', 'amod', 9, 47, 'genitalia', 10, 'own'],
 ['696', 'genitalia', 'acl:relcl', 10, 47, 'yeah', 5, 'genitalia'],
 ['697', 'thing', 'root', 1, 48, 'ROOT', 0, 'thing'],
 ['698', 'I', 'nsubj', 1, 49, 'think', 2, 'I'],
 ['699', 'think', 'root', 2, 49, 'ROOT', 0, 'think'],
 ['700', 'anything', 'dobj', 3, 49, 'think', 2, 'anything'],
 ['701', 'and', 'cc', 4, 49, 'think', 2, 'and'],
 ['702', 'it', 'nsubj', 5, 49, 'had', 8, 'it'],
 ['703', 'has', 'aux', 6, 49, 'had', 8, 'have'],
 ['704', 'actually', 'advmod', 7, 49, 'had', 8, 'actually'],
 ['705', 'had', 'conj:and', 8, 49, 'think', 2, 'have'],
 ['706', 'is', 'cop', 9, 49, 'I', 11, 'be'],
 ['707', 'dinner', 'compound', 10, 49, 'I', 11, 'dinner'],
 ['708', 'I', 'ccomp', 11, 49, 'had', 8, 'I'],
 ['709', 'and', 'cc', 12, 49, 'I', 11, 'and'],
 ['710', 'it', 'ccomp', 13, 49, 'had', 8, 'it'],
 ['711', 'it', 'conj:and', 13, 49, 'I', 11, 'it'],
 ['712', 'just', 'advmod', 14, 49, 'get', 20, 'just'],
 ['713', 'all', 'nsubj', 15, 49, 'get', 20, 'all'],
 ['714', 'all', 'nsubj', 15, 49, 'start', 23, 'all'],
 ['715', 'of', 'case', 16, 49, 'sudden', 18, 'of'],
 ['716', 'a', 'det', 17, 49, 'sudden', 18, 'a'],
 ['717', 'sudden', 'nmod:of', 18, 49, 'all', 15, 'sudden'],
 ['718', 'is', 'aux', 19, 49, 'get', 20, 'be'],
 ['719', 'get', 'ccomp', 20, 49, 'had', 8, 'get'],
 ['720', 'and', 'cc', 22, 49, 'get', 20, 'and'],
 ['721', 'start', 'ccomp', 23, 49, 'had', 8, 'start'],
 ['722', 'start', 'conj:and', 23, 49, 'get', 20, 'start'],
 ['723', 'chasing', 'xcomp', 24, 49, 'start', 23, 'chase'],
 ['724', 'his', 'nmod:poss', 25, 49, 'pipe', 27, 'his'],
 ['725', 'tail', 'amod', 26, 49, 'pipe', 27, 'tail'],
 ['726', 'pipe', 'dobj', 27, 49, 'chasing', 24, 'pipe'],
 ['727', 'it', 'dobj', 28, 49, 'get', 20, 'it'],
 ['728', 'around', 'case', 29, 49, 'yeah', 33, 'around'],
 ['729', 'the', 'det', 30, 49, 'yeah', 33, 'the'],
 ['730', 'living', 'amod', 31, 49, 'yeah', 33, 'living'],
 ['731', 'room', 'compound', 32, 49, 'yeah', 33, 'room'],
 ['732', 'yeah', 'nmod:around', 33, 49, 'get', 20, 'yeah'],
 ['733', 'only', 'advmod', 1, 50, 'when', 2, 'only'],
 ['734', 'when', 'advmod', 2, 50, 'use', 3, 'when'],
 ['735', 'use', 'advcl', 3, 50, 'got', 6, 'use'],
 ['736', 'little', 'advmod', 4, 50, 'use', 3, 'little'],
 ['737', 'he', 'nsubj', 5, 50, 'got', 6, 'he'],
 ['738', 'got', 'root', 6, 50, 'ROOT', 0, 'get'],
 ['739', 'lots', 'dobj', 7, 50, 'got', 6, 'lot'],
 ['740', 'of', 'case', 8, 50, 'attention', 9, 'of'],
 ['741', 'attention', 'nmod:of', 9, 50, 'lots', 7, 'attention'],
 ['742', 'for', 'mark', 10, 50, 'doing', 11, 'for'],
 ['743', 'doing', 'advcl', 11, 50, 'got', 6, 'do'],
 ['744', 'it', 'dobj', 12, 50, 'doing', 11, 'it'],
 ['745', 'and', 'cc', 13, 50, 'got', 6, 'and'],
 ['746', 'I', 'nsubj', 14, 50, 'conditioned', 15, 'I'],
 ['747', 'conditioned', 'conj:and', 15, 50, 'got', 6, 'condition'],
 ['748', 'maybe', 'advmod', 1, 51, 'yeah', 2, 'maybe'],
 ['749', 'yeah', 'root', 2, 51, 'ROOT', 0, 'yeah'],
 ['750', 'that', 'dobj', 3, 51, 'yeah', 2, 'that'],
 ['751', 'where', 'advmod', 4, 51, 'did', 5, 'where'],
 ['752', 'did', 'advcl', 5, 51, 'yeah', 2, 'do'],
 ['753', 'you', 'nsubj', 6, 51, 'find', 7, 'you'],
 ['754', 'find', 'ccomp', 7, 51, 'did', 5, 'find'],
 ['755', 'this', 'nsubj', 8, 51, 'Reading', 13, 'this'],
 ['756', 'just', 'advmod', 9, 51, 'here', 11, 'just'],
 ['757', 'down', 'advmod', 10, 51, 'here', 11, 'down'],
 ['758', 'here', 'advmod', 11, 51, 'okay', 12, 'here'],
 ['759', 'okay', 'dep', 12, 51, 'Reading', 13, 'okay'],
 ['760', 'Reading', 'xcomp', 13, 51, 'find', 7, 'Reading'],
 ['761', 'next', 'dobj', 14, 51, 'Reading', 13, 'next'],
 ['762', 'Um', 'compound', 1, 52, 'okay', 2, 'Um'],
 ['763', 'okay', 'nsubj', 2, 52, 'mean', 3, 'okay'],
 ['764', 'mean', 'root', 3, 52, 'ROOT', 0, 'mean'],
 ['765', 'I', 'nsubj', 4, 52, 'need', 5, 'I'],
 ['766', 'I', 'nsubj', 4, 52, 'discuss', 7, 'I'],
 ['767', 'need', 'ccomp', 5, 52, 'mean', 3, 'need'],
 ['768', 'to', 'mark', 6, 52, 'discuss', 7, 'to'],
 ['769', 'discuss', 'xcomp', 7, 52, 'need', 5, 'discus'],
 ['770', 'the', 'det', 8, 52, 'fine', 10, 'the'],
 ['771', 'project', 'compound', 9, 52, 'fine', 10, 'project'],
 ['772', 'fine', 'dobj', 10, 52, 'discuss', 7, 'fine'],
 ['773', 'now', 'advmod', 11, 52, 'discuss', 7, 'now'],
 ['774', 'so', 'mark', 12, 52, 'gon', 19, 'so'],
 ['775', 'according', 'case', 13, 52, 'brief', 16, 'accord'],
 ['776', 'to', 'mwe', 14, 52, 'according', 13, 'to'],
 ['777', 'the', 'det', 15, 52, 'brief', 16, 'the'],
 ['778', 'we', 'nsubj', 17, 52, 'gon', 19, 'we'],
 ['779', 'we', 'nsubj', 17, 52, 'selling', 22, 'we'],
 ['780', "'re", 'aux', 18, 52, 'gon', 19, "'re"],
 ['781', 'gon', 'advcl', 19, 52, 'discuss', 7, 'gon'],
 ['782', 'na', 'mark', 20, 52, 'selling', 22, 'na'],
 ['783', 'be', 'aux', 21, 52, 'selling', 22, 'be'],
 ['784', 'selling', 'xcomp', 22, 52, 'gon', 19, 'sell'],
 ['785', 'this', 'det', 23, 52, 'control', 25, 'this'],
 ['786', 'remote', 'amod', 24, 52, 'control', 25, 'remote'],
 ['787', 'control', 'dobj', 25, 52, 'selling', 22, 'control'],
 ['788', 'for', 'case', 26, 52, 'euro', 29, 'for'],
 ['789', 'twenty', 'nummod', 27, 52, 'euro', 29, 'twenty'],
 ['790', 'five', 'nummod', 28, 52, 'euro', 29, 'five'],
 ['791', 'euro', 'nmod:for', 29, 52, 'control', 25, 'euro'],
 ['792', 'Um', 'nsubj', 1, 53, 'aiming', 5, 'Um'],
 ['793', 'Um', 'nsubj', 1, 53, 'make', 7, 'Um'],
 ['794', 'and', 'cc', 2, 53, 'Um', 1, 'and'],
 ['795', 'we', 'conj:and', 3, 53, 'Um', 1, 'we'],
 ['796', 'we', 'nsubj', 3, 53, 'aiming', 5, 'we'],
 ['797', 'we', 'nsubj', 3, 53, 'make', 7, 'we'],
 ['798', "'re", 'aux', 4, 53, 'aiming', 5, "'re"],
 ['799', 'aiming', 'root', 5, 53, 'ROOT', 0, 'aim'],
 ['800', 'to', 'mark', 6, 53, 'make', 7, 'to'],
 ['801', 'make', 'xcomp', 7, 53, 'aiming', 5, 'make'],
 ['802', 'fifty', 'advmod', 8, 53, 'make', 7, 'fifty'],
 ['803', 'million', 'compound', 9, 53, 'euro', 10, 'million'],
 ['804', 'euro', 'dobj', 10, 53, 'make', 7, 'euro'],
 ['805', 'Um', 'root', 1, 54, 'ROOT', 0, 'Um'],
 ['806', 'so', 'mark', 2, 54, 'gon', 5, 'so'],
 ['807', 'we', 'nsubj', 3, 54, 'gon', 5, 'we'],
 ['808', 'we', 'nsubj', 3, 54, 'selling', 8, 'we'],
 ['809', "'re", 'aux', 4, 54, 'gon', 5, "'re"],
 ['810', 'gon', 'advcl', 5, 54, 'Um', 1, 'gon'],
 ['811', 'na', 'mark', 6, 54, 'selling', 8, 'na'],
 ['812', 'be', 'aux', 7, 54, 'selling', 8, 'be'],
 ['813', 'selling', 'xcomp', 8, 54, 'gon', 5, 'sell'],
 ['814', 'this', 'dobj', 9, 54, 'selling', 8, 'this'],
 ['815', 'on', 'case', 10, 54, 'scale', 13, 'on'],
 ['816', 'an', 'det', 11, 54, 'scale', 13, 'an'],
 ['817', 'scale', 'nmod:on', 13, 54, 'this', 9, 'scale'],
 ['818', 'And', 'cc', 1, 55, 'do', 3, 'And'],
 ['819', 'we', 'nsubj', 2, 55, 'do', 3, 'we'],
 ['820', 'do', 'root', 3, 55, 'ROOT', 0, 'do'],
 ['821', 'want', 'ccomp', 4, 55, 'do', 3, 'want'],
 ['822', 'to', 'mark', 5, 55, 'cost', 6, 'to'],
 ['823', 'cost', 'xcomp', 6, 55, 'want', 4, 'cost'],
 ['824', 'anymore', 'advmod', 7, 55, 'cost', 6, 'anymore'],
 ['825', 'than', 'case', 8, 55, 'euros', 11, 'than'],
 ['826', 'twelve', 'nummod', 9, 55, 'euros', 11, 'twelve'],
 ['827', 'fifty', 'amod', 10, 55, 'euros', 11, 'fifty'],
 ['828', 'euros', 'nmod:than', 11, 55, 'cost', 6, 'euro'],
 ['829', 'so', 'advmod', 12, 55, 'cost', 6, 'so'],
 ['830', 'fifty', 'amod', 13, 55, 'percent', 14, 'fifty'],
 ['831', 'percent', 'nmod:npmod', 14, 55, 'so', 12, 'percent'],
 ['832', 'to', 'case', 15, 55, 'price', 18, 'to'],
 ['833', 'the', 'det', 16, 55, 'price', 18, 'the'],
 ['834', 'selling', 'amod', 17, 55, 'price', 18, 'sell'],
 ['835', 'price', 'nmod:to', 18, 55, 'so', 12, 'price'],
 ['836', 'and', 'cc', 1, 56, 'go', 4, 'and'],
 ['837', 'we', 'nsubj', 2, 56, 'go', 4, 'we'],
 ['838', 'just', 'advmod', 3, 56, 'go', 4, 'just'],
 ['839', 'go', 'root', 4, 56, 'ROOT', 0, 'go'],
 ['840', 'that', 'mark', 6, 56, 'wholesale', 28, 'that'],
 ['841', 'again', 'advmod', 7, 56, 'sure', 8, 'again'],
 ['842', 'sure', 'advmod', 8, 56, 'so', 9, 'sure'],
 ['843', 'so', 'advmod', 9, 56, 'okay', 12, 'so'],
 ['844', 'this', 'det', 10, 56, 'alright', 11, 'this'],
 ['845', 'alright', 'nmod:npmod', 11, 56, 'so', 9, 'alright'],
 ['846', 'okay', 'csubj', 12, 56, 'wholesale', 28, 'okay'],
 ['847', 'okay', 'csubj', 12, 56, 'retail', 30, 'okay'],
 ['848', 'so', 'mark', 13, 56, 'fifty', 21, 'so'],
 ['849', 'cost', 'nsubj', 14, 56, 'fifty', 21, 'cost'],
 ['850', 'like', 'case', 15, 56, 'cost', 17, 'like'],
 ['851', 'production', 'compound', 16, 56, 'cost', 17, 'production'],
 ['852', 'cost', 'nmod:like', 17, 56, 'cost', 14, 'cost'],
 ['853', 'is', 'cop', 18, 56, 'fifty', 21, 'be'],
 ['854', 'altogether', 'advmod', 19, 56, 'fifty', 21, 'altogether'],
 ['855', 'a', 'det', 20, 56, 'fifty', 21, 'a'],
 ['856', 'fifty', 'advcl', 21, 56, 'okay', 12, 'fifty'],
 ['857', 'but', 'cc', 22, 56, 'okay', 12, 'but'],
 ['858', 'selling', 'conj:but', 23, 56, 'okay', 12, 'sell'],
 ['859', 'selling', 'csubj', 23, 56, 'wholesale', 28, 'sell'],
 ['860', 'price', 'dobj', 24, 56, 'selling', 23, 'price'],
 ['861', 'is', 'aux', 25, 56, 'wholesale', 28, 'be'],
 ['862', 'is', 'cop', 26, 56, 'wholesale', 28, 'be'],
 ['863', 'that', 'dep', 27, 56, 'wholesale', 28, 'that'],
 ['864', 'wholesale', 'ccomp', 28, 56, 'go', 4, 'wholesale'],
 ['865', 'or', 'cc', 29, 56, 'wholesale', 28, 'or'],
 ['866', 'retail', 'ccomp', 30, 56, 'go', 4, 'retail'],
 ['867', 'retail', 'conj:or', 30, 56, 'wholesale', 28, 'retail'],
 ['868', 'like', 'case', 31, 56, 'shelf', 34, 'like'],
 ['869', 'on', 'case', 32, 56, 'shelf', 34, 'on'],
 ['870', 'the', 'det', 33, 56, 'shelf', 34, 'the'],
 ['871', 'shelf', 'nmod:like', 34, 56, 'wholesale', 28, 'shelf'],
 ['872', 'I', 'nsubj', 1, 57, 'dunno', 2, 'I'],
 ['873', 'dunno', 'root', 2, 57, 'ROOT', 0, 'dunno'],
 ['874', 'I', 'nsubj', 3, 57, 'imagine', 4, 'I'],
 ['875', 'imagine', 'ccomp', 4, 57, 'dunno', 2, 'imagine'],
 ['876', 'That', 'nsubj', 1, 58, 'gross', 3, 'That'],
 ['877', "'s", 'cop', 2, 58, 'gross', 3, "'s"],
 ['878', 'gross', 'root', 3, 58, 'ROOT', 0, 'gross'],
 ['879', 'two', 'nummod', 4, 58, 'hours', 5, 'two'],
 ['880', 'hours', 'nsubj', 5, 58, 'are', 10, 'hour'],
 ['881', 'I', 'nmod:npmod', 6, 58, 'marginal', 7, 'I'],
 ['882', 'marginal', 'amod', 7, 58, 'hours', 5, 'marginal'],
 ['883', 'probably', 'advmod', 8, 58, 'are', 10, 'probably'],
 ['884', 'is', 'aux', 9, 58, 'are', 10, 'be'],
 ['885', 'are', 'acl:relcl', 10, 58, 'gross', 3, 'be'],
 ['886', 'still', 'advmod', 11, 58, 'are', 10, 'still'],
 ['887', 'actually', 'advmod', 12, 58, 'up', 17, 'actually'],
 ['888', 'because', 'mark', 13, 58, 'up', 17, 'because'],
 ['889', 'it', 'nsubj', 14, 58, 'up', 17, 'it'],
 ['890', "'s", 'cop', 15, 58, 'up', 17, "'s"],
 ['891', 'probably', 'advmod', 16, 58, 'up', 17, 'probably'],
 ['892', 'up', 'advcl', 17, 58, 'still', 11, 'up'],
 ['893', 'to', 'case', 18, 58, 'retailer', 21, 'to'],
 ['894', 'the', 'det:predet', 19, 58, 'retailer', 21, 'the'],
 ['895', 'the', 'det', 20, 58, 'retailer', 21, 'the'],
 ['896', 'retailer', 'nmod:to', 21, 58, 'up', 17, 'retailer'],
 ['897', 'to', 'case', 22, 58, 'myself', 23, 'to'],
 ['898', 'myself', 'nmod:to', 23, 58, 'retailer', 21, 'myself'],
 ['899', 'whatever', 'dobj', 24, 58, 'have', 50, 'whatever'],
 ['900', 'price', 'nsubj', 25, 58, 'have', 50, 'price'],
 ['901', 'they', 'nsubj', 26, 58, 'want', 27, 'they'],
 ['902', 'want', 'acl:relcl', 27, 58, 'price', 25, 'want'],
 ['903', 'but', 'cc', 28, 58, 'do', 36, 'but'],
 ['904', 'I', 'nsubj', 29, 58, 'do', 36, 'I'],
 ['905', 'I', 'nsubj', 30, 58, 'know', 33, 'I'],
 ['906', 'do', 'aux', 31, 58, 'know', 33, 'do'],
 ['907', "n't", 'neg', 32, 58, 'know', 33, "n't"],
 ['908', 'know', 'acl:relcl', 33, 58, 'I', 29, 'know'],
 ['909', 'I', 'nsubj', 34, 58, 'mean', 35, 'I'],
 ['910', 'mean', 'ccomp', 35, 58, 'know', 33, 'mean'],
 ['911', 'do', 'ccomp', 36, 58, 'want', 27, 'do'],
 ['912', 'you', 'nsubj', 37, 58, 'think', 38, 'you'],
 ['913', 'think', 'ccomp', 38, 58, 'do', 36, 'think'],
 ['914', 'the', 'det', 39, 58, 'fact', 40, 'the'],
 ['915', 'fact', 'dobj', 40, 58, 'think', 38, 'fact'],
 ['916', 'that', 'mark', 41, 58, 'going', 44, 'that'],
 ['917', 'it', 'nsubj', 42, 58, 'going', 44, 'it'],
 ['918', 'it', 'nsubjpass', 42, 58, 'sold', 47, 'it'],
 ['919', "'s", 'aux', 43, 58, 'going', 44, "'s"],
 ['920', 'going', 'ccomp', 44, 58, 'think', 38, 'go'],
 ['921', 'to', 'mark', 45, 58, 'sold', 47, 'to'],
 ['922', 'be', 'auxpass', 46, 58, 'sold', 47, 'be'],
 ['923', 'sold', 'xcomp', 47, 58, 'going', 44, 'sell'],
 ['924', 'will', 'aux', 49, 58, 'have', 50, 'will'],
 ['925', 'have', 'ccomp', 50, 58, 'up', 17, 'have'],
 ['926', 'a', 'det', 51, 58, 'bearing', 52, 'a'],
 ['927', 'bearing', 'dobj', 52, 58, 'have', 50, 'bearing'],
 ['928', 'on', 'mark', 53, 58, 'design', 56, 'on'],
 ['929', 'how', 'advmod', 54, 58, 'design', 56, 'how'],
 ['930', 'we', 'nsubj', 55, 58, 'design', 56, 'we'],
 ['931', 'design', 'acl', 56, 58, 'bearing', 52, 'design'],
 ['932', 'it', 'dobj', 57, 58, 'design', 56, 'it'],
 ['933', 'at', 'case', 58, 58, 'yeah', 60, 'at'],
 ['934', 'all', 'det', 59, 58, 'yeah', 60, 'all'],
 ['935', 'yeah', 'nmod:at', 60, 58, 'design', 56, 'yeah'],
 ['936', 'I', 'nsubj', 61, 58, 'think', 62, 'I'],
 ['937', 'think', 'acl:relcl', 62, 58, 'yeah', 60, 'think'],
 ['938', 'it', 'nsubj', 63, 58, 'will', 64, 'it'],
 ['939', 'will', 'ccomp', 64, 58, 'think', 62, 'will'],
 ['940', 'all', 'dep', 1, 59, 'away', 3, 'all'],
 ['941', 'right', 'advmod', 2, 59, 'away', 3, 'right'],
 ['942', 'away', 'advmod', 3, 59, 'wondering', 6, 'away'],
 ['943', 'I', 'nsubj', 4, 59, 'wondering', 6, 'I'],
 ['944', "'m", 'aux', 5, 59, 'wondering', 6, "'m"],
 ['945', 'wondering', 'root', 6, 59, 'ROOT', 0, 'wonder'],
 ['946', 'if', 'mark', 7, 59, 'is', 9, 'if'],
 ['947', 'there', 'expl', 8, 59, 'is', 9, 'there'],
 ['948', 'is', 'advcl', 9, 59, 'wondering', 6, 'be'],
 ['949', 'like', 'case', 10, 59, 'players', 13, 'like'],
 ['950', 'the', 'det', 11, 59, 'players', 13, 'the'],
 ['951', 'DVD', 'compound', 12, 59, 'players', 13, 'DVD'],
 ['952', 'players', 'nmod:like', 13, 59, 'is', 9, 'player'],
 ['953', 'if', 'mark', 14, 59, 'zones', 17, 'if'],
 ['954', 'they', 'nsubj', 15, 59, 'zones', 17, 'they'],
 ['955', 'are', 'cop', 16, 59, 'zones', 17, 'be'],
 ['956', 'zones', 'advcl', 17, 59, 'is', 9, 'zone'],
 ['957', 'oh', 'discourse', 1, 60, 'yeah', 2, 'oh'],
 ['958', 'yeah', 'root', 2, 60, 'ROOT', 0, 'yeah'],
 ['959', 'regions', 'dobj', 3, 60, 'yeah', 2, 'region'],
 ['960', 'stuff', 'nsubj', 4, 60, 'yeah', 9, 'stuff'],
 ['961', 'is', 'cop', 5, 60, 'yeah', 9, 'be'],
 ['962', 'limited', 'amod', 6, 60, 'yeah', 9, 'limited'],
 ['963', 'or', 'cc', 7, 60, 'limited', 6, 'or'],
 ['964', 'something', 'conj:or', 8, 60, 'limited', 6, 'something'],
 ['965', 'something', 'amod', 8, 60, 'yeah', 9, 'something'],
 ['966', 'yeah', 'acl:relcl', 9, 60, 'regions', 3, 'yeah'],
 ['967', 'okay', 'root', 1, 61, 'ROOT', 0, 'okay'],
 ['968', 'as', 'cc', 2, 61, 'okay', 1, 'a'],
 ['969', 'well', 'mwe', 3, 61, 'as', 2, 'well'],
 ['970', 'as', 'mwe', 4, 61, 'as', 2, 'a'],
 ['971', 'characters', 'conj:and', 5, 61, 'okay', 1, 'character'],
 ['972', 'different', 'amod', 6, 61, 'styles', 8, 'different'],
 ['973', 'keypad', 'amod', 7, 61, 'styles', 8, 'keypad'],
 ['974', 'styles', 'dep', 8, 61, 'okay', 1, 'style'],
 ['975', 'and', 'cc', 9, 61, 'styles', 8, 'and'],
 ['976', 'some', 'det', 10, 61, 'yeah', 11, 'some'],
 ['977', 'yeah', 'dep', 11, 61, 'okay', 1, 'yeah'],
 ['978', 'yeah', 'conj:and', 11, 61, 'styles', 8, 'yeah'],
 ['979', 'well', 'advmod', 1, 62, 'is', 21, 'well'],
 ['980', 'for', 'mark', 2, 62, 'do', 6, 'for'],
 ['981', 'a', 'det', 3, 62, 'control', 5, 'a'],
 ['982', 'remote', 'amod', 4, 62, 'control', 5, 'remote'],
 ['983', 'control', 'nsubj', 5, 62, 'do', 6, 'control'],
 ['984', 'do', 'dep', 6, 62, 'well', 1, 'do'],
 ['985', 'you', 'nsubj', 7, 62, 'think', 8, 'you'],
 ['986', 'think', 'ccomp', 8, 62, 'do', 6, 'think'],
 ['987', 'that', 'mark', 9, 62, 'depends', 14, 'that'],
 ['988', 'would', 'aux', 10, 62, 'depends', 14, 'would'],
 ['989', 'be', 'cop', 11, 62, 'depends', 14, 'be'],
 ['990', 'a', 'det', 12, 62, 'depends', 14, 'a'],
 ['991', 'specific', 'amod', 13, 62, 'depends', 14, 'specific'],
 ['992', 'depends', 'ccomp', 14, 62, 'think', 8, 'depends'],
 ['993', 'on', 'case', 15, 62, 'complicated', 17, 'on'],
 ['994', 'how', 'advmod', 16, 62, 'complicated', 17, 'how'],
 ['995', 'complicated', 'nmod:on', 17, 62, 'depends', 14, 'complicate'],
 ['996', 'a', 'det', 18, 62, 'control', 20, 'a'],
 ['997', 'remote', 'amod', 19, 62, 'control', 20, 'remote'],
 ['998', 'control', 'nsubj', 20, 62, 'is', 21, 'control'],
 ['999', 'is', 'root', 21, 62, 'ROOT', 0, 'be'],
 ['1000', 'except', 'dep', 1, 63, 'have', 6, 'except'],
 ...]

In [26]:
words = list(words)

final = list(final)

for i in range(len(words)):
    words[i] = list(words[i])
    final[i] = list(final[i])

In [27]:
for word in words:
    word[0] = str(word[0])

for f in final:
    f[0] = str(f[0])
    f[1] = str(f[1])
    f[2] = str(f[2])
    f[3] = int(f[3])
    f[4] = int(f[4])
    f[5] = str(f[5])
    f[6] = int(f[6])
    f[7] = str(f[7])

In [28]:
words


Out[28]:
[['Uh_huh'],
 ['select'],
 ['a'],
 ['she'],
 ['has'],
 ['produced'],
 ['a'],
 ['powerpoint'],
 ['Uh'],
 ['I'],
 ['think'],
 ['it'],
 ["'s"],
 ['already'],
 ['on'],
 ['actually'],
 ['we'],
 ["'ll"],
 ['try'],
 ['the'],
 ['main'],
 ['thing'],
 ['work'],
 ['yeah'],
 ['applies'],
 ['in'],
 ['the'],
 ['back'],
 ['but'],
 ['okay'],
 ['right'],
 ['Now'],
 ['I'],
 ['yes'],
 ['okay'],
 ['right'],
 ['well'],
 ['was'],
 ['the'],
 ['kickoff'],
 ['meeting'],
 ['for'],
 ['our'],
 ['our'],
 ['project'],
 ['and'],
 ['this'],
 ['this'],
 ['is'],
 ['just'],
 ['what'],
 ['we'],
 ['we'],
 ["'re"],
 ['gon'],
 ['na'],
 ['be'],
 ['doing'],
 ['in'],
 ['the'],
 ['next'],
 ['twenty'],
 ['five'],
 ['minutes'],
 ['Um'],
 ['so'],
 ['personal'],
 ['just'],
 ['to'],
 ['kind'],
 ['of'],
 ['make'],
 ['sure'],
 ['that'],
 ['we'],
 ['all'],
 ['know'],
 ['each'],
 ['other'],
 ['I'],
 ["'m"],
 ['your'],
 ['and'],
 ['I'],
 ["'m"],
 ['the'],
 ['project'],
 ['manager'],
 ['manager'],
 ['do'],
 ["n't"],
 ['introduce'],
 ['yourself'],
 ['again'],
 ['Um'],
 ['data'],
 ['data'],
 ['and'],
 ['I'],
 ['I'],
 ['I'],
 ["'m"],
 ['supposed'],
 ['to'],
 ['be'],
 ['industrial'],
 ['designer'],
 ['okay'],
 ['Andrew'],
 ['and'],
 ['I'],
 ['I'],
 ["'m"],
 ['the'],
 ['marketing'],
 ['an'],
 ['expert'],
 ['I'],
 ["'m"],
 ['pregnant'],
 ['agent'],
 ['great'],
 ['okay'],
 ['I'],
 ['was'],
 ['we'],
 ["'re"],
 ['designing'],
 ['any'],
 ['remote'],
 ['control'],
 ['And'],
 ['oh'],
 ['I'],
 ['I'],
 ['have'],
 ['to'],
 ['record'],
 ['he'],
 ["'s"],
 ['here'],
 ['actually'],
 ['so'],
 ['this'],
 ['this'],
 ['do'],
 ['the'],
 ['Andrew'],
 ['and'],
 ['created'],
 ['created'],
 ['and'],
 ['you'],
 ["'ll"],
 ['arrived'],
 ['on'],
 ['time'],
 ['Um'],
 ['yes'],
 ['it'],
 ['is'],
 ['a'],
 ['design'],
 ['a'],
 ['new'],
 ['remote'],
 ['control'],
 ['as'],
 ['you'],
 ['can'],
 ['see'],
 ['is'],
 ['this'],
 ['this'],
 ['be'],
 ['original'],
 ['trendy'],
 ['and'],
 ['user'],
 ['friendly'],
 ['friendly'],
 ['Um'],
 ['so'],
 ['that'],
 ["'s"],
 ['kind'],
 ['of'],
 ['our'],
 ['our'],
 ['brief'],
 ['the'],
 ['wire'],
 ['and'],
 ['so'],
 ['there'],
 ['are'],
 ['are'],
 ['three'],
 ['different'],
 ['stages'],
 ['to'],
 ['the'],
 ['design'],
 ['And'],
 ['I'],
 ["'m"],
 ['not'],
 ['sure'],
 ['what'],
 ['what'],
 ['you'],
 ['guys'],
 ['have'],
 ['already'],
 ['received'],
 ['in'],
 ['your'],
 ['emails'],
 ['emails'],
 ['what'],
 ["'d"],
 ['you'],
 ['get'],
 ['I'],
 ['just'],
 ['got'],
 ["'cause"],
 ['I'],
 ['know'],
 ['you'],
 ['had'],
 ['to'],
 ['calls'],
 ['okay'],
 ['so'],
 ['we'],
 ['we'],
 ["'re"],
 ['gon'],
 ['na'],
 ['have'],
 ['like'],
 ['individual'],
 ['work'],
 ['and'],
 ['then'],
 ['a'],
 ['meeting'],
 ['meeting'],
 ['about'],
 ['it'],
 ['And'],
 ['repeat'],
 ['that'],
 ['process'],
 ['three'],
 ['times'],
 ['Um'],
 ['and'],
 ['at'],
 ['this'],
 ['point'],
 ['we'],
 ['get'],
 ['try'],
 ['the'],
 ['whiteboard'],
 ['over'],
 ['there'],
 ['I'],
 ['I'],
 ['I'],
 ['so'],
 ['you'],
 ['you'],
 ['get'],
 ['to'],
 ['draw'],
 ['your'],
 ['favourite'],
 ['animal'],
 ['and'],
 ['sum'],
 ['sum'],
 ['of'],
 ['so'],
 ['you'],
 ['you'],
 ["'d"],
 ['like'],
 ['to'],
 ['get'],
 ['more'],
 ['is'],
 ['very'],
 ['kids'],
 ['I.'],
 ['alright'],
 ['So'],
 ['this'],
 ['one'],
 ['here'],
 ['right'],
 ['okay'],
 ['I'],
 ['do'],
 ["n't"],
 ['alright'],
 ['my'],
 ['favourite'],
 ['animal'],
 ['and'],
 ['like'],
 ['ah'],
 ['ah'],
 ['a'],
 ['L'],
 ['I'],
 ['characters'],
 ['are'],
 ['about'],
 ['right'],
 ['yeah'],
 ['alright'],
 ['well'],
 ['basically'],
 ['high'],
 ['priority'],
 ['for'],
 ['any'],
 ['animal'],
 ['for'],
 ['me'],
 ['is'],
 ['that'],
 ['they'],
 ['they'],
 ['be'],
 ['willing'],
 ['to'],
 ['take'],
 ['a'],
 ['lot'],
 ['of'],
 ['physical'],
 ['affection'],
 ['from'],
 ['the'],
 ['family'],
 ['And'],
 ['just'],
 ['yeah'],
 ['they'],
 ['have'],
 ['lots'],
 ['of'],
 ['personality'],
 ['and'],
 ['this'],
 ['this'],
 ['and'],
 ['then'],
 ['robust'],
 ['good'],
 ['health'],
 ['health'],
 ['So'],
 ['this'],
 ['is'],
 ['the'],
 ['bigger'],
 ['I'],
 ['families'],
 ['be'],
 ['right'],
 ['lovely'],
 ['yeah'],
 ['no'],
 ['matter'],
 ['of'],
 ['on'],
 ['would'],
 ['be'],
 ['a'],
 ['monkey'],
 ['I'],
 ['I'],
 ['the'],
 ['smoke'],
 ['even'],
 ['for'],
 ['a'],
 ['and'],
 ['then'],
 ['one'],
 ['for'],
 ['the'],
 ['gon'],
 ['na'],
 ['real'],
 ['no'],
 ['and'],
 ['when'],
 ['when'],
 ['the'],
 ['other'],
 ['with'],
 ['them'],
 ['right'],
 ['here'],
 ['you'],
 ['can'],
 ['take'],
 ['as'],
 ['long'],
 ['over'],
 ['this'],
 ['is'],
 ['a'],
 ['like'],
 ['because'],
 ['we'],
 ['have'],
 ["n't"],
 ['got'],
 ['an'],
 ['awful'],
 ['lot'],
 ['there'],
 ["'s"],
 ['of'],
 ['day'],
 ['today'],
 ['do'],
 ["n't"],
 ['feel'],
 ['like'],
 ['your'],
 ['interaction'],
 ['anyway'],
 ['actually'],
 ['told'],
 ['me'],
 ['a'],
 ['lot'],
 ['more'],
 ['about'],
 ['the'],
 ['eagles'],
 ['it'],
 ["'s"],
 ['so'],
 ['much'],
 ['or'],
 ['what'],
 ['what'],
 ['have'],
 ['have'],
 ['to'],
 ['get'],
 ['yeah'],
 ['because'],
 ['I'],
 ['do'],
 ["n't"],
 ['know'],
 ['mine'],
 ['is'],
 ["n't"],
 ['gon'],
 ['na'],
 ['think'],
 ['on'],
 ['the'],
 ['spot'],
 ['oh'],
 ['is'],
 ['that'],
 ['a'],
 ['whale'],
 ['yeah'],
 ['yeah'],
 ['I.'],
 ['well'],
 ['like'],
 ['I'],
 ['do'],
 ["n't"],
 ['know'],
 ['it'],
 ["'s"],
 ['just'],
 ['for'],
 ['am'],
 ['I'],
 ['can'],
 ['think'],
 ['of'],
 ['the'],
 ['top'],
 ['of'],
 ['my'],
 ['head'],
 ['figure'],
 ['is'],
 ['in'],
 ['this'],
 ["'cause"],
 ['I'],
 ["'m"],
 ['allergic'],
 ['to'],
 ['most'],
 ['animals'],
 ['animal'],
 ['for'],
 ['so'],
 ['fish'],
 ['was'],
 ['a'],
 ['natural'],
 ['choice'],
 ['it'],
 ['was'],
 ['becoming'],
 ['ill'],
 ['I'],
 ['mean'],
 ['so'],
 ['I'],
 ['for'],
 ['a'],
 ['mess'],
 ['and'],
 ['mild'],
 ['an'],
 ['interesting'],
 ['okay'],
 ['I'],
 ['still'],
 ['did'],
 ["n't"],
 ['interaction'],
 ['with'],
 ['superb'],
 ['sketch'],
 ['by'],
 ['the'],
 ['way'],
 ['yeah'],
 ['okay'],
 ['I'],
 ['was'],
 ['gon'],
 ['na'],
 ['choose'],
 ['a'],
 ['dog'],
 ['as'],
 ['well'],
 ['But'],
 ['I'],
 ['just'],
 ['a'],
 ['different'],
 ['kind'],
 ['of'],
 ['dogs'],
 ['are'],
 ['my'],
 ['favourite'],
 ['animal'],
 ['animal'],
 ['is'],
 ['my'],
 ['dog'],
 ['dog'],
 ['at'],
 ['home'],
 ['I'],
 ['that'],
 ['that'],
 ['does'],
 ["n't"],
 ['really'],
 ['look'],
 ['like'],
 ['actually'],
 ['looks'],
 ['more'],
 ['like'],
 ['a'],
 ['pig'],
 ['actually'],
 ['oh'],
 ['right'],
 ['see'],
 ['a'],
 ['dog'],
 ['in'],
 ['there'],
 ['yeah'],
 ['yeah'],
 ['yeah'],
 ['that'],
 ["'s"],
 ['a'],
 ['good'],
 ['idea'],
 ['no'],
 ['serious'],
 ['too'],
 ['I'],
 ['what'],
 ['kind'],
 ['of'],
 ["'em"],
 ['he'],
 ["'s"],
 ['a'],
 ['mixture'],
 ['of'],
 ['of'],
 ['various'],
 ['things'],
 ['Um'],
 ['and'],
 ['what'],
 ['I'],
 ['I'],
 ['like'],
 ['about'],
 ['it'],
 ['Um'],
 ['that'],
 ["'s"],
 ['just'],
 ['as'],
 ['the'],
 ['death'],
 ['that'],
 ['his'],
 ['tail'],
 ['why'],
 ['And'],
 ['very'],
 ['friendly'],
 ['and'],
 ['teary'],
 ['and'],
 ['always'],
 ['pleased'],
 ['to'],
 ['see'],
 ['you'],
 ['and'],
 ['of'],
 ['and'],
 ['and'],
 ['it'],
 ["'s"],
 ['quite'],
 ['quite'],
 ['we'],
 ['as'],
 ['well'],
 ['so'],
 ['you'],
 ['know'],
 ['you'],
 ['can'],
 ['does'],
 ["n't"],
 ['take'],
 ['too'],
 ['much'],
 ['space'],
 ['Um'],
 ['the'],
 ['thing'],
 ['does'],
 ['a'],
 ['funny'],
 ['thing'],
 ['reaches'],
 ['detail'],
 ['That'],
 ["'s"],
 ['quite'],
 ['amusing'],
 ['yeah'],
 ['where'],
 ['this'],
 ['his'],
 ['own'],
 ['genitalia'],
 ['thing'],
 ['I'],
 ['think'],
 ['anything'],
 ['and'],
 ['it'],
 ['has'],
 ['actually'],
 ['had'],
 ['is'],
 ['dinner'],
 ['I'],
 ['and'],
 ['it'],
 ['it'],
 ['just'],
 ['all'],
 ['all'],
 ['of'],
 ['a'],
 ['sudden'],
 ['is'],
 ['get'],
 ['and'],
 ['start'],
 ['start'],
 ['chasing'],
 ['his'],
 ['tail'],
 ['pipe'],
 ['it'],
 ['around'],
 ['the'],
 ['living'],
 ['room'],
 ['yeah'],
 ['only'],
 ['when'],
 ['use'],
 ['little'],
 ['he'],
 ['got'],
 ['lots'],
 ['of'],
 ['attention'],
 ['for'],
 ['doing'],
 ['it'],
 ['and'],
 ['I'],
 ['conditioned'],
 ['maybe'],
 ['yeah'],
 ['that'],
 ['where'],
 ['did'],
 ['you'],
 ['find'],
 ['this'],
 ['just'],
 ['down'],
 ['here'],
 ['okay'],
 ['Reading'],
 ['next'],
 ['Um'],
 ['okay'],
 ['mean'],
 ['I'],
 ['I'],
 ['need'],
 ['to'],
 ['discuss'],
 ['the'],
 ['project'],
 ['fine'],
 ['now'],
 ['so'],
 ['according'],
 ['to'],
 ['the'],
 ['we'],
 ['we'],
 ["'re"],
 ['gon'],
 ['na'],
 ['be'],
 ['selling'],
 ['this'],
 ['remote'],
 ['control'],
 ['for'],
 ['twenty'],
 ['five'],
 ['euro'],
 ['Um'],
 ['Um'],
 ['and'],
 ['we'],
 ['we'],
 ['we'],
 ["'re"],
 ['aiming'],
 ['to'],
 ['make'],
 ['fifty'],
 ['million'],
 ['euro'],
 ['Um'],
 ['so'],
 ['we'],
 ['we'],
 ["'re"],
 ['gon'],
 ['na'],
 ['be'],
 ['selling'],
 ['this'],
 ['on'],
 ['an'],
 ['scale'],
 ['And'],
 ['we'],
 ['do'],
 ['want'],
 ['to'],
 ['cost'],
 ['anymore'],
 ['than'],
 ['twelve'],
 ['fifty'],
 ['euros'],
 ['so'],
 ['fifty'],
 ['percent'],
 ['to'],
 ['the'],
 ['selling'],
 ['price'],
 ['and'],
 ['we'],
 ['just'],
 ['go'],
 ['that'],
 ['again'],
 ['sure'],
 ['so'],
 ['this'],
 ['alright'],
 ['okay'],
 ['okay'],
 ['so'],
 ['cost'],
 ['like'],
 ['production'],
 ['cost'],
 ['is'],
 ['altogether'],
 ['a'],
 ['fifty'],
 ['but'],
 ['selling'],
 ['selling'],
 ['price'],
 ['is'],
 ['is'],
 ['that'],
 ['wholesale'],
 ['or'],
 ['retail'],
 ['retail'],
 ['like'],
 ['on'],
 ['the'],
 ['shelf'],
 ['I'],
 ['dunno'],
 ['I'],
 ['imagine'],
 ['That'],
 ["'s"],
 ['gross'],
 ['two'],
 ['hours'],
 ['I'],
 ['marginal'],
 ['probably'],
 ['is'],
 ['are'],
 ['still'],
 ['actually'],
 ['because'],
 ['it'],
 ["'s"],
 ['probably'],
 ['up'],
 ['to'],
 ['the'],
 ['the'],
 ['retailer'],
 ['to'],
 ['myself'],
 ['whatever'],
 ['price'],
 ['they'],
 ['want'],
 ['but'],
 ['I'],
 ['I'],
 ['do'],
 ["n't"],
 ['know'],
 ['I'],
 ['mean'],
 ['do'],
 ['you'],
 ['think'],
 ['the'],
 ['fact'],
 ['that'],
 ['it'],
 ['it'],
 ["'s"],
 ['going'],
 ['to'],
 ['be'],
 ['sold'],
 ['will'],
 ['have'],
 ['a'],
 ['bearing'],
 ['on'],
 ['how'],
 ['we'],
 ['design'],
 ['it'],
 ['at'],
 ['all'],
 ['yeah'],
 ['I'],
 ['think'],
 ['it'],
 ['will'],
 ['all'],
 ['right'],
 ['away'],
 ['I'],
 ["'m"],
 ['wondering'],
 ['if'],
 ['there'],
 ['is'],
 ['like'],
 ['the'],
 ['DVD'],
 ['players'],
 ['if'],
 ['they'],
 ['are'],
 ['zones'],
 ['oh'],
 ['yeah'],
 ['regions'],
 ['stuff'],
 ['is'],
 ['limited'],
 ['or'],
 ['something'],
 ['something'],
 ['yeah'],
 ['okay'],
 ['as'],
 ['well'],
 ['as'],
 ['characters'],
 ['different'],
 ['keypad'],
 ['styles'],
 ['and'],
 ['some'],
 ['yeah'],
 ['yeah'],
 ['well'],
 ['for'],
 ['a'],
 ['remote'],
 ['control'],
 ['do'],
 ['you'],
 ['think'],
 ['that'],
 ['would'],
 ['be'],
 ['a'],
 ['specific'],
 ['depends'],
 ['on'],
 ['how'],
 ['complicated'],
 ['a'],
 ['remote'],
 ['control'],
 ['is'],
 ['except'],
 ...]

In [29]:
res = []
lemmatizer = WordNetLemmatizer()


for i in range(len(words)):
    for word, pos in pos_tag(words[i]):
        wordnet_pos = get_wordnet_pos(pos) or wordnet.NOUN
        res.append(lemmatizer.lemmatize(word, pos=wordnet_pos))

In [37]:
for i in range(len(res)):
    final[i][7] = res[i]
    
    final[i][7] = str(final[i][7])

In [38]:
final


Out[38]:
[['1', 'Uh_huh', 'nsubj', 1, 1, 'select', 2, 'Uh_huh'],
 ['2', 'select', 'root', 2, 1, 'ROOT', 0, 'select'],
 ['3', 'a', 'det', 3, 1, 'she', 4, 'a'],
 ['4', 'she', 'nsubj', 4, 1, 'produced', 6, 'she'],
 ['5', 'has', 'aux', 5, 1, 'produced', 6, 'have'],
 ['6', 'produced', 'ccomp', 6, 1, 'select', 2, 'produce'],
 ['7', 'a', 'det', 7, 1, 'Uh', 9, 'a'],
 ['8', 'powerpoint', 'amod', 8, 1, 'Uh', 9, 'powerpoint'],
 ['9', 'Uh', 'dobj', 9, 1, 'produced', 6, 'Uh'],
 ['10', 'I', 'nsubj', 10, 1, 'think', 11, 'I'],
 ['11', 'think', 'acl:relcl', 11, 1, 'Uh', 9, 'think'],
 ['12', 'it', 'nsubj', 12, 1, 'actually', 16, 'it'],
 ['13', "'s", 'cop', 13, 1, 'actually', 16, "'s"],
 ['14', 'already', 'advmod', 14, 1, 'actually', 16, 'already'],
 ['15', 'on', 'case', 15, 1, 'actually', 16, 'on'],
 ['16', 'actually', 'ccomp', 16, 1, 'think', 11, 'actually'],
 ['17', 'we', 'nsubj', 1, 2, 'try', 3, 'we'],
 ['18', "'ll", 'aux', 2, 2, 'try', 3, "'ll"],
 ['19', 'try', 'root', 3, 2, 'ROOT', 0, 'try'],
 ['20', 'the', 'det', 4, 2, 'yeah', 8, 'the'],
 ['21', 'main', 'amod', 5, 2, 'yeah', 8, 'main'],
 ['22', 'thing', 'compound', 6, 2, 'yeah', 8, 'thing'],
 ['23', 'work', 'compound', 7, 2, 'yeah', 8, 'work'],
 ['24', 'yeah', 'nsubj', 8, 2, 'applies', 9, 'yeah'],
 ['25', 'applies', 'ccomp', 9, 2, 'try', 3, 'applies'],
 ['26', 'in', 'case', 10, 2, 'right', 15, 'in'],
 ['27', 'the', 'det', 11, 2, 'right', 15, 'the'],
 ['28', 'back', 'advmod', 12, 2, 'but', 13, 'back'],
 ['29', 'but', 'advmod', 13, 2, 'okay', 14, 'but'],
 ['30', 'okay', 'amod', 14, 2, 'right', 15, 'okay'],
 ['31', 'right', 'nmod:in', 15, 2, 'applies', 9, 'right'],
 ['32', 'Now', 'advmod', 1, 3, 'meeting', 10, 'Now'],
 ['33', 'I', 'nsubj', 2, 3, 'meeting', 10, 'I'],
 ['34', 'yes', 'advmod', 3, 3, 'right', 5, 'yes'],
 ['35', 'okay', 'nummod', 4, 3, 'right', 5, 'okay'],
 ['36', 'right', 'nmod:npmod', 5, 3, 'well', 6, 'right'],
 ['37', 'well', 'advmod', 6, 3, 'meeting', 10, 'well'],
 ['38', 'was', 'cop', 7, 3, 'meeting', 10, 'be'],
 ['39', 'the', 'det', 8, 3, 'meeting', 10, 'the'],
 ['40', 'kickoff', 'compound', 9, 3, 'meeting', 10, 'kickoff'],
 ['41', 'meeting', 'csubj', 10, 3, 'is', 17, 'meeting'],
 ['42', 'for', 'case', 11, 3, 'project', 14, 'for'],
 ['43', 'our', 'nmod:poss', 12, 3, 'project', 14, 'our'],
 ['44', 'our', 'nmod:poss', 13, 3, 'project', 14, 'our'],
 ['45', 'project', 'nmod:for', 14, 3, 'meeting', 10, 'project'],
 ['46', 'and', 'cc', 15, 3, 'project', 14, 'and'],
 ['47', 'this', 'nmod:for', 16, 3, 'meeting', 10, 'this'],
 ['48', 'this', 'conj:and', 16, 3, 'project', 14, 'this'],
 ['49', 'is', 'root', 17, 3, 'ROOT', 0, 'be'],
 ['50', 'just', 'advmod', 18, 3, 'what', 19, 'just'],
 ['51', 'what', 'dep', 19, 3, 'gon', 22, 'what'],
 ['52', 'we', 'nsubj', 20, 3, 'gon', 22, 'we'],
 ['53', 'we', 'nsubj', 20, 3, 'doing', 25, 'we'],
 ['54', "'re", 'aux', 21, 3, 'gon', 22, "'re"],
 ['55', 'gon', 'ccomp', 22, 3, 'is', 17, 'gon'],
 ['56', 'na', 'mark', 23, 3, 'doing', 25, 'na'],
 ['57', 'be', 'aux', 24, 3, 'doing', 25, 'be'],
 ['58', 'doing', 'xcomp', 25, 3, 'gon', 22, 'do'],
 ['59', 'in', 'case', 26, 3, 'twenty', 29, 'in'],
 ['60', 'the', 'det', 27, 3, 'twenty', 29, 'the'],
 ['61', 'next', 'amod', 28, 3, 'twenty', 29, 'next'],
 ['62', 'twenty', 'nmod:in', 29, 3, 'doing', 25, 'twenty'],
 ['63', 'five', 'nummod', 30, 3, 'minutes', 31, 'five'],
 ['64', 'minutes', 'dobj', 31, 3, 'doing', 25, 'minute'],
 ['65', 'Um', 'nsubj', 1, 4, 'introduce', 27, 'Um'],
 ['66', 'so', 'advmod', 2, 4, 'personal', 3, 'so'],
 ['67', 'personal', 'amod', 3, 4, 'Um', 1, 'personal'],
 ['68', 'just', 'advmod', 4, 4, 'kind', 6, 'just'],
 ['69', 'to', 'case', 5, 4, 'kind', 6, 'to'],
 ['70', 'kind', 'nmod:to', 6, 4, 'personal', 3, 'kind'],
 ['71', 'of', 'mark', 7, 4, 'make', 8, 'of'],
 ['72', 'make', 'acl', 8, 4, 'kind', 6, 'make'],
 ['73', 'sure', 'xcomp', 9, 4, 'make', 8, 'sure'],
 ['74', 'that', 'mark', 10, 4, 'know', 13, 'that'],
 ['75', 'we', 'nsubj', 11, 4, 'know', 13, 'we'],
 ['76', 'all', 'advmod', 12, 4, 'know', 13, 'all'],
 ['77', 'know', 'ccomp', 13, 4, 'make', 8, 'know'],
 ['78', 'each', 'det', 14, 4, 'I', 16, 'each'],
 ['79', 'other', 'amod', 15, 4, 'I', 16, 'other'],
 ['80', 'I', 'nsubj', 16, 4, 'your', 18, 'I'],
 ['81', "'m", 'cop', 17, 4, 'your', 18, "'m"],
 ['82', 'your', 'ccomp', 18, 4, 'know', 13, 'your'],
 ['83', 'and', 'cc', 19, 4, 'know', 13, 'and'],
 ['84', 'I', 'nsubj', 20, 4, 'manager', 24, 'I'],
 ['85', "'m", 'cop', 21, 4, 'manager', 24, "'m"],
 ['86', 'the', 'det', 22, 4, 'manager', 24, 'the'],
 ['87', 'project', 'compound', 23, 4, 'manager', 24, 'project'],
 ['88', 'manager', 'ccomp', 24, 4, 'make', 8, 'manager'],
 ['89', 'manager', 'conj:and', 24, 4, 'know', 13, 'manager'],
 ['90', 'do', 'aux', 25, 4, 'introduce', 27, 'do'],
 ['91', "n't", 'neg', 26, 4, 'introduce', 27, "n't"],
 ['92', 'introduce', 'root', 27, 4, 'ROOT', 0, 'introduce'],
 ['93', 'yourself', 'dobj', 28, 4, 'introduce', 27, 'yourself'],
 ['94', 'again', 'advmod', 29, 4, 'introduce', 27, 'again'],
 ['95', 'Um', 'compound', 1, 5, 'data', 2, 'Um'],
 ['96', 'data', 'nsubjpass', 2, 5, 'supposed', 6, 'data'],
 ['97', 'data', 'nsubj', 2, 5, 'okay', 11, 'data'],
 ['98', 'and', 'cc', 3, 5, 'data', 2, 'and'],
 ['99', 'I', 'conj:and', 4, 5, 'data', 2, 'I'],
 ['100', 'I', 'nsubjpass', 4, 5, 'supposed', 6, 'I'],
 ['101', 'I', 'nsubj', 4, 5, 'okay', 11, 'I'],
 ['102', "'m", 'auxpass', 5, 5, 'supposed', 6, "'m"],
 ['103', 'supposed', 'root', 6, 5, 'ROOT', 0, 'suppose'],
 ['104', 'to', 'mark', 7, 5, 'okay', 11, 'to'],
 ['105', 'be', 'cop', 8, 5, 'okay', 11, 'be'],
 ['106', 'industrial', 'amod', 9, 5, 'okay', 11, 'industrial'],
 ['107', 'designer', 'compound', 10, 5, 'okay', 11, 'designer'],
 ['108', 'okay', 'xcomp', 11, 5, 'supposed', 6, 'okay'],
 ['109', 'Andrew', 'nsubj', 1, 6, 'marketing', 6, 'Andrew'],
 ['110', 'and', 'cc', 2, 6, 'Andrew', 1, 'and'],
 ['111', 'I', 'conj:and', 3, 6, 'Andrew', 1, 'I'],
 ['112', 'I', 'nsubj', 3, 6, 'marketing', 6, 'I'],
 ['113', "'m", 'cop', 4, 6, 'marketing', 6, "'m"],
 ['114', 'the', 'det', 5, 6, 'marketing', 6, 'the'],
 ['115', 'marketing', 'root', 6, 6, 'ROOT', 0, 'marketing'],
 ['116', 'an', 'det', 7, 6, 'expert', 8, 'an'],
 ['117', 'expert', 'dep', 8, 6, 'marketing', 6, 'expert'],
 ['118', 'I', 'nsubj', 1, 7, 'agent', 4, 'I'],
 ['119', "'m", 'cop', 2, 7, 'agent', 4, "'m"],
 ['120', 'pregnant', 'amod', 3, 7, 'agent', 4, 'pregnant'],
 ['121', 'agent', 'root', 4, 7, 'ROOT', 0, 'agent'],
 ['122', 'great', 'amod', 1, 8, 'okay', 2, 'great'],
 ['123', 'okay', 'nsubj', 2, 8, 'designing', 7, 'okay'],
 ['124', 'I', 'nsubj', 3, 8, 'we', 5, 'I'],
 ['125', 'was', 'cop', 4, 8, 'we', 5, 'be'],
 ['126', 'we', 'acl:relcl', 5, 8, 'okay', 2, 'we'],
 ['127', "'re", 'aux', 6, 8, 'designing', 7, "'re"],
 ['128', 'designing', 'root', 7, 8, 'ROOT', 0, 'design'],
 ['129', 'any', 'det', 8, 8, 'control', 10, 'any'],
 ['130', 'remote', 'amod', 9, 8, 'control', 10, 'remote'],
 ['131', 'control', 'dobj', 10, 8, 'designing', 7, 'control'],
 ['132', 'And', 'cc', 1, 9, 'have', 4, 'And'],
 ['133', 'oh', 'discourse', 2, 9, 'have', 4, 'oh'],
 ['134', 'I', 'nsubj', 3, 9, 'have', 4, 'I'],
 ['135', 'I', 'nsubj', 3, 9, 'record', 6, 'I'],
 ['136', 'have', 'root', 4, 9, 'ROOT', 0, 'have'],
 ['137', 'to', 'mark', 5, 9, 'record', 6, 'to'],
 ['138', 'record', 'xcomp', 6, 9, 'have', 4, 'record'],
 ['139', 'he', 'nsubj', 7, 9, "'s", 8, 'he'],
 ['140', "'s", 'ccomp', 8, 9, 'record', 6, "'s"],
 ['141', 'here', 'advmod', 9, 9, "'s", 8, 'here'],
 ['142', 'actually', 'advmod', 10, 9, "'s", 8, 'actually'],
 ['143', 'so', 'mark', 11, 9, 'do', 13, 'so'],
 ['144', 'this', 'nsubj', 12, 9, 'do', 13, 'this'],
 ['145', 'this', 'nsubj', 12, 9, 'created', 17, 'this'],
 ['146', 'do', 'advcl', 13, 9, "'s", 8, 'do'],
 ['147', 'the', 'det', 14, 9, 'Andrew', 15, 'the'],
 ['148', 'Andrew', 'dobj', 15, 9, 'do', 13, 'Andrew'],
 ['149', 'and', 'cc', 16, 9, 'do', 13, 'and'],
 ['150', 'created', 'advcl', 17, 9, "'s", 8, 'create'],
 ['151', 'created', 'conj:and', 17, 9, 'do', 13, 'create'],
 ['152', 'and', 'cc', 18, 9, 'have', 4, 'and'],
 ['153', 'you', 'nsubj', 19, 9, 'arrived', 21, 'you'],
 ['154', "'ll", 'aux', 20, 9, 'arrived', 21, "'ll"],
 ['155', 'arrived', 'conj:and', 21, 9, 'have', 4, 'arrive'],
 ['156', 'on', 'case', 22, 9, 'time', 23, 'on'],
 ['157', 'time', 'nmod:on', 23, 9, 'arrived', 21, 'time'],
 ['158', 'Um', 'root', 1, 10, 'ROOT', 0, 'Um'],
 ['159', 'yes', 'dobj', 2, 10, 'Um', 1, 'yes'],
 ['160', 'it', 'nsubj', 3, 10, 'design', 6, 'it'],
 ['161', 'is', 'cop', 4, 10, 'design', 6, 'be'],
 ['162', 'a', 'det', 5, 10, 'design', 6, 'a'],
 ['163', 'design', 'dep', 6, 10, 'Um', 1, 'design'],
 ['164', 'a', 'det', 7, 10, 'control', 10, 'a'],
 ['165', 'new', 'amod', 8, 10, 'control', 10, 'new'],
 ['166', 'remote', 'amod', 9, 10, 'control', 10, 'remote'],
 ['167', 'control', 'nsubj', 10, 10, 'is', 15, 'control'],
 ['168', 'as', 'mark', 11, 10, 'see', 14, 'a'],
 ['169', 'you', 'nsubj', 12, 10, 'see', 14, 'you'],
 ['170', 'can', 'aux', 13, 10, 'see', 14, 'can'],
 ['171', 'see', 'acl:relcl', 14, 10, 'control', 10, 'see'],
 ['172', 'is', 'acl:relcl', 15, 10, 'design', 6, 'be'],
 ['173', 'this', 'nsubj', 16, 10, 'trendy', 19, 'this'],
 ['174', 'this', 'nsubj', 16, 10, 'friendly', 22, 'this'],
 ['175', 'be', 'cop', 17, 10, 'trendy', 19, 'be'],
 ['176', 'original', 'amod', 18, 10, 'trendy', 19, 'original'],
 ['177', 'trendy', 'ccomp', 19, 10, 'is', 15, 'trendy'],
 ['178', 'and', 'cc', 20, 10, 'trendy', 19, 'and'],
 ['179', 'user', 'advmod', 21, 10, 'friendly', 22, 'user'],
 ['180', 'friendly', 'ccomp', 22, 10, 'is', 15, 'friendly'],
 ['181', 'friendly', 'conj:and', 22, 10, 'trendy', 19, 'friendly'],
 ['182', 'Um', 'root', 1, 11, 'ROOT', 0, 'Um'],
 ['183', 'so', 'mark', 2, 11, 'kind', 5, 'so'],
 ['184', 'that', 'nsubj', 3, 11, 'kind', 5, 'that'],
 ['185', "'s", 'cop', 4, 11, 'kind', 5, "'s"],
 ['186', 'kind', 'advcl', 5, 11, 'Um', 1, 'kind'],
 ['187', 'of', 'case', 6, 11, 'brief', 9, 'of'],
 ['188', 'our', 'nmod:poss', 7, 11, 'brief', 9, 'our'],
 ['189', 'our', 'nmod:poss', 8, 11, 'brief', 9, 'our'],
 ['190', 'brief', 'nmod:of', 9, 11, 'kind', 5, 'brief'],
 ['191', 'the', 'det', 10, 11, 'wire', 11, 'the'],
 ['192', 'wire', 'dep', 11, 11, 'brief', 9, 'wire'],
 ['193', 'and', 'cc', 12, 11, 'kind', 5, 'and'],
 ['194', 'so', 'mark', 13, 11, 'are', 15, 'so'],
 ['195', 'there', 'expl', 14, 11, 'are', 15, 'there'],
 ['196', 'are', 'advcl', 15, 11, 'Um', 1, 'be'],
 ['197', 'are', 'conj:and', 15, 11, 'kind', 5, 'be'],
 ['198', 'three', 'nummod', 16, 11, 'stages', 18, 'three'],
 ['199', 'different', 'amod', 17, 11, 'stages', 18, 'different'],
 ['200', 'stages', 'nsubj', 18, 11, 'are', 15, 'stage'],
 ['201', 'to', 'case', 19, 11, 'design', 21, 'to'],
 ['202', 'the', 'det', 20, 11, 'design', 21, 'the'],
 ['203', 'design', 'nmod:to', 21, 11, 'stages', 18, 'design'],
 ['204', 'And', 'cc', 1, 12, 'sure', 5, 'And'],
 ['205', 'I', 'nsubj', 2, 12, 'sure', 5, 'I'],
 ['206', "'m", 'cop', 3, 12, 'sure', 5, "'m"],
 ['207', 'not', 'neg', 4, 12, 'sure', 5, 'not'],
 ['208', 'sure', 'root', 5, 12, 'ROOT', 0, 'sure'],
 ['209', 'what', 'dobj', 6, 12, 'get', 19, 'what'],
 ['210', 'what', 'dobj', 7, 12, 'received', 12, 'what'],
 ['211', 'you', 'dep', 8, 12, 'guys', 9, 'you'],
 ['212', 'guys', 'nsubj', 9, 12, 'received', 12, 'guy'],
 ['213', 'have', 'aux', 10, 12, 'received', 12, 'have'],
 ['214', 'already', 'advmod', 11, 12, 'received', 12, 'already'],
 ['215', 'received', 'advcl', 12, 12, 'get', 19, 'receive'],
 ['216', 'in', 'case', 13, 12, 'emails', 15, 'in'],
 ['217', 'your', 'nmod:poss', 14, 12, 'emails', 15, 'your'],
 ['218', 'emails', 'nmod:in', 15, 12, 'received', 12, 'email'],
 ['219', 'emails', 'nsubj', 15, 12, "'d", 17, 'email'],
 ['220', 'what', 'ref', 16, 12, 'emails', 15, 'what'],
 ['221', "'d", 'acl:relcl', 17, 12, 'emails', 15, "'d"],
 ['222', 'you', 'nsubj', 18, 12, 'get', 19, 'you'],
 ['223', 'get', 'ccomp', 19, 12, 'sure', 5, 'get'],
 ['224', 'I', 'dobj', 20, 12, 'get', 19, 'I'],
 ['225', 'just', 'advmod', 21, 12, 'get', 19, 'just'],
 ['226', 'got', 'aux', 1, 13, "'cause", 6, 'get'],
 ['227', "'cause", 'dep', 6, 13, 'know', 9, "'cause"],
 ['228', 'I', 'nsubj', 8, 13, 'know', 9, 'I'],
 ['229', 'know', 'root', 9, 13, 'ROOT', 0, 'know'],
 ['230', 'you', 'dobj', 10, 13, 'know', 9, 'you'],
 ['231', 'had', 'csubj', 1, 14, 'calls', 3, 'have'],
 ['232', 'to', 'nmod', 2, 14, 'had', 1, 'to'],
 ['233', 'calls', 'root', 3, 14, 'ROOT', 0, 'call'],
 ['234', 'okay', 'xcomp', 4, 14, 'calls', 3, 'okay'],
 ['235', 'so', 'mark', 5, 14, 'gon', 8, 'so'],
 ['236', 'we', 'nsubj', 6, 14, 'gon', 8, 'we'],
 ['237', 'we', 'nsubj', 6, 14, 'have', 10, 'we'],
 ['238', "'re", 'aux', 7, 14, 'gon', 8, "'re"],
 ['239', 'gon', 'advcl', 8, 14, 'calls', 3, 'gon'],
 ['240', 'na', 'mark', 9, 14, 'have', 10, 'na'],
 ['241', 'have', 'xcomp', 10, 14, 'gon', 8, 'have'],
 ['242', 'like', 'amod', 11, 14, 'work', 13, 'like'],
 ['243', 'individual', 'amod', 12, 14, 'work', 13, 'individual'],
 ['244', 'work', 'dobj', 13, 14, 'have', 10, 'work'],
 ['245', 'and', 'cc', 14, 14, 'work', 13, 'and'],
 ['246', 'then', 'advmod', 15, 14, 'meeting', 17, 'then'],
 ['247', 'a', 'det', 16, 14, 'meeting', 17, 'a'],
 ['248', 'meeting', 'dobj', 17, 14, 'have', 10, 'meeting'],
 ['249', 'meeting', 'conj:and', 17, 14, 'work', 13, 'meeting'],
 ['250', 'about', 'case', 18, 14, 'it', 19, 'about'],
 ['251', 'it', 'nmod:about', 19, 14, 'meeting', 17, 'it'],
 ['252', 'And', 'cc', 1, 15, 'repeat', 2, 'And'],
 ['253', 'repeat', 'root', 2, 15, 'ROOT', 0, 'repeat'],
 ['254', 'that', 'det', 3, 15, 'process', 4, 'that'],
 ['255', 'process', 'dobj', 4, 15, 'repeat', 2, 'process'],
 ['256', 'three', 'nummod', 5, 15, 'times', 6, 'three'],
 ['257', 'times', 'dep', 6, 15, 'process', 4, 'time'],
 ['258', 'Um', 'root', 1, 16, 'ROOT', 0, 'Um'],
 ['259', 'and', 'cc', 2, 16, 'Um', 1, 'and'],
 ['260', 'at', 'case', 3, 16, 'point', 5, 'at'],
 ['261', 'this', 'det', 4, 16, 'point', 5, 'this'],
 ['262', 'point', 'nmod:at', 5, 16, 'try', 8, 'point'],
 ['263', 'we', 'nsubj', 6, 16, 'try', 8, 'we'],
 ['264', 'get', 'aux', 7, 16, 'try', 8, 'get'],
 ['265', 'try', 'conj:and', 8, 16, 'Um', 1, 'try'],
 ['266', 'the', 'det', 10, 16, 'whiteboard', 11, 'the'],
 ['267', 'whiteboard', 'dobj', 11, 16, 'try', 8, 'whiteboard'],
 ['268', 'over', 'case', 12, 16, 'there', 13, 'over'],
 ['269', 'there', 'nmod:over', 13, 16, 'whiteboard', 11, 'there'],
 ['270', 'I', 'nsubj', 1, 17, 'get', 4, 'I'],
 ['271', 'I', 'nsubj', 1, 17, 'draw', 6, 'I'],
 ['272', 'I', 'nsubj', 1, 17, 'sum', 11, 'I'],
 ['273', 'so', 'advmod', 2, 17, 'get', 4, 'so'],
 ['274', 'you', 'nsubj', 3, 17, 'get', 4, 'you'],
 ['275', 'you', 'nsubj', 3, 17, 'draw', 6, 'you'],
 ['276', 'get', 'dep', 4, 17, 'kids', 27, 'get'],
 ['277', 'to', 'mark', 5, 17, 'draw', 6, 'to'],
 ['278', 'draw', 'xcomp', 6, 17, 'get', 4, 'draw'],
 ['279', 'your', 'nmod:poss', 7, 17, 'animal', 9, 'your'],
 ['280', 'favourite', 'amod', 8, 17, 'animal', 9, 'favourite'],
 ['281', 'animal', 'dobj', 9, 17, 'draw', 6, 'animal'],
 ['282', 'and', 'cc', 10, 17, 'draw', 6, 'and'],
 ['283', 'sum', 'xcomp', 11, 17, 'get', 4, 'sum'],
 ['284', 'sum', 'conj:and', 11, 17, 'draw', 6, 'sum'],
 ['285', 'of', 'case', 16, 17, 'that', 17, 'of'],
 ['286', 'so', 'mark', 18, 17, 'like', 21, 'so'],
 ['287', 'you', 'nsubj', 19, 17, 'like', 21, 'you'],
 ['288', 'you', 'nsubj', 19, 17, 'get', 23, 'you'],
 ['289', "'d", 'aux', 20, 17, 'like', 21, "'d"],
 ['290', 'like', 'advcl', 21, 17, 'sum', 11, 'like'],
 ['291', 'to', 'mark', 22, 17, 'get', 23, 'to'],
 ['292', 'get', 'xcomp', 23, 17, 'like', 21, 'get'],
 ['293', 'more', 'dobj', 24, 17, 'get', 23, 'more'],
 ['294', 'is', 'cop', 25, 17, 'kids', 27, 'be'],
 ['295', 'very', 'advmod', 26, 17, 'kids', 27, 'very'],
 ['296', 'kids', 'root', 27, 17, 'ROOT', 0, 'kid'],
 ['297', 'I.', 'compound', 28, 17, 'alright', 29, 'I.'],
 ['298', 'alright', 'nsubj', 29, 17, 'kids', 27, 'alright'],
 ['299', 'So', 'advmod', 1, 18, 'one', 3, 'So'],
 ['300', 'this', 'det', 2, 18, 'one', 3, 'this'],
 ['301', 'one', 'root', 3, 18, 'ROOT', 0, 'one'],
 ['302', 'here', 'advmod', 4, 18, 'right', 5, 'here'],
 ['303', 'right', 'dep', 5, 18, 'one', 3, 'right'],
 ['304', 'okay', 'dep', 1, 19, 'do', 3, 'okay'],
 ['305', 'I', 'nsubj', 2, 19, 'do', 3, 'I'],
 ['306', 'do', 'root', 3, 19, 'ROOT', 0, 'do'],
 ['307', "n't", 'neg', 4, 19, 'do', 3, "n't"],
 ['308', 'alright', 'dep', 1, 20, 'about', 15, 'alright'],
 ['309', 'my', 'nmod:poss', 2, 20, 'animal', 4, 'my'],
 ['310', 'favourite', 'amod', 3, 20, 'animal', 4, 'favourite'],
 ['311', 'animal', 'dobj', 4, 20, 'alright', 1, 'animal'],
 ['312', 'and', 'cc', 5, 20, 'alright', 1, 'and'],
 ['313', 'like', 'case', 6, 20, 'ah', 7, 'like'],
 ['314', 'ah', 'conj:and', 7, 20, 'alright', 1, 'ah'],
 ['315', 'ah', 'dep', 7, 20, 'about', 15, 'ah'],
 ['316', 'a', 'det', 8, 20, 'characters', 11, 'a'],
 ['317', 'L', 'compound', 9, 20, 'characters', 11, 'L'],
 ['318', 'I', 'compound', 10, 20, 'characters', 11, 'I'],
 ['319', 'characters', 'nsubj', 11, 20, 'about', 15, 'character'],
 ['320', 'are', 'cop', 14, 20, 'about', 15, 'be'],
 ['321', 'about', 'root', 15, 20, 'ROOT', 0, 'about'],
 ['322', 'right', 'nsubj', 1, 21, 'yeah', 2, 'right'],
 ['323', 'yeah', 'root', 2, 21, 'ROOT', 0, 'yeah'],
 ['324', 'alright', 'root', 1, 22, 'ROOT', 0, 'alright'],
 ['325', 'well', 'advmod', 2, 22, 'alright', 1, 'well'],
 ['326', 'basically', 'advmod', 3, 22, 'high', 4, 'basically'],
 ['327', 'high', 'amod', 4, 22, 'priority', 5, 'high'],
 ['328', 'priority', 'dobj', 5, 22, 'alright', 1, 'priority'],
 ['329', 'for', 'case', 6, 22, 'animal', 8, 'for'],
 ['330', 'any', 'det', 7, 22, 'animal', 8, 'any'],
 ['331', 'animal', 'nmod:for', 8, 22, 'alright', 1, 'animal'],
 ['332', 'for', 'mark', 9, 22, 'is', 11, 'for'],
 ['333', 'me', 'nsubj', 10, 22, 'is', 11, 'me'],
 ['334', 'is', 'advcl', 11, 22, 'alright', 1, 'be'],
 ['335', 'that', 'mark', 12, 22, 'willing', 15, 'that'],
 ['336', 'they', 'nsubj', 13, 22, 'willing', 15, 'they'],
 ['337', 'they', 'nsubj', 13, 22, 'take', 17, 'they'],
 ['338', 'be', 'cop', 14, 22, 'willing', 15, 'be'],
 ['339', 'willing', 'ccomp', 15, 22, 'is', 11, 'willing'],
 ['340', 'to', 'mark', 16, 22, 'take', 17, 'to'],
 ['341', 'take', 'xcomp', 17, 22, 'willing', 15, 'take'],
 ['342', 'a', 'det', 18, 22, 'lot', 19, 'a'],
 ['343', 'lot', 'dobj', 19, 22, 'take', 17, 'lot'],
 ['344', 'of', 'case', 20, 22, 'affection', 22, 'of'],
 ['345', 'physical', 'amod', 21, 22, 'affection', 22, 'physical'],
 ['346', 'affection', 'nmod:of', 22, 22, 'lot', 19, 'affection'],
 ['347', 'from', 'case', 23, 22, 'family', 25, 'from'],
 ['348', 'the', 'det', 24, 22, 'family', 25, 'the'],
 ['349', 'family', 'nmod:from', 25, 22, 'take', 17, 'family'],
 ['350', 'And', 'cc', 1, 23, 'yeah', 3, 'And'],
 ['351', 'just', 'advmod', 2, 23, 'yeah', 3, 'just'],
 ['352', 'yeah', 'root', 3, 23, 'ROOT', 0, 'yeah'],
 ['353', 'they', 'nsubj', 4, 23, 'have', 5, 'they'],
 ['354', 'have', 'ccomp', 5, 23, 'yeah', 3, 'have'],
 ['355', 'lots', 'dobj', 6, 23, 'have', 5, 'lot'],
 ['356', 'of', 'case', 7, 23, 'personality', 8, 'of'],
 ['357', 'personality', 'nmod:of', 8, 23, 'lots', 6, 'personality'],
 ['358', 'and', 'cc', 9, 23, 'yeah', 3, 'and'],
 ['359', 'this', 'dep', 10, 23, 'this', 11, 'this'],
 ['360', 'this', 'conj:and', 11, 23, 'yeah', 3, 'this'],
 ['361', 'and', 'cc', 12, 23, 'this', 11, 'and'],
 ['362', 'then', 'advmod', 13, 23, 'health', 16, 'then'],
 ['363', 'robust', 'amod', 14, 23, 'health', 16, 'robust'],
 ['364', 'good', 'amod', 15, 23, 'health', 16, 'good'],
 ['365', 'health', 'conj:and', 16, 23, 'yeah', 3, 'health'],
 ['366', 'health', 'conj:and', 16, 23, 'this', 11, 'health'],
 ['367', 'So', 'dep', 1, 24, 'I', 6, 'So'],
 ['368', 'this', 'nsubj', 2, 24, 'I', 6, 'this'],
 ['369', 'is', 'cop', 3, 24, 'I', 6, 'be'],
 ['370', 'the', 'det', 4, 24, 'I', 6, 'the'],
 ['371', 'bigger', 'amod', 5, 24, 'I', 6, 'big'],
 ['372', 'I', 'root', 6, 24, 'ROOT', 0, 'I'],
 ['373', 'families', 'nsubj', 7, 24, 'be', 8, 'family'],
 ['374', 'be', 'acl:relcl', 8, 24, 'I', 6, 'be'],
 ['375', 'right', 'amod', 1, 25, 'lovely', 2, 'right'],
 ['376', 'lovely', 'discourse', 2, 25, 'yeah', 3, 'lovely'],
 ['377', 'yeah', 'root', 3, 25, 'ROOT', 0, 'yeah'],
 ['378', 'no', 'neg', 1, 26, 'matter', 2, 'no'],
 ['379', 'matter', 'nsubj', 2, 26, 'monkey', 8, 'matter'],
 ['380', 'of', 'case', 3, 26, 'on', 4, 'of'],
 ['381', 'on', 'acl:of', 4, 26, 'matter', 2, 'on'],
 ['382', 'would', 'aux', 5, 26, 'monkey', 8, 'would'],
 ['383', 'be', 'cop', 6, 26, 'monkey', 8, 'be'],
 ['384', 'a', 'det', 7, 26, 'monkey', 8, 'a'],
 ['385', 'monkey', 'root', 8, 26, 'ROOT', 0, 'monkey'],
 ['386', 'I', 'root', 1, 27, 'ROOT', 0, 'I'],
 ['387', 'I', 'dep', 2, 27, 'I', 1, 'I'],
 ['388', 'the', 'dep', 3, 27, 'I', 2, 'the'],
 ['389', 'smoke', 'root', 1, 28, 'ROOT', 0, 'smoke'],
 ['390', 'even', 'advmod', 2, 28, 'na', 11, 'even'],
 ['391', 'for', 'mark', 3, 28, 'na', 11, 'for'],
 ['392', 'a', 'compound', 4, 28, 'one', 7, 'a'],
 ['393', 'and', 'cc', 5, 28, 'a', 4, 'and'],
 ['394', 'then', 'advmod', 6, 28, 'a', 4, 'then'],
 ['395', 'one', 'nsubj', 7, 28, 'na', 11, 'one'],
 ['396', 'for', 'case', 8, 28, 'gon', 10, 'for'],
 ['397', 'the', 'det', 9, 28, 'gon', 10, 'the'],
 ['398', 'gon', 'nmod:for', 10, 28, 'one', 7, 'gon'],
 ['399', 'na', 'advcl', 11, 28, 'smoke', 1, 'na'],
 ['400', 'real', 'advmod', 12, 28, 'no', 13, 'real'],
 ['401', 'no', 'advmod', 13, 28, 'na', 11, 'no'],
 ['402', 'and', 'cc', 14, 28, 'na', 11, 'and'],
 ['403', 'when', 'advcl', 15, 28, 'smoke', 1, 'when'],
 ['404', 'when', 'conj:and', 15, 28, 'na', 11, 'when'],
 ['405', 'the', 'det', 16, 28, 'other', 17, 'the'],
 ['406', 'other', 'dep', 17, 28, 'when', 15, 'other'],
 ['407', 'with', 'case', 18, 28, 'them', 19, 'with'],
 ['408', 'them', 'nmod:with', 19, 28, 'other', 17, 'them'],
 ['409', 'right', 'advmod', 1, 29, 'here', 2, 'right'],
 ['410', 'here', 'advmod', 2, 29, 'take', 5, 'here'],
 ['411', 'you', 'nsubj', 3, 29, 'take', 5, 'you'],
 ['412', 'can', 'aux', 4, 29, 'take', 5, 'can'],
 ['413', 'take', 'root', 5, 29, 'ROOT', 0, 'take'],
 ['414', 'as', 'mark', 6, 29, 'feel', 28, 'a'],
 ['415', 'long', 'advmod', 7, 29, 'today', 25, 'long'],
 ['416', 'over', 'mark', 8, 29, 'today', 25, 'over'],
 ['417', 'this', 'nsubj', 9, 29, 'today', 25, 'this'],
 ['418', 'is', 'cop', 10, 29, 'today', 25, 'be'],
 ['419', 'a', 'det', 11, 29, 'today', 25, 'a'],
 ['420', 'like', 'dep', 12, 29, 'today', 25, 'like'],
 ['421', 'because', 'mark', 13, 29, 'got', 17, 'because'],
 ['422', 'we', 'nsubj', 14, 29, 'got', 17, 'we'],
 ['423', 'have', 'aux', 15, 29, 'got', 17, 'have'],
 ['424', "n't", 'neg', 16, 29, 'got', 17, "n't"],
 ['425', 'got', 'advcl', 17, 29, 'like', 12, 'get'],
 ['426', 'an', 'det', 18, 29, 'lot', 20, 'an'],
 ['427', 'awful', 'amod', 19, 29, 'lot', 20, 'awful'],
 ['428', 'lot', 'dobj', 20, 29, 'got', 17, 'lot'],
 ['429', 'there', 'expl', 21, 29, "'s", 22, 'there'],
 ['430', "'s", 'acl:relcl', 22, 29, 'lot', 20, "'s"],
 ['431', 'of', 'case', 23, 29, 'day', 24, 'of'],
 ['432', 'day', 'nmod:of', 24, 29, "'s", 22, 'day'],
 ['433', 'today', 'csubj', 25, 29, 'feel', 28, 'today'],
 ['434', 'do', 'aux', 26, 29, 'feel', 28, 'do'],
 ['435', "n't", 'neg', 27, 29, 'feel', 28, "n't"],
 ['436', 'feel', 'advcl', 28, 29, 'take', 5, 'feel'],
 ['437', 'like', 'case', 29, 29, 'interaction', 31, 'like'],
 ['438', 'your', 'nmod:poss', 30, 29, 'interaction', 31, 'your'],
 ['439', 'interaction', 'nmod:like', 31, 29, 'feel', 28, 'interaction'],
 ['440', 'anyway', 'advmod', 32, 29, 'feel', 28, 'anyway'],
 ['441', 'actually', 'advmod', 1, 30, 'told', 2, 'actually'],
 ['442', 'told', 'root', 2, 30, 'ROOT', 0, 'told'],
 ['443', 'me', 'nsubj', 3, 30, 'told', 2, 'me'],
 ['444', 'a', 'det', 4, 30, 'lot', 5, 'a'],
 ['445', 'lot', 'nmod:npmod', 5, 30, 'more', 6, 'lot'],
 ['446', 'more', 'advmod', 6, 30, 'eagles', 9, 'more'],
 ['447', 'about', 'case', 7, 30, 'eagles', 9, 'about'],
 ['448', 'the', 'det', 8, 30, 'eagles', 9, 'the'],
 ['449', 'eagles', 'nmod:about', 9, 30, 'told', 2, 'eagle'],
 ['450', 'it', 'nsubj', 10, 30, "'s", 11, 'it'],
 ['451', "'s", 'acl:relcl', 11, 30, 'eagles', 9, "'s"],
 ['452', 'so', 'advmod', 1, 31, 'much', 2, 'so'],
 ['453', 'much', 'csubj', 2, 31, 'gon', 17, 'much'],
 ['454', 'or', 'cc', 3, 31, 'much', 2, 'or'],
 ['455', 'what', 'nsubj', 4, 31, 'have', 5, 'what'],
 ['456', 'what', 'nsubj', 4, 31, 'get', 7, 'what'],
 ['457', 'have', 'conj:or', 5, 31, 'much', 2, 'have'],
 ['458', 'have', 'csubj', 5, 31, 'gon', 17, 'have'],
 ['459', 'to', 'mark', 6, 31, 'get', 7, 'to'],
 ['460', 'get', 'xcomp', 7, 31, 'have', 5, 'get'],
 ['461', 'yeah', 'dobj', 8, 31, 'get', 7, 'yeah'],
 ['462', 'because', 'mark', 9, 31, 'know', 13, 'because'],
 ['463', 'I', 'nsubj', 10, 31, 'know', 13, 'I'],
 ['464', 'do', 'aux', 11, 31, 'know', 13, 'do'],
 ['465', "n't", 'neg', 12, 31, 'know', 13, "n't"],
 ['466', 'know', 'advcl', 13, 31, 'get', 7, 'know'],
 ['467', 'mine', 'dobj', 14, 31, 'know', 13, 'mine'],
 ['468', 'is', 'aux', 15, 31, 'gon', 17, 'be'],
 ['469', "n't", 'neg', 16, 31, 'gon', 17, "n't"],
 ['470', 'gon', 'root', 17, 31, 'ROOT', 0, 'gon'],
 ['471', 'na', 'mark', 18, 31, 'think', 19, 'na'],
 ['472', 'think', 'xcomp', 19, 31, 'gon', 17, 'think'],
 ['473', 'on', 'case', 20, 31, 'spot', 22, 'on'],
 ['474', 'the', 'det', 21, 31, 'spot', 22, 'the'],
 ['475', 'spot', 'nmod:on', 22, 31, 'think', 19, 'spot'],
 ['476', 'oh', 'root', 2, 32, 'ROOT', 0, 'oh'],
 ['477', 'is', 'cop', 1, 33, 'yeah', 5, 'be'],
 ['478', 'that', 'nsubj', 2, 33, 'yeah', 5, 'that'],
 ['479', 'a', 'det', 3, 33, 'whale', 4, 'a'],
 ['480', 'whale', 'nsubj', 4, 33, 'yeah', 5, 'whale'],
 ['481', 'yeah', 'dep', 5, 33, 'animal', 41, 'yeah'],
 ['482', 'yeah', 'amod', 6, 33, 'I.', 7, 'yeah'],
 ['483', 'I.', 'dobj', 7, 33, 'yeah', 5, 'I.'],
 ['484', 'well', 'advmod', 8, 33, 'yeah', 5, 'well'],
 ['485', 'like', 'mark', 9, 33, 'know', 13, 'like'],
 ['486', 'I', 'nsubj', 10, 33, 'know', 13, 'I'],
 ['487', 'do', 'aux', 11, 33, 'know', 13, 'do'],
 ['488', "n't", 'neg', 12, 33, 'know', 13, "n't"],
 ['489', 'know', 'advcl', 13, 33, 'yeah', 5, 'know'],
 ['490', 'it', 'nsubj', 14, 33, "'s", 15, 'it'],
 ['491', "'s", 'ccomp', 15, 33, 'know', 13, "'s"],
 ['492', 'just', 'advmod', 16, 33, 'think', 21, 'just'],
 ['493', 'for', 'mark', 17, 33, 'think', 21, 'for'],
 ['494', 'am', 'advmod', 18, 33, 'I', 19, 'be'],
 ['495', 'I', 'nsubj', 19, 33, 'think', 21, 'I'],
 ['496', 'can', 'aux', 20, 33, 'think', 21, 'can'],
 ['497', 'think', 'advcl', 21, 33, "'s", 15, 'think'],
 ['498', 'of', 'case', 22, 33, 'top', 24, 'of'],
 ['499', 'the', 'det', 23, 33, 'top', 24, 'the'],
 ['500', 'top', 'nmod:of', 24, 33, 'think', 21, 'top'],
 ['501', 'of', 'case', 25, 33, 'figure', 28, 'of'],
 ['502', 'my', 'nmod:poss', 26, 33, 'figure', 28, 'my'],
 ['503', 'head', 'compound', 27, 33, 'figure', 28, 'head'],
 ['504', 'figure', 'nmod:of', 28, 33, 'top', 24, 'figure'],
 ['505', 'is', 'cop', 29, 33, 'this', 31, 'be'],
 ['506', 'in', 'case', 30, 33, 'this', 31, 'in'],
 ['507', 'this', 'acl:relcl', 31, 33, 'figure', 28, 'this'],
 ['508', "'cause", 'advmod', 33, 33, 'yeah', 5, "'cause"],
 ['509', 'I', 'nsubj', 35, 33, 'animal', 41, 'I'],
 ['510', "'m", 'cop', 36, 33, 'animal', 41, "'m"],
 ['511', 'allergic', 'advmod', 37, 33, 'animal', 41, 'allergic'],
 ['512', 'to', 'case', 38, 33, 'animals', 40, 'to'],
 ['513', 'most', 'amod', 39, 33, 'animals', 40, 'most'],
 ['514', 'animals', 'nmod:to', 40, 33, 'allergic', 37, 'animal'],
 ['515', 'animal', 'root', 41, 33, 'ROOT', 0, 'animal'],
 ['516', 'for', 'mark', 42, 33, 'choice', 48, 'for'],
 ['517', 'so', 'mark', 43, 33, 'choice', 48, 'so'],
 ['518', 'fish', 'nsubj', 44, 33, 'choice', 48, 'fish'],
 ['519', 'was', 'cop', 45, 33, 'choice', 48, 'be'],
 ['520', 'a', 'det', 46, 33, 'choice', 48, 'a'],
 ['521', 'natural', 'amod', 47, 33, 'choice', 48, 'natural'],
 ['522', 'choice', 'advcl', 48, 33, 'animal', 41, 'choice'],
 ['523', 'it', 'nsubj', 49, 33, 'becoming', 51, 'it'],
 ['524', 'was', 'aux', 50, 33, 'becoming', 51, 'be'],
 ['525', 'becoming', 'acl:relcl', 51, 33, 'choice', 48, 'become'],
 ['526', 'ill', 'xcomp', 52, 33, 'becoming', 51, 'ill'],
 ['527', 'I', 'nsubj', 1, 34, 'mean', 2, 'I'],
 ['528', 'mean', 'root', 2, 34, 'ROOT', 0, 'mean'],
 ['529', 'so', 'advmod', 3, 34, 'mean', 2, 'so'],
 ['530', 'I', 'dobj', 4, 34, 'mean', 2, 'I'],
 ['531', 'for', 'case', 5, 34, 'mess', 7, 'for'],
 ['532', 'a', 'det', 6, 34, 'mess', 7, 'a'],
 ['533', 'mess', 'nmod:for', 7, 34, 'mean', 2, 'mess'],
 ['534', 'and', 'cc', 1, 35, 'mild', 2, 'and'],
 ['535', 'mild', 'root', 2, 35, 'ROOT', 0, 'mild'],
 ['536', 'an', 'det', 3, 35, 'interesting', 4, 'an'],
 ['537', 'interesting', 'dobj', 4, 35, 'mild', 2, 'interest'],
 ['538', 'okay', 'root', 1, 36, 'ROOT', 0, 'okay'],
 ['539', 'I', 'nsubj', 2, 36, 'interaction', 6, 'I'],
 ['540', 'still', 'advmod', 3, 36, 'interaction', 6, 'still'],
 ['541', 'did', 'aux', 4, 36, 'interaction', 6, 'do'],
 ['542', "n't", 'neg', 5, 36, 'interaction', 6, "n't"],
 ['543', 'interaction', 'dep', 6, 36, 'okay', 1, 'interaction'],
 ['544', 'with', 'nmod', 7, 36, 'interaction', 6, 'with'],
 ['545', 'superb', 'amod', 1, 37, 'sketch', 2, 'superb'],
 ['546', 'sketch', 'nsubj', 2, 37, 'yeah', 6, 'sketch'],
 ['547', 'by', 'case', 3, 37, 'way', 5, 'by'],
 ['548', 'the', 'det', 4, 37, 'way', 5, 'the'],
 ['549', 'way', 'nmod:by', 5, 37, 'sketch', 2, 'way'],
 ['550', 'yeah', 'root', 6, 37, 'ROOT', 0, 'yeah'],
 ['551', 'okay', 'xcomp', 7, 37, 'yeah', 6, 'okay'],
 ['552', 'I', 'nsubj', 8, 37, 'was', 9, 'I'],
 ['553', 'was', 'ccomp', 9, 37, 'okay', 7, 'be'],
 ['554', 'gon', 'root', 1, 38, 'ROOT', 0, 'gon'],
 ['555', 'na', 'mark', 2, 38, 'choose', 3, 'na'],
 ['556', 'choose', 'xcomp', 3, 38, 'gon', 1, 'choose'],
 ['557', 'a', 'det', 4, 38, 'dog', 5, 'a'],
 ['558', 'dog', 'dobj', 5, 38, 'choose', 3, 'dog'],
 ['559', 'as', 'advmod', 6, 38, 'choose', 3, 'a'],
 ['560', 'well', 'mwe', 7, 38, 'as', 6, 'well'],
 ['561', 'But', 'cc', 1, 39, 'animal', 12, 'But'],
 ['562', 'I', 'nsubj', 2, 39, 'animal', 12, 'I'],
 ['563', 'just', 'advmod', 3, 39, 'animal', 12, 'just'],
 ['564', 'a', 'det', 4, 39, 'kind', 6, 'a'],
 ['565', 'different', 'amod', 5, 39, 'kind', 6, 'different'],
 ['566', 'kind', 'nsubj', 6, 39, 'animal', 12, 'kind'],
 ['567', 'of', 'case', 7, 39, 'dogs', 8, 'of'],
 ['568', 'dogs', 'nmod:of', 8, 39, 'kind', 6, 'dog'],
 ['569', 'are', 'cop', 9, 39, 'animal', 12, 'be'],
 ['570', 'my', 'nmod:poss', 10, 39, 'animal', 12, 'my'],
 ['571', 'favourite', 'amod', 11, 39, 'animal', 12, 'favourite'],
 ['572', 'animal', 'root', 12, 39, 'ROOT', 0, 'animal'],
 ['573', 'animal', 'nsubj', 12, 39, 'look', 23, 'animal'],
 ['574', 'is', 'cop', 13, 39, 'dog', 15, 'be'],
 ['575', 'my', 'nmod:poss', 14, 39, 'dog', 15, 'my'],
 ['576', 'dog', 'acl:relcl', 15, 39, 'animal', 12, 'dog'],
 ['577', 'dog', 'nsubj', 15, 39, 'look', 23, 'dog'],
 ['578', 'at', 'case', 16, 39, 'I', 18, 'at'],
 ['579', 'home', 'compound', 17, 39, 'I', 18, 'home'],
 ['580', 'I', 'nmod:at', 18, 39, 'dog', 15, 'I'],
 ['581', 'that', 'ref', 19, 39, 'animal', 12, 'that'],
 ['582', 'that', 'ref', 19, 39, 'dog', 15, 'that'],
 ['583', 'does', 'aux', 20, 39, 'look', 23, 'do'],
 ['584', "n't", 'neg', 21, 39, 'look', 23, "n't"],
 ['585', 'really', 'advmod', 22, 39, 'look', 23, 'really'],
 ['586', 'look', 'acl:relcl', 23, 39, 'dog', 15, 'look'],
 ['587', 'like', 'mark', 24, 39, 'looks', 26, 'like'],
 ['588', 'actually', 'advmod', 25, 39, 'looks', 26, 'actually'],
 ['589', 'looks', 'advcl', 26, 39, 'look', 23, 'look'],
 ['590', 'more', 'advmod', 27, 39, 'looks', 26, 'more'],
 ['591', 'like', 'case', 28, 39, 'pig', 30, 'like'],
 ['592', 'a', 'det', 29, 39, 'pig', 30, 'a'],
 ['593', 'pig', 'nmod:like', 30, 39, 'more', 27, 'pig'],
 ['594', 'actually', 'advmod', 31, 39, 'pig', 30, 'actually'],
 ['595', 'oh', 'nmod:npmod', 32, 39, 'right', 33, 'oh'],
 ['596', 'right', 'advmod', 33, 39, 'pig', 30, 'right'],
 ['597', 'see', 'root', 1, 40, 'ROOT', 0, 'see'],
 ['598', 'a', 'det', 1, 41, 'dog', 2, 'a'],
 ['599', 'dog', 'nsubj', 2, 41, 'yeah', 5, 'dog'],
 ['600', 'in', 'case', 3, 41, 'there', 4, 'in'],
 ['601', 'there', 'nmod:in', 4, 41, 'dog', 2, 'there'],
 ['602', 'yeah', 'root', 5, 41, 'ROOT', 0, 'yeah'],
 ['603', 'yeah', 'dobj', 6, 41, 'yeah', 5, 'yeah'],
 ['604', 'yeah', 'nsubj', 6, 41, 'idea', 11, 'yeah'],
 ['605', 'that', 'ref', 7, 41, 'yeah', 6, 'that'],
 ['606', "'s", 'cop', 8, 41, 'idea', 11, "'s"],
 ['607', 'a', 'det', 9, 41, 'idea', 11, 'a'],
 ['608', 'good', 'amod', 10, 41, 'idea', 11, 'good'],
 ['609', 'idea', 'acl:relcl', 11, 41, 'yeah', 6, 'idea'],
 ['610', 'no', 'neg', 12, 41, 'serious', 13, 'no'],
 ['611', 'serious', 'amod', 13, 41, 'idea', 11, 'serious'],
 ['612', 'too', 'advmod', 14, 41, 'idea', 11, 'too'],
 ['613', 'I', 'dep', 1, 42, 'mixture', 11, 'I'],
 ['614', 'what', 'det', 2, 42, 'kind', 3, 'what'],
 ['615', 'kind', 'dep', 3, 42, 'I', 1, 'kind'],
 ['616', 'of', 'case', 4, 42, "'em", 6, 'of'],
 ['617', "'em", 'nmod:of', 6, 42, 'I', 1, "'em"],
 ['618', 'he', 'nsubj', 8, 42, 'mixture', 11, 'he'],
 ['619', "'s", 'cop', 9, 42, 'mixture', 11, "'s"],
 ['620', 'a', 'det', 10, 42, 'mixture', 11, 'a'],
 ['621', 'mixture', 'root', 11, 42, 'ROOT', 0, 'mixture'],
 ['622', 'of', 'case', 12, 42, 'things', 15, 'of'],
 ['623', 'of', 'case', 13, 42, 'things', 15, 'of'],
 ['624', 'various', 'amod', 14, 42, 'things', 15, 'various'],
 ['625', 'things', 'acl:of', 15, 42, 'mixture', 11, 'thing'],
 ['626', 'Um', 'nsubj', 1, 43, 'like', 5, 'Um'],
 ['627', 'and', 'cc', 2, 43, 'Um', 1, 'and'],
 ['628', 'what', 'det', 3, 43, 'I', 4, 'what'],
 ['629', 'I', 'conj:and', 4, 43, 'Um', 1, 'I'],
 ['630', 'I', 'nsubj', 4, 43, 'like', 5, 'I'],
 ['631', 'like', 'root', 5, 43, 'ROOT', 0, 'like'],
 ['632', 'about', 'case', 6, 43, 'it', 7, 'about'],
 ['633', 'it', 'nmod:about', 7, 43, 'like', 5, 'it'],
 ['634', 'Um', 'root', 1, 44, 'ROOT', 0, 'Um'],
 ['635', 'that', 'mark', 2, 44, 'death', 7, 'that'],
 ['636', "'s", 'cop', 3, 44, 'death', 7, "'s"],
 ['637', 'just', 'advmod', 4, 44, 'death', 7, 'just'],
 ['638', 'as', 'case', 5, 44, 'death', 7, 'a'],
 ['639', 'the', 'det', 6, 44, 'death', 7, 'the'],
 ['640', 'death', 'ccomp', 7, 44, 'Um', 1, 'death'],
 ['641', 'that', 'mark', 8, 44, 'why', 11, 'that'],
 ['642', 'his', 'nmod:poss', 9, 44, 'tail', 10, 'his'],
 ['643', 'tail', 'nsubj', 10, 44, 'why', 11, 'tail'],
 ['644', 'why', 'ccomp', 11, 44, 'death', 7, 'why'],
 ['645', 'And', 'cc', 1, 45, 'friendly', 3, 'And'],
 ['646', 'very', 'advmod', 2, 45, 'friendly', 3, 'very'],
 ['647', 'friendly', 'root', 3, 45, 'ROOT', 0, 'friendly'],
 ['648', 'and', 'cc', 4, 45, 'friendly', 3, 'and'],
 ['649', 'teary', 'conj:and', 5, 45, 'friendly', 3, 'teary'],
 ['650', 'and', 'cc', 6, 45, 'friendly', 3, 'and'],
 ['651', 'always', 'advmod', 7, 45, 'pleased', 8, 'always'],
 ['652', 'pleased', 'conj:and', 8, 45, 'friendly', 3, 'pleased'],
 ['653', 'to', 'mark', 9, 45, 'see', 10, 'to'],
 ['654', 'see', 'xcomp', 10, 45, 'pleased', 8, 'see'],
 ['655', 'you', 'dobj', 11, 45, 'see', 10, 'you'],
 ['656', 'and', 'cc', 12, 45, 'pleased', 8, 'and'],
 ['657', 'of', 'mwe', 15, 45, 'kind', 14, 'of'],
 ['658', 'and', 'cc', 17, 45, 'friendly', 3, 'and'],
 ['659', 'and', 'cc', 18, 45, 'we', 23, 'and'],
 ['660', 'it', 'nsubj', 19, 45, 'we', 23, 'it'],
 ['661', "'s", 'cop', 20, 45, 'we', 23, "'s"],
 ['662', 'quite', 'advmod', 21, 45, 'quite', 22, 'quite'],
 ['663', 'quite', 'advmod', 22, 45, 'we', 23, 'quite'],
 ['664', 'we', 'conj:and', 23, 45, 'friendly', 3, 'we'],
 ['665', 'as', 'advmod', 24, 45, 'know', 28, 'a'],
 ['666', 'well', 'mwe', 25, 45, 'as', 24, 'well'],
 ['667', 'so', 'mark', 26, 45, 'know', 28, 'so'],
 ['668', 'you', 'nsubj', 27, 45, 'know', 28, 'you'],
 ['669', 'know', 'advcl', 28, 45, 'we', 23, 'know'],
 ['670', 'you', 'nsubj', 29, 45, 'take', 33, 'you'],
 ['671', 'can', 'aux', 30, 45, 'take', 33, 'can'],
 ['672', 'does', 'aux', 31, 45, 'take', 33, 'do'],
 ['673', "n't", 'neg', 32, 45, 'take', 33, "n't"],
 ['674', 'take', 'ccomp', 33, 45, 'know', 28, 'take'],
 ['675', 'too', 'advmod', 35, 45, 'much', 36, 'too'],
 ['676', 'much', 'amod', 36, 45, 'space', 37, 'much'],
 ['677', 'space', 'dobj', 37, 45, 'take', 33, 'space'],
 ['678', 'Um', 'root', 1, 46, 'ROOT', 0, 'Um'],
 ['679', 'the', 'det', 2, 46, 'thing', 3, 'the'],
 ['680', 'thing', 'nsubj', 3, 46, 'does', 4, 'thing'],
 ['681', 'does', 'ccomp', 4, 46, 'Um', 1, 'do'],
 ['682', 'a', 'det', 5, 46, 'thing', 7, 'a'],
 ['683', 'funny', 'amod', 6, 46, 'thing', 7, 'funny'],
 ['684', 'thing', 'nsubj', 7, 46, 'reaches', 8, 'thing'],
 ['685', 'reaches', 'ccomp', 8, 46, 'does', 4, 'reach'],
 ['686', 'detail', 'dobj', 9, 46, 'reaches', 8, 'detail'],
 ['687', 'That', 'nsubj', 1, 47, 'yeah', 5, 'That'],
 ['688', "'s", 'cop', 2, 47, 'yeah', 5, "'s"],
 ['689', 'quite', 'advmod', 3, 47, 'amusing', 4, 'quite'],
 ['690', 'amusing', 'amod', 4, 47, 'yeah', 5, 'amuse'],
 ['691', 'yeah', 'root', 5, 47, 'ROOT', 0, 'yeah'],
 ['692', 'where', 'advmod', 6, 47, 'genitalia', 10, 'where'],
 ['693', 'this', 'dep', 7, 47, 'genitalia', 10, 'this'],
 ['694', 'his', 'nmod:poss', 8, 47, 'genitalia', 10, 'his'],
 ['695', 'own', 'amod', 9, 47, 'genitalia', 10, 'own'],
 ['696', 'genitalia', 'acl:relcl', 10, 47, 'yeah', 5, 'genitalia'],
 ['697', 'thing', 'root', 1, 48, 'ROOT', 0, 'thing'],
 ['698', 'I', 'nsubj', 1, 49, 'think', 2, 'I'],
 ['699', 'think', 'root', 2, 49, 'ROOT', 0, 'think'],
 ['700', 'anything', 'dobj', 3, 49, 'think', 2, 'anything'],
 ['701', 'and', 'cc', 4, 49, 'think', 2, 'and'],
 ['702', 'it', 'nsubj', 5, 49, 'had', 8, 'it'],
 ['703', 'has', 'aux', 6, 49, 'had', 8, 'have'],
 ['704', 'actually', 'advmod', 7, 49, 'had', 8, 'actually'],
 ['705', 'had', 'conj:and', 8, 49, 'think', 2, 'have'],
 ['706', 'is', 'cop', 9, 49, 'I', 11, 'be'],
 ['707', 'dinner', 'compound', 10, 49, 'I', 11, 'dinner'],
 ['708', 'I', 'ccomp', 11, 49, 'had', 8, 'I'],
 ['709', 'and', 'cc', 12, 49, 'I', 11, 'and'],
 ['710', 'it', 'ccomp', 13, 49, 'had', 8, 'it'],
 ['711', 'it', 'conj:and', 13, 49, 'I', 11, 'it'],
 ['712', 'just', 'advmod', 14, 49, 'get', 20, 'just'],
 ['713', 'all', 'nsubj', 15, 49, 'get', 20, 'all'],
 ['714', 'all', 'nsubj', 15, 49, 'start', 23, 'all'],
 ['715', 'of', 'case', 16, 49, 'sudden', 18, 'of'],
 ['716', 'a', 'det', 17, 49, 'sudden', 18, 'a'],
 ['717', 'sudden', 'nmod:of', 18, 49, 'all', 15, 'sudden'],
 ['718', 'is', 'aux', 19, 49, 'get', 20, 'be'],
 ['719', 'get', 'ccomp', 20, 49, 'had', 8, 'get'],
 ['720', 'and', 'cc', 22, 49, 'get', 20, 'and'],
 ['721', 'start', 'ccomp', 23, 49, 'had', 8, 'start'],
 ['722', 'start', 'conj:and', 23, 49, 'get', 20, 'start'],
 ['723', 'chasing', 'xcomp', 24, 49, 'start', 23, 'chase'],
 ['724', 'his', 'nmod:poss', 25, 49, 'pipe', 27, 'his'],
 ['725', 'tail', 'amod', 26, 49, 'pipe', 27, 'tail'],
 ['726', 'pipe', 'dobj', 27, 49, 'chasing', 24, 'pipe'],
 ['727', 'it', 'dobj', 28, 49, 'get', 20, 'it'],
 ['728', 'around', 'case', 29, 49, 'yeah', 33, 'around'],
 ['729', 'the', 'det', 30, 49, 'yeah', 33, 'the'],
 ['730', 'living', 'amod', 31, 49, 'yeah', 33, 'living'],
 ['731', 'room', 'compound', 32, 49, 'yeah', 33, 'room'],
 ['732', 'yeah', 'nmod:around', 33, 49, 'get', 20, 'yeah'],
 ['733', 'only', 'advmod', 1, 50, 'when', 2, 'only'],
 ['734', 'when', 'advmod', 2, 50, 'use', 3, 'when'],
 ['735', 'use', 'advcl', 3, 50, 'got', 6, 'use'],
 ['736', 'little', 'advmod', 4, 50, 'use', 3, 'little'],
 ['737', 'he', 'nsubj', 5, 50, 'got', 6, 'he'],
 ['738', 'got', 'root', 6, 50, 'ROOT', 0, 'get'],
 ['739', 'lots', 'dobj', 7, 50, 'got', 6, 'lot'],
 ['740', 'of', 'case', 8, 50, 'attention', 9, 'of'],
 ['741', 'attention', 'nmod:of', 9, 50, 'lots', 7, 'attention'],
 ['742', 'for', 'mark', 10, 50, 'doing', 11, 'for'],
 ['743', 'doing', 'advcl', 11, 50, 'got', 6, 'do'],
 ['744', 'it', 'dobj', 12, 50, 'doing', 11, 'it'],
 ['745', 'and', 'cc', 13, 50, 'got', 6, 'and'],
 ['746', 'I', 'nsubj', 14, 50, 'conditioned', 15, 'I'],
 ['747', 'conditioned', 'conj:and', 15, 50, 'got', 6, 'condition'],
 ['748', 'maybe', 'advmod', 1, 51, 'yeah', 2, 'maybe'],
 ['749', 'yeah', 'root', 2, 51, 'ROOT', 0, 'yeah'],
 ['750', 'that', 'dobj', 3, 51, 'yeah', 2, 'that'],
 ['751', 'where', 'advmod', 4, 51, 'did', 5, 'where'],
 ['752', 'did', 'advcl', 5, 51, 'yeah', 2, 'do'],
 ['753', 'you', 'nsubj', 6, 51, 'find', 7, 'you'],
 ['754', 'find', 'ccomp', 7, 51, 'did', 5, 'find'],
 ['755', 'this', 'nsubj', 8, 51, 'Reading', 13, 'this'],
 ['756', 'just', 'advmod', 9, 51, 'here', 11, 'just'],
 ['757', 'down', 'advmod', 10, 51, 'here', 11, 'down'],
 ['758', 'here', 'advmod', 11, 51, 'okay', 12, 'here'],
 ['759', 'okay', 'dep', 12, 51, 'Reading', 13, 'okay'],
 ['760', 'Reading', 'xcomp', 13, 51, 'find', 7, 'Reading'],
 ['761', 'next', 'dobj', 14, 51, 'Reading', 13, 'next'],
 ['762', 'Um', 'compound', 1, 52, 'okay', 2, 'Um'],
 ['763', 'okay', 'nsubj', 2, 52, 'mean', 3, 'okay'],
 ['764', 'mean', 'root', 3, 52, 'ROOT', 0, 'mean'],
 ['765', 'I', 'nsubj', 4, 52, 'need', 5, 'I'],
 ['766', 'I', 'nsubj', 4, 52, 'discuss', 7, 'I'],
 ['767', 'need', 'ccomp', 5, 52, 'mean', 3, 'need'],
 ['768', 'to', 'mark', 6, 52, 'discuss', 7, 'to'],
 ['769', 'discuss', 'xcomp', 7, 52, 'need', 5, 'discus'],
 ['770', 'the', 'det', 8, 52, 'fine', 10, 'the'],
 ['771', 'project', 'compound', 9, 52, 'fine', 10, 'project'],
 ['772', 'fine', 'dobj', 10, 52, 'discuss', 7, 'fine'],
 ['773', 'now', 'advmod', 11, 52, 'discuss', 7, 'now'],
 ['774', 'so', 'mark', 12, 52, 'gon', 19, 'so'],
 ['775', 'according', 'case', 13, 52, 'brief', 16, 'accord'],
 ['776', 'to', 'mwe', 14, 52, 'according', 13, 'to'],
 ['777', 'the', 'det', 15, 52, 'brief', 16, 'the'],
 ['778', 'we', 'nsubj', 17, 52, 'gon', 19, 'we'],
 ['779', 'we', 'nsubj', 17, 52, 'selling', 22, 'we'],
 ['780', "'re", 'aux', 18, 52, 'gon', 19, "'re"],
 ['781', 'gon', 'advcl', 19, 52, 'discuss', 7, 'gon'],
 ['782', 'na', 'mark', 20, 52, 'selling', 22, 'na'],
 ['783', 'be', 'aux', 21, 52, 'selling', 22, 'be'],
 ['784', 'selling', 'xcomp', 22, 52, 'gon', 19, 'sell'],
 ['785', 'this', 'det', 23, 52, 'control', 25, 'this'],
 ['786', 'remote', 'amod', 24, 52, 'control', 25, 'remote'],
 ['787', 'control', 'dobj', 25, 52, 'selling', 22, 'control'],
 ['788', 'for', 'case', 26, 52, 'euro', 29, 'for'],
 ['789', 'twenty', 'nummod', 27, 52, 'euro', 29, 'twenty'],
 ['790', 'five', 'nummod', 28, 52, 'euro', 29, 'five'],
 ['791', 'euro', 'nmod:for', 29, 52, 'control', 25, 'euro'],
 ['792', 'Um', 'nsubj', 1, 53, 'aiming', 5, 'Um'],
 ['793', 'Um', 'nsubj', 1, 53, 'make', 7, 'Um'],
 ['794', 'and', 'cc', 2, 53, 'Um', 1, 'and'],
 ['795', 'we', 'conj:and', 3, 53, 'Um', 1, 'we'],
 ['796', 'we', 'nsubj', 3, 53, 'aiming', 5, 'we'],
 ['797', 'we', 'nsubj', 3, 53, 'make', 7, 'we'],
 ['798', "'re", 'aux', 4, 53, 'aiming', 5, "'re"],
 ['799', 'aiming', 'root', 5, 53, 'ROOT', 0, 'aim'],
 ['800', 'to', 'mark', 6, 53, 'make', 7, 'to'],
 ['801', 'make', 'xcomp', 7, 53, 'aiming', 5, 'make'],
 ['802', 'fifty', 'advmod', 8, 53, 'make', 7, 'fifty'],
 ['803', 'million', 'compound', 9, 53, 'euro', 10, 'million'],
 ['804', 'euro', 'dobj', 10, 53, 'make', 7, 'euro'],
 ['805', 'Um', 'root', 1, 54, 'ROOT', 0, 'Um'],
 ['806', 'so', 'mark', 2, 54, 'gon', 5, 'so'],
 ['807', 'we', 'nsubj', 3, 54, 'gon', 5, 'we'],
 ['808', 'we', 'nsubj', 3, 54, 'selling', 8, 'we'],
 ['809', "'re", 'aux', 4, 54, 'gon', 5, "'re"],
 ['810', 'gon', 'advcl', 5, 54, 'Um', 1, 'gon'],
 ['811', 'na', 'mark', 6, 54, 'selling', 8, 'na'],
 ['812', 'be', 'aux', 7, 54, 'selling', 8, 'be'],
 ['813', 'selling', 'xcomp', 8, 54, 'gon', 5, 'sell'],
 ['814', 'this', 'dobj', 9, 54, 'selling', 8, 'this'],
 ['815', 'on', 'case', 10, 54, 'scale', 13, 'on'],
 ['816', 'an', 'det', 11, 54, 'scale', 13, 'an'],
 ['817', 'scale', 'nmod:on', 13, 54, 'this', 9, 'scale'],
 ['818', 'And', 'cc', 1, 55, 'do', 3, 'And'],
 ['819', 'we', 'nsubj', 2, 55, 'do', 3, 'we'],
 ['820', 'do', 'root', 3, 55, 'ROOT', 0, 'do'],
 ['821', 'want', 'ccomp', 4, 55, 'do', 3, 'want'],
 ['822', 'to', 'mark', 5, 55, 'cost', 6, 'to'],
 ['823', 'cost', 'xcomp', 6, 55, 'want', 4, 'cost'],
 ['824', 'anymore', 'advmod', 7, 55, 'cost', 6, 'anymore'],
 ['825', 'than', 'case', 8, 55, 'euros', 11, 'than'],
 ['826', 'twelve', 'nummod', 9, 55, 'euros', 11, 'twelve'],
 ['827', 'fifty', 'amod', 10, 55, 'euros', 11, 'fifty'],
 ['828', 'euros', 'nmod:than', 11, 55, 'cost', 6, 'euro'],
 ['829', 'so', 'advmod', 12, 55, 'cost', 6, 'so'],
 ['830', 'fifty', 'amod', 13, 55, 'percent', 14, 'fifty'],
 ['831', 'percent', 'nmod:npmod', 14, 55, 'so', 12, 'percent'],
 ['832', 'to', 'case', 15, 55, 'price', 18, 'to'],
 ['833', 'the', 'det', 16, 55, 'price', 18, 'the'],
 ['834', 'selling', 'amod', 17, 55, 'price', 18, 'sell'],
 ['835', 'price', 'nmod:to', 18, 55, 'so', 12, 'price'],
 ['836', 'and', 'cc', 1, 56, 'go', 4, 'and'],
 ['837', 'we', 'nsubj', 2, 56, 'go', 4, 'we'],
 ['838', 'just', 'advmod', 3, 56, 'go', 4, 'just'],
 ['839', 'go', 'root', 4, 56, 'ROOT', 0, 'go'],
 ['840', 'that', 'mark', 6, 56, 'wholesale', 28, 'that'],
 ['841', 'again', 'advmod', 7, 56, 'sure', 8, 'again'],
 ['842', 'sure', 'advmod', 8, 56, 'so', 9, 'sure'],
 ['843', 'so', 'advmod', 9, 56, 'okay', 12, 'so'],
 ['844', 'this', 'det', 10, 56, 'alright', 11, 'this'],
 ['845', 'alright', 'nmod:npmod', 11, 56, 'so', 9, 'alright'],
 ['846', 'okay', 'csubj', 12, 56, 'wholesale', 28, 'okay'],
 ['847', 'okay', 'csubj', 12, 56, 'retail', 30, 'okay'],
 ['848', 'so', 'mark', 13, 56, 'fifty', 21, 'so'],
 ['849', 'cost', 'nsubj', 14, 56, 'fifty', 21, 'cost'],
 ['850', 'like', 'case', 15, 56, 'cost', 17, 'like'],
 ['851', 'production', 'compound', 16, 56, 'cost', 17, 'production'],
 ['852', 'cost', 'nmod:like', 17, 56, 'cost', 14, 'cost'],
 ['853', 'is', 'cop', 18, 56, 'fifty', 21, 'be'],
 ['854', 'altogether', 'advmod', 19, 56, 'fifty', 21, 'altogether'],
 ['855', 'a', 'det', 20, 56, 'fifty', 21, 'a'],
 ['856', 'fifty', 'advcl', 21, 56, 'okay', 12, 'fifty'],
 ['857', 'but', 'cc', 22, 56, 'okay', 12, 'but'],
 ['858', 'selling', 'conj:but', 23, 56, 'okay', 12, 'sell'],
 ['859', 'selling', 'csubj', 23, 56, 'wholesale', 28, 'sell'],
 ['860', 'price', 'dobj', 24, 56, 'selling', 23, 'price'],
 ['861', 'is', 'aux', 25, 56, 'wholesale', 28, 'be'],
 ['862', 'is', 'cop', 26, 56, 'wholesale', 28, 'be'],
 ['863', 'that', 'dep', 27, 56, 'wholesale', 28, 'that'],
 ['864', 'wholesale', 'ccomp', 28, 56, 'go', 4, 'wholesale'],
 ['865', 'or', 'cc', 29, 56, 'wholesale', 28, 'or'],
 ['866', 'retail', 'ccomp', 30, 56, 'go', 4, 'retail'],
 ['867', 'retail', 'conj:or', 30, 56, 'wholesale', 28, 'retail'],
 ['868', 'like', 'case', 31, 56, 'shelf', 34, 'like'],
 ['869', 'on', 'case', 32, 56, 'shelf', 34, 'on'],
 ['870', 'the', 'det', 33, 56, 'shelf', 34, 'the'],
 ['871', 'shelf', 'nmod:like', 34, 56, 'wholesale', 28, 'shelf'],
 ['872', 'I', 'nsubj', 1, 57, 'dunno', 2, 'I'],
 ['873', 'dunno', 'root', 2, 57, 'ROOT', 0, 'dunno'],
 ['874', 'I', 'nsubj', 3, 57, 'imagine', 4, 'I'],
 ['875', 'imagine', 'ccomp', 4, 57, 'dunno', 2, 'imagine'],
 ['876', 'That', 'nsubj', 1, 58, 'gross', 3, 'That'],
 ['877', "'s", 'cop', 2, 58, 'gross', 3, "'s"],
 ['878', 'gross', 'root', 3, 58, 'ROOT', 0, 'gross'],
 ['879', 'two', 'nummod', 4, 58, 'hours', 5, 'two'],
 ['880', 'hours', 'nsubj', 5, 58, 'are', 10, 'hour'],
 ['881', 'I', 'nmod:npmod', 6, 58, 'marginal', 7, 'I'],
 ['882', 'marginal', 'amod', 7, 58, 'hours', 5, 'marginal'],
 ['883', 'probably', 'advmod', 8, 58, 'are', 10, 'probably'],
 ['884', 'is', 'aux', 9, 58, 'are', 10, 'be'],
 ['885', 'are', 'acl:relcl', 10, 58, 'gross', 3, 'be'],
 ['886', 'still', 'advmod', 11, 58, 'are', 10, 'still'],
 ['887', 'actually', 'advmod', 12, 58, 'up', 17, 'actually'],
 ['888', 'because', 'mark', 13, 58, 'up', 17, 'because'],
 ['889', 'it', 'nsubj', 14, 58, 'up', 17, 'it'],
 ['890', "'s", 'cop', 15, 58, 'up', 17, "'s"],
 ['891', 'probably', 'advmod', 16, 58, 'up', 17, 'probably'],
 ['892', 'up', 'advcl', 17, 58, 'still', 11, 'up'],
 ['893', 'to', 'case', 18, 58, 'retailer', 21, 'to'],
 ['894', 'the', 'det:predet', 19, 58, 'retailer', 21, 'the'],
 ['895', 'the', 'det', 20, 58, 'retailer', 21, 'the'],
 ['896', 'retailer', 'nmod:to', 21, 58, 'up', 17, 'retailer'],
 ['897', 'to', 'case', 22, 58, 'myself', 23, 'to'],
 ['898', 'myself', 'nmod:to', 23, 58, 'retailer', 21, 'myself'],
 ['899', 'whatever', 'dobj', 24, 58, 'have', 50, 'whatever'],
 ['900', 'price', 'nsubj', 25, 58, 'have', 50, 'price'],
 ['901', 'they', 'nsubj', 26, 58, 'want', 27, 'they'],
 ['902', 'want', 'acl:relcl', 27, 58, 'price', 25, 'want'],
 ['903', 'but', 'cc', 28, 58, 'do', 36, 'but'],
 ['904', 'I', 'nsubj', 29, 58, 'do', 36, 'I'],
 ['905', 'I', 'nsubj', 30, 58, 'know', 33, 'I'],
 ['906', 'do', 'aux', 31, 58, 'know', 33, 'do'],
 ['907', "n't", 'neg', 32, 58, 'know', 33, "n't"],
 ['908', 'know', 'acl:relcl', 33, 58, 'I', 29, 'know'],
 ['909', 'I', 'nsubj', 34, 58, 'mean', 35, 'I'],
 ['910', 'mean', 'ccomp', 35, 58, 'know', 33, 'mean'],
 ['911', 'do', 'ccomp', 36, 58, 'want', 27, 'do'],
 ['912', 'you', 'nsubj', 37, 58, 'think', 38, 'you'],
 ['913', 'think', 'ccomp', 38, 58, 'do', 36, 'think'],
 ['914', 'the', 'det', 39, 58, 'fact', 40, 'the'],
 ['915', 'fact', 'dobj', 40, 58, 'think', 38, 'fact'],
 ['916', 'that', 'mark', 41, 58, 'going', 44, 'that'],
 ['917', 'it', 'nsubj', 42, 58, 'going', 44, 'it'],
 ['918', 'it', 'nsubjpass', 42, 58, 'sold', 47, 'it'],
 ['919', "'s", 'aux', 43, 58, 'going', 44, "'s"],
 ['920', 'going', 'ccomp', 44, 58, 'think', 38, 'go'],
 ['921', 'to', 'mark', 45, 58, 'sold', 47, 'to'],
 ['922', 'be', 'auxpass', 46, 58, 'sold', 47, 'be'],
 ['923', 'sold', 'xcomp', 47, 58, 'going', 44, 'sell'],
 ['924', 'will', 'aux', 49, 58, 'have', 50, 'will'],
 ['925', 'have', 'ccomp', 50, 58, 'up', 17, 'have'],
 ['926', 'a', 'det', 51, 58, 'bearing', 52, 'a'],
 ['927', 'bearing', 'dobj', 52, 58, 'have', 50, 'bearing'],
 ['928', 'on', 'mark', 53, 58, 'design', 56, 'on'],
 ['929', 'how', 'advmod', 54, 58, 'design', 56, 'how'],
 ['930', 'we', 'nsubj', 55, 58, 'design', 56, 'we'],
 ['931', 'design', 'acl', 56, 58, 'bearing', 52, 'design'],
 ['932', 'it', 'dobj', 57, 58, 'design', 56, 'it'],
 ['933', 'at', 'case', 58, 58, 'yeah', 60, 'at'],
 ['934', 'all', 'det', 59, 58, 'yeah', 60, 'all'],
 ['935', 'yeah', 'nmod:at', 60, 58, 'design', 56, 'yeah'],
 ['936', 'I', 'nsubj', 61, 58, 'think', 62, 'I'],
 ['937', 'think', 'acl:relcl', 62, 58, 'yeah', 60, 'think'],
 ['938', 'it', 'nsubj', 63, 58, 'will', 64, 'it'],
 ['939', 'will', 'ccomp', 64, 58, 'think', 62, 'will'],
 ['940', 'all', 'dep', 1, 59, 'away', 3, 'all'],
 ['941', 'right', 'advmod', 2, 59, 'away', 3, 'right'],
 ['942', 'away', 'advmod', 3, 59, 'wondering', 6, 'away'],
 ['943', 'I', 'nsubj', 4, 59, 'wondering', 6, 'I'],
 ['944', "'m", 'aux', 5, 59, 'wondering', 6, "'m"],
 ['945', 'wondering', 'root', 6, 59, 'ROOT', 0, 'wonder'],
 ['946', 'if', 'mark', 7, 59, 'is', 9, 'if'],
 ['947', 'there', 'expl', 8, 59, 'is', 9, 'there'],
 ['948', 'is', 'advcl', 9, 59, 'wondering', 6, 'be'],
 ['949', 'like', 'case', 10, 59, 'players', 13, 'like'],
 ['950', 'the', 'det', 11, 59, 'players', 13, 'the'],
 ['951', 'DVD', 'compound', 12, 59, 'players', 13, 'DVD'],
 ['952', 'players', 'nmod:like', 13, 59, 'is', 9, 'player'],
 ['953', 'if', 'mark', 14, 59, 'zones', 17, 'if'],
 ['954', 'they', 'nsubj', 15, 59, 'zones', 17, 'they'],
 ['955', 'are', 'cop', 16, 59, 'zones', 17, 'be'],
 ['956', 'zones', 'advcl', 17, 59, 'is', 9, 'zone'],
 ['957', 'oh', 'discourse', 1, 60, 'yeah', 2, 'oh'],
 ['958', 'yeah', 'root', 2, 60, 'ROOT', 0, 'yeah'],
 ['959', 'regions', 'dobj', 3, 60, 'yeah', 2, 'region'],
 ['960', 'stuff', 'nsubj', 4, 60, 'yeah', 9, 'stuff'],
 ['961', 'is', 'cop', 5, 60, 'yeah', 9, 'be'],
 ['962', 'limited', 'amod', 6, 60, 'yeah', 9, 'limited'],
 ['963', 'or', 'cc', 7, 60, 'limited', 6, 'or'],
 ['964', 'something', 'conj:or', 8, 60, 'limited', 6, 'something'],
 ['965', 'something', 'amod', 8, 60, 'yeah', 9, 'something'],
 ['966', 'yeah', 'acl:relcl', 9, 60, 'regions', 3, 'yeah'],
 ['967', 'okay', 'root', 1, 61, 'ROOT', 0, 'okay'],
 ['968', 'as', 'cc', 2, 61, 'okay', 1, 'a'],
 ['969', 'well', 'mwe', 3, 61, 'as', 2, 'well'],
 ['970', 'as', 'mwe', 4, 61, 'as', 2, 'a'],
 ['971', 'characters', 'conj:and', 5, 61, 'okay', 1, 'character'],
 ['972', 'different', 'amod', 6, 61, 'styles', 8, 'different'],
 ['973', 'keypad', 'amod', 7, 61, 'styles', 8, 'keypad'],
 ['974', 'styles', 'dep', 8, 61, 'okay', 1, 'style'],
 ['975', 'and', 'cc', 9, 61, 'styles', 8, 'and'],
 ['976', 'some', 'det', 10, 61, 'yeah', 11, 'some'],
 ['977', 'yeah', 'dep', 11, 61, 'okay', 1, 'yeah'],
 ['978', 'yeah', 'conj:and', 11, 61, 'styles', 8, 'yeah'],
 ['979', 'well', 'advmod', 1, 62, 'is', 21, 'well'],
 ['980', 'for', 'mark', 2, 62, 'do', 6, 'for'],
 ['981', 'a', 'det', 3, 62, 'control', 5, 'a'],
 ['982', 'remote', 'amod', 4, 62, 'control', 5, 'remote'],
 ['983', 'control', 'nsubj', 5, 62, 'do', 6, 'control'],
 ['984', 'do', 'dep', 6, 62, 'well', 1, 'do'],
 ['985', 'you', 'nsubj', 7, 62, 'think', 8, 'you'],
 ['986', 'think', 'ccomp', 8, 62, 'do', 6, 'think'],
 ['987', 'that', 'mark', 9, 62, 'depends', 14, 'that'],
 ['988', 'would', 'aux', 10, 62, 'depends', 14, 'would'],
 ['989', 'be', 'cop', 11, 62, 'depends', 14, 'be'],
 ['990', 'a', 'det', 12, 62, 'depends', 14, 'a'],
 ['991', 'specific', 'amod', 13, 62, 'depends', 14, 'specific'],
 ['992', 'depends', 'ccomp', 14, 62, 'think', 8, 'depends'],
 ['993', 'on', 'case', 15, 62, 'complicated', 17, 'on'],
 ['994', 'how', 'advmod', 16, 62, 'complicated', 17, 'how'],
 ['995', 'complicated', 'nmod:on', 17, 62, 'depends', 14, 'complicate'],
 ['996', 'a', 'det', 18, 62, 'control', 20, 'a'],
 ['997', 'remote', 'amod', 19, 62, 'control', 20, 'remote'],
 ['998', 'control', 'nsubj', 20, 62, 'is', 21, 'control'],
 ['999', 'is', 'root', 21, 62, 'ROOT', 0, 'be'],
 ['1000', 'except', 'dep', 1, 63, 'have', 6, 'except'],
 ...]

In [46]:
try:

    conn = mysql.connect(host='140.116.112.164', user='iim_project', passwd='1qaz2wsx3eDC', db = "iim_project", charset="utf8")
    cur = conn.cursor()

    sql = "DROP TABLE IF EXISTS ES2002a_grammer"
    cur.execute(sql)          #删除读者表
    sql = "CREATE TABLE ES2002a_grammer(id varchar(10), word varchar(11), grammer varchar(11), order int(11), sentence int(11), relationWord varchar(11), relationWordOrder int(11), stemmedWord varchar(11)) DEFAULT CHARSET=utf8"
    cur.execute(sql)          #创建读者表
    cur.executemany('INSERT INTO ES2002a_grammer values(%s,%s,%s,%s,%s,%s,%s,%s)',final)
    conn.commit()
    cur.close()
    conn.close()

except mysql.Error, e:
    print "Mysql Error %d: %s" % (e.args[0], e.args[1])


Mysql Error 1064: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'order int(11), sentence int(11), relationWord varchar(11), relationWordOrder int' at line 1
/Users/macbook/Desktop/iim_project/project_python2/lib/python2.7/site-packages/ipykernel/__main__.py:7: Warning: Unknown table 'ES2002a_grammer'

In [ ]: