This notebook partly draws from materials put together by Dirk Hovy. That's why there's a figure today! Dirk is a computational linguist at the University of Copenhagen. Much of his work tries to explore the intersection of social variables and NLP, working with large online corpora.
Most of programming, irrespective of the language you use, has four main elements:
Assignment: linking a name to a value. The names are called variables.
Loops: sometimes we want to do the same thing repeatedly, either a fixed number of times, or until something happens. This is what loops are for.
I/O (Input/Output): this refers to everything that has to do with getting information into and out of our programs, e.g. files (opening, closing, reading from or writing to them) or output on the screen.
Control structures: sometimes, we need to make decisions. I.e., if a variable has a certain
value, do X, otherwise, do Y. Control structures are simple if...then...else constructs that evaluate
the alternatives and make this decision.
Today we'll put these together to do a useful elementary language processing task: getting counts of words in a document. The three main new things we need to learn today are: reading from files, control structures, and an important new data type the dictionary or just dict, which is a mapping data structure.
Python uses the term "dictionary" or "dict" for a mapping: a collection of items of one type mapping to another type. A dictionary is written with curly braces. For example, here's a mapping, from web sites to my passwords:
passwds = {'Amazon': 'curly', 'Google': 'furry', 'Apple': 'easy',
'Microsoft' : 'easy'}
No, not really! But it will do. You can access elements from a dict using the same square brackets notation after the dict/variable name, but now using a key which is the first half of the mapping:
print('My Google password is: ' + passwds['Google'])
My Google password is: furry
Trying to get a value for a key that doesn't exist is an error!
passwds['LinkedIN']
--------------------------------------------------------------------------- KeyError Traceback (most recent call last) <ipython-input-3-778cda5626bb> in <module>() ----> 1 passwds['LinkedIN'] KeyError: 'LinkedIN'
If we want to add a new item to our dictionary, we can simply assign a key a value:
<dictionary>[key] = <value>
Add the value "flotilla" as my "Facebook" pasword:
# Add the value "flotilla" as my "Facebook" pasword:
passwds["Facebook"] = "flotilla"
In a dict, there can only be one value for a key, but several keys can have the same value. Oh, and while I said a key can have only one value, that value can be a list, which lets you do general relations. A dictionary, unlike a list, isn't ordered. But you can very efficiently get the value for a key. You can also call 3 method keys(), values(), and items() which return list-like values that you can do a for-loop over to see all the keys, values, and mappings in the dict. Try them:
for k in passwds.keys():
print(k)
Apple Amazon Google Facebook Microsoft
Note that the keys didn't come out in the order that I wrote them down. You shouldn't rely on the order you wrote things down in.
# Now print all the values
for k in passwds.values():
print(k)
easy curly furry flotilla easy
# Now print all the items
for i in passwds.items():
print(i)
('Apple', 'easy')
('Amazon', 'curly')
('Google', 'furry')
('Facebook', 'flotilla')
('Microsoft', 'easy')
Note that the value is something we havent quite seen before – it's two strings wrapped in parentheses. It looks like the arguments to a function. This is different from a list and is called a tuple. It's less important than lists, but we'll come back to them later today....
You can check whether a key or value is in a map with the in and not in operators: <key> in <dict>. But that's often tedious to use, so you should also know the cleverer method on dicts get(key, default), which lets you ask for a key, and return its value if it exists, or the default value otherwise. We'll be able to use it later to make our program neater.
# See if I have an 'Amazon' password
'Amazon' in passwds
True
# Either print my 'Facebook' password or 'None'
passwds.get('Facebook', 'None')
'flotilla'
Last week, we learned about variable assignment, loops, and printing to the screen. There are several useful object types that we have not yet covered, and we need to learn about the constructs that let us test conditions. We will see them in this program, as well as IO for reading from files.
We want to know which words occur how often in a file. This is a common elementary text processing step in order to get some idea of your data and to get a sense of its overall topics. The output of such counting is precisely what people use to draw the very common visualization of word clouds. (Even though they're very common, many visualization people don't like them very much; just like pie charts.)
Let’s first think about what we have and what we want. We have a file, and we want the counts for the words in there. So there is a file, sentences, words, and their counts. We need to read the file, get the sentences; for each sentence, get the words, and somehow record their counts. In the end, we just print out the counts again. We can display this like in Figure 1.

Now let’s look at the program: it takes a file, reads it in, keeps a running count for each word, and prints those counts at the end.
Make sure to execute each code section as you progress (even the pre-written ones), so that the variables become available to the interpreter. You won't see any direct output when executing the cell below, but we will need it further on.
We first declare the name of the file as a variable, and then actually open the file.
open() is the function that reads in the file. It takes just one argument: the name of the file we
try to open. You can give it a second argument, 'w' if you want to write to a file, rather than just read from it. Here, we only want to read, so we don't need to specify anything else.
Python takes care of some pesky new line and encoding issues, so we won’t worry too much right now about special characters. Go ahead and read a file with runes!
file_name = 'debate-clinton.txt'
# open the file for reading
text_file = open(file_name)
The result of running open() is not the text of the file. It is similar to a list (it's not exactly a list, but an iterator – that's also what keys() gave us above), and we call that list text_file, so we can use it later on. This give us a handle to read through the file.
word_count = {}
After we have assigned the file hande, we assign the name word_count to a dictionary. Here, our keys will be strings (the words), and the values we map them to are numbers (their respective
frequencies). If we just use a pair of curly braces, as we
did here, we get an empty dictionary. There are no entries.
After we have declared the dictionary, we start iterating through the file with a for-loop.
Since text_file is an open file, this gives us a list of all the lines. We can
thus iterate over them. For each line in the file, we want to do a number of things.
That is why the next lines are all indented under the for-loop header line.
# go through the open file line by line
for line in text_file:
# get rid of the line break at the end
line = line.strip()
# split sentence along spaces
sentence = line.split()
# go through words
for word in sentence:
# check whether word is already in dictionary
if word in word_count:
# if yes: increment
word_count[word] = word_count[word] + 1
# if not, add an entry
else:
word_count[word] = 1
First, we get rid of the line break and any white space at the beginning or end of the line. We could write code to do all these things, but there is an easier (and shorter) way:
we use the strip() command to remove all that whitespace from the line and assign it to
the same name as before (line). (Subtle point here about line break character!) We made a new object – strings cannot be changed – but we assign it the same name. Whenever we use line from now on, it is the “cleaned-up” version of the line. (Subtle points: (1) Mutable and immutable objects; (2) If a method returns a new, changed object but doesn't change the original object – this is common and the only way to do things for immutable objects – then it is vital to assign the output of the method to something, or you will lose it. Commonly we assign it back to the same variable name if we conceptually think that we have improved the same thing.)
We then use the split() command we have seen before next.
Remember, it splits a sentence at the white space subsequences into a list, so if we had extra white spaces,
it would create empty entries in our list. The list of strings resulting from split() is assigned to
sentence, and we then iterate over that list. We have seen this before, so I will skip to the next
interesting part here: control structures.
After we have read the whole file, we close it with the close() command on the file variable. The dot tells us that it is a property of files. Note
that this line is no longer indented under the for-loop, but at the same level. This means that it is only
executed once we have completed all our iterations of the for-loop, in this case, after we have read all
lines in the file!
# close the file after reading
text_file.close()
So far, we have simply executed one command after the next. We never had to make a decision or choose among options. Now we have to. If a word is already listed in our dictionary, we want to increase its count by one (we know how to do that). If the word is not in our dictionary, however, we have to make an entry. Otherwise, we would try to increment a count that does not even exist (you cannot look up something that is not in the dictionary).
To make the decision what to do, we use the if...then...else structure or conditional.
The structure of the conditional is simple:
if <condition is true>:
<action1>
else:
<action2>
Here <condition> is another type of variable, a so-called boolean. They are named after the
mathematician Boole, and have only two values: True and False (note the capital spelling!). In our
case, the value comes from the outcome of the condition word in word_count to check whether
the dictionary word_count contains the key word. in is one of Python’s reserved words. You can
use it to check whether a variable is in a dictionary, a list, or other collections.
Sometimes, there are more than just two cases (something being true or false) that we would
like to account for. In that case, we can check for more conditions:
if <condition1 is true>:
<action1>
elif <condition2 is true>:
<action2>
elif <condition3 is true>:
<action3>
else:
<action4>
You can add as many elif cases as you want! We will see an example of this in the next section.
So if the word we look at is indeed in our dictionary, we increment its count by one. This puts the current word in the dictionary and sets its counter to 1.
Write your own control structure that checks whether "Amazon" is a key in passwds, and prints "Your password is <passwd>" if there is one and "You don't have an Amazon account!" otherwise.
if "Amazon" in passwds.keys():
print("Your password is " + passwds["Amazon"])
else:
print("You don't have an Amazon account!")
Your password is curly
In our program, we finally want to print all the counts we have collected to the screen. We use another for-loop. This time, it iterates over a list of tuples. Tuples are a lot like lists, with the big difference that they
have a fixed size. They are less flexible than lists. In Python, we denote tuples by round brackets
(instead of square ones as for lists). The function items() of a dictionary returns a list of
tuples of each key and its respective value. We use that and assign them to word and frequency, respectively. We print each word and its frequency (provided it occurred more than once) separated by a space, (that is why there is a comma in the print() statement, see above).
# take each pair of word and frequency in the dictionary
for (word, frequency) in word_count.items():
if frequency > 1:
print(word, frequency)
on 25 prohibition 2 But 23 energy 2 him 2 schools 2 determines 4 concluded 2 hold 2 trade 7 that 108 world, 2 United 5 do 32 percent. 4 work. 4 cause 2 police 8 anywhere 2 police. 3 sure 5 Donald 15 state, 2 world 2 switch 2 support 7 defeat 3 up 9 something 5 young 7 economy. 5 economy, 3 They 5 African-American 2 before 2 economy 5 together 2 jobs. 2 hard. 2 here. 2 course, 2 York 2 woman 2 same 4 believe 4 have, 2 you've 3 one 16 this 26 been 11 think 36 issue. 2 paid 6 now, 2 We've 4 know 10 place. 2 Well, 26 question 4 this, 2 business. 2 still 3 clear 4 here 2 smart, 2 refused 2 crime 3 health 2 keep 3 bias 2 couple 2 life 2 understand 3 If 3 agreement 2 criminal 5 what's 2 off 3 American 9 it's 13 world. 2 Will 2 had 7 beauty 2 sometimes 4 women 2 in 90 whether 2 are 34 again. 4 said 8 help 4 benefit. 3 home 4 Some 2 investments 2 end 2 my 9 point 2 top. 3 jobs 9 the 228 law 3 long 3 quite 2 unfortunately, 2 let's 6 right 3 Now, 2 state 3 by 11 being 3 incomes. 2 Would 2 more 21 trying 5 working 6 invest 4 cuts 2 matter 2 So 20 add 3 companies 2 most 4 military 2 a 105 The 6 asked 2 Iraq 2 lot 16 campaign 2 proud 2 all 11 very 12 there 13 want. 2 kinds 5 problem. 2 ever 7 what 37 turn 2 ago. 2 take 5 they've 4 has 29 They've 2 raising 2 up. 2 be. 3 better 5 family 3 other 6 met 3 facts. 2 families 4 That 12 hands 3 me 4 Lester, 3 did 7 next 2 Lester. 3 We're 6 Because 2 small 3 one, 2 time 2 time. 2 everyone, 2 fact, 5 if 13 went 3 cannot 2 claim 2 well 3 be 54 how 9 some 11 trillion 4 Right 2 class, 4 like 3 first 4 supporting 2 communities 6 that, 3 your 23 secret 2 we've 13 deserve 3 done 4 failed 2 saying, 2 owes 2 ... 15 leadership 2 fair 5 hard 2 get 15 is, 2 Look, 2 billion 2 It's 7 for 37 his 13 against 3 ways 3 provide 4 restore 2 What 2 Donald's 4 president 2 -- 29 us. 2 financial 3 real. 2 reform. 2 to 220 recession. 2 he's 11 doubt 2 ISIS 4 rising 3 from 17 South 2 How 4 not. 3 doing 3 and 113 proposed 4 care 2 with 35 problems 5 know, 13 it. 2 facing 4 which 6 intend 3 see 9 far 2 got 14 rate. 2 out 13 thing. 2 them. 6 future 3 number 4 will 19 so 19 percent 2 private 2 debt-free 2 Donald, 3 do, 2 those 7 majority 2 behalf 2 3.5 2 jobs, 5 again, 4 together. 2 worked 3 everyone 3 into 9 no 6 worked. 2 deal 6 said, 5 years 5 New 4 grow 2 needed 2 or 6 In 4 When 2 Yeah, 2 our 38 any 6 making 4 exports 2 try 4 debt. 2 facts 2 of 122 new 9 college 2 hope 5 There 5 don't 10 man 4 face 3 And 69 them 10 kind 10 education, 2 you're 6 away 2 made 5 every 2 as 23 actually 7 both 5 thing 3 part 4 else 2 taxes 3 looked 5 started 2 top 2 start 2 finally 2 also 12 people, 4 That's 6 they 19 build 3 worst 4 Americans. 2 taken 6 maybe 5 fabrics 2 training, 2 business, 3 it 43 ended 2 information. 3 building 2 says 3 may 3 Who 2 can 28 way 2 policing, 2 that. 11 dangerous 2 would 35 Putin 2 heard 4 Wall 2 installers, 3 forth 2 issues 2 First, 2 could 3 their 19 mutual 2 put 8 now 5 money 3 plan 5 national 4 No, 3 but 13 and, 2 works 2 make 16 great 2 father 2 is... 2 Iraq. 2 secretary 3 someone 2 go 9 need 23 neighborhoods. 2 wrote 2 clean 2 nations 2 different 6 deals 2 should 15 men 2 happen 3 things 6 then 5 direct 2 around 3 after 4 out. 2 they're 3 country. 6 not 34 efforts 2 Middle 2 opportunities 2 minimum 2 States 2 intelligence 3 Muslims 2 country, 2 near 3 pay 7 I'm 7 $5 3 create 4 just 14 years, 2 you 50 because 20 well, 5 can't 2 last 2 we 104 this. 3 voted 2 weapons, 2 weapons 2 who 19 job 3 It 8 plans 3 another 2 increased 2 these 5 come 5 fact 3 important 7 best 3 there's 2 going 24 lost 2 you. 5 certainly 2 weapons. 2 businesses 2 share 3 than 3 drapery 2 equal 2 cyber 5 reasons 3 why 6 seeing 2 it, 5 never 5 prevent 2 when 16 opinion. 2 us 15 country 8 bankruptcy 2 income 2 implicit 2 good. 2 buy 4 wealthy 5 was 25 an 11 hack 4 I 133 am 3 back 7 proposed, 2 using 2 respect 3 business 10 down 3 ISIS. 3 second 3 begin 2 communities, 4 trumped-up 2 nine 2 not? 2 laid 2 Muslim 3 really 18 word 3 vote 3 since 3 balance 2 look 7 work 10 is 51 prepared 3 returns, 2 want 18 under 2 50 2 black 3 for, 2 having 5 release 2 able 6 lose 2 middle 5 eight 2 call 2 He 10 you, 3 live 2 took 3 we'll 5 foreign 4 good 13 talk 6 zero 3 say 7 stiffed 2 corporate 2 federal 5 give 5 nuclear 8 ineffective. 2 yes, 2 "Miss 2 he 32 plan, 2 people 25 difficult 2 challenges 2 are, 2 10 2 hiding. 2 only 6 files, 2 about 33 credit 2 There's 3 much 5 responsibilities 3 enforcement 2 have 81 seen 3 means 4 million 9 troops, 2 tax 15 government 4 didn't 2 Trump 2 them, 2 deals. 2 where 7 mayors, 2 policies 2 growth, 2 that's 12 wealthy, 3 troops 2 justice 5 middle-class 2 everything 6 over 8 two 5 use 4 were 9 let 4 kept 2 biggest 4 We 24 even 6 system. 4 might 2 America? 2 feeling 2 too 9 home. 2 I've 11 40 3 gun 5 online. 2 information 5 at 33 tried 2 challenge 2 And, 4 anyone 2 us, 2 guns 2 does 3 coming 2 across 2 debt 4 many 10 we're 12 called 6 president. 3 do. 11 You 13 deeply 2 close 2 think, 2 attacks 3 she 3
Well, we've learned a fair bit here. We have learned how to read in a text file, how to use control structures, and we have seen the new object types dictionaries and tuples. You have now seen a lot of the basics of Python! While there are a lot of other things that you can learn – and, gosh, I'm going to attempt to teach quite a few of them — you can actually write quite a bit of basic text processing using just these elements. Many of the things that we'll learn later provide faster, more powerful, more convenient ways to do things that you could do with just these elements.
Try to do all of these things, and end up with a decent program at the end that does all this stuff.
The above program got word counts from the file 'debate-clinton.txt'. It was hardcoded to do so. But we also want word counts from 'debate-trump.txt'. So, what we want is a function that can count words in any file. We might structure our program as two functions:
A function that takes a string filename and returns a dict from words to their counts in the file.
A function that takes a dict of word counts and prints the word counts
You are welcome to copy and paste any code from above to get this to work.
I'm putting 2 versions of the functions below. The initial version and then the one after doing all the things suggested. You didn't need to provide both, but I hope it just helps in tracing the evolution of the program. For the original one, I've preposed "_v0" to the name ("version 0")
# Function for collecting word counts from a file
# Don't forget to close the file after you have read it in!
def count_words_v0(file_name):
"""Takes a filename, cuts it into words, counts how often each
word type occurs, and returns a dict (string, int) of these counts"""
# Initialize the dict
word_count = {}
# open the file for reading
text_file = open(file_name)
# go through the open file line by line
for line in text_file:
# get rid of the line break at the end
line = line.strip()
# split sentence along spaces
sentence = line.split()
# go through words
for word in sentence:
# check whether word is already in dictionary
if word in word_count:
# if yes: increment
word_count[word] = word_count[word] + 1
# if not, add an entry
else:
word_count[word] = 1
# close the file after reading
text_file.close()
# return the dict
return word_count
# Function for collecting word counts from a file
# Don't forget to close the file after you have read it in!
def count_words(file_name, stop_list):
"""Takes a filename, cuts it into words, counts how often each
word type occurs, and returns a dict (string, int) of these counts.
Does not count words in the stop_list."""
# Initialize the dict
word_count = {}
# open the file for reading
text_file = open(file_name)
# go through the open file line by line
for line in text_file:
# get rid of the line break at the end
line = line.strip()
# Q4: Get rid of some punctuation characters from the string
line = line.replace('.', ' ')
line = line.replace(',', ' ')
line = line.replace('"', ' ')
line = line.replace('?', ' ')
line = line.replace('-', ' ')
# split sentence along spaces
sentence = line.split()
# go through words
for word in sentence:
# Q5: Lowercase each word
word = word.lower()
# Q3: only if not a stop word
if word not in stop_list:
# Q1: Shortens this code block
word_count[word] = word_count.get(word, 0) + 1
# close the file after reading
text_file.close()
# return the dict
return word_count
# Function for printing word counts from a dict
def print_word_counts_v0(counts):
"""Prints out the counts in a dict"""
# take each pair of word and frequency in the dictionary
for (word, frequency) in counts.items():
if frequency > 1:
print(word, frequency)
# Function for printing word counts from a dict
def print_word_counts(counts, minimum):
"""Prints out the counts of words in a dict
for each word that occurs a mimimum of minimum times (inclusive).
And return the total number of words spoken."""
# Q6: Totalling the words in the dict
total = 0
for (word, frequency) in counts.items():
total = total + frequency
# take each pair of word and frequency in the dictionary
for (word, frequency) in counts.items():
# Q2 work for any minimum count
if frequency >= minimum:
# Q7: Also print word frequency as a percentage
print(word, frequency, frequency * 100 / total)
return total
# Run v0 program
# Top-level code that calls the above functions for each of the files
# 'debate-clinton.txt' and 'debate-trump.txt'.
# You probably also want to print out header lines,
# and a blank line separator dividing the files and saying which you
# are printing.
print('Word counts for Clinton')
print('=======================')
cl_dict = count_words_v0('debate-clinton.txt')
print_word_counts_v0(cl_dict)
print()
print()
print('Word counts for Trump')
print('=====================')
tr_dict = count_words_v0('debate-trump.txt')
print_word_counts_v0(tr_dict)
Word counts for Clinton ======================= on 25 prohibition 2 But 23 energy 2 him 2 schools 2 determines 4 concluded 2 hold 2 trade 7 that 108 world, 2 United 5 do 32 percent. 4 work. 4 cause 2 police 8 anywhere 2 police. 3 sure 5 Donald 15 state, 2 world 2 switch 2 support 7 defeat 3 up 9 something 5 young 7 economy. 5 economy, 3 They 5 African-American 2 before 2 economy 5 together 2 jobs. 2 hard. 2 here. 2 course, 2 York 2 woman 2 same 4 believe 4 have, 2 you've 3 one 16 this 26 been 11 think 36 issue. 2 paid 6 now, 2 We've 4 know 10 place. 2 Well, 26 question 4 this, 2 business. 2 still 3 clear 4 here 2 smart, 2 refused 2 crime 3 health 2 keep 3 bias 2 couple 2 life 2 understand 3 If 3 agreement 2 criminal 5 what's 2 off 3 American 9 it's 13 world. 2 Will 2 had 7 beauty 2 sometimes 4 women 2 in 90 whether 2 are 34 again. 4 said 8 help 4 benefit. 3 home 4 Some 2 investments 2 end 2 my 9 point 2 top. 3 jobs 9 the 228 law 3 long 3 quite 2 unfortunately, 2 let's 6 right 3 Now, 2 state 3 by 11 being 3 incomes. 2 Would 2 more 21 trying 5 working 6 invest 4 cuts 2 matter 2 So 20 add 3 companies 2 most 4 military 2 a 105 The 6 asked 2 Iraq 2 lot 16 campaign 2 proud 2 all 11 very 12 there 13 want. 2 kinds 5 problem. 2 ever 7 what 37 turn 2 ago. 2 take 5 they've 4 has 29 They've 2 raising 2 up. 2 be. 3 better 5 family 3 other 6 met 3 facts. 2 families 4 That 12 hands 3 me 4 Lester, 3 did 7 next 2 Lester. 3 We're 6 Because 2 small 3 one, 2 time 2 time. 2 everyone, 2 fact, 5 if 13 went 3 cannot 2 claim 2 well 3 be 54 how 9 some 11 trillion 4 Right 2 class, 4 like 3 first 4 supporting 2 communities 6 that, 3 your 23 secret 2 we've 13 deserve 3 done 4 failed 2 saying, 2 owes 2 ... 15 leadership 2 fair 5 hard 2 get 15 is, 2 Look, 2 billion 2 It's 7 for 37 his 13 against 3 ways 3 provide 4 restore 2 What 2 Donald's 4 president 2 -- 29 us. 2 financial 3 real. 2 reform. 2 to 220 recession. 2 he's 11 doubt 2 ISIS 4 rising 3 from 17 South 2 How 4 not. 3 doing 3 and 113 proposed 4 care 2 with 35 problems 5 know, 13 it. 2 facing 4 which 6 intend 3 see 9 far 2 got 14 rate. 2 out 13 thing. 2 them. 6 future 3 number 4 will 19 so 19 percent 2 private 2 debt-free 2 Donald, 3 do, 2 those 7 majority 2 behalf 2 3.5 2 jobs, 5 again, 4 together. 2 worked 3 everyone 3 into 9 no 6 worked. 2 deal 6 said, 5 years 5 New 4 grow 2 needed 2 or 6 In 4 When 2 Yeah, 2 our 38 any 6 making 4 exports 2 try 4 debt. 2 facts 2 of 122 new 9 college 2 hope 5 There 5 don't 10 man 4 face 3 And 69 them 10 kind 10 education, 2 you're 6 away 2 made 5 every 2 as 23 actually 7 both 5 thing 3 part 4 else 2 taxes 3 looked 5 started 2 top 2 start 2 finally 2 also 12 people, 4 That's 6 they 19 build 3 worst 4 Americans. 2 taken 6 maybe 5 fabrics 2 training, 2 business, 3 it 43 ended 2 information. 3 building 2 says 3 may 3 Who 2 can 28 way 2 policing, 2 that. 11 dangerous 2 would 35 Putin 2 heard 4 Wall 2 installers, 3 forth 2 issues 2 First, 2 could 3 their 19 mutual 2 put 8 now 5 money 3 plan 5 national 4 No, 3 but 13 and, 2 works 2 make 16 great 2 father 2 is... 2 Iraq. 2 secretary 3 someone 2 go 9 need 23 neighborhoods. 2 wrote 2 clean 2 nations 2 different 6 deals 2 should 15 men 2 happen 3 things 6 then 5 direct 2 around 3 after 4 out. 2 they're 3 country. 6 not 34 efforts 2 Middle 2 opportunities 2 minimum 2 States 2 intelligence 3 Muslims 2 country, 2 near 3 pay 7 I'm 7 $5 3 create 4 just 14 years, 2 you 50 because 20 well, 5 can't 2 last 2 we 104 this. 3 voted 2 weapons, 2 weapons 2 who 19 job 3 It 8 plans 3 another 2 increased 2 these 5 come 5 fact 3 important 7 best 3 there's 2 going 24 lost 2 you. 5 certainly 2 weapons. 2 businesses 2 share 3 than 3 drapery 2 equal 2 cyber 5 reasons 3 why 6 seeing 2 it, 5 never 5 prevent 2 when 16 opinion. 2 us 15 country 8 bankruptcy 2 income 2 implicit 2 good. 2 buy 4 wealthy 5 was 25 an 11 hack 4 I 133 am 3 back 7 proposed, 2 using 2 respect 3 business 10 down 3 ISIS. 3 second 3 begin 2 communities, 4 trumped-up 2 nine 2 not? 2 laid 2 Muslim 3 really 18 word 3 vote 3 since 3 balance 2 look 7 work 10 is 51 prepared 3 returns, 2 want 18 under 2 50 2 black 3 for, 2 having 5 release 2 able 6 lose 2 middle 5 eight 2 call 2 He 10 you, 3 live 2 took 3 we'll 5 foreign 4 good 13 talk 6 zero 3 say 7 stiffed 2 corporate 2 federal 5 give 5 nuclear 8 ineffective. 2 yes, 2 "Miss 2 he 32 plan, 2 people 25 difficult 2 challenges 2 are, 2 10 2 hiding. 2 only 6 files, 2 about 33 credit 2 There's 3 much 5 responsibilities 3 enforcement 2 have 81 seen 3 means 4 million 9 troops, 2 tax 15 government 4 didn't 2 Trump 2 them, 2 deals. 2 where 7 mayors, 2 policies 2 growth, 2 that's 12 wealthy, 3 troops 2 justice 5 middle-class 2 everything 6 over 8 two 5 use 4 were 9 let 4 kept 2 biggest 4 We 24 even 6 system. 4 might 2 America? 2 feeling 2 too 9 home. 2 I've 11 40 3 gun 5 online. 2 information 5 at 33 tried 2 challenge 2 And, 4 anyone 2 us, 2 guns 2 does 3 coming 2 across 2 debt 4 many 10 we're 12 called 6 president. 3 do. 11 You 13 deeply 2 close 2 think, 2 attacks 3 she 3 ======================= Number of non-stopwords spoken by Clinton: None Word counts for Trump ===================== on 43 But 56 gave 3 wait 2 leaving, 2 getting 5 course 2 true. 3 Number 2 filed 2 way. 4 family, 2 lawsuit 3 trade 9 that 119 world, 7 major 5 debtor 2 politicians, 2 United 4 do 44 4,000 3 parts 2 ISIS 6 Then 2 able 7 things, 2 agree. 2 came 3 happened 3 hundreds 4 proud 4 support 2 defeat 2 ever 13 Secretary 23 list 3 something 4 enemy 2 They 15 love 2 African-American 5 economy 3 saying 6 certificate. 4 There's 2 jobs. 6 makes 2 Chicago. 2 fine 2 wrong. 5 happening 2 paying 6 They're 11 brought 5 money. 4 same 3 fairness 2 fair 2 believe 13 you've 7 one 21 President 6 by 25 this 27 been 38 think 36 Wait. 2 She's 6 down. 2 now, 5 supposed 4 no. 2 website. 4 know 13 Americans, 2 place. 3 Well, 16 political 6 question 2 Where 3 this, 7 real 3 airports, 2 maybe 5 here 2 going 45 happen. 3 control 2 NATO. 4 land 5 time, 7 numbers 3 2,200 2 If 3 this? 4 Maybe 2 what's 6 off 3 renegotiate 2 it's 45 world. 2 thousands 6 had 11 places 2 mess. 2 accurate 2 It's 27 millions 2 Wrong. 6 Internet, 3 in 97 needs. 2 Mexico, 2 mistake. 2 whether 6 powerful 2 fight 3 allow 2 anybody 3 community, 4 spent 3 said 20 probably 5 million 3 energy, 2 haven't 7 sit 2 another 4 end 3 my 14 illegal 2 laws 3 jobs 7 the 265 she 24 law 7 long 7 So 18 countries. 5 right 8 Now, 8 including 2 He's 2 who's 2 little 6 perhaps 2 name? 2 being 4 more 14 trying 3 working 2 war. 5 bureaucratic 2 Some 4 generals 2 four 4 companies 14 nobody 7 big 6 many 26 situation 2 most 3 various 2 isn't 3 tax. 3 a 166 asked 4 formed 2 reporter 2 settled 2 won't 2 lot 13 over. 4 all 30 Bernie 2 gangs 2 very 62 there 5 OK? 4 things. 5 problem. 4 up 11 luck. 2 $650 2 read 4 what 38 job. 3 words, 2 satisfied 2 take 13 city 2 they've 2 Blumenthal 3 Hannity, 2 has 13 endorsed 6 rid 2 comes 2 better 9 other 19 record 2 met 2 thinking 4 All 8 forward 2 NATO, 2 Look 2 That 14 special 2 As 5 politicians 7 red 2 me 21 Lester, 7 did 18 next 2 nothing 2 Lester. 4 We're 6 absolutely 2 any 4 Because 7 small 3 today 2 time. 3 fact, 2 terrible 4 defending 3 beyond 2 if 18 went 4 cannot 5 in, 4 under 4 focus 2 well 2 be 51 also 6 negotiating 2 how 8 interest 4 totally 5 tell 15 trillion 7 budget 2 Right 2 caring 2 beautiful 2 spoke 2 idea 2 lose 2 get 26 first 8 ability. 2 communities 3 that, 9 years. 7 during 3 Barack 4 your 17 we've 5 throughout 4 fighting 2 done 7 rates 2 saying, 2 told 3 mean, 8 ... 3 agree 9 cities, 3 hard. 2 stop 8 is, 5 order 3 important. 3 mine 2 audited 2 Look, 5 billion 2 estate 3 Iran 5 Ronald 2 Sidney 2 into 13 birth 4 mind 2 bit 2 shows 2 for 40 his 4 against 12 produce 3 Under 3 killed 3 me, 8 Korea. 4 within 3 some 15 own 3 somebody 5 Wait 2 What 2 cost 2 cars 2 say. 4 disagree 2 York 4 Saudi 3 find 4 her 14 president 3 -- 102 you'll 2 us. 4 financial 2 Russia, 6 to 250 he's 4 Secretary, 2 endorsement 2 from 22 How 2 people. 6 not. 3 Obama 6 10 4 come 7 talks 5 leaving 7 and 159 unbelievable 2 build 2 care 5 Our 7 with 50 know, 12 sell 3 very, 9 look 31 service 2 see 9 far 7 got 13 out 20 day. 2 debt, 2 $6 2 underleveraged. 2 only 6 them. 9 mess 3 form 2 number 3 given 2 will 28 so 26 certain 3 just 34 past 2 me. 7 big, 2 complaining. 2 year. 2 do, 3 They've 3 NATO 3 jobs, 5 defective 2 work 2 I'll 11 country 26 was 65 worked 2 country's 2 terms 5 while 2 large 3 audit. 2 strong. 2 after 3 happen 2 goes 2 no 14 Clinton, 3 police 2 company. 4 actually 3 people 25 ICE. 2 mainstream 3 everybody 6 learn 4 said, 14 problem 2 years 6 $20 6 person 3 New 7 income. 2 Reagan. 2 In 4 China 4 article 2 When 14 do. 6 cases, 4 that's 23 our 53 used 5 quickly. 2 gold 2 money, 2 Is 2 work. 3 in. 3 world 4 debt. 2 of 162 new 11 Fifth 2 $2.5 2 don't 30 tape, 2 it 61 wonder 3 seen. 2 And 119 lead 2 them 22 kind 3 doing 23 Just 5 you're 15 away 4 made 5 every 3 Fed 4 nation. 3 regulations, 2 as 24 Pennsylvania 2 Your 2 thing 13 lots 5 lightly, 2 problems. 2 campaign 7 taxes 6 looked 2 regulations 4 top 2 which 12 NAFTA 2 reason 2 purposely. 2 say, 7 people, 2 relationships 4 putting 2 cyber 4 credit 3 That's 6 they 54 become 2 power 2 bad 12 started. 4 worst 7 right. 2 She 5 released. 2 she's 5 why 6 numerous 2 of. 5 way, 5 taken 10 increase 2 inner 6 also. 2 it, 10 expand. 2 Korea, 2 once 3 agree, 2 strong 2 league, 2 assets 3 Chicago, 2 cut 3 lists 2 true 2 fought 2 or 17 Let 4 can 8 taking 8 way 11 that. 19 Excuse 2 bring 15 would 20 companies. 3 could 15 their 19 ISIS, 3 there. 4 put 4 now 6 money 10 No, 7 myself, 2 but 22 places. 3 us 8 make 6 great 13 here, 2 also, 2 interview 3 Iraq. 3 secretary 2 community 5 Thousands 2 opening 3 go 19 watch 4 signed 3 were 21 him 7 started 3 air 2 Obama's 3 built 2 ago, 2 week, 3 before 6 thing. 5 deals 2 admission 2 schedule. 2 $694 2 cities 3 friend 2 mayor, 2 anyone's 2 time 4 formed, 2 should 25 things 14 then 6 look, 5 China, 3 best 3 fight. 2 around 3 back, 2 forms 2 tough 3 out. 6 they're 28 order. 5 Hillary 6 losing 6 country. 13 not 45 Middle 6 stop-and-frisk, 2 her, 2 admirals 2 help 7 history. 3 looks 3 pay 3 I'm 30 happy 2 did. 2 15 3 East, 4 create 2 percent 3 years, 9 Japan, 3 you 148 Sean 8 Chicago 4 because 51 well, 3 anywhere 4 pressing 2 greatest 7 Times, 2 can't 18 last 7 day 4 stamina. 5 we 82 Avenue 2 this. 6 wouldn't 2 feel. 2 who 7 job 6 It 17 First 2 NAFTA, 2 on. 2 these 16 doesn't 10 fact 4 to... 2 hacks 2 important 3 sent 4 there's 7 deal 7 you. 7 certainly 5 defend 7 thinks 2 Obama, 2 than 11 January 2 Clinton 15 frankly, 3 never 8 there, 3 when 28 Russia 2 broke 2 NAFTA. 2 check 2 oil 6 income 3 The 21 good. 2 releases 2 owe 2 raise 4 place 2 respond. 4 wealthy 3 States, 2 you'd 2 an 12 disaster. 4 I 229 excuse 2 back 11 deal? 2 respect 2 banks. 2 business 5 down 7 anything 2 ISIS. 4 much. 3 tremendous 10 war 6 many, 2 Hannity 3 extremely 2 me: 2 really 18 does 2 one. 2 since 5 minute. 3 budget, 2 list, 2 lost 2 ask 4 is 70 want 22 plan. 2 story. 2 giving 2 third 2 favor 2 having 3 DNC. 2 release 3 China. 2 call 3 He 6 president, 2 much, 2 countries 6 different 5 Hannity. 2 you, 6 left 4 Patti 2 we'll 4 good 13 approved 3 talk 3 say 20 No 2 African- 2 are 54 Hillary, 2 keeping 3 Mexico. 3 Sanders 2 federal 2 You 38 here's 2 company, 2 give 7 vacuum 2 happened. 4 This 2 single 5 nuclear 6 created 3 buildings 2 yes, 2 he 8 leaving. 6 will. 2 running 2 talking 8 like 22 These 4 about 34 billions 5 much 12 have 141 seen 4 winning 2 companies, 2 honest 2 500 2 tax 10 didn't 9 Trump 3 solar 2 protect 3 telling 3 them, 5 deals. 4 where 13 soon 3 untrue. 2 murders. 2 thing, 3 roads 2 30 6 notice 2 company 2 McClatchy, 2 advantage 4 her. 4 everything 3 over 14 two 3 use 3 need 12 let 5 North 5 start 2 biggest 5 We 39 fault? 3 old 2 interests 2 lists. 2 concerned, 2 experience, 2 almost 9 dollars 2 life. 2 said. 2 too 2 I've 10 those 2 at 44 And, 4 report 2 plants 2 us, 3 approve 5 guns 3 done. 3 coming 2 temperament 2 country, 9 tougher 2 police, 2 no-fly 2 before. 2 we're 19 much? 2 strongly 3 change 2 called 5 trillion. 4 everything. 2 Clinton. 4 all, 4 Mayor 2 incredible 2 ahead 3 shouldn't 5 worth 3 it. 33 Why 4 doing. 5 even 11 close 2 heard 2 I'd 5 nothing. 3 ======================= Number of non-stopwords spoken by Clinton: None
# Run final program
# Top-level code that calls the above functions for each of the files
# 'debate-clinton.txt' and 'debate-trump.txt'.
# You probably also want to print out header lines,
# and a blank line separator dividing the files and saying which you
# are printing.
stop_words = ['the', 'a', 'an', 'that', 'and', 'to', 'of']
print('Word counts for Clinton')
print('=======================')
cl_dict = count_words('debate-clinton.txt', stop_words)
cl_num = print_word_counts(cl_dict, 3)
print('=======================')
print('Number of non-stopwords spoken by Clinton: ' + str(cl_num))
print()
print()
print('Word counts for Trump')
print('=====================')
tr_dict = count_words('debate-trump.txt', stop_words)
tr_num = print_word_counts(tr_dict, 3)
print('=======================')
print('Number of non-stopwords spoken by Trump: ' + str(tr_num))
Word counts for Clinton ======================= our 39 0.8191556395715186 making 4 0.08401596303297626 try 4 0.08401596303297626 energy 4 0.08401596303297626 on 26 0.5461037597143458 america 4 0.08401596303297626 world 6 0.1260239445494644 facts 4 0.08401596303297626 deals 4 0.08401596303297626 i've 11 0.23104389834068473 new 13 0.2730518798571729 college 3 0.0630119722747322 from 17 0.35706784289014915 hope 5 0.10501995379122034 very 12 0.2520478890989288 don't 10 0.21003990758244068 let 4 0.08401596303297626 trade 7 0.14702793530770847 face 4 0.08401596303297626 do 47 0.9871875656374711 them 19 0.39907582440663725 kind 10 0.21003990758244068 police 11 0.23104389834068473 donald 21 0.4410838059231254 you're 6 0.1260239445494644 made 5 0.10501995379122034 sure 5 0.10501995379122034 as 23 0.4830917874396135 actually 9 0.1890359168241966 both 5 0.10501995379122034 thing 6 0.1260239445494644 part 6 0.1260239445494644 else 3 0.0630119722747322 military 3 0.0630119722747322 nations 3 0.0630119722747322 support 8 0.16803192606595252 looked 5 0.10501995379122034 defeat 3 0.0630119722747322 up 13 0.2730518798571729 something 5 0.10501995379122034 top 6 0.1260239445494644 young 7 0.14702793530770847 again 9 0.1890359168241966 finally 4 0.08401596303297626 system 6 0.1260239445494644 also 13 0.2730518798571729 economy 13 0.2730518798571729 together 6 0.1260239445494644 justice 5 0.10501995379122034 they 24 0.5040957781978576 worst 4 0.08401596303297626 same 4 0.08401596303297626 course 3 0.0630119722747322 believe 4 0.08401596303297626 you've 4 0.08401596303297626 one 21 0.4410838059231254 attacks 4 0.08401596303297626 by 12 0.2520478890989288 this 32 0.6721277042638101 been 11 0.23104389834068473 taken 6 0.1260239445494644 think 39 0.8191556395715186 paid 7 0.14702793530770847 maybe 5 0.10501995379122034 unfortunately 3 0.0630119722747322 any 6 0.1260239445494644 it 59 1.2392354547364 know 23 0.4830917874396135 she 3 0.0630119722747322 street 3 0.0630119722747322 question 4 0.08401596303297626 man 5 0.10501995379122034 donald's 4 0.08401596303297626 real 4 0.08401596303297626 still 3 0.0630119722747322 clear 4 0.08401596303297626 here 4 0.08401596303297626 going 25 0.5250997689561017 says 3 0.0630119722747322 crime 3 0.0630119722747322 health 3 0.0630119722747322 can 29 0.609115731989078 could 3 0.0630119722747322 keep 3 0.0630119722747322 way 4 0.08401596303297626 life 3 0.0630119722747322 which 7 0.14702793530770847 would 39 0.8191556395715186 understand 3 0.0630119722747322 best 3 0.0630119722747322 were 9 0.1890359168241966 did 8 0.16803192606595252 two 5 0.10501995379122034 issues 3 0.0630119722747322 criminal 5 0.10501995379122034 returns 5 0.10501995379122034 cyber 5 0.10501995379122034 their 19 0.39907582440663725 united 5 0.10501995379122034 off 3 0.0630119722747322 put 8 0.16803192606595252 now 9 0.1890359168241966 plan 8 0.16803192606595252 national 5 0.10501995379122034 it's 20 0.42007981516488135 but 36 0.7561436672967864 zero 4 0.08401596303297626 foreign 4 0.08401596303297626 sometimes 4 0.08401596303297626 make 16 0.33606385213190504 great 3 0.0630119722747322 determines 4 0.08401596303297626 father 3 0.0630119722747322 in 98 2.0583910943079187 are 38 0.7981516488132745 secretary 3 0.0630119722747322 information 9 0.1890359168241966 said 15 0.315059861373661 go 10 0.21003990758244068 million 10 0.21003990758244068 home 7 0.14702793530770847 class 7 0.14702793530770847 jobs 16 0.33606385213190504 heard 5 0.10501995379122034 5 3 0.0630119722747322 into 9 0.1890359168241966 should 15 0.315059861373661 men 4 0.08401596303297626 things 7 0.14702793530770847 then 8 0.16803192606595252 being 3 0.0630119722747322 more 21 0.4410838059231254 around 3 0.0630119722747322 trying 5 0.10501995379122034 working 7 0.14702793530770847 invest 4 0.08401596303297626 they're 4 0.08401596303297626 not 39 0.8191556395715186 matter 3 0.0630119722747322 intelligence 3 0.0630119722747322 add 4 0.08401596303297626 near 3 0.0630119722747322 his 13 0.2730518798571729 against 4 0.08401596303297626 40 3 0.0630119722747322 asked 3 0.0630119722747322 security 4 0.08401596303297626 $5 3 0.0630119722747322 create 4 0.08401596303297626 most 4 0.08401596303297626 lot 18 0.3780718336483932 campaign 3 0.0630119722747322 because 22 0.46208779668136946 all 12 0.2520478890989288 taxes 4 0.08401596303297626 only 6 0.1260239445494644 there 19 0.39907582440663725 we 128 2.6885108170552403 kinds 5 0.10501995379122034 weapons 6 0.1260239445494644 ever 7 0.14702793530770847 pay 7 0.14702793530770847 job 4 0.08401596303297626 what 39 0.8191556395715186 i 134 2.8145347616047047 these 5 0.10501995379122034 come 5 0.10501995379122034 we're 18 0.3780718336483932 fact 10 0.21003990758244068 hack 4 0.08401596303297626 take 6 0.1260239445494644 important 9 0.1890359168241966 has 29 0.609115731989078 troops 4 0.08401596303297626 deal 7 0.14702793530770847 better 6 0.1260239445494644 other 7 0.14702793530770847 met 3 0.0630119722747322 businesses 4 0.08401596303297626 recession 3 0.0630119722747322 share 3 0.0630119722747322 than 3 0.0630119722747322 too 10 0.21003990758244068 reasons 4 0.08401596303297626 why 7 0.14702793530770847 families 4 0.08401596303297626 never 5 0.10501995379122034 hands 3 0.0630119722747322 when 18 0.3780718336483932 me 5 0.10501995379122034 us 20 0.42007981516488135 small 4 0.08401596303297626 time 6 0.1260239445494644 gun 6 0.1260239445494644 you 71 1.4912833438353288 doing 3 0.0630119722747322 buy 4 0.08401596303297626 wealthy 8 0.16803192606595252 if 16 0.33606385213190504 worked 5 0.10501995379122034 am 3 0.0630119722747322 back 7 0.14702793530770847 had 8 0.16803192606595252 went 3 0.0630119722747322 respect 3 0.0630119722747322 business 15 0.315059861373661 down 9 0.1890359168241966 well 35 0.7351396765385423 be 57 1.1972274732199117 state 6 0.1260239445494644 second 4 0.08401596303297626 how 13 0.2730518798571729 policing 3 0.0630119722747322 years 8 0.16803192606595252 nine 3 0.0630119722747322 trillion 4 0.08401596303297626 different 6 0.1260239445494644 like 3 0.0630119722747322 first 6 0.1260239445494644 really 19 0.39907582440663725 word 3 0.0630119722747322 law 5 0.10501995379122034 east 3 0.0630119722747322 black 3 0.0630119722747322 russia 3 0.0630119722747322 vote 3 0.0630119722747322 communities 10 0.21003990758244068 since 3 0.0630119722747322 work 15 0.315059861373661 isis 8 0.16803192606595252 your 23 0.4830917874396135 is 56 1.1762234824616677 we've 17 0.35706784289014915 want 20 0.42007981516488135 under 3 0.0630119722747322 deserve 3 0.0630119722747322 putin 3 0.0630119722747322 african 3 0.0630119722747322 done 5 0.10501995379122034 american 11 0.23104389834068473 having 5 0.10501995379122034 able 6 0.1260239445494644 lose 3 0.0630119722747322 middle 9 0.1890359168241966 installers 3 0.0630119722747322 benefit 4 0.08401596303297626 leadership 3 0.0630119722747322 fair 5 0.10501995379122034 hard 4 0.08401596303297626 happen 3 0.0630119722747322 live 3 0.0630119722747322 took 3 0.0630119722747322 abroad 3 0.0630119722747322 about 34 0.7141356857802983 we'll 6 0.1260239445494644 budget 3 0.0630119722747322 good 16 0.33606385213190504 talk 6 0.1260239445494644 investments 3 0.0630119722747322 say 8 0.16803192606595252 neighborhoods 3 0.0630119722747322 for 42 0.8821676118462508 get 16 0.33606385213190504 ways 3 0.0630119722747322 federal 5 0.10501995379122034 who 21 0.4410838059231254 growth 4 0.08401596303297626 iran 3 0.0630119722747322 much 6 0.1260239445494644 let's 7 0.14702793530770847 he 42 0.8821676118462508 some 13 0.2730518798571729 called 6 0.1260239445494644 states 7 0.14702793530770847 trickle 4 0.08401596303297626 muslim 3 0.0630119722747322 nuclear 8 0.16803192606595252 responsibilities 3 0.0630119722747322 have 84 1.7643352236925016 seen 3 0.0630119722747322 means 4 0.08401596303297626 help 4 0.08401596303297626 tax 16 0.33606385213190504 president 6 0.1260239445494644 iraq 5 0.10501995379122034 financial 3 0.0630119722747322 problem 3 0.0630119722747322 where 7 0.14702793530770847 he's 11 0.23104389834068473 though 3 0.0630119722747322 my 10 0.21003990758244068 just 14 0.29405587061541694 that's 18 0.3780718336483932 rising 3 0.0630119722747322 government 6 0.1260239445494644 may 3 0.0630119722747322 clean 4 0.08401596303297626 build 3 0.0630119722747322 proposed 7 0.14702793530770847 with 35 0.7351396765385423 problems 6 0.1260239445494644 everything 6 0.1260239445494644 york 3 0.0630119722747322 over 8 0.16803192606595252 facing 4 0.08401596303297626 look 10 0.21003990758244068 intend 3 0.0630119722747322 after 4 0.08401596303297626 use 5 0.10501995379122034 see 10 0.21003990758244068 need 23 0.4830917874396135 money 6 0.1260239445494644 got 14 0.29405587061541694 grow 3 0.0630119722747322 out 16 0.33606385213190504 biggest 4 0.08401596303297626 long 4 0.08401596303297626 future 5 0.10501995379122034 number 5 0.10501995379122034 they've 6 0.1260239445494644 will 21 0.4410838059231254 so 40 0.8401596303297627 percent 6 0.1260239445494644 private 3 0.0630119722747322 plans 5 0.10501995379122034 country 16 0.33606385213190504 those 8 0.16803192606595252 was 26 0.5461037597143458 at 33 0.6931316950220542 education 3 0.0630119722747322 lester 6 0.1260239445494644 right 6 0.1260239445494644 incomes 5 0.10501995379122034 everyone 6 0.1260239445494644 does 4 0.08401596303297626 debt 10 0.21003990758244068 no 10 0.21003990758244068 there's 5 0.10501995379122034 many 11 0.23104389834068473 give 5 0.10501995379122034 people 31 0.6511237135055661 i'm 7 0.14702793530770847 even 6 0.1260239445494644 or 7 0.14702793530770847 prepared 3 0.0630119722747322 before 3 0.0630119722747322 provide 4 0.08401596303297626 family 4 0.08401596303297626 ======================= Number of non-stopwords spoken by Clinton: 4761 Word counts for Trump ===================== our 60 0.8587376556462001 nafta 7 0.10018605982539001 used 5 0.07156147130385 on 45 0.6440532417346501 once 4 0.05724917704308 gave 3 0.042936882782310004 energy 3 0.042936882782310004 wait 7 0.10018605982539001 fifth 3 0.042936882782310004 world 14 0.20037211965078003 getting 5 0.07156147130385 i've 10 0.1431229426077 new 18 0.25762129669386 course 3 0.042936882782310004 very 71 1.01617289251467 don't 31 0.44368112208387006 mainstream 3 0.042936882782310004 trade 9 0.12881064834693 wonder 3 0.042936882782310004 about 34 0.48661800486618007 major 5 0.07156147130385 do 53 0.7585515958208101 them 37 0.52955488764849 kind 3 0.042936882782310004 doing 29 0.41505653356233 police 7 0.10018605982539001 you're 16 0.22899670817232 made 5 0.07156147130385 every 3 0.042936882782310004 as 29 0.41505653356233 actually 4 0.05724917704308 thing 21 0.30055817947617003 into 13 0.18605982539001 happened 8 0.11449835408616 i'd 5 0.07156147130385 able 7 0.10018605982539001 clinton 22 0.31487047373694005 campaign 8 0.11449835408616 proud 4 0.05724917704308 taxes 6 0.08587376556462001 frisk 6 0.08587376556462001 ever 14 0.20037211965078003 $650 3 0.042936882782310004 regulations 7 0.10018605982539001 started 7 0.10018605982539001 something 6 0.08587376556462001 talks 5 0.07156147130385 strongly 5 0.07156147130385 today 3 0.042936882782310004 wrong 11 0.15743523686847002 certificate 4 0.05724917704308 barack 4 0.05724917704308 love 3 0.042936882782310004 also 10 0.1431229426077 needs 4 0.05724917704308 economy 3 0.042936882782310004 saying 8 0.11449835408616 dnc 3 0.042936882782310004 need 13 0.18605982539001 myself 3 0.042936882782310004 cyber 5 0.07156147130385 they 69 0.9875483039931301 fine 3 0.042936882782310004 bad 13 0.18605982539001 build 3 0.042936882782310004 lists 4 0.05724917704308 paying 7 0.10018605982539001 minute 4 0.05724917704308 brought 5 0.07156147130385 yes 3 0.042936882782310004 same 3 0.042936882782310004 believe 15 0.21468441391155002 you've 9 0.12881064834693 ok 6 0.08587376556462001 one 25 0.35780735651925005 by 25 0.35780735651925005 this 46 0.65836553599542 been 38 0.5438671819092601 taken 10 0.1431229426077 think 37 0.52955488764849 iraq 4 0.05724917704308 experience 3 0.042936882782310004 inner 6 0.08587376556462001 any 4 0.05724917704308 supposed 4 0.05724917704308 it 121 1.7317876055531702 strong 4 0.05724917704308 know 27 0.38643194504079004 assets 3 0.042936882782310004 political 6 0.08587376556462001 street 3 0.042936882782310004 question 5 0.07156147130385 cut 4 0.05724917704308 lawsuit 4 0.05724917704308 she's 11 0.15743523686847002 real 3 0.042936882782310004 true 5 0.07156147130385 maybe 8 0.11449835408616 here 4 0.05724917704308 going 46 0.65836553599542 nato 10 0.1431229426077 sean 8 0.11449835408616 control 3 0.042936882782310004 north 5 0.07156147130385 can 8 0.11449835408616 land 5 0.07156147130385 taking 8 0.11449835408616 terror 3 0.042936882782310004 when 42 0.6011163589523401 way 20 0.2862458852154 life 3 0.042936882782310004 admirals 3 0.042936882782310004 bring 15 0.21468441391155002 would 20 0.2862458852154 numbers 3 0.042936882782310004 deal 11 0.15743523686847002 times 5 0.07156147130385 could 15 0.21468441391155002 japan 4 0.05724917704308 returns 3 0.042936882782310004 their 19 0.27193359095463004 truth 3 0.042936882782310004 what's 7 0.10018605982539001 off 5 0.07156147130385 put 4 0.05724917704308 now 22 0.31487047373694005 let 9 0.12881064834693 plan 3 0.042936882782310004 it's 72 1.03048518677544 income 5 0.07156147130385 but 79 1.1306712466008302 words 3 0.042936882782310004 far 7 0.10018605982539001 had 12 0.17174753112924002 got 13 0.18605982539001 mean 8 0.11449835408616 percent 5 0.07156147130385 york 5 0.07156147130385 great 15 0.21468441391155002 in 108 1.5457277801631601 interview 3 0.042936882782310004 arabia 3 0.042936882782310004 whether 7 0.10018605982539001 are 55 0.78717618434235 keeping 3 0.042936882782310004 secretary 27 0.38643194504079004 fight 5 0.07156147130385 opening 3 0.042936882782310004 hannity 7 0.10018605982539001 spent 4 0.05724917704308 said 37 0.52955488764849 pennsylvania 3 0.042936882782310004 go 19 0.27193359095463004 help 7 0.10018605982539001 watch 5 0.07156147130385 war 13 0.18605982539001 away 5 0.07156147130385 haven't 7 0.10018605982539001 were 21 0.30055817947617003 him 9 0.12881064834693 dollars 4 0.05724917704308 4 3 0.042936882782310004 schedule 3 0.042936882782310004 laws 5 0.07156147130385 hillary 8 0.11449835408616 before 8 0.11449835408616 she 29 0.41505653356233 badly 3 0.042936882782310004 5 3 0.042936882782310004 long 7 0.10018605982539001 deals 8 0.11449835408616 week 4 0.05724917704308 cities 6 0.08587376556462001 right 13 0.18605982539001 should 25 0.35780735651925005 things 21 0.30055817947617003 then 8 0.11449835408616 little 6 0.08587376556462001 being 4 0.05724917704308 best 4 0.05724917704308 more 14 0.20037211965078003 around 4 0.05724917704308 trying 3 0.042936882782310004 tough 4 0.05724917704308 cases 4 0.05724917704308 airports 4 0.05724917704308 came 3 0.042936882782310004 they're 40 0.5724917704308 probably 5 0.07156147130385 losing 6 0.08587376556462001 not 52 0.74423930156004 history 3 0.042936882782310004 frankly 3 0.042936882782310004 lots 5 0.07156147130385 companies 20 0.2862458852154 nobody 7 0.10018605982539001 banks 3 0.042936882782310004 quickly 3 0.042936882782310004 big 8 0.11449835408616 most 3 0.042936882782310004 isn't 3 0.042936882782310004 looks 3 0.042936882782310004 his 4 0.05724917704308 happy 3 0.042936882782310004 give 7 0.10018605982539001 asked 4 0.05724917704308 15 3 0.042936882782310004 you 200 2.8624588521540004 defending 3 0.042936882782310004 cannot 5 0.07156147130385 because 58 0.83011306712466 anywhere 5 0.07156147130385 all 43 0.61542865321311 can't 18 0.25762129669386 estate 3 0.042936882782310004 last 7 0.10018605982539001 there 12 0.17174753112924002 day 7 0.10018605982539001 we 123 1.7604121940747102 does 3 0.042936882782310004 respond 6 0.08587376556462001 who 8 0.11449835408616 pay 3 0.042936882782310004 job 9 0.12881064834693 read 4 0.05724917704308 what 42 0.6011163589523401 nice 3 0.042936882782310004 these 20 0.2862458852154 come 8 0.11449835408616 doesn't 11 0.15743523686847002 year 4 0.05724917704308 200 3 0.042936882782310004 fact 7 0.10018605982539001 take 13 0.18605982539001 city 4 0.05724917704308 important 6 0.08587376556462001 sent 4 0.05724917704308 has 15 0.21468441391155002 fly 3 0.042936882782310004 there's 9 0.12881064834693 certainly 5 0.07156147130385 family 3 0.042936882782310004 defend 7 0.10018605982539001 other 19 0.27193359095463004 feel 3 0.042936882782310004 only 6 0.08587376556462001 met 3 0.042936882782310004 thinks 3 0.042936882782310004 than 11 0.15743523686847002 i 231 3.3061399742378703 internet 3 0.042936882782310004 why 10 0.1431229426077 never 9 0.12881064834693 politicians 10 0.1431229426077 me 36 0.51524259338772 did 21 0.30055817947617003 up 13 0.18605982539001 formed 5 0.07156147130385 nothing 7 0.10018605982539001 us 15 0.21468441391155002 went 4 0.05724917704308 small 3 0.042936882782310004 oil 6 0.08587376556462001 time 14 0.20037211965078003 terrible 5 0.07156147130385 raise 4 0.05724917704308 place 6 0.08587376556462001 wealthy 4 0.05724917704308 if 21 0.30055817947617003 thousands 8 0.11449835408616 another 5 0.07156147130385 saudi 3 0.042936882782310004 excuse 4 0.05724917704308 back 14 0.20037211965078003 business 7 0.10018605982539001 down 9 0.12881064834693 well 22 0.31487047373694005 be 52 0.74423930156004 i'll 11 0.15743523686847002 anything 3 0.042936882782310004 how 10 0.1431229426077 tremendous 11 0.15743523686847002 interest 4 0.05724917704308 some 19 0.27193359095463004 tell 15 0.21468441391155002 years 22 0.31487047373694005 trillion 12 0.17174753112924002 different 5 0.07156147130385 iran 6 0.08587376556462001 beautiful 3 0.042936882782310004 anybody 4 0.05724917704308 greatest 7 0.10018605982539001 impact 3 0.042936882782310004 four 4 0.05724917704308 first 10 0.1431229426077 lot 15 0.21468441391155002 law 7 0.10018605982539001 make 6 0.08587376556462001 relationships 5 0.07156147130385 roads 3 0.042936882782310004 communities 4 0.05724917704308 since 5 0.07156147130385 obama's 3 0.042936882782310004 look 44 0.6297409474738801 blumenthal 3 0.042936882782310004 almost 9 0.12881064834693 call 3 0.042936882782310004 work 7 0.10018605982539001 isis 14 0.20037211965078003 your 19 0.27193359095463004 ask 4 0.05724917704308 is 79 1.1306712466008302 we've 5 0.07156147130385 want 23 0.32918276799771 under 7 0.10018605982539001 done 11 0.15743523686847002 rates 3 0.042936882782310004 american 5 0.07156147130385 having 3 0.042936882782310004 release 4 0.05724917704308 told 3 0.042936882782310004 middle 7 0.10018605982539001 hundreds 4 0.05724917704308 cost 3 0.042936882782310004 agree 13 0.18605982539001 shootings 3 0.042936882782310004 chicago 8 0.11449835408616 hard 3 0.042936882782310004 debt 5 0.07156147130385 budget 4 0.05724917704308 nation 4 0.05724917704308 stop 13 0.18605982539001 left 4 0.05724917704308 mine 3 0.042936882782310004 order 9 0.12881064834693 audited 4 0.05724917704308 we'll 4 0.05724917704308 billion 3 0.042936882782310004 power 3 0.042936882782310004 good 18 0.25762129669386 talk 4 0.05724917704308 say 31 0.44368112208387006 stamina 5 0.07156147130385 birth 4 0.05724917704308 bit 3 0.042936882782310004 for 41 0.5868040646915701 get 26 0.37211965078002 against 13 0.18605982539001 community 10 0.1431229426077 manager 3 0.042936882782310004 produce 4 0.05724917704308 trump 3 0.042936882782310004 much 19 0.27193359095463004 killed 5 0.07156147130385 single 5 0.07156147130385 thinking 4 0.05724917704308 nuclear 8 0.11449835408616 created 3 0.042936882782310004 worst 7 0.10018605982539001 article 3 0.042936882782310004 murders 5 0.07156147130385 places 6 0.08587376556462001 within 3 0.042936882782310004 he 14 0.20037211965078003 story 3 0.042936882782310004 totally 5 0.07156147130385 own 3 0.042936882782310004 somebody 5 0.07156147130385 talking 8 0.11449835408616 russia 8 0.11449835408616 states 5 0.07156147130385 seen 6 0.08587376556462001 like 22 0.31487047373694005 lester 11 0.15743523686847002 fault 3 0.042936882782310004 billions 5 0.07156147130385 credit 3 0.042936882782310004 have 143 2.0466580792901103 find 4 0.05724917704308 million 5 0.07156147130385 her 20 0.2862458852154 tax 14 0.20037211965078003 president 11 0.15743523686847002 didn't 9 0.12881064834693 protect 3 0.042936882782310004 telling 3 0.042936882782310004 where 16 0.22899670817232 he's 6 0.08587376556462001 mexico 6 0.08587376556462001 my 15 0.21468441391155002 yeah 3 0.042936882782310004 that's 29 0.41505653356233 from 23 0.32918276799771 10 5 0.07156147130385 disaster 5 0.07156147130385 sell 3 0.042936882782310004 30 7 0.10018605982539001 start 3 0.042936882782310004 leaving 15 0.21468441391155002 company 8 0.11449835408616 unbelievable 3 0.042936882782310004 000 7 0.10018605982539001 east 6 0.08587376556462001 care 5 0.07156147130385 united 4 0.05724917704308 with 52 0.74423930156004 advantage 4 0.05724917704308 everything 5 0.07156147130385 over 18 0.25762129669386 ago 3 0.042936882782310004 which 14 0.20037211965078003 two 4 0.05724917704308 use 3 0.042936882782310004 see 11 0.15743523686847002 website 6 0.08587376556462001 money 17 0.24330900243309003 approved 3 0.042936882782310004 out 26 0.37211965078002 obama 9 0.12881064834693 biggest 5 0.07156147130385 signed 3 0.042936882782310004 mess 6 0.08587376556462001 number 5 0.07156147130385 they've 5 0.07156147130385 will 30 0.42936882782310004 during 3 0.042936882782310004 so 46 0.65836553599542 certain 3 0.042936882782310004 just 39 0.55817947617003 mayor 5 0.07156147130385 end 3 0.042936882782310004 defective 3 0.042936882782310004 audit 3 0.042936882782310004 endorsed 6 0.08587376556462001 list 5 0.07156147130385 too 4 0.05724917704308 china 9 0.12881064834693 country 49 0.70130241877773 was 67 0.95892371547159 at 45 0.6440532417346501 terms 5 0.07156147130385 expand 4 0.05724917704308 report 3 0.042936882782310004 plants 3 0.042936882782310004 large 3 0.042936882782310004 approve 5 0.07156147130385 guns 5 0.07156147130385 really 19 0.27193359095463004 coming 3 0.042936882782310004 fed 5 0.07156147130385 after 4 0.05724917704308 countries 12 0.17174753112924002 happen 6 0.08587376556462001 no 29 0.41505653356233 many 28 0.40074423930156006 we're 25 0.35780735651925005 korea 6 0.08587376556462001 throughout 4 0.05724917704308 name 3 0.042936882782310004 people 33 0.47230571060541005 called 5 0.07156147130385 500 4 0.05724917704308 everybody 6 0.08587376556462001 learn 4 0.05724917704308 problem 6 0.08587376556462001 soon 4 0.05724917704308 $20 6 0.08587376556462001 person 3 0.042936882782310004 jobs 18 0.25762129669386 ahead 3 0.042936882782310004 shouldn't 5 0.07156147130385 ohio 3 0.042936882782310004 worth 3 0.042936882782310004 i'm 30 0.42936882782310004 even 11 0.15743523686847002 old 5 0.07156147130385 or 18 0.25762129669386 concerned 3 0.042936882782310004 african 7 0.10018605982539001 better 11 0.15743523686847002 ======================= Number of non-stopwords spoken by Trump: 6987
Let's now try to make that program a bit better! You can just edit it above and leave the final program.
Although it was useful to learn about if control structures – and we will use them a lot – you don't actually need to use one here if you instead remember about the get(<key>, <default>) method on a dict that we saw earlier. Try using it.
The above code is hardcoded to print words that occur 2 or more times. This makes the list shorter by leaving out words that occur only once (the "hapax legomena" of the list — there are always a lot of these, often about 40% of the word types). But it's still a long list. We might want to only print words that occur 3 or more times, say. Make the minimum number of times for a word to occur to print it another parameter of the second function, and have the top-level code call it with the value 3.
At the other extreme, it might not be very interesting knowing how often the candidates say "the" or "to". Such function words often don't seem to carry much content. (Though, of course, be aware of the work of people such as James Pennebaker, who emphasizes how much social meaning can be conveyed by function words. Lists of common function words that you are not going to count are conventionally called stop words in computational work. Modify the first program to also accept a list of stop words which you don't put in the hash. Modify the top-level code so that it doesn't count ['the', 'a', 'an', 'that', 'and', 'to', 'of']
We're starting to suffer badly from simply tokenizing by dividing on whitespace. We could do a little better by simply "whiting out" the commonest punctuation marks that glom on to words. Before splitting on white space, we could change the string to delete letters like: '.', ',', '"'. Remember the replace() method on str that we saw last time. Look at your output, you may well want to delete a few more. Doing this will do a little textual damage; e.g., 30,000 will become 30000, but it won't be too bad. You may want to not delete ', though, so that you don't damage words like isn't.
It might also be useful to lowercase all tokens, so that words don't become different just because they are at the start of a sentence. Of course, you'll then just have to be smart enough to recognize that irs means the IRS.
It would be good to also add up how many non-stop words were spoken by each candidate. Who spoke the most?
To normalize for frequency, it would be useful to also work out the percent of times the word each candidate says is a certain word. So, in the second function, also print the percent as well as the raw count.
Find at least one interesting difference in word use between the two candidates, and put it in the cell below!
Trump loves the simple intensifier very. He says it 4 times as often as Clinton:
Clinton uses very 12 times (0.25% of tokens) while Trump uses it 71 times (over 1% of tokens).
This is a special thing about very. Trump likes simple words. It doesn't extend to other intensifiers. Clinton actually uses really at a higher rate than Trump.
The raw data files for the Google Books collection are available for
download. The files are huge, so I created a tiny sample in the file googlebooks-eng-all-1gram-20120701-a-sample.
The format of this file is as follows (whitespace inserted for readability):
word TAB year TAB match_count TAB volume_count NEWLINE
The TAB character is "\t", which you can treat like any other (for
example, you can split a string on "\t"). The match_count is how many times the word occurred and the volume_count is a smaller number for how many different books it occurred in. We will use the match_count. Note that the words have also been disambiguated by part of speech where ambiguous. We'll get to that later.
Your first task: complete googlebooks_counts_by_year so that it processes my sample file and returns a 2d dictionary (a top-level dictionary whose values are each a dictionary!) with this structure:
{ word1: {year1: count, year2: count ...}, word2: {year1: count, year2: count ...}, ... }
where the contents of the year dicts is determined by the file. (That is, different words will have different years and counts associated with them.)
def googlebooks_counts_by_year(filename):
"""Maps a Google books 1-grams file to a 2d dictionary
giving each word's counts by year."""
# Initialize the top level dict
all_counts = {}
# open the file for reading
gcountsfile = open(filename)
# go through the open file line by line
for line in gcountsfile:
# get rid of the line break at the end
line = line.strip()
# split sentence at tabs
fields = line.split('\t')
word = fields[0]
year = fields[1]
count = int(fields[2])
if (word not in all_counts):
# Initialize a new empty dict for that word type
all_counts[word] = {}
# Now we know that word is in the all_counts dict!
all_counts[word][year] = count
# close the file after reading
gcountsfile.close()
# return the dict
return all_counts
Second task: Complete the function googlebooks_year_collapse so that it takes as input the output of googlebooks_counts_by_year and collapses it down so that each word is associated with its single tokencount for the full, obtained by summing up all of the counts for the years associated with that word.
def googlebooks_year_collapse(d):
"""Convert the output of googlebooks_counts_by_year to
a simpler dict mapping words to counts."""
# Have a new dictionary for the collapsed counts
collapsed = {}
for word in d.keys():
total = 0
year_dict = d[word]
for (year,count) in year_dict.items():
total = total + count
collapsed[word] = total
return collapsed
Write something at the top-level to call this code on the file googlebooks-eng-all-1gram-20120701-a-sample:
details_dict = googlebooks_counts_by_year(
'googlebooks-eng-all-1gram-20120701-a-sample')
collapsed_dict = googlebooks_year_collapse(details_dict)
print('Collapsed counts')
print('================')
for key in collapsed_dict.keys():
print(key, collapsed_dict[key])
print('All counts')
print('================')
for key in details_dict.keys():
print(key, details_dict[key])
Collapsed counts
================
adelfas 235
adrsfa_DET 103
adina_ADJ 57
achronological_ADJ 2000
affabilité 333
advantagesof_ADP 193
acompanan 413
administration.78 433
acidophil 12288
acarne 457
abstersion_ADP 93
additionnelle_X 1565
acinte 107
activities25 114
actix 57
affiliation 1889984
addieted_VERB 243
accused.32_NOUN 99
achoison_NOUN 51
accumlates_NOUN 77
actois_DET 48
adoptability 3191
adueniens_NOUN 57
affair.81 60
aerohics 107
act.101 158
adorad 163
affigunt 106
afiigned_VERB 181
affiftans 102
accordina_NOUN 256
acute.21 44
aequanimitatem_X 56
aceus_NOUN 168
adience_NOUN 1419
accelerandi_VERB 49
adhored 68
aduis'd 100
adRP_NOUN 247
afHuent 107
acetylacetonate_ADJ 1460
aday_ADP 108
abstraits_VERB 164
accidente_ 46
acanthopores_NOUN 4012
adhesion_NOUN 1803957
admitted.48 153
affactiva_NOUN 65
adjustment.10 336
activities.204 41
adjections 315
achttausend 79
adicillin 78
acrecento 52
acccompanying_VERB 197
addictio 2441
actresse 88
aeter_ADJ 122
acedemics 63
accreditation_DET 112
adjoiniug 229
adoption.22 140
accessio_ADP 84
actionprocess 132
acceptando 171
accueillant_VERB 113
acknowledgeable_NOUN 123
adults.7_VERB 73
abutere_VERB 168
aenus 516
acria_NOUN 155
adivinado_X 190
addrc 223
accountants.6 70
advancing_VERB 4550570
abstinentiae_DET 122
aditya 2626
addietro_NOUN 44
affiir_NOUN 117
admit.31_VERB 47
account.81_NOUN 218
acci_X 1100
acculée_X 62
activity.102_NOUN 185
activity3_VERB 83
affrontee_VERB 91
acidized_ADJ 169
accuracy.15 248
abstentions.13 75
acediae 129
action.80 1234
ader_ADJ 418
abstractions.11 51
absurd.14_ADP 74
achatados_NOUN 90
acetaria 96
abuse.53_NOUN 59
addea_DET 168
admixtures_VERB 1267
adjuc 46
action.49_VERB 58
adhamam_X 43
accessories 1419295
accormts_NOUN 72
aerw 255
achier_X 69
acetylcholinebinding 91
activity52_NOUN 67
accompaniedbya 56
acticed 104
acoustio_NOUN 82
abstained 459896
aeA_ADP 59
aflections 53
acac_NOUN 868
ad'a_X 46
adolphii 78
affluence.3 87
adulous_ADJ 42
acjds 89
actionListener_NUM 222
accordoit_X 142
abstrahat 228
adaptea_NOUN 52
adaptableness 459
adversity_ADJ 4309
addRecipient 182
acombination 1213
acidhematoxylin 158
adjacens_DET 42
acaulay_NOUN 201
abstrusen 86
adaot 57
adviaing 41
admeasurer 212
aeruleus 52
adbered 54
accesorio_NOUN 116
abstain_VERB 1022507
adhikaris_DET 156
acmd_NOUN 94
afastadas_X 49
aependent_ADJ 55
act.50_ADP 95
adoptmg_DET 112
aerophare 150
activemindedness_NOUN 41
acceptance.1_VERB 69
aetata_DET 701
activitat_ADP 49
affirmation_NUM 1268
acker_VERB 350
adenylations 55
adrip_DET 40
affiirmed_VERB 115
adrnired_VERB 79
acceleratively 344
aduentures_NOUN 2163
action>_NUM 136
acid.44 230
affec'ed 46
abstinentes_X 88
adaras 51
aerocyanosis 48
acedaemonians_NOUN 81
adzes_VERB 1838
adgang_X 681
adelphois 68
adnuntiat_X 112
adjustments.14_NOUN 84
acylate_ADJ 450
aempt_NOUN 479
aeathetic_ADJ 93
aeolosomatids_NOUN 97
aerotactic 587
abzustatten_NOUN 54
adequtely_ADV 151
accompanyed_ADJ 76
advice.0 59
adaprable_ADJ 80
accipis_X 506
administrato_X 55
aconsejar_VERB 66
adaptat_DET 124
adnpt 66
admovent_NOUN 46
advaitist_ADJ 146
adoption.23_NOUN 99
accummulation_NOUN 3833
addidicit 65
adenomas_NOUN 257563
aenaitive_ADJ 142
admirada 320
adrian 2047
acorning_VERB 88
admen_NOUN 8688
admonisht_VERB 322
acculturalised 46
accrochages_X 84
acrown_ADJ 3313
adjutantcy_NOUN 149
acuñado_X 172
accepto_NOUN 170
aediun_NOUN 56
accouchant_X 57
accidants_NOUN 48
accept.63 88
adp_ADJ 294
abstulissent 77
aetioallobilianic_ADJ 63
acceptance.13 361
admovens 139
adsorbierter_X 94
activity.141 158
accentual_VERB 165
admiration.11 114
actors.15_NOUN 226
afib_DET 52
accompanying1 119
acusticus_PRON 196
administration.35_NOUN 721
acollective 301
accoidingto 47
aerospatiale_DET 58
acid.108 88
aerarii 4523
accmnulated_VERB 43
adjuvabit_X 138
abwälzen_X 60
adresata 202
administratior 397
accommodatethe 79
abstenue_NOUN 71
acomodation 193
abstraction3 66
affuso_X 49
adventurestory 181
adonai_ADJ 174
aeis_NOUN 107
adaptaciĂłn_NOUN 290
acidcleaned 223
adopted.3_VERB 825
adimens 60
afhrme 66
accentual_ADJ 79292
affetto_NOUN 821
aegyptl_NOUN 64
admin@kippra.or.ke 94
affermazioni_NOUN 203
aegrum_X 1348
accuse 1448895
accusat1on_NOUN 58
afiure 192
aegros_NOUN 67
adolescentia_NOUN 817
adfigit_X 59
acquiescence.11 60
accordingly.82 152
accoutum6 52
accre_VERB 137
abstinebat_X 72
adopted.1_NOUN 383
activities.129_NOUN 104
actuaL_NOUN 117
affo'd 148
advised 7419337
acquise 13670
abstinuere 79
academies.4_NOUN 71
activing_VERB 110
afid_DET 442
abtsract 59
adaptory 76
acetylsn 65
aeruginosa1 61
adveneris 98
affascinare_NOUN 283
abzuschreiben 275
adjunct_ADJ 9044
acquisitionism 77
accordingly.94 75
adverb_ADP 1263
actar 142
accordingly.85_ADP 46
advaneo 53
acod 202
acclamatisation 47
affair.68_NOUN 84
acnve 274
afaf_ADP 113
aestheticexpressive_ADJ 136
adipt 55
acknoweledge 96
aef_NUM 111
actoris_X 1550
aerea_NUM 46
adventurousness_NOUN 27973
afficheurs 85
adhocness_ADJ 63
affrancare 339
aepi_X 46
acá_X 10015
affirmed.4 658
accepted.25_NOUN 44
All counts
================
adelfas {'1984': 2, '2003': 4, '1982': 1, '1979': 2, '1952': 2, '1996': 3, '2005': 4, '1944': 1, '2007': 4, '1983': 6, '1975': 1, '2001': 5, '1974': 1, '1987': 7, '1964': 1, '2004': 2, '1942': 3, '2002': 5, '1985': 6, '1986': 4, '1995': 6, '1937': 14, '1970': 1, '1999': 4, '1961': 1, '1973': 14, '1976': 2, '1953': 1, '1992': 1, '1948': 2, '2006': 3, '1967': 5, '1966': 6, '1989': 1, '1941': 1, '2000': 6, '1958': 3, '1991': 13, '1947': 2, '1997': 6, '1990': 1, '1955': 1, '1954': 3, '1994': 7, '1920': 2, '1933': 4, '1957': 3, '1980': 10, '1971': 4, '1993': 2, '1998': 2, '2008': 10, '1977': 7, '1875': 4, '1956': 1, '1988': 1, '1946': 1, '1949': 4, '1907': 2, '1981': 8, '1978': 2}
adrsfa_DET {'1961': 1, '1980': 3, '1973': 1, '1976': 3, '1953': 1, '1972': 2, '1965': 7, '1979': 3, '2006': 2, '1966': 2, '1989': 5, '1978': 1, '2000': 6, '1958': 1, '1991': 1, '1990': 1, '1994': 1, '1987': 7, '1964': 1, '1977': 14, '1971': 6, '1962': 1, '1970': 5, '1988': 5, '1986': 2, '2007': 5, '1960': 5, '1981': 10, '1999': 1}
adina_ADJ {'1984': 1, '1961': 1, '2001': 2, '1867': 1, '1972': 7, '2006': 2, '2005': 2, '1989': 6, '2003': 1, '1993': 2, '1998': 3, '1974': 5, '1990': 2, '1955': 1, '1987': 1, '1982': 2, '1977': 2, '1962': 1, '2004': 2, '1999': 3, '2002': 1, '1985': 1, '1995': 7, '1970': 1}
achronological_ADJ {'1984': 22, '1967': 7, '2003': 62, '1982': 18, '1972': 11, '1965': 1, '1996': 62, '2008': 71, '2005': 70, '1993': 70, '1901': 1, '1781': 1, '1978': 23, '1975': 15, '2001': 117, '1974': 13, '1957': 1, '1997': 60, '1970': 5, '1962': 1, '1945': 1, '1853': 1, '2004': 73, '1942': 3, '2002': 100, '1985': 45, '1986': 45, '1995': 66, '2007': 68, '1969': 6, '1999': 87, '1961': 1, '1973': 4, '1976': 10, '1992': 83, '2006': 88, '1968': 10, '1966': 2, '1989': 62, '1935': 1, '2000': 86, '1904': 2, '1803': 1, '1998': 37, '1990': 85, '1909': 2, '1994': 68, '1987': 36, '1979': 25, '1971': 22, '1809': 2, '1837': 1, '1977': 22, '1991': 124, '1988': 29, '1980': 34, '1949': 1, '1981': 12, '1983': 24}
affiliation {'1818': 35, '1860': 182, '1838': 73, '1903': 1041, '1775': 2, '1952': 5325, '1515': 2, '1917': 2034, '1958': 8558, '1688': 1, '1781': 1, '1750': 1, '1975': 21880, '1902': 905, '1799': 4, '1889': 375, '1905': 1195, '1856': 235, '1914': 1999, '1820': 20, '1884': 544, '1930': 2629, '1890': 478, '1845': 89, '1853': 144, '1861': 128, '1932': 2814, '1863': 167, '1937': 2694, '1921': 2342, '1822': 10, '1835': 48, '1877': 288, '1965': 15952, '1842': 81, '1872': 284, '1811': 7, '1805': 2, '1864': 178, '1792': 3, '1985': 30380, '1966': 18876, '1941': 3623, '1880': 321, '1915': 1890, '1900': 908, '1871': 155, '2005': 68505, '1801': 41, '1954': 7120, '1944': 2477, '2007': 75161, '1934': 2810, '1957': 8091, '1847': 123, '1938': 3426, '1993': 37590, '1728': 1, '1837': 26, '1600': 2, '1888': 477, '1956': 8004, '1919': 1766, '1949': 5503, '1798': 1, '1830': 14, '1875': 265, '1948': 6402, '1972': 22458, '1881': 279, '1796': 13, '1996': 44798, '1901': 692, '1766': 1, '1916': 2313, '1824': 10, '1740': 1, '1841': 66, '1817': 17, '2002': 60421, '1802': 7, '1885': 432, '1865': 209, '1922': 3154, '1833': 19, '2001': 58483, '1882': 382, '1939': 3153, '1777': 3, '1970': 22827, '1859': 181, '1828': 23, '1809': 3, '1827': 31, '1874': 279, '1862': 127, '1848': 90, '1870': 296, '1814': 1, '1931': 2704, '1955': 7869, '1911': 1765, '1815': 5, '1854': 197, '1933': 2299, '1925': 2375, '1927': 3100, '1819': 10, '1849': 139, '1858': 161, '1790': 2, '1946': 3091, '1895': 777, '1981': 23969, '1851': 119, '1984': 25378, '1967': 29833, '1869': 202, '2003': 66380, '1810': 17, '1982': 24960, '1807': 5, '2004': 69631, '1968': 19759, '1894': 574, '1673': 4, '1813': 45, '1983': 24849, '1898': 735, '1943': 2836, '1836': 26, '1892': 571, '1887': 387, '1840': 48, '1891': 603, '1945': 3392, '1857': 116, '1906': 1144, '1846': 65, '1942': 2817, '1986': 27089, '1873': 265, '1843': 67, '1752': 1, '1774': 2, '1878': 206, '1883': 493, '1844': 64, '1953': 6488, '1987': 28488, '1839': 66, '2006': 71608, '1804': 5, '1989': 31697, '1935': 2479, '1879': 221, '1924': 1899, '1904': 1367, '1812': 3, '1909': 1282, '1829': 39, '1669': 2, '1994': 39283, '1918': 1572, '1794': 5, '1951': 6296, '1977': 24073, '1971': 22576, '1823': 6, '1852': 99, '1950': 6240, '1893': 1937, '1999': 50626, '1797': 2, '1795': 12, '1980': 24819, '1995': 41289, '1762': 1, '1960': 11286, '1978': 23091, '1759': 1, '1913': 1928, '1834': 34, '1929': 2605, '1826': 13, '1936': 3029, '1866': 190, '1973': 21838, '1912': 2062, '1897': 816, '1808': 1, '1868': 235, '1940': 3711, '1850': 190, '1816': 13, '1964': 14412, '1821': 10, '1899': 810, '1908': 1377, '1974': 23140, '1963': 12919, '1825': 19, '1998': 47837, '1832': 26, '1969': 19348, '1961': 12010, '1928': 2257, '1976': 24210, '1867': 220, '1959': 8462, '1992': 36069, '1923': 2235, '1896': 652, '1988': 30554, '1962': 13008, '2000': 56965, '1910': 1768, '1876': 240, '1803': 4, '1947': 4477, '1997': 46137, '1990': 32902, '1920': 2538, '1926': 2164, '1979': 24880, '1800': 9, '1831': 34, '1886': 395, '2008': 70040, '1786': 4, '1855': 216, '1727': 1, '1907': 1217, '1991': 32272}
affabilité {'1984': 2, '2003': 2, '1997': 4, '1845': 2, '2004': 2, '1965': 1, '1827': 6, '1959': 2, '1894': 2, '2005': 5, '1944': 2, '1975': 2, '1898': 1, '1902': 5, '1836': 3, '1892': 1, '1887': 1, '1939': 2, '1905': 3, '1891': 2, '1820': 1, '1884': 6, '1970': 3, '1846': 1, '1861': 1, '1986': 2, '1843': 4, '1762': 1, '1993': 1, '1878': 2, '1973': 3, '1842': 6, '1990': 1, '1953': 1, '1987': 3, '2006': 28, '1804': 2, '1935': 1, '1999': 3, '1904': 5, '1880': 2, '1900': 4, '1805': 2, '1829': 1, '1998': 3, '1994': 3, '1934': 1, '1977': 1, '1971': 2, '1921': 1, '1888': 1, '1809': 1, '1950': 1, '1922': 1, '1967': 4, '1980': 2, '1949': 2, '1929': 1, '1875': 1, '1913': 4, '1927': 1, '1972': 3, '1796': 1, '1936': 3, '1996': 6, '1866': 3, '1978': 3, '1883': 2, '1912': 3, '1897': 8, '1868': 1, '1824': 1, '1788': 15, '1964': 3, '1899': 2, '1908': 2, '1837': 4, '1974': 6, '1985': 1, '1995': 3, '1865': 1, '1969': 1, '1833': 1, '1961': 4, '1928': 1, '2001': 2, '1976': 2, '1867': 5, '1777': 1, '1992': 2, '1948': 2, '1896': 3, '1968': 3, '2000': 2, '1910': 2, '1876': 2, '1947': 2, '1931': 1, '1906': 3, '1951': 2, '1832': 6, '1926': 1, '1806': 2, '2008': 37, '1991': 3, '1855': 2, '1946': 1, '1895': 2, '1886': 2, '1862': 1}
advantagesof_ADP {'2003': 1, '1860': 1, '1903': 3, '1827': 1, '1917': 1, '1983': 1, '1975': 1, '1685': 1, '1902': 1, '1836': 4, '1892': 2, '1887': 2, '1899': 1, '1905': 2, '1930': 1, '1890': 1, '1845': 1, '2004': 5, '1863': 1, '1937': 1, '1878': 1, '1784': 1, '1973': 1, '1955': 1, '1864': 1, '2006': 9, '1966': 2, '1989': 1, '1941': 1, '1879': 1, '1986': 1, '1904': 1, '1880': 1, '1900': 1, '2005': 13, '1814': 1, '1829': 3, '2007': 19, '1977': 1, '1971': 2, '1901': 1, '1999': 3, '1956': 2, '1874': 1, '1980': 1, '1998': 1, '1960': 1, '1875': 1, '1913': 1, '1896': 2, '1972': 2, '1826': 1, '1796': 2, '1866': 1, '1978': 1, '1743': 1, '1912': 1, '1897': 1, '1808': 1, '1868': 1, '1987': 1, '1964': 1, '1838': 1, '1889': 1, '1825': 2, '1885': 1, '1922': 2, '2001': 2, '1949': 1, '1867': 1, '1797': 1, '1992': 1, '1931': 2, '1924': 1, '2000': 1, '1910': 3, '1870': 1, '1947': 1, '1990': 1, '1996': 3, '1911': 1, '1854': 2, '1979': 2, '1800': 1, '1819': 1, '1849': 1, '2008': 31, '1909': 1, '1907': 4, '1991': 1}
acompanan {'1984': 6, '1913': 5, '2003': 15, '1818': 1, '1982': 4, '1972': 5, '1965': 2, '1952': 1, '1959': 3, '1917': 1, '2005': 14, '1983': 8, '1975': 3, '2001': 13, '1974': 2, '1940': 1, '1939': 1, '1935': 3, '1987': 4, '1964': 4, '1988': 2, '2004': 14, '1942': 2, '2002': 13, '1985': 7, '1986': 5, '1995': 9, '1937': 5, '1970': 8, '1999': 14, '1877': 1, '1973': 7, '1976': 5, '1963': 3, '1979': 1, '1948': 2, '2006': 11, '1968': 4, '1966': 2, '1989': 4, '1941': 1, '2000': 17, '1910': 5, '1993': 9, '1991': 13, '1992': 3, '1886': 1, '1947': 2, '1997': 15, '1990': 7, '1996': 9, '1994': 22, '1951': 2, '1920': 7, '2007': 13, '1925': 2, '1894': 1, '1980': 7, '1971': 13, '1847': 1, '1938': 1, '2008': 8, '1977': 2, '1969': 5, '1956': 14, '1967': 2, '1946': 1, '1998': 9, '1960': 3, '1981': 2, '1851': 1}
aegyptl_NOUN {'1982': 2, '1961': 3, '1964': 3, '1973': 2, '1976': 1, '1969': 1, '1963': 1, '1984': 1, '1952': 1, '1948': 2, '1981': 7, '1989': 9, '1935': 3, '1975': 2, '1993': 1, '1992': 1, '1923': 1, '1990': 1, '1974': 1, '1997': 2, '1939': 1, '1994': 1, '1951': 1, '1987': 2, '1934': 1, '1962': 1, '1988': 1, '2004': 1, '1942': 1, '1972': 2, '1967': 1, '1986': 1, '1995': 1, '1960': 2, '1970': 1, '1983': 1}
administration.78 {'1984': 6, '1964': 14, '2003': 16, '1982': 7, '1980': 7, '1972': 4, '1965': 14, '1952': 4, '1996': 4, '1922': 1, '2005': 11, '1944': 1, '1950': 3, '1978': 4, '1975': 5, '2001': 13, '1974': 4, '1940': 3, '1939': 1, '1957': 1, '1930': 1, '2006': 22, '1962': 1, '1945': 3, '1988': 4, '2004': 8, '1942': 4, '2002': 16, '1985': 8, '1986': 7, '1995': 17, '2007': 8, '1969': 2, '1932': 2, '1961': 1, '1903': 1, '1973': 3, '1976': 11, '1953': 1, '1963': 12, '1979': 4, '1948': 3, '1931': 4, '1968': 7, '1966': 3, '1989': 4, '2000': 9, '1999': 6, '1904': 4, '1991': 8, '1992': 5, '1923': 1, '1884': 1, '1998': 13, '1997': 7, '1990': 11, '1955': 4, '1994': 8, '1954': 1, '1951': 4, '1987': 8, '1925': 1, '1934': 2, '1977': 4, '1971': 3, '1938': 2, '1993': 8, '2008': 15, '1970': 3, '1967': 3, '1946': 3, '1949': 1, '1960': 5, '1981': 7, '1983': 6}
acidophil {'1984': 201, '2003': 82, '1982': 171, '1903': 9, '1952': 116, '1959': 154, '1917': 13, '1944': 137, '1983': 155, '1975': 239, '1898': 1, '1943': 54, '1902': 11, '1939': 53, '1905': 7, '1908': 11, '1930': 143, '1906': 14, '1945': 50, '2004': 77, '1942': 63, '1924': 6, '1937': 172, '1921': 20, '1932': 9, '1993': 113, '1965': 240, '1973': 143, '1990': 138, '1953': 142, '1963': 209, '1987': 142, '2006': 119, '1966': 1200, '1989': 109, '1941': 22, '1986': 173, '1958': 142, '1900': 6, '2005': 84, '1909': 4, '1954': 186, '1994': 171, '1918': 2, '1934': 88, '1980': 168, '1971': 271, '1938': 105, '1904': 6, '1977': 138, '1969': 275, '1956': 115, '1967': 166, '1919': 56, '1949': 84, '1970': 162, '1929': 15, '1960': 152, '1913': 13, '1927': 8, '1972': 139, '1936': 25, '1996': 64, '1950': 91, '1978': 174, '1912': 19, '1974': 296, '1940': 83, '1916': 22, '1957': 216, '1964': 135, '1962': 430, '1914': 5, '2002': 142, '1985': 221, '1995': 69, '2007': 101, '1922': 10, '1999': 48, '1961': 485, '1928': 16, '2001': 60, '1976': 207, '1992': 108, '1923': 7, '1931': 54, '1968': 213, '2000': 62, '1910': 3, '1948': 153, '1947': 125, '1997': 48, '1896': 1, '1955': 165, '1911': 1, '1951': 113, '1920': 70, '1933': 18, '1925': 10, '1926': 37, '1979': 143, '1998': 90, '2008': 82, '1991': 48, '1988': 180, '1946': 91, '1907': 4, '1981': 222, '1935': 47}
acarne {'1984': 75, '1930': 1, '1834': 8, '1869': 2, '2003': 8, '1982': 3, '1860': 3, '1979': 5, '1881': 3, '1996': 8, '2005': 3, '1904': 4, '1983': 16, '1975': 7, '1898': 3, '2001': 9, '1912': 1, '1892': 1, '1974': 1, '1841': 5, '1916': 1, '1957': 1, '1964': 5, '1838': 14, '2004': 3, '1942': 1, '2002': 15, '1972': 1, '1985': 12, '1986': 1, '1995': 22, '2007': 19, '1843': 6, '1969': 19, '1888': 1, '1965': 1, '1883': 7, '1976': 1, '1953': 2, '1963': 5, '1859': 2, '1992': 4, '2006': 8, '1989': 4, '1935': 1, '2000': 10, '1999': 13, '1958': 2, '1880': 2, '1870': 2, '1997': 20, '1990': 4, '1909': 2, '1994': 5, '1925': 2, '1987': 5, '1980': 4, '1971': 2, '1993': 2, '2008': 6, '1977': 1, '1822': 2, '1988': 28, '1946': 6, '1998': 6, '1895': 8, '1907': 2, '1875': 1}
abstersion_ADP {'1984': 1, '1834': 2, '1845': 1, '1972': 3, '1965': 1, '2008': 4, '1866': 1, '1819': 1, '1898': 3, '1857': 4, '1836': 1, '1892': 4, '1912': 3, '1820': 1, '1897': 2, '1964': 1, '1821': 1, '1906': 1, '2007': 3, '1837': 1, '1825': 2, '1885': 1, '1865': 1, '1969': 1, '1877': 2, '1961': 1, '2001': 1, '1842': 1, '1992': 1, '1839': 1, '1923': 2, '1896': 1, '1985': 1, '1856': 1, '1864': 1, '2004': 2, '1848': 1, '1880': 2, '1870': 1, '1900': 2, '1947': 1, '1990': 1, '1890': 2, '1911': 1, '1815': 2, '1829': 2, '1894': 1, '1979': 1, '1831': 2, '2006': 4, '1852': 5, '1901': 2, '1893': 2, '1855': 1, '1907': 1}
additionnelle_X {'1984': 11, '2003': 8, '1964': 6, '1869': 2, '2000': 41, '1982': 16, '1903': 1, '1872': 1, '1952': 4, '1959': 7, '1854': 1, '1917': 4, '1958': 8, '1962': 17, '1983': 17, '1975': 35, '1898': 9, '1943': 3, '1836': 15, '1887': 2, '1899': 19, '1840': 1, '1915': 1, '1930': 2, '1890': 1, '1853': 1, '2004': 33, '1932': 9, '1863': 2, '1873': 1, '1921': 6, '1942': 2, '1877': 3, '1965': 9, '1883': 3, '1990': 35, '1953': 9, '1963': 2, '1987': 71, '1839': 16, '2006': 29, '1985': 24, '1966': 4, '1989': 21, '1941': 6, '1879': 2, '1924': 6, '1904': 4, '1880': 2, '1841': 9, '1900': 4, '2005': 33, '1909': 1, '1801': 2, '1829': 2, '1954': 9, '1994': 20, '1918': 1, '1937': 4, '1968': 11, '1934': 6, '1977': 15, '1971': 16, '1847': 1, '1938': 6, '1993': 14, '1950': 1, '1893': 5, '1833': 10, '1956': 2, '1874': 1, '1919': 24, '1949': 6, '1970': 9, '1929': 2, '1960': 2, '1875': 1, '1913': 2, '1926': 1, '1969': 226, '1972': 17, '1881': 3, '1936': 12, '1996': 16, '1866': 1, '1978': 14, '1973': 9, '1912': 4, '1897': 11, '1868': 20, '2001': 14, '1976': 7, '1957': 5, '1867': 8, '1838': 1, '1889': 3, '2008': 33, '1974': 10, '2002': 12, '1825': 1, '1995': 25, '2007': 25, '1922': 1, '1999': 9, '1961': 11, '1928': 3, '1980': 11, '1882': 2, '1939': 1, '1906': 3, '1905': 15, '1948': 2, '1896': 1, '1967': 25, '1856': 1, '1986': 19, '1910': 3, '1992': 22, '1870': 1, '1947': 5, '1997': 16, '1931': 1, '1955': 16, '1951': 2, '1933': 4, '1927': 2, '1979': 24, '1831': 14, '1886': 2, '1998': 31, '1858': 2, '1991': 10, '1988': 26, '1851': 5, '1907': 6, '1981': 29, '1935': 11}
aempt_NOUN {'1877': 1, '2006': 68, '1996': 1, '2000': 1, '1918': 1, '1927': 1, '2008': 232, '2005': 38, '2004': 32, '2003': 1, '1985': 1, '1998': 1, '2007': 101}
acinte {'1928': 6, '1930': 4, '1973': 1, '2003': 6, '1997': 1, '1965': 2, '1959': 4, '2008': 13, '1931': 2, '1968': 2, '1966': 3, '1935': 6, '2000': 2, '1946': 2, '1958': 2, '1974': 5, '1917': 2, '1925': 8, '1927': 2, '2006': 8, '2004': 6, '1999': 4, '2002': 4, '1967': 2, '1924': 2, '1998': 1, '1960': 4, '1969': 2, '1978': 1}
activities25 {'1984': 1, '1990': 2, '1980': 4, '2000': 2, '1976': 3, '1982': 3, '1963': 3, '2008': 4, '1952': 1, '1992': 4, '2005': 3, '1988': 4, '1979': 2, '1978': 2, '1975': 1, '2003': 4, '1991': 3, '1998': 2, '1974': 2, '1997': 2, '1939': 3, '1996': 4, '1994': 2, '2001': 2, '1987': 1, '1964': 1, '1977': 8, '1971': 1, '1938': 1, '2006': 6, '2004': 5, '1981': 2, '2002': 5, '1985': 3, '1986': 2, '1995': 1, '1970': 1, '2007': 8, '1969': 2, '1999': 4}
actix {'1961': 1, '2001': 1, '2003': 4, '1997': 3, '1963': 1, '1775': 1, '1859': 1, '2008': 2, '2005': 3, '1983': 1, '2000': 1, '1993': 2, '1998': 2, '1974': 2, '1990': 2, '1996': 1, '1829': 1, '1918': 1, '1925': 1, '1930': 1, '1980': 1, '1971': 2, '2006': 4, '1962': 1, '2004': 3, '1977': 1, '1991': 2, '2002': 3, '1956': 1, '1988': 1, '1946': 1, '1995': 1, '2007': 2, '1979': 1, '1999': 1}
acá_X {'1818': 4, '1860': 1, '1903': 13, '1872': 5, '1952': 17, '1959': 33, '1917': 10, '1904': 52, '1750': 4, '1975': 48, '1902': 24, '1799': 5, '1939': 2, '1905': 3, '1856': 41, '1930': 12, '1890': 17, '1945': 13, '1853': 15, '1932': 2, '1863': 3, '1937': 21, '1921': 2, '1877': 2, '1965': 26, '1963': 23, '1864': 10, '1966': 709, '1941': 7, '1880': 2, '1900': 9, '1871': 7, '2005': 190, '1954': 7, '2007': 317, '1934': 31, '1847': 239, '1938': 5, '1772': 1, '1817': 6, '1888': 1, '1956': 249, '1919': 4, '1949': 19, '1929': 7, '1875': 11, '1972': 97, '1787': 1, '1881': 8, '1922': 19, '1950': 3, '1978': 70, '1916': 4, '1852': 11, '1837': 1, '2002': 1040, '1995': 220, '1885': 2, '1957': 19, '1970': 62, '2001': 230, '1882': 8, '1859': 16, '1968': 59, '1862': 9, '1848': 12, '1923': 5, '1998': 110, '1861': 3, '1955': 96, '1911': 9, '1951': 6, '1933': 6, '1925': 3, '1927': 10, '1806': 13, '1849': 23, '1858': 13, '1946': 1, '1895': 8, '1981': 92, '1851': 9, '1984': 43, '1967': 100, '1869': 30, '2000': 165, '1982': 64, '1845': 5, '1894': 9, '1944': 8, '1983': 115, '1898': 3, '1943': 4, '1892': 17, '1891': 12, '1857': 49, '1906': 7, '2004': 280, '1942': 12, '1986': 128, '1873': 15, '1823': 15, '1878': 2, '1883': 63, '1844': 7, '1953': 13, '1996': 131, '2006': 242, '1989': 135, '1935': 8, '1879': 2, '1924': 5, '1993': 108, '1812': 2, '1909': 5, '1994': 317, '1918': 4, '1854': 8, '1977': 283, '1971': 123, '1843': 14, '1809': 2, '1901': 3, '1893': 13, '1999': 290, '1874': 29, '1980': 48, '1960': 10, '1958': 29, '1913': 8, '1899': 5, '1896': 30, '1870': 82, '1936': 7, '1866': 10, '1973': 87, '1912': 2, '1897': 1, '1808': 2, '1868': 4, '1940': 35, '1850': 10, '1964': 28, '1838': 8, '1962': 34, '1914': 4, '1974': 59, '1985': 70, '1969': 55, '1987': 104, '1961': 19, '1928': 8, '1976': 90, '1867': 2, '1846': 3, '1992': 271, '1948': 27, '1931': 9, '1855': 42, '2003': 136, '1910': 7, '1876': 2, '1947': 11, '1997': 286, '1990': 78, '1920': 10, '1926': 8, '1979': 176, '1907': 10, '2008': 238, '1988': 302, '1886': 9, '1991': 122}
addieted_VERB {'2000': 3, '1807': 1, '1903': 1, '1872': 1, '1894': 1, '2005': 1, '1904': 1, '1813': 2, '1836': 2, '1892': 1, '1887': 1, '1840': 2, '1820': 3, '1857': 2, '1814': 9, '1860': 1, '1853': 2, '2004': 4, '1863': 2, '1843': 3, '1822': 1, '1835': 1, '1877': 1, '1844': 1, '1842': 2, '1864': 1, '2006': 4, '1966': 6, '1923': 1, '1986': 1, '1958': 2, '1812': 28, '1880': 1, '1841': 2, '1884': 6, '1805': 1, '1829': 1, '2007': 5, '1847': 2, '1823': 1, '1809': 1, '1950': 1, '1970': 3, '1998': 1, '1830': 3, '1875': 3, '1834': 1, '1881': 3, '1901': 1, '1833': 1, '1866': 1, '1868': 2, '1850': 3, '1882': 2, '1852': 2, '1816': 3, '1821': 1, '1908': 1, '2008': 23, '2002': 5, '1825': 8, '1885': 3, '1969': 1, '1999': 2, '2001': 3, '1976': 1, '1867': 2, '1859': 3, '1948': 1, '2003': 7, '1803': 1, '1870': 1, '1906': 1, '1815': 4, '1951': 1, '1926': 1, '1800': 1, '1831': 2, '1886': 1, '1849': 2, '1858': 7, '1855': 7, '1946': 1, '1895': 1, '1907': 1, '1981': 4, '1851': 4}
accused.32_NOUN {'1961': 3, '1973': 1, '2000': 1, '1982': 1, '1953': 1, '1979': 2, '2008': 7, '1987': 3, '1936': 1, '2005': 2, '1968': 1, '1950': 1, '1989': 2, '1983': 1, '1975': 1, '2003': 4, '1943': 2, '1992': 3, '1998': 2, '1997': 2, '1990': 2, '1996': 3, '1994': 1, '2001': 6, '1951': 3, '1991': 1, '1930': 1, '1980': 1, '1971': 2, '2006': 5, '1962': 3, '2004': 10, '1977': 1, '1970': 1, '2002': 3, '1985': 1, '1986': 2, '1995': 4, '2007': 5, '1981': 2, '1999': 1}
achoison_NOUN {'1928': 2, '1973': 2, '1976': 3, '1982': 4, '1980': 2, '1972': 1, '1965': 1, '1979': 1, '1992': 1, '1917': 1, '1813': 1, '1989': 1, '1993': 2, '1902': 2, '1998': 4, '1974': 1, '1940': 1, '1997': 1, '1990': 2, '1987': 1, '1994': 1, '1821': 1, '1971': 2, '1908': 3, '2008': 1, '1988': 3, '1986': 1, '1995': 1, '2007': 3, '1921': 1}
acculturalised {'1984': 2, '2001': 3, '2000': 4, '1997': 1, '1963': 2, '1965': 2, '2005': 1, '1988': 2, '1989': 1, '1983': 1, '2003': 3, '2006': 2, '1996': 2, '1987': 3, '1964': 3, '1977': 1, '1962': 1, '2008': 2, '1999': 2, '2002': 2, '1967': 1, '1995': 1, '2007': 3, '1969': 1}
actois_DET {'1988': 1, '1961': 1, '1825': 1, '2001': 7, '2003': 1, '1969': 1, '2004': 2, '1948': 1, '1795': 1, '1985': 1, '1935': 1, '1975': 2, '1858': 1, '2008': 1, '1912': 1, '1947': 1, '1996': 1, '1854': 1, '1794': 1, '1982': 1, '1977': 1, '1890': 4, '1962': 1, '1908': 3, '1849': 1, '1817': 1, '1970': 1, '2002': 2, '1967': 1, '1986': 1, '2007': 2, '1981': 1, '1999': 1}
adoptability {'1984': 47, '1934': 1, '2003': 83, '1982': 23, '1980': 45, '1972': 23, '1965': 9, '1952': 5, '1959': 10, '1936': 2, '2005': 170, '1904': 3, '1996': 99, '1950': 4, '1983': 38, '1978': 55, '1975': 28, '1943': 1, '1974': 25, '1940': 1, '1939': 4, '1915': 1, '1957': 10, '1964': 4, '2006': 176, '1970': 22, '1962': 5, '1988': 48, '2004': 182, '1932': 1, '2002': 95, '1985': 38, '1986': 47, '1995': 70, '2007': 163, '1969': 12, '1987': 33, '1961': 8, '1928': 1, '1973': 11, '1976': 35, '1953': 5, '1963': 21, '1979': 188, '1948': 5, '1931': 14, '1968': 19, '1966': 27, '1989': 70, '1941': 5, '2000': 92, '1999': 78, '1958': 4, '1991': 55, '1992': 64, '1923': 1, '1947': 12, '1997': 132, '1990': 89, '1955': 5, '1994': 44, '2001': 83, '1954': 17, '1951': 5, '1920': 1, '1933': 3, '1926': 1, '1977': 43, '1971': 14, '1938': 2, '1993': 107, '1998': 85, '2008': 175, '1922': 1, '1956': 6, '1967': 15, '1946': 2, '1949': 2, '1929': 3, '1960': 10, '1981': 46, '1935': 2}
accrochages_X {'1984': 4, '1967': 3, '2003': 3, '1964': 1, '1973': 3, '2000': 1, '1976': 1, '1982': 7, '1972': 2, '1965': 3, '1979': 1, '1992': 3, '2006': 2, '1968': 2, '1966': 2, '1983': 1, '1975': 1, '1999': 2, '1993': 5, '2001': 2, '1974': 2, '1997': 1, '1990': 1, '1996': 5, '1987': 3, '1927': 1, '1977': 4, '1971': 1, '1988': 3, '2004': 2, '1970': 2, '2002': 1, '1985': 2, '1986': 1, '1995': 3, '2007': 1, '1969': 1, '1978': 1}
affair.81 {'1958': 3, '1967': 1, '1964': 2, '1973': 1, '1977': 1, '1952': 2, '2008': 3, '2005': 2, '1968': 1, '1989': 1, '1975': 2, '1898': 1, '2001': 1, '1938': 2, '1998': 2, '1940': 2, '2006': 2, '1996': 2, '1994': 3, '2007': 2, '1957': 2, '1979': 3, '1951': 1, '2004': 4, '1922': 1, '2002': 5, '1988': 3, '1995': 1, '1929': 1, '1991': 2, '1999': 1}
aerohics {'2001': 3, '2000': 3, '1997': 5, '1994': 4, '2002': 25, '2005': 1, '2004': 20, '1989': 1, '1999': 16, '2003': 13, '1993': 1, '1995': 7, '1998': 8}
adorad {'1984': 1, '1928': 6, '1982': 3, '1913': 3, '1948': 2, '2006': 19, '1966': 1, '1901': 1, '1986': 2, '1993': 2, '1936': 2, '1906': 3, '1799': 1, '1997': 1, '1990': 1, '1840': 1, '1856': 2, '1911': 12, '1957': 1, '1920': 1, '1933': 3, '1925': 2, '1994': 1, '1977': 1, '1971': 2, '1938': 1, '2008': 2, '1981': 1, '1985': 1, '1919': 69, '1998': 2, '2007': 1, '1907': 1, '1970': 3, '1999': 8}
affigunt {'1869': 6, '2003': 4, '1982': 2, '1860': 1, '1903': 1, '1872': 2, '2005': 8, '1813': 3, '1983': 4, '1973': 1, '1897': 1, '1799': 1, '1905': 2, '1891': 1, '1850': 2, '1857': 1, '1947': 1, '1962': 1, '1853': 1, '1846': 1, '1974': 2, '1924': 1, '1995': 1, '1873': 1, '1865': 3, '1881': 3, '1883': 2, '1992': 1, '1839': 2, '1827': 1, '1968': 1, '1856': 2, '2000': 3, '1986': 1, '1876': 1, '1848': 6, '1880': 3, '1841': 1, '1906': 1, '1931': 1, '1805': 1, '1768': 1, '1854': 3, '2007': 1, '1934': 1, '1971': 1, '1938': 1, '2006': 2, '1852': 3, '2008': 7, '1874': 1, '1998': 1, '1830': 1, '1851': 1}
afiigned_VERB {'1789': 3, '1791': 5, '1763': 4, '2003': 1, '1767': 2, '1807': 4, '1755': 1, '1742': 2, '1784': 1, '1751': 1, '2005': 1, '1725': 1, '1975': 2, '1785': 7, '1799': 3, '1770': 4, '1780': 1, '1872': 1, '1744': 1, '1823': 2, '1752': 1, '1774': 1, '1965': 1, '1963': 2, '1811': 1, '1765': 1, '1748': 1, '1792': 1, '1747': 2, '1754': 1, '1904': 1, '1732': 1, '1795': 2, '1801': 3, '1954': 1, '1794': 3, '1766': 1, '1843': 1, '1772': 2, '1809': 2, '1813': 2, '1970': 1, '1967': 1, '1783': 6, '1762': 2, '1741': 1, '1984': 1, '1759': 1, '1739': 1, '1972': 2, '1787': 3, '1796': 3, '1782': 2, '1978': 1, '1745': 3, '1808': 1, '1940': 1, '1764': 2, '1788': 3, '1736': 1, '1775': 1, '1757': 2, '1733': 1, '1760': 4, '1802': 1, '2007': 3, '1969': 5, '1753': 2, '1793': 2, '1729': 1, '1761': 1, '1777': 1, '1931': 1, '1968': 1, '1769': 2, '2000': 2, '1862': 1, '1803': 2, '1870': 1, '1814': 1, '1758': 3, '1771': 2, '2006': 1, '1768': 5, '1804': 3, '1806': 4, '1800': 3, '1819': 1, '2008': 5, '1786': 1, '1822': 1, '1790': 2, '1979': 1}
admirada {'1984': 7, '1927': 4, '2003': 16, '1982': 6, '1979': 3, '1903': 2, '1952': 1, '1941': 1, '1936': 1, '2005': 11, '1996': 6, '1950': 1, '1983': 5, '1975': 4, '2001': 12, '1799': 1, '1905': 3, '1987': 7, '1997': 3, '1962': 2, '1988': 10, '2004': 16, '1974': 6, '2002': 13, '1985': 4, '1986': 1, '1995': 4, '2007': 6, '1970': 4, '1999': 13, '1961': 1, '1973': 1, '1976': 13, '1963': 1, '1992': 8, '1931': 2, '1968': 3, '1966': 6, '1989': 6, '1935': 1, '2000': 1, '1924': 4, '1993': 9, '1991': 5, '1947': 1, '1990': 3, '1955': 2, '1994': 13, '1998': 12, '1951': 2, '1925': 1, '1934': 1, '1980': 4, '1971': 5, '2006': 11, '2008': 6, '1977': 7, '1969': 1, '1956': 4, '1967': 1, '1949': 1, '1886': 3, '1981': 4, '1978': 4}
adjutantcy_NOUN {'1869': 3, '1997': 1, '1860': 3, '2004': 3, '1881': 1, '1872': 2, '2008': 2, '1993': 1, '1866': 2, '1978': 1, '1898': 1, '1902': 1, '1912': 1, '1962': 2, '1840': 2, '1856': 1, '1976': 1, '1964': 1, '1890': 2, '1899': 2, '1914': 3, '1853': 1, '1858': 7, '1920': 2, '1863': 1, '1885': 1, '1823': 16, '1999': 3, '1877': 3, '1961': 2, '1826': 4, '1883': 2, '1882': 1, '1990': 4, '1963': 1, '1947': 1, '1864': 2, '1861': 1, '1968': 1, '1966': 1, '1924': 1, '2000': 2, '1862': 5, '1904': 3, '1848': 4, '1880': 2, '1870': 2, '1884': 3, '1906': 3, '1931': 1, '1996': 1, '1815': 1, '1918': 1, '1873': 2, '1991': 2, '1938': 1, '1979': 1, '1847': 4, '1865': 3, '2006': 1, '1852': 1, '1901': 1, '1893': 1, '1833': 3, '1855': 1, '1998': 1, '1895': 4, '1886': 1, '1875': 1, '1851': 2}
affiftans {'1896': 3, '1899': 51, '1858': 1, '1999': 3, '1943': 1, '1898': 26, '1900': 13, '1897': 3, '1986': 1}
accordina_NOUN {'1984': 3, '2003': 1, '1964': 2, '2000': 6, '1982': 8, '1972': 3, '1903': 1, '1872': 1, '2005': 1, '1944': 2, '1978': 5, '1975': 9, '1857': 1, '1912': 1, '1892': 1, '1974': 5, '1939': 1, '1891': 2, '1758': 1, '1987': 6, '1900': 1, '1930': 1, '1899': 1, '1874': 1, '1846': 2, '1932': 1, '2002': 2, '1985': 7, '1986': 5, '1802': 1, '1873': 1, '1823': 1, '1970': 6, '1999': 1, '1988': 5, '1961': 5, '1973': 5, '1976': 4, '1979': 9, '1923': 1, '2006': 2, '1968': 4, '1989': 7, '1941': 1, '1879': 1, '1862': 1, '1958': 2, '1991': 4, '1992': 1, '1841': 1, '1719': 1, '1995': 1, '1997': 2, '1990': 7, '1996': 5, '2001': 7, '1918': 2, '2007': 2, '1977': 9, '1971': 2, '1847': 1, '1886': 1, '1993': 4, '1920': 1, '2008': 3, '2004': 2, '1969': 13, '1967': 2, '1980': 18, '1998': 5, '1727': 1, '1830': 1, '1960': 2, '1981': 18, '1983': 2}
acute.21 {'1997': 1, '1961': 4, '1996': 2, '1990': 2, '2001': 2, '1954': 1, '1957': 1, '1972': 1, '1965': 1, '1980': 2, '1987': 2, '1917': 5, '2003': 3, '2005': 2, '1983': 1, '2002': 2, '1956': 2, '1988': 4, '1998': 4, '1960': 1, '1991': 1}
aequanimitatem_X {'1965': 1, '1928': 1, '1934': 1, '1869': 1, '1997': 2, '1826': 4, '1913': 1, '1864': 1, '1859': 1, '1861': 1, '1747': 1, '1941': 1, '1904': 8, '1726': 2, '1870': 3, '1887': 4, '2005': 1, '1856': 1, '1829': 2, '1854': 1, '1933': 4, '1857': 3, '1938': 1, '1962': 1, '2008': 2, '1876': 2, '1932': 1, '1988': 1, '1863': 1, '1995': 1, '1929': 1}
aceus_NOUN {'1984': 2, '2003': 2, '1810': 1, '1982': 5, '1845': 1, '1903': 1, '1872': 2, '2005': 3, '1944': 2, '1983': 1, '1975': 4, '1898': 1, '1902': 2, '1836': 3, '1887': 2, '1840': 1, '1997': 1, '1906': 4, '1807': 1, '1853': 1, '1924': 2, '1873': 2, '1843': 1, '1877': 1, '1993': 1, '1878': 1, '1973': 2, '1842': 3, '1963': 2, '1811': 2, '1839': 5, '1966': 4, '1989': 2, '1986': 2, '1958': 1, '1884': 1, '1954': 1, '1994': 2, '2007': 2, '1980': 1, '1971': 1, '1904': 1, '1852': 1, '1901': 1, '1999': 1, '1956': 1, '1967': 1, '1998': 1, '1970': 1, '1913': 3, '1881': 1, '1936': 1, '1866': 1, '1897': 1, '1868': 1, '1964': 2, '1838': 1, '1962': 2, '1908': 1, '2008': 10, '1974': 2, '1985': 1, '1995': 5, '1885': 1, '1969': 3, '2001': 1, '1949': 1, '1882': 3, '1867': 1, '1859': 2, '1948': 1, '1931': 1, '1968': 2, '2000': 6, '1862': 2, '1947': 1, '1990': 1, '1911': 1, '1920': 1, '1933': 1, '1926': 1, '1806': 1, '1858': 2, '1981': 4, '1855': 4, '1895': 1, '1907': 3, '1991': 2, '1851': 2}
adience_NOUN {'1984': 8, '1913': 1, '1894': 1, '2003': 9, '1982': 2, '1980': 38, '1972': 4, '1965': 13, '1952': 33, '1959': 30, '1936': 20, '2005': 23, '1944': 8, '1996': 6, '1950': 8, '1983': 3, '1975': 3, '1943': 3, '1868': 6, '1940': 10, '2001': 3, '1939': 9, '1856': 3, '1916': 1, '1974': 5, '1957': 7, '1964': 32, '1962': 23, '1988': 1, '1942': 4, '2002': 2, '1985': 19, '1995': 12, '1937': 18, '1921': 1, '1969': 13, '1999': 13, '1961': 4, '1934': 27, '1973': 25, '1844': 1, '1976': 11, '1953': 16, '1963': 28, '1805': 1, '1948': 21, '1931': 304, '1968': 4, '1966': 40, '1989': 8, '1941': 1, '2000': 8, '1958': 9, '1992': 3, '1870': 1, '1947': 103, '1997': 6, '2006': 11, '1955': 4, '1994': 8, '1981': 5, '1954': 17, '1951': 86, '1918': 4, '2007': 3, '1926': 1, '1977': 3, '1971': 10, '1938': 87, '1998': 1, '2008': 3, '1970': 6, '1956': 45, '1967': 36, '1946': 9, '1949': 29, '1960': 29, '1979': 3, '1935': 3}
accelerandi_VERB {'1984': 2, '2001': 1, '1982': 1, '1965': 1, '1992': 7, '2005': 1, '1983': 2, '1975': 1, '1910': 2, '1958': 2, '1995': 2, '1997': 4, '2006': 5, '1996': 1, '1994': 1, '1926': 1, '1979': 2, '2004': 3, '2002': 1, '1988': 1, '1998': 3, '2007': 1, '1957': 2, '1991': 2}
adhored {'1984': 1, '2003': 1, '1869': 2, '2000': 1, '1818': 1, '1982': 1, '1972': 1, '1881': 1, '1872': 1, '1928': 1, '1959': 1, '2008': 1, '2005': 1, '1866': 1, '1983': 1, '1975': 1, '1902': 1, '1892': 1, '1916': 1, '1820': 1, '1997': 1, '1889': 1, '2004': 1, '2002': 3, '1985': 1, '1863': 1, '1995': 1, '1885': 1, '1843': 1, '1970': 1, '1999': 1, '1878': 1, '1973': 2, '1842': 1, '1953': 2, '1963': 1, '1864': 1, '1948': 1, '2006': 1, '1879': 1, '1862': 2, '1993': 1, '1848': 1, '1884': 1, '1854': 1, '2007': 2, '1980': 1, '1847': 1, '1865': 2, '1901': 1, '1969': 5, '1946': 1, '1949': 1, '1960': 1, '1991': 1, '1978': 1}
aduis'd {'1984': 2, '1759': 1, '1878': 12, '1927': 2, '1973': 1, '2003': 3, '1592': 1, '1961': 1, '1980': 4, '1903': 4, '1923': 5, '2006': 1, '1968': 3, '1966': 2, '1985': 1, '1989': 2, '2000': 2, '2008': 4, '1991': 1, '1936': 2, '1900': 1, '1964': 1, '1939': 2, '1996': 3, '2001': 2, '1957': 3, '1933': 2, '1934': 3, '1979': 3, '1906': 2, '1995': 2, '2004': 2, '1922': 2, '2002': 5, '1967': 1, '1986': 1, '1949': 2, '1970': 1, '2007': 2, '1969': 5, '1999': 1}
adRP_NOUN {'2006': 20, '2001': 19, '2002': 6, '1997': 7, '1994': 7, '2008': 12, '2005': 4, '2004': 8, '1999': 10, '2003': 43, '1993': 69, '1995': 37, '1998': 5}
afHuent {'1869': 1, '1982': 1, '1845': 2, '1972': 4, '1965': 1, '1752': 1, '2008': 1, '1917': 1, '1901': 1, '2005': 1, '1978': 2, '1975': 2, '1812': 1, '1902': 3, '1912': 1, '1887': 1, '1974': 3, '1891': 1, '1850': 3, '1976': 2, '1890': 1, '1899': 1, '1846': 1, '1988': 1, '1985': 1, '1863': 2, '1995': 1, '2007': 1, '1832': 1, '1969': 1, '1877': 2, '1980': 1, '1881': 1, '1973': 1, '1844': 1, '1882': 1, '1811': 1, '1979': 2, '1839': 1, '1896': 1, '1804': 1, '1989': 4, '1864': 1, '2003': 2, '1910': 1, '1848': 2, '1915': 1, '1906': 1, '1990': 1, '1994': 2, '1911': 1, '1815': 1, '1968': 3, '1991': 1, '1926': 1, '1977': 2, '1971': 2, '1858': 1, '2006': 1, '1852': 1, '1849': 2, '1950': 1, '2004': 5, '1888': 2, '1967': 5, '1946': 1, '1998': 1, '1970': 1, '1960': 1, '1981': 1, '1983': 1}
acetylacetonate_ADJ {'1984': 71, '2003': 40, '1982': 23, '1972': 17, '1965': 5, '1952': 3, '1959': 5, '2005': 56, '1993': 35, '1996': 23, '1950': 19, '1978': 5, '1975': 24, '2001': 14, '1974': 14, '1939': 2, '1957': 1, '1964': 2, '1962': 6, '1988': 15, '2004': 65, '1932': 1, '2002': 29, '1985': 17, '1986': 25, '1995': 32, '1937': 1, '1970': 13, '1987': 17, '1961': 10, '1928': 2, '1973': 30, '1976': 15, '1953': 6, '1963': 11, '1979': 18, '1992': 163, '2006': 27, '1968': 37, '1966': 32, '1989': 33, '2000': 23, '1999': 27, '1958': 3, '1991': 51, '1947': 2, '1997': 20, '1990': 16, '1955': 1, '1994': 33, '1954': 4, '1951': 8, '2007': 29, '1927': 2, '1980': 10, '1971': 33, '1998': 45, '2008': 34, '1977': 11, '1969': 36, '1956': 1, '1967': 35, '1949': 2, '1929': 1, '1960': 6, '1981': 35, '1983': 28}
aday_ADP {'1984': 2, '1913': 3, '1927': 1, '1863': 1, '1997': 2, '1959': 2, '2008': 8, '2005': 3, '1901': 1, '1978': 2, '1975': 1, '2001': 1, '1912': 1, '1974': 1, '1874': 1, '1905': 1, '1957': 1, '1930': 1, '1899': 1, '1853': 1, '1817': 1, '2002': 1, '1825': 1, '1986': 1, '2007': 22, '1823': 1, '1970': 1, '1888': 1, '1973': 1, '1844': 3, '1846': 1, '1777': 1, '1839': 1, '1948': 1, '2006': 6, '1988': 1, '1989': 3, '1828': 1, '2003': 2, '1862': 1, '1993': 1, '1955': 1, '1829': 3, '1968': 1, '1999': 2, '1987': 1, '1971': 1, '1950': 1, '1981': 1, '1967': 2, '1949': 1, '1830': 6, '1991': 1}
abstraits_VERB {'1984': 3, '1967': 4, '2003': 3, '1964': 2, '2000': 2, '1982': 4, '1980': 5, '1977': 2, '1965': 5, '1936': 1, '2005': 5, '1958': 1, '1983': 3, '1975': 1, '2001': 4, '1974': 1, '1987': 4, '1997': 1, '1970': 1, '1962': 6, '2004': 3, '1932': 1, '2002': 4, '1985': 9, '1986': 1, '1995': 3, '2007': 4, '1969': 1, '1888': 1, '1961': 3, '1973': 5, '1976': 7, '1963': 1, '1992': 4, '2006': 3, '1968': 1, '1989': 4, '1879': 5, '1999': 1, '1993': 4, '1990': 2, '1996': 2, '1954': 1, '1994': 5, '1979': 6, '1971': 1, '2008': 1, '1981': 8, '1988': 2, '1955': 1, '1998': 3, '1960': 3, '1991': 3, '1978': 3}
accidente_ {'1928': 1, '2001': 2, '2003': 3, '1982': 2, '2006': 1, '1968': 3, '1969': 2, '2000': 5, '1848': 1, '1880': 1, '1949': 1, '1987': 4, '1918': 1, '1934': 2, '1971': 1, '1962': 1, '1945': 1, '1970': 1, '2002': 4, '1967': 4, '1986': 1, '1995': 1, '2007': 1, '1991': 1, '1978': 1}
acanthopores_NOUN {'1984': 10, '1913': 1, '1926': 2, '1969': 185, '1980': 36, '1972': 3, '1903': 55, '1952': 38, '1959': 11, '1936': 287, '1917': 4, '1958': 84, '1996': 2, '1901': 13, '1983': 143, '1978': 13, '1898': 1, '1902': 106, '1892': 11, '1964': 6, '1974': 8, '1939': 48, '1905': 474, '1916': 3, '1914': 12, '1930': 5, '1981': 76, '1890': 7, '1889': 75, '1908': 107, '2004': 3, '2002': 1, '1985': 339, '1924': 1, '1937': 3, '1957': 4, '1922': 5, '1999': 4, '1982': 16, '1961': 258, '1965': 78, '1973': 85, '1976': 15, '1953': 17, '1963': 5, '1979': 15, '1948': 2, '1931': 34, '1968': 34, '1962': 40, '1989': 9, '1935': 4, '2003': 2, '1910': 56, '1904': 101, '1992': 1, '1915': 13, '1998': 9, '1885': 7, '1994': 1, '1911': 420, '1951': 33, '1920': 1, '1933': 3, '1925': 11, '1927': 28, '1977': 2, '1971': 46, '1938': 1, '2008': 1, '1893': 2, '1888': 4, '1956': 32, '1946': 3, '1949': 2, '1970': 48, '1929': 5, '1960': 278, '1862': 102, '1941': 2}
afhrme {'1913': 1, '1879': 2, '1810': 1, '1977': 1, '1959': 1, '1917': 1, '1725': 1, '1905': 6, '1855': 1, '1850': 1, '1882': 1, '1957': 1, '1816': 1, '1964': 4, '2008': 4, '1776': 2, '2002': 1, '1972': 1, '1843': 1, '1969': 3, '1842': 1, '1811': 2, '2006': 2, '1968': 1, '1572': 1, '2003': 3, '1904': 1, '1812': 1, '1906': 1, '1805': 2, '1911': 2, '1925': 1, '1979': 1, '1971': 1, '1809': 1, '1950': 1, '1893': 2, '1999': 1, '1967': 1, '1980': 1, '1851': 1, '1960': 1, '1981': 1, '1935': 1}
adhesion_NOUN {'1791': 86, '1984': 19526, '1740': 6, '1931': 2019, '1767': 44, '1860': 3623, '1755': 5, '1742': 18, '1784': 144, '1775': 57, '1952': 3867, '1959': 4276, '1917': 4073, '1737': 1, '1688': 1, '1725': 23, '1781': 26, '1750': 39, '1975': 10484, '1902': 4738, '1799': 138, '1957': 3964, '1899': 3712, '1905': 4925, '1841': 1200, '1933': 1772, '1698': 1, '1757': 50, '1820': 386, '1900': 5002, '1930': 3664, '1890': 3315, '1683': 7, '1853': 2469, '1756': 23, '1776': 9, '1863': 2504, '1658': 8, '1937': 2813, '1921': 3028, '1563': 1, '1835': 1232, '1877': 3867, '1903': 5076, '1842': 1142, '1707': 2, '1752': 3, '1811': 444, '1765': 10, '1909': 5868, '1864': 3075, '1792': 33, '1747': 4, '1966': 7828, '1754': 6, '1941': 2397, '1678': 1, '1880': 3922, '1732': 1, '1884': 4357, '1871': 2599, '1926': 2203, '1955': 4228, '1801': 355, '1954': 4953, '1944': 1881, '2007': 68849, '1934': 2644, '1704': 2, '1847': 1639, '1865': 2632, '1772': 19, '1728': 3, '1837': 1220, '1706': 1, '1833': 854, '1956': 3910, '1783': 54, '1949': 4026, '1798': 71, '1830': 1054, '1794': 109, '1875': 3508, '1779': 48, '1739': 1, '1911': 4257, '1948': 4265, '1773': 31, '1787': 76, '1881': 4434, '1796': 300, '1928': 2702, '1898': 4346, '1996': 45486, '1901': 4001, '1766': 15, '1703': 2, '2001': 60151, '1938': 3451, '1914': 4437, '1916': 3386, '1758': 5, '1852': 2940, '1973': 9026, '1892': 3611, '1682': 7, '1736': 5, '1887': 4819, '1780': 22, '1817': 219, '1713': 1, '2002': 56951, '1976': 10630, '1802': 153, '1885': 4142, '1700': 2, '1922': 3816, '1753': 8, '1724': 1, '1743': 2, '1882': 4587, '1939': 3050, '1777': 43, '1970': 8723, '1840': 1648, '1828': 495, '1859': 2688, '1827': 819, '1874': 2912, '1856': 3272, '1769': 20, '1677': 3, '1848': 2088, '1947': 3180, '1870': 2743, '1814': 350, '1771': 29, '1896': 3869, '1778': 21, '1768': 51, '1815': 395, '1854': 2850, '1999': 47173, '1929': 2435, '1925': 2853, '1927': 2532, '1806': 104, '1819': 427, '1849': 1714, '1858': 2765, '1946': 2514, '1895': 4216, '1720': 3, '1981': 14364, '1851': 2128, '1789': 42, '1967': 11832, '1763': 17, '1869': 2956, '2003': 56358, '1810': 177, '1982': 19316, '1807': 355, '2004': 60812, '1670': 1, '1862': 2147, '1751': 9, '1894': 3975, '1673': 1, '1813': 279, '1712': 6, '1983': 14457, '1705': 1, '1685': 1, '1943': 1783, '1836': 1533, '1785': 70, '1690': 1, '1872': 2792, '1770': 33, '1696': 1, '1891': 3553, '1945': 2359, '1857': 3092, '1906': 4899, '1715': 1, '1915': 3850, '1846': 2023, '1907': 5550, '1942': 1845, '1734': 7, '1972': 10463, '1738': 31, '1986': 21295, '1873': 3068, '1823': 345, '1845': 2383, '1774': 17, '1993': 38782, '1878': 4602, '1883': 4455, '1844': 1784, '1953': 2915, '1708': 4, '1838': 1838, '1748': 50, '1839': 1841, '1702': 2, '2006': 76861, '1804': 445, '1989': 28750, '1935': 2194, '1879': 3716, '1924': 2685, '1904': 4741, '1812': 275, '1695': 1, '1719': 1, '1680': 1, '1714': 2, '1805': 215, '1829': 1028, '1998': 47223, '1994': 39697, '1918': 3238, '1818': 340, '1951': 5797, '1977': 11903, '1971': 9745, '1843': 1865, '1888': 3728, '1809': 375, '1950': 3499, '1893': 3770, '1822': 717, '1797': 35, '1795': 92, '1980': 12972, '1995': 47822, '1762': 8, '1960': 5982, '1978': 12294, '1958': 4615, '1759': 6, '1913': 4023, '1834': 938, '1731': 1, '1672': 1, '1826': 666, '1782': 36, '1936': 2338, '1866': 2551, '2005': 73185, '1932': 2592, '1637': 3, '1912': 4778, '1722': 2, '1808': 325, '1868': 3328, '1940': 2601, '1850': 1980, '1764': 19, '1919': 3816, '1788': 56, '1897': 3569, '1816': 413, '1964': 8485, '1821': 459, '1965': 9153, '1889': 3525, '1908': 5391, '1760': 1, '1974': 9728, '1648': 2, '1963': 9145, '1679': 3, '1832': 1251, '1969': 10709, '1987': 22876, '1793': 83, '1961': 5641, '1675': 1, '1825': 874, '1729': 1, '1761': 3, '1867': 2858, '1749': 26, '1992': 38100, '1923': 3073, '1861': 2463, '1988': 23946, '1962': 6210, '2000': 53871, '1910': 4722, '1730': 5, '1803': 291, '1876': 2958, '1997': 47191, '1990': 30245, '1985': 20429, '1920': 4456, '1824': 541, '1979': 10508, '1800': 154, '1831': 1243, '1886': 3547, '1968': 10014, '2008': 68052, '1786': 86, '1855': 3761, '1727': 3, '1790': 92, '1991': 30971}
admitted.48 {'1984': 1, '2003': 5, '1982': 5, '1972': 1, '1965': 1, '1952': 1, '1959': 1, '1936': 1, '2005': 2, '1944': 1, '1996': 1, '1950': 2, '1983': 2, '1975': 2, '1902': 1, '1939': 2, '1987': 3, '1964': 4, '1962': 4, '1988': 1, '2004': 2, '1932': 1, '2002': 2, '1985': 5, '1986': 13, '2007': 3, '1970': 2, '1999': 2, '1928': 1, '2001': 7, '1976': 3, '1963': 3, '1979': 1, '1992': 1, '1968': 3, '1966': 2, '1989': 4, '1941': 1, '2000': 1, '1924': 3, '1958': 2, '1991': 3, '1997': 4, '1909': 5, '1994': 1, '1933': 2, '1934': 1, '1980': 1, '1971': 1, '1938': 2, '1993': 2, '2008': 2, '1977': 1, '1888': 7, '1956': 1, '1967': 2, '1998': 2, '1929': 1, '1907': 1, '1981': 5, '1935': 6}
abstenue_NOUN {'1877': 3, '1961': 1, '1990': 1, '2001': 1, '1976': 1, '1982': 2, '1860': 1, '1972': 1, '1965': 4, '1987': 1, '2008': 3, '2005': 2, '1989': 2, '1978': 3, '2003': 2, '1986': 1, '1904': 1, '1841': 1, '1947': 1, '1974': 1, '1997': 1, '1962': 3, '1998': 2, '1957': 2, '2007': 1, '1964': 1, '1977': 1, '2006': 1, '1938': 4, '1899': 3, '2004': 1, '2002': 2, '1988': 6, '1919': 2, '1995': 2, '1885': 1, '1960': 1, '1991': 4}
adjustment.10 {'2003': 13, '1982': 2, '1979': 11, '1965': 5, '1952': 3, '1996': 8, '1936': 2, '2005': 7, '1993': 8, '1950': 3, '1978': 3, '1975': 9, '1943': 2, '1974': 2, '1939': 7, '1957': 3, '1964': 9, '1962': 4, '1945': 1, '2004': 10, '1942': 3, '2002': 3, '1972': 3, '1985': 5, '1986': 4, '1995': 6, '2007': 11, '1970': 3, '1999': 7, '1961': 7, '1973': 9, '1976': 5, '1953': 1, '1963': 3, '1987': 8, '1948': 1, '1931': 2, '1968': 7, '1966': 8, '1941': 2, '2000': 6, '1958': 2, '1991': 6, '1992': 1, '1923': 2, '1947': 3, '1997': 6, '1990': 12, '1955': 4, '1994': 12, '2001': 3, '1954': 6, '1951': 8, '1925': 3, '1934': 2, '1980': 3, '1971': 3, '2006': 5, '2008': 10, '1977': 4, '1969': 2, '1988': 2, '1946': 3, '1998': 8, '1960': 1, '1981': 3, '1983': 6}
activities.204 {'1939': 2, '1996': 4, '2001': 1, '2003': 1, '1990': 2, '1972': 1, '1997': 5, '1979': 2, '1992': 1, '2006': 1, '2008': 4, '2005': 1, '1966': 3, '1961': 1, '2004': 3, '1983': 1, '2002': 3, '1946': 1, '1995': 2, '2007': 2}
adjections {'1807': 4, '1838': 1, '1965': 8, '2008': 12, '2005': 6, '1904': 10, '1983': 2, '1902': 1, '1836': 3, '1785': 1, '1887': 1, '1840': 1, '1856': 2, '1820': 4, '1890': 2, '1860': 2, '1853': 1, '1846': 4, '1863': 6, '1658': 2, '1873': 2, '1843': 6, '1845': 2, '1835': 8, '1877': 1, '1878': 1, '1881': 1, '1973': 3, '1844': 7, '1842': 1, '1811': 1, '1987': 1, '1839': 4, '2006': 3, '1935': 2, '1879': 2, '1958': 12, '1812': 2, '1880': 2, '1871': 4, '1909': 2, '1801': 4, '1829': 6, '1994': 2, '1977': 4, '1847': 3, '1823': 4, '1993': 1, '1809': 4, '1837': 2, '2004': 2, '1833': 2, '1830': 1, '1875': 1, '1852': 2, '1980': 5, '1787': 1, '1826': 12, '1866': 2, '1883': 1, '1912': 5, '1850': 2, '1882': 1, '1824': 2, '1788': 4, '1892': 2, '1964': 15, '1821': 2, '1889': 5, '1908': 4, '1817': 3, '2002': 1, '1825': 1, '1802': 2, '1885': 3, '1969': 4, '1999': 1, '1793': 2, '1976': 2, '1867': 5, '1859': 1, '1923': 1, '1827': 2, '1968': 3, '1891': 2, '2003': 3, '1876': 3, '1911': 4, '1815': 2, '1854': 4, '1927': 9, '1819': 8, '1849': 4, '1858': 2, '1790': 2}
achttausend {'1984': 2, '1973': 1, '2003': 6, '1969': 3, '1980': 3, '1977': 2, '1996': 3, '1959': 1, '2008': 1, '1931': 1, '1988': 2, '1966': 5, '2005': 3, '1983': 1, '2000': 1, '1993': 2, '1990': 1, '1955': 4, '1951': 1, '1979': 9, '1971': 2, '1962': 5, '2004': 5, '1932': 1, '1985': 4, '1986': 2, '1995': 3, '1929': 1, '1960': 1, '1970': 1, '1978': 2}
adicillin {'2001': 1, '2003': 1, '1976': 2, '1972': 4, '1965': 2, '1992': 1, '1968': 9, '1966': 1, '1989': 1, '1983': 1, '2000': 2, '1973': 8, '1981': 2, '1964': 5, '1979': 1, '1971': 12, '1970': 7, '2008': 4, '1999': 1, '2002': 1, '1963': 4, '1986': 1, '1995': 2, '2007': 2, '1969': 3}
afiure {'1789': 3, '1791': 5, '1763': 1, '1701': 1, '2000': 1, '1767': 3, '1755': 2, '1742': 1, '1784': 5, '1751': 1, '1725': 1, '1781': 3, '1983': 1, '1975': 3, '1705': 2, '1726': 1, '1902': 1, '1785': 2, '1799': 3, '1770': 1, '1810': 1, '1683': 2, '1715': 1, '1756': 1, '1776': 5, '1744': 1, '1738': 1, '1741': 3, '1774': 4, '1953': 1, '1775': 1, '1765': 2, '1748': 1, '1702': 1, '1792': 5, '1804': 6, '1754': 7, '1805': 2, '1801': 1, '1766': 5, '1772': 2, '1813': 1, '1753': 3, '1797': 6, '1795': 1, '1984': 1, '1759': 1, '1739': 4, '1787': 2, '1796': 4, '1782': 2, '1976': 1, '1745': 1, '1743': 3, '1722': 1, '1808': 1, '1974': 1, '1764': 1, '1735': 1, '1780': 3, '1760': 7, '1679': 1, '1802': 1, '2007': 1, '1970': 1, '1793': 1, '2001': 2, '1761': 1, '1777': 4, '1931': 1, '1968': 2, '1769': 3, '2003': 1, '1862': 2, '1814': 1, '1758': 1, '1771': 3, '1996': 1, '1768': 4, '1926': 2, '1806': 5, '1800': 1, '1746': 1, '1786': 1, '1778': 7, '1790': 5}
acrecento {'1967': 2, '2001': 4, '1976': 1, '1997': 1, '1980': 5, '1965': 1, '1987': 2, '2006': 6, '1988': 1, '1989': 2, '1993': 2, '1996': 1, '1994': 1, '1957': 1, '1979': 1, '1951': 1, '1962': 2, '2008': 1, '1999': 3, '1874': 1, '1924': 1, '1998': 4, '2007': 3, '1922': 5}
acccompanying_VERB {'1984': 1, '2003': 2, '2000': 2, '1873': 2, '1979': 2, '1826': 1, '2008': 6, '2005': 3, '1904': 1, '2007': 2, '1978': 9, '1848': 1, '1898': 1, '1902': 1, '1897': 1, '1868': 1, '1933': 1, '1957': 1, '1820': 1, '1997': 2, '1838': 3, '1871': 3, '1962': 1, '1988': 7, '1846': 2, '1986': 2, '1974': 1, '2002': 3, '1825': 3, '1924': 1, '1995': 3, '1885': 6, '1823': 1, '1822': 1, '1835': 1, '1973': 3, '1976': 4, '1867': 2, '1953': 2, '1850': 1, '1859': 2, '1864': 1, '1923': 1, '2006': 4, '1985': 5, '1991': 7, '1989': 7, '1828': 1, '1879': 1, '1862': 1, '1876': 3, '1803': 1, '1992': 6, '1870': 1, '1900': 1, '1947': 1, '1990': 1, '1996': 6, '1829': 1, '1954': 2, '1994': 6, '1999': 2, '1937': 1, '1925': 1, '1927': 1, '1977': 3, '1819': 1, '1960': 1, '1993': 3, '1858': 1, '2004': 10, '1888': 3, '1956': 2, '1987': 1, '1980': 2, '1998': 5, '1970': 2, '1886': 2, '1981': 2, '1983': 4}
addictio {'1984': 4, '2003': 11, '2000': 13, '1982': 2, '1845': 2, '1821': 2, '1903': 16, '1872': 8, '1952': 48, '1959': 4, '1894': 4, '1917': 13, '1944': 1, '1962': 30, '1983': 2, '1975': 19, '1803': 7, '1898': 3, '1902': 18, '1836': 6, '1892': 82, '1889': 1, '1905': 39, '1891': 2, '1950': 3, '1908': 272, '1884': 10, '1997': 24, '1890': 17, '1945': 18, '1853': 4, '1846': 3, '1861': 1, '1932': 12, '1924': 7, '1873': 6, '1843': 1, '1835': 2, '1878': 23, '1965': 51, '1883': 25, '1844': 10, '1990': 20, '1953': 47, '1963': 1, '1996': 2, '1839': 6, '1938': 3, '2006': 9, '1966': 21, '1989': 5, '1935': 2, '1879': 2, '1863': 27, '1904': 38, '1812': 1, '1880': 4, '1915': 6, '1900': 8, '1871': 46, '2005': 13, '1909': 9, '1954': 7, '1994': 24, '2007': 47, '1968': 11, '1934': 5, '1977': 10, '1971': 14, '1921': 22, '1993': 1, '1852': 16, '1837': 1, '1893': 4, '1888': 21, '1956': 1, '1874': 4, '1980': 6, '1998': 19, '1970': 21, '1929': 2, '1960': 1, '1875': 16, '1926': 13, '1948': 1, '1969': 8, '1972': 30, '1992': 9, '1936': 4, '1901': 80, '1978': 8, '2004': 10, '1912': 49, '1897': 7, '1974': 8, '1940': 10, '1999': 4, '1916': 36, '1976': 13, '1987': 4, '1816': 1, '1964': 1, '1838': 21, '1951': 21, '1899': 56, '1914': 4, '1988': 22, '2002': 24, '1995': 13, '1885': 21, '1865': 2, '1922': 4, '1833': 2, '1961': 2, '1928': 7, '2001': 2, '1882': 3, '1939': 12, '1840': 2, '1859': 21, '1896': 16, '1967': 13, '1991': 11, '1769': 1, '1986': 3, '1910': 26, '1876': 90, '1848': 6, '1947': 10, '1870': 3, '1906': 29, '1827': 2, '1955': 12, '1911': 36, '1815': 2, '1854': 16, '1920': 17, '1925': 21, '1927': 10, '1819': 2, '1907': 65, '1849': 4, '2008': 89, '1981': 13, '1855': 1, '1946': 5, '1895': 8, '1886': 32, '1862': 1, '1851': 13}
actresse {'1984': 2, '1928': 4, '1926': 1, '1973': 1, '1982': 1, '1992': 1, '1963': 3, '1903': 2, '1972': 1, '1948': 1, '1931': 6, '1944': 1, '1966': 4, '1834': 8, '2005': 1, '1935': 4, '2003': 3, '1958': 1, '1857': 3, '1990': 1, '1923': 1, '1900': 4, '1964': 1, '1940': 2, '1997': 1, '1827': 1, '1955': 3, '1912': 4, '1954': 1, '1951': 1, '1930': 4, '2006': 2, '1962': 1, '1914': 1, '2004': 1, '1991': 1, '2002': 1, '1927': 2, '1985': 1, '1919': 1, '2007': 3, '1970': 2}
aeter_ADJ {'1984': 2, '1894': 1, '2003': 1, '1810': 1, '1845': 3, '1980': 4, '1826': 1, '1959': 1, '2008': 5, '1917': 2, '1944': 2, '1866': 1, '2005': 1, '1983': 1, '1975': 2, '1973': 2, '1892': 1, '1868': 1, '1940': 3, '1939': 1, '1840': 1, '1891': 1, '1976': 1, '1974': 1, '1957': 3, '1930': 1, '1838': 1, '1908': 1, '2004': 2, '1799': 1, '1985': 4, '1863': 1, '1995': 2, '2007': 7, '1970': 1, '1883': 2, '1844': 1, '1842': 1, '1989': 2, '1963': 1, '1828': 1, '1948': 2, '2006': 6, '1988': 1, '1901': 2, '1941': 1, '2000': 1, '1904': 1, '1803': 1, '1841': 1, '1900': 2, '1947': 2, '1990': 2, '1909': 1, '1994': 1, '1927': 2, '1737': 2, '1971': 1, '1907': 1, '1852': 1, '1950': 2, '1999': 2, '1956': 2, '1855': 2, '1919': 1, '1960': 1, '1981': 9}
acedemics {'2001': 1, '2003': 5, '1997': 5, '1972': 1, '1959': 2, '2008': 1, '2005': 3, '1968': 2, '1989': 1, '1978': 1, '2000': 4, '1946': 1, '1993': 1, '1994': 2, '1998': 1, '1990': 2, '1996': 1, '1801': 1, '1987': 3, '1982': 4, '1977': 1, '2006': 2, '2004': 3, '1999': 2, '2002': 3, '1988': 3, '1986': 1, '1995': 2, '1991': 1, '1983': 3}
accreditation_DET {'2003': 6, '1973': 1, '1975': 1, '1997': 1, '1963': 1, '1987': 3, '1996': 5, '1992': 1, '2005': 9, '1983': 2, '2000': 6, '1993': 2, '2001': 14, '1998': 7, '2006': 11, '1955': 1, '1994': 2, '1982': 1, '1980': 1, '1971': 1, '2008': 9, '2004': 3, '1999': 5, '2002': 8, '1985': 1, '1986': 2, '1995': 1, '2007': 6, '1991': 1}
adjoiniug {'1869': 1, '1810': 1, '1807': 1, '1821': 3, '1903': 1, '1872': 3, '1813': 2, '1983': 2, '1898': 2, '1902': 2, '1892': 2, '1887': 6, '1962': 1, '1840': 1, '1856': 3, '1820': 1, '1884': 2, '1857': 5, '1890': 2, '1860': 2, '1853': 1, '2004': 1, '1734': 1, '1863': 4, '1873': 2, '1823': 3, '1877': 2, '1878': 4, '1883': 2, '1844': 3, '1842': 3, '2006': 3, '1985': 1, '1966': 2, '1989': 1, '1879': 1, '1904': 3, '1880': 3, '1900': 1, '1871': 1, '1926': 2, '1909': 1, '1829': 1, '2007': 1, '1980': 1, '1971': 1, '1832': 4, '1852': 4, '1837': 1, '1893': 1, '1888': 2, '1967': 1, '1919': 1, '1830': 1, '1875': 1, '1978': 1, '1905': 3, '1881': 3, '1866': 5, '1819': 2, '1973': 2, '1912': 2, '1897': 1, '1808': 1, '1868': 2, '1850': 2, '1838': 1, '1889': 2, '2008': 19, '1843': 1, '1927': 1, '1825': 1, '1802': 3, '1885': 1, '1865': 4, '1833': 1, '1928': 1, '1882': 2, '1867': 2, '1859': 1, '1923': 2, '1861': 2, '1988': 1, '1891': 2, '1901': 1, '2003': 1, '1910': 1, '1876': 4, '1848': 1, '1870': 1, '1814': 3, '1896': 1, '1906': 2, '1911': 2, '1815': 2, '1854': 1, '1920': 1, '1894': 6, '1831': 2, '1886': 2, '1849': 2, '1858': 1, '1855': 3, '1946': 1, '1895': 6, '1907': 3, '1851': 3}
adoption.22 {'1984': 1, '1967': 4, '1964': 1, '2000': 5, '1982': 1, '1972': 2, '1965': 1, '1959': 5, '2005': 2, '1978': 6, '1974': 4, '1940': 2, '1987': 3, '1997': 1, '2004': 6, '1942': 1, '2002': 4, '1985': 1, '1995': 1, '2007': 2, '1969': 3, '1999': 4, '1961': 1, '1928': 1, '2001': 1, '1976': 3, '1953': 2, '1992': 5, '2006': 8, '1968': 2, '1989': 3, '2003': 8, '1910': 1, '1993': 2, '1990': 7, '1996': 6, '1994': 6, '1979': 1, '1938': 4, '2008': 4, '1977': 4, '1981': 3, '1988': 2, '1980': 1, '1998': 2, '1929': 1, '1991': 2}
addrc {'1984': 1, '1931': 2, '2003': 8, '1982': 2, '1860': 2, '2004': 9, '1965': 2, '1872': 1, '2005': 1, '1944': 1, '1975': 1, '1898': 2, '1905': 3, '1891': 1, '1997': 1, '1853': 1, '1846': 1, '1932': 3, '1924': 2, '1873': 1, '1993': 3, '1878': 1, '1883': 1, '1963': 3, '1864': 1, '2006': 9, '1966': 2, '1989': 5, '1941': 1, '1986': 2, '1958': 1, '1915': 1, '1900': 1, '1871': 1, '1909': 2, '1954': 1, '1994': 3, '1937': 1, '1977': 4, '1904': 1, '1901': 1, '1970': 3, '1956': 1, '1967': 2, '1998': 7, '1969': 1, '1972': 2, '1881': 1, '1936': 1, '1866': 1, '1978': 1, '1912': 2, '1855': 3, '1850': 2, '1987': 4, '1964': 4, '1838': 1, '1962': 2, '1908': 2, '2002': 9, '1985': 4, '1802': 2, '2007': 7, '1865': 1, '1922': 2, '1999': 2, '1928': 1, '2001': 6, '1976': 1, '1867': 1, '1859': 2, '1992': 2, '1896': 2, '1874': 1, '1856': 1, '1995': 1, '2000': 5, '1910': 1, '1870': 1, '1947': 1, '1990': 3, '1996': 4, '1968': 1, '1920': 3, '1933': 1, '1925': 1, '1926': 1, '1979': 3, '1886': 1, '2008': 14, '1988': 2, '1946': 2, '1895': 2, '1790': 1, '1981': 1}
actionprocess {'2003': 1, '1973': 9, '2000': 2, '1976': 4, '1982': 10, '1980': 15, '1992': 4, '2006': 1, '1968': 2, '1985': 3, '1989': 8, '1983': 7, '1975': 15, '1993': 1, '2001': 2, '1974': 4, '1996': 1, '1981': 3, '1954': 2, '1994': 3, '1987': 4, '1979': 12, '1977': 3, '1970': 1, '1988': 11, '2007': 1, '1991': 3}
aerocyanosis {'1975': 2, '1997': 2, '1963': 2, '1987': 2, '2008': 2, '1931': 1, '2005': 3, '2003': 2, '2000': 1, '1915': 1, '1998': 1, '1990': 2, '1996': 1, '1954': 1, '1957': 1, '1927': 1, '2006': 7, '2004': 5, '1932': 1, '2002': 3, '1917': 1, '1995': 1, '2007': 3, '1991': 1, '1999': 1}
affiirmed_VERB {'1984': 1, '1913': 1, '1964': 2, '1987': 1, '1982': 1, '1979': 1, '1965': 5, '1952': 1, '1959': 2, '1996': 1, '1978': 5, '1975': 3, '2001': 1, '1912': 1, '1932': 2, '1940': 2, '1905': 3, '1957': 1, '1930': 1, '1962': 3, '1908': 1, '1853': 1, '1942': 1, '2002': 2, '1985': 6, '1986': 1, '1995': 1, '1970': 3, '1835': 1, '1988': 3, '1961': 7, '1928': 1, '1973': 1, '1976': 1, '1867': 1, '1963': 3, '1909': 1, '2006': 1, '1968': 1, '1989': 1, '1958': 3, '1906': 2, '1955': 2, '1951': 1, '1920': 1, '1933': 1, '1926': 1, '1980': 3, '1886': 1, '1977': 5, '1969': 6, '1967': 2, '1946': 1, '1949': 2, '1907': 2, '1981': 3, '1983': 3}
accueillant_VERB {'1984': 3, '2000': 1, '1976': 2, '1997': 4, '1972': 3, '2005': 4, '1965': 1, '1979': 4, '1959': 1, '1923': 3, '1917': 8, '1985': 1, '1989': 4, '1983': 2, '1975': 5, '1986': 1, '2003': 5, '1991': 2, '1998': 7, '1974': 1, '1990': 3, '1996': 7, '1994': 3, '1954': 1, '1957': 1, '1951': 6, '1977': 1, '2008': 3, '2006': 3, '1914': 1, '2004': 6, '1932': 2, '2002': 1, '1956': 2, '1967': 1, '1980': 1, '1995': 1, '1895': 1, '2007': 3, '1960': 1, '1969': 1, '1999': 2}
accept.63 {'1984': 2, '1928': 1, '1934': 2, '2001': 2, '2003': 2, '1969': 1, '1963': 3, '1913': 1, '1959': 1, '1992': 3, '2005': 5, '1944': 2, '1966': 1, '1950': 1, '2000': 5, '1986': 1, '2008': 2, '1902': 1, '1998': 3, '1997': 1, '1990': 3, '1955': 2, '1994': 3, '1981': 2, '1987': 2, '2007': 3, '1930': 1, '1996': 4, '2006': 4, '1938': 1, '1962': 1, '1945': 1, '1988': 1, '2004': 2, '1942': 2, '2002': 1, '1956': 1, '1967': 4, '1946': 1, '1995': 1, '1885': 7, '1970': 1}
adults.7_VERB {'1967': 1, '2003': 7, '1964': 3, '2001': 1, '2000': 4, '1982': 1, '1972': 2, '1979': 3, '1992': 2, '2005': 4, '1985': 2, '1989': 2, '1978': 1, '1975': 1, '1993': 2, '2008': 1, '1947': 1, '1990': 1, '1996': 1, '1994': 1, '1954': 1, '1987': 1, '1957': 1, '1977': 1, '2006': 4, '1962': 2, '1908': 1, '1998': 1, '2004': 1, '1999': 2, '2002': 3, '1963': 4, '1988': 2, '1980': 1, '1995': 2, '1960': 3, '1981': 1, '1983': 1}
abutere_VERB {'1789': 3, '1934': 3, '1869': 2, '2003': 1, '1767': 1, '1787': 2, '1965': 1, '1952': 1, '1959': 1, '1922': 11, '1917': 1, '1958': 1, '1983': 3, '1898': 4, '1857': 1, '1902': 1, '1912': 1, '1850': 3, '1957': 2, '1930': 1, '1962': 8, '1908': 4, '2004': 12, '2002': 6, '1937': 9, '1970': 1, '1961': 8, '2001': 4, '1976': 1, '1859': 1, '1992': 5, '1861': 1, '1966': 2, '1989': 1, '1941': 1, '2000': 1, '1904': 2, '1812': 1, '1871': 2, '1771': 3, '1990': 7, '1951': 4, '1927': 3, '1980': 8, '1971': 3, '1831': 1, '2006': 5, '1852': 2, '1876': 1, '1969': 1, '1956': 3, '1998': 2, '1895': 2, '1929': 5, '1907': 2, '1991': 2}
aeis_NOUN {'1834': 1, '1869': 2, '1982': 1, '1972': 3, '1903': 1, '1998': 3, '1928': 1, '1996': 2, '1917': 1, '1904': 1, '1978': 3, '2005': 2, '1898': 1, '2001': 1, '1856': 1, '1957': 2, '1964': 1, '1890': 2, '1962': 2, '1914': 1, '1853': 2, '2004': 3, '1987': 4, '1985': 1, '1986': 1, '1988': 2, '1969': 4, '1835': 1, '1877': 2, '1878': 1, '1965': 1, '1980': 1, '1976': 1, '1859': 1, '1948': 3, '1827': 1, '1804': 1, '1966': 1, '1995': 1, '1769': 1, '2003': 3, '1910': 1, '1958': 1, '1880': 2, '1900': 1, '1906': 1, '1990': 3, '1805': 2, '1994': 1, '1954': 1, '1854': 1, '1968': 2, '1934': 1, '1979': 1, '1971': 2, '1847': 1, '2006': 1, '1728': 1, '2008': 3, '1909': 1, '1956': 1, '1967': 1, '1955': 1, '1949': 1, '1895': 1, '1952': 1, '1960': 2, '1981': 4}
acria_NOUN {'1789': 1, '1930': 1, '2003': 2, '1860': 2, '1979': 1, '1881': 2, '1872': 4, '2008': 4, '2005': 1, '1958': 1, '1866': 1, '1978': 2, '2001': 2, '1902': 2, '1912': 1, '1897': 1, '1940': 10, '1905': 3, '1891': 3, '1850': 4, '1882': 2, '1987': 1, '1836': 1, '1892': 1, '1857': 1, '1838': 3, '1890': 3, '1899': 3, '1914': 1, '2004': 7, '1988': 1, '2002': 2, '1825': 1, '1924': 1, '1995': 2, '1885': 1, '1832': 1, '1835': 1, '1878': 1, '1903': 2, '1883': 1, '1844': 5, '1842': 1, '1796': 3, '1864': 1, '1923': 1, '1896': 1, '1985': 4, '1856': 2, '1989': 1, '1935': 1, '2000': 4, '1862': 1, '1876': 3, '1880': 2, '1906': 1, '1990': 1, '1996': 1, '1801': 4, '1981': 4, '1998': 4, '1854': 8, '1929': 1, '1994': 1, '1977': 1, '1800': 1, '1865': 1, '2006': 3, '1950': 1, '1888': 1, '1855': 2, '1980': 1, '1949': 1, '1830': 1, '1875': 1, '1983': 1}
adivinado_X {'1984': 2, '1927': 1, '2003': 3, '1982': 5, '1980': 2, '1965': 1, '1952': 2, '2005': 3, '1981': 4, '1975': 1, '2001': 7, '1974': 1, '1940': 2, '1891': 1, '1957': 1, '1964': 1, '1962': 1, '1908': 2, '2004': 8, '2002': 3, '1985': 4, '1995': 5, '1937': 2, '1987': 1, '1973': 1, '1976': 3, '1963': 1, '1992': 1, '1948': 1, '1861': 3, '1968': 4, '1979': 2, '1989': 2, '2000': 2, '1993': 3, '1997': 3, '1990': 7, '1996': 9, '1994': 4, '2007': 3, '1951': 1, '1977': 1, '1971': 6, '2006': 41, '2008': 13, '1999': 3, '1956': 1, '1988': 1, '1998': 3, '1929': 2, '1991': 6}
adrian {'1984': 6, '1857': 1, '2003': 56, '1982': 9, '1903': 1, '1952': 5, '1959': 8, '2005': 44, '1944': 1, '1983': 8, '1975': 75, '1898': 1, '1943': 2, '1902': 4, '1939': 5, '1891': 2, '1820': 1, '1884': 1, '1930': 42, '1970': 25, '1945': 2, '2004': 24, '1942': 1, '1924': 1, '1873': 1, '1921': 1, '1822': 1, '1888': 1, '1877': 9, '1965': 14, '1973': 119, '1953': 3, '1963': 6, '1987': 14, '2006': 50, '1966': 25, '1989': 9, '1935': 1, '1986': 46, '1958': 2, '1880': 1, '1915': 1, '1900': 1, '1871': 2, '1998': 26, '1994': 25, '1934': 3, '1977': 25, '1971': 32, '1938': 2, '1993': 17, '1950': 1, '1893': 1, '1922': 2, '1956': 4, '1967': 9, '1980': 8, '1949': 1, '1830': 1, '1960': 5, '1913': 1, '1926': 2, '1972': 12, '1881': 1, '1936': 144, '1996': 19, '1901': 1, '1978': 6, '1912': 2, '1897': 1, '1974': 27, '1940': 2, '1874': 1, '1999': 16, '1957': 59, '1816': 1, '1964': 11, '1962': 73, '1914': 1, '1817': 1, '2002': 35, '1985': 6, '1995': 103, '2007': 79, '1969': 18, '1753': 1, '1961': 5, '2001': 130, '1976': 54, '1859': 1, '1948': 1, '1896': 2, '1968': 12, '2000': 21, '1862': 1, '1876': 1, '1992': 44, '1923': 1, '1826': 1, '1947': 3, '1997': 35, '1990': 43, '1955': 2, '1911': 7, '1854': 1, '1920': 4, '1933': 1, '1925': 1, '1927': 3, '1979': 11, '1819': 1, '1907': 5, '2008': 187, '1991': 28, '1988': 11, '1946': 2, '1895': 1, '1886': 2, '1981': 7, '1851': 1}
accessio_ADP {'1894': 2, '1845': 2, '1972': 2, '1881': 2, '1866': 1, '1803': 1, '1897': 1, '1887': 1, '1939': 1, '1840': 2, '1850': 3, '1892': 3, '1857': 1, '1951': 2, '1962': 2, '1914': 3, '2004': 2, '2002': 1, '1924': 1, '1873': 1, '1921': 2, '1970': 1, '1999': 1, '1961': 5, '1903': 1, '1906': 2, '1859': 1, '1992': 1, '2003': 1, '1986': 1, '1876': 2, '1848': 1, '1870': 1, '1871': 1, '1990': 1, '1805': 1, '1994': 4, '1954': 2, '1854': 1, '1920': 2, '1885': 2, '1926': 1, '1971': 1, '2007': 2, '1852': 1, '1849': 1, '1950': 1, '1909': 2, '1969': 1, '1907': 5, '1981': 1}
accountants.6 {'1984': 1, '1990': 1, '2003': 1, '1982': 1, '1963': 2, '1955': 1, '1959': 1, '1948': 1, '2005': 2, '1968': 2, '1966': 4, '1985': 1, '1983': 2, '1978': 1, '2000': 2, '1999': 3, '1993': 1, '1992': 2, '1974': 1, '1997': 4, '1939': 1, '1840': 1, '1987': 1, '1979': 1, '1964': 1, '1977': 1, '1938': 5, '2006': 3, '1945': 1, '1988': 1, '2004': 2, '1932': 1, '2002': 2, '1972': 1, '1967': 1, '1989': 3, '1995': 1, '2007': 1, '1960': 4, '1981': 1, '1941': 3}
advancing_VERB {'1663': 8, '1740': 166, '1581': 1, '1718': 55, '1711': 83, '1775': 364, '1959': 20576, '1993': 49198, '1688': 26, '1507': 2, '1902': 20650, '1735': 133, '1799': 975, '1939': 13409, '1905': 19756, '1620': 2, '1698': 65, '1820': 4873, '1970': 38519, '1683': 49, '1756': 197, '1665': 4, '1776': 360, '1755': 477, '1655': 7, '1924': 12177, '1658': 9, '1753': 384, '1762': 322, '1965': 30970, '1903': 19957, '1707': 75, '1752': 266, '1864': 11129, '1792': 876, '1747': 413, '1574': 2, '1662': 4, '1880': 15031, '1732': 99, '1884': 15079, '1871': 11305, '2005': 104539, '1801': 1951, '1524': 1, '1737': 157, '1847': 10880, '1700': 40, '1772': 378, '1817': 3895, '1706': 119, '1833': 6305, '1783': 379, '1687': 7, '1638': 3, '1739': 120, '1773': 385, '1787': 714, '1881': 14895, '1671': 2, '1971': 36589, '1950': 15395, '1745': 122, '2001': 78591, '1699': 26, '1666': 3, '1758': 390, '1957': 18503, '1746': 124, '1682': 27, '1736': 108, '1780': 418, '1733': 59, '1713': 48, '1641': 1, '1691': 12, '1802': 1974, '2007': 133880, '1865': 12685, '1922': 16791, '1798': 709, '1607': 1, '1724': 87, '1743': 162, '1635': 3, '1828': 6423, '1827': 6300, '1795': 949, '1856': 14624, '1769': 299, '1684': 8, '1848': 11248, '1652': 2, '1771': 467, '1996': 59168, '1911': 19521, '1815': 3367, '1968': 39255, '1933': 9957, '1927': 13380, '1819': 3353, '1632': 7, '1895': 16093, '1981': 33316, '1789': 964, '1717': 91, '1869': 10567, '1982': 35355, '1807': 2285, '1670': 34, '1862': 10224, '1694': 23, '1944': 9646, '1813': 2730, '1887': 14215, '1872': 10517, '1770': 536, '1840': 9262, '1891': 14444, '1667': 7, '1945': 9862, '1857': 12384, '1906': 19547, '1915': 17797, '1846': 10401, '1668': 45, '1734': 174, '1738': 190, '1986': 40661, '1843': 8876, '1845': 11021, '1774': 371, '1650': 2, '1878': 12020, '1883': 16498, '1844': 9326, '1708': 77, '1778': 456, '1839': 9213, '1702': 52, '2006': 121913, '1804': 2599, '1989': 44959, '1935': 13688, '1958': 18725, '1768': 630, '1695': 11, '1680': 9, '1714': 118, '1623': 2, '1909': 18035, '1659': 10, '1829': 6233, '1998': 62371, '1994': 54560, '1918': 14831, '1854': 13922, '1980': 34451, '1651': 1, '1741': 118, '1809': 2603, '1893': 15851, '1822': 5145, '1967': 35299, '1835': 8558, '1759': 561, '1834': 6711, '1731': 211, '1826': 4808, '1782': 416, '1936': 13723, '1637': 34, '1912': 19610, '1722': 111, '1868': 11373, '1874': 12119, '1850': 11665, '1897': 18036, '1964': 28472, '1721': 86, '1889': 13175, '1760': 396, '1648': 17, '1963': 28320, '1825': 6492, '1961': 24918, '1675': 23, '1761': 518, '1644': 5, '1992': 50694, '1923': 15224, '1861': 10592, '1674': 1, '1910': 19478, '1803': 2088, '1579': 4, '1947': 14566, '1997': 59364, '1664': 1, '1716': 56, '1926': 12027, '1966': 33422, '1821': 3777, '2008': 204752, '1786': 497, '1727': 203, '1886': 13033, '1991': 46070, '1791': 685, '1818': 4211, '1860': 13734, '1575': 7, '1742': 157, '1784': 437, '1710': 73, '1952': 16671, '1515': 1, '1917': 16400, '1725': 57, '1781': 456, '1750': 370, '1975': 32887, '1726': 145, '1962': 26224, '1841': 9339, '1914': 19220, '1930': 14184, '1890': 14723, '1649': 12, '1853': 13346, '1744': 181, '1863': 9347, '1937': 13618, '1921': 15909, '1563': 2, '1877': 12606, '1643': 1, '1842': 7310, '1811': 3691, '1765': 244, '1709': 46, '1985': 40605, '1754': 419, '1941': 11295, '1678': 75, '1900': 23310, '1954': 15832, '1619': 1, '1934': 12252, '1766': 465, '1728': 144, '1837': 6976, '1876': 12771, '1956': 16805, '1919': 18511, '1949': 16584, '1929': 13233, '1875': 11590, '1779': 446, '1704': 65, '1796': 1210, '1697': 9, '1685': 50, '1901': 20829, '1978': 32681, '1703': 40, '1938': 12930, '1564': 1, '1916': 16666, '1824': 5621, '1892': 15257, '1690': 10, '1757': 240, '2002': 84067, '1995': 55125, '1885': 16079, '1888': 14138, '1882': 15727, '1749': 114, '1777': 459, '1859': 12522, '1677': 11, '1767': 339, '1870': 10907, '1814': 4087, '1896': 17963, '1955': 15318, '1669': 5, '1951': 15500, '1830': 6930, '1925': 12463, '1806': 2371, '1653': 5, '1849': 10428, '1858': 12527, '1681': 15, '1946': 12051, '1660': 1, '1720': 90, '1851': 10872, '1984': 37502, '1763': 467, '2003': 95482, '1810': 2738, '1696': 2, '1751': 292, '1673': 28, '1712': 46, '1983': 34631, '1723': 72, '1705': 93, '1898': 18962, '1943': 10897, '1836': 9297, '1785': 437, '1932': 12413, '1689': 19, '1715': 44, '2004': 111970, '1972': 35739, '1873': 10507, '1686': 18, '1942': 11642, '1953': 14924, '1987': 40894, '1879': 11809, '1904': 21337, '1812': 3204, '1719': 42, '1805': 2728, '1794': 744, '1977': 33753, '1823': 5304, '1852': 13461, '1999': 69730, '1797': 946, '1657': 2, '1960': 22296, '1748': 291, '1913': 17379, '1661': 1, '1866': 14599, '1973': 32963, '1808': 2686, '1974': 32564, '1940': 12719, '1764': 354, '1788': 863, '1816': 3414, '1838': 7690, '1899': 22070, '1908': 19617, '1679': 5, '1832': 7687, '1969': 37282, '1793': 930, '1928': 14379, '1729': 216, '1976': 33084, '1867': 12217, '1948': 14727, '1931': 14577, '1988': 42983, '1572': 5, '2000': 76039, '1730': 238, '1692': 5, '1676': 28, '1990': 49587, '1647': 2, '1701': 43, '1920': 19174, '1894': 16678, '1979': 33645, '1800': 1281, '1831': 6873, '1790': 769, '1855': 13741, '1693': 11, '1907': 19919}
aditya {'1984': 30, '1857': 1, '1869': 2, '2003': 102, '1818': 1, '1982': 55, '1860': 4, '1862': 2, '1959': 43, '1917': 12, '1830': 3, '1962': 46, '1983': 51, '1975': 28, '1898': 1, '1892': 1, '1887': 2, '1939': 3, '1905': 2, '1891': 9, '1908': 9, '1930': 1, '1890': 10, '1945': 1, '2004': 64, '1932': 1, '1986': 31, '1873': 2, '1921': 3, '1942': 3, '1965': 19, '1878': 10, '1826': 1, '1883': 1, '1990': 31, '1953': 13, '1963': 5, '1987': 30, '2006': 54, '1966': 33, '1989': 27, '1935': 9, '1879': 4, '1958': 3, '1812': 1, '1880': 6, '1915': 2, '1884': 3, '1871': 4, '2005': 46, '1909': 2, '1829': 2, '1954': 57, '1994': 22, '1934': 4, '1977': 55, '1971': 19, '1938': 10, '1993': 36, '1852': 3, '1817': 2, '1893': 7, '1969': 14, '1956': 2, '1967': 24, '1919': 3, '1949': 7, '1970': 10, '1929': 1, '1960': 4, '1875': 2, '1913': 3, '1926': 8, '1896': 9, '1972': 54, '1881': 4, '1992': 46, '1936': 3, '1996': 63, '1901': 2, '1978': 61, '1973': 99, '1912': 5, '1897': 9, '1868': 6, '2001': 141, '1916': 3, '1976': 41, '1957': 9, '1964': 7, '1899': 3, '1914': 2, '1974': 38, '2002': 85, '1985': 19, '1995': 35, '2007': 79, '1922': 1, '1999': 59, '1961': 7, '1928': 2, '1980': 26, '1882': 2, '1867': 4, '1859': 2, '1923': 3, '1931': 4, '1968': 13, '2000': 87, '1910': 1, '1876': 3, '1947': 1, '1906': 14, '1997': 58, '1861': 4, '1955': 5, '1911': 2, '1951': 10, '1920': 4, '1933': 3, '1925': 6, '1927': 1, '1979': 11, '1998': 61, '2008': 86, '1991': 45, '1988': 10, '1946': 3, '1895': 3, '1981': 137, '1941': 3}
addietro_NOUN {'1984': 1, '1979': 4, '1826': 4, '1992': 2, '1896': 1, '1968': 1, '1966': 1, '1978': 1, '1975': 2, '1943': 1, '1940': 1, '2005': 2, '1957': 1, '1933': 1, '1794': 1, '1987': 1, '1977': 2, '1899': 1, '1945': 2, '2008': 4, '1963': 1, '1967': 1, '1919': 1, '1895': 6, '1969': 1}
affiir_NOUN {'1791': 1, '1967': 1, '1769': 1, '1869': 1, '2003': 1, '1845': 1, '1977': 1, '1787': 1, '1826': 1, '1775': 1, '1971': 2, '1903': 1, '1921': 2, '2005': 2, '1750': 1, '1975': 2, '1902': 1, '1785': 1, '1808': 1, '1799': 1, '1905': 1, '1856': 6, '1824': 2, '1820': 1, '1892': 1, '1816': 1, '1984': 1, '1906': 1, '2007': 1, '1860': 2, '1795': 1, '1817': 1, '1987': 2, '1825': 2, '1924': 2, '1802': 1, '1873': 1, '1832': 1, '1822': 1, '1762': 1, '1988': 1, '1897': 1, '1883': 1, '1976': 1, '1990': 1, '1872': 2, '1811': 2, '1777': 1, '1765': 1, '1798': 1, '1828': 2, '1792': 1, '1804': 1, '1966': 1, '1989': 1, '1839': 2, '1986': 1, '1858': 1, '2008': 2, '1812': 2, '1880': 1, '1900': 1, '1871': 2, '1771': 2, '1827': 1, '1778': 1, '1801': 1, '1920': 1, '1885': 1, '1925': 1, '1957': 1, '1864': 4, '1800': 2, '1847': 1, '1823': 2, '1852': 1, '1837': 2, '1888': 1, '1933': 1, '1855': 2, '1783': 1, '1835': 2, '1886': 1, '1875': 2, '1851': 2}
admit.31_VERB {'1984': 1, '2001': 5, '2003': 1, '1969': 1, '1979': 1, '1965': 1, '2008': 2, '2006': 5, '1968': 3, '1966': 2, '1962': 1, '1989': 1, '1983': 1, '2000': 1, '1939': 3, '1996': 1, '1944': 1, '1977': 1, '1971': 1, '1889': 1, '2004': 2, '1988': 1, '1985': 2, '1998': 3, '2007': 2, '1991': 2, '1999': 1}
account.81_NOUN {'1984': 3, '1930': 1, '1934': 1, '2003': 10, '1982': 2, '1972': 1, '1952': 1, '1996': 6, '1936': 3, '2005': 14, '1983': 4, '1975': 6, '2001': 3, '1902': 2, '1974': 5, '1939': 2, '1916': 2, '1922': 1, '1987': 2, '1964': 5, '1962': 1, '1914': 1, '1988': 4, '2004': 10, '1942': 4, '2002': 4, '1985': 3, '1995': 7, '2007': 5, '1969': 1, '1999': 6, '1961': 1, '1928': 1, '1973': 2, '1963': 1, '1992': 1, '1948': 2, '2006': 6, '1968': 1, '1966': 3, '1989': 3, '2000': 5, '1993': 5, '2008': 7, '1926': 1, '1997': 3, '1990': 2, '1955': 1, '1994': 6, '1918': 1, '1933': 2, '1927': 5, '1979': 2, '1971': 2, '1938': 1, '1960': 2, '1977': 4, '1970': 3, '1967': 1, '1980': 4, '1998': 7, '1886': 2, '1991': 9, '1978': 2}
acci_X {'1818': 1, '1860': 1, '1903': 3, '1872': 3, '1952': 7, '1959': 11, '1917': 4, '1904': 3, '1975': 7, '1735': 1, '1899': 2, '1856': 1, '1908': 4, '1820': 5, '1930': 8, '1890': 5, '1945': 4, '1853': 4, '1863': 2, '1937': 2, '1921': 1, '1835': 1, '1877': 7, '1965': 4, '1963': 9, '1811': 6, '1847': 2, '1825': 4, '1966': 11, '1941': 1, '1880': 1, '1915': 3, '1884': 3, '1871': 2, '1795': 1, '1801': 2, '1954': 4, '2007': 14, '1934': 1, '1737': 3, '1766': 1, '1938': 1, '1993': 14, '1837': 8, '1706': 1, '1888': 5, '1956': 2, '1783': 2, '1949': 5, '1830': 2, '1875': 1, '1972': 15, '1881': 2, '1796': 1, '1922': 10, '1996': 13, '1950': 6, '1978': 16, '2005': 23, '1916': 4, '1957': 5, '1841': 1, '2002': 15, '1802': 1, '1885': 3, '1865': 1, '1970': 12, '1833': 14, '2001': 18, '1882': 8, '1939': 2, '1859': 2, '1809': 4, '1968': 22, '1889': 2, '1862': 3, '1848': 2, '1923': 2, '1906': 2, '1861': 2, '1955': 7, '1911': 2, '1768': 1, '1815': 1, '1951': 7, '1933': 5, '1925': 1, '1927': 4, '1819': 1, '1849': 2, '1858': 2, '1946': 4, '1895': 1, '1981': 8, '1851': 2, '1984': 20, '1869': 2, '2003': 14, '1810': 5, '1982': 8, '1807': 1, '1894': 4, '1983': 7, '1898': 4, '1892': 6, '1887': 3, '1770': 1, '1840': 1, '1891': 6, '1857': 1, '2004': 20, '1942': 4, '1986': 11, '1873': 3, '1823': 3, '1878': 2, '1883': 9, '1844': 1, '1953': 5, '1987': 13, '1839': 2, '2006': 14, '1989': 13, '1935': 4, '1879': 5, '1924': 5, '1958': 14, '1812': 3, '1805': 1, '1829': 2, '1998': 16, '1994': 13, '1918': 4, '1794': 1, '1854': 2, '1977': 16, '1971': 15, '1852': 4, '1893': 8, '1999': 16, '1967': 14, '1980': 7, '1995': 15, '1960': 10, '1913': 2, '1834': 1, '1896': 3, '1870': 7, '1929': 2, '1826': 3, '1936': 5, '1866': 2, '1973': 11, '1912': 4, '1897': 1, '1808': 2, '1868': 2, '1940': 9, '1850': 1, '1788': 1, '1816': 1, '1964': 8, '1821': 4, '1962': 7, '1914': 3, '1974': 13, '1985': 19, '1832': 4, '1969': 6, '1961': 5, '1928': 3, '1976': 2, '1867': 3, '1992': 12, '1948': 2, '1931': 5, '1988': 12, '2000': 16, '1876': 7, '1803': 2, '1947': 5, '1997': 22, '1990': 2, '1920': 3, '1926': 5, '1979': 10, '1800': 2, '1831': 1, '1886': 4, '2008': 26, '1855': 3, '1907': 5, '1991': 5}
acculée_X {'1984': 2, '1903': 5, '2001': 1, '2003': 2, '1976': 4, '1982': 4, '1963': 2, '1965': 1, '1979': 2, '1992': 2, '1861': 1, '1874': 1, '2007': 1, '1989': 2, '1969': 2, '2000': 2, '1993': 1, '1974': 1, '2006': 1, '1996': 3, '1994': 2, '1957': 1, '1987': 2, '1927': 1, '1977': 1, '1962': 1, '1988': 2, '2004': 1, '1970': 1, '2002': 1, '1972': 1, '1967': 1, '1986': 1, '1998': 2, '1937': 1, '1981': 1, '1983': 2}
activity.102_NOUN {'1984': 3, '1967': 2, '1964': 2, '2000': 5, '1982': 2, '1980': 2, '1965': 2, '1952': 3, '1959': 1, '2005': 5, '1958': 3, '1983': 5, '1975': 1, '1943': 1, '1974': 3, '1987': 4, '1997': 5, '1962': 2, '2004': 11, '2002': 5, '1985': 4, '1995': 3, '2007': 10, '1981': 2, '1969': 3, '1973': 2, '1953': 1, '1963': 1, '1992': 3, '2006': 9, '1968': 2, '1989': 4, '2003': 13, '1993': 5, '1990': 2, '1996': 11, '2001': 8, '1994': 6, '1951': 1, '1979': 1, '1971': 1, '2008': 10, '1999': 6, '1988': 6, '1998': 3, '1991': 1}
aef_NUM {'1894': 1, '2003': 6, '1982': 1, '1977': 2, '1965': 2, '1996': 4, '1936': 1, '2005': 1, '1993': 2, '1983': 2, '1975': 3, '1898': 1, '1912': 1, '1987': 1, '1820': 2, '1997': 2, '2004': 4, '2002': 2, '1972': 3, '1985': 2, '1986': 1, '1995': 1, '2007': 1, '1957': 1, '1970': 1, '1999': 1, '1878': 1, '1903': 1, '2001': 4, '1976': 1, '1953': 1, '1963': 1, '1992': 3, '1931': 1, '1967': 1, '1966': 3, '1989': 1, '1769': 1, '2000': 1, '1958': 1, '1812': 2, '2006': 9, '1955': 3, '1911': 1, '1954': 1, '1994': 1, '1926': 1, '1980': 3, '1971': 1, '1847': 1, '1938': 1, '2008': 7, '1981': 2, '1988': 4, '1946': 1, '1998': 1, '1822': 1, '1991': 1}
activity3_VERB {'1984': 2, '1976': 2, '1982': 2, '1992': 1, '2008': 1, '2005': 4, '1989': 2, '1983': 1, '2003': 1, '1993': 1, '1974': 1, '1990': 2, '1996': 20, '1994': 3, '1964': 1, '1979': 1, '1971': 3, '2006': 1, '2004': 1, '1999': 5, '1985': 2, '1986': 2, '1995': 1, '2007': 3, '1991': 18, '1987': 2}
affrontee_VERB {'1913': 1, '2003': 3, '1997': 1, '1972': 2, '1903': 1, '1983': 4, '1975': 1, '1898': 1, '1897': 2, '1899': 3, '1905': 1, '1957': 2, '1946': 1, '1814': 2, '1962': 2, '1908': 2, '2004': 5, '1932': 1, '1985': 3, '1924': 1, '1922': 3, '1877': 3, '1973': 1, '1976': 1, '1953': 1, '1963': 1, '1992': 4, '1931': 2, '1989': 1, '2000': 1, '1986': 6, '1900': 4, '1947': 2, '2006': 10, '1909': 1, '1994': 2, '1925': 1, '1926': 1, '1971': 1, '2008': 1, '1991': 1, '1967': 1, '1919': 1, '1907': 1, '1981': 1}
acidized_ADJ {'1984': 6, '1967': 3, '1964': 2, '2003': 5, '1982': 6, '1977': 2, '1965': 1, '1959': 4, '2005': 7, '1950': 3, '1978': 3, '1975': 3, '1974': 2, '1939': 4, '1987': 5, '1997': 14, '1962': 1, '2004': 1, '2002': 2, '1972': 1, '1985': 3, '1986': 4, '1957': 2, '1999': 1, '1973': 1, '1953': 2, '1963': 3, '1992': 2, '1948': 1, '2006': 1, '1968': 3, '1966': 1, '1989': 17, '2000': 2, '1993': 1, '1949': 3, '1990': 3, '1996': 9, '1954': 2, '1994': 1, '1951': 3, '1979': 1, '1938': 1, '2008': 3, '1981': 4, '1956': 4, '1988': 2, '1980': 2, '1998': 5, '1991': 1, '1983': 6}
adgang_X {'1984': 21, '2003': 26, '1982': 3, '1980': 5, '1972': 14, '1965': 4, '1952': 21, '1959': 11, '2008': 10, '2005': 36, '1944': 5, '1996': 21, '1950': 12, '1983': 5, '1978': 7, '1975': 20, '2001': 12, '1974': 1, '1940': 9, '1939': 2, '1957': 12, '1964': 5, '1962': 12, '1945': 2, '1988': 38, '2004': 12, '1942': 6, '2002': 9, '1985': 6, '1986': 5, '1995': 13, '1937': 3, '1970': 6, '1987': 5, '1961': 1, '1993': 3, '1973': 10, '1976': 3, '1953': 17, '1963': 1, '1979': 3, '1948': 3, '2006': 11, '1968': 5, '1966': 2, '1989': 8, '1941': 1, '2000': 4, '1999': 3, '1958': 8, '1991': 10, '1992': 8, '1923': 1, '1997': 7, '1990': 2, '1955': 7, '1994': 9, '1954': 15, '1951': 2, '1920': 20, '1933': 4, '1934': 5, '1977': 10, '1971': 9, '1938': 7, '1904': 1, '2007': 7, '1893': 2, '1969': 45, '1956': 22, '1967': 11, '1946': 1, '1998': 8, '1960': 1, '1981': 1, '1935': 4}
abstentions.13 {'1961': 4, '2003': 1, '1976': 1, '1982': 3, '1965': 6, '1987': 2, '1992': 2, '2006': 5, '1967': 3, '1966': 2, '1950': 3, '1989': 1, '1983': 1, '2000': 1, '2008': 1, '1974': 2, '1994': 1, '1951': 3, '1964': 1, '1979': 6, '1962': 1, '2004': 5, '1988': 1, '2002': 3, '1956': 3, '1985': 4, '1986': 1, '1995': 1, '2007': 6, '1969': 1}
acediae {'1834': 1, '2000': 1, '1997': 6, '1965': 1, '1952': 1, '2008': 6, '1993': 4, '1950': 1, '1943': 1, '1892': 4, '1974': 1, '1899': 5, '1957': 2, '1964': 15, '1962': 1, '2004': 5, '2002': 2, '1986': 2, '1995': 1, '2007': 6, '1970': 2, '1999': 4, '1961': 1, '1928': 1, '1903': 2, '1973': 3, '1976': 1, '1953': 2, '1992': 1, '1948': 2, '1896': 1, '1969': 1, '2003': 2, '1910': 1, '1958': 1, '1949': 2, '1990': 4, '1911': 2, '1925': 1, '1901': 9, '1991': 2, '1956': 2, '1967': 12, '1998': 1, '1886': 2, '1981': 1}
action.80 {'1984': 17, '2003': 32, '1982': 7, '1860': 1, '1903': 3, '1952': 3, '1959': 4, '1917': 7, '1944': 1, '1983': 10, '1975': 16, '1898': 1, '1943': 5, '1902': 1, '1887': 1, '1939': 8, '1905': 1, '1908': 4, '1930': 2, '1945': 2, '2004': 34, '1942': 9, '1924': 4, '1937': 6, '1921': 13, '1932': 2, '1993': 8, '1965': 16, '1973': 24, '1953': 5, '1963': 10, '1987': 22, '2006': 49, '1966': 22, '1989': 24, '1941': 5, '1986': 18, '1958': 1, '1915': 2, '1900': 1, '2005': 40, '1954': 5, '1994': 19, '1918': 3, '2007': 62, '1934': 7, '1980': 15, '1971': 9, '1938': 3, '1904': 5, '1977': 20, '1922': 10, '1956': 6, '1967': 13, '1919': 4, '1949': 3, '1929': 4, '1960': 11, '1913': 3, '1927': 3, '1969': 14, '1972': 18, '1936': 8, '1996': 24, '1950': 13, '1978': 14, '1912': 3, '1974': 13, '1940': 12, '1916': 2, '1957': 6, '1964': 15, '1962': 5, '1914': 2, '1988': 9, '2002': 39, '1985': 14, '1995': 11, '1885': 1, '1970': 13, '1999': 24, '1961': 1, '1928': 10, '2001': 39, '1976': 8, '1992': 25, '1948': 5, '1931': 4, '1968': 15, '2000': 25, '1910': 5, '1947': 8, '1997': 19, '1990': 20, '1955': 4, '1911': 7, '1951': 11, '1925': 1, '1926': 4, '1979': 8, '1998': 33, '2008': 42, '1991': 14, '1855': 1, '1946': 2, '1907': 3, '1981': 12, '1935': 2}
ader_ADJ {'1789': 1, '1984': 3, '1857': 1, '2003': 13, '1982': 2, '1845': 1, '1903': 1, '1959': 3, '1917': 1, '1993': 2, '2007': 15, '1750': 1, '1975': 1, '1887': 1, '1939': 2, '1905': 2, '1915': 2, '1930': 2, '1890': 2, '1860': 1, '2004': 21, '1942': 1, '1924': 1, '1937': 2, '1921': 1, '1932': 1, '1965': 6, '1973': 3, '1990': 6, '1953': 1, '1963': 3, '1987': 6, '1864': 1, '2006': 15, '1989': 13, '1941': 1, '1879': 2, '1986': 4, '1958': 2, '1880': 1, '1841': 1, '1884': 2, '1871': 2, '2005': 13, '1909': 2, '1954': 2, '1994': 7, '1918': 3, '1873': 2, '1977': 5, '1971': 4, '1938': 1, '1772': 1, '1950': 2, '1893': 2, '1970': 3, '1956': 1, '1967': 7, '1919': 5, '1998': 8, '1835': 1, '1983': 3, '1894': 4, '1896': 1, '1870': 1, '1969': 9, '1972': 2, '1992': 1, '1936': 3, '1996': 4, '1901': 1, '1978': 7, '2001': 13, '1912': 1, '1974': 3, '1940': 1, '1874': 1, '1859': 1, '1976': 3, '1824': 1, '1816': 1, '1964': 3, '1962': 2, '1988': 4, '2008': 12, '2002': 6, '1985': 8, '1995': 16, '1885': 1, '1832': 2, '1922': 4, '1999': 2, '1980': 2, '1882': 3, '1840': 1, '1948': 4, '1931': 2, '1968': 6, '2000': 5, '1910': 1, '1947': 2, '1923': 1, '1906': 4, '1997': 7, '1861': 1, '1955': 1, '1911': 1, '1951': 4, '1920': 1, '1933': 3, '1926': 1, '1979': 7, '1858': 1, '1991': 6, '1855': 2, '1895': 1, '1907': 1, '1981': 6, '1851': 1}
abstractions.11 {'1984': 1, '1961': 1, '1964': 6, '1997': 2, '1972': 1, '1967': 1, '2008': 1, '2005': 2, '1968': 1, '1985': 1, '1978': 3, '2000': 1, '1999': 2, '1995': 2, '1940': 2, '2006': 3, '1996': 2, '1954': 1, '1994': 3, '1987': 1, '1977': 1, '2004': 1, '1970': 3, '2002': 1, '1988': 2, '1980': 1, '1949': 1, '1969': 3, '1983': 1}
absurd.14_ADP {'1984': 2, '1967': 2, '2001': 1, '2003': 1, '1982': 1, '1963': 1, '1992': 4, '1996': 2, '2008': 5, '2005': 1, '1968': 1, '1966': 2, '1983': 3, '2000': 2, '1995': 1, '1990': 4, '1905': 1, '1994': 2, '1920': 4, '1997': 3, '1944': 2, '2006': 1, '1906': 2, '1962': 3, '2004': 3, '1999': 6, '2002': 7, '1985': 2, '1998': 1, '2007': 2, '1991': 2}
achatados_NOUN {'1913': 3, '1930': 1, '1973': 4, '1982': 1, '1953': 2, '1963': 5, '1965': 3, '1992': 7, '1931': 2, '1968': 2, '1966': 1, '1950': 3, '1978': 2, '1975': 1, '1958': 5, '1991': 2, '1892': 6, '1887': 5, '1974': 1, '1940': 1, '1997': 1, '1955': 2, '1981': 4, '1954': 2, '1944': 1, '1964': 1, '1979': 1, '2001': 3, '1988': 1, '1888': 5, '2002': 1, '1985': 1, '1946': 1, '1998': 1, '1895': 2, '1969': 6}
acetaria {'1793': 2, '1984': 1, '1928': 1, '2003': 1, '1976': 1, '1990': 1, '1860': 2, '1972': 1, '2005': 2, '1985': 2, '1992': 5, '1996': 4, '2008': 5, '1917': 1, '1968': 1, '1901': 1, '1995': 6, '2000': 2, '1943': 1, '1870': 1, '1900': 5, '1871': 1, '1939': 1, '1905': 8, '1994': 9, '1829': 1, '1854': 1, '1991': 1, '1951': 1, '1979': 1, '2006': 2, '1845': 1, '1853': 7, '2004': 1, '1970': 1, '2002': 1, '1874': 1, '1986': 1, '1949': 6, '1929': 2, '1875': 3}
activity.141 {'1984': 2, '1967': 1, '2001': 3, '2003': 4, '1982': 2, '1972': 3, '1965': 1, '1992': 4, '2008': 6, '2005': 11, '1944': 1, '1985': 1, '1989': 7, '1969': 2, '2000': 4, '1999': 4, '1993': 6, '1998': 6, '1974': 3, '1997': 7, '1990': 4, '1996': 8, '1987': 3, '1994': 12, '1979': 3, '1971': 2, '2006': 5, '2004': 7, '1977': 5, '1970': 1, '2002': 2, '1988': 4, '1986': 4, '1995': 2, '2007': 13, '1991': 2, '1983': 3}
addea_DET {'1984': 5, '2003': 3, '1982': 2, '1845': 2, '1965': 5, '1751': 1, '1952': 2, '2005': 1, '1944': 1, '1983': 2, '1975': 1, '1809': 1, '1836': 1, '1939': 2, '1905': 2, '1820': 1, '1930': 2, '1629': 1, '1890': 1, '1853': 1, '1846': 1, '1932': 1, '1986': 2, '1822': 1, '1844': 2, '1953': 2, '1963': 2, '1864': 1, '2006': 2, '1966': 1, '1989': 2, '1941': 1, '1879': 1, '1904': 1, '1871': 1, '1954': 6, '1994': 5, '1934': 2, '1980': 2, '1971': 1, '1938': 1, '1993': 2, '1852': 2, '1969': 1, '1956': 1, '1967': 1, '1919': 1, '1949': 2, '1960': 1, '1913': 1, '1896': 3, '1972': 1, '1881': 1, '1978': 3, '2001': 1, '1912': 2, '1974': 2, '1855': 1, '1987': 2, '1964': 1, '1962': 2, '1914': 1, '1985': 2, '2007': 1, '1865': 1, '1970': 3, '1961': 2, '1743': 1, '1992': 1, '1859': 1, '1861': 1, '1968': 1, '1889': 1, '2000': 1, '1910': 1, '1876': 2, '1948': 1, '1947': 1, '1997': 1, '1990': 3, '1955': 1, '1911': 1, '1951': 2, '1920': 1, '1933': 2, '1925': 2, '1926': 3, '1979': 3, '1957': 1, '1998': 2, '2008': 6, '1988': 1, '1946': 1, '1895': 3, '1907': 2, '1981': 5}
adelphois {'2001': 1, '2003': 4, '1976': 1, '1997': 1, '1972': 2, '1992': 1, '2008': 2, '2005': 2, '1989': 3, '1978': 1, '2000': 7, '1993': 5, '1998': 1, '2006': 2, '1996': 2, '1987': 2, '1994': 3, '2004': 3, '1991': 1, '2002': 2, '1988': 4, '1986': 1, '1995': 4, '2007': 12, '1981': 1}
adjuc {'1984': 1, '1928': 1, '2000': 1, '1982': 2, '1963': 1, '1992': 1, '1959': 1, '2005': 2, '1968': 1, '1966': 5, '1950': 1, '1983': 1, '1975': 1, '2003': 1, '2006': 1, '1996': 1, '1994': 2, '1954': 1, '1944': 2, '1933': 1, '1964': 1, '1971': 2, '1962': 1, '2008': 1, '1970': 1, '2002': 1, '1985': 2, '1986': 1, '2007': 3, '1960': 1, '1981': 2, '1999': 2}
action.49_VERB {'1984': 1, '2003': 7, '2001': 6, '1975': 1, '1982': 1, '1980': 2, '1992': 2, '2008': 1, '2005': 1, '1958': 2, '1966': 2, '2000': 9, '1993': 4, '1998': 1, '1997': 1, '1996': 3, '1964': 1, '1977': 1, '1971': 2, '1962': 3, '2004': 2, '1999': 1, '1988': 2, '1995': 1, '2007': 1}
actuaL_NOUN {'2003': 21, '2001': 8, '2000': 5, '1976': 1, '1997': 5, '1979': 1, '1992': 2, '1923': 1, '2005': 2, '1944': 1, '1966': 1, '1901': 1, '1963': 1, '2004': 16, '1904': 1, '1803': 1, '1998': 13, '1974': 1, '1990': 1, '1996': 3, '1891': 1, '1916': 1, '1994': 1, '1977': 1, '2008': 2, '1889': 1, '1866': 1, '1893': 2, '1991': 2, '2002': 7, '1956': 1, '1985': 1, '1924': 1, '1995': 1, '1885': 1, '1970': 1, '1999': 6}
adhamam_X {'1967': 2, '1869': 1, '2003': 3, '1982': 1, '1953': 1, '1859': 2, '2005': 1, '1944': 1, '1866': 2, '1978': 2, '2000': 1, '1993': 1, '1973': 1, '1974': 1, '1990': 2, '1996': 1, '2001': 1, '1997': 1, '1979': 1, '1971': 1, '2006': 1, '1988': 1, '2004': 1, '1970': 1, '1985': 1, '1986': 2, '1998': 2, '1991': 4, '1983': 3}
accessories {'1791': 51, '1984': 16719, '1803': 26, '1931': 4687, '1767': 4, '1860': 1489, '1755': 4, '1742': 1, '1711': 1, '1872': 1690, '1952': 5881, '1515': 2, '1917': 4105, '1958': 6401, '1781': 29, '1750': 3, '1975': 12084, '1726': 1, '1902': 3815, '1746': 1, '1799': 7, '1957': 7153, '1899': 3520, '1905': 4168, '1732': 1, '1933': 2982, '1584': 1, '1914': 5020, '1820': 108, '1900': 4008, '1930': 4252, '1890': 1911, '1683': 2, '1853': 1146, '1756': 4, '1776': 2, '1744': 1, '1863': 949, '1921': 4417, '1937': 4858, '1741': 6, '1822': 244, '1835': 493, '1877': 2092, '1784': 5, '1842': 369, '1752': 8, '1811': 94, '1765': 7, '1909': 3761, '1864': 1282, '1792': 15, '1747': 4, '1574': 1, '1754': 16, '1941': 4695, '1999': 33237, '1880': 2094, '1841': 506, '1884': 2101, '1871': 1024, '1926': 3345, '2005': 45018, '1801': 24, '1954': 6947, '1944': 3834, '2007': 47413, '1934': 3388, '1737': 1, '1847': 626, '1700': 1, '1772': 6, '1817': 82, '1888': 1654, '1956': 6764, '1783': 37, '1949': 7355, '1798': 21, '1830': 198, '1794': 11, '1875': 1586, '1779': 8, '1739': 1, '1911': 4588, '1948': 7055, '1773': 58, '1787': 42, '1881': 2036, '1796': 54, '1996': 26225, '1901': 3543, '1766': 14, '1703': 1, '1938': 4979, '1916': 3919, '1758': 4, '1852': 1391, '1973': 12796, '1892': 2340, '1736': 3, '1775': 98, '1757': 2, '1837': 316, '1641': 1, '2002': 38910, '1976': 12476, '1802': 27, '1885': 2212, '1865': 1183, '1922': 5175, '1833': 258, '1724': 2, '2001': 35082, '1882': 2063, '1939': 5457, '1749': 1, '1777': 3, '1970': 11977, '1859': 1211, '1828': 459, '1827': 168, '1874': 1496, '1856': 1244, '1769': 59, '1862': 945, '1848': 685, '1870': 1236, '1814': 98, '1896': 3066, '1778': 37, '1768': 1, '1815': 37, '1854': 1551, '1929': 4598, '1925': 4162, '1927': 4159, '1806': 40, '1819': 210, '1849': 713, '1858': 1522, '1946': 5218, '1895': 2656, '1981': 13792, '1851': 1056, '1789': 3, '1967': 10844, '1763': 1, '1869': 1300, '2003': 43539, '1810': 62, '1982': 14519, '1807': 228, '2004': 46502, '1968': 10775, '1751': 2, '1894': 2387, '1673': 1, '1813': 33, '1712': 1, '1983': 15774, '1705': 1, '1898': 2728, '1943': 4304, '1836': 470, '1785': 17, '1887': 1744, '1770': 29, '1840': 448, '1891': 2486, '1945': 4046, '1857': 1412, '1906': 3890, '1915': 4024, '1846': 609, '1907': 5085, '1942': 5378, '1972': 12357, '1986': 17917, '1590': 2, '1843': 968, '1845': 503, '1774': 10, '1993': 22278, '1878': 1473, '1883': 2457, '1844': 506, '1953': 6718, '1838': 576, '1955': 7317, '1839': 355, '2006': 46022, '1804': 32, '1989': 19135, '1935': 4152, '1879': 1797, '1924': 3941, '1904': 4270, '1812': 29, '1719': 3, '1680': 2, '1805': 77, '1829': 290, '1998': 28151, '1994': 25906, '1918': 3803, '1873': 1374, '1818': 99, '1951': 6336, '1977': 11673, '1971': 11497, '1823': 127, '1809': 79, '1950': 7100, '1893': 2570, '1753': 2, '1797': 12, '1795': 66, '1980': 13554, '1995': 24984, '1762': 17, '1960': 7021, '1978': 12551, '1759': 1, '1913': 4059, '1834': 268, '1731': 2, '1826': 323, '1936': 4781, '1903': 3489, '1866': 1230, '1932': 3574, '1912': 5583, '1722': 1, '1808': 96, '1868': 1691, '1940': 5946, '1850': 830, '1764': 3, '1919': 4008, '1788': 27, '1897': 2786, '1816': 73, '1964': 8698, '1821': 67, '1965': 9160, '1889': 1866, '1908': 4596, '1760': 8, '1974': 11435, '1963': 10262, '1825': 370, '1832': 200, '1969': 11041, '1987': 18657, '1793': 5, '1961': 8728, '1928': 3925, '1761': 5, '1867': 1222, '1959': 8108, '1644': 1, '1992': 22851, '1923': 3820, '1861': 1293, '1988': 18190, '1962': 9035, '2000': 35292, '1910': 4230, '1876': 1666, '1692': 1, '1947': 6517, '1676': 1, '1997': 25998, '1990': 22602, '1966': 9829, '1985': 16555, '1920': 4943, '1824': 219, '1979': 13620, '1800': 73, '1831': 278, '1790': 40, '2008': 52385, '1786': 7, '1855': 1290, '1886': 1436, '1991': 20660}
accormts_NOUN {'1961': 1, '2001': 1, '2000': 3, '1982': 2, '1972': 1, '1965': 2, '1992': 1, '2008': 1, '2005': 4, '1950': 2, '1989': 1, '1969': 3, '1975': 2, '1999': 3, '2003': 2, '1998': 2, '1997': 3, '1990': 2, '1996': 2, '1994': 1, '1957': 1, '1933': 1, '1867': 1, '1977': 2, '1970': 2, '2006': 1, '1866': 1, '2004': 3, '1981': 1, '2002': 2, '1956': 2, '1985': 1, '1946': 1, '1995': 8, '2007': 4, '1991': 1, '1978': 1}
aerw {'1984': 6, '1964': 3, '1982': 10, '1972': 6, '1965': 1, '2005': 1, '1944': 1, '1950': 1, '1978': 6, '1975': 3, '1943': 1, '1974': 15, '1940': 1, '1905': 1, '1850': 1, '1987': 18, '1820': 1, '1682': 1, '1890': 1, '1914': 1, '1988': 4, '1985': 8, '1986': 13, '1995': 3, '2007': 1, '1970': 2, '1961': 1, '1973': 10, '1976': 12, '1963': 2, '1996': 2, '1948': 1, '2006': 2, '1968': 4, '1966': 5, '1989': 4, '2003': 4, '1910': 1, '1904': 1, '1991': 1, '1884': 1, '1906': 1, '1997': 2, '1990': 20, '1955': 1, '1994': 1, '1854': 1, '1934': 1, '1979': 3, '1993': 10, '2008': 3, '1977': 1, '1969': 1, '1956': 1, '1967': 13, '1980': 12, '1998': 1, '1960': 2, '1981': 8, '1983': 12}
achier_X {'1973': 2, '2003': 1, '1976': 4, '1859': 4, '1864': 5, '2008': 1, '2005': 2, '1967': 4, '1966': 2, '1983': 1, '2000': 7, '1924': 1, '1958': 1, '2001': 2, '1902': 1, '1868': 2, '1940': 1, '1990': 5, '1996': 1, '1856': 5, '1951': 1, '1994': 1, '1980': 1, '1971': 1, '2006': 1, '2004': 2, '1855': 1, '1988': 2, '1986': 1, '1998': 5, '1935': 1}
acetylcholinebinding {'1984': 2, '2001': 1, '2000': 3, '1997': 2, '1975': 1, '1992': 4, '2008': 6, '2005': 11, '1988': 3, '1989': 1, '2003': 5, '1998': 3, '1990': 2, '1987': 1, '1994': 1, '1980': 1, '2006': 10, '2004': 11, '1999': 4, '2002': 6, '1985': 2, '1995': 4, '2007': 6, '1991': 1}
activity52_NOUN {'1973': 1, '2000': 2, '1997': 1, '1963': 4, '1992': 2, '2008': 3, '2005': 1, '1981': 1, '1966': 1, '1989': 2, '1983': 2, '1975': 2, '1999': 4, '2003': 2, '2001': 3, '1998': 2, '1990': 1, '1994': 2, '1987': 3, '1971': 3, '2006': 2, '2004': 5, '1991': 2, '1956': 2, '1988': 2, '1946': 1, '1995': 5, '2007': 3, '1969': 2, '1932': 1}
accompaniedbya {'2005': 4, '2006': 6, '2004': 5, '2001': 1, '2003': 2, '2002': 2, '1987': 2, '1825': 1, '1998': 1, '2007': 14, '2008': 18}
afib_DET {'2001': 3, '1975': 1, '1997': 1, '1980': 2, '1811': 1, '1992': 1, '1959': 3, '2008': 6, '2005': 2, '1988': 1, '1989': 1, '2000': 3, '1993': 1, '2006': 4, '1957': 3, '1994': 1, '1979': 1, '1962': 1, '2004': 4, '1942': 1, '2002': 2, '1985': 1, '2007': 4, '1999': 4}
acticed {'1984': 1, '2003': 2, '2000': 4, '1997': 2, '1972': 2, '1965': 2, '1996': 1, '1936': 1, '1917': 1, '1904': 1, '1901': 1, '1978': 1, '2001': 1, '1924': 1, '1986': 1, '1899': 1, '1891': 1, '1976': 4, '2006': 4, '1906': 1, '1962': 1, '1945': 1, '1988': 1, '2004': 8, '1942': 1, '1863': 1, '1995': 1, '2007': 3, '1921': 1, '1970': 2, '1999': 2, '1928': 1, '1973': 1, '1842': 2, '1859': 1, '1931': 1, '1968': 1, '1989': 1, '1935': 3, '1879': 1, '1862': 1, '1958': 2, '2008': 4, '1947': 1, '2005': 3, '1955': 1, '1954': 1, '1994': 1, '1980': 3, '1886': 1, '1993': 2, '1998': 4, '1837': 1, '1909': 2, '1922': 1, '1967': 2, '1919': 1, '1949': 2, '1895': 1, '1929': 1, '1960': 1, '1979': 1}
abstained {'1740': 14, '1581': 2, '1718': 4, '1711': 7, '1775': 53, '1959': 2024, '1904': 1893, '1688': 8, '1902': 1963, '1735': 5, '1799': 140, '1939': 916, '1905': 1960, '1698': 3, '1820': 680, '1970': 4956, '1683': 8, '1756': 8, '1776': 46, '1755': 35, '1655': 2, '1924': 1155, '1658': 5, '1762': 11, '1965': 4122, '1903': 2079, '1707': 2, '1752': 44, '1864': 1412, '1792': 77, '1747': 23, '1966': 4271, '1880': 2090, '1841': 1363, '1884': 1720, '1871': 1607, '1795': 105, '1801': 157, '1737': 17, '1847': 1401, '1700': 1, '1772': 19, '1817': 478, '1706': 5, '1833': 1023, '1783': 57, '1687': 2, '1739': 13, '1773': 56, '1787': 72, '1881': 1674, '1950': 1597, '1745': 7, '1743': 3, '1699': 4, '1676': 5, '1957': 1992, '1746': 3, '1682': 6, '1736': 8, '1780': 33, '1733': 15, '1713': 7, '1641': 1, '1802': 209, '2007': 10163, '1865': 1445, '1922': 1298, '1798': 86, '1607': 2, '1724': 21, '2001': 6235, '1635': 1, '1828': 968, '1827': 935, '1967': 4366, '1856': 1818, '1769': 9, '1684': 5, '1848': 1486, '1771': 23, '1996': 5343, '1911': 1659, '1815': 317, '1968': 5102, '1933': 845, '1656': 1, '1927': 1272, '1819': 425, '1631': 1, '1895': 1803, '1981': 3971, '1789': 168, '1717': 1, '1869': 1385, '1982': 3751, '1807': 296, '1862': 1220, '1944': 634, '1813': 352, '1887': 1900, '1872': 1467, '1770': 20, '1840': 1482, '1891': 1724, '1945': 786, '1857': 1334, '1906': 2116, '1915': 1171, '1846': 1429, '1668': 4, '1734': 7, '1738': 13, '1986': 4209, '1843': 1577, '1774': 30, '1878': 1775, '1973': 4543, '1844': 1262, '1708': 7, '1778': 31, '1839': 1349, '1702': 9, '2006': 9852, '1804': 255, '1989': 4380, '1935': 1192, '1958': 2474, '1768': 35, '1695': 19, '1680': 4, '1714': 4, '1909': 1710, '1829': 954, '1998': 5345, '1994': 4616, '1918': 897, '1854': 2106, '1980': 3846, '1971': 4255, '1741': 5, '1809': 267, '1893': 1769, '1753': 25, '1874': 1605, '1835': 1157, '1759': 34, '1834': 899, '1731': 16, '1826': 692, '1782': 45, '1936': 1121, '2005': 7626, '1637': 1, '1912': 1739, '1722': 5, '1868': 1292, '1850': 1577, '1897': 1819, '1964': 3544, '1849': 1606, '1889': 1624, '1760': 19, '1963': 3641, '1825': 998, '1961': 2995, '1675': 4, '1761': 24, '1644': 4, '1992': 4511, '1923': 1164, '1861': 1457, '1910': 2073, '1803': 242, '1947': 1246, '1997': 4924, '1664': 3, '1716': 5, '1926': 942, '1821': 657, '2008': 17968, '1786': 68, '1727': 11, '1886': 1531, '1991': 4112, '1791': 111, '1818': 458, '1860': 1639, '1575': 1, '1742': 8, '1784': 24, '1710': 6, '1952': 1802, '1917': 1136, '1725': 10, '1781': 29, '1750': 40, '1975': 3682, '1726': 15, '1962': 3427, '1732': 12, '1908': 2107, '1930': 1204, '1890': 1786, '1845': 1466, '1853': 2192, '1822': 860, '1520': 1, '1744': 5, '1863': 1201, '1937': 975, '1921': 1086, '1563': 2, '1877': 1724, '1842': 1051, '1811': 424, '1765': 21, '1709': 4, '1985': 3988, '1754': 40, '1941': 807, '1678': 6, '1900': 2255, '1954': 1555, '1934': 1092, '1766': 41, '1728': 16, '1837': 851, '1876': 1614, '1956': 1999, '1919': 1083, '1949': 1385, '1929': 1138, '1875': 1939, '1779': 17, '1704': 1, '1796': 115, '1685': 2, '1901': 2087, '1978': 4057, '1703': 1, '1938': 1035, '1916': 975, '1824': 737, '1892': 1801, '1757': 22, '2002': 6302, '1995': 4719, '1885': 1799, '1888': 1599, '1882': 1837, '1749': 16, '1777': 15, '1859': 1545, '1686': 5, '1767': 31, '1870': 1507, '1814': 383, '1896': 1865, '1955': 1653, '1951': 1475, '1830': 927, '1925': 944, '1806': 251, '1721': 4, '1858': 1658, '1681': 3, '1946': 880, '1720': 3, '1851': 1603, '1984': 3968, '1763': 28, '2003': 7304, '1810': 341, '1696': 2, '1751': 17, '1673': 7, '1712': 1, '1983': 3610, '1723': 7, '1705': 2, '1898': 1852, '1943': 700, '1836': 1092, '1785': 37, '1932': 1034, '1689': 2, '1715': 8, '2004': 8495, '1972': 4904, '1873': 1454, '1621': 1, '1942': 765, '1953': 1422, '1879': 1744, '1993': 4807, '1812': 405, '1719': 1, '1805': 250, '1794': 73, '1977': 4072, '1823': 623, '1852': 1414, '1999': 5768, '1797': 78, '1960': 2888, '1748': 22, '1913': 1476, '1894': 1641, '1800': 164, '1866': 1721, '1883': 2329, '1808': 241, '1974': 4217, '1940': 938, '1764': 29, '1788': 100, '1816': 471, '1838': 1235, '1899': 2084, '1914': 1435, '1679': 2, '1630': 6, '1832': 861, '1969': 4923, '1793': 55, '1928': 1262, '1729': 15, '1976': 3808, '1867': 1322, '1948': 1191, '1931': 1085, '1855': 1731, '2000': 6228, '1730': 29, '1692': 3, '1758': 34, '1990': 4323, '1701': 3, '1920': 1295, '1987': 4423, '1979': 3810, '1582': 2, '1831': 1019, '1790': 85, '1988': 4484, '1907': 2085}
aeA_ADP {'1984': 2, '1973': 1, '2000': 1, '1982': 7, '1992': 4, '2008': 1, '2005': 3, '1967': 2, '1989': 4, '2003': 1, '1958': 1, '2001': 1, '1998': 1, '1997': 1, '1990': 1, '1994': 5, '1987': 10, '1977': 1, '2004': 2, '1981': 1, '2002': 1, '1988': 4, '1995': 2, '2007': 1, '1991': 1}
aflections {'1789': 1, '1793': 1, '1763': 1, '1701': 1, '1773': 1, '1787': 1, '1777': 2, '1805': 2, '1792': 2, '1804': 4, '1803': 7, '1785': 2, '1799': 2, '1770': 1, '1778': 1, '1801': 7, '1794': 1, '1806': 2, '1800': 6, '1791': 3, '1786': 1, '1727': 1, '1790': 1, '1798': 2}
acac_NOUN {'1984': 9, '1931': 1, '2003': 12, '1982': 5, '1860': 3, '1965': 1, '1827': 3, '1959': 1, '2005': 26, '1993': 10, '1962': 1, '1983': 15, '1975': 12, '1898': 1, '1902': 2, '1836': 1, '1892': 6, '1887': 1, '1899': 1, '1840': 3, '1891': 6, '1908': 13, '1900': 1, '1930': 3, '1890': 7, '2004': 14, '1942': 2, '1863': 1, '1986': 18, '1822': 1, '1973': 63, '1842': 2, '1990': 21, '1963': 1, '1811': 1, '1839': 1, '1792': 1, '1804': 1, '1966': 2, '1989': 4, '1941': 1, '1924': 1, '1958': 1, '1880': 3, '1884': 2, '1909': 1, '1994': 21, '1934': 4, '1980': 4, '1971': 10, '1938': 2, '1977': 11, '1969': 4, '1967': 7, '1919': 6, '1949': 1, '1929': 1, '1913': 4, '1870': 1, '1972': 33, '1881': 2, '1936': 1, '1901': 1, '1978': 1, '1883': 1, '1974': 12, '1940': 1, '1874': 1, '1976': 1, '1987': 11, '1746': 1, '1964': 1, '1838': 2, '1889': 1, '1914': 1, '1988': 2, '2002': 13, '1985': 15, '1995': 35, '2007': 35, '1865': 4, '1970': 3, '1999': 17, '1961': 8, '2001': 26, '1882': 2, '1992': 33, '1948': 2, '1896': 4, '1968': 18, '1856': 1, '2000': 9, '1848': 2, '1923': 2, '1998': 14, '1997': 19, '1861': 4, '1996': 14, '1911': 3, '1815': 2, '1854': 1, '1832': 2, '1894': 1, '1979': 9, '1831': 1, '1886': 1, '2006': 24, '2008': 83, '1991': 14, '1855': 2, '1895': 1, '1907': 1, '1981': 8}
adolphii {'1958': 3, '2001': 3, '2003': 3, '1979': 3, '1992': 3, '1959': 4, '2008': 1, '1985': 2, '1989': 1, '1978': 3, '1975': 3, '1986': 3, '1993': 3, '1949': 3, '1974': 1, '1996': 1, '1994': 16, '1934': 2, '1977': 3, '1971': 1, '2004': 2, '2002': 2, '1956': 2, '1988': 2, '1980': 3, '1995': 4, '1981': 1}
affluence.3 {'1973': 2, '2000': 2, '1997': 1, '1972': 6, '1992': 2, '2008': 5, '2006': 5, '1968': 6, '1985': 2, '1983': 3, '1975': 1, '1986': 4, '1898': 2, '2001': 2, '1998': 6, '1974': 3, '1996': 3, '1994': 1, '1999': 1, '1987': 1, '1979': 1, '1971': 5, '1890': 2, '1858': 1, '2004': 1, '1970': 3, '2002': 2, '1988': 1, '1980': 5, '1995': 3, '2007': 2, '1969': 1, '1978': 2}
adulous_ADJ {'1996': 1, '1903': 2, '1980': 1, '2003': 3, '1867': 5, '1972': 1, '1968': 1, '1881': 9, '1977': 1, '1992': 2, '1904': 1, '1849': 6, '1932': 3, '2002': 1, '1967': 2, '1863': 2, '1970': 1}
acjds {'2003': 2, '1969': 1, '1972': 3, '1965': 1, '1952': 1, '1959': 1, '1936': 1, '1993': 1, '1996': 1, '1985': 2, '1983': 2, '1978': 1, '2001': 2, '1785': 1, '1974': 1, '1905': 1, '1856': 1, '1850': 1, '1758': 1, '1788': 1, '1997': 1, '1962': 1, '1908': 1, '1988': 1, '2004': 1, '1776': 1, '1976': 1, '1986': 1, '1995': 1, '2007': 1, '1822': 1, '1835': 1, '1903': 1, '1973': 1, '1842': 2, '1867': 1, '1953': 1, '1963': 1, '1811': 1, '1979': 1, '1948': 1, '1968': 1, '1966': 1, '2000': 2, '1999': 2, '1958': 1, '1991': 1, '1992': 2, '1900': 1, '1947': 1, '1795': 1, '1805': 1, '1801': 2, '1911': 1, '1954': 2, '1951': 2, '1920': 3, '1994': 2, '1977': 1, '1790': 1, '1852': 1, '1893': 1, '1888': 1, '1967': 1, '1946': 1, '1998': 3, '1929': 1, '1960': 1, '1981': 1, '1851': 2}
actionListener_NUM {'2005': 72, '2006': 10, '2004': 7, '2001': 4, '1999': 29, '2000': 36, '1997': 43, '2003': 1, '1998': 11, '2007': 2, '2002': 7}
accordoit_X {'1984': 2, '1834': 2, '2000': 2, '1982': 1, '1845': 5, '1972': 1, '1826': 1, '1971': 7, '1944': 1, '1901': 4, '1983': 1, '1978': 1, '1898': 9, '1857': 4, '1897': 1, '1974': 1, '1940': 1, '1939': 1, '1840': 1, '1891': 1, '1916': 2, '1824': 3, '1892': 1, '1930': 1, '1838': 2, '1899': 6, '2004': 3, '1802': 1, '1885': 1, '1823': 1, '1969': 1, '2001': 1, '1842': 1, '2008': 1, '1811': 4, '1992': 3, '1896': 1, '1966': 2, '1889': 2, '1941': 2, '1879': 2, '1993': 2, '1991': 3, '1880': 2, '1900': 4, '1814': 3, '1997': 1, '2006': 1, '1996': 2, '1994': 1, '1829': 1, '1854': 1, '1873': 1, '1927': 1, '1977': 1, '1957': 2, '1847': 2, '1843': 3, '1849': 1, '1858': 2, '1970': 3, '1797': 2, '1967': 2, '1949': 4, '1830': 2, '1907': 3, '1875': 3, '1935': 1}
abstrahat {'1984': 1, '1869': 3, '2000': 5, '1818': 1, '1982': 1, '2004': 4, '1903': 1, '1872': 2, '1952': 2, '1959': 6, '2005': 4, '1944': 1, '1725': 1, '1983': 5, '1975': 2, '1943': 1, '1890': 2, '1939': 2, '1905': 1, '1891': 2, '1997': 1, '1970': 3, '1853': 1, '1846': 2, '1942': 1, '1924': 1, '1873': 1, '1965': 2, '1973': 3, '1963': 2, '2006': 9, '1966': 1, '1989': 7, '1941': 3, '1986': 4, '1993': 1, '1871': 7, '1994': 8, '1937': 1, '1934': 2, '1977': 2, '1938': 3, '1852': 3, '1728': 1, '1901': 3, '1999': 1, '1956': 1, '1874': 1, '1980': 2, '1926': 1, '1969': 2, '1972': 3, '1950': 4, '1912': 1, '1974': 7, '1882': 1, '1957': 4, '1964': 5, '1951': 1, '1889': 1, '2002': 4, '1927': 3, '1985': 1, '1995': 5, '2007': 13, '1865': 1, '1922': 2, '1928': 4, '2001': 7, '1976': 2, '1992': 3, '1931': 1, '1968': 3, '1962': 1, '2003': 1, '1947': 2, '1990': 3, '1996': 1, '1854': 1, '1920': 1, '1987': 3, '1819': 2, '2008': 1, '1981': 1, '1855': 2, '1895': 1, '1991': 1, '1851': 4}
adaptableness {'1984': 1, '1869': 1, '2003': 3, '1982': 9, '1903': 1, '1872': 3, '1952': 2, '1959': 2, '1917': 12, '1904': 4, '1983': 1, '1898': 1, '1943': 1, '1902': 4, '1892': 11, '1887': 4, '1939': 7, '1891': 3, '1914': 4, '1930': 4, '1890': 8, '2004': 7, '1932': 10, '1924': 4, '1937': 2, '1921': 15, '1942': 2, '1877': 1, '1878': 2, '1965': 2, '1883': 1, '1963': 2, '2006': 7, '1966': 5, '1989': 1, '1935': 3, '1879': 3, '1986': 4, '1958': 1, '1915': 5, '1900': 6, '1871': 1, '2005': 2, '1909': 8, '1998': 2, '1994': 1, '1918': 9, '2007': 15, '1934': 1, '1977': 1, '1971': 4, '1938': 2, '1993': 3, '1893': 1, '1922': 4, '1956': 3, '1967': 4, '1919': 5, '1949': 2, '1929': 2, '1960': 1, '1875': 1, '1913': 7, '1870': 2, '1969': 2, '1972': 2, '1881': 1, '1936': 2, '1901': 2, '1978': 1, '2001': 1, '1912': 14, '1868': 1, '1940': 3, '1874': 2, '1916': 5, '1987': 1, '1964': 9, '1962': 3, '1908': 12, '1974': 4, '2002': 2, '1995': 2, '1885': 1, '1970': 3, '1999': 1, '1961': 6, '1928': 1, '1980': 4, '1976': 7, '1867': 2, '1992': 1, '1948': 4, '1931': 2, '1968': 2, '2000': 1, '1910': 5, '1923': 7, '1947': 3, '1997': 1, '1990': 4, '1911': 3, '1951': 3, '1920': 3, '1933': 4, '1925': 2, '1927': 15, '1979': 3, '1907': 5, '2008': 38, '1991': 2, '1988': 1, '1946': 1, '1886': 2, '1862': 1, '1941': 2}
adversity_ADJ {'1931': 14, '1718': 1, '1860': 5, '1838': 6, '1784': 1, '1872': 2, '1952': 8, '1959': 12, '1917': 2, '1958': 6, '1781': 1, '1975': 37, '1902': 3, '1799': 2, '1889': 6, '1905': 2, '1856': 4, '1767': 1, '1908': 8, '1820': 11, '1884': 6, '1930': 3, '1890': 5, '1845': 5, '1853': 6, '1861': 2, '1932': 6, '1863': 2, '1937': 7, '1921': 3, '1822': 3, '1835': 9, '1877': 5, '1903': 3, '1963': 14, '1811': 14, '1909': 4, '1864': 1, '1985': 40, '1966': 21, '1941': 1, '1880': 3, '1915': 3, '1900': 3, '1871': 4, '2005': 174, '1801': 2, '1954': 11, '2007': 254, '1934': 2, '1847': 3, '1938': 5, '1993': 86, '1837': 1, '1888': 3, '1956': 16, '1919': 8, '1949': 6, '1798': 1, '1830': 4, '1790': 1, '1972': 48, '1787': 1, '1796': 1, '1996': 84, '1950': 10, '1978': 38, '1916': 2, '1976': 28, '1957': 11, '1892': 8, '1841': 3, '1817': 6, '2002': 182, '1995': 84, '1885': 6, '1865': 2, '1922': 3, '1833': 5, '2001': 108, '1882': 3, '1939': 6, '1777': 1, '1859': 2, '1828': 5, '1809': 2, '1827': 5, '1967': 11, '1862': 4, '1948': 10, '1906': 4, '1929': 5, '1955': 8, '1911': 2, '1768': 2, '1815': 1, '1951': 1, '1933': 7, '1925': 8, '1927': 5, '1806': 1, '1819': 3, '1849': 2, '1858': 3, '1946': 10, '1895': 6, '1981': 39, '1851': 2, '1984': 56, '1869': 2, '2003': 136, '1810': 1, '1982': 31, '1807': 2, '2004': 204, '1968': 34, '1894': 5, '1944': 4, '1813': 2, '1983': 34, '1898': 3, '1943': 4, '1836': 7, '1785': 1, '1887': 4, '1840': 1, '1891': 2, '1945': 6, '1857': 3, '1846': 1, '1942': 5, '1986': 52, '1873': 7, '1843': 1, '1774': 1, '1878': 7, '1883': 1, '1844': 2, '1953': 7, '1748': 1, '1839': 12, '2006': 236, '1804': 6, '1989': 103, '1935': 14, '1879': 3, '1924': 17, '1904': 4, '1812': 4, '1805': 1, '1829': 2, '1998': 80, '1994': 56, '1818': 2, '1854': 11, '1977': 31, '1971': 35, '1823': 3, '1852': 3, '1901': 1, '1893': 5, '1999': 119, '1874': 11, '1980': 30, '1970': 10, '1960': 10, '1913': 1, '1834': 1, '1870': 2, '1826': 4, '1936': 2, '1866': 1, '1973': 49, '1912': 7, '1897': 8, '1808': 2, '1868': 5, '1940': 6, '1850': 3, '1816': 1, '1964': 7, '1821': 1, '1965': 87, '1899': 3, '1914': 9, '1974': 33, '1825': 7, '1832': 1, '1969': 25, '1987': 44, '1793': 1, '1961': 12, '1928': 3, '1761': 3, '1992': 69, '1923': 2, '1896': 4, '1988': 35, '1962': 17, '2000': 120, '1910': 9, '1876': 2, '1803': 1, '1947': 2, '1997': 112, '1990': 79, '1920': 2, '1824': 3, '1979': 31, '1800': 3, '1831': 2, '1886': 7, '2008': 306, '1855': 2, '1907': 2, '1991': 65}
acombination {'1984': 7, '2003': 36, '1982': 11, '1807': 2, '1755': 1, '1965': 3, '1959': 3, '2005': 78, '1830': 1, '1962': 1, '1983': 7, '1975': 6, '1836': 1, '1892': 1, '1887': 1, '1939': 2, '1840': 1, '1891': 2, '1908': 5, '1997': 21, '1890': 1, '1853': 1, '2004': 43, '1986': 12, '1835': 1, '1916': 1, '1842': 1, '1953': 1, '1963': 1, '1811': 1, '1987': 5, '1839': 1, '2006': 139, '1804': 2, '1966': 7, '1989': 9, '1941': 1, '1999': 10, '1904': 1, '1880': 1, '1915': 1, '1801': 1, '1829': 1, '1994': 28, '2007': 282, '1934': 1, '1980': 3, '1971': 5, '1993': 22, '1809': 2, '1950': 2, '1977': 3, '1833': 2, '1956': 1, '1967': 3, '1919': 1, '1998': 12, '1970': 1, '1929': 1, '1960': 2, '1913': 1, '1894': 5, '1972': 7, '1826': 1, '1936': 1, '1996': 24, '1866': 1, '1978': 6, '1897': 1, '1868': 1, '1940': 2, '1850': 1, '1976': 2, '1852': 1, '1964': 1, '1838': 1, '1899': 1, '1914': 1, '1841': 1, '1974': 9, '2002': 21, '1985': 6, '1893': 2, '1995': 16, '1885': 2, '1832': 1, '1969': 3, '1888': 1, '1793': 1, '1961': 2, '1928': 2, '2001': 25, '1882': 1, '1992': 10, '1948': 1, '1896': 1, '1968': 3, '2000': 28, '1910': 2, '1803': 1, '1870': 1, '1990': 8, '1955': 1, '1920': 1, '1933': 1, '1927': 1, '1979': 4, '1819': 1, '2008': 170, '1991': 11, '1988': 9, '1886': 1, '1981': 4}
acidhematoxylin {'1967': 5, '1982': 5, '1972': 1, '1965': 2, '1996': 2, '2005': 1, '1958': 2, '1978': 3, '1975': 7, '1943': 1, '1974': 2, '1987': 2, '1964': 1, '1970': 3, '1962': 5, '2004': 8, '1932': 1, '2002': 5, '1985': 2, '1986': 2, '1995': 2, '2007': 3, '1969': 4, '1999': 2, '1961': 3, '1973': 5, '1976': 1, '1953': 1, '1992': 4, '1968': 9, '1966': 4, '1989': 2, '2003': 1, '1993': 2, '1915': 1, '1947': 2, '1990': 12, '1955': 1, '2001': 4, '1994': 3, '1933': 2, '1957': 2, '1977': 2, '1971': 2, '1938': 1, '2008': 1, '1991': 1, '1956': 1, '1988': 2, '1980': 3, '1998': 5, '1960': 1, '1981': 1, '1983': 8}
adjacens_DET {'1939': 1, '1883': 1, '1960': 1, '1957': 2, '1820': 4, '1968': 1, '1951': 1, '1979': 2, '1847': 1, '1948': 3, '1931': 1, '1809': 1, '1901': 9, '1959': 1, '2003': 1, '1993': 1, '2001': 1, '1995': 1, '1871': 7, '1991': 2}
acaulay_NOUN {'1903': 1, '1872': 1, '1952': 2, '1917': 2, '1904': 5, '1962': 2, '1975': 1, '1943': 1, '1902': 2, '1892': 2, '1887': 1, '1899': 1, '1905': 1, '1891': 2, '1884': 1, '1930': 2, '1890': 4, '1853': 2, '2004': 3, '1942': 1, '1924': 1, '1877': 1, '1878': 1, '1883': 1, '1990': 1, '1953': 1, '1963': 1, '1996': 1, '1989': 1, '1958': 2, '1880': 3, '1915': 1, '1900': 1, '1871': 3, '2005': 1, '1909': 2, '1954': 3, '1944': 2, '1918': 5, '1934': 1, '1980': 1, '1938': 3, '1852': 1, '1950': 14, '1893': 1, '1970': 2, '1956': 2, '1967': 1, '1949': 1, '1960': 4, '1875': 2, '1913': 1, '1894': 2, '1936': 8, '1866': 1, '1978': 1, '1912': 4, '1868': 3, '1940': 1, '1916': 2, '1882': 1, '1957': 1, '1964': 2, '1867': 2, '1889': 1, '1914': 2, '1974': 1, '2002': 3, '1985': 2, '1995': 1, '2007': 1, '1865': 1, '1969': 2, '1888': 1, '1961': 1, '1928': 2, '1976': 3, '1939': 1, '1992': 2, '1923': 1, '1861': 1, '1968': 2, '2003': 1, '1876': 2, '1848': 1, '1870': 5, '1906': 1, '1896': 1, '1955': 1, '1994': 4, '1925': 2, '1987': 1, '1998': 1, '2008': 14, '1855': 1, '1946': 2, '1895': 1, '1907': 1, '1991': 3}
adaot {'1869': 3, '1982': 2, '1953': 1, '1972': 1, '2008': 2, '1985': 1, '1952': 2, '1948': 3, '1968': 1, '1979': 1, '1725': 1, '1941': 1, '1975': 1, '1986': 2, '1958': 2, '1973': 1, '1936': 2, '1897': 1, '1947': 2, '1999': 3, '1981': 2, '1978': 1, '1957': 2, '1920': 1, '1964': 1, '1977': 3, '1971': 3, '1962': 2, '1950': 1, '2004': 2, '1969': 2, '1967': 1, '1980': 1, '1970': 1, '1942': 1}
adviaing {'1984': 1, '2001': 2, '1844': 1, '1976': 1, '1953': 1, '1963': 1, '1965': 2, '1979': 1, '1948': 1, '1931': 1, '1904': 1, '1966': 1, '1989': 1, '1983': 1, '1986': 1, '1910': 1, '1958': 2, '1841': 1, '2005': 1, '1951': 2, '1987': 2, '1977': 2, '1938': 1, '1988': 2, '2004': 1, '1932': 1, '1985': 2, '1919': 1, '1995': 1, '1830': 1, '1960': 1, '1969': 1, '1999': 1}
admeasurer {'1984': 1, '1869': 1, '1969': 2, '1972': 3, '1826': 1, '1959': 2, '1936': 1, '1908': 3, '1944': 3, '1950': 3, '2005': 5, '2004': 5, '1898': 1, '2001': 4, '1892': 4, '1808': 1, '1939': 1, '1850': 1, '1957': 2, '1997': 1, '2006': 13, '1962': 8, '1914': 2, '1846': 1, '1987': 2, '2002': 1, '1985': 2, '1986': 1, '1995': 1, '2007': 1, '1832': 3, '1922': 1, '1835': 4, '1878': 1, '1973': 2, '1976': 3, '1867': 1, '1963': 5, '1865': 1, '1992': 3, '1931': 4, '1968': 1, '1966': 3, '1941': 2, '2003': 3, '1999': 3, '1904': 9, '1848': 1, '1900': 1, '1998': 4, '1861': 2, '1909': 2, '1981': 3, '1854': 3, '1920': 2, '1927': 20, '1977': 2, '1847': 1, '1938': 4, '1993': 3, '1849': 1, '2008': 3, '1893': 4, '1833': 2, '1956': 4, '1988': 4, '1980': 1, '1949': 3, '1960': 2, '1979': 1, '1851': 13}
administration.35_NOUN {'1984': 8, '1930': 1, '2003': 19, '1982': 14, '1972': 3, '1965': 13, '1941': 2, '2005': 17, '1944': 2, '1996': 20, '1950': 2, '1983': 9, '1978': 20, '1975': 10, '1943': 5, '1974': 6, '1940': 2, '1939': 1, '1957': 4, '1964': 6, '2006': 26, '1962': 1, '1945': 1, '1988': 11, '2004': 23, '1932': 4, '2002': 33, '1985': 14, '1986': 15, '1995': 9, '1937': 3, '1970': 5, '1987': 12, '1961': 2, '1973': 3, '1976': 7, '1953': 2, '1963': 4, '1979': 10, '1948': 2, '1931': 2, '1968': 10, '1966': 5, '1989': 19, '1935': 9, '2000': 19, '1999': 22, '1958': 8, '1991': 14, '1992': 23, '1841': 3, '1998': 27, '1997': 14, '1990': 15, '1955': 1, '1994': 19, '2001': 12, '1954': 3, '1951': 6, '2007': 22, '1934': 1, '1977': 17, '1971': 9, '1993': 18, '2008': 22, '1969': 8, '1956': 4, '1967': 3, '1980': 9, '1949': 1, '1929': 1, '1960': 8, '1981': 14, '1851': 2}
adbered {'1980': 1, '1826': 1, '1869': 1, '1810': 1, '1883': 1, '1891': 1, '1784': 1, '1872': 1, '2004': 2, '2008': 3, '1792': 1, '1968': 1, '1866': 1, '2000': 1, '1910': 2, '1876': 1, '1803': 1, '1902': 1, '1892': 1, '1814': 1, '1906': 1, '1856': 1, '2001': 3, '1976': 1, '1919': 1, '1820': 1, '1900': 1, '1977': 1, '1843': 1, '1889': 1, '1852': 1, '1858': 2, '1881': 2, '1999': 1, '2002': 4, '1863': 2, '1998': 4, '1832': 1, '1835': 1}
acusticus_PRON {'1984': 4, '1913': 2, '1930': 4, '2003': 4, '1982': 4, '1903': 3, '1952': 3, '1959': 1, '1936': 1, '1993': 2, '1950': 1, '1978': 3, '1975': 1, '2001': 11, '1902': 4, '1974': 1, '1940': 5, '1957': 1, '1964': 1, '1890': 1, '1914': 1, '2004': 3, '1942': 3, '2002': 5, '1985': 1, '1986': 5, '2007': 1, '1970': 3, '1999': 4, '1961': 2, '1973': 1, '1976': 1, '2008': 1, '1963': 3, '1907': 1, '1987': 2, '1923': 3, '2006': 3, '1988': 1, '1966': 1, '1989': 2, '1941': 2, '2000': 9, '1958': 3, '1991': 2, '1992': 4, '1997': 3, '1996': 3, '1954': 19, '1994': 3, '1933': 3, '1925': 5, '1927': 7, '1979': 3, '1971': 2, '1938': 1, '1901': 2, '1893': 1, '1969': 4, '1956': 4, '1967': 1, '1949': 1, '1960': 1, '1981': 2, '1983': 7}
abstain_VERB {'1791': 273, '1984': 7529, '1931': 2935, '1767': 113, '1860': 3616, '1755': 156, '1742': 74, '1784': 139, '1872': 3079, '1952': 3530, '1959': 4339, '1917': 3002, '1958': 4377, '1781': 114, '1750': 96, '1975': 7184, '1902': 4214, '1746': 32, '1799': 262, '1957': 4030, '1889': 3485, '1905': 4726, '1732': 144, '1933': 2020, '1818': 1366, '1780': 150, '1820': 1701, '1900': 4848, '1930': 3191, '1890': 3512, '1845': 3425, '1853': 4828, '1756': 56, '1776': 86, '1744': 84, '1863': 3044, '1937': 2661, '1741': 47, '1822': 2349, '1762': 49, '1877': 4014, '1903': 4273, '1842': 2538, '1752': 140, '1811': 1325, '1765': 99, '1909': 4242, '1864': 2727, '1792': 331, '1747': 79, '1966': 7779, '1754': 118, '1941': 1912, '1999': 14678, '1880': 4190, '1841': 2929, '1884': 4324, '1871': 3647, '1926': 2759, '1955': 3518, '1801': 501, '1954': 3094, '2007': 25366, '1934': 2511, '1737': 159, '1847': 3009, '1938': 2612, '1772': 129, '1837': 2123, '1888': 3581, '1956': 3838, '1783': 170, '1949': 3256, '1798': 222, '1830': 2253, '1921': 2846, '1875': 4136, '1779': 92, '1739': 89, '1911': 3854, '1948': 3328, '1773': 112, '1787': 206, '1881': 3672, '1796': 253, '1996': 12873, '1901': 4831, '1766': 129, '2005': 20452, '1745': 45, '2001': 15594, '1914': 3742, '1916': 3397, '1758': 106, '1852': 3313, '1973': 7762, '1735': 47, '1740': 97, '1736': 60, '1775': 101, '1757': 84, '1817': 1352, '2002': 16202, '1976': 6691, '1802': 584, '1885': 4178, '1865': 2951, '1922': 3421, '1833': 2276, '1743': 48, '1882': 3840, '1939': 2703, '1777': 132, '1970': 8742, '1859': 3494, '1828': 2404, '1827': 1846, '1874': 3689, '1856': 3807, '1769': 93, '1862': 2484, '1848': 3390, '1870': 3390, '1814': 917, '1771': 95, '1861': 2919, '1778': 75, '1768': 126, '1815': 854, '1854': 4272, '1929': 3053, '1925': 2577, '1927': 3679, '1806': 619, '1819': 995, '1849': 3120, '1858': 3400, '1946': 2318, '1895': 3886, '1981': 6933, '1851': 3693, '1789': 222, '1967': 7864, '1763': 133, '1869': 3051, '2003': 20648, '1810': 1006, '1982': 7145, '1807': 887, '2004': 22107, '1968': 8816, '1751': 68, '1894': 3463, '1944': 1572, '1813': 855, '1983': 7179, '1898': 4299, '1943': 1622, '1836': 2556, '1892': 3939, '1887': 3730, '1770': 114, '1840': 3192, '1891': 4120, '1785': 109, '1945': 1962, '1857': 3355, '1906': 4889, '1915': 3183, '1846': 2885, '1907': 4545, '1942': 1860, '1734': 48, '1972': 8153, '1738': 96, '1986': 8220, '1873': 3002, '1823': 1589, '1774': 186, '1993': 10215, '1878': 3600, '1883': 4980, '1844': 3146, '1953': 3125, '1838': 2545, '1748': 121, '1839': 3678, '2006': 25463, '1804': 570, '1989': 9413, '1935': 2516, '1879': 3526, '1924': 2588, '1904': 4660, '1812': 1062, '1805': 610, '1829': 2151, '1998': 13350, '1994': 11283, '1918': 2294, '1794': 273, '1951': 3137, '1977': 7393, '1971': 7517, '1843': 3269, '1809': 929, '1950': 3413, '1893': 3571, '1753': 111, '1797': 212, '1795': 291, '1980': 6840, '1995': 11296, '1835': 2485, '1960': 5145, '1978': 7128, '1759': 119, '1913': 3844, '1834': 2147, '1731': 95, '1826': 1950, '1782': 132, '1936': 2522, '1866': 3224, '1932': 2700, '1912': 4066, '1897': 3724, '1808': 593, '1868': 3017, '1940': 2399, '1850': 3472, '1764': 100, '1919': 2733, '1788': 245, '1816': 1134, '1964': 6259, '1821': 1346, '1965': 7545, '1899': 4834, '1908': 4538, '1760': 88, '1974': 7313, '1963': 6408, '1825': 2223, '1832': 2162, '1969': 8378, '1987': 8372, '1793': 277, '1961': 5467, '1928': 3088, '1761': 113, '1867': 2843, '1749': 65, '1992': 9708, '1923': 3064, '1896': 4313, '1988': 8956, '1962': 5939, '2000': 15525, '1910': 4538, '1876': 3767, '1803': 569, '1947': 2895, '1997': 12602, '1990': 9893, '1733': 69, '1985': 7871, '1920': 3410, '1824': 1807, '1979': 7357, '1800': 380, '1831': 2292, '1790': 220, '2008': 42804, '1786': 150, '1855': 3983, '1886': 3233, '1991': 9270}
acmd_NOUN {'1834': 1, '1870': 1, '1972': 1, '1872': 1, '2005': 1, '1901': 1, '1897': 1, '1999': 25, '1891': 1, '1850': 1, '1857': 1, '1821': 1, '1871': 2, '1906': 3, '1889': 2, '1853': 2, '2008': 5, '1861': 1, '1985': 1, '1986': 1, '1827': 1, '1873': 1, '1865': 2, '1835': 2, '1878': 2, '1867': 1, '1992': 1, '1864': 1, '1931': 2, '1966': 1, '1856': 1, '1828': 1, '1879': 1, '1863': 1, '1993': 1, '1812': 1, '1841': 1, '1814': 1, '1896': 1, '1994': 2, '1920': 1, '1894': 1, '1819': 1, '1809': 1, '1837': 1, '1888': 1, '1998': 8, '1991': 2}
addidicit {'1834': 4, '1844': 3, '1842': 2, '1996': 3, '1859': 2, '1931': 1, '1804': 4, '1837': 4, '2005': 1, '1978': 2, '2003': 3, '1726': 2, '1848': 3, '1841': 4, '1940': 1, '1990': 3, '1840': 2, '1836': 1, '1829': 1, '1999': 2, '1977': 1, '1971': 1, '1889': 1, '1846': 1, '2004': 3, '1888': 1, '2002': 1, '1855': 1, '1995': 1, '1823': 3, '1969': 2, '1983': 1}
aependent_ADJ {'1984': 3, '1973': 1, '1976': 4, '1982': 2, '1972': 2, '1952': 1, '2008': 1, '1931': 1, '1988': 2, '1979': 1, '1989': 4, '1978': 1, '2000': 1, '1910': 1, '1991': 1, '1947': 1, '2005': 1, '1996': 1, '1994': 1, '1954': 1, '1987': 3, '1930': 1, '1977': 1, '1938': 2, '2004': 2, '1969': 1, '2002': 1, '1985': 1, '1986': 2, '1998': 2, '2007': 1, '1960': 1, '1981': 4, '1999': 2}
act.50_ADP {'1984': 3, '1934': 1, '2001': 1, '1982': 2, '1963': 1, '1979': 1, '1959': 1, '1952': 1, '2005': 6, '1968': 1, '1989': 2, '1983': 3, '2000': 6, '2008': 5, '1991': 2, '1992': 1, '1990': 4, '1998': 6, '1974': 1, '1997': 1, '1939': 2, '1996': 1, '1994': 3, '1964': 5, '1980': 2, '1971': 1, '1938': 1, '2006': 3, '1914': 5, '2004': 3, '1922': 2, '2002': 2, '1956': 1, '1988': 1, '1924': 1, '1995': 3, '2007': 4, '1960': 1, '1981': 2, '1999': 3}
adoptmg_DET {'1913': 1, '1845': 1, '1972': 1, '1965': 2, '2005': 53, '1813': 1, '1898': 1, '1836': 2, '1974': 1, '1889': 1, '1891': 1, '1850': 1, '1987': 1, '1820': 1, '1962': 1, '2004': 2, '2002': 2, '1885': 1, '1865': 1, '1877': 1, '1881': 1, '2001': 3, '1844': 2, '1859': 1, '1992': 2, '1968': 2, '2000': 1, '1904': 1, '1880': 1, '1841': 1, '1900': 1, '1990': 1, '1996': 2, '2007': 3, '1806': 1, '1852': 1, '1849': 1, '1817': 2, '1999': 2, '1980': 2, '1998': 1, '1830': 1, '1907': 2, '1851': 1}
aerophare {'1984': 2, '1961': 13, '2001': 1, '1982': 1, '1977': 4, '1965': 2, '1952': 10, '1959': 3, '1988': 1, '1966': 5, '1950': 11, '1978': 2, '1991': 1, '1997': 3, '1955': 30, '1994': 2, '1951': 14, '1964': 13, '1980': 1, '1960': 2, '1962': 2, '1945': 3, '1969': 2, '1985': 1, '1949': 1, '1957': 13, '1970': 4, '1999': 3}
activemindedness_NOUN {'1962': 2, '1928': 5, '1894': 2, '1998': 1, '2008': 1, '1897': 3, '1903': 4, '1971': 1, '2007': 1, '1896': 2, '1901': 2, '1941': 1, '1967': 2, '1986': 2, '1902': 3, '1912': 3, '1937': 4, '1949': 1, '1991': 1}
acollective {'1984': 2, '2003': 15, '1982': 1, '1807': 1, '1972': 1, '1965': 2, '1872': 1, '1952': 1, '2005': 16, '1950': 2, '1978': 1, '1975': 1, '2001': 6, '1974': 1, '1987': 1, '1997': 7, '1962': 1, '1853': 2, '2004': 35, '1988': 8, '2002': 9, '1985': 1, '1986': 3, '1995': 7, '2007': 39, '1970': 1, '1999': 8, '1961': 1, '1980': 7, '1976': 2, '1992': 7, '2006': 21, '1968': 2, '1966': 1, '2000': 4, '1993': 5, '1812': 1, '1990': 5, '1996': 6, '1994': 4, '1920': 1, '1979': 1, '1971': 1, '2008': 29, '1977': 3, '1981': 3, '1967': 2, '1955': 1, '1998': 10, '1960': 1, '1991': 10}
afastadas_X {'1913': 2, '1973': 1, '1997': 2, '1972': 1, '1965': 1, '1992': 2, '1959': 1, '1948': 2, '2005': 2, '1944': 3, '1950': 1, '1989': 1, '1935': 1, '2003': 1, '1958': 2, '2008': 1, '1998': 1, '1974': 1, '2006': 1, '1996': 3, '1916': 1, '1954': 2, '1957': 1, '1930': 1, '1979': 1, '1971': 1, '2004': 4, '1969': 2, '2002': 3, '1995': 1, '1981': 2}
aetata_DET {'1984': 20, '2003': 11, '1964': 3, '1869': 2, '2000': 8, '1818': 1, '1982': 4, '1860': 1, '2004': 10, '1903': 1, '1959': 3, '2005': 9, '1944': 2, '1962': 5, '1983': 2, '1975': 2, '1898': 1, '1943': 1, '1892': 7, '1887': 2, '1939': 3, '1905': 1, '1856': 2, '1950': 1, '1820': 2, '1857': 2, '1906': 2, '2007': 12, '1945': 3, '1853': 1, '1846': 4, '1861': 1, '1932': 1, '1924': 2, '1937': 4, '1843': 1, '1822': 1, '1942': 1, '1877': 1, '1878': 2, '1965': 2, '1883': 5, '1844': 1, '1842': 1, '1990': 12, '1953': 7, '1963': 1, '1987': 19, '1839': 1, '2006': 15, '1985': 44, '1966': 7, '1989': 9, '1935': 2, '1879': 1, '1863': 2, '1904': 1, '1812': 1, '1880': 1, '1915': 3, '1900': 2, '1871': 1, '1909': 4, '2001': 12, '1954': 3, '1994': 10, '1918': 1, '1873': 1, '1968': 2, '1977': 3, '1971': 16, '1847': 1, '1938': 1, '1993': 10, '1809': 1, '1817': 1, '1893': 2, '1888': 2, '1874': 7, '1919': 3, '1949': 3, '1970': 3, '1929': 1, '1921': 1, '1875': 1, '1978': 8, '1958': 2, '1913': 2, '1894': 1, '1896': 2, '1969': 2, '1972': 2, '1881': 2, '1996': 12, '1901': 1, '1819': 1, '1973': 6, '1912': 1, '1974': 5, '1940': 1, '1916': 3, '1976': 2, '1957': 2, '1960': 2, '1821': 2, '1899': 1, '1914': 1, '1841': 2, '2002': 12, '1825': 1, '1995': 15, '1885': 3, '1922': 4, '1999': 24, '1988': 12, '1961': 2, '1928': 5, '1980': 3, '1882': 3, '1992': 29, '1828': 1, '1923': 1, '1931': 2, '1967': 3, '1891': 1, '1986': 3, '1910': 2, '1876': 3, '1948': 1, '1814': 3, '1997': 14, '1827': 3, '1955': 4, '1911': 2, '1854': 1, '1920': 7, '1933': 1, '1925': 2, '1926': 1, '1979': 6, '1831': 1, '1886': 1, '1998': 5, '2008': 44, '1991': 34, '1855': 1, '1946': 1, '1895': 2, '1907': 2, '1981': 2, '1941': 2}
accoidingto {'2003': 1, '1825': 2, '1883': 1, '1844': 1, '1810': 2, '1977': 1, '1903': 1, '1979': 1, '1792': 1, '1804': 1, '1901': 1, '1978': 1, '1975': 3, '1812': 1, '1904': 1, '1848': 2, '1880': 1, '1999': 1, '1770': 1, '1805': 2, '2001': 2, '1852': 2, '1973': 1, '1994': 1, '1838': 1, '1971': 1, '1831': 1, '1809': 1, '1988': 1, '2004': 1, '1706': 1, '1833': 1, '1874': 1, '1986': 2, '2007': 2, '1981': 1, '1798': 1}
affirmation_NUM {'1984': 20, '1913': 2, '2003': 50, '1810': 1, '1982': 3, '1860': 1, '1972': 8, '1965': 6, '1959': 4, '2008': 47, '2005': 72, '1876': 1, '1996': 46, '1901': 1, '1978': 5, '1975': 4, '2001': 73, '1977': 5, '1897': 1, '1887': 1, '1974': 1, '1940': 1, '1889': 1, '1905': 1, '1987': 8, '1964': 2, '1970': 11, '1962': 1, '1945': 1, '1988': 18, '2004': 61, '1932': 4, '2002': 40, '1985': 24, '1986': 6, '1995': 36, '2007': 106, '1823': 1, '1969': 3, '1999': 32, '1961': 7, '1980': 20, '1881': 1, '1973': 8, '1976': 16, '1867': 1, '1953': 1, '1963': 5, '1811': 1, '1979': 9, '1992': 22, '2006': 66, '1968': 5, '1966': 1, '1989': 22, '2000': 53, '1958': 4, '1991': 34, '1886': 1, '1998': 44, '1997': 33, '1990': 30, '1909': 2, '1994': 48, '1954': 1, '1951': 4, '1925': 2, '1934': 1, '1806': 2, '1971': 11, '1938': 2, '1993': 50, '1849': 1, '1866': 1, '1893': 1, '1888': 1, '1956': 6, '1967': 7, '1946': 1, '1949': 3, '1960': 2, '1981': 14, '1983': 15}
acker_VERB {'1984': 6, '2003': 8, '1982': 9, '1860': 1, '1965': 5, '1775': 1, '1952': 2, '1959': 1, '1917': 1, '1944': 1, '1983': 1, '1975': 4, '1943': 1, '1902': 1, '1890': 1, '1892': 2, '1932': 3, '1872': 1, '1905': 1, '1930': 2, '1906': 1, '2004': 1, '1861': 1, '1942': 2, '1986': 10, '1835': 1, '1877': 1, '1973': 5, '1953': 5, '1963': 2, '1702': 1, '2006': 7, '1966': 6, '1989': 4, '1941': 1, '1958': 1, '2005': 3, '1954': 5, '1994': 5, '1980': 3, '1971': 8, '1847': 2, '1993': 2, '1950': 1, '1977': 8, '1970': 2, '1956': 3, '1967': 8, '1949': 3, '1960': 4, '1875': 2, '1972': 2, '1881': 1, '1936': 3, '1981': 7, '1866': 2, '1978': 10, '1912': 1, '1974': 4, '1916': 1, '1957': 1, '1964': 2, '1962': 2, '1914': 1, '2002': 2, '1985': 5, '1893': 1, '1995': 9, '2007': 9, '1969': 2, '1999': 1, '1961': 4, '1928': 1, '2001': 5, '1976': 4, '1867': 3, '1859': 1, '1948': 1, '1931': 6, '1968': 1, '2000': 14, '1910': 3, '1992': 6, '1947': 4, '1997': 9, '1990': 5, '1996': 7, '1951': 2, '1933': 1, '1987': 3, '1979': 9, '1819': 1, '1998': 11, '2008': 8, '1991': 6, '1988': 5, '1946': 1, '1895': 1, '1907': 1, '1862': 1}
aeruginosa1 {'1984': 3, '1973': 1, '1976': 4, '1997': 9, '1977': 3, '1965': 1, '1992': 1, '1948': 1, '2006': 2, '1989': 1, '1978': 1, '2003': 2, '1958': 1, '1943': 1, '1998': 6, '1974': 1, '1990': 2, '1996': 1, '1994': 1, '1987': 2, '1964': 1, '1980': 2, '1971': 1, '2004': 2, '1999': 2, '1985': 2, '1949': 2, '1991': 3, '1983': 2}
adrip_DET {'1931': 1, '1768': 1, '1937': 1, '1926': 1, '1948': 1, '1917': 1, '1908': 1, '2007': 1, '2005': 1, '1988': 1, '2002': 1, '1910': 4, '1904': 2, '2008': 10, '1915': 2, '1897': 8, '1906': 2, '1922': 1}
advice.0 {'1877': 1, '1961': 1, '1928': 1, '1965': 3, '1883': 3, '1976': 1, '1867': 1, '1811': 1, '1903': 1, '1864': 1, '1931': 2, '1968': 2, '1966': 1, '1959': 1, '1879': 1, '1982': 3, '1880': 2, '1841': 1, '1871': 1, '1974': 1, '1861': 2, '1856': 4, '1981': 2, '1854': 1, '1857': 1, '1980': 1, '1971': 3, '1970': 1, '1993': 1, '1988': 1, '1858': 1, '1969': 1, '2002': 1, '1855': 3, '1986': 2, '1995': 2, '1823': 1, '1875': 1, '1983': 1}
abstinuere {'1877': 8, '1759': 1, '1878': 2, '1834': 3, '1726': 1, '1863': 1, '1961': 2, '1755': 1, '1965': 3, '1765': 1, '1987': 2, '1996': 2, '2008': 4, '1896': 1, '1944': 3, '1983': 2, '1924': 3, '1812': 3, '1943': 1, '1912': 1, '1884': 1, '1799': 2, '1997': 1, '2005': 3, '1805': 1, '2001': 2, '1854': 3, '1973': 1, '1933': 1, '1946': 1, '1979': 1, '1971': 1, '2004': 3, '1981': 2, '2002': 1, '1874': 1, '1919': 1, '2007': 4, '1957': 1, '1969': 1, '1935': 2}
acceleratively {'1791': 1, '2003': 2, '1964': 3, '2000': 4, '1982': 4, '1972': 4, '1965': 1, '1952': 1, '1996': 10, '1936': 4, '1917': 12, '1993': 3, '1950': 4, '2005': 2, '1978': 13, '1975': 3, '1943': 2, '1892': 1, '1974': 3, '1999': 5, '1916': 1, '1957': 3, '1930': 2, '1871': 1, '1962': 4, '1914': 5, '1988': 1, '2004': 3, '1932': 4, '2002': 2, '1985': 3, '1924': 6, '1995': 3, '2007': 5, '1970': 3, '1987': 2, '1961': 3, '1973': 1, '1963': 4, '1979': 9, '1948': 1, '1931': 28, '1968': 1, '1989': 4, '1879': 1, '1986': 5, '1958': 4, '1992': 5, '1915': 2, '1906': 4, '1997': 21, '1990': 2, '1955': 6, '1994': 1, '2001': 7, '1954': 3, '1951': 1, '1920': 22, '1933': 11, '1925': 7, '1934': 2, '1977': 17, '1971': 1, '1938': 1, '2006': 1, '1998': 3, '2008': 9, '1969': 2, '1967': 1, '1919': 6, '1949': 1, '1929': 3, '1960': 9, '1991': 3, '1983': 2}
aduentures_NOUN {'1818': 9, '1860': 6, '1903': 24, '1952': 4, '1959': 11, '1917': 6, '1993': 8, '1781': 1, '1902': 10, '1899': 7, '1905': 1, '1856': 3, '1908': 8, '1820': 8, '1900': 5, '1930': 34, '1890': 7, '1845': 7, '1853': 8, '1776': 3, '1924': 8, '1937': 6, '1877': 1, '1965': 25, '1963': 40, '1909': 21, '1966': 31, '1941': 2, '1880': 8, '1915': 2, '1884': 56, '1871': 1, '2005': 33, '1801': 2, '1954': 6, '1944': 1, '1885': 7, '1934': 27, '1847': 1, '1938': 20, '1888': 20, '1956': 4, '1998': 13, '1929': 13, '1980': 9, '1881': 2, '1922': 2, '1950': 15, '1978': 10, '1916': 5, '1957': 44, '1598': 1, '1740': 1, '2002': 8, '1995': 12, '2007': 67, '1865': 5, '1970': 17, '1798': 1, '2001': 12, '1949': 141, '1882': 12, '1939': 6, '1859': 1, '1968': 13, '1769': 2, '1848': 8, '1870': 1, '1814': 2, '1931': 14, '1996': 23, '1911': 8, '1815': 2, '1951': 11, '1933': 10, '1925': 3, '1927': 6, '1819': 20, '1849': 5, '1946': 6, '1895': 6, '1981': 15, '1851': 3, '1984': 5, '1869': 19, '2000': 10, '1982': 8, '1807': 7, '1579': 12, '1894': 2, '1619': 1, '1813': 9, '1983': 6, '1898': 8, '1943': 1, '1836': 1, '1892': 1, '1887': 9, '1840': 3, '1891': 1, '1629': 13, '1906': 8, '2004': 44, '1942': 11, '1972': 12, '1986': 9, '1873': 2, '1843': 8, '1932': 60, '1883': 11, '1955': 2, '1839': 7, '2006': 49, '1989': 12, '1935': 48, '1879': 2, '1904': 6, '1812': 8, '1805': 1, '1994': 16, '1918': 2, '1854': 13, '1977': 13, '1971': 20, '1809': 3, '1901': 3, '1893': 5, '1999': 29, '1967': 25, '1960': 12, '1958': 16, '1913': 2, '1834': 8, '1731': 1, '1936': 16, '1589': 2, '1973': 16, '1912': 5, '1868': 5, '1940': 6, '1788': 1, '1816': 1, '1964': 23, '1889': 12, '1914': 2, '1974': 21, '1985': 28, '1630': 2, '1832': 1, '1969': 17, '1987': 8, '1961': 18, '1928': 25, '1976': 4, '1992': 2, '1948': 4, '1896': 1, '1962': 10, '2003': 67, '1910': 13, '1876': 2, '1947': 5, '1997': 11, '1990': 14, '1920': 3, '1926': 35, '1979': 13, '1907': 10, '2008': 98, '1988': 11, '1886': 7, '1991': 13}
acid.44 {'1984': 5, '2003': 6, '1982': 1, '1972': 2, '1965': 1, '1952': 4, '1959': 3, '1936': 3, '2005': 7, '1944': 2, '1996': 9, '1950': 3, '1983': 1, '2001': 9, '1974': 4, '1987': 5, '1964': 5, '1962': 1, '1945': 6, '2004': 2, '2002': 6, '1985': 3, '1986': 5, '1995': 3, '1937': 1, '1970': 1, '1999': 1, '1961': 1, '1928': 1, '1973': 4, '1976': 4, '1953': 1, '1979': 3, '1948': 4, '2006': 6, '1989': 5, '1941': 2, '2000': 6, '1924': 2, '1958': 9, '1992': 1, '1947': 2, '1997': 5, '1990': 7, '1955': 3, '1994': 3, '1954': 11, '1951': 2, '1918': 3, '2007': 7, '1927': 3, '1980': 6, '1971': 1, '1938': 1, '1993': 5, '1998': 2, '2008': 2, '1977': 3, '1991': 2, '1988': 2, '1949': 5, '1960': 1, '1981': 2, '1978': 4}
affec'ed {'1988': 1, '1913': 1, '1857': 1, '1818': 2, '1867': 1, '1972': 1, '1796': 1, '1979': 2, '1959': 1, '1968': 2, '1966': 2, '1901': 1, '1983': 1, '1935': 1, '1812': 1, '1998': 2, '1974': 1, '1994': 2, '1829': 1, '1985': 1, '1991': 1, '1964': 2, '1977': 1, '1971': 2, '1831': 1, '1849': 1, '1875': 1, '2002': 1, '1967': 1, '1986': 2, '1995': 1, '1895': 1, '1981': 3, '1969': 1, '1851': 1}
adipt {'1984': 1, '1964': 1, '1982': 3, '1972': 1, '1959': 1, '1730': 1, '1978': 1, '1975': 1, '1899': 1, '1905': 1, '1856': 1, '1976': 1, '1987': 1, '1820': 1, '1997': 3, '1890': 1, '1962': 1, '1908': 1, '1853': 1, '1825': 1, '1986': 2, '1873': 2, '2001': 2, '1844': 1, '1882': 1, '1859': 1, '1839': 1, '1923': 1, '1931': 2, '2000': 1, '1993': 1, '1992': 2, '1947': 1, '1792': 1, '1981': 1, '1994': 1, '1920': 1, '1806': 1, '1907': 1, '2008': 1, '1977': 1, '1999': 1, '1956': 1, '1949': 1, '1886': 1, '1991': 1}
abstinentes_X {'1834': 1, '1911': 2, '1982': 2, '1972': 1, '1903': 2, '2005': 2, '1898': 2, '1836': 2, '1897': 1, '1887': 6, '1912': 2, '1850': 1, '1987': 1, '1892': 4, '1947': 1, '1914': 1, '2004': 2, '1843': 3, '2002': 1, '1986': 1, '1995': 1, '2007': 2, '1823': 1, '1970': 1, '1932': 1, '1928': 1, '1844': 1, '1798': 2, '1839': 1, '1967': 3, '1966': 1, '1989': 1, '1969': 2, '2003': 4, '1993': 2, '1848': 1, '1880': 3, '1915': 1, '1871': 1, '1996': 2, '1829': 1, '1815': 1, '1968': 1, '1933': 1, '1831': 1, '1832': 2, '2008': 1, '1833': 3, '1988': 1, '1998': 2, '1835': 1, '1830': 1, '1886': 1, '1991': 1}
adaras {'1793': 1, '1961': 1, '1883': 1, '1810': 1, '1997': 1, '1807': 1, '1838': 1, '1881': 2, '1979': 1, '1923': 1, '2005': 2, '1968': 1, '2003': 1, '1904': 1, '1973': 1, '1992': 1, '1936': 1, '1990': 2, '1996': 1, '1809': 1, '1821': 1, '1819': 3, '2006': 2, '1953': 2, '1728': 1, '2008': 2, '1713': 1, '1822': 1, '2002': 1, '1988': 2, '1980': 1, '1995': 5, '2007': 1, '1921': 3, '1969': 1, '1999': 1}
affrancare {'1967': 3, '1913': 2, '1964': 4, '2003': 32, '1997': 3, '1972': 6, '2005': 3, '1981': 1, '1978': 4, '1975': 1, '1898': 1, '2001': 1, '1987': 1, '1930': 1, '1970': 4, '1962': 4, '2004': 32, '1932': 2, '2002': 10, '1995': 1, '2007': 17, '1969': 1, '1928': 2, '1973': 6, '1976': 1, '1923': 8, '1931': 2, '1968': 1, '1966': 4, '1989': 2, '2000': 8, '1947': 2, '2006': 131, '1996': 2, '1994': 2, '1925': 6, '1927': 2, '1979': 1, '1971': 8, '2008': 6, '1999': 2, '1956': 3, '1988': 3, '1998': 1, '1991': 1, '1983': 1}
acceptando {'1834': 2, '1997': 3, '1860': 6, '1972': 6, '1968': 1, '1826': 2, '1928': 1, '2008': 3, '2005': 2, '1944': 3, '1978': 2, '1975': 3, '1812': 3, '1902': 1, '1868': 3, '1840': 10, '1891': 3, '1916': 4, '1957': 5, '1965': 4, '1962': 1, '1914': 1, '2004': 3, '2002': 3, '1927': 2, '1825': 2, '1924': 3, '1995': 1, '1873': 1, '1823': 1, '1969': 2, '1888': 4, '1877': 1, '1878': 1, '1903': 1, '2001': 1, '1867': 3, '1992': 4, '1987': 2, '1948': 4, '1861': 5, '1967': 1, '1966': 1, '1879': 1, '1986': 1, '1876': 1, '1848': 2, '1880': 3, '1870': 2, '1900': 8, '1871': 1, '1926': 4, '1827': 2, '1909': 1, '1994': 1, '1854': 1, '1999': 1, '2007': 3, '1925': 2, '1934': 1, '1977': 1, '1907': 2, '2006': 2, '1849': 1, '1858': 1, '1833': 1, '1956': 1, '1874': 1, '1919': 1, '1998': 4, '1895': 2, '1886': 2, '1983': 2}
acedaemonians_NOUN {'1984': 1, '1913': 1, '1834': 1, '1982': 1, '1996': 1, '1903': 2, '1872': 1, '1952': 1, '1936': 1, '1813': 1, '1975': 1, '1898': 1, '1902': 7, '1912': 1, '1892': 2, '1770': 1, '1840': 2, '1850': 3, '1897': 1, '1838': 2, '1814': 3, '1899': 3, '1853': 1, '1837': 1, '1932': 1, '1823': 1, '1922': 2, '1835': 1, '1973': 1, '1844': 1, '2008': 2, '1906': 1, '1846': 2, '1955': 1, '1839': 1, '1896': 1, '1804': 1, '1989': 1, '2004': 2, '1862': 1, '1904': 1, '1812': 2, '1870': 1, '1900': 1, '1947': 3, '1805': 1, '1911': 1, '1918': 4, '1927': 1, '1847': 2, '1809': 1, '1849': 1, '1901': 1, '1991': 1}
admixtures_VERB {'1984': 15, '2003': 48, '1869': 1, '2000': 18, '1982': 10, '1860': 1, '1903': 2, '1998': 18, '1952': 4, '1959': 14, '1894': 1, '2005': 31, '1944': 4, '2007': 24, '1983': 25, '1975': 5, '1943': 2, '1902': 2, '1887': 1, '1939': 1, '1856': 1, '1950': 4, '1857': 1, '1945': 2, '1853': 1, '2004': 32, '1942': 2, '1863': 2, '1937': 6, '1823': 2, '1845': 2, '1932': 1, '1877': 1, '1881': 2, '1883': 4, '1844': 3, '1963': 12, '1987': 14, '1839': 1, '2006': 37, '1966': 8, '1989': 17, '1941': 2, '1879': 1, '1924': 3, '1904': 4, '1915': 2, '1900': 2, '1871': 1, '1926': 3, '1954': 5, '1994': 25, '1873': 3, '1968': 13, '1934': 9, '1977': 15, '1971': 12, '1847': 1, '1921': 3, '1993': 28, '1852': 3, '1837': 2, '1893': 1, '1970': 15, '1956': 5, '1874': 1, '1980': 14, '1949': 3, '1835': 1, '1929': 3, '1960': 8, '1875': 1, '1958': 10, '1913': 7, '1834': 3, '1870': 2, '1972': 16, '1826': 1, '1936': 6, '1996': 24, '1901': 11, '1978': 13, '1973': 13, '1912': 6, '1897': 1, '1868': 1, '1940': 2, '1999': 27, '1850': 1, '1957': 5, '1964': 6, '1962': 31, '1914': 3, '1988': 20, '2008': 50, '1974': 19, '2002': 34, '1985': 11, '1995': 31, '1885': 1, '1865': 5, '1969': 11, '1866': 1, '1961': 13, '1928': 1, '2001': 32, '1976': 6, '1859': 1, '1948': 3, '1896': 1, '1967': 13, '1864': 1, '1986': 44, '1910': 1, '1916': 3, '1992': 32, '1923': 3, '1947': 1, '1997': 26, '1990': 29, '1955': 6, '1911': 5, '1951': 11, '1920': 6, '1933': 3, '1925': 7, '1927': 7, '1979': 18, '1831': 1, '1849': 1, '1858': 3, '1991': 12, '1965': 3, '1946': 5, '1851': 2, '1907': 2, '1981': 18, '1935': 4}
adzes_VERB {'1984': 26, '1869': 3, '2003': 32, '1982': 17, '1860': 4, '2004': 46, '1784': 3, '1872': 5, '1952': 4, '1959': 9, '1894': 1, '1917': 1, '1944': 8, '1962': 5, '1983': 8, '1975': 36, '1898': 4, '1943': 3, '1902': 3, '1892': 1, '1939': 15, '1891': 6, '1908': 3, '1930': 34, '1890': 3, '1945': 2, '1846': 2, '1830': 2, '1932': 8, '1863': 5, '1937': 2, '1921': 5, '1942': 3, '1877': 5, '1878': 4, '1965': 13, '1973': 24, '1842': 2, '1953': 2, '1963': 15, '1955': 6, '2006': 45, '1985': 31, '1966': 10, '1989': 29, '1935': 6, '1986': 11, '1904': 10, '1812': 1, '1880': 1, '1915': 5, '1900': 4, '1871': 1, '2005': 42, '1909': 5, '1954': 5, '1994': 23, '2007': 44, '1968': 32, '1934': 2, '1977': 37, '1971': 16, '1938': 10, '1993': 19, '1852': 1, '1950': 68, '1969': 43, '1956': 13, '1874': 2, '1919': 2, '1949': 7, '1970': 34, '1929': 13, '1960': 9, '1875': 1, '1978': 37, '1958': 12, '1913': 4, '1927': 10, '1870': 1, '1972': 14, '1881': 6, '1936': 11, '1996': 34, '1901': 5, '1886': 3, '2001': 42, '1912': 10, '1974': 13, '1940': 7, '1998': 34, '1916': 4, '1976': 20, '1957': 10, '1964': 14, '1951': 10, '1889': 1, '1914': 6, '1988': 31, '2008': 37, '2002': 32, '1825': 1, '1995': 39, '1885': 2, '1865': 1, '1922': 26, '1987': 34, '1793': 1, '1961': 5, '1928': 6, '1980': 24, '1882': 3, '1992': 26, '1948': 1, '1931': 2, '1967': 11, '2000': 25, '1910': 2, '1848': 2, '1947': 10, '1923': 5, '1814': 1, '1997': 24, '1990': 34, '1906': 1, '1911': 1, '1815': 3, '1854': 2, '1999': 25, '1933': 6, '1925': 5, '1926': 6, '1979': 57, '1790': 1, '1849': 1, '1858': 1, '1991': 20, '1855': 1, '1946': 4, '1895': 2, '1907': 5, '1981': 33, '1941': 9}
accuracy.15 {'1984': 4, '2003': 12, '1982': 4, '1972': 2, '1952': 2, '1936': 3, '2005': 12, '1901': 2, '1978': 2, '1975': 3, '2001': 6, '1977': 4, '1987': 4, '1979': 2, '1964': 1, '1970': 1, '1945': 1, '2004': 13, '2002': 5, '1985': 7, '1986': 5, '1995': 2, '2007': 10, '1969': 1, '1888': 3, '1961': 3, '1973': 1, '1963': 1, '1992': 7, '1896': 1, '1874': 1, '1966': 1, '1989': 5, '2000': 10, '1999': 9, '1993': 4, '1997': 9, '1990': 9, '1996': 6, '1994': 8, '1920': 1, '1927': 2, '1980': 2, '1971': 3, '2006': 14, '2008': 10, '1909': 1, '1991': 4, '1956': 4, '1988': 7, '1955': 1, '1998': 3, '1929': 3, '1981': 3, '1983': 4}
aerotactic {'1984': 3, '1967': 2, '2003': 7, '1982': 3, '1972': 1, '1903': 2, '1959': 2, '2005': 13, '1993': 9, '1978': 5, '1898': 2, '1943': 1, '1974': 2, '1957': 4, '1964': 6, '1970': 11, '2004': 58, '2002': 36, '1985': 5, '1986': 14, '1995': 11, '2007': 40, '1969': 1, '1999': 7, '1961': 1, '1965': 2, '1973': 8, '1976': 5, '1963': 16, '1992': 7, '2006': 29, '1968': 3, '1966': 7, '1989': 11, '2000': 47, '1958': 1, '1906': 4, '1997': 28, '1990': 2, '1996': 2, '2001': 7, '1994': 13, '1987': 14, '1979': 11, '1971': 3, '1907': 24, '2008': 52, '1977': 3, '1991': 5, '1956': 1, '1988': 9, '1980': 3, '1998': 7, '1960': 13, '1981': 1, '1983': 3}
acoustio_NOUN {'1965': 3, '1952': 1, '1959': 1, '1901': 1, '1978': 3, '1975': 1, '1902': 1, '1912': 1, '1899': 1, '1905': 2, '1856': 2, '1987': 2, '1871': 1, '1962': 2, '1945': 1, '1985': 4, '1986': 5, '1969': 4, '1961': 1, '1878': 1, '1976': 2, '1867': 2, '1953': 7, '1963': 1, '1948': 1, '1968': 3, '1966': 3, '1862': 1, '1993': 2, '1947': 3, '1990': 1, '1955': 1, '1954': 1, '1854': 1, '1918': 3, '1933': 3, '1951': 1, '1980': 1, '1971': 1, '1888': 1, '1855': 1, '1949': 2, '1981': 1, '1983': 1}
adnuntiat_X {'1984': 2, '2003': 1, '1997': 1, '1903': 1, '1952': 1, '1936': 3, '2005': 2, '1904': 1, '1901': 3, '1983': 1, '1912': 2, '1939': 2, '1840': 2, '1824': 2, '1964': 1, '2006': 5, '1914': 2, '2004': 1, '2002': 5, '1985': 1, '1986': 1, '1995': 4, '1937': 6, '1922': 1, '1961': 2, '1844': 2, '1976': 4, '1953': 1, '1909': 1, '1948': 2, '1896': 4, '1966': 3, '1989': 2, '2000': 2, '1958': 2, '1906': 2, '1990': 2, '1996': 1, '1911': 1, '1920': 4, '2007': 3, '1987': 2, '1979': 1, '1993': 2, '2008': 8, '1999': 4, '1988': 1, '1895': 3, '1907': 2}
adopted.3_VERB {'1984': 3, '1857': 1, '2003': 7, '1982': 5, '1903': 5, '1872': 1, '1952': 5, '1959': 7, '1894': 6, '1917': 5, '1958': 5, '1962': 4, '1983': 13, '1975': 6, '1898': 8, '1943': 3, '1902': 1, '1892': 4, '1887': 1, '1899': 1, '1891': 8, '1908': 4, '1930': 2, '1906': 1, '2007': 7, '1945': 5, '1853': 1, '2004': 7, '1932': 7, '1924': 5, '1937': 3, '1843': 1, '1942': 3, '1878': 1, '1965': 9, '1883': 1, '1844': 1, '1990': 3, '1953': 7, '1963': 6, '1987': 2, '2006': 13, '1985': 6, '1966': 9, '1989': 13, '1935': 3, '1879': 7, '1986': 3, '1904': 11, '1880': 1, '1915': 14, '1884': 5, '1871': 1, '2005': 9, '1909': 2, '2001': 8, '1954': 2, '1994': 6, '1918': 2, '1873': 3, '1968': 8, '1934': 3, '1977': 2, '1971': 12, '1938': 3, '1993': 10, '1852': 4, '1950': 4, '1893': 1, '1888': 3, '1956': 3, '1874': 7, '1919': 20, '1949': 4, '1970': 10, '1929': 5, '1921': 9, '1875': 1, '1913': 2, '1927': 12, '1969': 12, '1972': 13, '1936': 10, '1996': 10, '1866': 11, '1978': 5, '1973': 5, '1912': 3, '1897': 9, '1974': 7, '1940': 4, '1999': 16, '1916': 2, '1957': 9, '1964': 22, '1889': 4, '1914': 4, '1988': 4, '2008': 9, '2002': 6, '1825': 1, '1995': 1, '1885': 1, '1922': 3, '1833': 2, '1961': 10, '1928': 8, '1980': 15, '1976': 7, '1859': 1, '1948': 3, '1896': 2, '1967': 19, '1856': 14, '1901': 5, '2000': 12, '1910': 4, '1992': 11, '1923': 2, '1947': 4, '1997': 10, '1931': 2, '1955': 3, '1911': 3, '1951': 6, '1920': 13, '1933': 2, '1925': 5, '1926': 2, '1979': 3, '1960': 14, '1998': 8, '1858': 4, '1991': 10, '1855': 2, '1946': 11, '1895': 3, '1907': 4, '1981': 6, '1941': 8}
adjustments.14_NOUN {'1984': 1, '2001': 7, '2003': 2, '1976': 2, '1997': 2, '1953': 2, '1972': 1, '1965': 1, '1979': 4, '1992': 2, '2005': 6, '1967': 3, '1989': 2, '1983': 1, '2000': 2, '1986': 3, '1993': 3, '1991': 1, '1974': 1, '1990': 4, '1996': 4, '1987': 1, '1999': 1, '1934': 1, '1977': 1, '2006': 2, '1962': 1, '2008': 2, '1969': 1, '2002': 3, '1956': 2, '1985': 3, '1980': 3, '1995': 3, '2007': 1, '1957': 1, '1981': 3, '1978': 1}
acylate_ADJ {'1984': 6, '1967': 8, '2003': 5, '1982': 7, '1972': 5, '1965': 8, '1952': 11, '2005': 17, '1958': 7, '1950': 2, '1978': 9, '1975': 5, '2001': 7, '1974': 19, '1987': 5, '1979': 7, '1964': 6, '1970': 15, '1962': 1, '2004': 6, '2002': 6, '1985': 6, '1986': 8, '1995': 12, '2007': 11, '1969': 2, '1999': 2, '1961': 7, '1973': 5, '1976': 6, '1963': 7, '1992': 8, '2006': 18, '1968': 8, '1966': 1, '1989': 6, '2000': 9, '1993': 7, '1998': 5, '1997': 15, '1990': 13, '1996': 9, '1994': 4, '1933': 1, '1957': 4, '1980': 8, '1971': 20, '2008': 5, '1977': 1, '1981': 4, '1956': 1, '1988': 11, '1949': 6, '1960': 10, '1991': 7, '1983': 41}
accesorio_NOUN {'1934': 2, '1973': 3, '2003': 17, '1997': 6, '1972': 1, '1965': 3, '1952': 1, '1948': 1, '2005': 4, '1988': 2, '1983': 1, '2000': 1, '1943': 1, '2008': 6, '1812': 1, '1998': 1, '1974': 2, '1940': 1, '1990': 3, '1955': 6, '1994': 2, '1957': 2, '1999': 6, '1964': 2, '2006': 13, '1945': 2, '2004': 4, '1969': 2, '1956': 8, '1985': 1, '1995': 3, '2007': 2, '1960': 4, '1981': 1, '1987': 1}
aeruleus {'1982': 2, '1930': 1, '1913': 1, '1881': 1, '1909': 2, '1882': 1, '1873': 3, '1826': 1, '1872': 1, '1905': 5, '2008': 1, '1896': 1, '1876': 1, '1937': 1, '1813': 1, '1978': 1, '1879': 1, '1910': 1, '1898': 1, '1803': 1, '1902': 2, '1884': 1, '1887': 1, '1926': 1, '2006': 1, '1805': 1, '1981': 1, '1892': 2, '1894': 2, '1906': 1, '1901': 1, '1907': 1, '1888': 1, '1967': 2, '1802': 1, '1895': 2, '1885': 1, '1886': 1, '1922': 1}
aeathetic_ADJ {'1973': 18, '1975': 2, '1976': 1, '1982': 1, '1963': 1, '1952': 1, '1948': 1, '1931': 1, '1968': 3, '1950': 1, '1983': 1, '1941': 4, '1879': 1, '1876': 1, '1880': 1, '1912': 1, '1974': 1, '1891': 1, '1985': 3, '1987': 6, '1964': 1, '1980': 3, '1971': 2, '2007': 1, '1962': 1, '2008': 3, '1942': 1, '1967': 2, '1986': 3, '1929': 1, '1960': 22, '1981': 2, '1978': 1}
aeolosomatids_NOUN {'1984': 11, '1967': 5, '1980': 4, '2000': 1, '1969': 2, '1972': 2, '1965': 2, '1992': 2, '2005': 1, '1968': 3, '1989': 3, '1983': 3, '1975': 4, '1999': 1, '1974': 4, '1990': 1, '1987': 8, '1964': 2, '1979': 5, '1962': 14, '2008': 1, '1991': 4, '2002': 6, '1988': 2, '1986': 1, '1981': 2, '1978': 3}
academies.4_NOUN {'1984': 6, '2001': 1, '2003': 1, '1997': 2, '1972': 6, '1952': 1, '1959': 1, '1992': 1, '2005': 2, '1968': 2, '1966': 4, '1985': 1, '1978': 2, '2000': 3, '2008': 6, '1998': 1, '1990': 1, '1996': 1, '1987': 1, '1977': 2, '1971': 1, '2006': 5, '1962': 1, '2004': 3, '1969': 2, '2002': 7, '1988': 1, '1986': 3, '1995': 1, '1970': 1, '1983': 1}
abzustatten_NOUN {'1984': 4, '1961': 1, '1928': 2, '1930': 1, '2000': 1, '1990': 1, '1953': 5, '1972': 1, '1965': 1, '1959': 3, '2008': 1, '2006': 3, '1944': 1, '1983': 2, '1935': 1, '1975': 1, '1898': 1, '1964': 1, '1997': 1, '1939': 1, '1955': 1, '1925': 2, '1857': 1, '1979': 1, '1938': 2, '2004': 1, '1999': 1, '1988': 1, '1924': 1, '1998': 1, '2007': 3, '1981': 4, '1978': 2}
adequtely_ADV {'1984': 8, '1967': 2, '2003': 2, '1982': 6, '1979': 6, '1952': 4, '1959': 1, '1996': 1, '1978': 3, '1974': 4, '1940': 3, '1987': 5, '1964': 4, '1970': 2, '1972': 8, '1985': 4, '1986': 1, '1937': 3, '1969': 6, '1999': 2, '1928': 1, '1973': 1, '1976': 3, '1953': 1, '1963': 1, '1992': 10, '1948': 3, '2006': 1, '1968': 6, '1966': 3, '1989': 4, '2000': 3, '1993': 6, '1949': 1, '1990': 6, '1909': 1, '1994': 2, '1980': 2, '1938': 1, '1977': 2, '1981': 2, '1988': 3, '1946': 1, '1998': 4, '1960': 1, '1991': 1, '1983': 6}
accompanyed_ADJ {'1982': 1, '1961': 2, '1913': 3, '1869': 1, '1844': 1, '1810': 2, '1867': 3, '1925': 1, '1967': 1, '1994': 1, '2005': 2, '1944': 3, '1725': 1, '1989': 1, '1978': 1, '2003': 1, '1898': 4, '1973': 2, '1902': 4, '1836': 1, '1939': 1, '1727': 1, '1987': 3, '1920': 2, '1929': 1, '1816': 2, '1857': 1, '2006': 3, '1890': 2, '1889': 1, '1908': 2, '2008': 3, '1893': 3, '2002': 1, '1679': 1, '1986': 3, '1895': 1, '1921': 4, '1907': 2, '1875': 1, '1983': 2}
abwälzen_X {'2003': 3, '1930': 1, '1973': 1, '2000': 5, '1976': 1, '1997': 4, '1972': 1, '1992': 1, '2005': 2, '1989': 3, '1983': 1, '1975': 1, '1993': 1, '2001': 3, '2006': 1, '1996': 1, '1994': 1, '1918': 2, '1987': 1, '1977': 4, '1971': 4, '2008': 2, '1970': 1, '2002': 3, '1988': 4, '1986': 1, '1998': 1, '2007': 1, '1960': 3, '1969': 1, '1999': 1}
adaprable_ADJ {'1984': 1, '1990': 1, '1996': 6, '2001': 9, '2002': 12, '1994': 1, '1963': 3, '1997': 2, '2003': 9, '2004': 3, '1995': 2, '1999': 7, '2000': 14, '1993': 1, '1998': 7, '1949': 1, '1974': 1}
accipis_X {'1984': 3, '2003': 9, '1997': 6, '1845': 6, '2004': 3, '1903': 3, '1894': 3, '2005': 12, '1958': 7, '1962': 5, '1983': 1, '1975': 4, '1898': 2, '1943': 2, '1836': 1, '1887': 2, '1939': 2, '1840': 1, '1856': 2, '1780': 1, '1820': 1, '1906': 10, '2007': 11, '1945': 2, '1853': 6, '1846': 2, '1932': 3, '1924': 1, '1937': 1, '1843': 4, '1822': 9, '1965': 2, '1883': 2, '1844': 12, '1842': 2, '1990': 1, '1953': 5, '1963': 3, '1996': 2, '1839': 7, '2006': 7, '1966': 3, '1754': 1, '1941': 3, '1986': 4, '1904': 2, '1991': 8, '1880': 1, '1900': 2, '1909': 6, '1829': 7, '1994': 6, '1918': 1, '1873': 1, '1968': 10, '1980': 2, '1971': 3, '1847': 10, '1938': 2, '1993': 5, '1852': 3, '1866': 1, '1969': 3, '1797': 1, '1874': 12, '1998': 12, '1970': 1, '1929': 2, '1960': 3, '1875': 1, '1913': 2, '1834': 2, '1972': 2, '1936': 2, '1901': 4, '1978': 2, '1973': 4, '1912': 6, '1897': 3, '1940': 2, '1914': 3, '1850': 4, '1976': 2, '1987': 3, '1816': 2, '1964': 4, '1899': 1, '1908': 2, '1988': 2, '1837': 4, '2002': 1, '1985': 6, '1885': 1, '1832': 2, '1922': 5, '1999': 6, '1961': 1, '1928': 3, '2001': 4, '1882': 5, '1891': 1, '1956': 1, '1905': 2, '1828': 13, '1923': 6, '1931': 1, '1967': 9, '1889': 2, '2000': 4, '1910': 2, '1916': 1, '1992': 3, '1947': 1, '1896': 1, '1955': 3, '1727': 1, '1911': 2, '1951': 3, '1920': 3, '1830': 3, '1925': 3, '1926': 3, '1979': 4, '1831': 1, '1886': 2, '1849': 5, '2008': 30, '1817': 2, '1855': 2, '1989': 1, '1895': 11, '1907': 1, '1981': 3, '1935': 2}
administrato_X {'1878': 1, '1869': 2, '1975': 1, '1882': 1, '1980': 1, '1864': 1, '2008': 4, '1861': 1, '1981': 1, '1966': 4, '1950': 1, '1989': 1, '1879': 1, '1999': 1, '2003': 2, '1803': 3, '1841': 1, '1887': 2, '1917': 1, '1996': 2, '1891': 2, '1954': 2, '1925': 1, '1857': 3, '1977': 1, '1870': 1, '1889': 1, '1998': 2, '2004': 2, '1893': 1, '1822': 1, '2002': 1, '1956': 1, '1863': 1, '1995': 1, '1922': 1, '1942': 1}
aconsejar_VERB {'1984': 6, '1961': 1, '2001': 1, '2003': 1, '1997': 1, '1972': 2, '1987': 1, '1948': 1, '2005': 1, '1966': 1, '1989': 2, '1935': 1, '1975': 4, '1993': 2, '1991': 1, '1992': 2, '1936': 1, '1998': 2, '1990': 2, '1955': 1, '1957': 1, '2007': 2, '1926': 1, '1979': 2, '2008': 5, '2006': 4, '2004': 2, '1922': 2, '2002': 3, '1956': 2, '1988': 1, '1949': 3, '1937': 2, '1970': 1, '1999': 1}
adaptat_DET {'1984': 5, '2003': 2, '1982': 3, '1972': 4, '2005': 2, '1993': 2, '1950': 1, '1983': 4, '1975': 2, '2004': 3, '1898': 1, '2001': 2, '1902': 1, '1974': 3, '1905': 1, '1916': 2, '1987': 3, '1906': 1, '1914': 2, '1846': 1, '1942': 1, '2002': 1, '1985': 5, '1986': 3, '1995': 1, '1873': 1, '1970': 1, '1961': 1, '1973': 5, '1976': 2, '1963': 2, '1992': 3, '2006': 2, '1874': 1, '1966': 2, '1989': 3, '2000': 2, '1924': 1, '1958': 1, '1915': 1, '1947': 1, '1990': 2, '1996': 3, '1994': 1, '2007': 2, '1934': 1, '1980': 4, '1847': 1, '2008': 8, '1977': 3, '1969': 3, '1956': 1, '1988': 5, '1998': 1, '1929': 1, '1907': 1, '1981': 2}
adnpt {'2003': 2, '2000': 2, '1810': 1, '1860': 1, '1972': 2, '1965': 1, '1878': 1, '1959': 1, '2008': 3, '1866': 1, '1975': 1, '1912': 2, '1897': 1, '1868': 1, '1850': 1, '1824': 1, '1853': 3, '2004': 2, '1986': 1, '1873': 1, '1865': 1, '1970': 1, '1928': 1, '1903': 1, '1976': 2, '1859': 1, '1992': 3, '1896': 1, '1879': 1, '1993': 1, '1812': 1, '1900': 1, '1931': 1, '1909': 1, '1854': 2, '2007': 1, '1987': 2, '1977': 1, '1971': 1, '2006': 1, '1852': 1, '1849': 2, '1858': 1, '1999': 1, '1855': 1, '1998': 2, '1895': 1, '1886': 1, '1991': 1, '1851': 1}
admovent_NOUN {'1926': 1, '1973': 1, '1761': 1, '1982': 2, '1992': 2, '2005': 1, '1968': 1, '1754': 1, '1978': 1, '2000': 1, '1876': 3, '1976': 1, '1808': 1, '1997': 2, '1939': 1, '1996': 2, '1856': 2, '1758': 1, '1987': 1, '1920': 1, '1867': 3, '1971': 1, '1843': 2, '2006': 6, '2008': 1, '1988': 1, '1795': 1, '1986': 1, '1823': 1, '1822': 1, '1999': 1}
advaitist_ADJ {'1984': 1, '2000': 7, '1982': 1, '1977': 6, '1959': 1, '2005': 7, '1983': 2, '1975': 1, '1974': 1, '1987': 1, '1997': 4, '1962': 1, '2002': 6, '1985': 7, '1986': 2, '1995': 4, '2007': 3, '1922': 2, '1999': 1, '2001': 2, '1976': 13, '1992': 1, '1923': 1, '2006': 4, '1966': 8, '1989': 12, '1941': 2, '2003': 1, '1969': 3, '1993': 1, '1990': 2, '1994': 5, '1920': 1, '1933': 1, '1925': 1, '1951': 3, '1979': 6, '1971': 2, '2008': 3, '1991': 3, '1967': 2, '1980': 5, '1998': 1, '1929': 1, '1960': 3, '1981': 1}
adueniens_NOUN {'1973': 2, '1997': 1, '1953': 1, '1996': 1, '2008': 1, '1931': 1, '1950': 2, '1983': 1, '2001': 3, '1897': 3, '1974': 2, '1940': 1, '2005': 1, '1955': 5, '1951': 1, '1933': 1, '1994': 1, '1980': 1, '1971': 2, '2006': 4, '1962': 1, '1945': 3, '2004': 1, '1932': 1, '2002': 1, '1956': 1, '1985': 5, '1946': 3, '1998': 2, '2007': 1, '1981': 1, '1999': 2}
accompanying1 {'1958': 4, '1984': 3, '1927': 3, '1931': 1, '1945': 1, '1969': 4, '1845': 1, '1980': 5, '2005': 1, '1903': 1, '1952': 3, '1941': 1, '1917': 1, '1904': 1, '1866': 1, '1983': 1, '1978': 1, '1975': 1, '1812': 1, '1898': 3, '1912': 1, '1897': 1, '1940': 1, '1856': 3, '1916': 1, '1852': 3, '1930': 1, '2006': 1, '1890': 2, '1889': 1, '1807': 1, '2008': 10, '2002': 1, '1924': 1, '1995': 1, '1921': 1, '1822': 1, '1835': 2, '1877': 2, '1826': 1, '1882': 3, '1867': 2, '1934': 2, '1859': 1, '1828': 1, '1948': 1, '1861': 1, '1935': 1, '1876': 1, '1848': 2, '1880': 1, '1900': 1, '1906': 1, '1950': 1, '1896': 3, '1909': 1, '1994': 1, '1911': 1, '1998': 1, '1990': 1, '1920': 1, '1925': 1, '1894': 2, '1977': 3, '1938': 1, '1993': 1, '1918': 1, '1901': 2, '1888': 1, '1949': 1, '1929': 3, '1851': 1}
adenomas_NOUN {'1984': 5287, '2003': 10600, '1982': 4101, '1903': 21, '1872': 12, '1952': 504, '1959': 883, '1894': 10, '1917': 106, '1904': 8, '1962': 929, '1983': 4754, '1975': 2826, '1898': 12, '1943': 220, '1902': 50, '1892': 7, '1887': 4, '1899': 10, '1905': 24, '1891': 4, '1914': 353, '1884': 5, '1930': 10, '1890': 20, '2007': 8829, '1945': 267, '2004': 10879, '1932': 185, '1924': 71, '1873': 7, '1921': 25, '1942': 421, '1877': 1, '1878': 3, '1965': 1046, '1883': 12, '1953': 587, '1963': 1189, '1987': 5871, '2006': 11199, '1966': 1361, '1989': 4924, '1935': 73, '1879': 2, '1986': 6233, '1958': 635, '1880': 8, '1915': 10, '1900': 19, '1871': 6, '2005': 9271, '1909': 18, '2001': 8327, '1954': 598, '1944': 337, '1918': 30, '1937': 178, '1934': 108, '1977': 2553, '1971': 1765, '1938': 164, '1993': 4844, '1950': 445, '1888': 2, '1956': 544, '1967': 1993, '1919': 170, '1949': 309, '1970': 1256, '1929': 151, '1960': 1254, '1875': 1, '1913': 13, '1927': 76, '1969': 2231, '1972': 1858, '1881': 5, '1936': 139, '1996': 9367, '1901': 6, '1978': 2888, '1973': 1683, '1912': 234, '1897': 5, '1974': 3000, '1940': 262, '1916': 63, '1976': 2761, '1957': 900, '1964': 1870, '1889': 11, '1908': 152, '2002': 11406, '1985': 5470, '1995': 6344, '1885': 7, '1922': 278, '1999': 7475, '1961': 859, '1928': 58, '1980': 5442, '1882': 13, '1939': 221, '1906': 38, '1992': 6135, '1948': 936, '1931': 56, '1968': 1491, '2000': 6490, '1910': 159, '1876': 5, '1923': 40, '1947': 397, '1997': 9242, '1990': 7623, '1955': 630, '1994': 5788, '1911': 64, '1951': 369, '1920': 51, '1933': 75, '1925': 87, '1926': 47, '1979': 3209, '1907': 16, '1998': 6984, '2008': 8116, '1991': 7040, '1988': 4685, '1946': 319, '1895': 6, '1886': 3, '1981': 3192, '1941': 232}
aenaitive_ADJ {'1984': 3, '2003': 1, '1982': 2, '1972': 2, '1965': 8, '1952': 1, '1959': 2, '1936': 1, '1950': 1, '1983': 1, '1975': 3, '1974': 1, '1856': 1, '1987': 1, '1962': 1, '1945': 1, '2004': 2, '1942': 1, '1985': 26, '1986': 24, '1995': 1, '1937': 1, '1969': 1, '1961': 1, '2001': 1, '1953': 2, '1992': 3, '1948': 1, '1967': 1, '1989': 1, '1941': 1, '2000': 2, '1958': 1, '1991': 1, '1915': 1, '1947': 11, '1990': 3, '1955': 9, '1854': 1, '1957': 1, '1977': 1, '2008': 5, '1999': 1, '1956': 2, '1988': 2, '1949': 1, '1960': 1, '1981': 2}
accummulation_NOUN {'1818': 1, '1860': 2, '1903': 16, '1872': 5, '1952': 10, '1959': 29, '1917': 12, '1993': 79, '1975': 88, '1902': 14, '1899': 9, '1905': 9, '1841': 1, '1908': 6, '1900': 9, '1930': 5, '1890': 8, '1945': 8, '1861': 1, '1932': 5, '1863': 1, '1937': 9, '1921': 6, '1877': 5, '1965': 39, '1963': 39, '1864': 1, '1825': 3, '1966': 30, '1941': 2, '1880': 4, '1915': 3, '1884': 7, '1871': 1, '1795': 1, '1954': 15, '2007': 23, '1934': 5, '1938': 4, '1817': 1, '1833': 1, '1956': 16, '1919': 4, '1949': 10, '1830': 2, '1875': 6, '1972': 51, '1881': 7, '1922': 10, '1950': 12, '1978': 71, '2005': 66, '1916': 9, '1987': 106, '2002': 35, '1802': 1, '1885': 1, '1957': 22, '1970': 56, '1888': 7, '2001': 50, '1882': 1, '1939': 8, '1906': 5, '1859': 3, '1828': 1, '1968': 36, '1856': 2, '1862': 2, '1848': 6, '1923': 14, '1998': 70, '1896': 4, '1955': 22, '1911': 1, '1951': 11, '1933': 6, '1925': 2, '1927': 13, '1849': 1, '1858': 2, '1946': 5, '1895': 6, '1981': 87, '1851': 2, '1984': 133, '1717': 1, '2003': 38, '1982': 92, '2004': 36, '1944': 5, '1813': 1, '1983': 95, '1898': 3, '1943': 1, '1836': 3, '1892': 9, '1887': 2, '1840': 1, '1891': 12, '1814': 2, '1846': 1, '1942': 3, '1986': 113, '1873': 4, '1843': 14, '1878': 2, '1883': 4, '1844': 4, '1953': 17, '1996': 63, '1839': 3, '2006': 30, '1804': 1, '1989': 85, '1935': 5, '1879': 1, '1924': 8, '1904': 12, '1909': 13, '1829': 2, '1994': 62, '1918': 6, '1977': 65, '1971': 59, '1809': 3, '1901': 8, '1893': 8, '1999': 64, '1797': 1, '1967': 42, '1980': 79, '1995': 72, '1960': 22, '1852': 1, '1958': 18, '1913': 11, '1894': 14, '1870': 3, '1929': 2, '1936': 1, '1973': 64, '1912': 8, '1897': 11, '1868': 2, '1940': 3, '1874': 1, '1850': 1, '1788': 2, '1816': 2, '1964': 43, '1838': 1, '1889': 11, '1914': 13, '1974': 53, '1985': 99, '1969': 38, '1961': 24, '1928': 3, '1976': 67, '1867': 2, '1992': 71, '1948': 12, '1931': 5, '1855': 3, '1962': 48, '2000': 38, '1910': 8, '1876': 3, '1947': 9, '1997': 49, '1990': 85, '1920': 13, '1926': 8, '1979': 77, '1907': 9, '2008': 28, '1988': 94, '1886': 6, '1991': 90}
ad'a_X {'1984': 2, '2001': 2, '2003': 2, '1997': 1, '1972': 1, '1965': 1, '1992': 1, '2008': 2, '2006': 2, '1981': 1, '1989': 1, '2000': 1, '1990': 4, '1957': 1, '1925': 1, '1964': 1, '1977': 1, '1971': 2, '1852': 3, '2004': 1, '1999': 4, '2002': 3, '1986': 4, '1995': 2, '1991': 1, '1987': 1}
admonisht_VERB {'1717': 3, '2003': 2, '1818': 5, '1807': 2, '2004': 1, '1903': 5, '1959': 2, '1894': 6, '1917': 2, '1725': 1, '1898': 4, '1902': 2, '1892': 7, '1840': 2, '1856': 26, '1810': 6, '1908': 3, '1846': 9, '1668': 1, '1863': 5, '1822': 6, '1877': 5, '1973': 3, '1806': 3, '1953': 2, '1963': 2, '1987': 2, '2006': 4, '1667': 1, '1904': 3, '1915': 1, '1884': 1, '1871': 1, '2005': 2, '1909': 1, '1998': 1, '1994': 4, '2007': 5, '1977': 1, '1971': 1, '1847': 6, '1938': 6, '1852': 8, '1817': 2, '1893': 1, '1999': 3, '1874': 1, '1949': 2, '1913': 4, '1927': 3, '1896': 3, '1972': 2, '1826': 3, '1796': 1, '1978': 3, '1883': 2, '1912': 1, '1897': 1, '1808': 9, '1974': 1, '1850': 4, '1824': 1, '1889': 1, '1914': 4, '1841': 4, '2008': 14, '1985': 3, '1706': 1, '1995': 1, '1885': 2, '1865': 1, '1969': 2, '1961': 1, '1928': 1, '2001': 2, '1976': 1, '1867': 2, '1931': 5, '1968': 5, '1891': 2, '2000': 2, '1910': 1, '1876': 5, '1848': 1, '1906': 1, '1861': 2, '1951': 3, '1832': 1, '1925': 1, '1957': 5, '1979': 2, '1831': 2, '1700': 1, '1858': 1, '1991': 1, '1855': 5, '1895': 4, '1886': 2, '1862': 2, '1851': 18}
accumlates_NOUN {'1984': 1, '1973': 1, '2003': 1, '1976': 1, '1982': 1, '1963': 4, '1987': 1, '1996': 1, '1854': 1, '2005': 5, '1985': 2, '1966': 4, '1989': 3, '1978': 3, '1975': 1, '1986': 2, '1993': 4, '1991': 3, '1998': 1, '1990': 3, '1955': 2, '2001': 1, '1954': 1, '1951': 1, '1999': 1, '1964': 1, '1977': 3, '1971': 1, '1938': 1, '2006': 2, '1988': 2, '1960': 1, '1981': 4, '1972': 1, '1967': 1, '1980': 1, '1949': 1, '2007': 2, '1921': 1, '1970': 1, '1983': 5}
accuse {'1740': 133, '1581': 4, '1718': 47, '1711': 58, '1775': 238, '1959': 5918, '1993': 19042, '1688': 51, '1902': 5380, '1735': 100, '1799': 605, '1939': 3298, '1905': 5039, '1620': 4, '1698': 25, '1820': 2142, '1970': 13176, '1683': 69, '1640': 3, '1665': 3, '1776': 121, '1655': 3, '1924': 3427, '1658': 10, '1753': 170, '1762': 98, '1965': 10358, '1903': 4807, '1707': 81, '1752': 273, '1864': 2565, '1792': 412, '1747': 112, '1966': 11026, '1662': 2, '1880': 3640, '1732': 75, '1884': 3795, '1871': 3129, '2005': 38078, '1801': 1025, '1524': 1, '1737': 133, '1847': 2845, '1700': 28, '1772': 150, '1817': 1435, '1706': 82, '1833': 2414, '1787': 473, '1783': 145, '1687': 10, '1638': 1, '1587': 4, '1739': 98, '1716': 53, '1773': 171, '1621': 1, '1881': 3624, '1671': 5, '1971': 11834, '1950': 4862, '1745': 61, '2001': 27631, '1699': 58, '1758': 321, '1957': 5800, '1746': 66, '1682': 81, '1736': 108, '1780': 149, '1733': 75, '1713': 62, '1691': 6, '1802': 778, '2007': 47536, '1865': 2229, '1922': 3860, '1798': 369, '1607': 1, '1724': 110, '1743': 101, '1635': 4, '1828': 2293, '1827': 2237, '1874': 2963, '1856': 3813, '1769': 167, '1684': 32, '1848': 3249, '1771': 213, '1996': 22005, '1911': 4427, '1815': 1271, '1968': 12856, '1933': 2729, '1656': 23, '1927': 4094, '1819': 1450, '1895': 4126, '1981': 11510, '1789': 393, '1967': 11009, '1717': 71, '1869': 2632, '1982': 11816, '1807': 1040, '2004': 40416, '1670': 11, '1862': 2226, '1694': 23, '1944': 2523, '1813': 1577, '1887': 3224, '1872': 2580, '1770': 193, '1840': 3458, '1891': 3625, '1945': 2484, '1626': 1, '1857': 2817, '1906': 5403, '1915': 3625, '1756': 49, '1668': 28, '1734': 127, '1672': 13, '1738': 163, '1986': 14317, '1843': 3088, '1845': 3206, '1774': 131, '1650': 2, '1878': 2648, '1883': 4292, '1844': 3415, '1708': 74, '1778': 188, '1839': 3485, '1702': 60, '2006': 42588, '1804': 970, '1989': 16430, '1935': 4202, '1958': 5994, '1768': 271, '1695': 9, '1588': 13, '1680': 14, '1714': 100, '1909': 4860, '1659': 11, '1829': 2284, '1998': 23421, '1994': 20307, '1918': 2844, '1854': 4493, '1980': 11029, '1651': 37, '1921': 3104, '1809': 1224, '1893': 3666, '1822': 2457, '1795': 425, '1835': 2567, '1593': 1, '1759': 259, '1834': 2054, '1731': 173, '1826': 2440, '1782': 185, '1936': 3448, '1637': 1, '1912': 4522, '1722': 125, '1868': 2737, '1850': 3099, '1897': 3996, '1964': 8741, '1849': 3056, '1889': 3113, '1760': 171, '1648': 5, '1963': 9127, '1825': 3266, '1961': 8304, '1675': 45, '1761': 192, '1644': 40, '1992': 19202, '1923': 3468, '1861': 2442, '1674': 1, '1910': 4931, '1803': 884, '1579': 7, '1947': 3942, '1997': 21914, '1664': 2, '1667': 21, '1926': 3202, '1821': 1577, '2008': 68807, '1786': 229, '1754': 235, '1727': 199, '1886': 2899, '1991': 17592, '1791': 441, '1818': 1699, '1860': 3295, '1755': 203, '1742': 97, '1784': 239, '1710': 60, '1952': 5155, '1917': 3312, '1725': 105, '1781': 236, '1750': 200, '1975': 10748, '1726': 130, '1962': 8714, '1841': 2613, '1908': 5458, '1930': 4200, '1890': 3116, '1649': 2, '1853': 3844, '1520': 3, '1744': 139, '1863': 2430, '1937': 3718, '1741': 92, '1563': 7, '1877': 3423, '1842': 2285, '1811': 1911, '1765': 181, '1709': 45, '1985': 13022, '1645': 3, '1941': 3001, '1678': 25, '1900': 5850, '1954': 4668, '1619': 1, '1934': 3663, '1766': 258, '1728': 123, '1837': 2452, '1876': 2774, '1956': 5462, '1919': 3242, '1949': 4603, '1929': 3921, '1875': 3190, '1779': 157, '1592': 5, '1704': 65, '1796': 414, '1685': 59, '1901': 6012, '1978': 11225, '1703': 44, '1938': 3652, '1916': 3304, '1824': 2619, '1892': 3785, '1690': 6, '1757': 136, '2002': 30033, '1995': 20729, '1885': 3695, '1888': 2969, '1882': 3454, '1749': 105, '1777': 214, '1859': 3028, '1677': 30, '1767': 187, '1870': 2702, '1814': 1297, '1896': 4296, '1955': 5162, '1669': 5, '1951': 4427, '1830': 3460, '1925': 3063, '1806': 1168, '1653': 6, '1721': 92, '1858': 2929, '1681': 40, '1946': 3835, '1660': 1, '1720': 83, '1851': 3612, '1984': 12702, '1763': 199, '2003': 35872, '1810': 1448, '1696': 18, '1751': 265, '1673': 16, '1712': 22, '1983': 11742, '1723': 100, '1705': 55, '1898': 4533, '1943': 2447, '1836': 2632, '1785': 193, '1932': 3724, '1689': 12, '1629': 4, '1715': 62, '1846': 3041, '1972': 12789, '1590': 4, '1686': 20, '1942': 2340, '1953': 4760, '1987': 14998, '1879': 2692, '1904': 5236, '1812': 1615, '1719': 46, '1805': 930, '1873': 2448, '1794': 467, '1977': 10944, '1823': 2227, '1852': 3207, '1999': 24756, '1797': 401, '1657': 2, '1960': 6995, '1748': 176, '1913': 4024, '1661': 5, '1642': 1, '1582': 1, '1866': 2806, '1973': 11513, '1808': 1249, '1974': 10892, '1940': 3262, '1764': 145, '1788': 350, '1816': 1626, '1838': 2550, '1899': 5422, '1914': 4536, '1679': 9, '1630': 2, '1832': 2145, '1969': 12175, '1793': 368, '1928': 4179, '1729': 114, '1976': 10401, '1867': 2523, '1948': 4334, '1931': 3887, '1988': 15276, '1572': 3, '2000': 28272, '1730': 134, '1692': 15, '1676': 19, '1990': 17374, '1647': 3, '1701': 91, '1920': 3737, '1894': 3531, '1979': 11287, '1800': 571, '1831': 2348, '1790': 402, '1624': 2, '1855': 3393, '1693': 16, '1907': 5116}
acrown_ADJ {'1818': 2, '1860': 16, '1838': 22, '1903': 24, '1872': 22, '1952': 8, '1959': 8, '1917': 14, '1958': 10, '1750': 1, '1975': 13, '1902': 25, '1746': 1, '1799': 1, '1889': 20, '1905': 36, '1856': 16, '1908': 28, '1820': 7, '1884': 31, '1930': 21, '1890': 19, '1945': 1, '1853': 30, '1861': 19, '1932': 16, '1863': 11, '1937': 8, '1921': 19, '1822': 6, '1835': 14, '1877': 21, '1965': 15, '1842': 7, '1963': 9, '1811': 2, '1805': 8, '1864': 7, '1792': 3, '1985': 16, '1966': 13, '1941': 6, '1880': 29, '1915': 13, '1900': 26, '1871': 26, '2005': 29, '1801': 4, '1954': 20, '2007': 59, '1934': 6, '1847': 14, '1938': 17, '1993': 5, '1837': 7, '1833': 15, '1956': 8, '1919': 19, '1949': 12, '1830': 7, '1875': 27, '1972': 19, '1881': 23, '1796': 2, '1996': 14, '1950': 25, '1978': 11, '1916': 6, '1824': 15, '1841': 12, '1817': 3, '2002': 11, '1802': 1, '1885': 33, '1865': 28, '1922': 16, '1888': 24, '2001': 20, '1882': 21, '1939': 1, '1859': 19, '1828': 7, '1827': 3, '1795': 2, '1783': 1, '1848': 8, '1923': 18, '1906': 16, '1931': 11, '1955': 12, '1911': 28, '1815': 13, '1951': 7, '1933': 16, '1925': 28, '1927': 10, '1806': 5, '1819': 5, '1849': 5, '1858': 16, '1946': 26, '1895': 12, '1981': 21, '1851': 9, '1984': 9, '1967': 12, '1763': 1, '1869': 18, '2003': 23, '1810': 3, '1982': 7, '1845': 6, '2004': 35, '1968': 16, '1862': 15, '1894': 23, '1944': 5, '1813': 2, '1983': 11, '1898': 31, '1943': 11, '1836': 17, '1892': 15, '1887': 28, '1840': 12, '1891': 29, '1857': 11, '1814': 8, '1846': 6, '1942': 4, '1986': 17, '1873': 14, '1843': 8, '1878': 13, '1883': 25, '1844': 15, '1953': 5, '1778': 1, '1839': 4, '2006': 46, '1989': 5, '1935': 6, '1879': 43, '1924': 21, '1904': 28, '1812': 11, '1909': 14, '1829': 18, '1998': 16, '1994': 7, '1918': 6, '1794': 1, '1854': 30, '1977': 7, '1971': 18, '1823': 7, '1852': 11, '1901': 22, '1893': 19, '1999': 22, '1797': 1, '1874': 26, '1980': 4, '1995': 10, '1970': 18, '1960': 9, '1913': 30, '1834': 7, '1870': 14, '1929': 14, '1826': 2, '1936': 23, '1866': 12, '1973': 24, '1912': 17, '1897': 12, '1808': 6, '1868': 11, '1940': 7, '1850': 17, '1788': 1, '1816': 5, '1964': 10, '1821': 8, '1899': 29, '1914': 12, '1974': 9, '1825': 14, '1832': 23, '1969': 24, '1987': 10, '1961': 8, '1928': 29, '1976': 2, '1867': 21, '1992': 8, '1948': 21, '1896': 26, '1988': 5, '1962': 18, '2000': 18, '1910': 27, '1876': 15, '1803': 1, '1947': 10, '1997': 12, '1990': 11, '1920': 15, '1926': 15, '1979': 9, '1957': 9, '1831': 1, '1886': 25, '2008': 215, '1855': 28, '1907': 28, '1991': 7}
adaptea_NOUN {'1877': 2, '1878': 2, '1927': 2, '1869': 1, '1818': 1, '1872': 1, '1992': 1, '1994': 2, '2008': 5, '2005': 1, '1968': 1, '1813': 1, '1880': 1, '1915': 1, '1884': 1, '1887': 2, '1974': 1, '1939': 1, '1905': 1, '1891': 3, '1854': 1, '1918': 1, '1900': 1, '1894': 3, '1847': 1, '1886': 1, '2006': 2, '1853': 1, '2004': 1, '2002': 1, '1946': 1, '1949': 1, '1873': 3, '1907': 1, '1970': 2}
accepto_NOUN {'1984': 2, '1967': 2, '2003': 3, '1894': 1, '2000': 2, '1997': 6, '1807': 1, '1972': 1, '2005': 3, '1903': 1, '1952': 1, '1959': 2, '2008': 6, '1917': 1, '1866': 4, '1839': 1, '1975': 4, '1898': 1, '1887': 1, '1974': 2, '1939': 3, '1916': 1, '1824': 1, '1964': 1, '1889': 2, '1914': 1, '1853': 8, '2004': 5, '1988': 1, '2002': 1, '1985': 1, '1924': 1, '1802': 1, '1885': 1, '1921': 1, '1922': 1, '1835': 2, '1965': 3, '1973': 1, '1867': 1, '1953': 1, '1845': 1, '1987': 2, '1864': 2, '2006': 4, '1804': 2, '1966': 5, '1962': 1, '1941': 2, '1879': 2, '1862': 2, '1993': 3, '1850': 1, '1870': 2, '1995': 1, '1990': 4, '1996': 1, '1994': 1, '1999': 5, '1873': 1, '1794': 1, '1927': 4, '1979': 1, '1800': 1, '1819': 1, '1865': 8, '1772': 3, '1852': 1, '2007': 9, '1817': 1, '1991': 2, '1956': 2, '1874': 2, '1998': 4, '1727': 1, '1929': 1, '1886': 2, '1875': 1}
aediun_NOUN {'1926': 1, '1976': 1, '1953': 3, '1963': 1, '1959': 2, '1965': 1, '1952': 2, '1515': 1, '1936': 1, '1931': 1, '1993': 1, '1989': 2, '1935': 1, '1958': 3, '1947': 5, '1939': 1, '1955': 1, '1954': 4, '1951': 3, '1937': 1, '1934': 1, '1977': 1, '1971': 1, '1962': 1, '1945': 1, '1942': 2, '1956': 3, '1949': 2, '1929': 1, '1960': 3, '1979': 2, '1941': 2}
accouchant_X {'1961': 1, '1913': 1, '1973': 2, '2000': 3, '1976': 3, '1982': 2, '1972': 1, '1965': 1, '1996': 1, '2008': 2, '2005': 1, '1968': 2, '1966': 2, '1969': 1, '1975': 1, '2003': 2, '1991': 1, '1871': 3, '1974': 2, '1940': 4, '1905': 1, '2001': 1, '1994': 4, '2007': 1, '1938': 2, '2004': 3, '1970': 1, '2002': 2, '1988': 1, '1986': 1, '1995': 1, '1929': 2, '1981': 1}
accidants_NOUN {'1984': 2, '1913': 1, '1973': 1, '1976': 1, '1982': 2, '1953': 1, '1980': 1, '1965': 1, '1952': 1, '1941': 1, '1992': 2, '1950': 1, '1978': 1, '1999': 1, '1958': 1, '1990': 1, '1935': 1, '1994': 5, '1933': 1, '1979': 2, '1832': 1, '1962': 2, '2004': 1, '1991': 2, '2002': 4, '1985': 3, '1986': 2, '1998': 2, '1907': 1, '1970': 1, '1983': 1}
acknowledgeable_NOUN {'1984': 4, '2003': 4, '1982': 2, '1972': 2, '1952': 1, '2005': 8, '1958': 2, '1950': 2, '1978': 2, '1975': 1, '2001': 8, '1974': 2, '1987': 2, '1997': 1, '1970': 1, '1962': 1, '2004': 2, '2002': 1, '1995': 1, '1937': 3, '1969': 3, '1999': 6, '1973': 2, '1976': 1, '1953': 1, '1992': 2, '1861': 1, '1967': 2, '1989': 3, '2000': 4, '1946': 1, '1993': 3, '1990': 1, '1996': 8, '2007': 1, '1980': 1, '1971': 3, '1938': 3, '2006': 11, '2008': 3, '1977': 4, '1991': 2, '1988': 1, '1955': 1, '1998': 4, '1979': 1}
abstulissent {'1878': 3, '1869': 1, '2003': 2, '1882': 3, '1860': 2, '1965': 1, '1872': 3, '1928': 1, '1864': 2, '1936': 1, '1827': 1, '1967': 1, '1866': 1, '1839': 1, '1828': 2, '2000': 2, '2007': 1, '1904': 1, '1848': 4, '1880': 2, '1884': 1, '2005': 1, '1856': 1, '1911': 2, '1976': 1, '1951': 3, '1900': 4, '1926': 1, '1960': 1, '1899': 6, '1845': 2, '1853': 6, '2004': 1, '1888': 1, '1855': 3, '1863': 2, '1895': 1, '1937': 2, '1886': 1, '1989': 1, '1835': 1}
aetioallobilianic_ADJ {'1992': 59, '1937': 1, '1941': 1, '2002': 1, '1987': 1}
acceptance.13 {'1984': 5, '2003': 8, '1945': 1, '1982': 5, '1972': 6, '1965': 2, '1952': 4, '1959': 6, '1917': 1, '1944': 1, '1996': 8, '2005': 9, '1983': 10, '1975': 5, '2001': 14, '1912': 4, '1974': 4, '1999': 4, '1957': 8, '1964': 4, '1908': 1, '2004': 16, '1988': 5, '2002': 11, '1985': 2, '1986': 4, '1995': 7, '2007': 13, '1970': 6, '1987': 4, '1961': 1, '1903': 2, '1973': 3, '1976': 6, '1953': 1, '1963': 3, '1979': 3, '1992': 6, '2006': 20, '1968': 2, '1966': 1, '1989': 9, '1935': 1, '2000': 14, '1946': 2, '1958': 4, '1991': 2, '1915': 2, '1947': 1, '1997': 8, '1990': 2, '1955': 1, '1994': 15, '1951': 2, '1918': 1, '1926': 1, '1980': 5, '1971': 8, '1938': 1, '1993': 10, '2008': 9, '1977': 3, '1969': 4, '1956': 1, '1967': 3, '1919': 6, '1998': 13, '1960': 3, '1981': 3, '1941': 1}
adsorbierter_X {'1984': 9, '1961': 3, '1990': 2, '1976': 3, '1982': 2, '1963': 6, '1965': 3, '1987': 1, '1959': 1, '2005': 1, '1968': 3, '1989': 1, '1978': 7, '1975': 1, '1999': 1, '1995': 6, '1940': 1, '1939': 4, '1996': 1, '1994': 1, '1944': 2, '1930': 4, '1979': 1, '2006': 1, '1938': 2, '1962': 12, '1969': 2, '1972': 2, '1988': 1, '1949': 3, '1929': 4, '1960': 1, '1981': 1, '1983': 1}
abuse.53_NOUN {'1961': 1, '2001': 2, '2003': 3, '1997': 3, '1977': 2, '1987': 1, '1992': 4, '2005': 5, '1958': 1, '2000': 2, '1986': 2, '1993': 1, '2008': 1, '1990': 3, '1996': 2, '1994': 1, '1964': 2, '1979': 1, '2006': 3, '2004': 4, '1999': 3, '2002': 5, '1988': 1, '1946': 1, '2007': 4, '1969': 1}
accentual_VERB {'1913': 3, '1927': 1, '1869': 3, '2003': 2, '1982': 1, '1972': 3, '1965': 10, '1959': 3, '1917': 1, '2005': 4, '1978': 3, '1975': 6, '1898': 3, '2001': 1, '1974': 1, '1916': 3, '1957': 2, '1997': 4, '1962': 1, '1914': 1, '2004': 2, '1932': 1, '2002': 2, '1985': 2, '1986': 4, '1995': 5, '1937': 1, '1921': 7, '1970': 1, '1999': 3, '1928': 4, '1973': 4, '1842': 3, '1953': 1, '1963': 3, '1992': 2, '1923': 1, '1931': 1, '1968': 4, '1989': 3, '2000': 3, '1910': 1, '1993': 1, '1948': 1, '1900': 3, '1990': 5, '1996': 3, '1994': 1, '2007': 3, '1926': 2, '1979': 1, '1971': 9, '2006': 1, '2008': 7, '1969': 2, '1956': 2, '1988': 1, '1980': 2, '1998': 4, '1960': 1, '1981': 1, '1983': 1}
admiration.11 {'1984': 4, '1869': 1, '2003': 1, '1982': 1, '1972': 2, '1826': 1, '1952': 1, '2005': 6, '1944': 1, '1983': 2, '1974': 1, '1939': 3, '1850': 1, '1824': 1, '1964': 7, '1838': 1, '1890': 1, '2004': 6, '1932': 5, '2002': 3, '1825': 2, '2007': 5, '1970': 1, '1993': 1, '1965': 2, '1973': 2, '1844': 1, '1976': 2, '1867': 1, '1996': 2, '1923': 1, '2006': 2, '1968': 1, '1966': 1, '1935': 3, '2000': 3, '1969': 1, '1958': 1, '1880': 1, '1948': 2, '1997': 1, '1955': 1, '1954': 3, '1854': 1, '1979': 4, '1831': 1, '1904': 2, '1849': 1, '1837': 1, '1977': 2, '1888': 1, '1988': 1, '1980': 1, '1907': 5, '1991': 4, '1978': 1}
affactiva_NOUN {'1984': 1, '1973': 1, '2003': 1, '1982': 2, '1953': 1, '1972': 3, '1992': 1, '2005': 1, '1968': 1, '1985': 5, '1989': 2, '1983': 1, '2000': 1, '1993': 1, '1915': 1, '1974': 4, '1997': 12, '1990': 1, '1994': 1, '1951': 1, '1987': 1, '1980': 2, '1970': 1, '2006': 2, '2004': 2, '1969': 2, '2002': 1, '1988': 2, '1986': 4, '1998': 2, '2007': 1, '1991': 1, '1978': 2}
activities.129_NOUN {'1984': 3, '1967': 1, '2001': 4, '2003': 11, '1976': 1, '1997': 3, '1992': 1, '1959': 1, '2008': 7, '2005': 2, '1968': 1, '1966': 2, '1989': 1, '2000': 10, '1998': 5, '1990': 1, '1996': 5, '1994': 3, '1987': 2, '1977': 1, '2006': 5, '1970': 3, '1962': 1, '1945': 1, '2004': 2, '1988': 1, '2002': 6, '1985': 1, '1995': 4, '2007': 6, '1960': 2, '1991': 1, '1999': 6}
aenus {'1984': 6, '2003': 8, '1982': 7, '1965': 6, '1752': 2, '1952': 1, '1959': 7, '2005': 5, '1993': 2, '1962': 6, '1983': 1, '1975': 34, '1898': 13, '1943': 1, '1902': 4, '1887': 1, '1939': 2, '1905': 3, '1891': 5, '1820': 1, '1884': 4, '1930': 3, '1890': 1, '1853': 1, '2004': 8, '1932': 7, '1986': 10, '1873': 1, '1921': 1, '1903': 4, '1973': 1, '1953': 2, '1963': 1, '1996': 6, '1839': 1, '2006': 7, '1747': 1, '1966': 4, '1989': 8, '1935': 1, '1958': 1, '1915': 1, '1900': 2, '1954': 19, '1994': 10, '1937': 2, '1977': 5, '1971': 5, '1847': 3, '1852': 2, '1817': 1, '1969': 2, '1980': 12, '1949': 8, '1970': 3, '1929': 1, '1913': 4, '1834': 1, '1972': 1, '1881': 1, '1936': 1, '1901': 3, '1978': 7, '1897': 2, '1974': 1, '1940': 2, '1850': 1, '1987': 37, '1964': 3, '1821': 1, '1899': 2, '1908': 1, '2002': 14, '1985': 8, '1995': 6, '2007': 17, '1922': 1, '1999': 11, '1961': 2, '2001': 9, '1882': 1, '1840': 3, '1992': 3, '1931': 5, '1968': 3, '2000': 11, '1910': 1, '1876': 2, '1947': 1, '1997': 6, '1990': 8, '1955': 3, '1911': 1, '1951': 11, '1933': 1, '1927': 1, '1979': 3, '1831': 1, '1907': 2, '1998': 9, '2008': 10, '1991': 18, '1988': 5, '1790': 1, '1981': 6}
abstrusen {'1984': 2, '1961': 3, '1973': 2, '2003': 2, '1976': 4, '1972': 4, '2008': 1, '2005': 4, '1985': 2, '1966': 2, '1989': 1, '1978': 4, '2000': 3, '1904': 4, '1991': 2, '1902': 1, '1912': 1, '1892': 1, '1998': 3, '1990': 4, '2001': 1, '1987': 1, '1994': 4, '1971': 2, '2006': 4, '2004': 1, '1970': 3, '2002': 3, '1963': 1, '1967': 2, '1986': 2, '1995': 2, '2007': 6, '1981': 2, '1999': 2}
abstinentiae_DET {'1913': 2, '1834': 2, '2003': 1, '1997': 2, '1845': 4, '1996': 1, '1826': 7, '1872': 3, '2008': 1, '1917': 1, '1950': 2, '2005': 2, '1848': 1, '1902': 1, '1836': 1, '1897': 1, '1808': 1, '1908': 1, '1905': 1, '1912': 5, '1823': 3, '1824': 2, '1814': 3, '1889': 1, '1914': 1, '2004': 1, '1932': 1, '1995': 1, '1957': 1, '1942': 2, '1928': 1, '1883': 4, '1867': 2, '1963': 1, '1987': 2, '1828': 1, '1948': 1, '1861': 1, '1968': 3, '1962': 1, '1989': 1, '2000': 1, '1993': 1, '1803': 1, '1884': 9, '1947': 1, '1827': 6, '1909': 2, '1829': 3, '1994': 1, '1920': 3, '1926': 1, '1979': 1, '1921': 2, '2006': 5, '1858': 1, '1893': 2, '1988': 3, '1886': 1, '1991': 4}
acceptance.1_VERB {'1877': 2, '1961': 3, '1965': 3, '1973': 1, '2003': 1, '1997': 1, '1984': 1, '1903': 1, '1992': 1, '1948': 1, '2005': 3, '1968': 3, '1966': 1, '1985': 1, '1989': 1, '1983': 1, '1975': 4, '1993': 2, '2008': 1, '1897': 2, '1947': 2, '1974': 2, '1990': 4, '1996': 1, '1954': 1, '1957': 1, '1964': 3, '1979': 3, '2006': 5, '1962': 1, '2004': 2, '1999': 1, '1967': 1, '1986': 1, '1995': 1, '2007': 1, '1922': 3, '1978': 2}
activitat_ADP {'1997': 1, '1990': 4, '1905': 1, '1973': 1, '2002': 2, '1976': 1, '1987': 3, '1996': 1, '1994': 2, '1992': 3, '2006': 1, '2005': 10, '2003': 3, '1989': 1, '1999': 2, '2000': 1, '1988': 1, '2001': 5, '1995': 4, '2007': 2}
aerospatiale_DET {'1984': 2, '1990': 4, '2003': 2, '2002': 1, '1987': 2, '2005': 1, '1991': 2, '1994': 6, '1977': 1, '1971': 1, '1992': 1, '1993': 1, '1985': 5, '1989': 9, '1981': 1, '2000': 2, '1997': 3, '1988': 3, '1986': 9, '1998': 1, '1974': 1}
acid.108 {'1997': 2, '1972': 2, '2005': 1, '1944': 1, '1950': 5, '1978': 1, '1975': 1, '1943': 1, '1940': 1, '1939': 2, '1964': 1, '2004': 4, '1932': 3, '1985': 4, '2007': 2, '1970': 1, '1973': 2, '1949': 2, '1953': 2, '1992': 2, '1948': 1, '2006': 5, '1966': 2, '1989': 4, '2000': 1, '1993': 1, '1991': 1, '1947': 1, '1990': 2, '1996': 4, '2001': 1, '1954': 3, '1926': 1, '1977': 1, '1971': 2, '2008': 4, '1999': 1, '1917': 2, '1956': 1, '1988': 1, '1946': 2, '1998': 1, '1960': 2, '1981': 3, '1983': 1}
aerarii {'1818': 7, '1860': 1, '1903': 5, '1872': 17, '1952': 62, '1959': 15, '1917': 27, '1958': 11, '1975': 28, '1902': 36, '1889': 8, '1905': 5, '1856': 6, '1908': 33, '1820': 1, '1884': 26, '1930': 6, '1890': 12, '1945': 2, '1853': 73, '1932': 19, '1863': 3, '1937': 14, '1921': 12, '1822': 4, '1835': 3, '1877': 2, '1965': 65, '1963': 63, '1765': 1, '1805': 1, '1864': 11, '1985': 15, '1966': 51, '1941': 6, '1880': 12, '1915': 5, '1900': 12, '1871': 16, '2005': 102, '1954': 26, '2007': 83, '1934': 7, '1847': 2, '1938': 13, '1993': 30, '1817': 2, '1922': 8, '1956': 3, '1919': 19, '1949': 22, '1830': 3, '1875': 6, '1972': 66, '1881': 1, '1996': 36, '1950': 5, '1978': 24, '1745': 2, '1916': 16, '1824': 4, '1837': 34, '2002': 75, '1995': 23, '1885': 6, '1865': 8, '1970': 44, '2001': 18, '1882': 17, '1939': 26, '1859': 4, '1828': 2, '1968': 59, '1783': 1, '1848': 9, '1923': 64, '1906': 56, '1931': 10, '1955': 16, '1911': 91, '1815': 2, '1951': 30, '1933': 11, '1925': 10, '1927': 10, '1806': 1, '1849': 28, '1858': 4, '1946': 16, '1895': 21, '1981': 8, '1851': 12, '1984': 14, '1967': 17, '1869': 54, '2003': 69, '1982': 43, '1845': 10, '2004': 69, '1862': 1, '1894': 38, '1944': 3, '1813': 1, '1983': 37, '1898': 7, '1943': 9, '1836': 3, '1892': 7, '1887': 23, '1840': 4, '1891': 19, '1857': 9, '1814': 2, '1846': 2, '1942': 12, '1986': 23, '1873': 6, '1823': 3, '1878': 8, '1883': 70, '1844': 31, '1953': 65, '1778': 2, '1839': 1, '2006': 71, '1804': 4, '1989': 43, '1935': 44, '1879': 67, '1924': 15, '1904': 5, '1768': 1, '1909': 52, '1829': 1, '1998': 44, '1994': 36, '1918': 6, '1854': 3, '1977': 13, '1971': 49, '1852': 23, '1901': 205, '1893': 8, '1999': 73, '1797': 1, '1874': 20, '1980': 79, '1960': 64, '1913': 8, '1834': 8, '1870': 11, '1929': 18, '1826': 2, '1936': 20, '1866': 20, '1973': 37, '1912': 60, '1897': 18, '1868': 1, '1940': 9, '1850': 9, '1764': 1, '1816': 2, '1964': 18, '1838': 3, '1899': 21, '1914': 22, '1974': 20, '1825': 1, '1969': 56, '1987': 24, '1961': 31, '1928': 26, '1976': 45, '1867': 1, '1992': 35, '1948': 5, '1896': 1, '1988': 30, '1962': 22, '2000': 37, '1910': 6, '1876': 11, '1947': 14, '1997': 29, '1990': 40, '1920': 11, '1926': 33, '1979': 10, '1957': 7, '1886': 43, '2008': 168, '1855': 4, '1907': 18, '1991': 26}
accmnulated_VERB {'1903': 1, '2001': 3, '1976': 1, '1990': 1, '1963': 1, '1965': 1, '2006': 2, '1959': 1, '2008': 1, '2005': 1, '1968': 1, '1966': 1, '1941': 1, '2003': 1, '1999': 3, '1993': 1, '1943': 1, '1998': 1, '1939': 1, '1996': 2, '1916': 1, '1954': 1, '1926': 1, '1980': 1, '1962': 1, '1945': 1, '2004': 3, '1991': 1, '1967': 1, '1924': 1, '1995': 1, '2007': 1, '1960': 1, '1969': 1, '1978': 1}
adjuvabit_X {'1984': 1, '1967': 1, '1913': 1, '1927': 1, '1931': 2, '1972': 1, '1826': 3, '1952': 1, '2005': 1, '1866': 1, '2001': 1, '1836': 3, '1887': 3, '1868': 1, '1962': 2, '1856': 3, '1976': 2, '1820': 1, '1964': 4, '2006': 2, '1947': 1, '1899': 1, '1915': 1, '2004': 3, '1843': 2, '1985': 1, '1863': 3, '2007': 8, '1823': 1, '1969': 1, '1932': 1, '1877': 1, '1961': 1, '1928': 1, '1784': 1, '1883': 2, '1842': 3, '1811': 3, '1748': 1, '1828': 1, '1827': 1, '1855': 1, '1769': 1, '1910': 3, '1958': 3, '1803': 1, '1841': 3, '1900': 2, '1906': 5, '1896': 5, '1996': 1, '1829': 8, '1768': 1, '1815': 2, '1920': 1, '1894': 1, '1979': 1, '1921': 1, '1772': 1, '2008': 8, '1893': 2, '1999': 1, '1924': 3, '1874': 1, '1938': 2, '1830': 2, '1886': 2, '1991': 1, '1935': 2}
actors.15_NOUN {'1984': 2, '1961': 1, '1973': 1, '2003': 5, '1982': 2, '1972': 1, '2005': 14, '1992': 4, '2008': 10, '1931': 1, '1968': 2, '1966': 1, '1989': 1, '1983': 2, '2000': 10, '1969': 2, '1993': 3, '1991': 2, '1998': 14, '1974': 1, '1997': 8, '1990': 6, '1996': 13, '1994': 7, '2001': 16, '1987': 3, '1999': 9, '1933': 3, '1964': 2, '1980': 3, '1971': 2, '2006': 25, '1988': 2, '2004': 6, '1932': 1, '2002': 9, '1985': 1, '1986': 5, '1995': 6, '2007': 14, '1970': 3, '1978': 3}
adresata {'1984': 5, '1967': 1, '1973': 2, '1976': 4, '1982': 8, '1980': 1, '1972': 3, '1992': 3, '2008': 3, '2005': 13, '1985': 1, '1978': 3, '2000': 16, '1999': 12, '1993': 4, '1991': 5, '1998': 5, '1997': 1, '1990': 12, '1996': 5, '1994': 1, '2001': 14, '1987': 5, '1964': 1, '1979': 3, '1971': 1, '2006': 5, '1962': 2, '2004': 13, '1977': 3, '1970': 3, '2002': 4, '1988': 13, '1986': 4, '1995': 9, '2007': 6, '1981': 2, '1983': 6}
administratior {'1789': 1, '1984': 4, '1857': 1, '2003': 6, '1982': 11, '1845': 1, '1903': 1, '1872': 2, '1952': 7, '1959': 5, '2005': 5, '1993': 9, '1975': 5, '1898': 1, '1943': 1, '1902': 1, '1836': 1, '1939': 1, '1905': 1, '1870': 1, '1945': 1, '1930': 1, '1890': 1, '1860': 3, '2004': 9, '1942': 1, '1986': 8, '1873': 1, '1921': 1, '1833': 1, '1877': 1, '1878': 1, '1965': 4, '1973': 9, '1844': 2, '1842': 1, '1953': 1, '1963': 8, '1955': 3, '1864': 1, '2006': 9, '1966': 5, '1754': 1, '1935': 1, '1999': 5, '1958': 4, '1880': 1, '1841': 1, '1954': 2, '1994': 10, '1951': 3, '1977': 4, '1971': 3, '1950': 2, '1893': 1, '1922': 2, '1956': 6, '1967': 2, '1980': 5, '1949': 1, '1970': 2, '1960': 4, '1875': 1, '1779': 1, '1913': 4, '1989': 9, '1972': 5, '1936': 1, '1996': 9, '1901': 2, '1978': 9, '1883': 1, '1912': 2, '1866': 1, '1974': 7, '1916': 2, '1758': 2, '1957': 6, '1964': 3, '1899': 1, '1908': 1, '2008': 6, '1987': 6, '2002': 11, '1985': 1, '1995': 5, '2007': 7, '1969': 6, '1888': 1, '1961': 1, '1928': 1, '2001': 9, '1976': 12, '1992': 8, '1948': 1, '1896': 1, '1968': 2, '2000': 5, '1923': 2, '1947': 2, '1997': 6, '1990': 9, '1906': 1, '1854': 1, '1920': 2, '1925': 2, '1894': 1, '1979': 2, '1998': 6, '1858': 3, '1991': 4, '1988': 4, '1946': 1, '1895': 1, '1981': 3}
accommodatethe {'2001': 5, '2000': 1, '1997': 1, '1979': 1, '2008': 13, '2006': 12, '1967': 1, '1989': 4, '1978': 2, '2003': 3, '1898': 1, '1943': 1, '1884': 1, '1808': 1, '2005': 1, '1824': 1, '1980': 1, '2004': 3, '2002': 2, '1988': 1, '1986': 1, '2007': 21, '1822': 1}
advaneo {'1878': 1, '1927': 2, '1869': 1, '1867': 1, '1860': 1, '1959': 1, '1881': 1, '1952': 1, '1864': 10, '2008': 8, '1827': 1, '1950': 1, '1935': 1, '2005': 1, '1986': 1, '1880': 2, '1912': 1, '1897': 1, '1917': 1, '1857': 1, '1865': 3, '2006': 2, '1866': 1, '1888': 1, '1956': 1, '1967': 1, '1863': 1, '1895': 1, '1886': 2, '1991': 1, '1999': 1}
acquisitionism {'2001': 2, '1939': 1, '1976': 1, '1997': 12, '1972': 1, '1965': 6, '1992': 1, '2005': 1, '1968': 2, '1989': 1, '2000': 1, '1993': 3, '1990': 2, '1996': 1, '1994': 2, '1982': 1, '2006': 8, '1914': 2, '2008': 8, '1999': 4, '2002': 1, '1986': 2, '1998': 13, '1991': 1}
acomodation {'1984': 1, '2003': 9, '1857': 1, '2000': 4, '1997': 4, '1860': 3, '1972': 1, '2008': 3, '2005': 3, '1993': 4, '1901': 4, '1983': 1, '1978': 1, '1975': 3, '2004': 5, '1892': 3, '1868': 1, '1987': 1, '1964': 2, '1899': 4, '1908': 1, '1846': 6, '1988': 2, '2002': 7, '1985': 2, '1924': 1, '1995': 5, '2007': 3, '1823': 4, '1922': 1, '1999': 2, '1877': 2, '1961': 1, '1928': 1, '2001': 2, '1976': 1, '1963': 1, '1992': 7, '1861': 1, '1968': 1, '1991': 2, '1989': 4, '1941': 1, '1879': 1, '1958': 1, '1848': 2, '1884': 2, '1990': 1, '1996': 2, '1875': 2, '1994': 2, '1920': 4, '1925': 5, '1980': 5, '1971': 1, '1886': 13, '2006': 8, '1849': 1, '1837': 1, '1977': 1, '1970': 5, '1956': 2, '1874': 1, '1998': 3, '1830': 1, '1907': 5, '1981': 2, '1851': 6}
abstraction3 {'1928': 1, '1973': 2, '2003': 3, '1976': 1, '1982': 1, '1972': 1, '1872': 1, '1992': 3, '2008': 1, '1917': 3, '1950': 3, '1989': 1, '1969': 1, '2000': 2, '2006': 3, '2001': 1, '1912': 1, '1900': 2, '1998': 4, '1997': 3, '1990': 1, '1994': 5, '1964': 1, '1971': 1, '1847': 1, '1962': 1, '2004': 1, '1932': 4, '2002': 2, '1956': 1, '1986': 1, '1949': 1, '2007': 3, '1921': 4, '1970': 1}
affuso_X {'1793': 1, '1779': 1, '2003': 5, '1810': 2, '2008': 2, '1827': 2, '1750': 1, '1975': 2, '1910': 1, '1876': 1, '1902': 1, '1870': 2, '1868': 2, '1990': 1, '1836': 1, '1976': 1, '1852': 1, '1832': 1, '1925': 3, '1994': 1, '1979': 1, '1843': 1, '2006': 1, '1908': 1, '1853': 1, '2004': 2, '1786': 2, '1825': 2, '1998': 1, '2007': 2, '1865': 3}
adventurestory {'1984': 5, '1927': 2, '2003': 4, '1982': 3, '1980': 6, '1977': 4, '1965': 2, '1952': 2, '1959': 1, '1922': 2, '2005': 3, '1944': 3, '1996': 2, '1950': 1, '1978': 2, '1975': 2, '1943': 1, '1974': 2, '1940': 1, '1939': 4, '1957': 4, '1964': 3, '1962': 1, '2004': 6, '1988': 5, '2002': 2, '1972': 3, '1985': 3, '1924': 6, '1937': 2, '1970': 5, '1999': 3, '1961': 1, '1928': 3, '1973': 9, '2008': 2, '1953': 2, '1963': 1, '1987': 2, '1923': 2, '2006': 3, '1968': 6, '1935': 1, '2000': 1, '1986': 5, '1958': 3, '1991': 4, '1992': 1, '1997': 1, '1990': 1, '1909': 8, '1994': 1, '2001': 1, '1954': 1, '1951': 3, '1934': 1, '1979': 2, '1971': 1, '1938': 4, '1993': 3, '1901': 2, '1969': 1, '1967': 3, '1946': 1, '1949': 3, '1895': 1, '1981': 2}
adonai_ADJ {'1877': 1, '1984': 1, '1878': 1, '2001': 3, '2003': 1, '1976': 1, '2008': 10, '1953': 1, '1979': 2, '1985': 4, '1987': 5, '1959': 1, '1992': 3, '2005': 2, '1944': 25, '1866': 3, '1989': 1, '2000': 2, '1904': 1, '1991': 3, '1870': 2, '1990': 2, '1882': 1, '1804': 4, '1964': 25, '1977': 2, '2006': 5, '1993': 3, '1945': 3, '2004': 5, '1988': 7, '2002': 1, '1956': 3, '1874': 1, '1946': 21, '1995': 2, '2007': 5, '1865': 5, '1969': 5, '1999': 1}
accentual_ADJ {'1791': 12, '1984': 853, '1818': 21, '1860': 130, '1838': 6, '1784': 15, '1775': 58, '1952': 219, '1959': 320, '1917': 77, '1958': 338, '1781': 6, '1975': 1431, '1902': 132, '1799': 6, '1889': 17, '1905': 61, '1856': 14, '1914': 228, '1820': 7, '1884': 114, '1930': 218, '1890': 96, '1845': 56, '1853': 68, '1861': 89, '1776': 3, '1863': 74, '1937': 229, '1921': 452, '1822': 28, '1835': 40, '1877': 72, '1903': 196, '1842': 98, '1872': 26, '1811': 52, '1765': 6, '1909': 199, '1864': 33, '1792': 21, '1985': 1094, '1966': 1002, '1754': 2, '1941': 92, '1880': 130, '1915': 118, '1900': 449, '1871': 86, '2005': 1101, '1801': 11, '1954': 278, '2007': 1555, '1934': 325, '1957': 852, '1847': 40, '1938': 385, '1993': 1598, '1837': 29, '1888': 49, '1956': 166, '1919': 257, '1949': 347, '1830': 19, '1875': 28, '1779': 26, '1972': 840, '1787': 48, '1881': 63, '1796': 8, '1996': 2694, '1901': 525, '1978': 953, '1916': 82, '1824': 23, '1973': 1058, '1892': 159, '1841': 9, '1817': 9, '2002': 1454, '1802': 1, '1885': 83, '1865': 12, '1922': 159, '1798': 3, '2001': 2002, '1882': 76, '1939': 402, '1859': 23, '1828': 5, '1809': 11, '1827': 70, '1874': 108, '1783': 1, '1848': 34, '1948': 192, '1814': 12, '1931': 214, '1955': 329, '1911': 406, '1815': 2, '1854': 19, '1933': 103, '1925': 285, '1927': 227, '1806': 24, '1819': 21, '1849': 26, '1858': 39, '1946': 185, '1895': 46, '1981': 606, '1851': 11, '1789': 3, '1967': 557, '1869': 54, '2003': 1714, '1810': 18, '1982': 839, '1807': 8, '2004': 1424, '1862': 81, '1894': 41, '1944': 190, '1813': 3, '1983': 834, '1898': 359, '1943': 157, '1836': 9, '1785': 11, '1887': 100, '1840': 27, '1891': 43, '1945': 105, '1857': 10, '1906': 153, '1846': 53, '1942': 110, '1986': 2584, '1873': 36, '1843': 20, '1774': 65, '1878': 65, '1883': 103, '1844': 157, '1953': 277, '1987': 1846, '1839': 28, '2006': 1682, '1804': 73, '1989': 1034, '1935': 363, '1879': 61, '1924': 97, '1904': 207, '1812': 3, '1805': 11, '1829': 7, '1998': 1303, '1994': 979, '1918': 445, '1968': 720, '1951': 320, '1977': 733, '1971': 977, '1823': 12, '1852': 12, '1950': 257, '1893': 73, '1999': 2221, '1797': 2, '1795': 1, '1980': 885, '1995': 1481, '1970': 1134, '1960': 553, '1913': 164, '1834': 23, '1870': 31, '1929': 66, '1826': 10, '1782': 2, '1936': 331, '1866': 19, '1833': 153, '1932': 446, '1912': 241, '1897': 205, '1808': 6, '1868': 15, '1940': 92, '1850': 30, '1788': 2, '1816': 2, '1964': 639, '1821': 25, '1965': 1075, '1899': 115, '1908': 226, '1974': 771, '1963': 392, '1825': 19, '1832': 5, '1969': 909, '1961': 513, '1928': 270, '1976': 1131, '1867': 132, '1992': 1845, '1923': 583, '1896': 48, '1988': 1559, '1962': 755, '2000': 1251, '1910': 235, '1876': 40, '1803': 2, '1947': 369, '1997': 1436, '1990': 1091, '1920': 185, '1926': 138, '1979': 707, '1800': 6, '1831': 12, '1886': 52, '2008': 2151, '1786': 1, '1855': 132, '1907': 216, '1991': 866}
adaptaciĂłn_NOUN {'1984': 2, '1964': 1, '2001': 3, '2003': 5, '1997': 4, '1953': 1, '1972': 1, '1958': 1, '1992': 3, '2008': 1, '2005': 2, '1968': 2, '1966': 1, '1989': 1, '1978': 5, '2000': 3, '1993': 1, '1998': 6, '1974': 1, '1990': 207, '1996': 3, '1954': 2, '1994': 5, '1951': 2, '1979': 2, '1971': 1, '2006': 12, '2004': 3, '2002': 1, '1995': 3, '1885': 1, '1991': 1, '1987': 3}
acidcleaned {'1984': 3, '1964': 7, '2003': 5, '1982': 4, '1979': 8, '1965': 4, '2005': 13, '1958': 2, '1950': 2, '1978': 4, '1975': 1, '2001': 9, '1974': 2, '1987': 1, '1997': 6, '1970': 3, '1962': 1, '2004': 5, '2002': 9, '1985': 2, '1986': 12, '1995': 5, '2007': 8, '1969': 1, '1999': 6, '1928': 1, '1973': 2, '1976': 7, '1963': 1, '1992': 7, '1948': 1, '2006': 5, '1967': 2, '1966': 1, '1989': 8, '2000': 7, '1910': 1, '1993': 7, '1990': 10, '1996': 2, '1994': 6, '1957': 3, '1980': 7, '1971': 1, '2008': 1, '1991': 1, '1988': 1, '1946': 1, '1998': 12, '1981': 3, '1983': 2}
accoutum6 {'1961': 2, '1834': 1, '1987': 1, '1963': 1, '1965': 1, '1979': 1, '1959': 2, '1809': 1, '1861': 1, '1985': 2, '1902': 1, '2007': 1, '1941': 1, '1975': 1, '1993': 1, '2008': 1, '1880': 1, '1912': 1, '1897': 1, '1906': 1, '1926': 1, '1990': 1, '1994': 1, '1998': 1, '1852': 1, '1933': 2, '1957': 1, '1977': 1, '1966': 3, '2006': 1, '1960': 2, '1962': 1, '1945': 2, '1849': 1, '2004': 2, '1893': 1, '1981': 1, '1855': 1, '1995': 1, '1937': 1, '1907': 1, '1875': 1, '1978': 1}
adimens {'1984': 3, '2001': 1, '1990': 1, '1860': 2, '1972': 3, '1979': 1, '1959': 1, '1861': 1, '1985': 2, '1966': 12, '1983': 2, '2000': 1, '1993': 1, '1998': 1, '1939': 2, '1852': 1, '2007': 2, '1987': 1, '1977': 1, '2006': 3, '1938': 2, '1899': 2, '1953': 1, '1849': 1, '1858': 1, '1893': 1, '1888': 1, '1967': 1, '1919': 2, '1995': 2, '1929': 2, '1991': 1, '1999': 1}
advised {'1740': 261, '1581': 35, '1718': 56, '1711': 132, '1775': 680, '1959': 36527, '1993': 106014, '1688': 80, '1902': 23688, '1735': 268, '1799': 1196, '1939': 23837, '1905': 24764, '1620': 2, '1698': 61, '1820': 5884, '1970': 70475, '1683': 191, '1640': 2, '1665': 6, '1776': 365, '1655': 7, '1924': 18191, '1658': 12, '1753': 494, '1876': 11780, '1762': 250, '1965': 57471, '1903': 22822, '1707': 67, '1752': 434, '1864': 9718, '1792': 1007, '1747': 396, '1966': 61702, '1662': 5, '1880': 14561, '1732': 122, '1884': 15445, '1871': 9685, '1594': 1, '1801': 2656, '1524': 2, '1737': 177, '1847': 9051, '1700': 27, '1772': 467, '1817': 3772, '1706': 84, '1833': 5506, '1783': 479, '1687': 49, '1587': 13, '1739': 346, '1716': 53, '1773': 636, '1787': 1059, '1881': 14491, '1671': 1, '1971': 68330, '1950': 27441, '1745': 118, '2001': 159699, '1699': 48, '1666': 1, '1758': 753, '1957': 34069, '1746': 128, '1682': 107, '1736': 104, '1780': 544, '1733': 211, '1713': 44, '1641': 1, '1691': 13, '1802': 2257, '2007': 227259, '1865': 9484, '1922': 25332, '1798': 1017, '1607': 6, '1724': 351, '1743': 233, '1635': 13, '1828': 5631, '1827': 5679, '1874': 10918, '1856': 13370, '1769': 494, '1684': 6, '1848': 9585, '1652': 4, '1771': 661, '1996': 123149, '1911': 25197, '1815': 3105, '1968': 69658, '1933': 17207, '1656': 64, '1927': 21820, '1819': 3674, '1632': 1, '1895': 16769, '1981': 69032, '1789': 855, '1967': 64179, '1717': 97, '1869': 9437, '1982': 72973, '1807': 2418, '2004': 212502, '1579': 10, '1862': 6780, '1694': 18, '1944': 15033, '1813': 3597, '1887': 14565, '1872': 9173, '1770': 523, '1840': 9453, '1891': 14035, '1945': 15311, '1626': 6, '1857': 11890, '1906': 25272, '1915': 22155, '1756': 215, '1668': 92, '1734': 361, '1738': 206, '1986': 85757, '1843': 7689, '1845': 9600, '1774': 429, '1650': 1, '1878': 10405, '1883': 17974, '1844': 7841, '1708': 48, '1778': 559, '1839': 8315, '1702': 110, '2006': 215711, '1804': 2424, '1989': 96209, '1935': 22821, '1958': 36285, '1768': 811, '1695': 13, '1680': 15, '1714': 116, '1909': 23995, '1659': 12, '1829': 6558, '1998': 131753, '1994': 113942, '1918': 17927, '1854': 11995, '1980': 73037, '1651': 10, '1741': 171, '1809': 2955, '1893': 14725, '1822': 6410, '1795': 805, '1835': 6642, '1759': 652, '1834': 5913, '1731': 356, '1826': 5337, '1782': 504, '1936': 22734, '2005': 200794, '1637': 21, '1912': 25162, '1722': 77, '1868': 9436, '1850': 9334, '1897': 17420, '1964': 50355, '1721': 122, '1889': 13292, '1760': 399, '1648': 28, '1963': 51955, '1825': 7348, '1961': 45884, '1675': 83, '1761': 559, '1644': 26, '1992': 111526, '1923': 20100, '1861': 8693, '1674': 2, '1910': 24956, '1803': 2127, '1623': 2, '1947': 24734, '1997': 124515, '1664': 1, '1667': 13, '1926': 18925, '1821': 4711, '2008': 287491, '1786': 722, '1754': 601, '1727': 326, '1886': 12848, '1991': 105754, '1791': 1163, '1818': 4589, '1860': 11481, '1755': 589, '1742': 215, '1784': 711, '1710': 119, '1952': 29578, '1917': 21265, '1725': 381, '1781': 531, '1750': 740, '1975': 62388, '1726': 160, '1962': 48121, '1841': 7049, '1584': 1, '1914': 23502, '1930': 22650, '1890': 14150, '1649': 15, '1853': 12015, '1520': 1, '1744': 308, '1863': 7250, '1937': 22381, '1921': 22181, '1563': 13, '1877': 11631, '1643': 9, '1842': 6704, '1811': 3802, '1765': 372, '1709': 51, '1985': 81346, '1645': 1, '1941': 19562, '1678': 107, '1900': 24787, '1954': 28913, '1934': 19549, '1766': 740, '1728': 234, '1837': 6336, '1600': 5, '1956': 32146, '1919': 20322, '1949': 27888, '1929': 21194, '1875': 13236, '1779': 480, '1592': 4, '1704': 54, '1796': 2315, '1697': 54, '1685': 86, '1901': 23786, '1978': 70659, '1703': 81, '1938': 23298, '1564': 3, '1916': 20807, '1824': 6236, '1892': 15694, '1690': 7, '1757': 298, '2002': 173951, '1995': 119302, '1885': 16950, '1888': 13829, '1882': 14905, '1749': 161, '1777': 393, '1859': 10937, '1686': 47, '1677': 10, '1767': 631, '1870': 9456, '1814': 3951, '1896': 17844, '1955': 30577, '1669': 10, '1951': 28873, '1830': 6490, '1925': 19269, '1806': 2822, '1653': 12, '1849': 8782, '1858': 10219, '1681': 107, '1946': 21434, '1660': 1, '1720': 139, '1851': 10505, '1984': 81952, '1763': 589, '2003': 188952, '1810': 3639, '1696': 5, '1751': 532, '1673': 22, '1712': 29, '1983': 73559, '1723': 192, '1705': 57, '1898': 19399, '1943': 15739, '1836': 6798, '1785': 601, '1932': 20881, '1689': 25, '1715': 209, '1846': 8537, '1972': 69957, '1590': 6, '1621': 3, '1942': 18065, '1953': 27410, '1987': 89657, '1879': 11869, '1904': 25873, '1812': 4049, '1719': 84, '1670': 31, '1805': 2956, '1873': 8760, '1794': 1033, '1977': 67915, '1823': 5582, '1852': 10337, '1999': 138301, '1797': 1067, '1657': 7, '1960': 40582, '1748': 338, '1913': 24679, '1661': 2, '1672': 6, '1582': 8, '1866': 10502, '1654': 1, '1973': 66695, '1808': 3582, '1974': 65706, '1940': 21904, '1764': 478, '1788': 991, '1816': 4116, '1838': 7077, '1899': 21762, '1908': 25542, '1679': 56, '1832': 5210, '1969': 71390, '1793': 1096, '1928': 21795, '1729': 224, '1976': 67244, '1867': 8567, '1948': 25438, '1931': 22571, '1988': 92471, '1572': 5, '2000': 155644, '1730': 221, '1692': 148, '1676': 43, '1990': 102923, '1647': 2, '1701': 31, '1920': 23610, '1894': 15564, '1979': 70804, '1800': 1302, '1831': 5691, '1790': 923, '1624': 6, '1855': 11679, '1693': 24, '1907': 25840}
affetto_NOUN {'1984': 7, '2003': 16, '1810': 2, '1982': 7, '1807': 1, '1755': 1, '1862': 1, '1872': 4, '1996': 28, '2008': 29, '2005': 27, '1944': 4, '1983': 17, '1975': 8, '1898': 2, '1943': 1, '1836': 1, '1892': 1, '1887': 8, '1905': 5, '1891': 1, '1950': 7, '1930': 2, '1947': 3, '1945': 1, '1853': 2, '1846': 1, '1932': 1, '1863': 2, '1873': 2, '1823': 2, '1845': 2, '1878': 1, '1965': 10, '1973': 5, '1844': 1, '1990': 18, '1963': 8, '1987': 6, '1839': 1, '2006': 29, '1966': 7, '1989': 2, '1879': 2, '1986': 7, '1904': 1, '1841': 5, '1871': 1, '1829': 2, '1954': 4, '1994': 24, '2007': 24, '1794': 1, '1934': 3, '1977': 6, '1971': 2, '1847': 2, '1921': 1, '1993': 16, '1852': 2, '1901': 1, '1893': 1, '1970': 4, '1956': 4, '1967': 2, '1919': 3, '1949': 5, '1875': 1, '1913': 3, '1894': 3, '1896': 3, '1870': 1, '1972': 4, '1881': 2, '1866': 5, '1978': 4, '2004': 24, '2001': 10, '1912': 1, '1974': 9, '1850': 3, '1976': 9, '1957': 5, '1816': 1, '1964': 6, '1838': 3, '1951': 5, '1962': 11, '1908': 3, '1837': 3, '2002': 31, '1985': 16, '1802': 1, '1885': 2, '1969': 10, '1999': 11, '1961': 8, '1928': 1, '1980': 5, '1882': 1, '1867': 2, '1840': 7, '1859': 1, '1931': 2, '1968': 7, '1995': 21, '1864': 1, '2000': 11, '1910': 1, '1876': 5, '1916': 1, '1992': 11, '1923': 2, '1906': 1, '1997': 25, '1861': 2, '1955': 4, '1911': 3, '1815': 1, '1854': 1, '1998': 16, '1927': 6, '1979': 11, '1831': 1, '1849': 8, '1858': 1, '1991': 29, '1988': 7, '1946': 1, '1938': 4, '1907': 2, '1981': 11, '1851': 3}
acod {'1984': 3, '2003': 5, '1934': 8, '2000': 3, '1982': 2, '1972': 1, '1965': 2, '1959': 2, '1936': 4, '1917': 1, '1981': 1, '1996': 5, '1901': 1, '2005': 2, '1983': 3, '1975': 1, '1943': 1, '1912': 6, '1974': 4, '1905': 2, '1957': 1, '1973': 1, '1964': 1, '1962': 1, '1853': 1, '2004': 4, '1932': 1, '2002': 2, '1863': 2, '1995': 1, '1937': 2, '1986': 3, '1969': 1, '1987': 1, '1961': 1, '1883': 1, '1844': 1, '1963': 2, '1907': 4, '1979': 1, '1948': 12, '1931': 1, '1968': 2, '1966': 2, '1989': 8, '1935': 1, '1879': 1, '1924': 1, '1958': 1, '2008': 5, '1923': 1, '1997': 8, '1990': 2, '1955': 1, '1994': 7, '2001': 9, '1954': 1, '1951': 1, '1918': 1, '2007': 5, '1927': 1, '1977': 2, '1582': 1, '1938': 2, '2006': 7, '1920': 1, '1950': 3, '1970': 2, '1956': 3, '1988': 3, '1980': 2, '1998': 2, '1999': 3, '1929': 2, '1960': 6, '1875': 1, '1941': 2}
admin@kippra.or.ke {'2005': 13, '2006': 15, '2004': 18, '2001': 15, '2002': 7, '2003': 14, '2000': 3, '2007': 7, '2008': 2}
affermazioni_NOUN {'1984': 6, '1913': 4, '2003': 10, '1982': 3, '1972': 2, '1965': 3, '1996': 2, '2005': 6, '1993': 6, '1950': 2, '1983': 7, '1975': 3, '1898': 1, '1943': 2, '1974': 3, '1940': 1, '1987': 7, '1997': 5, '1962': 3, '2004': 2, '1861': 1, '2002': 3, '1985': 2, '1986': 5, '1995': 1, '2007': 6, '1957': 3, '1970': 4, '1999': 3, '1961': 8, '1973': 2, '1976': 4, '1992': 10, '1948': 1, '1931': 2, '1968': 4, '1966': 3, '1989': 2, '1935': 1, '2000': 8, '1958': 3, '1923': 1, '1990': 4, '1955': 1, '1994': 2, '2001': 5, '1951': 1, '1926': 1, '1979': 3, '1938': 1, '2006': 9, '2008': 2, '1981': 2, '1956': 2, '1988': 3, '1980': 1, '1998': 3, '1921': 1, '1991': 2, '1978': 5}
aegrum_X {'1818': 2, '1946': 4, '1821': 2, '1903': 3, '1872': 6, '1952': 8, '1959': 10, '1917': 5, '1993': 12, '1781': 8, '1975': 7, '1902': 3, '1939': 3, '1905': 3, '1856': 3, '1908': 4, '1820': 4, '1900': 3, '1930': 5, '1890': 3, '1845': 2, '1776': 1, '1924': 8, '1937': 2, '1921': 5, '1822': 1, '1835': 1, '1877': 1, '1965': 7, '1963': 14, '1811': 9, '1765': 1, '1909': 2, '1864': 1, '1825': 13, '1966': 4, '1941': 8, '1880': 6, '1915': 8, '1884': 1, '1926': 13, '2005': 20, '1954': 8, '2007': 33, '1934': 1, '1737': 4, '1938': 4, '1817': 3, '1888': 2, '1956': 9, '1949': 1, '1830': 6, '1972': 9, '1922': 4, '1950': 17, '1978': 9, '1899': 2, '1957': 14, '1841': 3, '1837': 2, '2002': 11, '1995': 22, '1885': 2, '1970': 1, '2001': 11, '1859': 1, '1828': 2, '1827': 4, '1968': 12, '1923': 1, '1814': 4, '1896': 15, '1955': 3, '1911': 2, '1768': 3, '1815': 2, '1951': 6, '1929': 1, '1925': 1, '1927': 17, '1806': 6, '1819': 1, '1858': 1, '1778': 1, '1981': 11, '1984': 39, '2003': 16, '1810': 7, '1982': 5, '1807': 4, '2004': 20, '1751': 2, '1944': 1, '1983': 17, '1898': 2, '1887': 5, '1840': 3, '1891': 3, '1945': 2, '1857': 3, '1906': 3, '1846': 4, '1942': 7, '1986': 22, '1873': 3, '1843': 1, '1752': 1, '1932': 5, '1883': 5, '1844': 5, '1953': 4, '1996': 8, '1839': 1, '2006': 20, '1804': 4, '1989': 7, '1935': 14, '1958': 15, '1812': 2, '1805': 6, '1998': 8, '1994': 9, '1918': 3, '1854': 4, '1980': 7, '1971': 13, '1823': 4, '1809': 6, '1893': 4, '1999': 163, '1967': 9, '1960': 3, '1852': 3, '1913': 14, '1834': 12, '1870': 1, '1977': 13, '1826': 4, '1782': 1, '1936': 3, '1973': 8, '1897': 1, '1808': 5, '1868': 4, '1940': 5, '1850': 1, '1816': 3, '1964': 31, '1838': 1, '1962': 2, '1914': 10, '1974': 3, '1985': 4, '1832': 4, '1969': 14, '1987': 22, '1961': 7, '1928': 6, '1976': 9, '1992': 4, '1948': 5, '1931': 13, '2000': 9, '1910': 8, '1876': 1, '1803': 1, '1947': 2, '1997': 22, '1990': 12, '1920': 4, '1824': 3, '1979': 14, '1800': 2, '1907': 2, '2008': 38, '1988': 9, '1886': 5, '1991': 6}
affirmed.4 {'1984': 5, '1857': 2, '1869': 3, '2003': 5, '1982': 4, '1965': 2, '1872': 1, '1952': 9, '1959': 9, '1854': 2, '1917': 3, '1904': 1, '1983': 2, '1975': 3, '1898': 2, '1943': 3, '1892': 3, '1887': 3, '1939': 8, '1905': 8, '1891': 1, '1930': 8, '1890': 1, '1945': 3, '1853': 1, '2004': 8, '1932': 24, '1986': 4, '1937': 10, '1921': 2, '1942': 2, '1883': 1, '1990': 2, '1963': 1, '1987': 8, '2006': 14, '1966': 3, '1989': 4, '1941': 14, '1958': 8, '1880': 2, '1915': 8, '2005': 9, '1909': 2, '2001': 9, '1954': 2, '1994': 7, '1918': 1, '1968': 2, '1934': 5, '1977': 2, '1971': 1, '1847': 2, '1938': 3, '1950': 11, '1893': 3, '1888': 2, '1956': 3, '1967': 15, '1919': 6, '1949': 5, '1970': 4, '1929': 14, '1960': 3, '1913': 9, '1927': 5, '1896': 3, '1972': 9, '1936': 22, '1996': 6, '1901': 3, '1978': 7, '1973': 1, '1912': 2, '1897': 2, '1974': 6, '1940': 22, '1916': 2, '1976': 5, '1957': 4, '1964': 5, '1889': 2, '1914': 1, '2002': 3, '1985': 5, '1995': 2, '2007': 6, '1865': 1, '1969': 1, '1999': 5, '1961': 1, '1928': 9, '1980': 1, '1882': 3, '1867': 2, '1992': 5, '1923': 11, '1931': 14, '1874': 1, '1856': 1, '2000': 10, '1910': 12, '1948': 10, '1947': 4, '1851': 1, '1997': 7, '1861': 2, '1906': 4, '1911': 9, '1951': 14, '1920': 1, '1933': 15, '1925': 5, '1926': 7, '1979': 5, '1998': 2, '2008': 3, '1991': 5, '1894': 2, '1988': 2, '1946': 15, '1895': 4, '1907': 1, '1981': 3, '1935': 10}
accusat1on_NOUN {'1928': 2, '1934': 1, '1973': 4, '1976': 1, '1953': 1, '1980': 2, '1959': 1, '1948': 1, '1896': 1, '1958': 2, '1902': 1, '1950': 1, '1978': 1, '1862': 1, '1904': 1, '1991': 1, '1880': 1, '1884': 1, '1906': 3, '2006': 1, '1909': 1, '1994': 1, '1981': 1, '1815': 2, '1824': 1, '1918': 4, '1968': 1, '1857': 1, '1977': 1, '1971': 1, '1951': 2, '1962': 2, '2008': 1, '1893': 1, '1888': 1, '1894': 1, '1985': 1, '1986': 2, '1895': 2, '1969': 1, '1983': 2}
acetylsn {'1984': 2, '2000': 2, '1992': 3, '2005': 1, '1988': 7, '1989': 7, '1983': 4, '2003': 2, '1993': 1, '1998': 3, '1990': 4, '1996': 2, '1987': 2, '1994': 3, '1979': 1, '2006': 2, '2004': 2, '1999': 1, '2002': 3, '1985': 7, '1995': 3, '1991': 3}
aegros_NOUN {'1973': 2, '2003': 1, '1842': 1, '1997': 1, '1807': 1, '1980': 2, '2008': 2, '2005': 2, '1944': 1, '1950': 3, '1978': 4, '2000': 2, '1910': 1, '1892': 2, '1808': 1, '1940': 1, '2006': 1, '1955': 4, '1829': 1, '1987': 3, '1820': 2, '1816': 1, '1894': 1, '1979': 3, '1899': 1, '1914': 7, '1901': 1, '1932': 1, '2002': 2, '1988': 1, '1995': 1, '1822': 1, '2007': 2, '1865': 5, '1970': 1, '1999': 1}
adolescentia_NOUN {'1984': 3, '1967': 14, '1930': 1, '1931': 1, '2003': 23, '1810': 1, '1982': 2, '1807': 5, '2004': 33, '1965': 4, '1985': 6, '1952': 2, '1996': 15, '1917': 1, '1944': 49, '1962': 5, '1983': 4, '1975': 2, '1803': 3, '1836': 6, '1892': 2, '1887': 4, '1799': 3, '1889': 2, '1840': 2, '1891': 2, '1950': 8, '1818': 1, '1914': 2, '1820': 1, '1884': 1, '1857': 2, '1999': 19, '1906': 2, '2007': 23, '1860': 3, '1853': 5, '1846': 4, '1932': 1, '1738': 1, '1924': 1, '1873': 3, '1823': 5, '1822': 7, '1881': 3, '1883': 2, '1844': 8, '1842': 1, '1990': 15, '1963': 3, '1811': 4, '1955': 7, '1839': 6, '1792': 1, '1804': 5, '1754': 1, '1935': 1, '1879': 4, '1986': 3, '1904': 10, '1812': 2, '1880': 2, '1841': 2, '1900': 1, '1926': 4, '2005': 16, '1805': 1, '1801': 1, '2001': 16, '1954': 3, '1994': 7, '1937': 1, '1968': 1, '1854': 2, '1977': 3, '1847': 3, '1843': 1, '1993': 2, '1852': 2, '1837': 8, '1888': 1, '1797': 2, '1874': 2, '1919': 1, '1957': 4, '1970': 1, '1830': 1, '1960': 2, '1875': 2, '1978': 5, '1958': 3, '1913': 1, '1834': 3, '1945': 1, '1969': 5, '1929': 1, '1972': 3, '1826': 1, '1796': 1, '1936': 2, '1866': 3, '1831': 2, '1745': 2, '1973': 5, '1912': 2, '1868': 3, '1998': 11, '1850': 3, '1976': 2, '1824': 2, '1964': 2, '1838': 2, '1899': 3, '1908': 1, '1988': 22, '2008': 41, '1974': 2, '2002': 11, '1927': 6, '1825': 3, '1995': 8, '1885': 2, '1865': 2, '1922': 1, '1833': 6, '1961': 1, '1928': 5, '1980': 7, '1939': 1, '1882': 1, '1867': 2, '1956': 2, '1905': 1, '1828': 3, '1948': 1, '1896': 2, '1795': 3, '1864': 3, '2000': 7, '1910': 2, '1848': 4, '1992': 8, '1870': 2, '1814': 1, '1997': 6, '1827': 7, '1916': 2, '1815': 1, '1747': 1, '1920': 3, '1832': 2, '1925': 2, '1894': 2, '1979': 6, '1800': 1, '1819': 3, '1907': 3, '2006': 55, '1849': 2, '1858': 2, '1991': 5, '1987': 1, '1989': 13, '1895': 3, '1886': 1, '1981': 8, '1851': 7}
aerea_NUM {'1961': 1, '1964': 2, '1973': 1, '1976': 1, '1807': 2, '1972': 1, '1787': 1, '1765': 1, '1952': 2, '1948': 1, '2005': 1, '1968': 4, '1950': 1, '1941': 1, '1958': 1, '2001': 1, '1947': 1, '1974': 2, '1939': 1, '1955': 1, '1951': 1, '1788': 1, '2007': 1, '1816': 1, '1930': 1, '1977': 3, '1971': 1, '1819': 1, '1938': 1, '1993': 1, '1932': 1, '1967': 1, '1863': 1, '1830': 1, '1960': 1, '1970': 1, '1999': 1}
acquiescence.11 {'1984': 2, '1961': 1, '1926': 1, '1869': 1, '1997': 1, '1963': 1, '1987': 1, '1959': 2, '1917': 1, '1968': 3, '1996': 1, '1985': 1, '2005': 1, '2000': 4, '1904': 2, '2001': 2, '1906': 1, '1974': 3, '1990': 3, '1955': 1, '1994': 1, '1957': 1, '2007': 3, '1964': 1, '1971': 1, '2006': 4, '1970': 1, '1993': 1, '1988': 1, '2008': 2, '1888': 1, '1967': 2, '1995': 2, '1822': 2, '1873': 1, '1960': 1, '1969': 1, '1999': 1}
accordingly.82 {'1984': 6, '2003': 12, '1982': 5, '1972': 6, '1965': 12, '1959': 2, '2005': 4, '1993': 2, '1950': 1, '1978': 1, '1975': 1, '1902': 1, '1924': 1, '1939': 1, '1916': 2, '1987': 3, '1960': 4, '2004': 3, '1942': 1, '2002': 6, '1985': 1, '1986': 1, '1995': 1, '2007': 4, '1970': 2, '1999': 6, '1961': 3, '1903': 4, '1973': 1, '1953': 3, '1992': 1, '1931': 3, '1967': 1, '1989': 2, '1935': 1, '2000': 6, '1910': 1, '1904': 1, '1947': 3, '1997': 3, '1990': 3, '1996': 1, '1911': 4, '1954': 1, '1994': 2, '1918': 1, '1980': 1, '1907': 1, '2006': 2, '2008': 3, '1977': 1, '1969': 1, '1988': 1, '1998': 3, '1886': 4, '1981': 1}
admen_NOUN {'1984': 315, '2003': 197, '1857': 1, '2000': 346, '1982': 71, '2004': 210, '1910': 1, '1872': 2, '1952': 17, '1959': 54, '2005': 200, '1904': 2, '1983': 123, '1975': 178, '1898': 1, '1943': 12, '1902': 2, '1939': 7, '1905': 1, '1891': 2, '1884': 1, '1930': 3, '1890': 1, '1945': 13, '1853': 1, '1846': 2, '1932': 4, '1863': 1, '1937': 7, '1843': 1, '1942': 3, '1878': 1, '1965': 96, '1973': 288, '1990': 167, '1953': 27, '1963': 135, '1909': 1, '1839': 1, '1915': 10, '1792': 1, '1966': 73, '1989': 168, '1941': 3, '1924': 7, '1958': 52, '1880': 1, '1841': 1, '1900': 2, '1871': 1, '1926': 3, '1805': 1, '1954': 56, '1994': 157, '1794': 1, '1854': 2, '1977': 144, '1971': 129, '1938': 3, '1993': 109, '1817': 1, '1893': 4, '1969': 143, '1956': 50, '1967': 128, '1980': 125, '1949': 18, '1970': 134, '1929': 4, '1960': 53, '1913': 1, '1834': 1, '1870': 1, '1972': 250, '1881': 1, '1936': 9, '1996': 146, '1950': 15, '1978': 144, '1912': 3, '1974': 199, '1940': 4, '1999': 130, '1916': 2, '1957': 68, '1964': 76, '1677': 1, '1962': 179, '1914': 8, '1988': 102, '1837': 8, '2002': 154, '1985': 80, '1630': 1, '2007': 278, '1865': 1, '1922': 8, '1987': 77, '1793': 1, '1961': 57, '1928': 2, '1934': 6, '2001': 234, '1976': 195, '1859': 1, '1948': 6, '1931': 8, '1968': 292, '1995': 113, '1864': 1, '1986': 112, '1862': 2, '1992': 149, '1923': 1, '1947': 15, '1851': 1, '1997': 279, '1896': 3, '1955': 41, '1815': 3, '1951': 2, '1920': 6, '1933': 8, '1927': 5, '1979': 105, '2006': 157, '1998': 305, '2008': 274, '1991': 170, '1681': 1, '1946': 3, '1895': 1, '1907': 3, '1981': 96, '1935': 4}
accre_VERB {'1984': 2, '1834': 1, '2003': 2, '1818': 1, '1982': 1, '1807': 1, '1972': 1, '1965': 2, '1872': 1, '1959': 1, '1894': 1, '1983': 1, '1973': 2, '1912': 2, '1892': 1, '1808': 1, '1868': 2, '1940': 1, '1999': 2, '1891': 2, '1860': 2, '1908': 1, '1997': 1, '1871': 1, '1828': 2, '1945': 1, '1853': 1, '2004': 1, '1974': 3, '1985': 2, '1863': 1, '1995': 2, '1873': 2, '1957': 4, '1969': 1, '1987': 5, '1881': 1, '1883': 1, '1976': 5, '1990': 1, '1859': 2, '1864': 2, '1948': 1, '1931': 1, '1988': 4, '1966': 1, '1989': 3, '1839': 1, '1986': 1, '1910': 1, '1876': 1, '1991': 2, '1992': 1, '1814': 3, '1861': 1, '1909': 2, '1994': 2, '2001': 3, '1815': 1, '1854': 1, '1920': 2, '2007': 3, '1794': 1, '1934': 4, '1977': 3, '1971': 4, '1847': 1, '2006': 3, '2008': 6, '1893': 3, '1888': 1, '1874': 2, '1998': 3, '1981': 1}
abstinebat_X {'1984': 2, '1834': 2, '1869': 1, '2003': 2, '1982': 1, '1845': 4, '1755': 1, '1965': 1, '1979': 1, '2004': 2, '1992': 1, '1847': 5, '1975': 1, '1848': 2, '1958': 1, '1943': 1, '1912': 5, '1808': 1, '1997': 1, '1996': 1, '1841': 2, '2001': 1, '1758': 1, '1960': 4, '1836': 1, '1933': 1, '1964': 1, '1838': 1, '1971': 2, '1766': 1, '1947': 2, '2008': 2, '1953': 1, '1846': 3, '1893': 1, '1942': 1, '2002': 4, '1963': 2, '1980': 1, '1998': 1, '1832': 2, '1970': 1}
adopted.1_NOUN {'1984': 1, '2003': 2, '1997': 2, '2004': 8, '1903': 6, '1952': 1, '1959': 6, '1854': 2, '1917': 4, '1904': 4, '1813': 1, '1975': 2, '1898': 11, '1943': 1, '1902': 4, '1892': 1, '1887': 6, '1889': 5, '1905': 6, '1891': 1, '1930': 1, '1890': 2, '1945': 5, '1846': 1, '1942': 4, '1924': 1, '1965': 13, '1973': 7, '1953': 4, '1963': 10, '2006': 4, '1966': 1, '1989': 3, '1941': 1, '1958': 2, '1900': 1, '1926': 10, '2005': 3, '1954': 1, '1994': 1, '2007': 1, '1934': 1, '1980': 2, '1971': 9, '1993': 1, '1852': 4, '1893': 2, '1969': 5, '1956': 6, '1967': 1, '1919': 1, '1949': 1, '1970': 4, '1929': 7, '1960': 4, '1913': 3, '1927': 2, '1870': 2, '1977': 2, '1936': 4, '1950': 3, '1978': 1, '1912': 8, '1897': 9, '1874': 1, '1916': 5, '1957': 3, '1964': 6, '1899': 3, '1914': 3, '2002': 1, '1995': 1, '1885': 2, '1922': 6, '1999': 2, '1961': 3, '1928': 2, '1976': 2, '1939': 3, '1992': 1, '1948': 3, '1931': 9, '1968': 8, '2000': 3, '1862': 10, '1848': 1, '1923': 9, '1906': 1, '1990': 2, '1996': 3, '1911': 3, '1951': 8, '1920': 12, '1933': 1, '1925': 13, '1894': 2, '1979': 2, '1907': 1, '2008': 7, '1988': 3, '1851': 1, '1886': 3, '1981': 1, '1935': 1}
act.101 {'1984': 2, '2000': 2, '1997': 1, '1965': 1, '1959': 5, '2008': 14, '2005': 6, '1904': 3, '1950': 2, '1983': 5, '1943': 1, '1892': 2, '1974': 4, '1914': 1, '1987': 1, '1964': 2, '1945': 1, '2004': 9, '1932': 1, '2002': 10, '1986': 1, '1995': 4, '2007': 14, '1957': 1, '1970': 2, '1942': 1, '1961': 3, '2001': 3, '1953': 1, '1992': 2, '2006': 6, '1968': 4, '1969': 2, '2003': 5, '1919': 4, '1958': 1, '1949': 2, '1990': 1, '1996': 2, '1994': 3, '1934': 1, '1971': 1, '1901': 1, '1999': 10, '1988': 2, '1955': 2, '1998': 3, '1991': 3}
affo'd {'1913': 1, '2003': 1, '1982': 1, '1972': 1, '1965': 3, '1878': 1, '1917': 4, '1944': 2, '1901': 3, '1983': 2, '1975': 3, '1898': 2, '1912': 4, '1974': 1, '1940': 1, '1939': 1, '1905': 2, '1916': 1, '1908': 3, '1930': 1, '1962': 1, '1945': 1, '2004': 5, '1942': 1, '2002': 2, '1986': 1, '1995': 3, '1937': 1, '1970': 2, '1987': 1, '1961': 1, '1928': 1, '1953': 2, '1955': 1, '1948': 1, '1931': 4, '1889': 1, '2000': 3, '1910': 6, '1993': 6, '1992': 1, '1915': 4, '1884': 1, '1947': 1, '2005': 3, '1909': 1, '1918': 3, '2007': 9, '1925': 1, '1894': 2, '1980': 1, '2006': 1, '1920': 4, '2008': 18, '1914': 1, '1969': 4, '1988': 4, '1929': 2, '1960': 2, '1981': 3}
action>_NUM {'2001': 42, '2000': 2, '1997': 2, '1992': 7, '2008': 4, '2005': 6, '1989': 6, '1983': 1, '2003': 3, '1993': 9, '1990': 5, '1996': 2, '1987': 3, '1994': 4, '1977': 1, '2006': 4, '2004': 1, '1991': 3, '2002': 9, '1986': 1, '1995': 3, '2007': 7, '1981': 1, '1999': 10}
aestheticexpressive_ADJ {'1973': 4, '2003': 8, '1997': 7, '1965': 1, '1992': 7, '2008': 4, '2005': 7, '1988': 1, '1989': 2, '1978': 1, '2000': 4, '1993': 7, '2001': 12, '1998': 10, '1990': 10, '1996': 5, '1994': 5, '1987': 2, '1964': 2, '1977': 1, '2006': 3, '2004': 4, '1999': 6, '2002': 2, '1985': 1, '1986': 5, '1995': 5, '2007': 5, '1991': 5}
acquise {'1964': 133, '1818': 2, '1860': 40, '1838': 5, '1903': 23, '1872': 18, '1952': 51, '1959': 79, '1917': 16, '1958': 87, '1688': 1, '1725': 1, '1750': 1, '1975': 197, '1902': 38, '1746': 1, '1889': 14, '1905': 22, '1856': 8, '1914': 25, '1820': 4, '1884': 26, '1930': 19, '1890': 9, '1845': 14, '1853': 25, '1861': 12, '1932': 42, '1863': 33, '1937': 33, '1921': 26, '1835': 7, '1877': 29, '1965': 161, '1842': 6, '1963': 144, '1811': 7, '1805': 1, '1864': 27, '1985': 176, '1966': 210, '1941': 29, '1880': 19, '1915': 24, '1900': 37, '1871': 21, '2005': 225, '1801': 1, '1954': 77, '2007': 185, '1934': 20, '1847': 8, '1938': 40, '1993': 228, '1817': 3, '1833': 10, '1956': 74, '1919': 31, '1949': 52, '1790': 1, '1830': 5, '1875': 12, '1972': 184, '1881': 12, '1796': 3, '1996': 223, '1950': 23, '1978': 167, '1916': 18, '1957': 82, '1740': 1, '1757': 1, '1841': 13, '1837': 1, '2002': 202, '1995': 239, '1885': 27, '1700': 4, '1922': 25, '1888': 14, '1865': 3, '2001': 191, '1882': 26, '1939': 21, '1777': 1, '1824': 8, '1859': 3, '1827': 6, '1795': 2, '1769': 2, '1862': 17, '1848': 39, '1948': 28, '1906': 42, '1931': 45, '1955': 84, '1911': 40, '1815': 4, '1951': 37, '1933': 29, '1925': 18, '1927': 23, '1806': 2, '1849': 15, '1858': 27, '1946': 34, '1895': 31, '1981': 170, '1851': 5, '1984': 165, '1967': 152, '1869': 12, '2003': 203, '1982': 206, '1807': 2, '2004': 212, '1894': 14, '1944': 11, '1813': 2, '1983': 167, '1898': 26, '1943': 10, '1836': 4, '1892': 19, '1887': 10, '1770': 2, '1840': 3, '1891': 9, '1945': 18, '1857': 20, '1814': 22, '1846': 15, '1942': 23, '1986': 194, '1873': 14, '1843': 10, '1878': 12, '1883': 34, '1844': 18, '1953': 44, '1778': 1, '1839': 1, '2006': 317, '1804': 2, '1989': 185, '1935': 32, '1879': 29, '1924': 24, '1904': 29, '1909': 18, '1829': 6, '1998': 284, '1994': 223, '1918': 22, '1968': 193, '1854': 30, '1977': 205, '1971': 209, '1823': 6, '1852': 13, '1901': 25, '1893': 24, '1999': 226, '1797': 2, '1874': 25, '1980': 197, '1970': 210, '1960': 94, '1913': 14, '1834': 2, '1731': 1, '1870': 14, '1929': 41, '1826': 1, '1936': 43, '1866': 40, '1973': 207, '1912': 34, '1897': 32, '1808': 2, '1868': 24, '1940': 13, '1850': 32, '1788': 3, '1816': 4, '1809': 3, '1821': 5, '1899': 45, '1908': 10, '1974': 188, '1825': 9, '1832': 5, '1969': 530, '1987': 242, '1961': 163, '1928': 13, '1976': 341, '1867': 14, '1992': 221, '1923': 10, '1896': 49, '1988': 237, '1962': 141, '2000': 232, '1910': 46, '1876': 9, '1947': 28, '1997': 200, '1990': 204, '1920': 55, '1926': 35, '1979': 242, '1831': 22, '1886': 17, '2008': 188, '1855': 6, '1907': 33, '1991': 268}
adrnired_VERB {'1984': 2, '1869': 1, '2003': 4, '1818': 1, '1807': 2, '1972': 2, '1795': 1, '1784': 1, '1796': 2, '1952': 2, '1922': 1, '1917': 1, '1866': 1, '1978': 1, '2005': 1, '1726': 1, '1698': 1, '1987': 1, '1964': 1, '1962': 2, '2004': 1, '2002': 2, '1985': 1, '1986': 1, '1995': 4, '2007': 4, '1969': 1, '1961': 1, '1724': 1, '2001': 2, '1882': 1, '1963': 1, '2006': 2, '1804': 1, '1966': 1, '2000': 4, '1862': 1, '1904': 1, '1803': 1, '1990': 2, '1996': 1, '1954': 2, '1991': 2, '1979': 2, '1809': 1, '2008': 1, '1999': 2, '1988': 3, '1998': 1, '1960': 1, '1981': 1}
activing_VERB {'1984': 2, '1973': 1, '2003': 5, '1976': 1, '1982': 3, '1972': 1, '1992': 4, '2005': 5, '1988': 4, '1950': 3, '1989': 4, '1983': 1, '2000': 5, '1958': 1, '1991': 6, '1974': 2, '1940': 1, '1997': 6, '1990': 1, '1996': 1, '2001': 2, '1987': 2, '1994': 5, '1980': 4, '2006': 5, '1993': 3, '2004': 6, '1977': 1, '1970': 1, '2002': 3, '1963': 3, '1985': 5, '1986': 2, '2007': 3, '1981': 1, '1999': 7}
afid_DET {'1791': 2, '1718': 1, '1821': 2, '1742': 2, '1784': 2, '1872': 1, '1952': 4, '1959': 2, '1917': 2, '1958': 1, '1688': 1, '1781': 2, '1975': 5, '1902': 4, '1746': 3, '1799': 2, '1939': 2, '1905': 1, '1856': 2, '1767': 1, '1820': 1, '1930': 2, '1945': 2, '1853': 1, '1776': 1, '1863': 1, '1937': 1, '1921': 1, '1822': 1, '1835': 2, '1877': 1, '1903': 2, '1775': 1, '1811': 2, '1709': 1, '1985': 4, '1754': 1, '1880': 1, '1915': 1, '1884': 3, '1871': 3, '1795': 1, '1814': 3, '1801': 1, '1954': 1, '1934': 2, '1847': 1, '1938': 1, '1772': 1, '1837': 2, '1888': 2, '1956': 4, '1919': 1, '1998': 8, '1830': 3, '1794': 2, '1875': 2, '1739': 1, '1773': 1, '1881': 2, '1796': 1, '1922': 3, '1996': 5, '1950': 4, '1978': 3, '2005': 6, '1976': 4, '1852': 1, '1973': 3, '1735': 2, '1736': 1, '1841': 2, '1817': 2, '2002': 2, '1802': 3, '2007': 6, '1957': 2, '1970': 2, '1798': 1, '2001': 3, '1824': 2, '1828': 1, '1859': 3, '1968': 1, '1769': 3, '1848': 1, '1870': 1, '1906': 1, '1771': 1, '1955': 2, '1911': 1, '1768': 1, '1854': 1, '1933': 2, '1925': 2, '1927': 2, '1806': 3, '1819': 1, '1849': 1, '1858': 2, '1631': 1, '1946': 1, '1895': 1, '1981': 5, '1984': 6, '1717': 1, '2003': 5, '1810': 1, '1982': 1, '1845': 1, '1751': 1, '1894': 1, '1944': 1, '1813': 2, '1983': 1, '1723': 1, '1898': 1, '1943': 3, '1836': 1, '1892': 1, '1887': 2, '1840': 3, '1683': 1, '1947': 1, '2004': 4, '1972': 3, '1738': 1, '1873': 1, '1823': 1, '1774': 1, '1993': 3, '1878': 1, '1883': 3, '1844': 2, '1953': 1, '1778': 1, '1839': 1, '2006': 6, '1804': 2, '1989': 3, '1935': 1, '1879': 1, '1924': 1, '1904': 1, '1812': 1, '1909': 2, '1994': 3, '1818': 2, '1977': 3, '1651': 1, '1809': 3, '1999': 7, '1967': 1, '1980': 3, '1995': 5, '1759': 1, '1834': 1, '1826': 1, '1782': 1, '1936': 2, '1932': 2, '1912': 1, '1897': 3, '1808': 1, '1974': 6, '1940': 1, '1874': 1, '1788': 1, '1816': 2, '1964': 5, '1838': 1, '1889': 2, '1914': 1, '1988': 3, '1760': 1, '1963': 7, '1825': 2, '1969': 4, '1987': 3, '1793': 1, '1961': 1, '1928': 1, '1729': 2, '1761': 1, '1867': 1, '1749': 1, '1992': 3, '1948': 1, '1861': 2, '1855': 2, '1962': 5, '2000': 1, '1910': 2, '1803': 2, '1805': 3, '1997': 1, '1990': 4, '1920': 1, '1926': 1, '1979': 7, '1831': 3, '1886': 1, '2008': 21, '1786': 1, '1965': 3, '1907': 1, '1991': 2}
abtsract {'1913': 1, '2000': 1, '1953': 2, '1811': 2, '1965': 4, '1928': 1, '2005': 2, '1968': 3, '1966': 3, '1989': 1, '1975': 2, '1958': 1, '1943': 2, '1902': 2, '1912': 1, '1887': 1, '1974': 2, '1889': 3, '1994': 1, '1954': 1, '1951': 1, '2007': 1, '1816': 3, '1930': 1, '1962': 3, '1914': 1, '2002': 3, '1956': 1, '1967': 1, '1998': 1, '1937': 3, '1960': 3, '1970': 1}
adaptory {'1984': 2, '2001': 2, '1976': 4, '1982': 1, '1963': 2, '1979': 3, '1996': 1, '2005': 3, '1968': 1, '1966': 1, '1978': 2, '1975': 2, '1946': 2, '1995': 2, '1997': 2, '1955': 2, '1998': 1, '1994': 5, '1987': 1, '1977': 3, '1971': 1, '1938': 1, '2004': 1, '1999': 3, '2002': 21, '1986': 2, '1949': 1, '1991': 1, '1983': 3}
adenylations {'2006': 1, '1996': 1, '1973': 1, '2002': 2, '1987': 2, '1997': 8, '1971': 1, '1992': 3, '1993': 3, '1985': 5, '2004': 1, '1989': 12, '1983': 1, '2000': 2, '1999': 1, '1988': 3, '1986': 1, '1998': 3, '1981': 1, '1991': 1, '1978': 2}
adveneris {'1930': 1, '2000': 1, '1997': 3, '1807': 1, '1903': 3, '1775': 1, '2005': 2, '1983': 2, '1975': 1, '1938': 2, '1987': 3, '1820': 2, '1816': 2, '1964': 1, '1890': 1, '1865': 1, '2004': 4, '1942': 1, '1825': 1, '1924': 1, '1995': 1, '1741': 1, '1922': 3, '1835': 4, '2001': 1, '1729': 1, '1811': 2, '1992': 1, '1864': 1, '1827': 2, '1968': 3, '1966': 5, '1989': 3, '1879': 4, '1910': 2, '1900': 1, '1906': 1, '1990': 2, '1955': 4, '1954': 1, '1994': 2, '1925': 1, '1957': 1, '1977': 3, '1843': 1, '2006': 2, '2008': 4, '1893': 1, '1981': 1, '1991': 1, '1978': 4}
afaf_ADP {'1984': 1, '1967': 1, '1731': 1, '1997': 7, '1972': 1, '1952': 2, '2005': 2, '1950': 7, '1983': 4, '1975': 1, '2001': 9, '1808': 1, '1987': 2, '2004': 3, '1942': 1, '2002': 3, '1924': 1, '1995': 3, '2007': 4, '1922': 1, '1798': 1, '1973': 1, '1976': 5, '1867': 1, '1992': 1, '1948': 1, '2006': 2, '1988': 4, '1989': 2, '2003': 1, '1993': 2, '1880': 1, '1900': 1, '1771': 1, '1990': 4, '1996': 3, '1994': 1, '1979': 9, '2008': 1, '1977': 3, '1999': 1, '1874': 1, '1998': 6, '1776': 1, '1991': 3, '1978': 1}
affascinare_NOUN {'1984': 3, '1967': 3, '1964': 2, '2000': 13, '1969': 2, '1972': 7, '2005': 10, '1950': 4, '1943': 2, '1930': 2, '2004': 20, '1932': 2, '2002': 11, '1927': 4, '1986': 1, '2007': 20, '1865': 2, '1970': 2, '1928': 8, '1973': 2, '1949': 1, '1976': 4, '1963': 2, '1923': 6, '1931': 3, '1968': 3, '1966': 3, '1935': 4, '2003': 25, '1947': 2, '2006': 57, '1996': 4, '2001': 3, '1994': 1, '1925': 4, '1926': 3, '1980': 3, '2008': 15, '1991': 2, '1956': 4, '1988': 6, '1998': 5, '1929': 1, '1981': 2}
abzuschreiben {'1984': 6, '2003': 8, '1964': 1, '2000': 6, '1982': 5, '1977': 5, '1965': 2, '1872': 2, '1996': 7, '1936': 1, '2005': 8, '1944': 4, '1983': 4, '1975': 5, '2001': 8, '1974': 3, '1940': 1, '1916': 1, '1957': 1, '1930': 1, '1962': 3, '1908': 1, '2004': 11, '1932': 1, '2002': 2, '1972': 7, '1985': 9, '1986': 5, '1995': 3, '2007': 4, '1970': 1, '1999': 3, '1961': 2, '1928': 6, '1973': 4, '1976': 3, '1953': 2, '1963': 5, '1987': 1, '1864': 8, '1948': 1, '2006': 7, '1804': 1, '1966': 2, '1989': 2, '1935': 4, '1879': 1, '1958': 5, '1991': 4, '1992': 5, '1884': 2, '1997': 5, '1990': 4, '1805': 1, '1994': 3, '1968': 2, '1934': 2, '1979': 3, '1971': 7, '1993': 4, '2008': 12, '1969': 5, '1988': 7, '1980': 6, '1998': 3, '1960': 2, '1981': 7, '1978': 8}
adjunct_ADJ {'1984': 110, '2003': 320, '1869': 1, '2000': 290, '1818': 1, '1982': 78, '1807': 1, '1784': 3, '1872': 2, '1952': 3, '1941': 13, '1917': 8, '1944': 11, '1962': 45, '1983': 74, '1975': 83, '1898': 24, '1701': 1, '1902': 3, '1892': 41, '1889': 6, '1905': 5, '1891': 6, '1950': 7, '1914': 7, '1820': 1, '1884': 3, '1930': 66, '1890': 3, '1860': 3, '1853': 4, '2004': 326, '1932': 30, '1924': 35, '1873': 1, '1843': 1, '1845': 2, '1835': 1, '1877': 2, '1903': 27, '1883': 16, '1844': 6, '1842': 1, '1990': 201, '1953': 36, '1963': 51, '1987': 198, '1839': 4, '1792': 1, '1985': 107, '1966': 86, '1989': 139, '1935': 3, '1879': 2, '1863': 3, '1904': 5, '1812': 1, '1880': 2, '1915': 10, '1900': 171, '2005': 366, '1909': 19, '1829': 3, '1954': 9, '1994': 276, '1918': 29, '1937': 14, '1968': 205, '1934': 2, '1977': 62, '1971': 62, '1847': 14, '1921': 3, '1993': 192, '1852': 4, '1901': 17, '1893': 4, '1888': 6, '1956': 33, '1874': 2, '1919': 13, '1949': 61, '1970': 39, '1929': 3, '1960': 26, '1958': 92, '1913': 4, '1926': 5, '1896': 3, '1945': 4, '1961': 42, '1972': 53, '1881': 4, '1992': 157, '1936': 25, '1996': 258, '1866': 3, '1976': 45, '1978': 60, '1943': 1, '1973': 48, '1969': 44, '1912': 7, '1897': 5, '1868': 2, '1940': 11, '2001': 294, '1859': 4, '1916': 2, '1942': 21, '1957': 48, '1964': 37, '1838': 2, '1965': 57, '1951': 24, '1899': 18, '1908': 15, '1841': 2, '1974': 40, '2002': 283, '1927': 8, '1825': 1, '1995': 251, '2007': 464, '1865': 1, '1922': 17, '1999': 263, '1988': 93, '1931': 15, '1928': 11, '1980': 88, '1939': 9, '1882': 5, '1867': 2, '1959': 28, '1840': 2, '1923': 7, '1861': 3, '1967': 66, '1991': 191, '1864': 3, '1986': 127, '1910': 8, '1876': 8, '1848': 2, '1947': 5, '1948': 26, '1906': 28, '1997': 315, '1827': 1, '1955': 8, '1911': 8, '1815': 9, '1854': 2, '1920': 11, '1933': 4, '1925': 11, '1894': 7, '1979': 34, '2006': 400, '1998': 191, '2008': 318, '1981': 77, '1855': 2, '1946': 10, '1938': 4, '1907': 20, '1862': 1, '1851': 4}
accordingly.94 {'1984': 1, '1973': 4, '2003': 1, '1982': 1, '1963': 3, '1996': 4, '2008': 5, '2005': 4, '1988': 1, '1978': 1, '2000': 4, '1986': 1, '1958': 1, '1991': 2, '1974': 4, '1997': 1, '2006': 4, '1955': 2, '1994': 5, '2001': 3, '1954': 1, '1987': 2, '1920': 1, '1930': 1, '1979': 2, '1971': 1, '2004': 2, '1922': 1, '2002': 2, '1972': 1, '1967': 1, '1980': 3, '1995': 1, '2007': 1, '1970': 2, '1999': 1}
adverb_ADP {'1984': 16, '2000': 36, '1982': 6, '1965': 3, '1952': 2, '1959': 2, '2005': 64, '1944': 2, '1983': 14, '1975': 10, '1898': 1, '1943': 1, '1939': 1, '1891': 3, '1930': 1, '2004': 59, '1942': 1, '1924': 8, '1932': 1, '1877': 1, '1973': 6, '1953': 9, '1963': 1, '1955': 1, '1864': 1, '2006': 72, '1966': 6, '1989': 26, '1935': 7, '1986': 33, '1958': 2, '1884': 1, '1909': 1, '1954': 13, '1994': 17, '1918': 1, '1977': 7, '1971': 2, '1993': 20, '1999': 46, '1956': 1, '1967': 6, '1980': 15, '1998': 61, '1960': 3, '1913': 1, '1926': 1, '1969': 4, '1972': 21, '1936': 4, '1950': 1, '1978': 12, '1974': 18, '1940': 1, '1922': 5, '1957': 3, '1964': 5, '1962': 1, '1908': 4, '2002': 51, '1985': 34, '1995': 23, '2007': 77, '1970': 12, '1961': 1, '2001': 34, '1949': 5, '1976': 19, '1992': 17, '1923': 2, '1931': 4, '1968': 6, '1889': 1, '2003': 46, '1947': 2, '1997': 35, '1990': 17, '1996': 20, '1911': 1, '1920': 1, '1925': 3, '1987': 19, '1979': 12, '2008': 93, '1991': 14, '1988': 27, '1886': 1, '1981': 15}
actar {'1984': 1, '2003': 7, '1982': 3, '1972': 10, '1787': 2, '1936': 1, '2005': 2, '1969': 2, '1866': 6, '1978': 3, '2001': 4, '1892': 1, '1868': 1, '1939': 1, '1891': 1, '1987': 3, '1908': 1, '1853': 2, '2004': 5, '1974': 1, '2002': 3, '1985': 3, '1986': 2, '2007': 2, '1970': 1, '1999': 1, '1973': 1, '1806': 1, '1976': 1, '1765': 1, '1979': 2, '1864': 1, '1992': 1, '1896': 1, '1967': 1, '1966': 1, '1935': 1, '2000': 2, '1863': 1, '2008': 10, '1931': 1, '1996': 21, '1801': 2, '1994': 2, '1980': 1, '1971': 4, '2006': 5, '1817': 1, '1991': 1, '1988': 3, '1998': 4, '1929': 1, '1907': 1, '1981': 1}
accordingly.85_ADP {'1984': 2, '1967': 1, '1913': 1, '1982': 1, '1963': 2, '1959': 1, '1936': 1, '2005': 7, '1985': 1, '1935': 1, '1993': 1, '1947': 1, '2006': 1, '1996': 2, '2007': 1, '1980': 2, '1971': 1, '1962': 2, '1914': 1, '2008': 5, '1942': 1, '2002': 1, '1972': 2, '1988': 1, '1986': 3, '1929': 1, '1921': 1, '1999': 1}
acorning_VERB {'1984': 5, '1869': 1, '1979': 1, '1965': 1, '1872': 1, '1936': 1, '2005': 2, '1876': 1, '1978': 1, '1975': 1, '2001': 2, '1902': 2, '1892': 2, '1887': 1, '1899': 5, '1905': 1, '1957': 1, '1897': 1, '1889': 5, '1914': 1, '1932': 2, '2007': 1, '1928': 1, '1881': 2, '1973': 2, '1976': 2, '1992': 4, '1948': 2, '1896': 4, '1966': 2, '1989': 1, '2003': 1, '1993': 1, '1870': 1, '1900': 2, '2006': 2, '1994': 1, '1920': 1, '1934': 1, '1980': 2, '2008': 13, '1893': 1, '1895': 1, '1830': 1, '1981': 1}
acuñado_X {'1984': 2, '1928': 1, '1973': 1, '2003': 8, '1997': 5, '1963': 3, '2005': 7, '2008': 8, '1979': 1, '1992': 1, '1917': 2, '1968': 1, '1989': 2, '1935': 1, '2000': 4, '1999': 2, '1993': 8, '2001': 14, '1912': 1, '1995': 7, '1990': 3, '1996': 8, '1994': 2, '1998': 5, '1951': 2, '1987': 8, '1977': 2, '1971': 1, '1938': 1, '2006': 26, '2004': 6, '1991': 4, '2002': 7, '1972': 2, '1988': 1, '1986': 3, '1949': 1, '2007': 6, '1960': 1, '1969': 2, '1978': 2}
affair.68_NOUN {'1928': 1, '1883': 3, '2000': 3, '1982': 4, '1992': 3, '1987': 3, '1959': 2, '1936': 1, '1931': 3, '1944': 1, '1966': 1, '1985': 1, '2005': 2, '1941': 1, '1975': 3, '2003': 4, '1973': 1, '1902': 1, '1974': 1, '2001': 1, '1990': 2, '1996': 7, '1981': 1, '1951': 1, '2007': 3, '1991': 2, '1964': 7, '1980': 2, '1886': 1, '2006': 2, '2004': 3, '1969': 1, '2002': 4, '1967': 1, '1995': 2, '1937': 2, '1957': 2, '1970': 1}
acnve {'1984': 2, '1961': 1, '1883': 1, '2003': 37, '1867': 1, '1963': 1, '1979': 1, '1936': 1, '2005': 6, '1988': 2, '1966': 1, '1989': 4, '1978': 2, '2000': 26, '1986': 3, '1993': 1, '1943': 1, '1992': 7, '1998': 14, '1974': 1, '1997': 8, '2006': 5, '1996': 9, '2001': 7, '1815': 1, '1854': 1, '1994': 3, '1838': 2, '2008': 54, '1945': 1, '2004': 11, '1893': 1, '1888': 1, '2002': 20, '1985': 1, '1924': 2, '1995': 18, '2007': 3, '1999': 13}
admovens {'1913': 2, '1990': 2, '1869': 1, '1911': 2, '1810': 4, '1969': 1, '1972': 1, '1787': 1, '1881': 1, '1971': 1, '2005': 1, '1981': 1, '1983': 1, '1978': 3, '1898': 3, '1932': 1, '1912': 1, '1892': 1, '1808': 1, '1799': 1, '1874': 2, '1891': 2, '1850': 1, '1764': 1, '1974': 1, '1960': 1, '1820': 2, '1816': 5, '1964': 1, '2008': 2, '1947': 2, '1962': 2, '1945': 2, '1853': 2, '1817': 2, '1823': 2, '2002': 1, '1825': 1, '1679': 1, '1873': 1, '1843': 1, '1822': 3, '1833': 1, '1988': 2, '1931': 1, '1883': 1, '1867': 3, '1956': 2, '1992': 1, '1828': 1, '1827': 1, '1747': 1, '1966': 1, '1991': 1, '1864': 2, '1581': 1, '1999': 2, '1876': 3, '1812': 1, '1814': 2, '1997': 4, '1896': 3, '1829': 3, '1804': 4, '1920': 3, '2007': 2, '1968': 1, '1854': 6, '1977': 1, '1800': 1, '1819': 3, '1832': 1, '2006': 1, '1837': 2, '1753': 1, '1797': 1, '1681': 1, '1970': 1, '1929': 1, '1886': 2, '1973': 1, '1851': 1}
acclamatisation {'2003': 2, '1976': 1, '1982': 1, '1963': 2, '1987': 4, '1959': 1, '1992': 1, '2005': 2, '1985': 1, '1989': 3, '1975': 1, '1993': 2, '1998': 4, '1974': 2, '1990': 1, '1996': 1, '1981': 2, '1954': 2, '1957': 1, '1964': 1, '1980': 1, '1970': 1, '1988': 2, '1986': 1, '1995': 1, '1991': 6}
addRecipient {'2005': 9, '2006': 10, '2004': 46, '2001': 27, '1999': 2, '2003': 8, '2000': 3, '2008': 3, '2007': 27, '2002': 47}
adoption.23_NOUN {'1980': 1, '2003': 4, '1997': 3, '1953': 2, '1972': 2, '2008': 7, '1979': 1, '1936': 1, '2005': 2, '1967': 2, '1989': 3, '1978': 1, '2000': 6, '1999': 1, '1993': 2, '2001': 2, '1992': 3, '1892': 1, '1998': 3, '1922': 4, '2006': 12, '1996': 4, '1994': 2, '1987': 1, '1934': 1, '1977': 1, '1971': 5, '1938': 1, '1962': 2, '2004': 1, '1981': 1, '2002': 1, '1988': 2, '1986': 2, '1995': 2, '2007': 7, '1991': 2, '1942': 1}
actoris_X {'1984': 3, '2003': 11, '1930': 3, '1869': 4, '2000': 27, '1810': 1, '1982': 12, '1845': 1, '1838': 3, '1903': 21, '1872': 4, '1952': 13, '1959': 1, '2005': 18, '1944': 4, '1962': 9, '1983': 7, '1975': 13, '1848': 13, '1898': 8, '1902': 3, '1836': 5, '1892': 12, '1889': 2, '1840': 6, '1856': 1, '1950': 10, '1818': 1, '1914': 1, '1820': 1, '1884': 14, '1857': 7, '1999': 6, '1890': 29, '1860': 4, '1853': 5, '1846': 8, '1932': 2, '1863': 4, '1873': 7, '1843': 4, '1877': 1, '1878': 9, '1965': 10, '1883': 18, '1844': 3, '1990': 7, '1953': 17, '1963': 2, '1979': 2, '2006': 23, '1966': 3, '1989': 10, '1935': 4, '1879': 7, '1924': 7, '1904': 46, '1812': 11, '1880': 11, '1915': 2, '1900': 2, '1871': 26, '1926': 11, '1909': 9, '2001': 18, '1954': 1, '1994': 12, '1918': 1, '2007': 30, '1968': 16, '1934': 7, '1977': 6, '1971': 6, '1847': 4, '1823': 1, '1993': 4, '1809': 1, '1728': 3, '1901': 9, '1893': 4, '1888': 10, '1956': 5, '1874': 8, '1919': 5, '1949': 2, '1970': 4, '1929': 2, '1921': 18, '1875': 15, '1852': 5, '1958': 9, '1913': 1, '1834': 2, '1945': 2, '1948': 1, '1961': 4, '1972': 11, '1881': 3, '1992': 5, '1936': 25, '1996': 15, '1866': 3, '1978': 12, '2004': 16, '1973': 3, '1969': 12, '1938': 3, '1897': 10, '1868': 3, '1940': 6, '1998': 15, '1916': 7, '1976': 9, '1824': 6, '1964': 17, '1821': 2, '1951': 12, '1899': 3, '1908': 2, '1841': 15, '2008': 38, '1974': 39, '2002': 10, '1927': 3, '1985': 11, '1802': 5, '1885': 16, '1865': 16, '1922': 14, '1987': 23, '1988': 21, '1931': 37, '1928': 20, '1980': 8, '1882': 9, '1867': 3, '1859': 14, '1828': 6, '1923': 5, '1827': 1, '1967': 3, '1891': 1, '1995': 6, '1986': 10, '1910': 6, '1876': 45, '1803': 1, '1947': 15, '1870': 7, '1906': 15, '1997': 20, '1896': 4, '1955': 2, '1911': 3, '1854': 5, '1920': 4, '1933': 2, '1925': 26, '1894': 9, '1806': 4, '1960': 2, '1849': 12, '1858': 3, '1991': 10, '1855': 1, '1946': 16, '1895': 5, '1905': 16, '1907': 8, '1981': 6, '1851': 4}
adfigit_X {'2001': 3, '2003': 5, '1976': 1, '1969': 2, '1860': 8, '1972': 1, '1992': 1, '1864': 2, '2008': 1, '1896': 1, '1968': 1, '1866': 1, '1983': 4, '2000': 1, '1912': 1, '1874': 1, '1996': 5, '1911': 6, '1997': 1, '1806': 3, '1831': 1, '1914': 1, '1846': 2, '1753': 2, '1967': 1, '1995': 1, '1981': 1, '1991': 1}
adventurousness_NOUN {'1931': 108, '1818': 1, '1860': 8, '1784': 1, '1752': 1, '1952': 112, '1959': 178, '1917': 49, '1958': 154, '1975': 291, '1902': 34, '1799': 1, '1899': 16, '1905': 22, '1856': 9, '1908': 50, '1820': 7, '1884': 4, '1930': 116, '1890': 21, '1945': 59, '1853': 16, '1861': 4, '1932': 80, '1863': 10, '1937': 90, '1921': 49, '1822': 1, '1835': 4, '1877': 11, '1903': 30, '1963': 251, '1811': 2, '1864': 8, '1792': 2, '1985': 336, '1966': 259, '1941': 64, '1880': 4, '1915': 119, '1900': 43, '1871': 5, '2005': 828, '1801': 4, '1954': 119, '2007': 913, '1934': 92, '1847': 1, '1938': 89, '1772': 1, '1837': 3, '1888': 18, '1956': 187, '1919': 80, '1949': 124, '1830': 3, '1875': 2, '1779': 1, '1972': 363, '1881': 17, '1922': 109, '1996': 559, '1950': 146, '1978': 377, '1916': 43, '1976': 362, '1824': 5, '2002': 618, '1802': 1, '1885': 12, '1865': 3, '1970': 337, '1833': 3, '2001': 684, '1882': 21, '1939': 89, '1859': 12, '1809': 1, '1827': 6, '1968': 362, '1889': 24, '1862': 6, '1848': 8, '1948': 109, '1906': 28, '1929': 80, '1955': 156, '1911': 37, '1951': 144, '1933': 83, '1925': 74, '1927': 64, '1806': 4, '1849': 3, '1858': 1, '1946': 97, '1895': 20, '1981': 383, '1851': 6, '1984': 345, '1967': 313, '1763': 1, '1869': 3, '2003': 741, '1810': 3, '1982': 354, '1845': 9, '2004': 764, '1894': 20, '1944': 58, '1983': 386, '1898': 16, '1943': 47, '1836': 1, '1892': 12, '1887': 9, '1872': 3, '1840': 2, '1891': 30, '1857': 7, '1846': 3, '1942': 86, '1986': 388, '1873': 6, '1823': 10, '1993': 496, '1878': 7, '1883': 9, '1844': 3, '1953': 145, '1987': 399, '1839': 1, '2006': 844, '1989': 458, '1935': 98, '1879': 25, '1924': 96, '1904': 18, '1909': 35, '1829': 5, '1998': 586, '1994': 504, '1918': 61, '1854': 9, '1977': 360, '1971': 381, '1843': 3, '1852': 4, '1901': 21, '1893': 19, '1999': 577, '1797': 2, '1874': 2, '1980': 358, '1995': 500, '1960': 184, '1913': 78, '1834': 4, '1870': 14, '1826': 6, '1936': 100, '1866': 7, '1973': 299, '1912': 65, '1897': 29, '1808': 3, '1868': 10, '1940': 85, '1850': 1, '1816': 7, '1964': 242, '1821': 1, '1962': 250, '1914': 85, '1988': 445, '1974': 345, '1825': 54, '1832': 7, '1969': 354, '1793': 1, '1961': 208, '1928': 87, '1761': 1, '1867': 12, '1992': 477, '1923': 70, '1896': 10, '1855': 4, '2000': 770, '1910': 42, '1876': 5, '1803': 1, '1947': 117, '1997': 557, '1990': 432, '1920': 61, '1926': 81, '1979': 306, '1957': 140, '1831': 15, '1886': 15, '2008': 927, '1965': 316, '1907': 26, '1991': 422}
afficheurs {'1984': 6, '1961': 1, '2003': 5, '1972': 1, '1992': 3, '1936': 2, '2006': 2, '1985': 1, '1966': 2, '1866': 1, '1989': 3, '1983': 2, '2000': 13, '1993': 3, '1836': 2, '1940': 3, '1990': 2, '1996': 1, '1987': 1, '1994': 4, '1980': 2, '1962': 3, '1852': 1, '1849': 1, '2008': 1, '1991': 1, '2002': 2, '1988': 1, '1995': 1, '1929': 2, '1970': 1, '1978': 11}
adhocness_ADJ {'2001': 1, '2000': 2, '1976': 1, '1997': 2, '1972': 2, '1975': 6, '1979': 2, '2005': 1, '1989': 3, '1983': 2, '2003': 2, '1993': 9, '1990': 1, '1987': 1, '1982': 3, '1980': 2, '2006': 7, '2004': 1, '1999': 2, '2002': 2, '1988': 2, '1986': 3, '1991': 3, '1978': 3}
adp_ADJ {'1984': 1, '1913': 1, '2003': 2, '1982': 3, '1979': 6, '1965': 1, '1959': 7, '1922': 1, '2005': 7, '1993': 9, '1996': 13, '1983': 3, '1975': 8, '1943': 1, '1892': 1, '1940': 2, '1840': 1, '1957': 1, '1930': 1, '1906': 4, '2004': 10, '1988': 11, '2002': 2, '1985': 3, '1924': 1, '1995': 8, '1873': 1, '1969': 7, '1835': 1, '1961': 2, '1881': 1, '1973': 2, '1976': 4, '1953': 1, '1963': 6, '1992': 2, '2006': 23, '1968': 2, '1966': 3, '1989': 10, '2000': 3, '1999': 13, '1958': 17, '1884': 1, '1814': 1, '1997': 19, '1990': 4, '1955': 1, '1801': 1, '2001': 10, '1998': 3, '1994': 3, '2007': 5, '1987': 6, '1980': 4, '1971': 3, '2008': 9, '1970': 6, '1956': 1, '1967': 1, '1946': 1, '1949': 1, '1929': 1, '1960': 2, '1981': 4, '1978': 1}
aepi_X {'2001': 1, '1982': 1, '1965': 1, '1955': 1, '2008': 2, '1896': 1, '1968': 2, '1966': 1, '1989': 1, '1879': 1, '1958': 1, '1902': 2, '1906': 2, '1997': 2, '2006': 2, '1909': 1, '1987': 1, '1920': 1, '1994': 2, '1980': 1, '1938': 1, '1962': 1, '1908': 2, '2004': 2, '1969': 1, '1988': 1, '2007': 6, '1991': 5}
adhikaris_DET {'1984': 2, '1964': 4, '2003': 4, '1982': 2, '1972': 2, '1952': 1, '2005': 12, '1978': 1, '1975': 1, '1974': 1, '1987': 1, '1979': 1, '1997': 4, '1970': 2, '1962': 2, '2004': 7, '2002': 6, '1985': 6, '1986': 2, '1995': 3, '1937': 1, '1922': 1, '1999': 1, '2001': 3, '1976': 4, '1963': 1, '1992': 1, '1931': 1, '1966': 6, '1989': 6, '1969': 4, '2000': 11, '1910': 1, '1993': 1, '1990': 2, '1996': 3, '1954': 1, '1994': 2, '2007': 1, '1925': 2, '1980': 1, '1971': 1, '2006': 5, '2008': 2, '1977': 7, '1991': 2, '1956': 1, '1967': 4, '1919': 1, '1998': 7, '1981': 3, '1983': 5}
acknoweledge {'1984': 4, '1834': 1, '1869': 1, '1997': 4, '1980': 2, '1959': 2, '2008': 2, '2005': 3, '1950': 2, '1975': 1, '2001': 1, '1887': 1, '1799': 4, '1987': 2, '1857': 3, '1838': 1, '1846': 1, '1974': 1, '2002': 1, '1985': 1, '1986': 1, '1995': 1, '2007': 2, '1970': 1, '1961': 2, '1973': 2, '1859': 1, '1992': 3, '1967': 1, '1966': 1, '2000': 3, '1990': 3, '1996': 5, '1954': 1, '1994': 3, '1933': 1, '1925': 4, '1979': 1, '1809': 4, '1817': 1, '1893': 2, '1999': 5, '1988': 1, '1851': 3, '1886': 3, '1991': 1, '1852': 2}
accepted.25_NOUN {'1984': 1, '1990': 2, '1996': 3, '2000': 1, '1994': 1, '1999': 3, '1991': 1, '1979': 2, '1952': 1, '2006': 6, '1993': 2, '2008': 2, '1989': 3, '1969': 1, '1975': 1, '1943': 2, '1988': 1, '1986': 7, '1995': 2, '1981': 1, '1983': 1}